@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
@@ -143,9 +143,10 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
143
143
|
fileSize: z.ZodNumber;
|
144
144
|
fileKey: z.ZodString;
|
145
145
|
fileUrl: z.ZodNullable<z.ZodString>;
|
146
|
-
status: z.
|
146
|
+
status: z.ZodNullable<z.ZodString>;
|
147
147
|
}, "strip", z.ZodTypeAny, {
|
148
148
|
id: string;
|
149
|
+
status: string | null;
|
149
150
|
createdAt: Date;
|
150
151
|
updatedAt: Date;
|
151
152
|
deletedAt: Date | null;
|
@@ -154,9 +155,9 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
154
155
|
bucketName: string;
|
155
156
|
fileSize: number;
|
156
157
|
fileUrl: string | null;
|
157
|
-
status?: string | undefined;
|
158
158
|
}, {
|
159
159
|
id: string;
|
160
|
+
status: string | null;
|
160
161
|
createdAt: Date;
|
161
162
|
updatedAt: Date;
|
162
163
|
deletedAt: Date | null;
|
@@ -165,7 +166,6 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
165
166
|
bucketName: string;
|
166
167
|
fileSize: number;
|
167
168
|
fileUrl: string | null;
|
168
|
-
status?: string | undefined;
|
169
169
|
}>, "many">;
|
170
170
|
}, "strip", z.ZodTypeAny, {
|
171
171
|
id: string;
|
@@ -192,6 +192,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
192
192
|
dateValue: Date | null;
|
193
193
|
uploads: {
|
194
194
|
id: string;
|
195
|
+
status: string | null;
|
195
196
|
createdAt: Date;
|
196
197
|
updatedAt: Date;
|
197
198
|
deletedAt: Date | null;
|
@@ -200,7 +201,6 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
200
201
|
bucketName: string;
|
201
202
|
fileSize: number;
|
202
203
|
fileUrl: string | null;
|
203
|
-
status?: string | undefined;
|
204
204
|
}[];
|
205
205
|
}, {
|
206
206
|
id: string;
|
@@ -227,6 +227,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
227
227
|
dateValue: Date | null;
|
228
228
|
uploads: {
|
229
229
|
id: string;
|
230
|
+
status: string | null;
|
230
231
|
createdAt: Date;
|
231
232
|
updatedAt: Date;
|
232
233
|
deletedAt: Date | null;
|
@@ -235,7 +236,6 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
235
236
|
bucketName: string;
|
236
237
|
fileSize: number;
|
237
238
|
fileUrl: string | null;
|
238
|
-
status?: string | undefined;
|
239
239
|
}[];
|
240
240
|
}>;
|
241
241
|
export declare const ContactEntityTypesSchema: z.ZodObject<{
|
@@ -615,9 +615,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
615
615
|
fileSize: z.ZodNumber;
|
616
616
|
fileKey: z.ZodString;
|
617
617
|
fileUrl: z.ZodNullable<z.ZodString>;
|
618
|
-
status: z.
|
618
|
+
status: z.ZodNullable<z.ZodString>;
|
619
619
|
}, "strip", z.ZodTypeAny, {
|
620
620
|
id: string;
|
621
|
+
status: string | null;
|
621
622
|
createdAt: Date;
|
622
623
|
updatedAt: Date;
|
623
624
|
deletedAt: Date | null;
|
@@ -626,9 +627,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
626
627
|
bucketName: string;
|
627
628
|
fileSize: number;
|
628
629
|
fileUrl: string | null;
|
629
|
-
status?: string | undefined;
|
630
630
|
}, {
|
631
631
|
id: string;
|
632
|
+
status: string | null;
|
632
633
|
createdAt: Date;
|
633
634
|
updatedAt: Date;
|
634
635
|
deletedAt: Date | null;
|
@@ -637,7 +638,6 @@ export declare const ContactSchema: z.ZodObject<{
|
|
637
638
|
bucketName: string;
|
638
639
|
fileSize: number;
|
639
640
|
fileUrl: string | null;
|
640
|
-
status?: string | undefined;
|
641
641
|
}>, "many">;
|
642
642
|
}, "strip", z.ZodTypeAny, {
|
643
643
|
id: string;
|
@@ -664,6 +664,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
664
664
|
dateValue: Date | null;
|
665
665
|
uploads: {
|
666
666
|
id: string;
|
667
|
+
status: string | null;
|
667
668
|
createdAt: Date;
|
668
669
|
updatedAt: Date;
|
669
670
|
deletedAt: Date | null;
|
@@ -672,7 +673,6 @@ export declare const ContactSchema: z.ZodObject<{
|
|
672
673
|
bucketName: string;
|
673
674
|
fileSize: number;
|
674
675
|
fileUrl: string | null;
|
675
|
-
status?: string | undefined;
|
676
676
|
}[];
|
677
677
|
}, {
|
678
678
|
id: string;
|
@@ -699,6 +699,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
699
699
|
dateValue: Date | null;
|
700
700
|
uploads: {
|
701
701
|
id: string;
|
702
|
+
status: string | null;
|
702
703
|
createdAt: Date;
|
703
704
|
updatedAt: Date;
|
704
705
|
deletedAt: Date | null;
|
@@ -707,7 +708,6 @@ export declare const ContactSchema: z.ZodObject<{
|
|
707
708
|
bucketName: string;
|
708
709
|
fileSize: number;
|
709
710
|
fileUrl: string | null;
|
710
|
-
status?: string | undefined;
|
711
711
|
}[];
|
712
712
|
}>, "many">;
|
713
713
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -847,6 +847,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
847
847
|
dateValue: Date | null;
|
848
848
|
uploads: {
|
849
849
|
id: string;
|
850
|
+
status: string | null;
|
850
851
|
createdAt: Date;
|
851
852
|
updatedAt: Date;
|
852
853
|
deletedAt: Date | null;
|
@@ -855,7 +856,6 @@ export declare const ContactSchema: z.ZodObject<{
|
|
855
856
|
bucketName: string;
|
856
857
|
fileSize: number;
|
857
858
|
fileUrl: string | null;
|
858
|
-
status?: string | undefined;
|
859
859
|
}[];
|
860
860
|
}[];
|
861
861
|
company: {
|
@@ -943,6 +943,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
943
943
|
dateValue: Date | null;
|
944
944
|
uploads: {
|
945
945
|
id: string;
|
946
|
+
status: string | null;
|
946
947
|
createdAt: Date;
|
947
948
|
updatedAt: Date;
|
948
949
|
deletedAt: Date | null;
|
@@ -951,7 +952,6 @@ export declare const ContactSchema: z.ZodObject<{
|
|
951
952
|
bucketName: string;
|
952
953
|
fileSize: number;
|
953
954
|
fileUrl: string | null;
|
954
|
-
status?: string | undefined;
|
955
955
|
}[];
|
956
956
|
}[];
|
957
957
|
company: {
|
@@ -357,9 +357,10 @@ export declare const ContactContractValidationSchema: {
|
|
357
357
|
fileSize: z.ZodNumber;
|
358
358
|
fileKey: z.ZodString;
|
359
359
|
fileUrl: z.ZodNullable<z.ZodString>;
|
360
|
-
status: z.
|
360
|
+
status: z.ZodNullable<z.ZodString>;
|
361
361
|
}, "strip", z.ZodTypeAny, {
|
362
362
|
id: string;
|
363
|
+
status: string | null;
|
363
364
|
createdAt: Date;
|
364
365
|
updatedAt: Date;
|
365
366
|
deletedAt: Date | null;
|
@@ -368,9 +369,9 @@ export declare const ContactContractValidationSchema: {
|
|
368
369
|
bucketName: string;
|
369
370
|
fileSize: number;
|
370
371
|
fileUrl: string | null;
|
371
|
-
status?: string | undefined;
|
372
372
|
}, {
|
373
373
|
id: string;
|
374
|
+
status: string | null;
|
374
375
|
createdAt: Date;
|
375
376
|
updatedAt: Date;
|
376
377
|
deletedAt: Date | null;
|
@@ -379,7 +380,6 @@ export declare const ContactContractValidationSchema: {
|
|
379
380
|
bucketName: string;
|
380
381
|
fileSize: number;
|
381
382
|
fileUrl: string | null;
|
382
|
-
status?: string | undefined;
|
383
383
|
}>, "many">;
|
384
384
|
}, "strip", z.ZodTypeAny, {
|
385
385
|
id: string;
|
@@ -406,6 +406,7 @@ export declare const ContactContractValidationSchema: {
|
|
406
406
|
dateValue: Date | null;
|
407
407
|
uploads: {
|
408
408
|
id: string;
|
409
|
+
status: string | null;
|
409
410
|
createdAt: Date;
|
410
411
|
updatedAt: Date;
|
411
412
|
deletedAt: Date | null;
|
@@ -414,7 +415,6 @@ export declare const ContactContractValidationSchema: {
|
|
414
415
|
bucketName: string;
|
415
416
|
fileSize: number;
|
416
417
|
fileUrl: string | null;
|
417
|
-
status?: string | undefined;
|
418
418
|
}[];
|
419
419
|
}, {
|
420
420
|
id: string;
|
@@ -441,6 +441,7 @@ export declare const ContactContractValidationSchema: {
|
|
441
441
|
dateValue: Date | null;
|
442
442
|
uploads: {
|
443
443
|
id: string;
|
444
|
+
status: string | null;
|
444
445
|
createdAt: Date;
|
445
446
|
updatedAt: Date;
|
446
447
|
deletedAt: Date | null;
|
@@ -449,7 +450,6 @@ export declare const ContactContractValidationSchema: {
|
|
449
450
|
bucketName: string;
|
450
451
|
fileSize: number;
|
451
452
|
fileUrl: string | null;
|
452
|
-
status?: string | undefined;
|
453
453
|
}[];
|
454
454
|
}>, "many">;
|
455
455
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -589,6 +589,7 @@ export declare const ContactContractValidationSchema: {
|
|
589
589
|
dateValue: Date | null;
|
590
590
|
uploads: {
|
591
591
|
id: string;
|
592
|
+
status: string | null;
|
592
593
|
createdAt: Date;
|
593
594
|
updatedAt: Date;
|
594
595
|
deletedAt: Date | null;
|
@@ -597,7 +598,6 @@ export declare const ContactContractValidationSchema: {
|
|
597
598
|
bucketName: string;
|
598
599
|
fileSize: number;
|
599
600
|
fileUrl: string | null;
|
600
|
-
status?: string | undefined;
|
601
601
|
}[];
|
602
602
|
}[];
|
603
603
|
company: {
|
@@ -685,6 +685,7 @@ export declare const ContactContractValidationSchema: {
|
|
685
685
|
dateValue: Date | null;
|
686
686
|
uploads: {
|
687
687
|
id: string;
|
688
|
+
status: string | null;
|
688
689
|
createdAt: Date;
|
689
690
|
updatedAt: Date;
|
690
691
|
deletedAt: Date | null;
|
@@ -693,7 +694,6 @@ export declare const ContactContractValidationSchema: {
|
|
693
694
|
bucketName: string;
|
694
695
|
fileSize: number;
|
695
696
|
fileUrl: string | null;
|
696
|
-
status?: string | undefined;
|
697
697
|
}[];
|
698
698
|
}[];
|
699
699
|
company: {
|
@@ -1132,9 +1132,10 @@ export declare const ContactContractValidationSchema: {
|
|
1132
1132
|
fileSize: z.ZodNumber;
|
1133
1133
|
fileKey: z.ZodString;
|
1134
1134
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1135
|
-
status: z.
|
1135
|
+
status: z.ZodNullable<z.ZodString>;
|
1136
1136
|
}, "strip", z.ZodTypeAny, {
|
1137
1137
|
id: string;
|
1138
|
+
status: string | null;
|
1138
1139
|
createdAt: Date;
|
1139
1140
|
updatedAt: Date;
|
1140
1141
|
deletedAt: Date | null;
|
@@ -1143,9 +1144,9 @@ export declare const ContactContractValidationSchema: {
|
|
1143
1144
|
bucketName: string;
|
1144
1145
|
fileSize: number;
|
1145
1146
|
fileUrl: string | null;
|
1146
|
-
status?: string | undefined;
|
1147
1147
|
}, {
|
1148
1148
|
id: string;
|
1149
|
+
status: string | null;
|
1149
1150
|
createdAt: Date;
|
1150
1151
|
updatedAt: Date;
|
1151
1152
|
deletedAt: Date | null;
|
@@ -1154,7 +1155,6 @@ export declare const ContactContractValidationSchema: {
|
|
1154
1155
|
bucketName: string;
|
1155
1156
|
fileSize: number;
|
1156
1157
|
fileUrl: string | null;
|
1157
|
-
status?: string | undefined;
|
1158
1158
|
}>, "many">;
|
1159
1159
|
}, "strip", z.ZodTypeAny, {
|
1160
1160
|
id: string;
|
@@ -1181,6 +1181,7 @@ export declare const ContactContractValidationSchema: {
|
|
1181
1181
|
dateValue: Date | null;
|
1182
1182
|
uploads: {
|
1183
1183
|
id: string;
|
1184
|
+
status: string | null;
|
1184
1185
|
createdAt: Date;
|
1185
1186
|
updatedAt: Date;
|
1186
1187
|
deletedAt: Date | null;
|
@@ -1189,7 +1190,6 @@ export declare const ContactContractValidationSchema: {
|
|
1189
1190
|
bucketName: string;
|
1190
1191
|
fileSize: number;
|
1191
1192
|
fileUrl: string | null;
|
1192
|
-
status?: string | undefined;
|
1193
1193
|
}[];
|
1194
1194
|
}, {
|
1195
1195
|
id: string;
|
@@ -1216,6 +1216,7 @@ export declare const ContactContractValidationSchema: {
|
|
1216
1216
|
dateValue: Date | null;
|
1217
1217
|
uploads: {
|
1218
1218
|
id: string;
|
1219
|
+
status: string | null;
|
1219
1220
|
createdAt: Date;
|
1220
1221
|
updatedAt: Date;
|
1221
1222
|
deletedAt: Date | null;
|
@@ -1224,7 +1225,6 @@ export declare const ContactContractValidationSchema: {
|
|
1224
1225
|
bucketName: string;
|
1225
1226
|
fileSize: number;
|
1226
1227
|
fileUrl: string | null;
|
1227
|
-
status?: string | undefined;
|
1228
1228
|
}[];
|
1229
1229
|
}>, "many">;
|
1230
1230
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1364,6 +1364,7 @@ export declare const ContactContractValidationSchema: {
|
|
1364
1364
|
dateValue: Date | null;
|
1365
1365
|
uploads: {
|
1366
1366
|
id: string;
|
1367
|
+
status: string | null;
|
1367
1368
|
createdAt: Date;
|
1368
1369
|
updatedAt: Date;
|
1369
1370
|
deletedAt: Date | null;
|
@@ -1372,7 +1373,6 @@ export declare const ContactContractValidationSchema: {
|
|
1372
1373
|
bucketName: string;
|
1373
1374
|
fileSize: number;
|
1374
1375
|
fileUrl: string | null;
|
1375
|
-
status?: string | undefined;
|
1376
1376
|
}[];
|
1377
1377
|
}[];
|
1378
1378
|
company: {
|
@@ -1460,6 +1460,7 @@ export declare const ContactContractValidationSchema: {
|
|
1460
1460
|
dateValue: Date | null;
|
1461
1461
|
uploads: {
|
1462
1462
|
id: string;
|
1463
|
+
status: string | null;
|
1463
1464
|
createdAt: Date;
|
1464
1465
|
updatedAt: Date;
|
1465
1466
|
deletedAt: Date | null;
|
@@ -1468,7 +1469,6 @@ export declare const ContactContractValidationSchema: {
|
|
1468
1469
|
bucketName: string;
|
1469
1470
|
fileSize: number;
|
1470
1471
|
fileUrl: string | null;
|
1471
|
-
status?: string | undefined;
|
1472
1472
|
}[];
|
1473
1473
|
}[];
|
1474
1474
|
company: {
|
@@ -1642,9 +1642,10 @@ export declare const ContactContractValidationSchema: {
|
|
1642
1642
|
fileSize: z.ZodNumber;
|
1643
1643
|
fileKey: z.ZodString;
|
1644
1644
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1645
|
-
status: z.
|
1645
|
+
status: z.ZodNullable<z.ZodString>;
|
1646
1646
|
}, "strip", z.ZodTypeAny, {
|
1647
1647
|
id: string;
|
1648
|
+
status: string | null;
|
1648
1649
|
createdAt: Date;
|
1649
1650
|
updatedAt: Date;
|
1650
1651
|
deletedAt: Date | null;
|
@@ -1653,9 +1654,9 @@ export declare const ContactContractValidationSchema: {
|
|
1653
1654
|
bucketName: string;
|
1654
1655
|
fileSize: number;
|
1655
1656
|
fileUrl: string | null;
|
1656
|
-
status?: string | undefined;
|
1657
1657
|
}, {
|
1658
1658
|
id: string;
|
1659
|
+
status: string | null;
|
1659
1660
|
createdAt: Date;
|
1660
1661
|
updatedAt: Date;
|
1661
1662
|
deletedAt: Date | null;
|
@@ -1664,7 +1665,6 @@ export declare const ContactContractValidationSchema: {
|
|
1664
1665
|
bucketName: string;
|
1665
1666
|
fileSize: number;
|
1666
1667
|
fileUrl: string | null;
|
1667
|
-
status?: string | undefined;
|
1668
1668
|
}>, "many">;
|
1669
1669
|
}, "strip", z.ZodTypeAny, {
|
1670
1670
|
id: string;
|
@@ -1691,6 +1691,7 @@ export declare const ContactContractValidationSchema: {
|
|
1691
1691
|
dateValue: Date | null;
|
1692
1692
|
uploads: {
|
1693
1693
|
id: string;
|
1694
|
+
status: string | null;
|
1694
1695
|
createdAt: Date;
|
1695
1696
|
updatedAt: Date;
|
1696
1697
|
deletedAt: Date | null;
|
@@ -1699,7 +1700,6 @@ export declare const ContactContractValidationSchema: {
|
|
1699
1700
|
bucketName: string;
|
1700
1701
|
fileSize: number;
|
1701
1702
|
fileUrl: string | null;
|
1702
|
-
status?: string | undefined;
|
1703
1703
|
}[];
|
1704
1704
|
}, {
|
1705
1705
|
id: string;
|
@@ -1726,6 +1726,7 @@ export declare const ContactContractValidationSchema: {
|
|
1726
1726
|
dateValue: Date | null;
|
1727
1727
|
uploads: {
|
1728
1728
|
id: string;
|
1729
|
+
status: string | null;
|
1729
1730
|
createdAt: Date;
|
1730
1731
|
updatedAt: Date;
|
1731
1732
|
deletedAt: Date | null;
|
@@ -1734,7 +1735,6 @@ export declare const ContactContractValidationSchema: {
|
|
1734
1735
|
bucketName: string;
|
1735
1736
|
fileSize: number;
|
1736
1737
|
fileUrl: string | null;
|
1737
|
-
status?: string | undefined;
|
1738
1738
|
}[];
|
1739
1739
|
}>, "many">;
|
1740
1740
|
};
|