@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
@@ -1009,9 +1009,10 @@ export declare const instagramContract: {
|
|
1009
1009
|
fileSize: z.ZodNumber;
|
1010
1010
|
fileKey: z.ZodString;
|
1011
1011
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1012
|
-
status: z.
|
1012
|
+
status: z.ZodNullable<z.ZodString>;
|
1013
1013
|
}, "strip", z.ZodTypeAny, {
|
1014
1014
|
id: string;
|
1015
|
+
status: string | null;
|
1015
1016
|
createdAt: Date;
|
1016
1017
|
updatedAt: Date;
|
1017
1018
|
deletedAt: Date | null;
|
@@ -1020,9 +1021,9 @@ export declare const instagramContract: {
|
|
1020
1021
|
bucketName: string;
|
1021
1022
|
fileSize: number;
|
1022
1023
|
fileUrl: string | null;
|
1023
|
-
status?: string | undefined;
|
1024
1024
|
}, {
|
1025
1025
|
id: string;
|
1026
|
+
status: string | null;
|
1026
1027
|
createdAt: Date;
|
1027
1028
|
updatedAt: Date;
|
1028
1029
|
deletedAt: Date | null;
|
@@ -1031,7 +1032,6 @@ export declare const instagramContract: {
|
|
1031
1032
|
bucketName: string;
|
1032
1033
|
fileSize: number;
|
1033
1034
|
fileUrl: string | null;
|
1034
|
-
status?: string | undefined;
|
1035
1035
|
}>, "many">;
|
1036
1036
|
}, "strip", z.ZodTypeAny, {
|
1037
1037
|
id: string;
|
@@ -1058,6 +1058,7 @@ export declare const instagramContract: {
|
|
1058
1058
|
dateValue: Date | null;
|
1059
1059
|
uploads: {
|
1060
1060
|
id: string;
|
1061
|
+
status: string | null;
|
1061
1062
|
createdAt: Date;
|
1062
1063
|
updatedAt: Date;
|
1063
1064
|
deletedAt: Date | null;
|
@@ -1066,7 +1067,6 @@ export declare const instagramContract: {
|
|
1066
1067
|
bucketName: string;
|
1067
1068
|
fileSize: number;
|
1068
1069
|
fileUrl: string | null;
|
1069
|
-
status?: string | undefined;
|
1070
1070
|
}[];
|
1071
1071
|
}, {
|
1072
1072
|
id: string;
|
@@ -1093,6 +1093,7 @@ export declare const instagramContract: {
|
|
1093
1093
|
dateValue: Date | null;
|
1094
1094
|
uploads: {
|
1095
1095
|
id: string;
|
1096
|
+
status: string | null;
|
1096
1097
|
createdAt: Date;
|
1097
1098
|
updatedAt: Date;
|
1098
1099
|
deletedAt: Date | null;
|
@@ -1101,7 +1102,6 @@ export declare const instagramContract: {
|
|
1101
1102
|
bucketName: string;
|
1102
1103
|
fileSize: number;
|
1103
1104
|
fileUrl: string | null;
|
1104
|
-
status?: string | undefined;
|
1105
1105
|
}[];
|
1106
1106
|
}>, "many">;
|
1107
1107
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1241,6 +1241,7 @@ export declare const instagramContract: {
|
|
1241
1241
|
dateValue: Date | null;
|
1242
1242
|
uploads: {
|
1243
1243
|
id: string;
|
1244
|
+
status: string | null;
|
1244
1245
|
createdAt: Date;
|
1245
1246
|
updatedAt: Date;
|
1246
1247
|
deletedAt: Date | null;
|
@@ -1249,7 +1250,6 @@ export declare const instagramContract: {
|
|
1249
1250
|
bucketName: string;
|
1250
1251
|
fileSize: number;
|
1251
1252
|
fileUrl: string | null;
|
1252
|
-
status?: string | undefined;
|
1253
1253
|
}[];
|
1254
1254
|
}[];
|
1255
1255
|
company: {
|
@@ -1337,6 +1337,7 @@ export declare const instagramContract: {
|
|
1337
1337
|
dateValue: Date | null;
|
1338
1338
|
uploads: {
|
1339
1339
|
id: string;
|
1340
|
+
status: string | null;
|
1340
1341
|
createdAt: Date;
|
1341
1342
|
updatedAt: Date;
|
1342
1343
|
deletedAt: Date | null;
|
@@ -1345,7 +1346,6 @@ export declare const instagramContract: {
|
|
1345
1346
|
bucketName: string;
|
1346
1347
|
fileSize: number;
|
1347
1348
|
fileUrl: string | null;
|
1348
|
-
status?: string | undefined;
|
1349
1349
|
}[];
|
1350
1350
|
}[];
|
1351
1351
|
company: {
|
@@ -1446,6 +1446,7 @@ export declare const instagramContract: {
|
|
1446
1446
|
dateValue: Date | null;
|
1447
1447
|
uploads: {
|
1448
1448
|
id: string;
|
1449
|
+
status: string | null;
|
1449
1450
|
createdAt: Date;
|
1450
1451
|
updatedAt: Date;
|
1451
1452
|
deletedAt: Date | null;
|
@@ -1454,7 +1455,6 @@ export declare const instagramContract: {
|
|
1454
1455
|
bucketName: string;
|
1455
1456
|
fileSize: number;
|
1456
1457
|
fileUrl: string | null;
|
1457
|
-
status?: string | undefined;
|
1458
1458
|
}[];
|
1459
1459
|
}[];
|
1460
1460
|
company: {
|
@@ -1557,6 +1557,7 @@ export declare const instagramContract: {
|
|
1557
1557
|
dateValue: Date | null;
|
1558
1558
|
uploads: {
|
1559
1559
|
id: string;
|
1560
|
+
status: string | null;
|
1560
1561
|
createdAt: Date;
|
1561
1562
|
updatedAt: Date;
|
1562
1563
|
deletedAt: Date | null;
|
@@ -1565,7 +1566,6 @@ export declare const instagramContract: {
|
|
1565
1566
|
bucketName: string;
|
1566
1567
|
fileSize: number;
|
1567
1568
|
fileUrl: string | null;
|
1568
|
-
status?: string | undefined;
|
1569
1569
|
}[];
|
1570
1570
|
}[];
|
1571
1571
|
company: {
|
@@ -3008,6 +3008,7 @@ export declare const instagramContract: {
|
|
3008
3008
|
dateValue: Date | null;
|
3009
3009
|
uploads: {
|
3010
3010
|
id: string;
|
3011
|
+
status: string | null;
|
3011
3012
|
createdAt: Date;
|
3012
3013
|
updatedAt: Date;
|
3013
3014
|
deletedAt: Date | null;
|
@@ -3016,7 +3017,6 @@ export declare const instagramContract: {
|
|
3016
3017
|
bucketName: string;
|
3017
3018
|
fileSize: number;
|
3018
3019
|
fileUrl: string | null;
|
3019
|
-
status?: string | undefined;
|
3020
3020
|
}[];
|
3021
3021
|
}[];
|
3022
3022
|
company: {
|
@@ -3366,6 +3366,7 @@ export declare const instagramContract: {
|
|
3366
3366
|
dateValue: Date | null;
|
3367
3367
|
uploads: {
|
3368
3368
|
id: string;
|
3369
|
+
status: string | null;
|
3369
3370
|
createdAt: Date;
|
3370
3371
|
updatedAt: Date;
|
3371
3372
|
deletedAt: Date | null;
|
@@ -3374,7 +3375,6 @@ export declare const instagramContract: {
|
|
3374
3375
|
bucketName: string;
|
3375
3376
|
fileSize: number;
|
3376
3377
|
fileUrl: string | null;
|
3377
|
-
status?: string | undefined;
|
3378
3378
|
}[];
|
3379
3379
|
}[];
|
3380
3380
|
company: {
|
@@ -3568,9 +3568,10 @@ export declare const instagramContract: {
|
|
3568
3568
|
fileSize: z.ZodNumber;
|
3569
3569
|
fileKey: z.ZodString;
|
3570
3570
|
fileUrl: z.ZodNullable<z.ZodString>;
|
3571
|
-
status: z.
|
3571
|
+
status: z.ZodNullable<z.ZodString>;
|
3572
3572
|
}, "strip", z.ZodTypeAny, {
|
3573
3573
|
id: string;
|
3574
|
+
status: string | null;
|
3574
3575
|
createdAt: Date;
|
3575
3576
|
updatedAt: Date;
|
3576
3577
|
deletedAt: Date | null;
|
@@ -3579,9 +3580,9 @@ export declare const instagramContract: {
|
|
3579
3580
|
bucketName: string;
|
3580
3581
|
fileSize: number;
|
3581
3582
|
fileUrl: string | null;
|
3582
|
-
status?: string | undefined;
|
3583
3583
|
}, {
|
3584
3584
|
id: string;
|
3585
|
+
status: string | null;
|
3585
3586
|
createdAt: Date;
|
3586
3587
|
updatedAt: Date;
|
3587
3588
|
deletedAt: Date | null;
|
@@ -3590,7 +3591,6 @@ export declare const instagramContract: {
|
|
3590
3591
|
bucketName: string;
|
3591
3592
|
fileSize: number;
|
3592
3593
|
fileUrl: string | null;
|
3593
|
-
status?: string | undefined;
|
3594
3594
|
}>;
|
3595
3595
|
repliedMessage: z.ZodLazy<z.ZodObject<{
|
3596
3596
|
id: z.ZodString;
|
@@ -3620,9 +3620,10 @@ export declare const instagramContract: {
|
|
3620
3620
|
fileSize: z.ZodNumber;
|
3621
3621
|
fileKey: z.ZodString;
|
3622
3622
|
fileUrl: z.ZodNullable<z.ZodString>;
|
3623
|
-
status: z.
|
3623
|
+
status: z.ZodNullable<z.ZodString>;
|
3624
3624
|
}, "strip", z.ZodTypeAny, {
|
3625
3625
|
id: string;
|
3626
|
+
status: string | null;
|
3626
3627
|
createdAt: Date;
|
3627
3628
|
updatedAt: Date;
|
3628
3629
|
deletedAt: Date | null;
|
@@ -3631,9 +3632,9 @@ export declare const instagramContract: {
|
|
3631
3632
|
bucketName: string;
|
3632
3633
|
fileSize: number;
|
3633
3634
|
fileUrl: string | null;
|
3634
|
-
status?: string | undefined;
|
3635
3635
|
}, {
|
3636
3636
|
id: string;
|
3637
|
+
status: string | null;
|
3637
3638
|
createdAt: Date;
|
3638
3639
|
updatedAt: Date;
|
3639
3640
|
deletedAt: Date | null;
|
@@ -3642,7 +3643,6 @@ export declare const instagramContract: {
|
|
3642
3643
|
bucketName: string;
|
3643
3644
|
fileSize: number;
|
3644
3645
|
fileUrl: string | null;
|
3645
|
-
status?: string | undefined;
|
3646
3646
|
}>;
|
3647
3647
|
actor: z.ZodObject<{
|
3648
3648
|
id: z.ZodString;
|
@@ -4312,6 +4312,7 @@ export declare const instagramContract: {
|
|
4312
4312
|
platformId: string;
|
4313
4313
|
upload: {
|
4314
4314
|
id: string;
|
4315
|
+
status: string | null;
|
4315
4316
|
createdAt: Date;
|
4316
4317
|
updatedAt: Date;
|
4317
4318
|
deletedAt: Date | null;
|
@@ -4320,7 +4321,6 @@ export declare const instagramContract: {
|
|
4320
4321
|
bucketName: string;
|
4321
4322
|
fileSize: number;
|
4322
4323
|
fileUrl: string | null;
|
4323
|
-
status?: string | undefined;
|
4324
4324
|
};
|
4325
4325
|
assignee: {
|
4326
4326
|
id: string;
|
@@ -4474,6 +4474,7 @@ export declare const instagramContract: {
|
|
4474
4474
|
platformId: string;
|
4475
4475
|
upload: {
|
4476
4476
|
id: string;
|
4477
|
+
status: string | null;
|
4477
4478
|
createdAt: Date;
|
4478
4479
|
updatedAt: Date;
|
4479
4480
|
deletedAt: Date | null;
|
@@ -4482,7 +4483,6 @@ export declare const instagramContract: {
|
|
4482
4483
|
bucketName: string;
|
4483
4484
|
fileSize: number;
|
4484
4485
|
fileUrl: string | null;
|
4485
|
-
status?: string | undefined;
|
4486
4486
|
};
|
4487
4487
|
assignee: {
|
4488
4488
|
id: string;
|
@@ -5274,6 +5274,7 @@ export declare const instagramContract: {
|
|
5274
5274
|
platformId: string;
|
5275
5275
|
upload: {
|
5276
5276
|
id: string;
|
5277
|
+
status: string | null;
|
5277
5278
|
createdAt: Date;
|
5278
5279
|
updatedAt: Date;
|
5279
5280
|
deletedAt: Date | null;
|
@@ -5282,7 +5283,6 @@ export declare const instagramContract: {
|
|
5282
5283
|
bucketName: string;
|
5283
5284
|
fileSize: number;
|
5284
5285
|
fileUrl: string | null;
|
5285
|
-
status?: string | undefined;
|
5286
5286
|
};
|
5287
5287
|
assignee: {
|
5288
5288
|
id: string;
|
@@ -5495,6 +5495,7 @@ export declare const instagramContract: {
|
|
5495
5495
|
dateValue: Date | null;
|
5496
5496
|
uploads: {
|
5497
5497
|
id: string;
|
5498
|
+
status: string | null;
|
5498
5499
|
createdAt: Date;
|
5499
5500
|
updatedAt: Date;
|
5500
5501
|
deletedAt: Date | null;
|
@@ -5503,7 +5504,6 @@ export declare const instagramContract: {
|
|
5503
5504
|
bucketName: string;
|
5504
5505
|
fileSize: number;
|
5505
5506
|
fileUrl: string | null;
|
5506
|
-
status?: string | undefined;
|
5507
5507
|
}[];
|
5508
5508
|
}[];
|
5509
5509
|
company: {
|
@@ -5758,6 +5758,7 @@ export declare const instagramContract: {
|
|
5758
5758
|
platformId: string;
|
5759
5759
|
upload: {
|
5760
5760
|
id: string;
|
5761
|
+
status: string | null;
|
5761
5762
|
createdAt: Date;
|
5762
5763
|
updatedAt: Date;
|
5763
5764
|
deletedAt: Date | null;
|
@@ -5766,7 +5767,6 @@ export declare const instagramContract: {
|
|
5766
5767
|
bucketName: string;
|
5767
5768
|
fileSize: number;
|
5768
5769
|
fileUrl: string | null;
|
5769
|
-
status?: string | undefined;
|
5770
5770
|
};
|
5771
5771
|
assignee: {
|
5772
5772
|
id: string;
|
@@ -5967,6 +5967,7 @@ export declare const instagramContract: {
|
|
5967
5967
|
platformId: string;
|
5968
5968
|
upload: {
|
5969
5969
|
id: string;
|
5970
|
+
status: string | null;
|
5970
5971
|
createdAt: Date;
|
5971
5972
|
updatedAt: Date;
|
5972
5973
|
deletedAt: Date | null;
|
@@ -5975,7 +5976,6 @@ export declare const instagramContract: {
|
|
5975
5976
|
bucketName: string;
|
5976
5977
|
fileSize: number;
|
5977
5978
|
fileUrl: string | null;
|
5978
|
-
status?: string | undefined;
|
5979
5979
|
};
|
5980
5980
|
assignee: {
|
5981
5981
|
id: string;
|
@@ -6188,6 +6188,7 @@ export declare const instagramContract: {
|
|
6188
6188
|
dateValue: Date | null;
|
6189
6189
|
uploads: {
|
6190
6190
|
id: string;
|
6191
|
+
status: string | null;
|
6191
6192
|
createdAt: Date;
|
6192
6193
|
updatedAt: Date;
|
6193
6194
|
deletedAt: Date | null;
|
@@ -6196,7 +6197,6 @@ export declare const instagramContract: {
|
|
6196
6197
|
bucketName: string;
|
6197
6198
|
fileSize: number;
|
6198
6199
|
fileUrl: string | null;
|
6199
|
-
status?: string | undefined;
|
6200
6200
|
}[];
|
6201
6201
|
}[];
|
6202
6202
|
company: {
|
@@ -6451,6 +6451,7 @@ export declare const instagramContract: {
|
|
6451
6451
|
platformId: string;
|
6452
6452
|
upload: {
|
6453
6453
|
id: string;
|
6454
|
+
status: string | null;
|
6454
6455
|
createdAt: Date;
|
6455
6456
|
updatedAt: Date;
|
6456
6457
|
deletedAt: Date | null;
|
@@ -6459,7 +6460,6 @@ export declare const instagramContract: {
|
|
6459
6460
|
bucketName: string;
|
6460
6461
|
fileSize: number;
|
6461
6462
|
fileUrl: string | null;
|
6462
|
-
status?: string | undefined;
|
6463
6463
|
};
|
6464
6464
|
assignee: {
|
6465
6465
|
id: string;
|
@@ -6662,6 +6662,7 @@ export declare const instagramContract: {
|
|
6662
6662
|
platformId: string;
|
6663
6663
|
upload: {
|
6664
6664
|
id: string;
|
6665
|
+
status: string | null;
|
6665
6666
|
createdAt: Date;
|
6666
6667
|
updatedAt: Date;
|
6667
6668
|
deletedAt: Date | null;
|
@@ -6670,7 +6671,6 @@ export declare const instagramContract: {
|
|
6670
6671
|
bucketName: string;
|
6671
6672
|
fileSize: number;
|
6672
6673
|
fileUrl: string | null;
|
6673
|
-
status?: string | undefined;
|
6674
6674
|
};
|
6675
6675
|
assignee: {
|
6676
6676
|
id: string;
|
@@ -6883,6 +6883,7 @@ export declare const instagramContract: {
|
|
6883
6883
|
dateValue: Date | null;
|
6884
6884
|
uploads: {
|
6885
6885
|
id: string;
|
6886
|
+
status: string | null;
|
6886
6887
|
createdAt: Date;
|
6887
6888
|
updatedAt: Date;
|
6888
6889
|
deletedAt: Date | null;
|
@@ -6891,7 +6892,6 @@ export declare const instagramContract: {
|
|
6891
6892
|
bucketName: string;
|
6892
6893
|
fileSize: number;
|
6893
6894
|
fileUrl: string | null;
|
6894
|
-
status?: string | undefined;
|
6895
6895
|
}[];
|
6896
6896
|
}[];
|
6897
6897
|
company: {
|
@@ -7146,6 +7146,7 @@ export declare const instagramContract: {
|
|
7146
7146
|
platformId: string;
|
7147
7147
|
upload: {
|
7148
7148
|
id: string;
|
7149
|
+
status: string | null;
|
7149
7150
|
createdAt: Date;
|
7150
7151
|
updatedAt: Date;
|
7151
7152
|
deletedAt: Date | null;
|
@@ -7154,7 +7155,6 @@ export declare const instagramContract: {
|
|
7154
7155
|
bucketName: string;
|
7155
7156
|
fileSize: number;
|
7156
7157
|
fileUrl: string | null;
|
7157
|
-
status?: string | undefined;
|
7158
7158
|
};
|
7159
7159
|
assignee: {
|
7160
7160
|
id: string;
|
@@ -7358,6 +7358,7 @@ export declare const instagramContract: {
|
|
7358
7358
|
platformId: string;
|
7359
7359
|
upload: {
|
7360
7360
|
id: string;
|
7361
|
+
status: string | null;
|
7361
7362
|
createdAt: Date;
|
7362
7363
|
updatedAt: Date;
|
7363
7364
|
deletedAt: Date | null;
|
@@ -7366,7 +7367,6 @@ export declare const instagramContract: {
|
|
7366
7367
|
bucketName: string;
|
7367
7368
|
fileSize: number;
|
7368
7369
|
fileUrl: string | null;
|
7369
|
-
status?: string | undefined;
|
7370
7370
|
};
|
7371
7371
|
assignee: {
|
7372
7372
|
id: string;
|
@@ -7579,6 +7579,7 @@ export declare const instagramContract: {
|
|
7579
7579
|
dateValue: Date | null;
|
7580
7580
|
uploads: {
|
7581
7581
|
id: string;
|
7582
|
+
status: string | null;
|
7582
7583
|
createdAt: Date;
|
7583
7584
|
updatedAt: Date;
|
7584
7585
|
deletedAt: Date | null;
|
@@ -7587,7 +7588,6 @@ export declare const instagramContract: {
|
|
7587
7588
|
bucketName: string;
|
7588
7589
|
fileSize: number;
|
7589
7590
|
fileUrl: string | null;
|
7590
|
-
status?: string | undefined;
|
7591
7591
|
}[];
|
7592
7592
|
}[];
|
7593
7593
|
company: {
|
@@ -7842,6 +7842,7 @@ export declare const instagramContract: {
|
|
7842
7842
|
platformId: string;
|
7843
7843
|
upload: {
|
7844
7844
|
id: string;
|
7845
|
+
status: string | null;
|
7845
7846
|
createdAt: Date;
|
7846
7847
|
updatedAt: Date;
|
7847
7848
|
deletedAt: Date | null;
|
@@ -7850,7 +7851,6 @@ export declare const instagramContract: {
|
|
7850
7851
|
bucketName: string;
|
7851
7852
|
fileSize: number;
|
7852
7853
|
fileUrl: string | null;
|
7853
|
-
status?: string | undefined;
|
7854
7854
|
};
|
7855
7855
|
assignee: {
|
7856
7856
|
id: string;
|