@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
@@ -352,9 +352,10 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
352
352
|
fileSize: z.ZodNumber;
|
353
353
|
fileKey: z.ZodString;
|
354
354
|
fileUrl: z.ZodNullable<z.ZodString>;
|
355
|
-
status: z.
|
355
|
+
status: z.ZodNullable<z.ZodString>;
|
356
356
|
}, "strip", z.ZodTypeAny, {
|
357
357
|
id: string;
|
358
|
+
status: string | null;
|
358
359
|
createdAt: Date;
|
359
360
|
updatedAt: Date;
|
360
361
|
deletedAt: Date | null;
|
@@ -363,9 +364,9 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
363
364
|
bucketName: string;
|
364
365
|
fileSize: number;
|
365
366
|
fileUrl: string | null;
|
366
|
-
status?: string | undefined;
|
367
367
|
}, {
|
368
368
|
id: string;
|
369
|
+
status: string | null;
|
369
370
|
createdAt: Date;
|
370
371
|
updatedAt: Date;
|
371
372
|
deletedAt: Date | null;
|
@@ -374,7 +375,6 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
374
375
|
bucketName: string;
|
375
376
|
fileSize: number;
|
376
377
|
fileUrl: string | null;
|
377
|
-
status?: string | undefined;
|
378
378
|
}>, "many">;
|
379
379
|
}, "strip", z.ZodTypeAny, {
|
380
380
|
id: string;
|
@@ -401,6 +401,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
401
401
|
dateValue: Date | null;
|
402
402
|
uploads: {
|
403
403
|
id: string;
|
404
|
+
status: string | null;
|
404
405
|
createdAt: Date;
|
405
406
|
updatedAt: Date;
|
406
407
|
deletedAt: Date | null;
|
@@ -409,7 +410,6 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
409
410
|
bucketName: string;
|
410
411
|
fileSize: number;
|
411
412
|
fileUrl: string | null;
|
412
|
-
status?: string | undefined;
|
413
413
|
}[];
|
414
414
|
}, {
|
415
415
|
id: string;
|
@@ -436,6 +436,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
436
436
|
dateValue: Date | null;
|
437
437
|
uploads: {
|
438
438
|
id: string;
|
439
|
+
status: string | null;
|
439
440
|
createdAt: Date;
|
440
441
|
updatedAt: Date;
|
441
442
|
deletedAt: Date | null;
|
@@ -444,7 +445,6 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
444
445
|
bucketName: string;
|
445
446
|
fileSize: number;
|
446
447
|
fileUrl: string | null;
|
447
|
-
status?: string | undefined;
|
448
448
|
}[];
|
449
449
|
}>, "many">;
|
450
450
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -584,6 +584,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
584
584
|
dateValue: Date | null;
|
585
585
|
uploads: {
|
586
586
|
id: string;
|
587
|
+
status: string | null;
|
587
588
|
createdAt: Date;
|
588
589
|
updatedAt: Date;
|
589
590
|
deletedAt: Date | null;
|
@@ -592,7 +593,6 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
592
593
|
bucketName: string;
|
593
594
|
fileSize: number;
|
594
595
|
fileUrl: string | null;
|
595
|
-
status?: string | undefined;
|
596
596
|
}[];
|
597
597
|
}[];
|
598
598
|
company: {
|
@@ -680,6 +680,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
680
680
|
dateValue: Date | null;
|
681
681
|
uploads: {
|
682
682
|
id: string;
|
683
|
+
status: string | null;
|
683
684
|
createdAt: Date;
|
684
685
|
updatedAt: Date;
|
685
686
|
deletedAt: Date | null;
|
@@ -688,7 +689,6 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
688
689
|
bucketName: string;
|
689
690
|
fileSize: number;
|
690
691
|
fileUrl: string | null;
|
691
|
-
status?: string | undefined;
|
692
692
|
}[];
|
693
693
|
}[];
|
694
694
|
company: {
|
@@ -789,6 +789,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
789
789
|
dateValue: Date | null;
|
790
790
|
uploads: {
|
791
791
|
id: string;
|
792
|
+
status: string | null;
|
792
793
|
createdAt: Date;
|
793
794
|
updatedAt: Date;
|
794
795
|
deletedAt: Date | null;
|
@@ -797,7 +798,6 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
797
798
|
bucketName: string;
|
798
799
|
fileSize: number;
|
799
800
|
fileUrl: string | null;
|
800
|
-
status?: string | undefined;
|
801
801
|
}[];
|
802
802
|
}[];
|
803
803
|
company: {
|
@@ -900,6 +900,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
900
900
|
dateValue: Date | null;
|
901
901
|
uploads: {
|
902
902
|
id: string;
|
903
|
+
status: string | null;
|
903
904
|
createdAt: Date;
|
904
905
|
updatedAt: Date;
|
905
906
|
deletedAt: Date | null;
|
@@ -908,7 +909,6 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
908
909
|
bucketName: string;
|
909
910
|
fileSize: number;
|
910
911
|
fileUrl: string | null;
|
911
|
-
status?: string | undefined;
|
912
912
|
}[];
|
913
913
|
}[];
|
914
914
|
company: {
|
@@ -1304,9 +1304,10 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1304
1304
|
fileSize: z.ZodNumber;
|
1305
1305
|
fileKey: z.ZodString;
|
1306
1306
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1307
|
-
status: z.
|
1307
|
+
status: z.ZodNullable<z.ZodString>;
|
1308
1308
|
}, "strip", z.ZodTypeAny, {
|
1309
1309
|
id: string;
|
1310
|
+
status: string | null;
|
1310
1311
|
createdAt: Date;
|
1311
1312
|
updatedAt: Date;
|
1312
1313
|
deletedAt: Date | null;
|
@@ -1315,9 +1316,9 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1315
1316
|
bucketName: string;
|
1316
1317
|
fileSize: number;
|
1317
1318
|
fileUrl: string | null;
|
1318
|
-
status?: string | undefined;
|
1319
1319
|
}, {
|
1320
1320
|
id: string;
|
1321
|
+
status: string | null;
|
1321
1322
|
createdAt: Date;
|
1322
1323
|
updatedAt: Date;
|
1323
1324
|
deletedAt: Date | null;
|
@@ -1326,7 +1327,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1326
1327
|
bucketName: string;
|
1327
1328
|
fileSize: number;
|
1328
1329
|
fileUrl: string | null;
|
1329
|
-
status?: string | undefined;
|
1330
1330
|
}>, "many">;
|
1331
1331
|
}, "strip", z.ZodTypeAny, {
|
1332
1332
|
id: string;
|
@@ -1353,6 +1353,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1353
1353
|
dateValue: Date | null;
|
1354
1354
|
uploads: {
|
1355
1355
|
id: string;
|
1356
|
+
status: string | null;
|
1356
1357
|
createdAt: Date;
|
1357
1358
|
updatedAt: Date;
|
1358
1359
|
deletedAt: Date | null;
|
@@ -1361,7 +1362,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1361
1362
|
bucketName: string;
|
1362
1363
|
fileSize: number;
|
1363
1364
|
fileUrl: string | null;
|
1364
|
-
status?: string | undefined;
|
1365
1365
|
}[];
|
1366
1366
|
}, {
|
1367
1367
|
id: string;
|
@@ -1388,6 +1388,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1388
1388
|
dateValue: Date | null;
|
1389
1389
|
uploads: {
|
1390
1390
|
id: string;
|
1391
|
+
status: string | null;
|
1391
1392
|
createdAt: Date;
|
1392
1393
|
updatedAt: Date;
|
1393
1394
|
deletedAt: Date | null;
|
@@ -1396,7 +1397,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1396
1397
|
bucketName: string;
|
1397
1398
|
fileSize: number;
|
1398
1399
|
fileUrl: string | null;
|
1399
|
-
status?: string | undefined;
|
1400
1400
|
}[];
|
1401
1401
|
}>, "many">;
|
1402
1402
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1536,6 +1536,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1536
1536
|
dateValue: Date | null;
|
1537
1537
|
uploads: {
|
1538
1538
|
id: string;
|
1539
|
+
status: string | null;
|
1539
1540
|
createdAt: Date;
|
1540
1541
|
updatedAt: Date;
|
1541
1542
|
deletedAt: Date | null;
|
@@ -1544,7 +1545,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1544
1545
|
bucketName: string;
|
1545
1546
|
fileSize: number;
|
1546
1547
|
fileUrl: string | null;
|
1547
|
-
status?: string | undefined;
|
1548
1548
|
}[];
|
1549
1549
|
}[];
|
1550
1550
|
company: {
|
@@ -1632,6 +1632,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1632
1632
|
dateValue: Date | null;
|
1633
1633
|
uploads: {
|
1634
1634
|
id: string;
|
1635
|
+
status: string | null;
|
1635
1636
|
createdAt: Date;
|
1636
1637
|
updatedAt: Date;
|
1637
1638
|
deletedAt: Date | null;
|
@@ -1640,7 +1641,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1640
1641
|
bucketName: string;
|
1641
1642
|
fileSize: number;
|
1642
1643
|
fileUrl: string | null;
|
1643
|
-
status?: string | undefined;
|
1644
1644
|
}[];
|
1645
1645
|
}[];
|
1646
1646
|
company: {
|
@@ -1741,6 +1741,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1741
1741
|
dateValue: Date | null;
|
1742
1742
|
uploads: {
|
1743
1743
|
id: string;
|
1744
|
+
status: string | null;
|
1744
1745
|
createdAt: Date;
|
1745
1746
|
updatedAt: Date;
|
1746
1747
|
deletedAt: Date | null;
|
@@ -1749,7 +1750,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1749
1750
|
bucketName: string;
|
1750
1751
|
fileSize: number;
|
1751
1752
|
fileUrl: string | null;
|
1752
|
-
status?: string | undefined;
|
1753
1753
|
}[];
|
1754
1754
|
}[];
|
1755
1755
|
company: {
|
@@ -1852,6 +1852,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1852
1852
|
dateValue: Date | null;
|
1853
1853
|
uploads: {
|
1854
1854
|
id: string;
|
1855
|
+
status: string | null;
|
1855
1856
|
createdAt: Date;
|
1856
1857
|
updatedAt: Date;
|
1857
1858
|
deletedAt: Date | null;
|
@@ -1860,7 +1861,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1860
1861
|
bucketName: string;
|
1861
1862
|
fileSize: number;
|
1862
1863
|
fileUrl: string | null;
|
1863
|
-
status?: string | undefined;
|
1864
1864
|
}[];
|
1865
1865
|
}[];
|
1866
1866
|
company: {
|
@@ -3306,6 +3306,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3306
3306
|
dateValue: Date | null;
|
3307
3307
|
uploads: {
|
3308
3308
|
id: string;
|
3309
|
+
status: string | null;
|
3309
3310
|
createdAt: Date;
|
3310
3311
|
updatedAt: Date;
|
3311
3312
|
deletedAt: Date | null;
|
@@ -3314,7 +3315,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3314
3315
|
bucketName: string;
|
3315
3316
|
fileSize: number;
|
3316
3317
|
fileUrl: string | null;
|
3317
|
-
status?: string | undefined;
|
3318
3318
|
}[];
|
3319
3319
|
}[];
|
3320
3320
|
company: {
|
@@ -3664,6 +3664,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3664
3664
|
dateValue: Date | null;
|
3665
3665
|
uploads: {
|
3666
3666
|
id: string;
|
3667
|
+
status: string | null;
|
3667
3668
|
createdAt: Date;
|
3668
3669
|
updatedAt: Date;
|
3669
3670
|
deletedAt: Date | null;
|
@@ -3672,7 +3673,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3672
3673
|
bucketName: string;
|
3673
3674
|
fileSize: number;
|
3674
3675
|
fileUrl: string | null;
|
3675
|
-
status?: string | undefined;
|
3676
3676
|
}[];
|
3677
3677
|
}[];
|
3678
3678
|
company: {
|
@@ -4211,9 +4211,10 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4211
4211
|
fileSize: z.ZodNumber;
|
4212
4212
|
fileKey: z.ZodString;
|
4213
4213
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4214
|
-
status: z.
|
4214
|
+
status: z.ZodNullable<z.ZodString>;
|
4215
4215
|
}, "strip", z.ZodTypeAny, {
|
4216
4216
|
id: string;
|
4217
|
+
status: string | null;
|
4217
4218
|
createdAt: Date;
|
4218
4219
|
updatedAt: Date;
|
4219
4220
|
deletedAt: Date | null;
|
@@ -4222,9 +4223,9 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4222
4223
|
bucketName: string;
|
4223
4224
|
fileSize: number;
|
4224
4225
|
fileUrl: string | null;
|
4225
|
-
status?: string | undefined;
|
4226
4226
|
}, {
|
4227
4227
|
id: string;
|
4228
|
+
status: string | null;
|
4228
4229
|
createdAt: Date;
|
4229
4230
|
updatedAt: Date;
|
4230
4231
|
deletedAt: Date | null;
|
@@ -4233,7 +4234,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4233
4234
|
bucketName: string;
|
4234
4235
|
fileSize: number;
|
4235
4236
|
fileUrl: string | null;
|
4236
|
-
status?: string | undefined;
|
4237
4237
|
}>, "many">;
|
4238
4238
|
}, "strip", z.ZodTypeAny, {
|
4239
4239
|
id: string;
|
@@ -4260,6 +4260,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4260
4260
|
dateValue: Date | null;
|
4261
4261
|
uploads: {
|
4262
4262
|
id: string;
|
4263
|
+
status: string | null;
|
4263
4264
|
createdAt: Date;
|
4264
4265
|
updatedAt: Date;
|
4265
4266
|
deletedAt: Date | null;
|
@@ -4268,7 +4269,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4268
4269
|
bucketName: string;
|
4269
4270
|
fileSize: number;
|
4270
4271
|
fileUrl: string | null;
|
4271
|
-
status?: string | undefined;
|
4272
4272
|
}[];
|
4273
4273
|
}, {
|
4274
4274
|
id: string;
|
@@ -4295,6 +4295,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4295
4295
|
dateValue: Date | null;
|
4296
4296
|
uploads: {
|
4297
4297
|
id: string;
|
4298
|
+
status: string | null;
|
4298
4299
|
createdAt: Date;
|
4299
4300
|
updatedAt: Date;
|
4300
4301
|
deletedAt: Date | null;
|
@@ -4303,7 +4304,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4303
4304
|
bucketName: string;
|
4304
4305
|
fileSize: number;
|
4305
4306
|
fileUrl: string | null;
|
4306
|
-
status?: string | undefined;
|
4307
4307
|
}[];
|
4308
4308
|
}>, "many">;
|
4309
4309
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -4443,6 +4443,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4443
4443
|
dateValue: Date | null;
|
4444
4444
|
uploads: {
|
4445
4445
|
id: string;
|
4446
|
+
status: string | null;
|
4446
4447
|
createdAt: Date;
|
4447
4448
|
updatedAt: Date;
|
4448
4449
|
deletedAt: Date | null;
|
@@ -4451,7 +4452,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4451
4452
|
bucketName: string;
|
4452
4453
|
fileSize: number;
|
4453
4454
|
fileUrl: string | null;
|
4454
|
-
status?: string | undefined;
|
4455
4455
|
}[];
|
4456
4456
|
}[];
|
4457
4457
|
company: {
|
@@ -4539,6 +4539,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4539
4539
|
dateValue: Date | null;
|
4540
4540
|
uploads: {
|
4541
4541
|
id: string;
|
4542
|
+
status: string | null;
|
4542
4543
|
createdAt: Date;
|
4543
4544
|
updatedAt: Date;
|
4544
4545
|
deletedAt: Date | null;
|
@@ -4547,7 +4548,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4547
4548
|
bucketName: string;
|
4548
4549
|
fileSize: number;
|
4549
4550
|
fileUrl: string | null;
|
4550
|
-
status?: string | undefined;
|
4551
4551
|
}[];
|
4552
4552
|
}[];
|
4553
4553
|
company: {
|
@@ -4648,6 +4648,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4648
4648
|
dateValue: Date | null;
|
4649
4649
|
uploads: {
|
4650
4650
|
id: string;
|
4651
|
+
status: string | null;
|
4651
4652
|
createdAt: Date;
|
4652
4653
|
updatedAt: Date;
|
4653
4654
|
deletedAt: Date | null;
|
@@ -4656,7 +4657,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4656
4657
|
bucketName: string;
|
4657
4658
|
fileSize: number;
|
4658
4659
|
fileUrl: string | null;
|
4659
|
-
status?: string | undefined;
|
4660
4660
|
}[];
|
4661
4661
|
}[];
|
4662
4662
|
company: {
|
@@ -4759,6 +4759,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4759
4759
|
dateValue: Date | null;
|
4760
4760
|
uploads: {
|
4761
4761
|
id: string;
|
4762
|
+
status: string | null;
|
4762
4763
|
createdAt: Date;
|
4763
4764
|
updatedAt: Date;
|
4764
4765
|
deletedAt: Date | null;
|
@@ -4767,7 +4768,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
4767
4768
|
bucketName: string;
|
4768
4769
|
fileSize: number;
|
4769
4770
|
fileUrl: string | null;
|
4770
|
-
status?: string | undefined;
|
4771
4771
|
}[];
|
4772
4772
|
}[];
|
4773
4773
|
company: {
|
@@ -6213,6 +6213,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6213
6213
|
dateValue: Date | null;
|
6214
6214
|
uploads: {
|
6215
6215
|
id: string;
|
6216
|
+
status: string | null;
|
6216
6217
|
createdAt: Date;
|
6217
6218
|
updatedAt: Date;
|
6218
6219
|
deletedAt: Date | null;
|
@@ -6221,7 +6222,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6221
6222
|
bucketName: string;
|
6222
6223
|
fileSize: number;
|
6223
6224
|
fileUrl: string | null;
|
6224
|
-
status?: string | undefined;
|
6225
6225
|
}[];
|
6226
6226
|
}[];
|
6227
6227
|
company: {
|
@@ -6571,6 +6571,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6571
6571
|
dateValue: Date | null;
|
6572
6572
|
uploads: {
|
6573
6573
|
id: string;
|
6574
|
+
status: string | null;
|
6574
6575
|
createdAt: Date;
|
6575
6576
|
updatedAt: Date;
|
6576
6577
|
deletedAt: Date | null;
|
@@ -6579,7 +6580,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6579
6580
|
bucketName: string;
|
6580
6581
|
fileSize: number;
|
6581
6582
|
fileUrl: string | null;
|
6582
|
-
status?: string | undefined;
|
6583
6583
|
}[];
|
6584
6584
|
}[];
|
6585
6585
|
company: {
|
@@ -6773,9 +6773,10 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6773
6773
|
fileSize: z.ZodNumber;
|
6774
6774
|
fileKey: z.ZodString;
|
6775
6775
|
fileUrl: z.ZodNullable<z.ZodString>;
|
6776
|
-
status: z.
|
6776
|
+
status: z.ZodNullable<z.ZodString>;
|
6777
6777
|
}, "strip", z.ZodTypeAny, {
|
6778
6778
|
id: string;
|
6779
|
+
status: string | null;
|
6779
6780
|
createdAt: Date;
|
6780
6781
|
updatedAt: Date;
|
6781
6782
|
deletedAt: Date | null;
|
@@ -6784,9 +6785,9 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6784
6785
|
bucketName: string;
|
6785
6786
|
fileSize: number;
|
6786
6787
|
fileUrl: string | null;
|
6787
|
-
status?: string | undefined;
|
6788
6788
|
}, {
|
6789
6789
|
id: string;
|
6790
|
+
status: string | null;
|
6790
6791
|
createdAt: Date;
|
6791
6792
|
updatedAt: Date;
|
6792
6793
|
deletedAt: Date | null;
|
@@ -6795,7 +6796,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6795
6796
|
bucketName: string;
|
6796
6797
|
fileSize: number;
|
6797
6798
|
fileUrl: string | null;
|
6798
|
-
status?: string | undefined;
|
6799
6799
|
}>;
|
6800
6800
|
repliedMessage: z.ZodLazy<z.ZodObject<{
|
6801
6801
|
id: z.ZodString;
|
@@ -6825,9 +6825,10 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6825
6825
|
fileSize: z.ZodNumber;
|
6826
6826
|
fileKey: z.ZodString;
|
6827
6827
|
fileUrl: z.ZodNullable<z.ZodString>;
|
6828
|
-
status: z.
|
6828
|
+
status: z.ZodNullable<z.ZodString>;
|
6829
6829
|
}, "strip", z.ZodTypeAny, {
|
6830
6830
|
id: string;
|
6831
|
+
status: string | null;
|
6831
6832
|
createdAt: Date;
|
6832
6833
|
updatedAt: Date;
|
6833
6834
|
deletedAt: Date | null;
|
@@ -6836,9 +6837,9 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6836
6837
|
bucketName: string;
|
6837
6838
|
fileSize: number;
|
6838
6839
|
fileUrl: string | null;
|
6839
|
-
status?: string | undefined;
|
6840
6840
|
}, {
|
6841
6841
|
id: string;
|
6842
|
+
status: string | null;
|
6842
6843
|
createdAt: Date;
|
6843
6844
|
updatedAt: Date;
|
6844
6845
|
deletedAt: Date | null;
|
@@ -6847,7 +6848,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6847
6848
|
bucketName: string;
|
6848
6849
|
fileSize: number;
|
6849
6850
|
fileUrl: string | null;
|
6850
|
-
status?: string | undefined;
|
6851
6851
|
}>;
|
6852
6852
|
actor: z.ZodObject<{
|
6853
6853
|
id: z.ZodString;
|
@@ -7526,6 +7526,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7526
7526
|
platformId: string;
|
7527
7527
|
upload: {
|
7528
7528
|
id: string;
|
7529
|
+
status: string | null;
|
7529
7530
|
createdAt: Date;
|
7530
7531
|
updatedAt: Date;
|
7531
7532
|
deletedAt: Date | null;
|
@@ -7534,7 +7535,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7534
7535
|
bucketName: string;
|
7535
7536
|
fileSize: number;
|
7536
7537
|
fileUrl: string | null;
|
7537
|
-
status?: string | undefined;
|
7538
7538
|
};
|
7539
7539
|
assignee: {
|
7540
7540
|
id: string;
|
@@ -7688,6 +7688,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7688
7688
|
platformId: string;
|
7689
7689
|
upload: {
|
7690
7690
|
id: string;
|
7691
|
+
status: string | null;
|
7691
7692
|
createdAt: Date;
|
7692
7693
|
updatedAt: Date;
|
7693
7694
|
deletedAt: Date | null;
|
@@ -7696,7 +7697,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7696
7697
|
bucketName: string;
|
7697
7698
|
fileSize: number;
|
7698
7699
|
fileUrl: string | null;
|
7699
|
-
status?: string | undefined;
|
7700
7700
|
};
|
7701
7701
|
assignee: {
|
7702
7702
|
id: string;
|
@@ -8488,6 +8488,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
8488
8488
|
platformId: string;
|
8489
8489
|
upload: {
|
8490
8490
|
id: string;
|
8491
|
+
status: string | null;
|
8491
8492
|
createdAt: Date;
|
8492
8493
|
updatedAt: Date;
|
8493
8494
|
deletedAt: Date | null;
|
@@ -8496,7 +8497,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
8496
8497
|
bucketName: string;
|
8497
8498
|
fileSize: number;
|
8498
8499
|
fileUrl: string | null;
|
8499
|
-
status?: string | undefined;
|
8500
8500
|
};
|
8501
8501
|
assignee: {
|
8502
8502
|
id: string;
|
@@ -8709,6 +8709,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
8709
8709
|
dateValue: Date | null;
|
8710
8710
|
uploads: {
|
8711
8711
|
id: string;
|
8712
|
+
status: string | null;
|
8712
8713
|
createdAt: Date;
|
8713
8714
|
updatedAt: Date;
|
8714
8715
|
deletedAt: Date | null;
|
@@ -8717,7 +8718,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
8717
8718
|
bucketName: string;
|
8718
8719
|
fileSize: number;
|
8719
8720
|
fileUrl: string | null;
|
8720
|
-
status?: string | undefined;
|
8721
8721
|
}[];
|
8722
8722
|
}[];
|
8723
8723
|
company: {
|
@@ -8972,6 +8972,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
8972
8972
|
platformId: string;
|
8973
8973
|
upload: {
|
8974
8974
|
id: string;
|
8975
|
+
status: string | null;
|
8975
8976
|
createdAt: Date;
|
8976
8977
|
updatedAt: Date;
|
8977
8978
|
deletedAt: Date | null;
|
@@ -8980,7 +8981,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
8980
8981
|
bucketName: string;
|
8981
8982
|
fileSize: number;
|
8982
8983
|
fileUrl: string | null;
|
8983
|
-
status?: string | undefined;
|
8984
8984
|
};
|
8985
8985
|
assignee: {
|
8986
8986
|
id: string;
|
@@ -9181,6 +9181,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9181
9181
|
platformId: string;
|
9182
9182
|
upload: {
|
9183
9183
|
id: string;
|
9184
|
+
status: string | null;
|
9184
9185
|
createdAt: Date;
|
9185
9186
|
updatedAt: Date;
|
9186
9187
|
deletedAt: Date | null;
|
@@ -9189,7 +9190,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9189
9190
|
bucketName: string;
|
9190
9191
|
fileSize: number;
|
9191
9192
|
fileUrl: string | null;
|
9192
|
-
status?: string | undefined;
|
9193
9193
|
};
|
9194
9194
|
assignee: {
|
9195
9195
|
id: string;
|
@@ -9402,6 +9402,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9402
9402
|
dateValue: Date | null;
|
9403
9403
|
uploads: {
|
9404
9404
|
id: string;
|
9405
|
+
status: string | null;
|
9405
9406
|
createdAt: Date;
|
9406
9407
|
updatedAt: Date;
|
9407
9408
|
deletedAt: Date | null;
|
@@ -9410,7 +9411,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9410
9411
|
bucketName: string;
|
9411
9412
|
fileSize: number;
|
9412
9413
|
fileUrl: string | null;
|
9413
|
-
status?: string | undefined;
|
9414
9414
|
}[];
|
9415
9415
|
}[];
|
9416
9416
|
company: {
|
@@ -9665,6 +9665,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9665
9665
|
platformId: string;
|
9666
9666
|
upload: {
|
9667
9667
|
id: string;
|
9668
|
+
status: string | null;
|
9668
9669
|
createdAt: Date;
|
9669
9670
|
updatedAt: Date;
|
9670
9671
|
deletedAt: Date | null;
|
@@ -9673,7 +9674,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
9673
9674
|
bucketName: string;
|
9674
9675
|
fileSize: number;
|
9675
9676
|
fileUrl: string | null;
|
9676
|
-
status?: string | undefined;
|
9677
9677
|
};
|
9678
9678
|
assignee: {
|
9679
9679
|
id: string;
|
@@ -9847,9 +9847,10 @@ export declare const RepliedMessageSchema: z.ZodObject<{
|
|
9847
9847
|
fileSize: z.ZodNumber;
|
9848
9848
|
fileKey: z.ZodString;
|
9849
9849
|
fileUrl: z.ZodNullable<z.ZodString>;
|
9850
|
-
status: z.
|
9850
|
+
status: z.ZodNullable<z.ZodString>;
|
9851
9851
|
}, "strip", z.ZodTypeAny, {
|
9852
9852
|
id: string;
|
9853
|
+
status: string | null;
|
9853
9854
|
createdAt: Date;
|
9854
9855
|
updatedAt: Date;
|
9855
9856
|
deletedAt: Date | null;
|
@@ -9858,9 +9859,9 @@ export declare const RepliedMessageSchema: z.ZodObject<{
|
|
9858
9859
|
bucketName: string;
|
9859
9860
|
fileSize: number;
|
9860
9861
|
fileUrl: string | null;
|
9861
|
-
status?: string | undefined;
|
9862
9862
|
}, {
|
9863
9863
|
id: string;
|
9864
|
+
status: string | null;
|
9864
9865
|
createdAt: Date;
|
9865
9866
|
updatedAt: Date;
|
9866
9867
|
deletedAt: Date | null;
|
@@ -9869,7 +9870,6 @@ export declare const RepliedMessageSchema: z.ZodObject<{
|
|
9869
9870
|
bucketName: string;
|
9870
9871
|
fileSize: number;
|
9871
9872
|
fileUrl: string | null;
|
9872
|
-
status?: string | undefined;
|
9873
9873
|
}>;
|
9874
9874
|
actor: z.ZodObject<{
|
9875
9875
|
id: z.ZodString;
|
@@ -10548,6 +10548,7 @@ export declare const RepliedMessageSchema: z.ZodObject<{
|
|
10548
10548
|
platformId: string;
|
10549
10549
|
upload: {
|
10550
10550
|
id: string;
|
10551
|
+
status: string | null;
|
10551
10552
|
createdAt: Date;
|
10552
10553
|
updatedAt: Date;
|
10553
10554
|
deletedAt: Date | null;
|
@@ -10556,7 +10557,6 @@ export declare const RepliedMessageSchema: z.ZodObject<{
|
|
10556
10557
|
bucketName: string;
|
10557
10558
|
fileSize: number;
|
10558
10559
|
fileUrl: string | null;
|
10559
|
-
status?: string | undefined;
|
10560
10560
|
};
|
10561
10561
|
assignee: {
|
10562
10562
|
id: string;
|
@@ -10710,6 +10710,7 @@ export declare const RepliedMessageSchema: z.ZodObject<{
|
|
10710
10710
|
platformId: string;
|
10711
10711
|
upload: {
|
10712
10712
|
id: string;
|
10713
|
+
status: string | null;
|
10713
10714
|
createdAt: Date;
|
10714
10715
|
updatedAt: Date;
|
10715
10716
|
deletedAt: Date | null;
|
@@ -10718,7 +10719,6 @@ export declare const RepliedMessageSchema: z.ZodObject<{
|
|
10718
10719
|
bucketName: string;
|
10719
10720
|
fileSize: number;
|
10720
10721
|
fileUrl: string | null;
|
10721
|
-
status?: string | undefined;
|
10722
10722
|
};
|
10723
10723
|
assignee: {
|
10724
10724
|
id: string;
|