@kl1/contracts 1.1.40-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 +2201 -2205
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2200 -2204
- 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/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 +681 -56736
- 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 +48 -54
- 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/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 +26 -26
- package/package.json +1 -1
@@ -1,7 +1,5 @@
|
|
1
1
|
import z from 'zod';
|
2
|
-
|
3
|
-
export type ConnectWebChatChannelRequest = z.infer<typeof ConnectWebChatChannelSchema>;
|
4
|
-
export declare const webchatContract: {
|
2
|
+
export declare const platformWebchatContract: {
|
5
3
|
sendMessage: {
|
6
4
|
body: z.ZodObject<{
|
7
5
|
room: z.ZodObject<{
|
@@ -1008,9 +1006,10 @@ export declare const webchatContract: {
|
|
1008
1006
|
fileSize: z.ZodNumber;
|
1009
1007
|
fileKey: z.ZodString;
|
1010
1008
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1011
|
-
status: z.
|
1009
|
+
status: z.ZodNullable<z.ZodString>;
|
1012
1010
|
}, "strip", z.ZodTypeAny, {
|
1013
1011
|
id: string;
|
1012
|
+
status: string | null;
|
1014
1013
|
createdAt: Date;
|
1015
1014
|
updatedAt: Date;
|
1016
1015
|
deletedAt: Date | null;
|
@@ -1019,9 +1018,9 @@ export declare const webchatContract: {
|
|
1019
1018
|
bucketName: string;
|
1020
1019
|
fileSize: number;
|
1021
1020
|
fileUrl: string | null;
|
1022
|
-
status?: string | undefined;
|
1023
1021
|
}, {
|
1024
1022
|
id: string;
|
1023
|
+
status: string | null;
|
1025
1024
|
createdAt: Date;
|
1026
1025
|
updatedAt: Date;
|
1027
1026
|
deletedAt: Date | null;
|
@@ -1030,7 +1029,6 @@ export declare const webchatContract: {
|
|
1030
1029
|
bucketName: string;
|
1031
1030
|
fileSize: number;
|
1032
1031
|
fileUrl: string | null;
|
1033
|
-
status?: string | undefined;
|
1034
1032
|
}>, "many">;
|
1035
1033
|
}, "strip", z.ZodTypeAny, {
|
1036
1034
|
id: string;
|
@@ -1057,6 +1055,7 @@ export declare const webchatContract: {
|
|
1057
1055
|
dateValue: Date | null;
|
1058
1056
|
uploads: {
|
1059
1057
|
id: string;
|
1058
|
+
status: string | null;
|
1060
1059
|
createdAt: Date;
|
1061
1060
|
updatedAt: Date;
|
1062
1061
|
deletedAt: Date | null;
|
@@ -1065,7 +1064,6 @@ export declare const webchatContract: {
|
|
1065
1064
|
bucketName: string;
|
1066
1065
|
fileSize: number;
|
1067
1066
|
fileUrl: string | null;
|
1068
|
-
status?: string | undefined;
|
1069
1067
|
}[];
|
1070
1068
|
}, {
|
1071
1069
|
id: string;
|
@@ -1092,6 +1090,7 @@ export declare const webchatContract: {
|
|
1092
1090
|
dateValue: Date | null;
|
1093
1091
|
uploads: {
|
1094
1092
|
id: string;
|
1093
|
+
status: string | null;
|
1095
1094
|
createdAt: Date;
|
1096
1095
|
updatedAt: Date;
|
1097
1096
|
deletedAt: Date | null;
|
@@ -1100,7 +1099,6 @@ export declare const webchatContract: {
|
|
1100
1099
|
bucketName: string;
|
1101
1100
|
fileSize: number;
|
1102
1101
|
fileUrl: string | null;
|
1103
|
-
status?: string | undefined;
|
1104
1102
|
}[];
|
1105
1103
|
}>, "many">;
|
1106
1104
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1240,6 +1238,7 @@ export declare const webchatContract: {
|
|
1240
1238
|
dateValue: Date | null;
|
1241
1239
|
uploads: {
|
1242
1240
|
id: string;
|
1241
|
+
status: string | null;
|
1243
1242
|
createdAt: Date;
|
1244
1243
|
updatedAt: Date;
|
1245
1244
|
deletedAt: Date | null;
|
@@ -1248,7 +1247,6 @@ export declare const webchatContract: {
|
|
1248
1247
|
bucketName: string;
|
1249
1248
|
fileSize: number;
|
1250
1249
|
fileUrl: string | null;
|
1251
|
-
status?: string | undefined;
|
1252
1250
|
}[];
|
1253
1251
|
}[];
|
1254
1252
|
company: {
|
@@ -1336,6 +1334,7 @@ export declare const webchatContract: {
|
|
1336
1334
|
dateValue: Date | null;
|
1337
1335
|
uploads: {
|
1338
1336
|
id: string;
|
1337
|
+
status: string | null;
|
1339
1338
|
createdAt: Date;
|
1340
1339
|
updatedAt: Date;
|
1341
1340
|
deletedAt: Date | null;
|
@@ -1344,7 +1343,6 @@ export declare const webchatContract: {
|
|
1344
1343
|
bucketName: string;
|
1345
1344
|
fileSize: number;
|
1346
1345
|
fileUrl: string | null;
|
1347
|
-
status?: string | undefined;
|
1348
1346
|
}[];
|
1349
1347
|
}[];
|
1350
1348
|
company: {
|
@@ -1445,6 +1443,7 @@ export declare const webchatContract: {
|
|
1445
1443
|
dateValue: Date | null;
|
1446
1444
|
uploads: {
|
1447
1445
|
id: string;
|
1446
|
+
status: string | null;
|
1448
1447
|
createdAt: Date;
|
1449
1448
|
updatedAt: Date;
|
1450
1449
|
deletedAt: Date | null;
|
@@ -1453,7 +1452,6 @@ export declare const webchatContract: {
|
|
1453
1452
|
bucketName: string;
|
1454
1453
|
fileSize: number;
|
1455
1454
|
fileUrl: string | null;
|
1456
|
-
status?: string | undefined;
|
1457
1455
|
}[];
|
1458
1456
|
}[];
|
1459
1457
|
company: {
|
@@ -1556,6 +1554,7 @@ export declare const webchatContract: {
|
|
1556
1554
|
dateValue: Date | null;
|
1557
1555
|
uploads: {
|
1558
1556
|
id: string;
|
1557
|
+
status: string | null;
|
1559
1558
|
createdAt: Date;
|
1560
1559
|
updatedAt: Date;
|
1561
1560
|
deletedAt: Date | null;
|
@@ -1564,7 +1563,6 @@ export declare const webchatContract: {
|
|
1564
1563
|
bucketName: string;
|
1565
1564
|
fileSize: number;
|
1566
1565
|
fileUrl: string | null;
|
1567
|
-
status?: string | undefined;
|
1568
1566
|
}[];
|
1569
1567
|
}[];
|
1570
1568
|
company: {
|
@@ -3007,6 +3005,7 @@ export declare const webchatContract: {
|
|
3007
3005
|
dateValue: Date | null;
|
3008
3006
|
uploads: {
|
3009
3007
|
id: string;
|
3008
|
+
status: string | null;
|
3010
3009
|
createdAt: Date;
|
3011
3010
|
updatedAt: Date;
|
3012
3011
|
deletedAt: Date | null;
|
@@ -3015,7 +3014,6 @@ export declare const webchatContract: {
|
|
3015
3014
|
bucketName: string;
|
3016
3015
|
fileSize: number;
|
3017
3016
|
fileUrl: string | null;
|
3018
|
-
status?: string | undefined;
|
3019
3017
|
}[];
|
3020
3018
|
}[];
|
3021
3019
|
company: {
|
@@ -3365,6 +3363,7 @@ export declare const webchatContract: {
|
|
3365
3363
|
dateValue: Date | null;
|
3366
3364
|
uploads: {
|
3367
3365
|
id: string;
|
3366
|
+
status: string | null;
|
3368
3367
|
createdAt: Date;
|
3369
3368
|
updatedAt: Date;
|
3370
3369
|
deletedAt: Date | null;
|
@@ -3373,7 +3372,6 @@ export declare const webchatContract: {
|
|
3373
3372
|
bucketName: string;
|
3374
3373
|
fileSize: number;
|
3375
3374
|
fileUrl: string | null;
|
3376
|
-
status?: string | undefined;
|
3377
3375
|
}[];
|
3378
3376
|
}[];
|
3379
3377
|
company: {
|
@@ -3567,9 +3565,10 @@ export declare const webchatContract: {
|
|
3567
3565
|
fileSize: z.ZodNumber;
|
3568
3566
|
fileKey: z.ZodString;
|
3569
3567
|
fileUrl: z.ZodNullable<z.ZodString>;
|
3570
|
-
status: z.
|
3568
|
+
status: z.ZodNullable<z.ZodString>;
|
3571
3569
|
}, "strip", z.ZodTypeAny, {
|
3572
3570
|
id: string;
|
3571
|
+
status: string | null;
|
3573
3572
|
createdAt: Date;
|
3574
3573
|
updatedAt: Date;
|
3575
3574
|
deletedAt: Date | null;
|
@@ -3578,9 +3577,9 @@ export declare const webchatContract: {
|
|
3578
3577
|
bucketName: string;
|
3579
3578
|
fileSize: number;
|
3580
3579
|
fileUrl: string | null;
|
3581
|
-
status?: string | undefined;
|
3582
3580
|
}, {
|
3583
3581
|
id: string;
|
3582
|
+
status: string | null;
|
3584
3583
|
createdAt: Date;
|
3585
3584
|
updatedAt: Date;
|
3586
3585
|
deletedAt: Date | null;
|
@@ -3589,7 +3588,6 @@ export declare const webchatContract: {
|
|
3589
3588
|
bucketName: string;
|
3590
3589
|
fileSize: number;
|
3591
3590
|
fileUrl: string | null;
|
3592
|
-
status?: string | undefined;
|
3593
3591
|
}>;
|
3594
3592
|
repliedMessage: z.ZodLazy<z.ZodObject<{
|
3595
3593
|
id: z.ZodString;
|
@@ -3619,9 +3617,10 @@ export declare const webchatContract: {
|
|
3619
3617
|
fileSize: z.ZodNumber;
|
3620
3618
|
fileKey: z.ZodString;
|
3621
3619
|
fileUrl: z.ZodNullable<z.ZodString>;
|
3622
|
-
status: z.
|
3620
|
+
status: z.ZodNullable<z.ZodString>;
|
3623
3621
|
}, "strip", z.ZodTypeAny, {
|
3624
3622
|
id: string;
|
3623
|
+
status: string | null;
|
3625
3624
|
createdAt: Date;
|
3626
3625
|
updatedAt: Date;
|
3627
3626
|
deletedAt: Date | null;
|
@@ -3630,9 +3629,9 @@ export declare const webchatContract: {
|
|
3630
3629
|
bucketName: string;
|
3631
3630
|
fileSize: number;
|
3632
3631
|
fileUrl: string | null;
|
3633
|
-
status?: string | undefined;
|
3634
3632
|
}, {
|
3635
3633
|
id: string;
|
3634
|
+
status: string | null;
|
3636
3635
|
createdAt: Date;
|
3637
3636
|
updatedAt: Date;
|
3638
3637
|
deletedAt: Date | null;
|
@@ -3641,7 +3640,6 @@ export declare const webchatContract: {
|
|
3641
3640
|
bucketName: string;
|
3642
3641
|
fileSize: number;
|
3643
3642
|
fileUrl: string | null;
|
3644
|
-
status?: string | undefined;
|
3645
3643
|
}>;
|
3646
3644
|
actor: z.ZodObject<{
|
3647
3645
|
id: z.ZodString;
|
@@ -4311,6 +4309,7 @@ export declare const webchatContract: {
|
|
4311
4309
|
platformId: string;
|
4312
4310
|
upload: {
|
4313
4311
|
id: string;
|
4312
|
+
status: string | null;
|
4314
4313
|
createdAt: Date;
|
4315
4314
|
updatedAt: Date;
|
4316
4315
|
deletedAt: Date | null;
|
@@ -4319,7 +4318,6 @@ export declare const webchatContract: {
|
|
4319
4318
|
bucketName: string;
|
4320
4319
|
fileSize: number;
|
4321
4320
|
fileUrl: string | null;
|
4322
|
-
status?: string | undefined;
|
4323
4321
|
};
|
4324
4322
|
assignee: {
|
4325
4323
|
id: string;
|
@@ -4473,6 +4471,7 @@ export declare const webchatContract: {
|
|
4473
4471
|
platformId: string;
|
4474
4472
|
upload: {
|
4475
4473
|
id: string;
|
4474
|
+
status: string | null;
|
4476
4475
|
createdAt: Date;
|
4477
4476
|
updatedAt: Date;
|
4478
4477
|
deletedAt: Date | null;
|
@@ -4481,7 +4480,6 @@ export declare const webchatContract: {
|
|
4481
4480
|
bucketName: string;
|
4482
4481
|
fileSize: number;
|
4483
4482
|
fileUrl: string | null;
|
4484
|
-
status?: string | undefined;
|
4485
4483
|
};
|
4486
4484
|
assignee: {
|
4487
4485
|
id: string;
|
@@ -5273,6 +5271,7 @@ export declare const webchatContract: {
|
|
5273
5271
|
platformId: string;
|
5274
5272
|
upload: {
|
5275
5273
|
id: string;
|
5274
|
+
status: string | null;
|
5276
5275
|
createdAt: Date;
|
5277
5276
|
updatedAt: Date;
|
5278
5277
|
deletedAt: Date | null;
|
@@ -5281,7 +5280,6 @@ export declare const webchatContract: {
|
|
5281
5280
|
bucketName: string;
|
5282
5281
|
fileSize: number;
|
5283
5282
|
fileUrl: string | null;
|
5284
|
-
status?: string | undefined;
|
5285
5283
|
};
|
5286
5284
|
assignee: {
|
5287
5285
|
id: string;
|
@@ -5494,6 +5492,7 @@ export declare const webchatContract: {
|
|
5494
5492
|
dateValue: Date | null;
|
5495
5493
|
uploads: {
|
5496
5494
|
id: string;
|
5495
|
+
status: string | null;
|
5497
5496
|
createdAt: Date;
|
5498
5497
|
updatedAt: Date;
|
5499
5498
|
deletedAt: Date | null;
|
@@ -5502,7 +5501,6 @@ export declare const webchatContract: {
|
|
5502
5501
|
bucketName: string;
|
5503
5502
|
fileSize: number;
|
5504
5503
|
fileUrl: string | null;
|
5505
|
-
status?: string | undefined;
|
5506
5504
|
}[];
|
5507
5505
|
}[];
|
5508
5506
|
company: {
|
@@ -5757,6 +5755,7 @@ export declare const webchatContract: {
|
|
5757
5755
|
platformId: string;
|
5758
5756
|
upload: {
|
5759
5757
|
id: string;
|
5758
|
+
status: string | null;
|
5760
5759
|
createdAt: Date;
|
5761
5760
|
updatedAt: Date;
|
5762
5761
|
deletedAt: Date | null;
|
@@ -5765,7 +5764,6 @@ export declare const webchatContract: {
|
|
5765
5764
|
bucketName: string;
|
5766
5765
|
fileSize: number;
|
5767
5766
|
fileUrl: string | null;
|
5768
|
-
status?: string | undefined;
|
5769
5767
|
};
|
5770
5768
|
assignee: {
|
5771
5769
|
id: string;
|
@@ -5966,6 +5964,7 @@ export declare const webchatContract: {
|
|
5966
5964
|
platformId: string;
|
5967
5965
|
upload: {
|
5968
5966
|
id: string;
|
5967
|
+
status: string | null;
|
5969
5968
|
createdAt: Date;
|
5970
5969
|
updatedAt: Date;
|
5971
5970
|
deletedAt: Date | null;
|
@@ -5974,7 +5973,6 @@ export declare const webchatContract: {
|
|
5974
5973
|
bucketName: string;
|
5975
5974
|
fileSize: number;
|
5976
5975
|
fileUrl: string | null;
|
5977
|
-
status?: string | undefined;
|
5978
5976
|
};
|
5979
5977
|
assignee: {
|
5980
5978
|
id: string;
|
@@ -6187,6 +6185,7 @@ export declare const webchatContract: {
|
|
6187
6185
|
dateValue: Date | null;
|
6188
6186
|
uploads: {
|
6189
6187
|
id: string;
|
6188
|
+
status: string | null;
|
6190
6189
|
createdAt: Date;
|
6191
6190
|
updatedAt: Date;
|
6192
6191
|
deletedAt: Date | null;
|
@@ -6195,7 +6194,6 @@ export declare const webchatContract: {
|
|
6195
6194
|
bucketName: string;
|
6196
6195
|
fileSize: number;
|
6197
6196
|
fileUrl: string | null;
|
6198
|
-
status?: string | undefined;
|
6199
6197
|
}[];
|
6200
6198
|
}[];
|
6201
6199
|
company: {
|
@@ -6450,6 +6448,7 @@ export declare const webchatContract: {
|
|
6450
6448
|
platformId: string;
|
6451
6449
|
upload: {
|
6452
6450
|
id: string;
|
6451
|
+
status: string | null;
|
6453
6452
|
createdAt: Date;
|
6454
6453
|
updatedAt: Date;
|
6455
6454
|
deletedAt: Date | null;
|
@@ -6458,7 +6457,6 @@ export declare const webchatContract: {
|
|
6458
6457
|
bucketName: string;
|
6459
6458
|
fileSize: number;
|
6460
6459
|
fileUrl: string | null;
|
6461
|
-
status?: string | undefined;
|
6462
6460
|
};
|
6463
6461
|
assignee: {
|
6464
6462
|
id: string;
|
@@ -6661,6 +6659,7 @@ export declare const webchatContract: {
|
|
6661
6659
|
platformId: string;
|
6662
6660
|
upload: {
|
6663
6661
|
id: string;
|
6662
|
+
status: string | null;
|
6664
6663
|
createdAt: Date;
|
6665
6664
|
updatedAt: Date;
|
6666
6665
|
deletedAt: Date | null;
|
@@ -6669,7 +6668,6 @@ export declare const webchatContract: {
|
|
6669
6668
|
bucketName: string;
|
6670
6669
|
fileSize: number;
|
6671
6670
|
fileUrl: string | null;
|
6672
|
-
status?: string | undefined;
|
6673
6671
|
};
|
6674
6672
|
assignee: {
|
6675
6673
|
id: string;
|
@@ -6882,6 +6880,7 @@ export declare const webchatContract: {
|
|
6882
6880
|
dateValue: Date | null;
|
6883
6881
|
uploads: {
|
6884
6882
|
id: string;
|
6883
|
+
status: string | null;
|
6885
6884
|
createdAt: Date;
|
6886
6885
|
updatedAt: Date;
|
6887
6886
|
deletedAt: Date | null;
|
@@ -6890,7 +6889,6 @@ export declare const webchatContract: {
|
|
6890
6889
|
bucketName: string;
|
6891
6890
|
fileSize: number;
|
6892
6891
|
fileUrl: string | null;
|
6893
|
-
status?: string | undefined;
|
6894
6892
|
}[];
|
6895
6893
|
}[];
|
6896
6894
|
company: {
|
@@ -7145,6 +7143,7 @@ export declare const webchatContract: {
|
|
7145
7143
|
platformId: string;
|
7146
7144
|
upload: {
|
7147
7145
|
id: string;
|
7146
|
+
status: string | null;
|
7148
7147
|
createdAt: Date;
|
7149
7148
|
updatedAt: Date;
|
7150
7149
|
deletedAt: Date | null;
|
@@ -7153,7 +7152,6 @@ export declare const webchatContract: {
|
|
7153
7152
|
bucketName: string;
|
7154
7153
|
fileSize: number;
|
7155
7154
|
fileUrl: string | null;
|
7156
|
-
status?: string | undefined;
|
7157
7155
|
};
|
7158
7156
|
assignee: {
|
7159
7157
|
id: string;
|
@@ -7357,6 +7355,7 @@ export declare const webchatContract: {
|
|
7357
7355
|
platformId: string;
|
7358
7356
|
upload: {
|
7359
7357
|
id: string;
|
7358
|
+
status: string | null;
|
7360
7359
|
createdAt: Date;
|
7361
7360
|
updatedAt: Date;
|
7362
7361
|
deletedAt: Date | null;
|
@@ -7365,7 +7364,6 @@ export declare const webchatContract: {
|
|
7365
7364
|
bucketName: string;
|
7366
7365
|
fileSize: number;
|
7367
7366
|
fileUrl: string | null;
|
7368
|
-
status?: string | undefined;
|
7369
7367
|
};
|
7370
7368
|
assignee: {
|
7371
7369
|
id: string;
|
@@ -7578,6 +7576,7 @@ export declare const webchatContract: {
|
|
7578
7576
|
dateValue: Date | null;
|
7579
7577
|
uploads: {
|
7580
7578
|
id: string;
|
7579
|
+
status: string | null;
|
7581
7580
|
createdAt: Date;
|
7582
7581
|
updatedAt: Date;
|
7583
7582
|
deletedAt: Date | null;
|
@@ -7586,7 +7585,6 @@ export declare const webchatContract: {
|
|
7586
7585
|
bucketName: string;
|
7587
7586
|
fileSize: number;
|
7588
7587
|
fileUrl: string | null;
|
7589
|
-
status?: string | undefined;
|
7590
7588
|
}[];
|
7591
7589
|
}[];
|
7592
7590
|
company: {
|
@@ -7841,6 +7839,7 @@ export declare const webchatContract: {
|
|
7841
7839
|
platformId: string;
|
7842
7840
|
upload: {
|
7843
7841
|
id: string;
|
7842
|
+
status: string | null;
|
7844
7843
|
createdAt: Date;
|
7845
7844
|
updatedAt: Date;
|
7846
7845
|
deletedAt: Date | null;
|
@@ -7849,7 +7848,6 @@ export declare const webchatContract: {
|
|
7849
7848
|
bucketName: string;
|
7850
7849
|
fileSize: number;
|
7851
7850
|
fileUrl: string | null;
|
7852
|
-
status?: string | undefined;
|
7853
7851
|
};
|
7854
7852
|
assignee: {
|
7855
7853
|
id: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/webchat/index.ts"],"names":[],"mappings":"AAKA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/webchat/index.ts"],"names":[],"mappings":"AAKA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyBlC,CAAC"}
|