@dakkitor/api-contracts 1.1.142 → 1.1.144
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 +64 -64
- package/dist/bookings/bookings.contract.d.ts +104 -104
- package/dist/dashboards/dashboard.contract.d.ts +12 -12
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +217 -217
- package/dist/lead-distribution/agent-lead-distribution.contract.js +2 -2
- package/dist/workers/workers.contract.d.ts +44 -44
- package/dist/workers/workers.contract.d.ts.map +1 -1
- package/dist/workers/workers.contract.js +8 -2
- package/package.json +1 -1
|
@@ -143,8 +143,8 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
143
143
|
documentType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["passport", "id_card", "driving_license", "unknown"]>>>;
|
|
144
144
|
expiryDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>>;
|
|
145
145
|
documentNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
146
|
-
createdAt: z.ZodOptional<z.ZodString
|
|
147
|
-
updatedAt: z.ZodOptional<z.ZodString
|
|
146
|
+
createdAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
147
|
+
updatedAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
149
|
createdAt?: string | undefined;
|
|
150
150
|
updatedAt?: string | undefined;
|
|
@@ -154,8 +154,8 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
154
154
|
documentType?: "unknown" | "passport" | "id_card" | "driving_license" | null | undefined;
|
|
155
155
|
documentNumber?: string | null | undefined;
|
|
156
156
|
}, {
|
|
157
|
-
createdAt?: string | undefined;
|
|
158
|
-
updatedAt?: string | undefined;
|
|
157
|
+
createdAt?: string | Date | undefined;
|
|
158
|
+
updatedAt?: string | Date | undefined;
|
|
159
159
|
id?: string | undefined;
|
|
160
160
|
expiryDate?: string | Date | null | undefined;
|
|
161
161
|
fileId?: string | null | undefined;
|
|
@@ -495,8 +495,8 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
495
495
|
proofDocumentFileId?: string | null | undefined;
|
|
496
496
|
}[] | undefined;
|
|
497
497
|
idDocuments?: {
|
|
498
|
-
createdAt?: string | undefined;
|
|
499
|
-
updatedAt?: string | undefined;
|
|
498
|
+
createdAt?: string | Date | undefined;
|
|
499
|
+
updatedAt?: string | Date | undefined;
|
|
500
500
|
id?: string | undefined;
|
|
501
501
|
expiryDate?: string | Date | null | undefined;
|
|
502
502
|
fileId?: string | null | undefined;
|
|
@@ -2300,8 +2300,8 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
2300
2300
|
proofDocumentFileId?: string | null | undefined;
|
|
2301
2301
|
}[] | undefined;
|
|
2302
2302
|
idDocuments?: {
|
|
2303
|
-
createdAt?: string | undefined;
|
|
2304
|
-
updatedAt?: string | undefined;
|
|
2303
|
+
createdAt?: string | Date | undefined;
|
|
2304
|
+
updatedAt?: string | Date | undefined;
|
|
2305
2305
|
id?: string | undefined;
|
|
2306
2306
|
expiryDate?: string | Date | null | undefined;
|
|
2307
2307
|
fileId?: string | null | undefined;
|
|
@@ -2982,8 +2982,8 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
2982
2982
|
proofDocumentFileId?: string | null | undefined;
|
|
2983
2983
|
}[] | undefined;
|
|
2984
2984
|
idDocuments?: {
|
|
2985
|
-
createdAt?: string | undefined;
|
|
2986
|
-
updatedAt?: string | undefined;
|
|
2985
|
+
createdAt?: string | Date | undefined;
|
|
2986
|
+
updatedAt?: string | Date | undefined;
|
|
2987
2987
|
id?: string | undefined;
|
|
2988
2988
|
expiryDate?: string | Date | null | undefined;
|
|
2989
2989
|
fileId?: string | null | undefined;
|
|
@@ -6294,8 +6294,8 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
6294
6294
|
documentType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["passport", "id_card", "driving_license", "unknown"]>>>;
|
|
6295
6295
|
expiryDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>>;
|
|
6296
6296
|
documentNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6297
|
-
createdAt: z.ZodOptional<z.ZodString
|
|
6298
|
-
updatedAt: z.ZodOptional<z.ZodString
|
|
6297
|
+
createdAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
6298
|
+
updatedAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
6299
6299
|
}, "strip", z.ZodTypeAny, {
|
|
6300
6300
|
createdAt?: string | undefined;
|
|
6301
6301
|
updatedAt?: string | undefined;
|
|
@@ -6305,8 +6305,8 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
6305
6305
|
documentType?: "unknown" | "passport" | "id_card" | "driving_license" | null | undefined;
|
|
6306
6306
|
documentNumber?: string | null | undefined;
|
|
6307
6307
|
}, {
|
|
6308
|
-
createdAt?: string | undefined;
|
|
6309
|
-
updatedAt?: string | undefined;
|
|
6308
|
+
createdAt?: string | Date | undefined;
|
|
6309
|
+
updatedAt?: string | Date | undefined;
|
|
6310
6310
|
id?: string | undefined;
|
|
6311
6311
|
expiryDate?: string | Date | null | undefined;
|
|
6312
6312
|
fileId?: string | null | undefined;
|
|
@@ -6646,8 +6646,8 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
6646
6646
|
proofDocumentFileId?: string | null | undefined;
|
|
6647
6647
|
}[] | undefined;
|
|
6648
6648
|
idDocuments?: {
|
|
6649
|
-
createdAt?: string | undefined;
|
|
6650
|
-
updatedAt?: string | undefined;
|
|
6649
|
+
createdAt?: string | Date | undefined;
|
|
6650
|
+
updatedAt?: string | Date | undefined;
|
|
6651
6651
|
id?: string | undefined;
|
|
6652
6652
|
expiryDate?: string | Date | null | undefined;
|
|
6653
6653
|
fileId?: string | null | undefined;
|
|
@@ -8451,8 +8451,8 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
8451
8451
|
proofDocumentFileId?: string | null | undefined;
|
|
8452
8452
|
}[] | undefined;
|
|
8453
8453
|
idDocuments?: {
|
|
8454
|
-
createdAt?: string | undefined;
|
|
8455
|
-
updatedAt?: string | undefined;
|
|
8454
|
+
createdAt?: string | Date | undefined;
|
|
8455
|
+
updatedAt?: string | Date | undefined;
|
|
8456
8456
|
id?: string | undefined;
|
|
8457
8457
|
expiryDate?: string | Date | null | undefined;
|
|
8458
8458
|
fileId?: string | null | undefined;
|
|
@@ -9133,8 +9133,8 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
9133
9133
|
proofDocumentFileId?: string | null | undefined;
|
|
9134
9134
|
}[] | undefined;
|
|
9135
9135
|
idDocuments?: {
|
|
9136
|
-
createdAt?: string | undefined;
|
|
9137
|
-
updatedAt?: string | undefined;
|
|
9136
|
+
createdAt?: string | Date | undefined;
|
|
9137
|
+
updatedAt?: string | Date | undefined;
|
|
9138
9138
|
id?: string | undefined;
|
|
9139
9139
|
expiryDate?: string | Date | null | undefined;
|
|
9140
9140
|
fileId?: string | null | undefined;
|
|
@@ -9842,8 +9842,8 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
9842
9842
|
proofDocumentFileId?: string | null | undefined;
|
|
9843
9843
|
}[] | undefined;
|
|
9844
9844
|
idDocuments?: {
|
|
9845
|
-
createdAt?: string | undefined;
|
|
9846
|
-
updatedAt?: string | undefined;
|
|
9845
|
+
createdAt?: string | Date | undefined;
|
|
9846
|
+
updatedAt?: string | Date | undefined;
|
|
9847
9847
|
id?: string | undefined;
|
|
9848
9848
|
expiryDate?: string | Date | null | undefined;
|
|
9849
9849
|
fileId?: string | null | undefined;
|
|
@@ -11109,8 +11109,8 @@ export declare const activesContractRouter: {
|
|
|
11109
11109
|
documentType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["passport", "id_card", "driving_license", "unknown"]>>>;
|
|
11110
11110
|
expiryDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>>;
|
|
11111
11111
|
documentNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11112
|
-
createdAt: z.ZodOptional<z.ZodString
|
|
11113
|
-
updatedAt: z.ZodOptional<z.ZodString
|
|
11112
|
+
createdAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
11113
|
+
updatedAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
11114
11114
|
}, "strip", z.ZodTypeAny, {
|
|
11115
11115
|
createdAt?: string | undefined;
|
|
11116
11116
|
updatedAt?: string | undefined;
|
|
@@ -11120,8 +11120,8 @@ export declare const activesContractRouter: {
|
|
|
11120
11120
|
documentType?: "unknown" | "passport" | "id_card" | "driving_license" | null | undefined;
|
|
11121
11121
|
documentNumber?: string | null | undefined;
|
|
11122
11122
|
}, {
|
|
11123
|
-
createdAt?: string | undefined;
|
|
11124
|
-
updatedAt?: string | undefined;
|
|
11123
|
+
createdAt?: string | Date | undefined;
|
|
11124
|
+
updatedAt?: string | Date | undefined;
|
|
11125
11125
|
id?: string | undefined;
|
|
11126
11126
|
expiryDate?: string | Date | null | undefined;
|
|
11127
11127
|
fileId?: string | null | undefined;
|
|
@@ -11461,8 +11461,8 @@ export declare const activesContractRouter: {
|
|
|
11461
11461
|
proofDocumentFileId?: string | null | undefined;
|
|
11462
11462
|
}[] | undefined;
|
|
11463
11463
|
idDocuments?: {
|
|
11464
|
-
createdAt?: string | undefined;
|
|
11465
|
-
updatedAt?: string | undefined;
|
|
11464
|
+
createdAt?: string | Date | undefined;
|
|
11465
|
+
updatedAt?: string | Date | undefined;
|
|
11466
11466
|
id?: string | undefined;
|
|
11467
11467
|
expiryDate?: string | Date | null | undefined;
|
|
11468
11468
|
fileId?: string | null | undefined;
|
|
@@ -13266,8 +13266,8 @@ export declare const activesContractRouter: {
|
|
|
13266
13266
|
proofDocumentFileId?: string | null | undefined;
|
|
13267
13267
|
}[] | undefined;
|
|
13268
13268
|
idDocuments?: {
|
|
13269
|
-
createdAt?: string | undefined;
|
|
13270
|
-
updatedAt?: string | undefined;
|
|
13269
|
+
createdAt?: string | Date | undefined;
|
|
13270
|
+
updatedAt?: string | Date | undefined;
|
|
13271
13271
|
id?: string | undefined;
|
|
13272
13272
|
expiryDate?: string | Date | null | undefined;
|
|
13273
13273
|
fileId?: string | null | undefined;
|
|
@@ -13948,8 +13948,8 @@ export declare const activesContractRouter: {
|
|
|
13948
13948
|
proofDocumentFileId?: string | null | undefined;
|
|
13949
13949
|
}[] | undefined;
|
|
13950
13950
|
idDocuments?: {
|
|
13951
|
-
createdAt?: string | undefined;
|
|
13952
|
-
updatedAt?: string | undefined;
|
|
13951
|
+
createdAt?: string | Date | undefined;
|
|
13952
|
+
updatedAt?: string | Date | undefined;
|
|
13953
13953
|
id?: string | undefined;
|
|
13954
13954
|
expiryDate?: string | Date | null | undefined;
|
|
13955
13955
|
fileId?: string | null | undefined;
|
|
@@ -14640,8 +14640,8 @@ export declare const activesContractRouter: {
|
|
|
14640
14640
|
documentType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["passport", "id_card", "driving_license", "unknown"]>>>;
|
|
14641
14641
|
expiryDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>>;
|
|
14642
14642
|
documentNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14643
|
-
createdAt: z.ZodOptional<z.ZodString
|
|
14644
|
-
updatedAt: z.ZodOptional<z.ZodString
|
|
14643
|
+
createdAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
14644
|
+
updatedAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
14645
14645
|
}, "strip", z.ZodTypeAny, {
|
|
14646
14646
|
createdAt?: string | undefined;
|
|
14647
14647
|
updatedAt?: string | undefined;
|
|
@@ -14651,8 +14651,8 @@ export declare const activesContractRouter: {
|
|
|
14651
14651
|
documentType?: "unknown" | "passport" | "id_card" | "driving_license" | null | undefined;
|
|
14652
14652
|
documentNumber?: string | null | undefined;
|
|
14653
14653
|
}, {
|
|
14654
|
-
createdAt?: string | undefined;
|
|
14655
|
-
updatedAt?: string | undefined;
|
|
14654
|
+
createdAt?: string | Date | undefined;
|
|
14655
|
+
updatedAt?: string | Date | undefined;
|
|
14656
14656
|
id?: string | undefined;
|
|
14657
14657
|
expiryDate?: string | Date | null | undefined;
|
|
14658
14658
|
fileId?: string | null | undefined;
|
|
@@ -14992,8 +14992,8 @@ export declare const activesContractRouter: {
|
|
|
14992
14992
|
proofDocumentFileId?: string | null | undefined;
|
|
14993
14993
|
}[] | undefined;
|
|
14994
14994
|
idDocuments?: {
|
|
14995
|
-
createdAt?: string | undefined;
|
|
14996
|
-
updatedAt?: string | undefined;
|
|
14995
|
+
createdAt?: string | Date | undefined;
|
|
14996
|
+
updatedAt?: string | Date | undefined;
|
|
14997
14997
|
id?: string | undefined;
|
|
14998
14998
|
expiryDate?: string | Date | null | undefined;
|
|
14999
14999
|
fileId?: string | null | undefined;
|
|
@@ -16797,8 +16797,8 @@ export declare const activesContractRouter: {
|
|
|
16797
16797
|
proofDocumentFileId?: string | null | undefined;
|
|
16798
16798
|
}[] | undefined;
|
|
16799
16799
|
idDocuments?: {
|
|
16800
|
-
createdAt?: string | undefined;
|
|
16801
|
-
updatedAt?: string | undefined;
|
|
16800
|
+
createdAt?: string | Date | undefined;
|
|
16801
|
+
updatedAt?: string | Date | undefined;
|
|
16802
16802
|
id?: string | undefined;
|
|
16803
16803
|
expiryDate?: string | Date | null | undefined;
|
|
16804
16804
|
fileId?: string | null | undefined;
|
|
@@ -17479,8 +17479,8 @@ export declare const activesContractRouter: {
|
|
|
17479
17479
|
proofDocumentFileId?: string | null | undefined;
|
|
17480
17480
|
}[] | undefined;
|
|
17481
17481
|
idDocuments?: {
|
|
17482
|
-
createdAt?: string | undefined;
|
|
17483
|
-
updatedAt?: string | undefined;
|
|
17482
|
+
createdAt?: string | Date | undefined;
|
|
17483
|
+
updatedAt?: string | Date | undefined;
|
|
17484
17484
|
id?: string | undefined;
|
|
17485
17485
|
expiryDate?: string | Date | null | undefined;
|
|
17486
17486
|
fileId?: string | null | undefined;
|
|
@@ -18188,8 +18188,8 @@ export declare const activesContractRouter: {
|
|
|
18188
18188
|
proofDocumentFileId?: string | null | undefined;
|
|
18189
18189
|
}[] | undefined;
|
|
18190
18190
|
idDocuments?: {
|
|
18191
|
-
createdAt?: string | undefined;
|
|
18192
|
-
updatedAt?: string | undefined;
|
|
18191
|
+
createdAt?: string | Date | undefined;
|
|
18192
|
+
updatedAt?: string | Date | undefined;
|
|
18193
18193
|
id?: string | undefined;
|
|
18194
18194
|
expiryDate?: string | Date | null | undefined;
|
|
18195
18195
|
fileId?: string | null | undefined;
|
|
@@ -20306,8 +20306,8 @@ export declare const activesContractRouter: {
|
|
|
20306
20306
|
documentType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["passport", "id_card", "driving_license", "unknown"]>>>;
|
|
20307
20307
|
expiryDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>>;
|
|
20308
20308
|
documentNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20309
|
-
createdAt: z.ZodOptional<z.ZodString
|
|
20310
|
-
updatedAt: z.ZodOptional<z.ZodString
|
|
20309
|
+
createdAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
20310
|
+
updatedAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
20311
20311
|
}, "strip", z.ZodTypeAny, {
|
|
20312
20312
|
createdAt?: string | undefined;
|
|
20313
20313
|
updatedAt?: string | undefined;
|
|
@@ -20317,8 +20317,8 @@ export declare const activesContractRouter: {
|
|
|
20317
20317
|
documentType?: "unknown" | "passport" | "id_card" | "driving_license" | null | undefined;
|
|
20318
20318
|
documentNumber?: string | null | undefined;
|
|
20319
20319
|
}, {
|
|
20320
|
-
createdAt?: string | undefined;
|
|
20321
|
-
updatedAt?: string | undefined;
|
|
20320
|
+
createdAt?: string | Date | undefined;
|
|
20321
|
+
updatedAt?: string | Date | undefined;
|
|
20322
20322
|
id?: string | undefined;
|
|
20323
20323
|
expiryDate?: string | Date | null | undefined;
|
|
20324
20324
|
fileId?: string | null | undefined;
|
|
@@ -20658,8 +20658,8 @@ export declare const activesContractRouter: {
|
|
|
20658
20658
|
proofDocumentFileId?: string | null | undefined;
|
|
20659
20659
|
}[] | undefined;
|
|
20660
20660
|
idDocuments?: {
|
|
20661
|
-
createdAt?: string | undefined;
|
|
20662
|
-
updatedAt?: string | undefined;
|
|
20661
|
+
createdAt?: string | Date | undefined;
|
|
20662
|
+
updatedAt?: string | Date | undefined;
|
|
20663
20663
|
id?: string | undefined;
|
|
20664
20664
|
expiryDate?: string | Date | null | undefined;
|
|
20665
20665
|
fileId?: string | null | undefined;
|
|
@@ -22463,8 +22463,8 @@ export declare const activesContractRouter: {
|
|
|
22463
22463
|
proofDocumentFileId?: string | null | undefined;
|
|
22464
22464
|
}[] | undefined;
|
|
22465
22465
|
idDocuments?: {
|
|
22466
|
-
createdAt?: string | undefined;
|
|
22467
|
-
updatedAt?: string | undefined;
|
|
22466
|
+
createdAt?: string | Date | undefined;
|
|
22467
|
+
updatedAt?: string | Date | undefined;
|
|
22468
22468
|
id?: string | undefined;
|
|
22469
22469
|
expiryDate?: string | Date | null | undefined;
|
|
22470
22470
|
fileId?: string | null | undefined;
|
|
@@ -23145,8 +23145,8 @@ export declare const activesContractRouter: {
|
|
|
23145
23145
|
proofDocumentFileId?: string | null | undefined;
|
|
23146
23146
|
}[] | undefined;
|
|
23147
23147
|
idDocuments?: {
|
|
23148
|
-
createdAt?: string | undefined;
|
|
23149
|
-
updatedAt?: string | undefined;
|
|
23148
|
+
createdAt?: string | Date | undefined;
|
|
23149
|
+
updatedAt?: string | Date | undefined;
|
|
23150
23150
|
id?: string | undefined;
|
|
23151
23151
|
expiryDate?: string | Date | null | undefined;
|
|
23152
23152
|
fileId?: string | null | undefined;
|
|
@@ -23965,8 +23965,8 @@ export declare const activesContractRouter: {
|
|
|
23965
23965
|
documentType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["passport", "id_card", "driving_license", "unknown"]>>>;
|
|
23966
23966
|
expiryDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>>;
|
|
23967
23967
|
documentNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23968
|
-
createdAt: z.ZodOptional<z.ZodString
|
|
23969
|
-
updatedAt: z.ZodOptional<z.ZodString
|
|
23968
|
+
createdAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
23969
|
+
updatedAt: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
|
|
23970
23970
|
}, "strip", z.ZodTypeAny, {
|
|
23971
23971
|
createdAt?: string | undefined;
|
|
23972
23972
|
updatedAt?: string | undefined;
|
|
@@ -23976,8 +23976,8 @@ export declare const activesContractRouter: {
|
|
|
23976
23976
|
documentType?: "unknown" | "passport" | "id_card" | "driving_license" | null | undefined;
|
|
23977
23977
|
documentNumber?: string | null | undefined;
|
|
23978
23978
|
}, {
|
|
23979
|
-
createdAt?: string | undefined;
|
|
23980
|
-
updatedAt?: string | undefined;
|
|
23979
|
+
createdAt?: string | Date | undefined;
|
|
23980
|
+
updatedAt?: string | Date | undefined;
|
|
23981
23981
|
id?: string | undefined;
|
|
23982
23982
|
expiryDate?: string | Date | null | undefined;
|
|
23983
23983
|
fileId?: string | null | undefined;
|
|
@@ -24317,8 +24317,8 @@ export declare const activesContractRouter: {
|
|
|
24317
24317
|
proofDocumentFileId?: string | null | undefined;
|
|
24318
24318
|
}[] | undefined;
|
|
24319
24319
|
idDocuments?: {
|
|
24320
|
-
createdAt?: string | undefined;
|
|
24321
|
-
updatedAt?: string | undefined;
|
|
24320
|
+
createdAt?: string | Date | undefined;
|
|
24321
|
+
updatedAt?: string | Date | undefined;
|
|
24322
24322
|
id?: string | undefined;
|
|
24323
24323
|
expiryDate?: string | Date | null | undefined;
|
|
24324
24324
|
fileId?: string | null | undefined;
|
|
@@ -26122,8 +26122,8 @@ export declare const activesContractRouter: {
|
|
|
26122
26122
|
proofDocumentFileId?: string | null | undefined;
|
|
26123
26123
|
}[] | undefined;
|
|
26124
26124
|
idDocuments?: {
|
|
26125
|
-
createdAt?: string | undefined;
|
|
26126
|
-
updatedAt?: string | undefined;
|
|
26125
|
+
createdAt?: string | Date | undefined;
|
|
26126
|
+
updatedAt?: string | Date | undefined;
|
|
26127
26127
|
id?: string | undefined;
|
|
26128
26128
|
expiryDate?: string | Date | null | undefined;
|
|
26129
26129
|
fileId?: string | null | undefined;
|
|
@@ -26804,8 +26804,8 @@ export declare const activesContractRouter: {
|
|
|
26804
26804
|
proofDocumentFileId?: string | null | undefined;
|
|
26805
26805
|
}[] | undefined;
|
|
26806
26806
|
idDocuments?: {
|
|
26807
|
-
createdAt?: string | undefined;
|
|
26808
|
-
updatedAt?: string | undefined;
|
|
26807
|
+
createdAt?: string | Date | undefined;
|
|
26808
|
+
updatedAt?: string | Date | undefined;
|
|
26809
26809
|
id?: string | undefined;
|
|
26810
26810
|
expiryDate?: string | Date | null | undefined;
|
|
26811
26811
|
fileId?: string | null | undefined;
|