@dakkitor/api-contracts 1.1.9 → 1.1.10
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/actives/actives.contract.d.ts +163 -163
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/actives/actives.contract.js +6 -11
- package/dist/bookings/bookings.contract.d.ts +2092 -0
- package/dist/bookings/bookings.contract.d.ts.map +1 -0
- package/dist/bookings/bookings.contract.js +286 -0
- package/dist/client-contacts/client-contacts.contract.d.ts +254 -252
- package/dist/client-contacts/client-contacts.contract.d.ts.map +1 -1
- package/dist/client-contacts/client-contacts.contract.js +5 -5
- package/dist/clients/clients.contract.d.ts +189 -189
- package/dist/clients/clients.contract.d.ts.map +1 -1
- package/dist/clients/clients.contract.js +5 -23
- package/dist/common/common-schemas.d.ts +20 -0
- package/dist/common/common-schemas.d.ts.map +1 -0
- package/dist/common/common-schemas.js +29 -0
- package/dist/common/error-schemas.d.ts +6 -6
- package/dist/common/pagination-query.schema.d.ts +17 -0
- package/dist/common/pagination-query.schema.d.ts.map +1 -0
- package/dist/common/pagination-query.schema.js +15 -0
- package/dist/common/pagination.schema.d.ts +2 -2
- package/dist/index.d.ts +2209 -752
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/dist/users/users.contract.d.ts +218 -208
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +4 -8
- package/package.json +1 -1
|
@@ -121,10 +121,10 @@ export declare const ClientContactSchema: z.ZodObject<{
|
|
|
121
121
|
createdAt: string;
|
|
122
122
|
updatedAt: string;
|
|
123
123
|
id: string;
|
|
124
|
-
|
|
124
|
+
clientId: string;
|
|
125
125
|
email: string;
|
|
126
|
+
name: string;
|
|
126
127
|
version: number;
|
|
127
|
-
clientId: string;
|
|
128
128
|
client: {
|
|
129
129
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
130
130
|
createdAt: string;
|
|
@@ -159,10 +159,10 @@ export declare const ClientContactSchema: z.ZodObject<{
|
|
|
159
159
|
createdAt: string | Date;
|
|
160
160
|
updatedAt: string | Date;
|
|
161
161
|
id: string;
|
|
162
|
-
|
|
162
|
+
clientId: string;
|
|
163
163
|
email: string;
|
|
164
|
+
name: string;
|
|
164
165
|
version: number;
|
|
165
|
-
clientId: string;
|
|
166
166
|
client: {
|
|
167
167
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
168
168
|
createdAt: string | Date;
|
|
@@ -208,8 +208,8 @@ export declare const CreateClientContactSchema: z.ZodObject<{
|
|
|
208
208
|
email: z.ZodString;
|
|
209
209
|
source: z.ZodOptional<z.ZodString>;
|
|
210
210
|
}, "strip", z.ZodTypeAny, {
|
|
211
|
-
name: string;
|
|
212
211
|
email: string;
|
|
212
|
+
name: string;
|
|
213
213
|
client: {
|
|
214
214
|
id: string;
|
|
215
215
|
};
|
|
@@ -217,8 +217,8 @@ export declare const CreateClientContactSchema: z.ZodObject<{
|
|
|
217
217
|
position?: string | undefined;
|
|
218
218
|
source?: string | undefined;
|
|
219
219
|
}, {
|
|
220
|
-
name: string;
|
|
221
220
|
email: string;
|
|
221
|
+
name: string;
|
|
222
222
|
client: {
|
|
223
223
|
id: string;
|
|
224
224
|
};
|
|
@@ -240,14 +240,14 @@ export declare const CreateClientContactBodySchema: z.ZodObject<Omit<{
|
|
|
240
240
|
email: z.ZodString;
|
|
241
241
|
source: z.ZodOptional<z.ZodString>;
|
|
242
242
|
}, "client">, "strip", z.ZodTypeAny, {
|
|
243
|
-
name: string;
|
|
244
243
|
email: string;
|
|
244
|
+
name: string;
|
|
245
245
|
phone: string;
|
|
246
246
|
position?: string | undefined;
|
|
247
247
|
source?: string | undefined;
|
|
248
248
|
}, {
|
|
249
|
-
name: string;
|
|
250
249
|
email: string;
|
|
250
|
+
name: string;
|
|
251
251
|
phone: string;
|
|
252
252
|
position?: string | undefined;
|
|
253
253
|
source?: string | undefined;
|
|
@@ -269,22 +269,23 @@ export declare const UpdateClientContactSchema: z.ZodObject<Omit<{
|
|
|
269
269
|
version: z.ZodNumber;
|
|
270
270
|
}, "client">, "strip", z.ZodTypeAny, {
|
|
271
271
|
version: number;
|
|
272
|
-
name?: string | undefined;
|
|
273
272
|
email?: string | undefined;
|
|
273
|
+
name?: string | undefined;
|
|
274
274
|
position?: string | undefined;
|
|
275
275
|
phone?: string | undefined;
|
|
276
276
|
source?: string | undefined;
|
|
277
277
|
}, {
|
|
278
278
|
version: number;
|
|
279
|
-
name?: string | undefined;
|
|
280
279
|
email?: string | undefined;
|
|
280
|
+
name?: string | undefined;
|
|
281
281
|
position?: string | undefined;
|
|
282
282
|
phone?: string | undefined;
|
|
283
283
|
source?: string | undefined;
|
|
284
284
|
}>;
|
|
285
285
|
export declare const FilterClientContactSchema: z.ZodObject<{
|
|
286
|
-
page: z.ZodDefault<z.ZodNumber>;
|
|
287
286
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
287
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
288
|
+
} & {
|
|
288
289
|
name: z.ZodOptional<z.ZodString>;
|
|
289
290
|
email: z.ZodOptional<z.ZodString>;
|
|
290
291
|
phone: z.ZodOptional<z.ZodString>;
|
|
@@ -295,21 +296,21 @@ export declare const FilterClientContactSchema: z.ZodObject<{
|
|
|
295
296
|
}, "strip", z.ZodTypeAny, {
|
|
296
297
|
limit: number;
|
|
297
298
|
page: number;
|
|
298
|
-
sortBy: "createdAt" | "updatedAt" | "
|
|
299
|
+
sortBy: "createdAt" | "updatedAt" | "email" | "name" | "position";
|
|
299
300
|
sortOrder: "ASC" | "DESC";
|
|
300
|
-
name?: string | undefined;
|
|
301
|
-
email?: string | undefined;
|
|
302
301
|
clientId?: string | undefined;
|
|
302
|
+
email?: string | undefined;
|
|
303
|
+
name?: string | undefined;
|
|
303
304
|
phone?: string | undefined;
|
|
304
305
|
createdById?: string | undefined;
|
|
305
306
|
}, {
|
|
306
307
|
limit?: number | undefined;
|
|
307
308
|
page?: number | undefined;
|
|
308
|
-
sortBy?: "createdAt" | "updatedAt" | "
|
|
309
|
+
sortBy?: "createdAt" | "updatedAt" | "email" | "name" | "position" | undefined;
|
|
309
310
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
310
|
-
name?: string | undefined;
|
|
311
|
-
email?: string | undefined;
|
|
312
311
|
clientId?: string | undefined;
|
|
312
|
+
email?: string | undefined;
|
|
313
|
+
name?: string | undefined;
|
|
313
314
|
phone?: string | undefined;
|
|
314
315
|
createdById?: string | undefined;
|
|
315
316
|
}>;
|
|
@@ -420,10 +421,10 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
|
|
|
420
421
|
createdAt: string;
|
|
421
422
|
updatedAt: string;
|
|
422
423
|
id: string;
|
|
423
|
-
|
|
424
|
+
clientId: string;
|
|
424
425
|
email: string;
|
|
426
|
+
name: string;
|
|
425
427
|
version: number;
|
|
426
|
-
clientId: string;
|
|
427
428
|
client: {
|
|
428
429
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
429
430
|
createdAt: string;
|
|
@@ -458,10 +459,10 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
|
|
|
458
459
|
createdAt: string | Date;
|
|
459
460
|
updatedAt: string | Date;
|
|
460
461
|
id: string;
|
|
461
|
-
|
|
462
|
+
clientId: string;
|
|
462
463
|
email: string;
|
|
464
|
+
name: string;
|
|
463
465
|
version: number;
|
|
464
|
-
clientId: string;
|
|
465
466
|
client: {
|
|
466
467
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
467
468
|
createdAt: string | Date;
|
|
@@ -499,14 +500,15 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
|
|
|
499
500
|
currentPage: z.ZodNumber;
|
|
500
501
|
totalPages: z.ZodNumber;
|
|
501
502
|
}, "strip", z.ZodTypeAny, {
|
|
503
|
+
limit: number;
|
|
502
504
|
items: {
|
|
503
505
|
createdAt: string;
|
|
504
506
|
updatedAt: string;
|
|
505
507
|
id: string;
|
|
506
|
-
|
|
508
|
+
clientId: string;
|
|
507
509
|
email: string;
|
|
510
|
+
name: string;
|
|
508
511
|
version: number;
|
|
509
|
-
clientId: string;
|
|
510
512
|
client: {
|
|
511
513
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
512
514
|
createdAt: string;
|
|
@@ -539,19 +541,19 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
|
|
|
539
541
|
source?: string | undefined;
|
|
540
542
|
}[];
|
|
541
543
|
totalCount: number;
|
|
542
|
-
limit: number;
|
|
543
544
|
skip: number;
|
|
544
545
|
currentPage: number;
|
|
545
546
|
totalPages: number;
|
|
546
547
|
}, {
|
|
548
|
+
limit: number;
|
|
547
549
|
items: {
|
|
548
550
|
createdAt: string | Date;
|
|
549
551
|
updatedAt: string | Date;
|
|
550
552
|
id: string;
|
|
551
|
-
|
|
553
|
+
clientId: string;
|
|
552
554
|
email: string;
|
|
555
|
+
name: string;
|
|
553
556
|
version: number;
|
|
554
|
-
clientId: string;
|
|
555
557
|
client: {
|
|
556
558
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
557
559
|
createdAt: string | Date;
|
|
@@ -584,17 +586,16 @@ export declare const ClientContactPaginatedResponseSchema: z.ZodObject<{
|
|
|
584
586
|
source?: string | undefined;
|
|
585
587
|
}[];
|
|
586
588
|
totalCount: number;
|
|
587
|
-
limit: number;
|
|
588
589
|
skip: number;
|
|
589
590
|
currentPage: number;
|
|
590
591
|
totalPages: number;
|
|
591
592
|
}>;
|
|
592
|
-
export type
|
|
593
|
-
export type
|
|
594
|
-
export type
|
|
595
|
-
export type
|
|
596
|
-
export type
|
|
597
|
-
export type
|
|
593
|
+
export type ClientContact = z.infer<typeof ClientContactSchema>;
|
|
594
|
+
export type CreateClientContact = z.infer<typeof CreateClientContactSchema>;
|
|
595
|
+
export type CreateClientContactBody = z.infer<typeof CreateClientContactBodySchema>;
|
|
596
|
+
export type UpdateClientContact = z.infer<typeof UpdateClientContactSchema>;
|
|
597
|
+
export type FilterClientContact = z.infer<typeof FilterClientContactSchema>;
|
|
598
|
+
export type ClientContactPaginatedResponse = z.infer<typeof ClientContactPaginatedResponseSchema>;
|
|
598
599
|
export declare const clientContactsContractRouter: {
|
|
599
600
|
create: {
|
|
600
601
|
summary: "Create a new client contact";
|
|
@@ -613,8 +614,8 @@ export declare const clientContactsContractRouter: {
|
|
|
613
614
|
email: z.ZodString;
|
|
614
615
|
source: z.ZodOptional<z.ZodString>;
|
|
615
616
|
}, "strip", z.ZodTypeAny, {
|
|
616
|
-
name: string;
|
|
617
617
|
email: string;
|
|
618
|
+
name: string;
|
|
618
619
|
client: {
|
|
619
620
|
id: string;
|
|
620
621
|
};
|
|
@@ -622,8 +623,8 @@ export declare const clientContactsContractRouter: {
|
|
|
622
623
|
position?: string | undefined;
|
|
623
624
|
source?: string | undefined;
|
|
624
625
|
}, {
|
|
625
|
-
name: string;
|
|
626
626
|
email: string;
|
|
627
|
+
name: string;
|
|
627
628
|
client: {
|
|
628
629
|
id: string;
|
|
629
630
|
};
|
|
@@ -642,19 +643,19 @@ export declare const clientContactsContractRouter: {
|
|
|
642
643
|
path: z.ZodString;
|
|
643
644
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
644
645
|
}, "strip", z.ZodTypeAny, {
|
|
645
|
-
statusCode: number;
|
|
646
|
-
message: string;
|
|
647
646
|
code: string;
|
|
648
|
-
timestamp: string;
|
|
649
647
|
path: string;
|
|
648
|
+
message: string;
|
|
649
|
+
statusCode: number;
|
|
650
|
+
timestamp: string;
|
|
650
651
|
details?: unknown;
|
|
651
652
|
correlationId?: string | undefined;
|
|
652
653
|
}, {
|
|
653
|
-
statusCode: number;
|
|
654
|
-
message: string;
|
|
655
654
|
code: string;
|
|
656
|
-
timestamp: string;
|
|
657
655
|
path: string;
|
|
656
|
+
message: string;
|
|
657
|
+
statusCode: number;
|
|
658
|
+
timestamp: string;
|
|
658
659
|
details?: unknown;
|
|
659
660
|
correlationId?: string | undefined;
|
|
660
661
|
}>;
|
|
@@ -667,19 +668,19 @@ export declare const clientContactsContractRouter: {
|
|
|
667
668
|
path: z.ZodString;
|
|
668
669
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
669
670
|
}, "strip", z.ZodTypeAny, {
|
|
670
|
-
statusCode: number;
|
|
671
|
-
message: string;
|
|
672
671
|
code: string;
|
|
673
|
-
timestamp: string;
|
|
674
672
|
path: string;
|
|
673
|
+
message: string;
|
|
674
|
+
statusCode: number;
|
|
675
|
+
timestamp: string;
|
|
675
676
|
details?: unknown;
|
|
676
677
|
correlationId?: string | undefined;
|
|
677
678
|
}, {
|
|
678
|
-
statusCode: number;
|
|
679
|
-
message: string;
|
|
680
679
|
code: string;
|
|
681
|
-
timestamp: string;
|
|
682
680
|
path: string;
|
|
681
|
+
message: string;
|
|
682
|
+
statusCode: number;
|
|
683
|
+
timestamp: string;
|
|
683
684
|
details?: unknown;
|
|
684
685
|
correlationId?: string | undefined;
|
|
685
686
|
}>;
|
|
@@ -692,19 +693,19 @@ export declare const clientContactsContractRouter: {
|
|
|
692
693
|
path: z.ZodString;
|
|
693
694
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
694
695
|
}, "strip", z.ZodTypeAny, {
|
|
695
|
-
statusCode: number;
|
|
696
|
-
message: string;
|
|
697
696
|
code: string;
|
|
698
|
-
timestamp: string;
|
|
699
697
|
path: string;
|
|
698
|
+
message: string;
|
|
699
|
+
statusCode: number;
|
|
700
|
+
timestamp: string;
|
|
700
701
|
details?: unknown;
|
|
701
702
|
correlationId?: string | undefined;
|
|
702
703
|
}, {
|
|
703
|
-
statusCode: number;
|
|
704
|
-
message: string;
|
|
705
704
|
code: string;
|
|
706
|
-
timestamp: string;
|
|
707
705
|
path: string;
|
|
706
|
+
message: string;
|
|
707
|
+
statusCode: number;
|
|
708
|
+
timestamp: string;
|
|
708
709
|
details?: unknown;
|
|
709
710
|
correlationId?: string | undefined;
|
|
710
711
|
}>;
|
|
@@ -717,19 +718,19 @@ export declare const clientContactsContractRouter: {
|
|
|
717
718
|
path: z.ZodString;
|
|
718
719
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
719
720
|
}, "strip", z.ZodTypeAny, {
|
|
720
|
-
statusCode: number;
|
|
721
|
-
message: string;
|
|
722
721
|
code: string;
|
|
723
|
-
timestamp: string;
|
|
724
722
|
path: string;
|
|
723
|
+
message: string;
|
|
724
|
+
statusCode: number;
|
|
725
|
+
timestamp: string;
|
|
725
726
|
details?: unknown;
|
|
726
727
|
correlationId?: string | undefined;
|
|
727
728
|
}, {
|
|
728
|
-
statusCode: number;
|
|
729
|
-
message: string;
|
|
730
729
|
code: string;
|
|
731
|
-
timestamp: string;
|
|
732
730
|
path: string;
|
|
731
|
+
message: string;
|
|
732
|
+
statusCode: number;
|
|
733
|
+
timestamp: string;
|
|
733
734
|
details?: unknown;
|
|
734
735
|
correlationId?: string | undefined;
|
|
735
736
|
}>;
|
|
@@ -839,10 +840,10 @@ export declare const clientContactsContractRouter: {
|
|
|
839
840
|
createdAt: string;
|
|
840
841
|
updatedAt: string;
|
|
841
842
|
id: string;
|
|
842
|
-
|
|
843
|
+
clientId: string;
|
|
843
844
|
email: string;
|
|
845
|
+
name: string;
|
|
844
846
|
version: number;
|
|
845
|
-
clientId: string;
|
|
846
847
|
client: {
|
|
847
848
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
848
849
|
createdAt: string;
|
|
@@ -877,10 +878,10 @@ export declare const clientContactsContractRouter: {
|
|
|
877
878
|
createdAt: string | Date;
|
|
878
879
|
updatedAt: string | Date;
|
|
879
880
|
id: string;
|
|
880
|
-
|
|
881
|
+
clientId: string;
|
|
881
882
|
email: string;
|
|
883
|
+
name: string;
|
|
882
884
|
version: number;
|
|
883
|
-
clientId: string;
|
|
884
885
|
client: {
|
|
885
886
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
886
887
|
createdAt: string | Date;
|
|
@@ -921,19 +922,19 @@ export declare const clientContactsContractRouter: {
|
|
|
921
922
|
path: z.ZodString;
|
|
922
923
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
923
924
|
}, "strip", z.ZodTypeAny, {
|
|
924
|
-
statusCode: number;
|
|
925
|
-
message: string;
|
|
926
925
|
code: string;
|
|
927
|
-
timestamp: string;
|
|
928
926
|
path: string;
|
|
927
|
+
message: string;
|
|
928
|
+
statusCode: number;
|
|
929
|
+
timestamp: string;
|
|
929
930
|
details?: unknown;
|
|
930
931
|
correlationId?: string | undefined;
|
|
931
932
|
}, {
|
|
932
|
-
statusCode: number;
|
|
933
|
-
message: string;
|
|
934
933
|
code: string;
|
|
935
|
-
timestamp: string;
|
|
936
934
|
path: string;
|
|
935
|
+
message: string;
|
|
936
|
+
statusCode: number;
|
|
937
|
+
timestamp: string;
|
|
937
938
|
details?: unknown;
|
|
938
939
|
correlationId?: string | undefined;
|
|
939
940
|
}>;
|
|
@@ -963,14 +964,14 @@ export declare const clientContactsContractRouter: {
|
|
|
963
964
|
email: z.ZodString;
|
|
964
965
|
source: z.ZodOptional<z.ZodString>;
|
|
965
966
|
}, "client">, "strip", z.ZodTypeAny, {
|
|
966
|
-
name: string;
|
|
967
967
|
email: string;
|
|
968
|
+
name: string;
|
|
968
969
|
phone: string;
|
|
969
970
|
position?: string | undefined;
|
|
970
971
|
source?: string | undefined;
|
|
971
972
|
}, {
|
|
972
|
-
name: string;
|
|
973
973
|
email: string;
|
|
974
|
+
name: string;
|
|
974
975
|
phone: string;
|
|
975
976
|
position?: string | undefined;
|
|
976
977
|
source?: string | undefined;
|
|
@@ -986,19 +987,19 @@ export declare const clientContactsContractRouter: {
|
|
|
986
987
|
path: z.ZodString;
|
|
987
988
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
988
989
|
}, "strip", z.ZodTypeAny, {
|
|
989
|
-
statusCode: number;
|
|
990
|
-
message: string;
|
|
991
990
|
code: string;
|
|
992
|
-
timestamp: string;
|
|
993
991
|
path: string;
|
|
992
|
+
message: string;
|
|
993
|
+
statusCode: number;
|
|
994
|
+
timestamp: string;
|
|
994
995
|
details?: unknown;
|
|
995
996
|
correlationId?: string | undefined;
|
|
996
997
|
}, {
|
|
997
|
-
statusCode: number;
|
|
998
|
-
message: string;
|
|
999
998
|
code: string;
|
|
1000
|
-
timestamp: string;
|
|
1001
999
|
path: string;
|
|
1000
|
+
message: string;
|
|
1001
|
+
statusCode: number;
|
|
1002
|
+
timestamp: string;
|
|
1002
1003
|
details?: unknown;
|
|
1003
1004
|
correlationId?: string | undefined;
|
|
1004
1005
|
}>;
|
|
@@ -1011,19 +1012,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1011
1012
|
path: z.ZodString;
|
|
1012
1013
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1013
1014
|
}, "strip", z.ZodTypeAny, {
|
|
1014
|
-
statusCode: number;
|
|
1015
|
-
message: string;
|
|
1016
1015
|
code: string;
|
|
1017
|
-
timestamp: string;
|
|
1018
1016
|
path: string;
|
|
1017
|
+
message: string;
|
|
1018
|
+
statusCode: number;
|
|
1019
|
+
timestamp: string;
|
|
1019
1020
|
details?: unknown;
|
|
1020
1021
|
correlationId?: string | undefined;
|
|
1021
1022
|
}, {
|
|
1022
|
-
statusCode: number;
|
|
1023
|
-
message: string;
|
|
1024
1023
|
code: string;
|
|
1025
|
-
timestamp: string;
|
|
1026
1024
|
path: string;
|
|
1025
|
+
message: string;
|
|
1026
|
+
statusCode: number;
|
|
1027
|
+
timestamp: string;
|
|
1027
1028
|
details?: unknown;
|
|
1028
1029
|
correlationId?: string | undefined;
|
|
1029
1030
|
}>;
|
|
@@ -1036,19 +1037,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1036
1037
|
path: z.ZodString;
|
|
1037
1038
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1038
1039
|
}, "strip", z.ZodTypeAny, {
|
|
1039
|
-
statusCode: number;
|
|
1040
|
-
message: string;
|
|
1041
1040
|
code: string;
|
|
1042
|
-
timestamp: string;
|
|
1043
1041
|
path: string;
|
|
1042
|
+
message: string;
|
|
1043
|
+
statusCode: number;
|
|
1044
|
+
timestamp: string;
|
|
1044
1045
|
details?: unknown;
|
|
1045
1046
|
correlationId?: string | undefined;
|
|
1046
1047
|
}, {
|
|
1047
|
-
statusCode: number;
|
|
1048
|
-
message: string;
|
|
1049
1048
|
code: string;
|
|
1050
|
-
timestamp: string;
|
|
1051
1049
|
path: string;
|
|
1050
|
+
message: string;
|
|
1051
|
+
statusCode: number;
|
|
1052
|
+
timestamp: string;
|
|
1052
1053
|
details?: unknown;
|
|
1053
1054
|
correlationId?: string | undefined;
|
|
1054
1055
|
}>;
|
|
@@ -1061,19 +1062,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1061
1062
|
path: z.ZodString;
|
|
1062
1063
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1063
1064
|
}, "strip", z.ZodTypeAny, {
|
|
1064
|
-
statusCode: number;
|
|
1065
|
-
message: string;
|
|
1066
1065
|
code: string;
|
|
1067
|
-
timestamp: string;
|
|
1068
1066
|
path: string;
|
|
1067
|
+
message: string;
|
|
1068
|
+
statusCode: number;
|
|
1069
|
+
timestamp: string;
|
|
1069
1070
|
details?: unknown;
|
|
1070
1071
|
correlationId?: string | undefined;
|
|
1071
1072
|
}, {
|
|
1072
|
-
statusCode: number;
|
|
1073
|
-
message: string;
|
|
1074
1073
|
code: string;
|
|
1075
|
-
timestamp: string;
|
|
1076
1074
|
path: string;
|
|
1075
|
+
message: string;
|
|
1076
|
+
statusCode: number;
|
|
1077
|
+
timestamp: string;
|
|
1077
1078
|
details?: unknown;
|
|
1078
1079
|
correlationId?: string | undefined;
|
|
1079
1080
|
}>;
|
|
@@ -1183,10 +1184,10 @@ export declare const clientContactsContractRouter: {
|
|
|
1183
1184
|
createdAt: string;
|
|
1184
1185
|
updatedAt: string;
|
|
1185
1186
|
id: string;
|
|
1186
|
-
|
|
1187
|
+
clientId: string;
|
|
1187
1188
|
email: string;
|
|
1189
|
+
name: string;
|
|
1188
1190
|
version: number;
|
|
1189
|
-
clientId: string;
|
|
1190
1191
|
client: {
|
|
1191
1192
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1192
1193
|
createdAt: string;
|
|
@@ -1221,10 +1222,10 @@ export declare const clientContactsContractRouter: {
|
|
|
1221
1222
|
createdAt: string | Date;
|
|
1222
1223
|
updatedAt: string | Date;
|
|
1223
1224
|
id: string;
|
|
1224
|
-
|
|
1225
|
+
clientId: string;
|
|
1225
1226
|
email: string;
|
|
1227
|
+
name: string;
|
|
1226
1228
|
version: number;
|
|
1227
|
-
clientId: string;
|
|
1228
1229
|
client: {
|
|
1229
1230
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1230
1231
|
createdAt: string | Date;
|
|
@@ -1265,19 +1266,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1265
1266
|
path: z.ZodString;
|
|
1266
1267
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1267
1268
|
}, "strip", z.ZodTypeAny, {
|
|
1268
|
-
statusCode: number;
|
|
1269
|
-
message: string;
|
|
1270
1269
|
code: string;
|
|
1271
|
-
timestamp: string;
|
|
1272
1270
|
path: string;
|
|
1271
|
+
message: string;
|
|
1272
|
+
statusCode: number;
|
|
1273
|
+
timestamp: string;
|
|
1273
1274
|
details?: unknown;
|
|
1274
1275
|
correlationId?: string | undefined;
|
|
1275
1276
|
}, {
|
|
1276
|
-
statusCode: number;
|
|
1277
|
-
message: string;
|
|
1278
1277
|
code: string;
|
|
1279
|
-
timestamp: string;
|
|
1280
1278
|
path: string;
|
|
1279
|
+
message: string;
|
|
1280
|
+
statusCode: number;
|
|
1281
|
+
timestamp: string;
|
|
1281
1282
|
details?: unknown;
|
|
1282
1283
|
correlationId?: string | undefined;
|
|
1283
1284
|
}>;
|
|
@@ -1285,8 +1286,9 @@ export declare const clientContactsContractRouter: {
|
|
|
1285
1286
|
};
|
|
1286
1287
|
findAll: {
|
|
1287
1288
|
query: z.ZodObject<{
|
|
1288
|
-
page: z.ZodDefault<z.ZodNumber>;
|
|
1289
1289
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
1290
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
1291
|
+
} & {
|
|
1290
1292
|
name: z.ZodOptional<z.ZodString>;
|
|
1291
1293
|
email: z.ZodOptional<z.ZodString>;
|
|
1292
1294
|
phone: z.ZodOptional<z.ZodString>;
|
|
@@ -1297,21 +1299,21 @@ export declare const clientContactsContractRouter: {
|
|
|
1297
1299
|
}, "strip", z.ZodTypeAny, {
|
|
1298
1300
|
limit: number;
|
|
1299
1301
|
page: number;
|
|
1300
|
-
sortBy: "createdAt" | "updatedAt" | "
|
|
1302
|
+
sortBy: "createdAt" | "updatedAt" | "email" | "name" | "position";
|
|
1301
1303
|
sortOrder: "ASC" | "DESC";
|
|
1302
|
-
name?: string | undefined;
|
|
1303
|
-
email?: string | undefined;
|
|
1304
1304
|
clientId?: string | undefined;
|
|
1305
|
+
email?: string | undefined;
|
|
1306
|
+
name?: string | undefined;
|
|
1305
1307
|
phone?: string | undefined;
|
|
1306
1308
|
createdById?: string | undefined;
|
|
1307
1309
|
}, {
|
|
1308
1310
|
limit?: number | undefined;
|
|
1309
1311
|
page?: number | undefined;
|
|
1310
|
-
sortBy?: "createdAt" | "updatedAt" | "
|
|
1312
|
+
sortBy?: "createdAt" | "updatedAt" | "email" | "name" | "position" | undefined;
|
|
1311
1313
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
1312
|
-
name?: string | undefined;
|
|
1313
|
-
email?: string | undefined;
|
|
1314
1314
|
clientId?: string | undefined;
|
|
1315
|
+
email?: string | undefined;
|
|
1316
|
+
name?: string | undefined;
|
|
1315
1317
|
phone?: string | undefined;
|
|
1316
1318
|
createdById?: string | undefined;
|
|
1317
1319
|
}>;
|
|
@@ -1328,19 +1330,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1328
1330
|
path: z.ZodString;
|
|
1329
1331
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1330
1332
|
}, "strip", z.ZodTypeAny, {
|
|
1331
|
-
statusCode: number;
|
|
1332
|
-
message: string;
|
|
1333
1333
|
code: string;
|
|
1334
|
-
timestamp: string;
|
|
1335
1334
|
path: string;
|
|
1335
|
+
message: string;
|
|
1336
|
+
statusCode: number;
|
|
1337
|
+
timestamp: string;
|
|
1336
1338
|
details?: unknown;
|
|
1337
1339
|
correlationId?: string | undefined;
|
|
1338
1340
|
}, {
|
|
1339
|
-
statusCode: number;
|
|
1340
|
-
message: string;
|
|
1341
1341
|
code: string;
|
|
1342
|
-
timestamp: string;
|
|
1343
1342
|
path: string;
|
|
1343
|
+
message: string;
|
|
1344
|
+
statusCode: number;
|
|
1345
|
+
timestamp: string;
|
|
1344
1346
|
details?: unknown;
|
|
1345
1347
|
correlationId?: string | undefined;
|
|
1346
1348
|
}>;
|
|
@@ -1353,19 +1355,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1353
1355
|
path: z.ZodString;
|
|
1354
1356
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1355
1357
|
}, "strip", z.ZodTypeAny, {
|
|
1356
|
-
statusCode: number;
|
|
1357
|
-
message: string;
|
|
1358
1358
|
code: string;
|
|
1359
|
-
timestamp: string;
|
|
1360
1359
|
path: string;
|
|
1360
|
+
message: string;
|
|
1361
|
+
statusCode: number;
|
|
1362
|
+
timestamp: string;
|
|
1361
1363
|
details?: unknown;
|
|
1362
1364
|
correlationId?: string | undefined;
|
|
1363
1365
|
}, {
|
|
1364
|
-
statusCode: number;
|
|
1365
|
-
message: string;
|
|
1366
1366
|
code: string;
|
|
1367
|
-
timestamp: string;
|
|
1368
1367
|
path: string;
|
|
1368
|
+
message: string;
|
|
1369
|
+
statusCode: number;
|
|
1370
|
+
timestamp: string;
|
|
1369
1371
|
details?: unknown;
|
|
1370
1372
|
correlationId?: string | undefined;
|
|
1371
1373
|
}>;
|
|
@@ -1378,19 +1380,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1378
1380
|
path: z.ZodString;
|
|
1379
1381
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1380
1382
|
}, "strip", z.ZodTypeAny, {
|
|
1381
|
-
statusCode: number;
|
|
1382
|
-
message: string;
|
|
1383
1383
|
code: string;
|
|
1384
|
-
timestamp: string;
|
|
1385
1384
|
path: string;
|
|
1385
|
+
message: string;
|
|
1386
|
+
statusCode: number;
|
|
1387
|
+
timestamp: string;
|
|
1386
1388
|
details?: unknown;
|
|
1387
1389
|
correlationId?: string | undefined;
|
|
1388
1390
|
}, {
|
|
1389
|
-
statusCode: number;
|
|
1390
|
-
message: string;
|
|
1391
1391
|
code: string;
|
|
1392
|
-
timestamp: string;
|
|
1393
1392
|
path: string;
|
|
1393
|
+
message: string;
|
|
1394
|
+
statusCode: number;
|
|
1395
|
+
timestamp: string;
|
|
1394
1396
|
details?: unknown;
|
|
1395
1397
|
correlationId?: string | undefined;
|
|
1396
1398
|
}>;
|
|
@@ -1403,19 +1405,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1403
1405
|
path: z.ZodString;
|
|
1404
1406
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1405
1407
|
}, "strip", z.ZodTypeAny, {
|
|
1406
|
-
statusCode: number;
|
|
1407
|
-
message: string;
|
|
1408
1408
|
code: string;
|
|
1409
|
-
timestamp: string;
|
|
1410
1409
|
path: string;
|
|
1410
|
+
message: string;
|
|
1411
|
+
statusCode: number;
|
|
1412
|
+
timestamp: string;
|
|
1411
1413
|
details?: unknown;
|
|
1412
1414
|
correlationId?: string | undefined;
|
|
1413
1415
|
}, {
|
|
1414
|
-
statusCode: number;
|
|
1415
|
-
message: string;
|
|
1416
1416
|
code: string;
|
|
1417
|
-
timestamp: string;
|
|
1418
1417
|
path: string;
|
|
1418
|
+
message: string;
|
|
1419
|
+
statusCode: number;
|
|
1420
|
+
timestamp: string;
|
|
1419
1421
|
details?: unknown;
|
|
1420
1422
|
correlationId?: string | undefined;
|
|
1421
1423
|
}>;
|
|
@@ -1526,10 +1528,10 @@ export declare const clientContactsContractRouter: {
|
|
|
1526
1528
|
createdAt: string;
|
|
1527
1529
|
updatedAt: string;
|
|
1528
1530
|
id: string;
|
|
1529
|
-
|
|
1531
|
+
clientId: string;
|
|
1530
1532
|
email: string;
|
|
1533
|
+
name: string;
|
|
1531
1534
|
version: number;
|
|
1532
|
-
clientId: string;
|
|
1533
1535
|
client: {
|
|
1534
1536
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1535
1537
|
createdAt: string;
|
|
@@ -1564,10 +1566,10 @@ export declare const clientContactsContractRouter: {
|
|
|
1564
1566
|
createdAt: string | Date;
|
|
1565
1567
|
updatedAt: string | Date;
|
|
1566
1568
|
id: string;
|
|
1567
|
-
|
|
1569
|
+
clientId: string;
|
|
1568
1570
|
email: string;
|
|
1571
|
+
name: string;
|
|
1569
1572
|
version: number;
|
|
1570
|
-
clientId: string;
|
|
1571
1573
|
client: {
|
|
1572
1574
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1573
1575
|
createdAt: string | Date;
|
|
@@ -1605,14 +1607,15 @@ export declare const clientContactsContractRouter: {
|
|
|
1605
1607
|
currentPage: z.ZodNumber;
|
|
1606
1608
|
totalPages: z.ZodNumber;
|
|
1607
1609
|
}, "strip", z.ZodTypeAny, {
|
|
1610
|
+
limit: number;
|
|
1608
1611
|
items: {
|
|
1609
1612
|
createdAt: string;
|
|
1610
1613
|
updatedAt: string;
|
|
1611
1614
|
id: string;
|
|
1612
|
-
|
|
1615
|
+
clientId: string;
|
|
1613
1616
|
email: string;
|
|
1617
|
+
name: string;
|
|
1614
1618
|
version: number;
|
|
1615
|
-
clientId: string;
|
|
1616
1619
|
client: {
|
|
1617
1620
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1618
1621
|
createdAt: string;
|
|
@@ -1645,19 +1648,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1645
1648
|
source?: string | undefined;
|
|
1646
1649
|
}[];
|
|
1647
1650
|
totalCount: number;
|
|
1648
|
-
limit: number;
|
|
1649
1651
|
skip: number;
|
|
1650
1652
|
currentPage: number;
|
|
1651
1653
|
totalPages: number;
|
|
1652
1654
|
}, {
|
|
1655
|
+
limit: number;
|
|
1653
1656
|
items: {
|
|
1654
1657
|
createdAt: string | Date;
|
|
1655
1658
|
updatedAt: string | Date;
|
|
1656
1659
|
id: string;
|
|
1657
|
-
|
|
1660
|
+
clientId: string;
|
|
1658
1661
|
email: string;
|
|
1662
|
+
name: string;
|
|
1659
1663
|
version: number;
|
|
1660
|
-
clientId: string;
|
|
1661
1664
|
client: {
|
|
1662
1665
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1663
1666
|
createdAt: string | Date;
|
|
@@ -1690,7 +1693,6 @@ export declare const clientContactsContractRouter: {
|
|
|
1690
1693
|
source?: string | undefined;
|
|
1691
1694
|
}[];
|
|
1692
1695
|
totalCount: number;
|
|
1693
|
-
limit: number;
|
|
1694
1696
|
skip: number;
|
|
1695
1697
|
currentPage: number;
|
|
1696
1698
|
totalPages: number;
|
|
@@ -1718,19 +1720,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1718
1720
|
path: z.ZodString;
|
|
1719
1721
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1720
1722
|
}, "strip", z.ZodTypeAny, {
|
|
1721
|
-
statusCode: number;
|
|
1722
|
-
message: string;
|
|
1723
1723
|
code: string;
|
|
1724
|
-
timestamp: string;
|
|
1725
1724
|
path: string;
|
|
1725
|
+
message: string;
|
|
1726
|
+
statusCode: number;
|
|
1727
|
+
timestamp: string;
|
|
1726
1728
|
details?: unknown;
|
|
1727
1729
|
correlationId?: string | undefined;
|
|
1728
1730
|
}, {
|
|
1729
|
-
statusCode: number;
|
|
1730
|
-
message: string;
|
|
1731
1731
|
code: string;
|
|
1732
|
-
timestamp: string;
|
|
1733
1732
|
path: string;
|
|
1733
|
+
message: string;
|
|
1734
|
+
statusCode: number;
|
|
1735
|
+
timestamp: string;
|
|
1734
1736
|
details?: unknown;
|
|
1735
1737
|
correlationId?: string | undefined;
|
|
1736
1738
|
}>;
|
|
@@ -1743,19 +1745,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1743
1745
|
path: z.ZodString;
|
|
1744
1746
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1745
1747
|
}, "strip", z.ZodTypeAny, {
|
|
1746
|
-
statusCode: number;
|
|
1747
|
-
message: string;
|
|
1748
1748
|
code: string;
|
|
1749
|
-
timestamp: string;
|
|
1750
1749
|
path: string;
|
|
1750
|
+
message: string;
|
|
1751
|
+
statusCode: number;
|
|
1752
|
+
timestamp: string;
|
|
1751
1753
|
details?: unknown;
|
|
1752
1754
|
correlationId?: string | undefined;
|
|
1753
1755
|
}, {
|
|
1754
|
-
statusCode: number;
|
|
1755
|
-
message: string;
|
|
1756
1756
|
code: string;
|
|
1757
|
-
timestamp: string;
|
|
1758
1757
|
path: string;
|
|
1758
|
+
message: string;
|
|
1759
|
+
statusCode: number;
|
|
1760
|
+
timestamp: string;
|
|
1759
1761
|
details?: unknown;
|
|
1760
1762
|
correlationId?: string | undefined;
|
|
1761
1763
|
}>;
|
|
@@ -1768,19 +1770,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1768
1770
|
path: z.ZodString;
|
|
1769
1771
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1770
1772
|
}, "strip", z.ZodTypeAny, {
|
|
1771
|
-
statusCode: number;
|
|
1772
|
-
message: string;
|
|
1773
1773
|
code: string;
|
|
1774
|
-
timestamp: string;
|
|
1775
1774
|
path: string;
|
|
1775
|
+
message: string;
|
|
1776
|
+
statusCode: number;
|
|
1777
|
+
timestamp: string;
|
|
1776
1778
|
details?: unknown;
|
|
1777
1779
|
correlationId?: string | undefined;
|
|
1778
1780
|
}, {
|
|
1779
|
-
statusCode: number;
|
|
1780
|
-
message: string;
|
|
1781
1781
|
code: string;
|
|
1782
|
-
timestamp: string;
|
|
1783
1782
|
path: string;
|
|
1783
|
+
message: string;
|
|
1784
|
+
statusCode: number;
|
|
1785
|
+
timestamp: string;
|
|
1784
1786
|
details?: unknown;
|
|
1785
1787
|
correlationId?: string | undefined;
|
|
1786
1788
|
}>;
|
|
@@ -1793,19 +1795,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1793
1795
|
path: z.ZodString;
|
|
1794
1796
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1795
1797
|
}, "strip", z.ZodTypeAny, {
|
|
1796
|
-
statusCode: number;
|
|
1797
|
-
message: string;
|
|
1798
1798
|
code: string;
|
|
1799
|
-
timestamp: string;
|
|
1800
1799
|
path: string;
|
|
1800
|
+
message: string;
|
|
1801
|
+
statusCode: number;
|
|
1802
|
+
timestamp: string;
|
|
1801
1803
|
details?: unknown;
|
|
1802
1804
|
correlationId?: string | undefined;
|
|
1803
1805
|
}, {
|
|
1804
|
-
statusCode: number;
|
|
1805
|
-
message: string;
|
|
1806
1806
|
code: string;
|
|
1807
|
-
timestamp: string;
|
|
1808
1807
|
path: string;
|
|
1808
|
+
message: string;
|
|
1809
|
+
statusCode: number;
|
|
1810
|
+
timestamp: string;
|
|
1809
1811
|
details?: unknown;
|
|
1810
1812
|
correlationId?: string | undefined;
|
|
1811
1813
|
}>;
|
|
@@ -1915,10 +1917,10 @@ export declare const clientContactsContractRouter: {
|
|
|
1915
1917
|
createdAt: string;
|
|
1916
1918
|
updatedAt: string;
|
|
1917
1919
|
id: string;
|
|
1918
|
-
|
|
1920
|
+
clientId: string;
|
|
1919
1921
|
email: string;
|
|
1922
|
+
name: string;
|
|
1920
1923
|
version: number;
|
|
1921
|
-
clientId: string;
|
|
1922
1924
|
client: {
|
|
1923
1925
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1924
1926
|
createdAt: string;
|
|
@@ -1953,10 +1955,10 @@ export declare const clientContactsContractRouter: {
|
|
|
1953
1955
|
createdAt: string | Date;
|
|
1954
1956
|
updatedAt: string | Date;
|
|
1955
1957
|
id: string;
|
|
1956
|
-
|
|
1958
|
+
clientId: string;
|
|
1957
1959
|
email: string;
|
|
1960
|
+
name: string;
|
|
1958
1961
|
version: number;
|
|
1959
|
-
clientId: string;
|
|
1960
1962
|
client: {
|
|
1961
1963
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1962
1964
|
createdAt: string | Date;
|
|
@@ -1997,19 +1999,19 @@ export declare const clientContactsContractRouter: {
|
|
|
1997
1999
|
path: z.ZodString;
|
|
1998
2000
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1999
2001
|
}, "strip", z.ZodTypeAny, {
|
|
2000
|
-
statusCode: number;
|
|
2001
|
-
message: string;
|
|
2002
2002
|
code: string;
|
|
2003
|
-
timestamp: string;
|
|
2004
2003
|
path: string;
|
|
2004
|
+
message: string;
|
|
2005
|
+
statusCode: number;
|
|
2006
|
+
timestamp: string;
|
|
2005
2007
|
details?: unknown;
|
|
2006
2008
|
correlationId?: string | undefined;
|
|
2007
2009
|
}, {
|
|
2008
|
-
statusCode: number;
|
|
2009
|
-
message: string;
|
|
2010
2010
|
code: string;
|
|
2011
|
-
timestamp: string;
|
|
2012
2011
|
path: string;
|
|
2012
|
+
message: string;
|
|
2013
|
+
statusCode: number;
|
|
2014
|
+
timestamp: string;
|
|
2013
2015
|
details?: unknown;
|
|
2014
2016
|
correlationId?: string | undefined;
|
|
2015
2017
|
}>;
|
|
@@ -2042,15 +2044,15 @@ export declare const clientContactsContractRouter: {
|
|
|
2042
2044
|
version: z.ZodNumber;
|
|
2043
2045
|
}, "client">, "strip", z.ZodTypeAny, {
|
|
2044
2046
|
version: number;
|
|
2045
|
-
name?: string | undefined;
|
|
2046
2047
|
email?: string | undefined;
|
|
2048
|
+
name?: string | undefined;
|
|
2047
2049
|
position?: string | undefined;
|
|
2048
2050
|
phone?: string | undefined;
|
|
2049
2051
|
source?: string | undefined;
|
|
2050
2052
|
}, {
|
|
2051
2053
|
version: number;
|
|
2052
|
-
name?: string | undefined;
|
|
2053
2054
|
email?: string | undefined;
|
|
2055
|
+
name?: string | undefined;
|
|
2054
2056
|
position?: string | undefined;
|
|
2055
2057
|
phone?: string | undefined;
|
|
2056
2058
|
source?: string | undefined;
|
|
@@ -2066,19 +2068,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2066
2068
|
path: z.ZodString;
|
|
2067
2069
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2068
2070
|
}, "strip", z.ZodTypeAny, {
|
|
2069
|
-
statusCode: number;
|
|
2070
|
-
message: string;
|
|
2071
2071
|
code: string;
|
|
2072
|
-
timestamp: string;
|
|
2073
2072
|
path: string;
|
|
2073
|
+
message: string;
|
|
2074
|
+
statusCode: number;
|
|
2075
|
+
timestamp: string;
|
|
2074
2076
|
details?: unknown;
|
|
2075
2077
|
correlationId?: string | undefined;
|
|
2076
2078
|
}, {
|
|
2077
|
-
statusCode: number;
|
|
2078
|
-
message: string;
|
|
2079
2079
|
code: string;
|
|
2080
|
-
timestamp: string;
|
|
2081
2080
|
path: string;
|
|
2081
|
+
message: string;
|
|
2082
|
+
statusCode: number;
|
|
2083
|
+
timestamp: string;
|
|
2082
2084
|
details?: unknown;
|
|
2083
2085
|
correlationId?: string | undefined;
|
|
2084
2086
|
}>;
|
|
@@ -2091,19 +2093,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2091
2093
|
path: z.ZodString;
|
|
2092
2094
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2093
2095
|
}, "strip", z.ZodTypeAny, {
|
|
2094
|
-
statusCode: number;
|
|
2095
|
-
message: string;
|
|
2096
2096
|
code: string;
|
|
2097
|
-
timestamp: string;
|
|
2098
2097
|
path: string;
|
|
2098
|
+
message: string;
|
|
2099
|
+
statusCode: number;
|
|
2100
|
+
timestamp: string;
|
|
2099
2101
|
details?: unknown;
|
|
2100
2102
|
correlationId?: string | undefined;
|
|
2101
2103
|
}, {
|
|
2102
|
-
statusCode: number;
|
|
2103
|
-
message: string;
|
|
2104
2104
|
code: string;
|
|
2105
|
-
timestamp: string;
|
|
2106
2105
|
path: string;
|
|
2106
|
+
message: string;
|
|
2107
|
+
statusCode: number;
|
|
2108
|
+
timestamp: string;
|
|
2107
2109
|
details?: unknown;
|
|
2108
2110
|
correlationId?: string | undefined;
|
|
2109
2111
|
}>;
|
|
@@ -2116,19 +2118,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2116
2118
|
path: z.ZodString;
|
|
2117
2119
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2118
2120
|
}, "strip", z.ZodTypeAny, {
|
|
2119
|
-
statusCode: number;
|
|
2120
|
-
message: string;
|
|
2121
2121
|
code: string;
|
|
2122
|
-
timestamp: string;
|
|
2123
2122
|
path: string;
|
|
2123
|
+
message: string;
|
|
2124
|
+
statusCode: number;
|
|
2125
|
+
timestamp: string;
|
|
2124
2126
|
details?: unknown;
|
|
2125
2127
|
correlationId?: string | undefined;
|
|
2126
2128
|
}, {
|
|
2127
|
-
statusCode: number;
|
|
2128
|
-
message: string;
|
|
2129
2129
|
code: string;
|
|
2130
|
-
timestamp: string;
|
|
2131
2130
|
path: string;
|
|
2131
|
+
message: string;
|
|
2132
|
+
statusCode: number;
|
|
2133
|
+
timestamp: string;
|
|
2132
2134
|
details?: unknown;
|
|
2133
2135
|
correlationId?: string | undefined;
|
|
2134
2136
|
}>;
|
|
@@ -2141,19 +2143,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2141
2143
|
path: z.ZodString;
|
|
2142
2144
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2143
2145
|
}, "strip", z.ZodTypeAny, {
|
|
2144
|
-
statusCode: number;
|
|
2145
|
-
message: string;
|
|
2146
2146
|
code: string;
|
|
2147
|
-
timestamp: string;
|
|
2148
2147
|
path: string;
|
|
2148
|
+
message: string;
|
|
2149
|
+
statusCode: number;
|
|
2150
|
+
timestamp: string;
|
|
2149
2151
|
details?: unknown;
|
|
2150
2152
|
correlationId?: string | undefined;
|
|
2151
2153
|
}, {
|
|
2152
|
-
statusCode: number;
|
|
2153
|
-
message: string;
|
|
2154
2154
|
code: string;
|
|
2155
|
-
timestamp: string;
|
|
2156
2155
|
path: string;
|
|
2156
|
+
message: string;
|
|
2157
|
+
statusCode: number;
|
|
2158
|
+
timestamp: string;
|
|
2157
2159
|
details?: unknown;
|
|
2158
2160
|
correlationId?: string | undefined;
|
|
2159
2161
|
}>;
|
|
@@ -2263,10 +2265,10 @@ export declare const clientContactsContractRouter: {
|
|
|
2263
2265
|
createdAt: string;
|
|
2264
2266
|
updatedAt: string;
|
|
2265
2267
|
id: string;
|
|
2266
|
-
|
|
2268
|
+
clientId: string;
|
|
2267
2269
|
email: string;
|
|
2270
|
+
name: string;
|
|
2268
2271
|
version: number;
|
|
2269
|
-
clientId: string;
|
|
2270
2272
|
client: {
|
|
2271
2273
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2272
2274
|
createdAt: string;
|
|
@@ -2301,10 +2303,10 @@ export declare const clientContactsContractRouter: {
|
|
|
2301
2303
|
createdAt: string | Date;
|
|
2302
2304
|
updatedAt: string | Date;
|
|
2303
2305
|
id: string;
|
|
2304
|
-
|
|
2306
|
+
clientId: string;
|
|
2305
2307
|
email: string;
|
|
2308
|
+
name: string;
|
|
2306
2309
|
version: number;
|
|
2307
|
-
clientId: string;
|
|
2308
2310
|
client: {
|
|
2309
2311
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2310
2312
|
createdAt: string | Date;
|
|
@@ -2345,19 +2347,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2345
2347
|
path: z.ZodString;
|
|
2346
2348
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2347
2349
|
}, "strip", z.ZodTypeAny, {
|
|
2348
|
-
statusCode: number;
|
|
2349
|
-
message: string;
|
|
2350
2350
|
code: string;
|
|
2351
|
-
timestamp: string;
|
|
2352
2351
|
path: string;
|
|
2352
|
+
message: string;
|
|
2353
|
+
statusCode: number;
|
|
2354
|
+
timestamp: string;
|
|
2353
2355
|
details?: unknown;
|
|
2354
2356
|
correlationId?: string | undefined;
|
|
2355
2357
|
}, {
|
|
2356
|
-
statusCode: number;
|
|
2357
|
-
message: string;
|
|
2358
2358
|
code: string;
|
|
2359
|
-
timestamp: string;
|
|
2360
2359
|
path: string;
|
|
2360
|
+
message: string;
|
|
2361
|
+
statusCode: number;
|
|
2362
|
+
timestamp: string;
|
|
2361
2363
|
details?: unknown;
|
|
2362
2364
|
correlationId?: string | undefined;
|
|
2363
2365
|
}>;
|
|
@@ -2370,19 +2372,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2370
2372
|
path: z.ZodString;
|
|
2371
2373
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2372
2374
|
}, "strip", z.ZodTypeAny, {
|
|
2373
|
-
statusCode: number;
|
|
2374
|
-
message: string;
|
|
2375
2375
|
code: string;
|
|
2376
|
-
timestamp: string;
|
|
2377
2376
|
path: string;
|
|
2377
|
+
message: string;
|
|
2378
|
+
statusCode: number;
|
|
2379
|
+
timestamp: string;
|
|
2378
2380
|
details?: unknown;
|
|
2379
2381
|
correlationId?: string | undefined;
|
|
2380
2382
|
}, {
|
|
2381
|
-
statusCode: number;
|
|
2382
|
-
message: string;
|
|
2383
2383
|
code: string;
|
|
2384
|
-
timestamp: string;
|
|
2385
2384
|
path: string;
|
|
2385
|
+
message: string;
|
|
2386
|
+
statusCode: number;
|
|
2387
|
+
timestamp: string;
|
|
2386
2388
|
details?: unknown;
|
|
2387
2389
|
correlationId?: string | undefined;
|
|
2388
2390
|
}>;
|
|
@@ -2410,19 +2412,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2410
2412
|
path: z.ZodString;
|
|
2411
2413
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2412
2414
|
}, "strip", z.ZodTypeAny, {
|
|
2413
|
-
statusCode: number;
|
|
2414
|
-
message: string;
|
|
2415
2415
|
code: string;
|
|
2416
|
-
timestamp: string;
|
|
2417
2416
|
path: string;
|
|
2417
|
+
message: string;
|
|
2418
|
+
statusCode: number;
|
|
2419
|
+
timestamp: string;
|
|
2418
2420
|
details?: unknown;
|
|
2419
2421
|
correlationId?: string | undefined;
|
|
2420
2422
|
}, {
|
|
2421
|
-
statusCode: number;
|
|
2422
|
-
message: string;
|
|
2423
2423
|
code: string;
|
|
2424
|
-
timestamp: string;
|
|
2425
2424
|
path: string;
|
|
2425
|
+
message: string;
|
|
2426
|
+
statusCode: number;
|
|
2427
|
+
timestamp: string;
|
|
2426
2428
|
details?: unknown;
|
|
2427
2429
|
correlationId?: string | undefined;
|
|
2428
2430
|
}>;
|
|
@@ -2435,19 +2437,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2435
2437
|
path: z.ZodString;
|
|
2436
2438
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2437
2439
|
}, "strip", z.ZodTypeAny, {
|
|
2438
|
-
statusCode: number;
|
|
2439
|
-
message: string;
|
|
2440
2440
|
code: string;
|
|
2441
|
-
timestamp: string;
|
|
2442
2441
|
path: string;
|
|
2442
|
+
message: string;
|
|
2443
|
+
statusCode: number;
|
|
2444
|
+
timestamp: string;
|
|
2443
2445
|
details?: unknown;
|
|
2444
2446
|
correlationId?: string | undefined;
|
|
2445
2447
|
}, {
|
|
2446
|
-
statusCode: number;
|
|
2447
|
-
message: string;
|
|
2448
2448
|
code: string;
|
|
2449
|
-
timestamp: string;
|
|
2450
2449
|
path: string;
|
|
2450
|
+
message: string;
|
|
2451
|
+
statusCode: number;
|
|
2452
|
+
timestamp: string;
|
|
2451
2453
|
details?: unknown;
|
|
2452
2454
|
correlationId?: string | undefined;
|
|
2453
2455
|
}>;
|
|
@@ -2460,19 +2462,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2460
2462
|
path: z.ZodString;
|
|
2461
2463
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2462
2464
|
}, "strip", z.ZodTypeAny, {
|
|
2463
|
-
statusCode: number;
|
|
2464
|
-
message: string;
|
|
2465
2465
|
code: string;
|
|
2466
|
-
timestamp: string;
|
|
2467
2466
|
path: string;
|
|
2467
|
+
message: string;
|
|
2468
|
+
statusCode: number;
|
|
2469
|
+
timestamp: string;
|
|
2468
2470
|
details?: unknown;
|
|
2469
2471
|
correlationId?: string | undefined;
|
|
2470
2472
|
}, {
|
|
2471
|
-
statusCode: number;
|
|
2472
|
-
message: string;
|
|
2473
2473
|
code: string;
|
|
2474
|
-
timestamp: string;
|
|
2475
2474
|
path: string;
|
|
2475
|
+
message: string;
|
|
2476
|
+
statusCode: number;
|
|
2477
|
+
timestamp: string;
|
|
2476
2478
|
details?: unknown;
|
|
2477
2479
|
correlationId?: string | undefined;
|
|
2478
2480
|
}>;
|
|
@@ -2485,19 +2487,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2485
2487
|
path: z.ZodString;
|
|
2486
2488
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2487
2489
|
}, "strip", z.ZodTypeAny, {
|
|
2488
|
-
statusCode: number;
|
|
2489
|
-
message: string;
|
|
2490
2490
|
code: string;
|
|
2491
|
-
timestamp: string;
|
|
2492
2491
|
path: string;
|
|
2492
|
+
message: string;
|
|
2493
|
+
statusCode: number;
|
|
2494
|
+
timestamp: string;
|
|
2493
2495
|
details?: unknown;
|
|
2494
2496
|
correlationId?: string | undefined;
|
|
2495
2497
|
}, {
|
|
2496
|
-
statusCode: number;
|
|
2497
|
-
message: string;
|
|
2498
2498
|
code: string;
|
|
2499
|
-
timestamp: string;
|
|
2500
2499
|
path: string;
|
|
2500
|
+
message: string;
|
|
2501
|
+
statusCode: number;
|
|
2502
|
+
timestamp: string;
|
|
2501
2503
|
details?: unknown;
|
|
2502
2504
|
correlationId?: string | undefined;
|
|
2503
2505
|
}>;
|
|
@@ -2511,19 +2513,19 @@ export declare const clientContactsContractRouter: {
|
|
|
2511
2513
|
path: z.ZodString;
|
|
2512
2514
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
2513
2515
|
}, "strip", z.ZodTypeAny, {
|
|
2514
|
-
statusCode: number;
|
|
2515
|
-
message: string;
|
|
2516
2516
|
code: string;
|
|
2517
|
-
timestamp: string;
|
|
2518
2517
|
path: string;
|
|
2518
|
+
message: string;
|
|
2519
|
+
statusCode: number;
|
|
2520
|
+
timestamp: string;
|
|
2519
2521
|
details?: unknown;
|
|
2520
2522
|
correlationId?: string | undefined;
|
|
2521
2523
|
}, {
|
|
2522
|
-
statusCode: number;
|
|
2523
|
-
message: string;
|
|
2524
2524
|
code: string;
|
|
2525
|
-
timestamp: string;
|
|
2526
2525
|
path: string;
|
|
2526
|
+
message: string;
|
|
2527
|
+
statusCode: number;
|
|
2528
|
+
timestamp: string;
|
|
2527
2529
|
details?: unknown;
|
|
2528
2530
|
correlationId?: string | undefined;
|
|
2529
2531
|
}>;
|