@kl1/contracts 1.1.40-uat → 1.1.42-uat
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/index.js +3293 -3105
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3290 -3105
- package/dist/index.mjs.map +1 -1
- package/dist/src/botpress/index.d.ts +538 -0
- package/dist/src/botpress/index.d.ts.map +1 -0
- package/dist/src/botpress/schema.d.ts +81 -0
- package/dist/src/botpress/schema.d.ts.map +1 -0
- package/dist/src/botpress/validation.d.ts +220 -0
- package/dist/src/botpress/validation.d.ts.map +1 -0
- package/dist/src/channel/index.d.ts +1692 -73
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +36 -0
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +7 -0
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +33647 -32937
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +186 -70
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +199 -107
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +68 -68
- package/dist/src/comment/schema.d.ts +20 -20
- package/dist/src/contact/index.d.ts +79 -79
- package/dist/src/contact/schema.d.ts +12 -12
- package/dist/src/contact/validation.d.ts +49 -49
- package/dist/src/contract.d.ts +15114 -68269
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/contract2.d.ts +2 -0
- package/dist/src/contract2.d.ts.map +1 -0
- package/dist/src/cx-log/index.d.ts +123 -54
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +101 -40
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +176 -84
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +181 -89
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +5 -5
- package/dist/src/mail/mail-contract.d.ts +7 -7
- package/dist/src/mail/room-contract.d.ts +7 -7
- package/dist/src/mail/schemas/room.schema.d.ts +5 -5
- package/dist/src/messenger/index.d.ts +211 -85
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +54 -11
- package/dist/src/messenger/validation.d.ts.map +1 -1
- package/dist/src/public-api/index.d.ts +59 -59
- package/dist/src/public-api/schema.d.ts +12 -12
- package/dist/src/public-api/validation.d.ts +19 -19
- package/dist/src/snippet/index.d.ts +105 -105
- package/dist/src/snippet/schema.d.ts +40 -40
- package/dist/src/telephony-cdr/index.d.ts +54 -54
- package/dist/src/telephony-cdr/schema.d.ts +14 -14
- package/dist/src/ticket/index.d.ts +111 -111
- package/dist/src/ticket/schema.d.ts +21 -21
- package/dist/src/upload/schema.d.ts +3 -3
- package/dist/src/viber/index.d.ts +317 -84
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +224 -87
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +158 -26
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -419,9 +419,10 @@ export declare const ContactContractValidationSchema: {
|
|
419
419
|
fileSize: z.ZodNumber;
|
420
420
|
fileKey: z.ZodString;
|
421
421
|
fileUrl: z.ZodNullable<z.ZodString>;
|
422
|
-
status: z.
|
422
|
+
status: z.ZodNullable<z.ZodString>;
|
423
423
|
}, "strip", z.ZodTypeAny, {
|
424
424
|
id: string;
|
425
|
+
status: string | null;
|
425
426
|
createdAt: Date;
|
426
427
|
updatedAt: Date;
|
427
428
|
deletedAt: Date | null;
|
@@ -430,9 +431,9 @@ export declare const ContactContractValidationSchema: {
|
|
430
431
|
bucketName: string;
|
431
432
|
fileSize: number;
|
432
433
|
fileUrl: string | null;
|
433
|
-
status?: string | undefined;
|
434
434
|
}, {
|
435
435
|
id: string;
|
436
|
+
status: string | null;
|
436
437
|
createdAt: Date;
|
437
438
|
updatedAt: Date;
|
438
439
|
deletedAt: Date | null;
|
@@ -441,7 +442,6 @@ export declare const ContactContractValidationSchema: {
|
|
441
442
|
bucketName: string;
|
442
443
|
fileSize: number;
|
443
444
|
fileUrl: string | null;
|
444
|
-
status?: string | undefined;
|
445
445
|
}>, "many">;
|
446
446
|
}, "strip", z.ZodTypeAny, {
|
447
447
|
id: string;
|
@@ -468,6 +468,7 @@ export declare const ContactContractValidationSchema: {
|
|
468
468
|
dateValue: Date | null;
|
469
469
|
uploads: {
|
470
470
|
id: string;
|
471
|
+
status: string | null;
|
471
472
|
createdAt: Date;
|
472
473
|
updatedAt: Date;
|
473
474
|
deletedAt: Date | null;
|
@@ -476,7 +477,6 @@ export declare const ContactContractValidationSchema: {
|
|
476
477
|
bucketName: string;
|
477
478
|
fileSize: number;
|
478
479
|
fileUrl: string | null;
|
479
|
-
status?: string | undefined;
|
480
480
|
}[];
|
481
481
|
}, {
|
482
482
|
id: string;
|
@@ -503,6 +503,7 @@ export declare const ContactContractValidationSchema: {
|
|
503
503
|
dateValue: Date | null;
|
504
504
|
uploads: {
|
505
505
|
id: string;
|
506
|
+
status: string | null;
|
506
507
|
createdAt: Date;
|
507
508
|
updatedAt: Date;
|
508
509
|
deletedAt: Date | null;
|
@@ -511,7 +512,6 @@ export declare const ContactContractValidationSchema: {
|
|
511
512
|
bucketName: string;
|
512
513
|
fileSize: number;
|
513
514
|
fileUrl: string | null;
|
514
|
-
status?: string | undefined;
|
515
515
|
}[];
|
516
516
|
}>, "many">;
|
517
517
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -651,6 +651,7 @@ export declare const ContactContractValidationSchema: {
|
|
651
651
|
dateValue: Date | null;
|
652
652
|
uploads: {
|
653
653
|
id: string;
|
654
|
+
status: string | null;
|
654
655
|
createdAt: Date;
|
655
656
|
updatedAt: Date;
|
656
657
|
deletedAt: Date | null;
|
@@ -659,7 +660,6 @@ export declare const ContactContractValidationSchema: {
|
|
659
660
|
bucketName: string;
|
660
661
|
fileSize: number;
|
661
662
|
fileUrl: string | null;
|
662
|
-
status?: string | undefined;
|
663
663
|
}[];
|
664
664
|
}[];
|
665
665
|
company: {
|
@@ -747,6 +747,7 @@ export declare const ContactContractValidationSchema: {
|
|
747
747
|
dateValue: Date | null;
|
748
748
|
uploads: {
|
749
749
|
id: string;
|
750
|
+
status: string | null;
|
750
751
|
createdAt: Date;
|
751
752
|
updatedAt: Date;
|
752
753
|
deletedAt: Date | null;
|
@@ -755,7 +756,6 @@ export declare const ContactContractValidationSchema: {
|
|
755
756
|
bucketName: string;
|
756
757
|
fileSize: number;
|
757
758
|
fileUrl: string | null;
|
758
|
-
status?: string | undefined;
|
759
759
|
}[];
|
760
760
|
}[];
|
761
761
|
company: {
|
@@ -1186,9 +1186,10 @@ export declare const ContactContractValidationSchema: {
|
|
1186
1186
|
fileSize: z.ZodNumber;
|
1187
1187
|
fileKey: z.ZodString;
|
1188
1188
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1189
|
-
status: z.
|
1189
|
+
status: z.ZodNullable<z.ZodString>;
|
1190
1190
|
}, "strip", z.ZodTypeAny, {
|
1191
1191
|
id: string;
|
1192
|
+
status: string | null;
|
1192
1193
|
createdAt: Date;
|
1193
1194
|
updatedAt: Date;
|
1194
1195
|
deletedAt: Date | null;
|
@@ -1197,9 +1198,9 @@ export declare const ContactContractValidationSchema: {
|
|
1197
1198
|
bucketName: string;
|
1198
1199
|
fileSize: number;
|
1199
1200
|
fileUrl: string | null;
|
1200
|
-
status?: string | undefined;
|
1201
1201
|
}, {
|
1202
1202
|
id: string;
|
1203
|
+
status: string | null;
|
1203
1204
|
createdAt: Date;
|
1204
1205
|
updatedAt: Date;
|
1205
1206
|
deletedAt: Date | null;
|
@@ -1208,7 +1209,6 @@ export declare const ContactContractValidationSchema: {
|
|
1208
1209
|
bucketName: string;
|
1209
1210
|
fileSize: number;
|
1210
1211
|
fileUrl: string | null;
|
1211
|
-
status?: string | undefined;
|
1212
1212
|
}>, "many">;
|
1213
1213
|
}, "strip", z.ZodTypeAny, {
|
1214
1214
|
id: string;
|
@@ -1235,6 +1235,7 @@ export declare const ContactContractValidationSchema: {
|
|
1235
1235
|
dateValue: Date | null;
|
1236
1236
|
uploads: {
|
1237
1237
|
id: string;
|
1238
|
+
status: string | null;
|
1238
1239
|
createdAt: Date;
|
1239
1240
|
updatedAt: Date;
|
1240
1241
|
deletedAt: Date | null;
|
@@ -1243,7 +1244,6 @@ export declare const ContactContractValidationSchema: {
|
|
1243
1244
|
bucketName: string;
|
1244
1245
|
fileSize: number;
|
1245
1246
|
fileUrl: string | null;
|
1246
|
-
status?: string | undefined;
|
1247
1247
|
}[];
|
1248
1248
|
}, {
|
1249
1249
|
id: string;
|
@@ -1270,6 +1270,7 @@ export declare const ContactContractValidationSchema: {
|
|
1270
1270
|
dateValue: Date | null;
|
1271
1271
|
uploads: {
|
1272
1272
|
id: string;
|
1273
|
+
status: string | null;
|
1273
1274
|
createdAt: Date;
|
1274
1275
|
updatedAt: Date;
|
1275
1276
|
deletedAt: Date | null;
|
@@ -1278,7 +1279,6 @@ export declare const ContactContractValidationSchema: {
|
|
1278
1279
|
bucketName: string;
|
1279
1280
|
fileSize: number;
|
1280
1281
|
fileUrl: string | null;
|
1281
|
-
status?: string | undefined;
|
1282
1282
|
}[];
|
1283
1283
|
}>, "many">;
|
1284
1284
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1418,6 +1418,7 @@ export declare const ContactContractValidationSchema: {
|
|
1418
1418
|
dateValue: Date | null;
|
1419
1419
|
uploads: {
|
1420
1420
|
id: string;
|
1421
|
+
status: string | null;
|
1421
1422
|
createdAt: Date;
|
1422
1423
|
updatedAt: Date;
|
1423
1424
|
deletedAt: Date | null;
|
@@ -1426,7 +1427,6 @@ export declare const ContactContractValidationSchema: {
|
|
1426
1427
|
bucketName: string;
|
1427
1428
|
fileSize: number;
|
1428
1429
|
fileUrl: string | null;
|
1429
|
-
status?: string | undefined;
|
1430
1430
|
}[];
|
1431
1431
|
}[];
|
1432
1432
|
company: {
|
@@ -1514,6 +1514,7 @@ export declare const ContactContractValidationSchema: {
|
|
1514
1514
|
dateValue: Date | null;
|
1515
1515
|
uploads: {
|
1516
1516
|
id: string;
|
1517
|
+
status: string | null;
|
1517
1518
|
createdAt: Date;
|
1518
1519
|
updatedAt: Date;
|
1519
1520
|
deletedAt: Date | null;
|
@@ -1522,7 +1523,6 @@ export declare const ContactContractValidationSchema: {
|
|
1522
1523
|
bucketName: string;
|
1523
1524
|
fileSize: number;
|
1524
1525
|
fileUrl: string | null;
|
1525
|
-
status?: string | undefined;
|
1526
1526
|
}[];
|
1527
1527
|
}[];
|
1528
1528
|
company: {
|
@@ -1883,9 +1883,10 @@ export declare const ContactContractValidationSchema: {
|
|
1883
1883
|
fileSize: z.ZodNumber;
|
1884
1884
|
fileKey: z.ZodString;
|
1885
1885
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1886
|
-
status: z.
|
1886
|
+
status: z.ZodNullable<z.ZodString>;
|
1887
1887
|
}, "strip", z.ZodTypeAny, {
|
1888
1888
|
id: string;
|
1889
|
+
status: string | null;
|
1889
1890
|
createdAt: Date;
|
1890
1891
|
updatedAt: Date;
|
1891
1892
|
deletedAt: Date | null;
|
@@ -1894,9 +1895,9 @@ export declare const ContactContractValidationSchema: {
|
|
1894
1895
|
bucketName: string;
|
1895
1896
|
fileSize: number;
|
1896
1897
|
fileUrl: string | null;
|
1897
|
-
status?: string | undefined;
|
1898
1898
|
}, {
|
1899
1899
|
id: string;
|
1900
|
+
status: string | null;
|
1900
1901
|
createdAt: Date;
|
1901
1902
|
updatedAt: Date;
|
1902
1903
|
deletedAt: Date | null;
|
@@ -1905,7 +1906,6 @@ export declare const ContactContractValidationSchema: {
|
|
1905
1906
|
bucketName: string;
|
1906
1907
|
fileSize: number;
|
1907
1908
|
fileUrl: string | null;
|
1908
|
-
status?: string | undefined;
|
1909
1909
|
}>, "many">;
|
1910
1910
|
}, "strip", z.ZodTypeAny, {
|
1911
1911
|
id: string;
|
@@ -1932,6 +1932,7 @@ export declare const ContactContractValidationSchema: {
|
|
1932
1932
|
dateValue: Date | null;
|
1933
1933
|
uploads: {
|
1934
1934
|
id: string;
|
1935
|
+
status: string | null;
|
1935
1936
|
createdAt: Date;
|
1936
1937
|
updatedAt: Date;
|
1937
1938
|
deletedAt: Date | null;
|
@@ -1940,7 +1941,6 @@ export declare const ContactContractValidationSchema: {
|
|
1940
1941
|
bucketName: string;
|
1941
1942
|
fileSize: number;
|
1942
1943
|
fileUrl: string | null;
|
1943
|
-
status?: string | undefined;
|
1944
1944
|
}[];
|
1945
1945
|
}, {
|
1946
1946
|
id: string;
|
@@ -1967,6 +1967,7 @@ export declare const ContactContractValidationSchema: {
|
|
1967
1967
|
dateValue: Date | null;
|
1968
1968
|
uploads: {
|
1969
1969
|
id: string;
|
1970
|
+
status: string | null;
|
1970
1971
|
createdAt: Date;
|
1971
1972
|
updatedAt: Date;
|
1972
1973
|
deletedAt: Date | null;
|
@@ -1975,7 +1976,6 @@ export declare const ContactContractValidationSchema: {
|
|
1975
1976
|
bucketName: string;
|
1976
1977
|
fileSize: number;
|
1977
1978
|
fileUrl: string | null;
|
1978
|
-
status?: string | undefined;
|
1979
1979
|
}[];
|
1980
1980
|
}>, "many">;
|
1981
1981
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -2115,6 +2115,7 @@ export declare const ContactContractValidationSchema: {
|
|
2115
2115
|
dateValue: Date | null;
|
2116
2116
|
uploads: {
|
2117
2117
|
id: string;
|
2118
|
+
status: string | null;
|
2118
2119
|
createdAt: Date;
|
2119
2120
|
updatedAt: Date;
|
2120
2121
|
deletedAt: Date | null;
|
@@ -2123,7 +2124,6 @@ export declare const ContactContractValidationSchema: {
|
|
2123
2124
|
bucketName: string;
|
2124
2125
|
fileSize: number;
|
2125
2126
|
fileUrl: string | null;
|
2126
|
-
status?: string | undefined;
|
2127
2127
|
}[];
|
2128
2128
|
}[];
|
2129
2129
|
company: {
|
@@ -2211,6 +2211,7 @@ export declare const ContactContractValidationSchema: {
|
|
2211
2211
|
dateValue: Date | null;
|
2212
2212
|
uploads: {
|
2213
2213
|
id: string;
|
2214
|
+
status: string | null;
|
2214
2215
|
createdAt: Date;
|
2215
2216
|
updatedAt: Date;
|
2216
2217
|
deletedAt: Date | null;
|
@@ -2219,7 +2220,6 @@ export declare const ContactContractValidationSchema: {
|
|
2219
2220
|
bucketName: string;
|
2220
2221
|
fileSize: number;
|
2221
2222
|
fileUrl: string | null;
|
2222
|
-
status?: string | undefined;
|
2223
2223
|
}[];
|
2224
2224
|
}[];
|
2225
2225
|
company: {
|
@@ -2579,9 +2579,10 @@ export declare const ContactContractValidationSchema: {
|
|
2579
2579
|
fileSize: z.ZodNumber;
|
2580
2580
|
fileKey: z.ZodString;
|
2581
2581
|
fileUrl: z.ZodNullable<z.ZodString>;
|
2582
|
-
status: z.
|
2582
|
+
status: z.ZodNullable<z.ZodString>;
|
2583
2583
|
}, "strip", z.ZodTypeAny, {
|
2584
2584
|
id: string;
|
2585
|
+
status: string | null;
|
2585
2586
|
createdAt: Date;
|
2586
2587
|
updatedAt: Date;
|
2587
2588
|
deletedAt: Date | null;
|
@@ -2590,9 +2591,9 @@ export declare const ContactContractValidationSchema: {
|
|
2590
2591
|
bucketName: string;
|
2591
2592
|
fileSize: number;
|
2592
2593
|
fileUrl: string | null;
|
2593
|
-
status?: string | undefined;
|
2594
2594
|
}, {
|
2595
2595
|
id: string;
|
2596
|
+
status: string | null;
|
2596
2597
|
createdAt: Date;
|
2597
2598
|
updatedAt: Date;
|
2598
2599
|
deletedAt: Date | null;
|
@@ -2601,7 +2602,6 @@ export declare const ContactContractValidationSchema: {
|
|
2601
2602
|
bucketName: string;
|
2602
2603
|
fileSize: number;
|
2603
2604
|
fileUrl: string | null;
|
2604
|
-
status?: string | undefined;
|
2605
2605
|
}>, "many">;
|
2606
2606
|
}, "strip", z.ZodTypeAny, {
|
2607
2607
|
id: string;
|
@@ -2628,6 +2628,7 @@ export declare const ContactContractValidationSchema: {
|
|
2628
2628
|
dateValue: Date | null;
|
2629
2629
|
uploads: {
|
2630
2630
|
id: string;
|
2631
|
+
status: string | null;
|
2631
2632
|
createdAt: Date;
|
2632
2633
|
updatedAt: Date;
|
2633
2634
|
deletedAt: Date | null;
|
@@ -2636,7 +2637,6 @@ export declare const ContactContractValidationSchema: {
|
|
2636
2637
|
bucketName: string;
|
2637
2638
|
fileSize: number;
|
2638
2639
|
fileUrl: string | null;
|
2639
|
-
status?: string | undefined;
|
2640
2640
|
}[];
|
2641
2641
|
}, {
|
2642
2642
|
id: string;
|
@@ -2663,6 +2663,7 @@ export declare const ContactContractValidationSchema: {
|
|
2663
2663
|
dateValue: Date | null;
|
2664
2664
|
uploads: {
|
2665
2665
|
id: string;
|
2666
|
+
status: string | null;
|
2666
2667
|
createdAt: Date;
|
2667
2668
|
updatedAt: Date;
|
2668
2669
|
deletedAt: Date | null;
|
@@ -2671,7 +2672,6 @@ export declare const ContactContractValidationSchema: {
|
|
2671
2672
|
bucketName: string;
|
2672
2673
|
fileSize: number;
|
2673
2674
|
fileUrl: string | null;
|
2674
|
-
status?: string | undefined;
|
2675
2675
|
}[];
|
2676
2676
|
}>, "many">;
|
2677
2677
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -2811,6 +2811,7 @@ export declare const ContactContractValidationSchema: {
|
|
2811
2811
|
dateValue: Date | null;
|
2812
2812
|
uploads: {
|
2813
2813
|
id: string;
|
2814
|
+
status: string | null;
|
2814
2815
|
createdAt: Date;
|
2815
2816
|
updatedAt: Date;
|
2816
2817
|
deletedAt: Date | null;
|
@@ -2819,7 +2820,6 @@ export declare const ContactContractValidationSchema: {
|
|
2819
2820
|
bucketName: string;
|
2820
2821
|
fileSize: number;
|
2821
2822
|
fileUrl: string | null;
|
2822
|
-
status?: string | undefined;
|
2823
2823
|
}[];
|
2824
2824
|
}[];
|
2825
2825
|
company: {
|
@@ -2907,6 +2907,7 @@ export declare const ContactContractValidationSchema: {
|
|
2907
2907
|
dateValue: Date | null;
|
2908
2908
|
uploads: {
|
2909
2909
|
id: string;
|
2910
|
+
status: string | null;
|
2910
2911
|
createdAt: Date;
|
2911
2912
|
updatedAt: Date;
|
2912
2913
|
deletedAt: Date | null;
|
@@ -2915,7 +2916,6 @@ export declare const ContactContractValidationSchema: {
|
|
2915
2916
|
bucketName: string;
|
2916
2917
|
fileSize: number;
|
2917
2918
|
fileUrl: string | null;
|
2918
|
-
status?: string | undefined;
|
2919
2919
|
}[];
|
2920
2920
|
}[];
|
2921
2921
|
company: {
|
@@ -3278,9 +3278,10 @@ export declare const ContactContractValidationSchema: {
|
|
3278
3278
|
fileSize: z.ZodNumber;
|
3279
3279
|
fileKey: z.ZodString;
|
3280
3280
|
fileUrl: z.ZodNullable<z.ZodString>;
|
3281
|
-
status: z.
|
3281
|
+
status: z.ZodNullable<z.ZodString>;
|
3282
3282
|
}, "strip", z.ZodTypeAny, {
|
3283
3283
|
id: string;
|
3284
|
+
status: string | null;
|
3284
3285
|
createdAt: Date;
|
3285
3286
|
updatedAt: Date;
|
3286
3287
|
deletedAt: Date | null;
|
@@ -3289,9 +3290,9 @@ export declare const ContactContractValidationSchema: {
|
|
3289
3290
|
bucketName: string;
|
3290
3291
|
fileSize: number;
|
3291
3292
|
fileUrl: string | null;
|
3292
|
-
status?: string | undefined;
|
3293
3293
|
}, {
|
3294
3294
|
id: string;
|
3295
|
+
status: string | null;
|
3295
3296
|
createdAt: Date;
|
3296
3297
|
updatedAt: Date;
|
3297
3298
|
deletedAt: Date | null;
|
@@ -3300,7 +3301,6 @@ export declare const ContactContractValidationSchema: {
|
|
3300
3301
|
bucketName: string;
|
3301
3302
|
fileSize: number;
|
3302
3303
|
fileUrl: string | null;
|
3303
|
-
status?: string | undefined;
|
3304
3304
|
}>, "many">;
|
3305
3305
|
}, "strip", z.ZodTypeAny, {
|
3306
3306
|
id: string;
|
@@ -3327,6 +3327,7 @@ export declare const ContactContractValidationSchema: {
|
|
3327
3327
|
dateValue: Date | null;
|
3328
3328
|
uploads: {
|
3329
3329
|
id: string;
|
3330
|
+
status: string | null;
|
3330
3331
|
createdAt: Date;
|
3331
3332
|
updatedAt: Date;
|
3332
3333
|
deletedAt: Date | null;
|
@@ -3335,7 +3336,6 @@ export declare const ContactContractValidationSchema: {
|
|
3335
3336
|
bucketName: string;
|
3336
3337
|
fileSize: number;
|
3337
3338
|
fileUrl: string | null;
|
3338
|
-
status?: string | undefined;
|
3339
3339
|
}[];
|
3340
3340
|
}, {
|
3341
3341
|
id: string;
|
@@ -3362,6 +3362,7 @@ export declare const ContactContractValidationSchema: {
|
|
3362
3362
|
dateValue: Date | null;
|
3363
3363
|
uploads: {
|
3364
3364
|
id: string;
|
3365
|
+
status: string | null;
|
3365
3366
|
createdAt: Date;
|
3366
3367
|
updatedAt: Date;
|
3367
3368
|
deletedAt: Date | null;
|
@@ -3370,7 +3371,6 @@ export declare const ContactContractValidationSchema: {
|
|
3370
3371
|
bucketName: string;
|
3371
3372
|
fileSize: number;
|
3372
3373
|
fileUrl: string | null;
|
3373
|
-
status?: string | undefined;
|
3374
3374
|
}[];
|
3375
3375
|
}>, "many">;
|
3376
3376
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -3510,6 +3510,7 @@ export declare const ContactContractValidationSchema: {
|
|
3510
3510
|
dateValue: Date | null;
|
3511
3511
|
uploads: {
|
3512
3512
|
id: string;
|
3513
|
+
status: string | null;
|
3513
3514
|
createdAt: Date;
|
3514
3515
|
updatedAt: Date;
|
3515
3516
|
deletedAt: Date | null;
|
@@ -3518,7 +3519,6 @@ export declare const ContactContractValidationSchema: {
|
|
3518
3519
|
bucketName: string;
|
3519
3520
|
fileSize: number;
|
3520
3521
|
fileUrl: string | null;
|
3521
|
-
status?: string | undefined;
|
3522
3522
|
}[];
|
3523
3523
|
}[];
|
3524
3524
|
company: {
|
@@ -3606,6 +3606,7 @@ export declare const ContactContractValidationSchema: {
|
|
3606
3606
|
dateValue: Date | null;
|
3607
3607
|
uploads: {
|
3608
3608
|
id: string;
|
3609
|
+
status: string | null;
|
3609
3610
|
createdAt: Date;
|
3610
3611
|
updatedAt: Date;
|
3611
3612
|
deletedAt: Date | null;
|
@@ -3614,7 +3615,6 @@ export declare const ContactContractValidationSchema: {
|
|
3614
3615
|
bucketName: string;
|
3615
3616
|
fileSize: number;
|
3616
3617
|
fileUrl: string | null;
|
3617
|
-
status?: string | undefined;
|
3618
3618
|
}[];
|
3619
3619
|
}[];
|
3620
3620
|
company: {
|
@@ -4039,9 +4039,10 @@ export declare const ContactContractValidationSchema: {
|
|
4039
4039
|
fileSize: z.ZodNumber;
|
4040
4040
|
fileKey: z.ZodString;
|
4041
4041
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4042
|
-
status: z.
|
4042
|
+
status: z.ZodNullable<z.ZodString>;
|
4043
4043
|
}, "strip", z.ZodTypeAny, {
|
4044
4044
|
id: string;
|
4045
|
+
status: string | null;
|
4045
4046
|
createdAt: Date;
|
4046
4047
|
updatedAt: Date;
|
4047
4048
|
deletedAt: Date | null;
|
@@ -4050,9 +4051,9 @@ export declare const ContactContractValidationSchema: {
|
|
4050
4051
|
bucketName: string;
|
4051
4052
|
fileSize: number;
|
4052
4053
|
fileUrl: string | null;
|
4053
|
-
status?: string | undefined;
|
4054
4054
|
}, {
|
4055
4055
|
id: string;
|
4056
|
+
status: string | null;
|
4056
4057
|
createdAt: Date;
|
4057
4058
|
updatedAt: Date;
|
4058
4059
|
deletedAt: Date | null;
|
@@ -4061,7 +4062,6 @@ export declare const ContactContractValidationSchema: {
|
|
4061
4062
|
bucketName: string;
|
4062
4063
|
fileSize: number;
|
4063
4064
|
fileUrl: string | null;
|
4064
|
-
status?: string | undefined;
|
4065
4065
|
}>, "many">;
|
4066
4066
|
}, "strip", z.ZodTypeAny, {
|
4067
4067
|
id: string;
|
@@ -4088,6 +4088,7 @@ export declare const ContactContractValidationSchema: {
|
|
4088
4088
|
dateValue: Date | null;
|
4089
4089
|
uploads: {
|
4090
4090
|
id: string;
|
4091
|
+
status: string | null;
|
4091
4092
|
createdAt: Date;
|
4092
4093
|
updatedAt: Date;
|
4093
4094
|
deletedAt: Date | null;
|
@@ -4096,7 +4097,6 @@ export declare const ContactContractValidationSchema: {
|
|
4096
4097
|
bucketName: string;
|
4097
4098
|
fileSize: number;
|
4098
4099
|
fileUrl: string | null;
|
4099
|
-
status?: string | undefined;
|
4100
4100
|
}[];
|
4101
4101
|
}, {
|
4102
4102
|
id: string;
|
@@ -4123,6 +4123,7 @@ export declare const ContactContractValidationSchema: {
|
|
4123
4123
|
dateValue: Date | null;
|
4124
4124
|
uploads: {
|
4125
4125
|
id: string;
|
4126
|
+
status: string | null;
|
4126
4127
|
createdAt: Date;
|
4127
4128
|
updatedAt: Date;
|
4128
4129
|
deletedAt: Date | null;
|
@@ -4131,7 +4132,6 @@ export declare const ContactContractValidationSchema: {
|
|
4131
4132
|
bucketName: string;
|
4132
4133
|
fileSize: number;
|
4133
4134
|
fileUrl: string | null;
|
4134
|
-
status?: string | undefined;
|
4135
4135
|
}[];
|
4136
4136
|
}>, "many">;
|
4137
4137
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -4271,6 +4271,7 @@ export declare const ContactContractValidationSchema: {
|
|
4271
4271
|
dateValue: Date | null;
|
4272
4272
|
uploads: {
|
4273
4273
|
id: string;
|
4274
|
+
status: string | null;
|
4274
4275
|
createdAt: Date;
|
4275
4276
|
updatedAt: Date;
|
4276
4277
|
deletedAt: Date | null;
|
@@ -4279,7 +4280,6 @@ export declare const ContactContractValidationSchema: {
|
|
4279
4280
|
bucketName: string;
|
4280
4281
|
fileSize: number;
|
4281
4282
|
fileUrl: string | null;
|
4282
|
-
status?: string | undefined;
|
4283
4283
|
}[];
|
4284
4284
|
}[];
|
4285
4285
|
company: {
|
@@ -4367,6 +4367,7 @@ export declare const ContactContractValidationSchema: {
|
|
4367
4367
|
dateValue: Date | null;
|
4368
4368
|
uploads: {
|
4369
4369
|
id: string;
|
4370
|
+
status: string | null;
|
4370
4371
|
createdAt: Date;
|
4371
4372
|
updatedAt: Date;
|
4372
4373
|
deletedAt: Date | null;
|
@@ -4375,7 +4376,6 @@ export declare const ContactContractValidationSchema: {
|
|
4375
4376
|
bucketName: string;
|
4376
4377
|
fileSize: number;
|
4377
4378
|
fileUrl: string | null;
|
4378
|
-
status?: string | undefined;
|
4379
4379
|
}[];
|
4380
4380
|
}[];
|
4381
4381
|
company: {
|
@@ -4778,9 +4778,10 @@ export declare const ContactContractValidationSchema: {
|
|
4778
4778
|
fileSize: z.ZodNumber;
|
4779
4779
|
fileKey: z.ZodString;
|
4780
4780
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4781
|
-
status: z.
|
4781
|
+
status: z.ZodNullable<z.ZodString>;
|
4782
4782
|
}, "strip", z.ZodTypeAny, {
|
4783
4783
|
id: string;
|
4784
|
+
status: string | null;
|
4784
4785
|
createdAt: Date;
|
4785
4786
|
updatedAt: Date;
|
4786
4787
|
deletedAt: Date | null;
|
@@ -4789,9 +4790,9 @@ export declare const ContactContractValidationSchema: {
|
|
4789
4790
|
bucketName: string;
|
4790
4791
|
fileSize: number;
|
4791
4792
|
fileUrl: string | null;
|
4792
|
-
status?: string | undefined;
|
4793
4793
|
}, {
|
4794
4794
|
id: string;
|
4795
|
+
status: string | null;
|
4795
4796
|
createdAt: Date;
|
4796
4797
|
updatedAt: Date;
|
4797
4798
|
deletedAt: Date | null;
|
@@ -4800,7 +4801,6 @@ export declare const ContactContractValidationSchema: {
|
|
4800
4801
|
bucketName: string;
|
4801
4802
|
fileSize: number;
|
4802
4803
|
fileUrl: string | null;
|
4803
|
-
status?: string | undefined;
|
4804
4804
|
}>, "many">;
|
4805
4805
|
}, "strip", z.ZodTypeAny, {
|
4806
4806
|
id: string;
|
@@ -4827,6 +4827,7 @@ export declare const ContactContractValidationSchema: {
|
|
4827
4827
|
dateValue: Date | null;
|
4828
4828
|
uploads: {
|
4829
4829
|
id: string;
|
4830
|
+
status: string | null;
|
4830
4831
|
createdAt: Date;
|
4831
4832
|
updatedAt: Date;
|
4832
4833
|
deletedAt: Date | null;
|
@@ -4835,7 +4836,6 @@ export declare const ContactContractValidationSchema: {
|
|
4835
4836
|
bucketName: string;
|
4836
4837
|
fileSize: number;
|
4837
4838
|
fileUrl: string | null;
|
4838
|
-
status?: string | undefined;
|
4839
4839
|
}[];
|
4840
4840
|
}, {
|
4841
4841
|
id: string;
|
@@ -4862,6 +4862,7 @@ export declare const ContactContractValidationSchema: {
|
|
4862
4862
|
dateValue: Date | null;
|
4863
4863
|
uploads: {
|
4864
4864
|
id: string;
|
4865
|
+
status: string | null;
|
4865
4866
|
createdAt: Date;
|
4866
4867
|
updatedAt: Date;
|
4867
4868
|
deletedAt: Date | null;
|
@@ -4870,7 +4871,6 @@ export declare const ContactContractValidationSchema: {
|
|
4870
4871
|
bucketName: string;
|
4871
4872
|
fileSize: number;
|
4872
4873
|
fileUrl: string | null;
|
4873
|
-
status?: string | undefined;
|
4874
4874
|
}[];
|
4875
4875
|
}>, "many">;
|
4876
4876
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -5010,6 +5010,7 @@ export declare const ContactContractValidationSchema: {
|
|
5010
5010
|
dateValue: Date | null;
|
5011
5011
|
uploads: {
|
5012
5012
|
id: string;
|
5013
|
+
status: string | null;
|
5013
5014
|
createdAt: Date;
|
5014
5015
|
updatedAt: Date;
|
5015
5016
|
deletedAt: Date | null;
|
@@ -5018,7 +5019,6 @@ export declare const ContactContractValidationSchema: {
|
|
5018
5019
|
bucketName: string;
|
5019
5020
|
fileSize: number;
|
5020
5021
|
fileUrl: string | null;
|
5021
|
-
status?: string | undefined;
|
5022
5022
|
}[];
|
5023
5023
|
}[];
|
5024
5024
|
company: {
|
@@ -5106,6 +5106,7 @@ export declare const ContactContractValidationSchema: {
|
|
5106
5106
|
dateValue: Date | null;
|
5107
5107
|
uploads: {
|
5108
5108
|
id: string;
|
5109
|
+
status: string | null;
|
5109
5110
|
createdAt: Date;
|
5110
5111
|
updatedAt: Date;
|
5111
5112
|
deletedAt: Date | null;
|
@@ -5114,7 +5115,6 @@ export declare const ContactContractValidationSchema: {
|
|
5114
5115
|
bucketName: string;
|
5115
5116
|
fileSize: number;
|
5116
5117
|
fileUrl: string | null;
|
5117
|
-
status?: string | undefined;
|
5118
5118
|
}[];
|
5119
5119
|
}[];
|
5120
5120
|
company: {
|