1
1
// For more information about this file see https://dove.feathersjs.com/guides/cli/client.html
2
2
import { feathers } from '@feathersjs/feathers'
3
- import type { TransportConnection , Params } from '@feathersjs/feathers'
3
+ import type { TransportConnection , Application } from '@feathersjs/feathers'
4
4
import authenticationClient from '@feathersjs/authentication-client'
5
- import type { Message , MessageData , MessageQuery , MessageService } from './services/messages/messages'
6
- export type { Message , MessageData , MessageQuery }
7
-
8
- import type { User , UserData , UserQuery , UserService } from './services/users/users'
9
- export type { User , UserData , UserQuery }
10
-
11
5
import type { AuthenticationClientOptions } from '@feathersjs/authentication-client'
12
6
13
- const userServiceMethods = [ 'find' , 'get' , 'create' , 'update' , 'patch' , 'remove' ] as const
14
- type UserClientService = Pick < UserService < Params < UserQuery > > , typeof userServiceMethods [ number ] >
7
+ import { messageClient } from './services/messages/messages.shared'
8
+ export type { Message , MessageData , MessageQuery , MessagePatch } from './services/messages/messages.shared'
15
9
16
- const messageServiceMethods = [ 'find' , 'get' , 'create' , 'update' , 'patch' , 'remove' ] as const
17
- type MessageClientService = Pick < MessageService < Params < MessageQuery > > , typeof messageServiceMethods [ number ] >
10
+ import { userClient } from './services/users/users.shared'
11
+ export type { User , UserData , UserQuery , UserPatch } from './services/users/users.shared'
18
12
19
- export interface ServiceTypes {
20
- messages : MessageClientService
21
- users : UserClientService
22
- //
13
+ export interface Configuration {
14
+ connection : TransportConnection < ServiceTypes >
23
15
}
24
16
17
+ export interface ServiceTypes { }
18
+
19
+ export type ClientApplication = Application < ServiceTypes , Configuration >
20
+
25
21
/**
26
22
* Returns a typed client for the feathers-chat app.
27
23
*
@@ -34,16 +30,13 @@ export const createClient = <Configuration = any>(
34
30
connection : TransportConnection < ServiceTypes > ,
35
31
authenticationOptions : Partial < AuthenticationClientOptions > = { }
36
32
) => {
37
- const client = feathers < ServiceTypes , Configuration > ( )
33
+ const client : ClientApplication = feathers ( )
38
34
39
35
client . configure ( connection )
40
36
client . configure ( authenticationClient ( authenticationOptions ) )
37
+ client . set ( 'connection' , connection )
41
38
42
- client . use ( 'users' , connection . service ( 'users' ) , {
43
- methods : userServiceMethods
44
- } )
45
- client . use ( 'messages' , connection . service ( 'messages' ) , {
46
- methods : messageServiceMethods
47
- } )
39
+ client . configure ( userClient )
40
+ client . configure ( messageClient )
48
41
return client
49
42
}
0 commit comments