@temboplus/afloat 0.1.73 → 0.1.75-0
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/dist/features/admin/admin.contract.d.ts +64 -64
- package/dist/features/contact/contact.api-contract.d.ts +24 -29
- package/dist/features/contact/contact.dtos.d.ts +6 -6
- package/dist/features/payout/payout.api-contract.d.ts +25 -46
- package/dist/features/payout/payout.dtos.d.ts +239 -5
- package/dist/features/payout/payout.query.d.ts +126 -0
- package/dist/features/payout/payout.repository.d.ts +41 -49
- package/dist/features/wallet/wallet.contract.d.ts +8 -8
- package/dist/features/wallet/wallet.dtos.d.ts +12 -12
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/lib/api/common-schemas.d.ts +49 -0
- package/dist/lib/api/index.d.ts +1 -1
- package/dist/lib/query/index.d.ts +2 -0
- package/dist/lib/query/query.builder.d.ts +71 -0
- package/dist/lib/query/query.types.d.ts +36 -0
- package/package.json +1 -1
- package/dist/lib/api/common-responses.d.ts +0 -12
|
@@ -19,28 +19,28 @@ export declare const userManagementContract: {
|
|
|
19
19
|
type?: string | undefined;
|
|
20
20
|
name?: string | undefined;
|
|
21
21
|
id?: string | undefined;
|
|
22
|
-
|
|
22
|
+
resetPassword?: number | undefined;
|
|
23
|
+
identity?: string | undefined;
|
|
23
24
|
createdAt?: string | undefined;
|
|
25
|
+
eager?: string | undefined;
|
|
26
|
+
profileId?: string | undefined;
|
|
24
27
|
updatedAt?: string | undefined;
|
|
25
|
-
identity?: string | undefined;
|
|
26
|
-
resetPassword?: number | undefined;
|
|
27
28
|
roleId?: string | undefined;
|
|
28
29
|
isActive?: number | undefined;
|
|
29
30
|
isArchived?: number | undefined;
|
|
30
|
-
eager?: string | undefined;
|
|
31
31
|
}, {
|
|
32
32
|
type?: string | undefined;
|
|
33
33
|
name?: string | undefined;
|
|
34
34
|
id?: string | undefined;
|
|
35
|
-
|
|
35
|
+
resetPassword?: number | undefined;
|
|
36
|
+
identity?: string | undefined;
|
|
36
37
|
createdAt?: string | undefined;
|
|
38
|
+
eager?: string | undefined;
|
|
39
|
+
profileId?: string | undefined;
|
|
37
40
|
updatedAt?: string | undefined;
|
|
38
|
-
identity?: string | undefined;
|
|
39
|
-
resetPassword?: number | undefined;
|
|
40
41
|
roleId?: string | undefined;
|
|
41
42
|
isActive?: number | undefined;
|
|
42
43
|
isArchived?: number | undefined;
|
|
43
|
-
eager?: string | undefined;
|
|
44
44
|
}>;
|
|
45
45
|
summary: "List all user accounts";
|
|
46
46
|
method: "GET";
|
|
@@ -63,40 +63,40 @@ export declare const userManagementContract: {
|
|
|
63
63
|
type: string;
|
|
64
64
|
name: string;
|
|
65
65
|
id: string;
|
|
66
|
-
|
|
66
|
+
resetPassword: boolean;
|
|
67
|
+
identity: string;
|
|
67
68
|
createdAt: string;
|
|
69
|
+
profileId: string;
|
|
68
70
|
updatedAt: string;
|
|
69
|
-
identity: string;
|
|
70
|
-
resetPassword: boolean;
|
|
71
71
|
roleId: string;
|
|
72
72
|
isActive: boolean;
|
|
73
73
|
isArchived: boolean;
|
|
74
74
|
role?: {
|
|
75
75
|
name: string;
|
|
76
76
|
id: string;
|
|
77
|
+
access: string[];
|
|
77
78
|
createdAt: string;
|
|
78
79
|
updatedAt: string;
|
|
79
|
-
access: string[];
|
|
80
80
|
description?: string | undefined;
|
|
81
81
|
} | undefined;
|
|
82
82
|
}, {
|
|
83
83
|
type: string;
|
|
84
84
|
name: string;
|
|
85
85
|
id: string;
|
|
86
|
-
|
|
86
|
+
resetPassword: boolean;
|
|
87
|
+
identity: string;
|
|
87
88
|
createdAt: string;
|
|
89
|
+
profileId: string;
|
|
88
90
|
updatedAt: string;
|
|
89
|
-
identity: string;
|
|
90
|
-
resetPassword: boolean;
|
|
91
91
|
roleId: string;
|
|
92
92
|
isActive: boolean;
|
|
93
93
|
isArchived: boolean;
|
|
94
94
|
role?: {
|
|
95
95
|
name: string;
|
|
96
96
|
id: string;
|
|
97
|
+
access: string[];
|
|
97
98
|
createdAt: string;
|
|
98
99
|
updatedAt: string;
|
|
99
|
-
access: string[];
|
|
100
100
|
description?: string | undefined;
|
|
101
101
|
} | undefined;
|
|
102
102
|
}>, "many">;
|
|
@@ -142,28 +142,28 @@ export declare const userManagementContract: {
|
|
|
142
142
|
type?: string | undefined;
|
|
143
143
|
name?: string | undefined;
|
|
144
144
|
id?: string | undefined;
|
|
145
|
-
|
|
145
|
+
resetPassword?: number | undefined;
|
|
146
|
+
identity?: string | undefined;
|
|
146
147
|
createdAt?: string | undefined;
|
|
148
|
+
eager?: string | undefined;
|
|
149
|
+
profileId?: string | undefined;
|
|
147
150
|
updatedAt?: string | undefined;
|
|
148
|
-
identity?: string | undefined;
|
|
149
|
-
resetPassword?: number | undefined;
|
|
150
151
|
roleId?: string | undefined;
|
|
151
152
|
isActive?: number | undefined;
|
|
152
153
|
isArchived?: number | undefined;
|
|
153
|
-
eager?: string | undefined;
|
|
154
154
|
}, {
|
|
155
155
|
type?: string | undefined;
|
|
156
156
|
name?: string | undefined;
|
|
157
157
|
id?: string | undefined;
|
|
158
|
-
|
|
158
|
+
resetPassword?: number | undefined;
|
|
159
|
+
identity?: string | undefined;
|
|
159
160
|
createdAt?: string | undefined;
|
|
161
|
+
eager?: string | undefined;
|
|
162
|
+
profileId?: string | undefined;
|
|
160
163
|
updatedAt?: string | undefined;
|
|
161
|
-
identity?: string | undefined;
|
|
162
|
-
resetPassword?: number | undefined;
|
|
163
164
|
roleId?: string | undefined;
|
|
164
165
|
isActive?: number | undefined;
|
|
165
166
|
isArchived?: number | undefined;
|
|
166
|
-
eager?: string | undefined;
|
|
167
167
|
}>;
|
|
168
168
|
summary: "Get user account details";
|
|
169
169
|
method: "GET";
|
|
@@ -186,40 +186,40 @@ export declare const userManagementContract: {
|
|
|
186
186
|
type: string;
|
|
187
187
|
name: string;
|
|
188
188
|
id: string;
|
|
189
|
-
|
|
189
|
+
resetPassword: boolean;
|
|
190
|
+
identity: string;
|
|
190
191
|
createdAt: string;
|
|
192
|
+
profileId: string;
|
|
191
193
|
updatedAt: string;
|
|
192
|
-
identity: string;
|
|
193
|
-
resetPassword: boolean;
|
|
194
194
|
roleId: string;
|
|
195
195
|
isActive: boolean;
|
|
196
196
|
isArchived: boolean;
|
|
197
197
|
role?: {
|
|
198
198
|
name: string;
|
|
199
199
|
id: string;
|
|
200
|
+
access: string[];
|
|
200
201
|
createdAt: string;
|
|
201
202
|
updatedAt: string;
|
|
202
|
-
access: string[];
|
|
203
203
|
description?: string | undefined;
|
|
204
204
|
} | undefined;
|
|
205
205
|
}, {
|
|
206
206
|
type: string;
|
|
207
207
|
name: string;
|
|
208
208
|
id: string;
|
|
209
|
-
|
|
209
|
+
resetPassword: boolean;
|
|
210
|
+
identity: string;
|
|
210
211
|
createdAt: string;
|
|
212
|
+
profileId: string;
|
|
211
213
|
updatedAt: string;
|
|
212
|
-
identity: string;
|
|
213
|
-
resetPassword: boolean;
|
|
214
214
|
roleId: string;
|
|
215
215
|
isActive: boolean;
|
|
216
216
|
isArchived: boolean;
|
|
217
217
|
role?: {
|
|
218
218
|
name: string;
|
|
219
219
|
id: string;
|
|
220
|
+
access: string[];
|
|
220
221
|
createdAt: string;
|
|
221
222
|
updatedAt: string;
|
|
222
|
-
access: string[];
|
|
223
223
|
description?: string | undefined;
|
|
224
224
|
} | undefined;
|
|
225
225
|
}>;
|
|
@@ -285,9 +285,9 @@ export declare const userManagementContract: {
|
|
|
285
285
|
type: string;
|
|
286
286
|
name: string;
|
|
287
287
|
id: string;
|
|
288
|
-
profileId: string;
|
|
289
|
-
createdAt: string;
|
|
290
288
|
identity: string;
|
|
289
|
+
createdAt: string;
|
|
290
|
+
profileId: string;
|
|
291
291
|
roleId: string;
|
|
292
292
|
isActive: boolean;
|
|
293
293
|
isArchived: boolean;
|
|
@@ -295,9 +295,9 @@ export declare const userManagementContract: {
|
|
|
295
295
|
type: string;
|
|
296
296
|
name: string;
|
|
297
297
|
id: string;
|
|
298
|
-
profileId: string;
|
|
299
|
-
createdAt: string;
|
|
300
298
|
identity: string;
|
|
299
|
+
createdAt: string;
|
|
300
|
+
profileId: string;
|
|
301
301
|
roleId: string;
|
|
302
302
|
isActive: boolean;
|
|
303
303
|
isArchived: boolean;
|
|
@@ -384,40 +384,40 @@ export declare const userManagementContract: {
|
|
|
384
384
|
type: string;
|
|
385
385
|
name: string;
|
|
386
386
|
id: string;
|
|
387
|
-
|
|
387
|
+
resetPassword: boolean;
|
|
388
|
+
identity: string;
|
|
388
389
|
createdAt: string;
|
|
390
|
+
profileId: string;
|
|
389
391
|
updatedAt: string;
|
|
390
|
-
identity: string;
|
|
391
|
-
resetPassword: boolean;
|
|
392
392
|
roleId: string;
|
|
393
393
|
isActive: boolean;
|
|
394
394
|
isArchived: boolean;
|
|
395
395
|
role?: {
|
|
396
396
|
name: string;
|
|
397
397
|
id: string;
|
|
398
|
+
access: string[];
|
|
398
399
|
createdAt: string;
|
|
399
400
|
updatedAt: string;
|
|
400
|
-
access: string[];
|
|
401
401
|
description?: string | undefined;
|
|
402
402
|
} | undefined;
|
|
403
403
|
}, {
|
|
404
404
|
type: string;
|
|
405
405
|
name: string;
|
|
406
406
|
id: string;
|
|
407
|
-
|
|
407
|
+
resetPassword: boolean;
|
|
408
|
+
identity: string;
|
|
408
409
|
createdAt: string;
|
|
410
|
+
profileId: string;
|
|
409
411
|
updatedAt: string;
|
|
410
|
-
identity: string;
|
|
411
|
-
resetPassword: boolean;
|
|
412
412
|
roleId: string;
|
|
413
413
|
isActive: boolean;
|
|
414
414
|
isArchived: boolean;
|
|
415
415
|
role?: {
|
|
416
416
|
name: string;
|
|
417
417
|
id: string;
|
|
418
|
+
access: string[];
|
|
418
419
|
createdAt: string;
|
|
419
420
|
updatedAt: string;
|
|
420
|
-
access: string[];
|
|
421
421
|
description?: string | undefined;
|
|
422
422
|
} | undefined;
|
|
423
423
|
}>;
|
|
@@ -485,40 +485,40 @@ export declare const userManagementContract: {
|
|
|
485
485
|
type: string;
|
|
486
486
|
name: string;
|
|
487
487
|
id: string;
|
|
488
|
-
|
|
488
|
+
resetPassword: boolean;
|
|
489
|
+
identity: string;
|
|
489
490
|
createdAt: string;
|
|
491
|
+
profileId: string;
|
|
490
492
|
updatedAt: string;
|
|
491
|
-
identity: string;
|
|
492
|
-
resetPassword: boolean;
|
|
493
493
|
roleId: string;
|
|
494
494
|
isActive: boolean;
|
|
495
495
|
isArchived: boolean;
|
|
496
496
|
role?: {
|
|
497
497
|
name: string;
|
|
498
498
|
id: string;
|
|
499
|
+
access: string[];
|
|
499
500
|
createdAt: string;
|
|
500
501
|
updatedAt: string;
|
|
501
|
-
access: string[];
|
|
502
502
|
description?: string | undefined;
|
|
503
503
|
} | undefined;
|
|
504
504
|
}, {
|
|
505
505
|
type: string;
|
|
506
506
|
name: string;
|
|
507
507
|
id: string;
|
|
508
|
-
|
|
508
|
+
resetPassword: boolean;
|
|
509
|
+
identity: string;
|
|
509
510
|
createdAt: string;
|
|
511
|
+
profileId: string;
|
|
510
512
|
updatedAt: string;
|
|
511
|
-
identity: string;
|
|
512
|
-
resetPassword: boolean;
|
|
513
513
|
roleId: string;
|
|
514
514
|
isActive: boolean;
|
|
515
515
|
isArchived: boolean;
|
|
516
516
|
role?: {
|
|
517
517
|
name: string;
|
|
518
518
|
id: string;
|
|
519
|
+
access: string[];
|
|
519
520
|
createdAt: string;
|
|
520
521
|
updatedAt: string;
|
|
521
|
-
access: string[];
|
|
522
522
|
description?: string | undefined;
|
|
523
523
|
} | undefined;
|
|
524
524
|
}>;
|
|
@@ -576,40 +576,40 @@ export declare const userManagementContract: {
|
|
|
576
576
|
type: string;
|
|
577
577
|
name: string;
|
|
578
578
|
id: string;
|
|
579
|
-
|
|
579
|
+
resetPassword: boolean;
|
|
580
|
+
identity: string;
|
|
580
581
|
createdAt: string;
|
|
582
|
+
profileId: string;
|
|
581
583
|
updatedAt: string;
|
|
582
|
-
identity: string;
|
|
583
|
-
resetPassword: boolean;
|
|
584
584
|
roleId: string;
|
|
585
585
|
isActive: boolean;
|
|
586
586
|
isArchived: boolean;
|
|
587
587
|
role?: {
|
|
588
588
|
name: string;
|
|
589
589
|
id: string;
|
|
590
|
+
access: string[];
|
|
590
591
|
createdAt: string;
|
|
591
592
|
updatedAt: string;
|
|
592
|
-
access: string[];
|
|
593
593
|
description?: string | undefined;
|
|
594
594
|
} | undefined;
|
|
595
595
|
}, {
|
|
596
596
|
type: string;
|
|
597
597
|
name: string;
|
|
598
598
|
id: string;
|
|
599
|
-
|
|
599
|
+
resetPassword: boolean;
|
|
600
|
+
identity: string;
|
|
600
601
|
createdAt: string;
|
|
602
|
+
profileId: string;
|
|
601
603
|
updatedAt: string;
|
|
602
|
-
identity: string;
|
|
603
|
-
resetPassword: boolean;
|
|
604
604
|
roleId: string;
|
|
605
605
|
isActive: boolean;
|
|
606
606
|
isArchived: boolean;
|
|
607
607
|
role?: {
|
|
608
608
|
name: string;
|
|
609
609
|
id: string;
|
|
610
|
+
access: string[];
|
|
610
611
|
createdAt: string;
|
|
611
612
|
updatedAt: string;
|
|
612
|
-
access: string[];
|
|
613
613
|
description?: string | undefined;
|
|
614
614
|
} | undefined;
|
|
615
615
|
}>;
|
|
@@ -712,16 +712,16 @@ export declare const userManagementContract: {
|
|
|
712
712
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
713
713
|
name: string;
|
|
714
714
|
id: string;
|
|
715
|
+
access: string[];
|
|
715
716
|
createdAt: string;
|
|
716
717
|
updatedAt: string;
|
|
717
|
-
access: string[];
|
|
718
718
|
description?: string | undefined;
|
|
719
719
|
}, {
|
|
720
720
|
name: string;
|
|
721
721
|
id: string;
|
|
722
|
+
access: string[];
|
|
722
723
|
createdAt: string;
|
|
723
724
|
updatedAt: string;
|
|
724
|
-
access: string[];
|
|
725
725
|
description?: string | undefined;
|
|
726
726
|
}>, "many">;
|
|
727
727
|
401: z.ZodObject<{
|
|
@@ -763,16 +763,16 @@ export declare const userManagementContract: {
|
|
|
763
763
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
764
764
|
name: string;
|
|
765
765
|
id: string;
|
|
766
|
+
access: string[];
|
|
766
767
|
createdAt: string;
|
|
767
768
|
updatedAt: string;
|
|
768
|
-
access: string[];
|
|
769
769
|
description?: string | undefined;
|
|
770
770
|
}, {
|
|
771
771
|
name: string;
|
|
772
772
|
id: string;
|
|
773
|
+
access: string[];
|
|
773
774
|
createdAt: string;
|
|
774
775
|
updatedAt: string;
|
|
775
|
-
access: string[];
|
|
776
776
|
description?: string | undefined;
|
|
777
777
|
}>;
|
|
778
778
|
401: z.ZodObject<{
|
|
@@ -29,7 +29,6 @@ export declare const contract: {
|
|
|
29
29
|
}>;
|
|
30
30
|
path: "/";
|
|
31
31
|
responses: {
|
|
32
|
-
[x: number]: import("@ts-rest/core").AppRouteResponse;
|
|
33
32
|
201: z.ZodObject<{
|
|
34
33
|
id: z.ZodString;
|
|
35
34
|
profileId: z.ZodString;
|
|
@@ -43,20 +42,20 @@ export declare const contract: {
|
|
|
43
42
|
}, "strip", z.ZodTypeAny, {
|
|
44
43
|
type: import("./contact.dtos.js").ContactType;
|
|
45
44
|
id: string;
|
|
46
|
-
profileId: string;
|
|
47
|
-
createdAt: string;
|
|
48
|
-
updatedAt: string;
|
|
49
45
|
displayName: string;
|
|
50
46
|
accountNo: string;
|
|
47
|
+
createdAt: string;
|
|
48
|
+
profileId: string;
|
|
49
|
+
updatedAt: string;
|
|
51
50
|
channel: string;
|
|
52
51
|
}, {
|
|
53
52
|
type: import("./contact.dtos.js").ContactType;
|
|
54
53
|
id: string;
|
|
55
|
-
profileId: string;
|
|
56
|
-
createdAt: string;
|
|
57
|
-
updatedAt: string;
|
|
58
54
|
displayName: string;
|
|
59
55
|
accountNo: string;
|
|
56
|
+
createdAt: string;
|
|
57
|
+
profileId: string;
|
|
58
|
+
updatedAt: string;
|
|
60
59
|
channel: string;
|
|
61
60
|
}>;
|
|
62
61
|
};
|
|
@@ -81,7 +80,6 @@ export declare const contract: {
|
|
|
81
80
|
}>;
|
|
82
81
|
path: "/:id";
|
|
83
82
|
responses: {
|
|
84
|
-
[x: number]: import("@ts-rest/core").AppRouteResponse;
|
|
85
83
|
200: z.ZodObject<{
|
|
86
84
|
id: z.ZodString;
|
|
87
85
|
profileId: z.ZodString;
|
|
@@ -95,20 +93,20 @@ export declare const contract: {
|
|
|
95
93
|
}, "strip", z.ZodTypeAny, {
|
|
96
94
|
type: import("./contact.dtos.js").ContactType;
|
|
97
95
|
id: string;
|
|
98
|
-
profileId: string;
|
|
99
|
-
createdAt: string;
|
|
100
|
-
updatedAt: string;
|
|
101
96
|
displayName: string;
|
|
102
97
|
accountNo: string;
|
|
98
|
+
createdAt: string;
|
|
99
|
+
profileId: string;
|
|
100
|
+
updatedAt: string;
|
|
103
101
|
channel: string;
|
|
104
102
|
}, {
|
|
105
103
|
type: import("./contact.dtos.js").ContactType;
|
|
106
104
|
id: string;
|
|
107
|
-
profileId: string;
|
|
108
|
-
createdAt: string;
|
|
109
|
-
updatedAt: string;
|
|
110
105
|
displayName: string;
|
|
111
106
|
accountNo: string;
|
|
107
|
+
createdAt: string;
|
|
108
|
+
profileId: string;
|
|
109
|
+
updatedAt: string;
|
|
112
110
|
channel: string;
|
|
113
111
|
}>;
|
|
114
112
|
};
|
|
@@ -124,7 +122,6 @@ export declare const contract: {
|
|
|
124
122
|
method: "GET";
|
|
125
123
|
path: "/";
|
|
126
124
|
responses: {
|
|
127
|
-
[x: number]: import("@ts-rest/core").AppRouteResponse;
|
|
128
125
|
200: z.ZodArray<z.ZodObject<{
|
|
129
126
|
id: z.ZodString;
|
|
130
127
|
profileId: z.ZodString;
|
|
@@ -138,20 +135,20 @@ export declare const contract: {
|
|
|
138
135
|
}, "strip", z.ZodTypeAny, {
|
|
139
136
|
type: import("./contact.dtos.js").ContactType;
|
|
140
137
|
id: string;
|
|
141
|
-
profileId: string;
|
|
142
|
-
createdAt: string;
|
|
143
|
-
updatedAt: string;
|
|
144
138
|
displayName: string;
|
|
145
139
|
accountNo: string;
|
|
140
|
+
createdAt: string;
|
|
141
|
+
profileId: string;
|
|
142
|
+
updatedAt: string;
|
|
146
143
|
channel: string;
|
|
147
144
|
}, {
|
|
148
145
|
type: import("./contact.dtos.js").ContactType;
|
|
149
146
|
id: string;
|
|
150
|
-
profileId: string;
|
|
151
|
-
createdAt: string;
|
|
152
|
-
updatedAt: string;
|
|
153
147
|
displayName: string;
|
|
154
148
|
accountNo: string;
|
|
149
|
+
createdAt: string;
|
|
150
|
+
profileId: string;
|
|
151
|
+
updatedAt: string;
|
|
155
152
|
channel: string;
|
|
156
153
|
}>, "many">;
|
|
157
154
|
};
|
|
@@ -160,7 +157,6 @@ export declare const contract: {
|
|
|
160
157
|
method: "GET";
|
|
161
158
|
path: "/:id";
|
|
162
159
|
responses: {
|
|
163
|
-
[x: number]: import("@ts-rest/core").AppRouteResponse;
|
|
164
160
|
200: z.ZodObject<{
|
|
165
161
|
id: z.ZodString;
|
|
166
162
|
profileId: z.ZodString;
|
|
@@ -174,20 +170,20 @@ export declare const contract: {
|
|
|
174
170
|
}, "strip", z.ZodTypeAny, {
|
|
175
171
|
type: import("./contact.dtos.js").ContactType;
|
|
176
172
|
id: string;
|
|
177
|
-
profileId: string;
|
|
178
|
-
createdAt: string;
|
|
179
|
-
updatedAt: string;
|
|
180
173
|
displayName: string;
|
|
181
174
|
accountNo: string;
|
|
175
|
+
createdAt: string;
|
|
176
|
+
profileId: string;
|
|
177
|
+
updatedAt: string;
|
|
182
178
|
channel: string;
|
|
183
179
|
}, {
|
|
184
180
|
type: import("./contact.dtos.js").ContactType;
|
|
185
181
|
id: string;
|
|
186
|
-
profileId: string;
|
|
187
|
-
createdAt: string;
|
|
188
|
-
updatedAt: string;
|
|
189
182
|
displayName: string;
|
|
190
183
|
accountNo: string;
|
|
184
|
+
createdAt: string;
|
|
185
|
+
profileId: string;
|
|
186
|
+
updatedAt: string;
|
|
191
187
|
channel: string;
|
|
192
188
|
}>;
|
|
193
189
|
};
|
|
@@ -197,7 +193,6 @@ export declare const contract: {
|
|
|
197
193
|
body: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
198
194
|
path: "/:id";
|
|
199
195
|
responses: {
|
|
200
|
-
[x: number]: import("@ts-rest/core").AppRouteResponse;
|
|
201
196
|
200: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
202
197
|
};
|
|
203
198
|
};
|
|
@@ -46,20 +46,20 @@ export declare const ContactDTOSchemas: {
|
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
47
|
type: ContactType;
|
|
48
48
|
id: string;
|
|
49
|
-
profileId: string;
|
|
50
|
-
createdAt: string;
|
|
51
|
-
updatedAt: string;
|
|
52
49
|
displayName: string;
|
|
53
50
|
accountNo: string;
|
|
51
|
+
createdAt: string;
|
|
52
|
+
profileId: string;
|
|
53
|
+
updatedAt: string;
|
|
54
54
|
channel: string;
|
|
55
55
|
}, {
|
|
56
56
|
type: ContactType;
|
|
57
57
|
id: string;
|
|
58
|
-
profileId: string;
|
|
59
|
-
createdAt: string;
|
|
60
|
-
updatedAt: string;
|
|
61
58
|
displayName: string;
|
|
62
59
|
accountNo: string;
|
|
60
|
+
createdAt: string;
|
|
61
|
+
profileId: string;
|
|
62
|
+
updatedAt: string;
|
|
63
63
|
channel: string;
|
|
64
64
|
}>;
|
|
65
65
|
/** Schema for contact input validation */
|