@kl1/contracts 1.1.39-uat → 1.1.41-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 +2215 -2197
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2214 -2196
- 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/business-calendar/index.d.ts +21 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -1
- package/dist/src/business-calendar/schema.d.ts +8 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +34445 -34443
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +50 -50
- package/dist/src/chat/validation.d.ts +46 -46
- 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 +1238 -57196
- 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 +106 -49
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +40 -40
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +31 -31
- package/dist/src/line/index.d.ts +31 -31
- 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 +31 -31
- package/dist/src/messenger/validation.d.ts +11 -11
- 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/call-report.schema.d.ts +36 -10
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- 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 +31 -31
- package/dist/src/webchat/index.d.ts +32 -34
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +36 -26
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +3 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +3 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -374,9 +374,10 @@ export declare const publicApiContract: {
|
|
374
374
|
fileSize: z.ZodNumber;
|
375
375
|
fileKey: z.ZodString;
|
376
376
|
fileUrl: z.ZodNullable<z.ZodString>;
|
377
|
-
status: z.
|
377
|
+
status: z.ZodNullable<z.ZodString>;
|
378
378
|
}, "strip", z.ZodTypeAny, {
|
379
379
|
id: string;
|
380
|
+
status: string | null;
|
380
381
|
createdAt: Date;
|
381
382
|
updatedAt: Date;
|
382
383
|
deletedAt: Date | null;
|
@@ -385,9 +386,9 @@ export declare const publicApiContract: {
|
|
385
386
|
bucketName: string;
|
386
387
|
fileSize: number;
|
387
388
|
fileUrl: string | null;
|
388
|
-
status?: string | undefined;
|
389
389
|
}, {
|
390
390
|
id: string;
|
391
|
+
status: string | null;
|
391
392
|
createdAt: Date;
|
392
393
|
updatedAt: Date;
|
393
394
|
deletedAt: Date | null;
|
@@ -396,7 +397,6 @@ export declare const publicApiContract: {
|
|
396
397
|
bucketName: string;
|
397
398
|
fileSize: number;
|
398
399
|
fileUrl: string | null;
|
399
|
-
status?: string | undefined;
|
400
400
|
}>, "many">;
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
402
402
|
id: string;
|
@@ -423,6 +423,7 @@ export declare const publicApiContract: {
|
|
423
423
|
dateValue: Date | null;
|
424
424
|
uploads: {
|
425
425
|
id: string;
|
426
|
+
status: string | null;
|
426
427
|
createdAt: Date;
|
427
428
|
updatedAt: Date;
|
428
429
|
deletedAt: Date | null;
|
@@ -431,7 +432,6 @@ export declare const publicApiContract: {
|
|
431
432
|
bucketName: string;
|
432
433
|
fileSize: number;
|
433
434
|
fileUrl: string | null;
|
434
|
-
status?: string | undefined;
|
435
435
|
}[];
|
436
436
|
}, {
|
437
437
|
id: string;
|
@@ -458,6 +458,7 @@ export declare const publicApiContract: {
|
|
458
458
|
dateValue: Date | null;
|
459
459
|
uploads: {
|
460
460
|
id: string;
|
461
|
+
status: string | null;
|
461
462
|
createdAt: Date;
|
462
463
|
updatedAt: Date;
|
463
464
|
deletedAt: Date | null;
|
@@ -466,7 +467,6 @@ export declare const publicApiContract: {
|
|
466
467
|
bucketName: string;
|
467
468
|
fileSize: number;
|
468
469
|
fileUrl: string | null;
|
469
|
-
status?: string | undefined;
|
470
470
|
}[];
|
471
471
|
}>, "many">;
|
472
472
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -606,6 +606,7 @@ export declare const publicApiContract: {
|
|
606
606
|
dateValue: Date | null;
|
607
607
|
uploads: {
|
608
608
|
id: string;
|
609
|
+
status: string | null;
|
609
610
|
createdAt: Date;
|
610
611
|
updatedAt: Date;
|
611
612
|
deletedAt: Date | null;
|
@@ -614,7 +615,6 @@ export declare const publicApiContract: {
|
|
614
615
|
bucketName: string;
|
615
616
|
fileSize: number;
|
616
617
|
fileUrl: string | null;
|
617
|
-
status?: string | undefined;
|
618
618
|
}[];
|
619
619
|
}[];
|
620
620
|
company: {
|
@@ -702,6 +702,7 @@ export declare const publicApiContract: {
|
|
702
702
|
dateValue: Date | null;
|
703
703
|
uploads: {
|
704
704
|
id: string;
|
705
|
+
status: string | null;
|
705
706
|
createdAt: Date;
|
706
707
|
updatedAt: Date;
|
707
708
|
deletedAt: Date | null;
|
@@ -710,7 +711,6 @@ export declare const publicApiContract: {
|
|
710
711
|
bucketName: string;
|
711
712
|
fileSize: number;
|
712
713
|
fileUrl: string | null;
|
713
|
-
status?: string | undefined;
|
714
714
|
}[];
|
715
715
|
}[];
|
716
716
|
company: {
|
@@ -800,6 +800,7 @@ export declare const publicApiContract: {
|
|
800
800
|
dateValue: Date | null;
|
801
801
|
uploads: {
|
802
802
|
id: string;
|
803
|
+
status: string | null;
|
803
804
|
createdAt: Date;
|
804
805
|
updatedAt: Date;
|
805
806
|
deletedAt: Date | null;
|
@@ -808,7 +809,6 @@ export declare const publicApiContract: {
|
|
808
809
|
bucketName: string;
|
809
810
|
fileSize: number;
|
810
811
|
fileUrl: string | null;
|
811
|
-
status?: string | undefined;
|
812
812
|
}[];
|
813
813
|
}[];
|
814
814
|
company: {
|
@@ -899,6 +899,7 @@ export declare const publicApiContract: {
|
|
899
899
|
dateValue: Date | null;
|
900
900
|
uploads: {
|
901
901
|
id: string;
|
902
|
+
status: string | null;
|
902
903
|
createdAt: Date;
|
903
904
|
updatedAt: Date;
|
904
905
|
deletedAt: Date | null;
|
@@ -907,7 +908,6 @@ export declare const publicApiContract: {
|
|
907
908
|
bucketName: string;
|
908
909
|
fileSize: number;
|
909
910
|
fileUrl: string | null;
|
910
|
-
status?: string | undefined;
|
911
911
|
}[];
|
912
912
|
}[];
|
913
913
|
company: {
|
@@ -1500,9 +1500,10 @@ export declare const publicApiContract: {
|
|
1500
1500
|
fileSize: z.ZodNumber;
|
1501
1501
|
fileKey: z.ZodString;
|
1502
1502
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1503
|
-
status: z.
|
1503
|
+
status: z.ZodNullable<z.ZodString>;
|
1504
1504
|
}, "strip", z.ZodTypeAny, {
|
1505
1505
|
id: string;
|
1506
|
+
status: string | null;
|
1506
1507
|
createdAt: Date;
|
1507
1508
|
updatedAt: Date;
|
1508
1509
|
deletedAt: Date | null;
|
@@ -1511,9 +1512,9 @@ export declare const publicApiContract: {
|
|
1511
1512
|
bucketName: string;
|
1512
1513
|
fileSize: number;
|
1513
1514
|
fileUrl: string | null;
|
1514
|
-
status?: string | undefined;
|
1515
1515
|
}, {
|
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 publicApiContract: {
|
|
1522
1523
|
bucketName: string;
|
1523
1524
|
fileSize: number;
|
1524
1525
|
fileUrl: string | null;
|
1525
|
-
status?: string | undefined;
|
1526
1526
|
}>, "many">;
|
1527
1527
|
}, "strip", z.ZodTypeAny, {
|
1528
1528
|
id: string;
|
@@ -1549,6 +1549,7 @@ export declare const publicApiContract: {
|
|
1549
1549
|
dateValue: Date | null;
|
1550
1550
|
uploads: {
|
1551
1551
|
id: string;
|
1552
|
+
status: string | null;
|
1552
1553
|
createdAt: Date;
|
1553
1554
|
updatedAt: Date;
|
1554
1555
|
deletedAt: Date | null;
|
@@ -1557,7 +1558,6 @@ export declare const publicApiContract: {
|
|
1557
1558
|
bucketName: string;
|
1558
1559
|
fileSize: number;
|
1559
1560
|
fileUrl: string | null;
|
1560
|
-
status?: string | undefined;
|
1561
1561
|
}[];
|
1562
1562
|
}, {
|
1563
1563
|
id: string;
|
@@ -1584,6 +1584,7 @@ export declare const publicApiContract: {
|
|
1584
1584
|
dateValue: Date | null;
|
1585
1585
|
uploads: {
|
1586
1586
|
id: string;
|
1587
|
+
status: string | null;
|
1587
1588
|
createdAt: Date;
|
1588
1589
|
updatedAt: Date;
|
1589
1590
|
deletedAt: Date | null;
|
@@ -1592,7 +1593,6 @@ export declare const publicApiContract: {
|
|
1592
1593
|
bucketName: string;
|
1593
1594
|
fileSize: number;
|
1594
1595
|
fileUrl: string | null;
|
1595
|
-
status?: string | undefined;
|
1596
1596
|
}[];
|
1597
1597
|
}>, "many">;
|
1598
1598
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1732,6 +1732,7 @@ export declare const publicApiContract: {
|
|
1732
1732
|
dateValue: Date | null;
|
1733
1733
|
uploads: {
|
1734
1734
|
id: string;
|
1735
|
+
status: string | null;
|
1735
1736
|
createdAt: Date;
|
1736
1737
|
updatedAt: Date;
|
1737
1738
|
deletedAt: Date | null;
|
@@ -1740,7 +1741,6 @@ export declare const publicApiContract: {
|
|
1740
1741
|
bucketName: string;
|
1741
1742
|
fileSize: number;
|
1742
1743
|
fileUrl: string | null;
|
1743
|
-
status?: string | undefined;
|
1744
1744
|
}[];
|
1745
1745
|
}[];
|
1746
1746
|
company: {
|
@@ -1828,6 +1828,7 @@ export declare const publicApiContract: {
|
|
1828
1828
|
dateValue: Date | null;
|
1829
1829
|
uploads: {
|
1830
1830
|
id: string;
|
1831
|
+
status: string | null;
|
1831
1832
|
createdAt: Date;
|
1832
1833
|
updatedAt: Date;
|
1833
1834
|
deletedAt: Date | null;
|
@@ -1836,7 +1837,6 @@ export declare const publicApiContract: {
|
|
1836
1837
|
bucketName: string;
|
1837
1838
|
fileSize: number;
|
1838
1839
|
fileUrl: string | null;
|
1839
|
-
status?: string | undefined;
|
1840
1840
|
}[];
|
1841
1841
|
}[];
|
1842
1842
|
company: {
|
@@ -1926,6 +1926,7 @@ export declare const publicApiContract: {
|
|
1926
1926
|
dateValue: Date | null;
|
1927
1927
|
uploads: {
|
1928
1928
|
id: string;
|
1929
|
+
status: string | null;
|
1929
1930
|
createdAt: Date;
|
1930
1931
|
updatedAt: Date;
|
1931
1932
|
deletedAt: Date | null;
|
@@ -1934,7 +1935,6 @@ export declare const publicApiContract: {
|
|
1934
1935
|
bucketName: string;
|
1935
1936
|
fileSize: number;
|
1936
1937
|
fileUrl: string | null;
|
1937
|
-
status?: string | undefined;
|
1938
1938
|
}[];
|
1939
1939
|
}[];
|
1940
1940
|
company: {
|
@@ -2029,6 +2029,7 @@ export declare const publicApiContract: {
|
|
2029
2029
|
dateValue: Date | null;
|
2030
2030
|
uploads: {
|
2031
2031
|
id: string;
|
2032
|
+
status: string | null;
|
2032
2033
|
createdAt: Date;
|
2033
2034
|
updatedAt: Date;
|
2034
2035
|
deletedAt: Date | null;
|
@@ -2037,7 +2038,6 @@ export declare const publicApiContract: {
|
|
2037
2038
|
bucketName: string;
|
2038
2039
|
fileSize: number;
|
2039
2040
|
fileUrl: string | null;
|
2040
|
-
status?: string | undefined;
|
2041
2041
|
}[];
|
2042
2042
|
}[];
|
2043
2043
|
company: {
|
@@ -2276,9 +2276,10 @@ export declare const publicApiContract: {
|
|
2276
2276
|
fileSize: z.ZodNumber;
|
2277
2277
|
fileKey: z.ZodString;
|
2278
2278
|
fileUrl: z.ZodNullable<z.ZodString>;
|
2279
|
-
status: z.
|
2279
|
+
status: z.ZodNullable<z.ZodString>;
|
2280
2280
|
}, "strip", z.ZodTypeAny, {
|
2281
2281
|
id: string;
|
2282
|
+
status: string | null;
|
2282
2283
|
createdAt: Date;
|
2283
2284
|
updatedAt: Date;
|
2284
2285
|
deletedAt: Date | null;
|
@@ -2287,9 +2288,9 @@ export declare const publicApiContract: {
|
|
2287
2288
|
bucketName: string;
|
2288
2289
|
fileSize: number;
|
2289
2290
|
fileUrl: string | null;
|
2290
|
-
status?: string | undefined;
|
2291
2291
|
}, {
|
2292
2292
|
id: string;
|
2293
|
+
status: string | null;
|
2293
2294
|
createdAt: Date;
|
2294
2295
|
updatedAt: Date;
|
2295
2296
|
deletedAt: Date | null;
|
@@ -2298,7 +2299,6 @@ export declare const publicApiContract: {
|
|
2298
2299
|
bucketName: string;
|
2299
2300
|
fileSize: number;
|
2300
2301
|
fileUrl: string | null;
|
2301
|
-
status?: string | undefined;
|
2302
2302
|
}>, "many">;
|
2303
2303
|
}, "strip", z.ZodTypeAny, {
|
2304
2304
|
id: string;
|
@@ -2325,6 +2325,7 @@ export declare const publicApiContract: {
|
|
2325
2325
|
dateValue: Date | null;
|
2326
2326
|
uploads: {
|
2327
2327
|
id: string;
|
2328
|
+
status: string | null;
|
2328
2329
|
createdAt: Date;
|
2329
2330
|
updatedAt: Date;
|
2330
2331
|
deletedAt: Date | null;
|
@@ -2333,7 +2334,6 @@ export declare const publicApiContract: {
|
|
2333
2334
|
bucketName: string;
|
2334
2335
|
fileSize: number;
|
2335
2336
|
fileUrl: string | null;
|
2336
|
-
status?: string | undefined;
|
2337
2337
|
}[];
|
2338
2338
|
}, {
|
2339
2339
|
id: string;
|
@@ -2360,6 +2360,7 @@ export declare const publicApiContract: {
|
|
2360
2360
|
dateValue: Date | null;
|
2361
2361
|
uploads: {
|
2362
2362
|
id: string;
|
2363
|
+
status: string | null;
|
2363
2364
|
createdAt: Date;
|
2364
2365
|
updatedAt: Date;
|
2365
2366
|
deletedAt: Date | null;
|
@@ -2368,7 +2369,6 @@ export declare const publicApiContract: {
|
|
2368
2369
|
bucketName: string;
|
2369
2370
|
fileSize: number;
|
2370
2371
|
fileUrl: string | null;
|
2371
|
-
status?: string | undefined;
|
2372
2372
|
}[];
|
2373
2373
|
}>, "many">;
|
2374
2374
|
}, "strip", z.ZodTypeAny, {
|
@@ -2397,6 +2397,7 @@ export declare const publicApiContract: {
|
|
2397
2397
|
dateValue: Date | null;
|
2398
2398
|
uploads: {
|
2399
2399
|
id: string;
|
2400
|
+
status: string | null;
|
2400
2401
|
createdAt: Date;
|
2401
2402
|
updatedAt: Date;
|
2402
2403
|
deletedAt: Date | null;
|
@@ -2405,7 +2406,6 @@ export declare const publicApiContract: {
|
|
2405
2406
|
bucketName: string;
|
2406
2407
|
fileSize: number;
|
2407
2408
|
fileUrl: string | null;
|
2408
|
-
status?: string | undefined;
|
2409
2409
|
}[];
|
2410
2410
|
}[];
|
2411
2411
|
total: number;
|
@@ -2439,6 +2439,7 @@ export declare const publicApiContract: {
|
|
2439
2439
|
dateValue: Date | null;
|
2440
2440
|
uploads: {
|
2441
2441
|
id: string;
|
2442
|
+
status: string | null;
|
2442
2443
|
createdAt: Date;
|
2443
2444
|
updatedAt: Date;
|
2444
2445
|
deletedAt: Date | null;
|
@@ -2447,7 +2448,6 @@ export declare const publicApiContract: {
|
|
2447
2448
|
bucketName: string;
|
2448
2449
|
fileSize: number;
|
2449
2450
|
fileUrl: string | null;
|
2450
|
-
status?: string | undefined;
|
2451
2451
|
}[];
|
2452
2452
|
}[];
|
2453
2453
|
total: number;
|
@@ -2883,9 +2883,10 @@ export declare const publicApiContract: {
|
|
2883
2883
|
fileSize: z.ZodNumber;
|
2884
2884
|
fileKey: z.ZodString;
|
2885
2885
|
fileUrl: z.ZodNullable<z.ZodString>;
|
2886
|
-
status: z.
|
2886
|
+
status: z.ZodNullable<z.ZodString>;
|
2887
2887
|
}, "strip", z.ZodTypeAny, {
|
2888
2888
|
id: string;
|
2889
|
+
status: string | null;
|
2889
2890
|
createdAt: Date;
|
2890
2891
|
updatedAt: Date;
|
2891
2892
|
deletedAt: Date | null;
|
@@ -2894,9 +2895,9 @@ export declare const publicApiContract: {
|
|
2894
2895
|
bucketName: string;
|
2895
2896
|
fileSize: number;
|
2896
2897
|
fileUrl: string | null;
|
2897
|
-
status?: string | undefined;
|
2898
2898
|
}, {
|
2899
2899
|
id: string;
|
2900
|
+
status: string | null;
|
2900
2901
|
createdAt: Date;
|
2901
2902
|
updatedAt: Date;
|
2902
2903
|
deletedAt: Date | null;
|
@@ -2905,7 +2906,6 @@ export declare const publicApiContract: {
|
|
2905
2906
|
bucketName: string;
|
2906
2907
|
fileSize: number;
|
2907
2908
|
fileUrl: string | null;
|
2908
|
-
status?: string | undefined;
|
2909
2909
|
}>, "many">;
|
2910
2910
|
}, "strip", z.ZodTypeAny, {
|
2911
2911
|
id: string;
|
@@ -2932,6 +2932,7 @@ export declare const publicApiContract: {
|
|
2932
2932
|
dateValue: Date | null;
|
2933
2933
|
uploads: {
|
2934
2934
|
id: string;
|
2935
|
+
status: string | null;
|
2935
2936
|
createdAt: Date;
|
2936
2937
|
updatedAt: Date;
|
2937
2938
|
deletedAt: Date | null;
|
@@ -2940,7 +2941,6 @@ export declare const publicApiContract: {
|
|
2940
2941
|
bucketName: string;
|
2941
2942
|
fileSize: number;
|
2942
2943
|
fileUrl: string | null;
|
2943
|
-
status?: string | undefined;
|
2944
2944
|
}[];
|
2945
2945
|
}, {
|
2946
2946
|
id: string;
|
@@ -2967,6 +2967,7 @@ export declare const publicApiContract: {
|
|
2967
2967
|
dateValue: Date | null;
|
2968
2968
|
uploads: {
|
2969
2969
|
id: string;
|
2970
|
+
status: string | null;
|
2970
2971
|
createdAt: Date;
|
2971
2972
|
updatedAt: Date;
|
2972
2973
|
deletedAt: Date | null;
|
@@ -2975,7 +2976,6 @@ export declare const publicApiContract: {
|
|
2975
2976
|
bucketName: string;
|
2976
2977
|
fileSize: number;
|
2977
2978
|
fileUrl: string | null;
|
2978
|
-
status?: string | undefined;
|
2979
2979
|
}[];
|
2980
2980
|
}>, "many">;
|
2981
2981
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -3115,6 +3115,7 @@ export declare const publicApiContract: {
|
|
3115
3115
|
dateValue: Date | null;
|
3116
3116
|
uploads: {
|
3117
3117
|
id: string;
|
3118
|
+
status: string | null;
|
3118
3119
|
createdAt: Date;
|
3119
3120
|
updatedAt: Date;
|
3120
3121
|
deletedAt: Date | null;
|
@@ -3123,7 +3124,6 @@ export declare const publicApiContract: {
|
|
3123
3124
|
bucketName: string;
|
3124
3125
|
fileSize: number;
|
3125
3126
|
fileUrl: string | null;
|
3126
|
-
status?: string | undefined;
|
3127
3127
|
}[];
|
3128
3128
|
}[];
|
3129
3129
|
company: {
|
@@ -3211,6 +3211,7 @@ export declare const publicApiContract: {
|
|
3211
3211
|
dateValue: Date | null;
|
3212
3212
|
uploads: {
|
3213
3213
|
id: string;
|
3214
|
+
status: string | null;
|
3214
3215
|
createdAt: Date;
|
3215
3216
|
updatedAt: Date;
|
3216
3217
|
deletedAt: Date | null;
|
@@ -3219,7 +3220,6 @@ export declare const publicApiContract: {
|
|
3219
3220
|
bucketName: string;
|
3220
3221
|
fileSize: number;
|
3221
3222
|
fileUrl: string | null;
|
3222
|
-
status?: string | undefined;
|
3223
3223
|
}[];
|
3224
3224
|
}[];
|
3225
3225
|
company: {
|
@@ -3310,6 +3310,7 @@ export declare const publicApiContract: {
|
|
3310
3310
|
dateValue: Date | null;
|
3311
3311
|
uploads: {
|
3312
3312
|
id: string;
|
3313
|
+
status: string | null;
|
3313
3314
|
createdAt: Date;
|
3314
3315
|
updatedAt: Date;
|
3315
3316
|
deletedAt: Date | null;
|
@@ -3318,7 +3319,6 @@ export declare const publicApiContract: {
|
|
3318
3319
|
bucketName: string;
|
3319
3320
|
fileSize: number;
|
3320
3321
|
fileUrl: string | null;
|
3321
|
-
status?: string | undefined;
|
3322
3322
|
}[];
|
3323
3323
|
}[];
|
3324
3324
|
company: {
|
@@ -3411,6 +3411,7 @@ export declare const publicApiContract: {
|
|
3411
3411
|
dateValue: Date | null;
|
3412
3412
|
uploads: {
|
3413
3413
|
id: string;
|
3414
|
+
status: string | null;
|
3414
3415
|
createdAt: Date;
|
3415
3416
|
updatedAt: Date;
|
3416
3417
|
deletedAt: Date | null;
|
@@ -3419,7 +3420,6 @@ export declare const publicApiContract: {
|
|
3419
3420
|
bucketName: string;
|
3420
3421
|
fileSize: number;
|
3421
3422
|
fileUrl: string | null;
|
3422
|
-
status?: string | undefined;
|
3423
3423
|
}[];
|
3424
3424
|
}[];
|
3425
3425
|
company: {
|
@@ -3685,9 +3685,10 @@ export declare const publicApiContract: {
|
|
3685
3685
|
fileSize: z.ZodNumber;
|
3686
3686
|
fileKey: z.ZodString;
|
3687
3687
|
fileUrl: z.ZodNullable<z.ZodString>;
|
3688
|
-
status: z.
|
3688
|
+
status: z.ZodNullable<z.ZodString>;
|
3689
3689
|
}, "strip", z.ZodTypeAny, {
|
3690
3690
|
id: string;
|
3691
|
+
status: string | null;
|
3691
3692
|
createdAt: Date;
|
3692
3693
|
updatedAt: Date;
|
3693
3694
|
deletedAt: Date | null;
|
@@ -3696,9 +3697,9 @@ export declare const publicApiContract: {
|
|
3696
3697
|
bucketName: string;
|
3697
3698
|
fileSize: number;
|
3698
3699
|
fileUrl: string | null;
|
3699
|
-
status?: string | undefined;
|
3700
3700
|
}, {
|
3701
3701
|
id: string;
|
3702
|
+
status: string | null;
|
3702
3703
|
createdAt: Date;
|
3703
3704
|
updatedAt: Date;
|
3704
3705
|
deletedAt: Date | null;
|
@@ -3707,7 +3708,6 @@ export declare const publicApiContract: {
|
|
3707
3708
|
bucketName: string;
|
3708
3709
|
fileSize: number;
|
3709
3710
|
fileUrl: string | null;
|
3710
|
-
status?: string | undefined;
|
3711
3711
|
}>, "many">;
|
3712
3712
|
}, "strip", z.ZodTypeAny, {
|
3713
3713
|
id: string;
|
@@ -3734,6 +3734,7 @@ export declare const publicApiContract: {
|
|
3734
3734
|
dateValue: Date | null;
|
3735
3735
|
uploads: {
|
3736
3736
|
id: string;
|
3737
|
+
status: string | null;
|
3737
3738
|
createdAt: Date;
|
3738
3739
|
updatedAt: Date;
|
3739
3740
|
deletedAt: Date | null;
|
@@ -3742,7 +3743,6 @@ export declare const publicApiContract: {
|
|
3742
3743
|
bucketName: string;
|
3743
3744
|
fileSize: number;
|
3744
3745
|
fileUrl: string | null;
|
3745
|
-
status?: string | undefined;
|
3746
3746
|
}[];
|
3747
3747
|
}, {
|
3748
3748
|
id: string;
|
@@ -3769,6 +3769,7 @@ export declare const publicApiContract: {
|
|
3769
3769
|
dateValue: Date | null;
|
3770
3770
|
uploads: {
|
3771
3771
|
id: string;
|
3772
|
+
status: string | null;
|
3772
3773
|
createdAt: Date;
|
3773
3774
|
updatedAt: Date;
|
3774
3775
|
deletedAt: Date | null;
|
@@ -3777,7 +3778,6 @@ export declare const publicApiContract: {
|
|
3777
3778
|
bucketName: string;
|
3778
3779
|
fileSize: number;
|
3779
3780
|
fileUrl: string | null;
|
3780
|
-
status?: string | undefined;
|
3781
3781
|
}[];
|
3782
3782
|
}>;
|
3783
3783
|
}, "strip", z.ZodTypeAny, {
|
@@ -3806,6 +3806,7 @@ export declare const publicApiContract: {
|
|
3806
3806
|
dateValue: Date | null;
|
3807
3807
|
uploads: {
|
3808
3808
|
id: string;
|
3809
|
+
status: string | null;
|
3809
3810
|
createdAt: Date;
|
3810
3811
|
updatedAt: Date;
|
3811
3812
|
deletedAt: Date | null;
|
@@ -3814,7 +3815,6 @@ export declare const publicApiContract: {
|
|
3814
3815
|
bucketName: string;
|
3815
3816
|
fileSize: number;
|
3816
3817
|
fileUrl: string | null;
|
3817
|
-
status?: string | undefined;
|
3818
3818
|
}[];
|
3819
3819
|
};
|
3820
3820
|
requestId: string;
|
@@ -3844,6 +3844,7 @@ export declare const publicApiContract: {
|
|
3844
3844
|
dateValue: Date | null;
|
3845
3845
|
uploads: {
|
3846
3846
|
id: string;
|
3847
|
+
status: string | null;
|
3847
3848
|
createdAt: Date;
|
3848
3849
|
updatedAt: Date;
|
3849
3850
|
deletedAt: Date | null;
|
@@ -3852,7 +3853,6 @@ export declare const publicApiContract: {
|
|
3852
3853
|
bucketName: string;
|
3853
3854
|
fileSize: number;
|
3854
3855
|
fileUrl: string | null;
|
3855
|
-
status?: string | undefined;
|
3856
3856
|
}[];
|
3857
3857
|
};
|
3858
3858
|
requestId: string;
|
@@ -4223,9 +4223,10 @@ export declare const publicApiContract: {
|
|
4223
4223
|
fileSize: z.ZodNumber;
|
4224
4224
|
fileKey: z.ZodString;
|
4225
4225
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4226
|
-
status: z.
|
4226
|
+
status: z.ZodNullable<z.ZodString>;
|
4227
4227
|
}, "strip", z.ZodTypeAny, {
|
4228
4228
|
id: string;
|
4229
|
+
status: string | null;
|
4229
4230
|
createdAt: Date;
|
4230
4231
|
updatedAt: Date;
|
4231
4232
|
deletedAt: Date | null;
|
@@ -4234,9 +4235,9 @@ export declare const publicApiContract: {
|
|
4234
4235
|
bucketName: string;
|
4235
4236
|
fileSize: number;
|
4236
4237
|
fileUrl: string | null;
|
4237
|
-
status?: string | undefined;
|
4238
4238
|
}, {
|
4239
4239
|
id: string;
|
4240
|
+
status: string | null;
|
4240
4241
|
createdAt: Date;
|
4241
4242
|
updatedAt: Date;
|
4242
4243
|
deletedAt: Date | null;
|
@@ -4245,7 +4246,6 @@ export declare const publicApiContract: {
|
|
4245
4246
|
bucketName: string;
|
4246
4247
|
fileSize: number;
|
4247
4248
|
fileUrl: string | null;
|
4248
|
-
status?: string | undefined;
|
4249
4249
|
}>, "many">;
|
4250
4250
|
}, "strip", z.ZodTypeAny, {
|
4251
4251
|
id: string;
|
@@ -4272,6 +4272,7 @@ export declare const publicApiContract: {
|
|
4272
4272
|
dateValue: Date | null;
|
4273
4273
|
uploads: {
|
4274
4274
|
id: string;
|
4275
|
+
status: string | null;
|
4275
4276
|
createdAt: Date;
|
4276
4277
|
updatedAt: Date;
|
4277
4278
|
deletedAt: Date | null;
|
@@ -4280,7 +4281,6 @@ export declare const publicApiContract: {
|
|
4280
4281
|
bucketName: string;
|
4281
4282
|
fileSize: number;
|
4282
4283
|
fileUrl: string | null;
|
4283
|
-
status?: string | undefined;
|
4284
4284
|
}[];
|
4285
4285
|
}, {
|
4286
4286
|
id: string;
|
@@ -4307,6 +4307,7 @@ export declare const publicApiContract: {
|
|
4307
4307
|
dateValue: Date | null;
|
4308
4308
|
uploads: {
|
4309
4309
|
id: string;
|
4310
|
+
status: string | null;
|
4310
4311
|
createdAt: Date;
|
4311
4312
|
updatedAt: Date;
|
4312
4313
|
deletedAt: Date | null;
|
@@ -4315,7 +4316,6 @@ export declare const publicApiContract: {
|
|
4315
4316
|
bucketName: string;
|
4316
4317
|
fileSize: number;
|
4317
4318
|
fileUrl: string | null;
|
4318
|
-
status?: string | undefined;
|
4319
4319
|
}[];
|
4320
4320
|
}>, "many">;
|
4321
4321
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -4455,6 +4455,7 @@ export declare const publicApiContract: {
|
|
4455
4455
|
dateValue: Date | null;
|
4456
4456
|
uploads: {
|
4457
4457
|
id: string;
|
4458
|
+
status: string | null;
|
4458
4459
|
createdAt: Date;
|
4459
4460
|
updatedAt: Date;
|
4460
4461
|
deletedAt: Date | null;
|
@@ -4463,7 +4464,6 @@ export declare const publicApiContract: {
|
|
4463
4464
|
bucketName: string;
|
4464
4465
|
fileSize: number;
|
4465
4466
|
fileUrl: string | null;
|
4466
|
-
status?: string | undefined;
|
4467
4467
|
}[];
|
4468
4468
|
}[];
|
4469
4469
|
company: {
|
@@ -4551,6 +4551,7 @@ export declare const publicApiContract: {
|
|
4551
4551
|
dateValue: Date | null;
|
4552
4552
|
uploads: {
|
4553
4553
|
id: string;
|
4554
|
+
status: string | null;
|
4554
4555
|
createdAt: Date;
|
4555
4556
|
updatedAt: Date;
|
4556
4557
|
deletedAt: Date | null;
|
@@ -4559,7 +4560,6 @@ export declare const publicApiContract: {
|
|
4559
4560
|
bucketName: string;
|
4560
4561
|
fileSize: number;
|
4561
4562
|
fileUrl: string | null;
|
4562
|
-
status?: string | undefined;
|
4563
4563
|
}[];
|
4564
4564
|
}[];
|
4565
4565
|
company: {
|
@@ -4650,6 +4650,7 @@ export declare const publicApiContract: {
|
|
4650
4650
|
dateValue: Date | null;
|
4651
4651
|
uploads: {
|
4652
4652
|
id: string;
|
4653
|
+
status: string | null;
|
4653
4654
|
createdAt: Date;
|
4654
4655
|
updatedAt: Date;
|
4655
4656
|
deletedAt: Date | null;
|
@@ -4658,7 +4659,6 @@ export declare const publicApiContract: {
|
|
4658
4659
|
bucketName: string;
|
4659
4660
|
fileSize: number;
|
4660
4661
|
fileUrl: string | null;
|
4661
|
-
status?: string | undefined;
|
4662
4662
|
}[];
|
4663
4663
|
}[];
|
4664
4664
|
company: {
|
@@ -4751,6 +4751,7 @@ export declare const publicApiContract: {
|
|
4751
4751
|
dateValue: Date | null;
|
4752
4752
|
uploads: {
|
4753
4753
|
id: string;
|
4754
|
+
status: string | null;
|
4754
4755
|
createdAt: Date;
|
4755
4756
|
updatedAt: Date;
|
4756
4757
|
deletedAt: Date | null;
|
@@ -4759,7 +4760,6 @@ export declare const publicApiContract: {
|
|
4759
4760
|
bucketName: string;
|
4760
4761
|
fileSize: number;
|
4761
4762
|
fileUrl: string | null;
|
4762
|
-
status?: string | undefined;
|
4763
4763
|
}[];
|
4764
4764
|
}[];
|
4765
4765
|
company: {
|
@@ -5186,9 +5186,10 @@ export declare const publicApiContract: {
|
|
5186
5186
|
fileSize: z.ZodNumber;
|
5187
5187
|
fileKey: z.ZodString;
|
5188
5188
|
fileUrl: z.ZodNullable<z.ZodString>;
|
5189
|
-
status: z.
|
5189
|
+
status: z.ZodNullable<z.ZodString>;
|
5190
5190
|
}, "strip", z.ZodTypeAny, {
|
5191
5191
|
id: string;
|
5192
|
+
status: string | null;
|
5192
5193
|
createdAt: Date;
|
5193
5194
|
updatedAt: Date;
|
5194
5195
|
deletedAt: Date | null;
|
@@ -5197,9 +5198,9 @@ export declare const publicApiContract: {
|
|
5197
5198
|
bucketName: string;
|
5198
5199
|
fileSize: number;
|
5199
5200
|
fileUrl: string | null;
|
5200
|
-
status?: string | undefined;
|
5201
5201
|
}, {
|
5202
5202
|
id: string;
|
5203
|
+
status: string | null;
|
5203
5204
|
createdAt: Date;
|
5204
5205
|
updatedAt: Date;
|
5205
5206
|
deletedAt: Date | null;
|
@@ -5208,7 +5209,6 @@ export declare const publicApiContract: {
|
|
5208
5209
|
bucketName: string;
|
5209
5210
|
fileSize: number;
|
5210
5211
|
fileUrl: string | null;
|
5211
|
-
status?: string | undefined;
|
5212
5212
|
}>, "many">;
|
5213
5213
|
}, "strip", z.ZodTypeAny, {
|
5214
5214
|
id: string;
|
@@ -5235,6 +5235,7 @@ export declare const publicApiContract: {
|
|
5235
5235
|
dateValue: Date | null;
|
5236
5236
|
uploads: {
|
5237
5237
|
id: string;
|
5238
|
+
status: string | null;
|
5238
5239
|
createdAt: Date;
|
5239
5240
|
updatedAt: Date;
|
5240
5241
|
deletedAt: Date | null;
|
@@ -5243,7 +5244,6 @@ export declare const publicApiContract: {
|
|
5243
5244
|
bucketName: string;
|
5244
5245
|
fileSize: number;
|
5245
5246
|
fileUrl: string | null;
|
5246
|
-
status?: string | undefined;
|
5247
5247
|
}[];
|
5248
5248
|
}, {
|
5249
5249
|
id: string;
|
@@ -5270,6 +5270,7 @@ export declare const publicApiContract: {
|
|
5270
5270
|
dateValue: Date | null;
|
5271
5271
|
uploads: {
|
5272
5272
|
id: string;
|
5273
|
+
status: string | null;
|
5273
5274
|
createdAt: Date;
|
5274
5275
|
updatedAt: Date;
|
5275
5276
|
deletedAt: Date | null;
|
@@ -5278,7 +5279,6 @@ export declare const publicApiContract: {
|
|
5278
5279
|
bucketName: string;
|
5279
5280
|
fileSize: number;
|
5280
5281
|
fileUrl: string | null;
|
5281
|
-
status?: string | undefined;
|
5282
5282
|
}[];
|
5283
5283
|
}>, "many">;
|
5284
5284
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -5418,6 +5418,7 @@ export declare const publicApiContract: {
|
|
5418
5418
|
dateValue: Date | null;
|
5419
5419
|
uploads: {
|
5420
5420
|
id: string;
|
5421
|
+
status: string | null;
|
5421
5422
|
createdAt: Date;
|
5422
5423
|
updatedAt: Date;
|
5423
5424
|
deletedAt: Date | null;
|
@@ -5426,7 +5427,6 @@ export declare const publicApiContract: {
|
|
5426
5427
|
bucketName: string;
|
5427
5428
|
fileSize: number;
|
5428
5429
|
fileUrl: string | null;
|
5429
|
-
status?: string | undefined;
|
5430
5430
|
}[];
|
5431
5431
|
}[];
|
5432
5432
|
company: {
|
@@ -5514,6 +5514,7 @@ export declare const publicApiContract: {
|
|
5514
5514
|
dateValue: Date | null;
|
5515
5515
|
uploads: {
|
5516
5516
|
id: string;
|
5517
|
+
status: string | null;
|
5517
5518
|
createdAt: Date;
|
5518
5519
|
updatedAt: Date;
|
5519
5520
|
deletedAt: Date | null;
|
@@ -5522,7 +5523,6 @@ export declare const publicApiContract: {
|
|
5522
5523
|
bucketName: string;
|
5523
5524
|
fileSize: number;
|
5524
5525
|
fileUrl: string | null;
|
5525
|
-
status?: string | undefined;
|
5526
5526
|
}[];
|
5527
5527
|
}[];
|
5528
5528
|
company: {
|
@@ -5613,6 +5613,7 @@ export declare const publicApiContract: {
|
|
5613
5613
|
dateValue: Date | null;
|
5614
5614
|
uploads: {
|
5615
5615
|
id: string;
|
5616
|
+
status: string | null;
|
5616
5617
|
createdAt: Date;
|
5617
5618
|
updatedAt: Date;
|
5618
5619
|
deletedAt: Date | null;
|
@@ -5621,7 +5622,6 @@ export declare const publicApiContract: {
|
|
5621
5622
|
bucketName: string;
|
5622
5623
|
fileSize: number;
|
5623
5624
|
fileUrl: string | null;
|
5624
|
-
status?: string | undefined;
|
5625
5625
|
}[];
|
5626
5626
|
}[];
|
5627
5627
|
company: {
|
@@ -5714,6 +5714,7 @@ export declare const publicApiContract: {
|
|
5714
5714
|
dateValue: Date | null;
|
5715
5715
|
uploads: {
|
5716
5716
|
id: string;
|
5717
|
+
status: string | null;
|
5717
5718
|
createdAt: Date;
|
5718
5719
|
updatedAt: Date;
|
5719
5720
|
deletedAt: Date | null;
|
@@ -5722,7 +5723,6 @@ export declare const publicApiContract: {
|
|
5722
5723
|
bucketName: string;
|
5723
5724
|
fileSize: number;
|
5724
5725
|
fileUrl: string | null;
|
5725
|
-
status?: string | undefined;
|
5726
5726
|
}[];
|
5727
5727
|
}[];
|
5728
5728
|
company: {
|