@the-inkwell/shared 0.1.101 → 0.1.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ export default interface Clients {
|
|
|
12
12
|
|
|
13
13
|
name: string;
|
|
14
14
|
|
|
15
|
-
description: string;
|
|
15
|
+
description: string | null;
|
|
16
16
|
|
|
17
17
|
status: ClientStatuses | null;
|
|
18
18
|
|
|
@@ -28,7 +28,7 @@ export interface ClientsInitializer {
|
|
|
28
28
|
|
|
29
29
|
name: string;
|
|
30
30
|
|
|
31
|
-
description
|
|
31
|
+
description?: string | null;
|
|
32
32
|
|
|
33
33
|
/** Default value: 'ACTIVE'::"ClientStatuses" */
|
|
34
34
|
status?: ClientStatuses | null;
|
|
@@ -46,7 +46,7 @@ export interface ClientsMutator {
|
|
|
46
46
|
|
|
47
47
|
name?: string;
|
|
48
48
|
|
|
49
|
-
description?: string;
|
|
49
|
+
description?: string | null;
|
|
50
50
|
|
|
51
51
|
status?: ClientStatuses | null;
|
|
52
52
|
|
|
@@ -5,9 +5,7 @@ import Clients, {
|
|
|
5
5
|
} from '../../../_schema/Clients'
|
|
6
6
|
import ClientStatuses from '../../../_schema/ClientStatuses'
|
|
7
7
|
|
|
8
|
-
export type AdminClient = Clients
|
|
9
|
-
_openPositionsCount: number
|
|
10
|
-
}
|
|
8
|
+
export type AdminClient = Clients
|
|
11
9
|
type AdminClientInitializer = ClientsInitializer
|
|
12
10
|
type AdminClientMutator = ClientsMutator
|
|
13
11
|
|
|
@@ -24,7 +22,11 @@ export type AdminClientListInput = ListRequest<
|
|
|
24
22
|
status?: ClientStatuses[]
|
|
25
23
|
}
|
|
26
24
|
>
|
|
27
|
-
export type AdminClientListResponse = ListResponse<
|
|
25
|
+
export type AdminClientListResponse = ListResponse<
|
|
26
|
+
AdminClient & {
|
|
27
|
+
_openPositionsCount: number
|
|
28
|
+
}
|
|
29
|
+
>
|
|
28
30
|
|
|
29
31
|
// create
|
|
30
32
|
|