@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
@@ -99,9 +99,10 @@ export declare const TicketCustomFieldSchema: z.ZodObject<{
|
|
99
99
|
fileSize: z.ZodNumber;
|
100
100
|
fileKey: z.ZodString;
|
101
101
|
fileUrl: z.ZodNullable<z.ZodString>;
|
102
|
-
status: z.
|
102
|
+
status: z.ZodNullable<z.ZodString>;
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
104
104
|
id: string;
|
105
|
+
status: string | null;
|
105
106
|
createdAt: Date;
|
106
107
|
updatedAt: Date;
|
107
108
|
deletedAt: Date | null;
|
@@ -110,9 +111,9 @@ export declare const TicketCustomFieldSchema: z.ZodObject<{
|
|
110
111
|
bucketName: string;
|
111
112
|
fileSize: number;
|
112
113
|
fileUrl: string | null;
|
113
|
-
status?: string | undefined;
|
114
114
|
}, {
|
115
115
|
id: string;
|
116
|
+
status: string | null;
|
116
117
|
createdAt: Date;
|
117
118
|
updatedAt: Date;
|
118
119
|
deletedAt: Date | null;
|
@@ -121,7 +122,6 @@ export declare const TicketCustomFieldSchema: z.ZodObject<{
|
|
121
122
|
bucketName: string;
|
122
123
|
fileSize: number;
|
123
124
|
fileUrl: string | null;
|
124
|
-
status?: string | undefined;
|
125
125
|
}>, "many">;
|
126
126
|
}, "strip", z.ZodTypeAny, {
|
127
127
|
id: string;
|
@@ -148,6 +148,7 @@ export declare const TicketCustomFieldSchema: z.ZodObject<{
|
|
148
148
|
dateValue: Date | null;
|
149
149
|
uploads: {
|
150
150
|
id: string;
|
151
|
+
status: string | null;
|
151
152
|
createdAt: Date;
|
152
153
|
updatedAt: Date;
|
153
154
|
deletedAt: Date | null;
|
@@ -156,7 +157,6 @@ export declare const TicketCustomFieldSchema: z.ZodObject<{
|
|
156
157
|
bucketName: string;
|
157
158
|
fileSize: number;
|
158
159
|
fileUrl: string | null;
|
159
|
-
status?: string | undefined;
|
160
160
|
}[];
|
161
161
|
}, {
|
162
162
|
id: string;
|
@@ -183,6 +183,7 @@ export declare const TicketCustomFieldSchema: z.ZodObject<{
|
|
183
183
|
dateValue: Date | null;
|
184
184
|
uploads: {
|
185
185
|
id: string;
|
186
|
+
status: string | null;
|
186
187
|
createdAt: Date;
|
187
188
|
updatedAt: Date;
|
188
189
|
deletedAt: Date | null;
|
@@ -191,7 +192,6 @@ export declare const TicketCustomFieldSchema: z.ZodObject<{
|
|
191
192
|
bucketName: string;
|
192
193
|
fileSize: number;
|
193
194
|
fileUrl: string | null;
|
194
|
-
status?: string | undefined;
|
195
195
|
}[];
|
196
196
|
}>;
|
197
197
|
export declare const TicketEntityTypesSchema: z.ZodObject<{
|
@@ -800,9 +800,10 @@ export declare const TicketSchema: z.ZodObject<{
|
|
800
800
|
fileSize: z.ZodNumber;
|
801
801
|
fileKey: z.ZodString;
|
802
802
|
fileUrl: z.ZodNullable<z.ZodString>;
|
803
|
-
status: z.
|
803
|
+
status: z.ZodNullable<z.ZodString>;
|
804
804
|
}, "strip", z.ZodTypeAny, {
|
805
805
|
id: string;
|
806
|
+
status: string | null;
|
806
807
|
createdAt: Date;
|
807
808
|
updatedAt: Date;
|
808
809
|
deletedAt: Date | null;
|
@@ -811,9 +812,9 @@ export declare const TicketSchema: z.ZodObject<{
|
|
811
812
|
bucketName: string;
|
812
813
|
fileSize: number;
|
813
814
|
fileUrl: string | null;
|
814
|
-
status?: string | undefined;
|
815
815
|
}, {
|
816
816
|
id: string;
|
817
|
+
status: string | null;
|
817
818
|
createdAt: Date;
|
818
819
|
updatedAt: Date;
|
819
820
|
deletedAt: Date | null;
|
@@ -822,7 +823,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
822
823
|
bucketName: string;
|
823
824
|
fileSize: number;
|
824
825
|
fileUrl: string | null;
|
825
|
-
status?: string | undefined;
|
826
826
|
}>, "many">;
|
827
827
|
}, "strip", z.ZodTypeAny, {
|
828
828
|
id: string;
|
@@ -849,6 +849,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
849
849
|
dateValue: Date | null;
|
850
850
|
uploads: {
|
851
851
|
id: string;
|
852
|
+
status: string | null;
|
852
853
|
createdAt: Date;
|
853
854
|
updatedAt: Date;
|
854
855
|
deletedAt: Date | null;
|
@@ -857,7 +858,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
857
858
|
bucketName: string;
|
858
859
|
fileSize: number;
|
859
860
|
fileUrl: string | null;
|
860
|
-
status?: string | undefined;
|
861
861
|
}[];
|
862
862
|
}, {
|
863
863
|
id: string;
|
@@ -884,6 +884,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
884
884
|
dateValue: Date | null;
|
885
885
|
uploads: {
|
886
886
|
id: string;
|
887
|
+
status: string | null;
|
887
888
|
createdAt: Date;
|
888
889
|
updatedAt: Date;
|
889
890
|
deletedAt: Date | null;
|
@@ -892,7 +893,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
892
893
|
bucketName: string;
|
893
894
|
fileSize: number;
|
894
895
|
fileUrl: string | null;
|
895
|
-
status?: string | undefined;
|
896
896
|
}[];
|
897
897
|
}>, "many">;
|
898
898
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -1309,9 +1309,10 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1309
1309
|
fileSize: z.ZodNumber;
|
1310
1310
|
fileKey: z.ZodString;
|
1311
1311
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1312
|
-
status: z.
|
1312
|
+
status: z.ZodNullable<z.ZodString>;
|
1313
1313
|
}, "strip", z.ZodTypeAny, {
|
1314
1314
|
id: string;
|
1315
|
+
status: string | null;
|
1315
1316
|
createdAt: Date;
|
1316
1317
|
updatedAt: Date;
|
1317
1318
|
deletedAt: Date | null;
|
@@ -1320,9 +1321,9 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1320
1321
|
bucketName: string;
|
1321
1322
|
fileSize: number;
|
1322
1323
|
fileUrl: string | null;
|
1323
|
-
status?: string | undefined;
|
1324
1324
|
}, {
|
1325
1325
|
id: string;
|
1326
|
+
status: string | null;
|
1326
1327
|
createdAt: Date;
|
1327
1328
|
updatedAt: Date;
|
1328
1329
|
deletedAt: Date | null;
|
@@ -1331,7 +1332,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1331
1332
|
bucketName: string;
|
1332
1333
|
fileSize: number;
|
1333
1334
|
fileUrl: string | null;
|
1334
|
-
status?: string | undefined;
|
1335
1335
|
}>, "many">;
|
1336
1336
|
}, "strip", z.ZodTypeAny, {
|
1337
1337
|
id: string;
|
@@ -1358,6 +1358,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1358
1358
|
dateValue: Date | null;
|
1359
1359
|
uploads: {
|
1360
1360
|
id: string;
|
1361
|
+
status: string | null;
|
1361
1362
|
createdAt: Date;
|
1362
1363
|
updatedAt: Date;
|
1363
1364
|
deletedAt: Date | null;
|
@@ -1366,7 +1367,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1366
1367
|
bucketName: string;
|
1367
1368
|
fileSize: number;
|
1368
1369
|
fileUrl: string | null;
|
1369
|
-
status?: string | undefined;
|
1370
1370
|
}[];
|
1371
1371
|
}, {
|
1372
1372
|
id: string;
|
@@ -1393,6 +1393,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1393
1393
|
dateValue: Date | null;
|
1394
1394
|
uploads: {
|
1395
1395
|
id: string;
|
1396
|
+
status: string | null;
|
1396
1397
|
createdAt: Date;
|
1397
1398
|
updatedAt: Date;
|
1398
1399
|
deletedAt: Date | null;
|
@@ -1401,7 +1402,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1401
1402
|
bucketName: string;
|
1402
1403
|
fileSize: number;
|
1403
1404
|
fileUrl: string | null;
|
1404
|
-
status?: string | undefined;
|
1405
1405
|
}[];
|
1406
1406
|
}>, "many">;
|
1407
1407
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1541,6 +1541,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1541
1541
|
dateValue: Date | null;
|
1542
1542
|
uploads: {
|
1543
1543
|
id: string;
|
1544
|
+
status: string | null;
|
1544
1545
|
createdAt: Date;
|
1545
1546
|
updatedAt: Date;
|
1546
1547
|
deletedAt: Date | null;
|
@@ -1549,7 +1550,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1549
1550
|
bucketName: string;
|
1550
1551
|
fileSize: number;
|
1551
1552
|
fileUrl: string | null;
|
1552
|
-
status?: string | undefined;
|
1553
1553
|
}[];
|
1554
1554
|
}[];
|
1555
1555
|
company: {
|
@@ -1637,6 +1637,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1637
1637
|
dateValue: Date | null;
|
1638
1638
|
uploads: {
|
1639
1639
|
id: string;
|
1640
|
+
status: string | null;
|
1640
1641
|
createdAt: Date;
|
1641
1642
|
updatedAt: Date;
|
1642
1643
|
deletedAt: Date | null;
|
@@ -1645,7 +1646,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
1645
1646
|
bucketName: string;
|
1646
1647
|
fileSize: number;
|
1647
1648
|
fileUrl: string | null;
|
1648
|
-
status?: string | undefined;
|
1649
1649
|
}[];
|
1650
1650
|
}[];
|
1651
1651
|
company: {
|
@@ -2119,6 +2119,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
2119
2119
|
dateValue: Date | null;
|
2120
2120
|
uploads: {
|
2121
2121
|
id: string;
|
2122
|
+
status: string | null;
|
2122
2123
|
createdAt: Date;
|
2123
2124
|
updatedAt: Date;
|
2124
2125
|
deletedAt: Date | null;
|
@@ -2127,7 +2128,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
2127
2128
|
bucketName: string;
|
2128
2129
|
fileSize: number;
|
2129
2130
|
fileUrl: string | null;
|
2130
|
-
status?: string | undefined;
|
2131
2131
|
}[];
|
2132
2132
|
}[];
|
2133
2133
|
company: {
|
@@ -2208,6 +2208,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
2208
2208
|
dateValue: Date | null;
|
2209
2209
|
uploads: {
|
2210
2210
|
id: string;
|
2211
|
+
status: string | null;
|
2211
2212
|
createdAt: Date;
|
2212
2213
|
updatedAt: Date;
|
2213
2214
|
deletedAt: Date | null;
|
@@ -2216,7 +2217,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
2216
2217
|
bucketName: string;
|
2217
2218
|
fileSize: number;
|
2218
2219
|
fileUrl: string | null;
|
2219
|
-
status?: string | undefined;
|
2220
2220
|
}[];
|
2221
2221
|
}[];
|
2222
2222
|
tags: {
|
@@ -2445,6 +2445,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
2445
2445
|
dateValue: Date | null;
|
2446
2446
|
uploads: {
|
2447
2447
|
id: string;
|
2448
|
+
status: string | null;
|
2448
2449
|
createdAt: Date;
|
2449
2450
|
updatedAt: Date;
|
2450
2451
|
deletedAt: Date | null;
|
@@ -2453,7 +2454,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
2453
2454
|
bucketName: string;
|
2454
2455
|
fileSize: number;
|
2455
2456
|
fileUrl: string | null;
|
2456
|
-
status?: string | undefined;
|
2457
2457
|
}[];
|
2458
2458
|
}[];
|
2459
2459
|
company: {
|
@@ -2534,6 +2534,7 @@ export declare const TicketSchema: z.ZodObject<{
|
|
2534
2534
|
dateValue: Date | null;
|
2535
2535
|
uploads: {
|
2536
2536
|
id: string;
|
2537
|
+
status: string | null;
|
2537
2538
|
createdAt: Date;
|
2538
2539
|
updatedAt: Date;
|
2539
2540
|
deletedAt: Date | null;
|
@@ -2542,7 +2543,6 @@ export declare const TicketSchema: z.ZodObject<{
|
|
2542
2543
|
bucketName: string;
|
2543
2544
|
fileSize: number;
|
2544
2545
|
fileUrl: string | null;
|
2545
|
-
status?: string | undefined;
|
2546
2546
|
}[];
|
2547
2547
|
}[];
|
2548
2548
|
tags: {
|
@@ -9,9 +9,10 @@ export declare const UploadSchema: z.ZodObject<{
|
|
9
9
|
fileSize: z.ZodNumber;
|
10
10
|
fileKey: z.ZodString;
|
11
11
|
fileUrl: z.ZodNullable<z.ZodString>;
|
12
|
-
status: z.
|
12
|
+
status: z.ZodNullable<z.ZodString>;
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
14
14
|
id: string;
|
15
|
+
status: string | null;
|
15
16
|
createdAt: Date;
|
16
17
|
updatedAt: Date;
|
17
18
|
deletedAt: Date | null;
|
@@ -20,9 +21,9 @@ export declare const UploadSchema: z.ZodObject<{
|
|
20
21
|
bucketName: string;
|
21
22
|
fileSize: number;
|
22
23
|
fileUrl: string | null;
|
23
|
-
status?: string | undefined;
|
24
24
|
}, {
|
25
25
|
id: string;
|
26
|
+
status: string | null;
|
26
27
|
createdAt: Date;
|
27
28
|
updatedAt: Date;
|
28
29
|
deletedAt: Date | null;
|
@@ -31,7 +32,6 @@ export declare const UploadSchema: z.ZodObject<{
|
|
31
32
|
bucketName: string;
|
32
33
|
fileSize: number;
|
33
34
|
fileUrl: string | null;
|
34
|
-
status?: string | undefined;
|
35
35
|
}>;
|
36
36
|
export declare const RenameAttachmentSchema: z.ZodObject<{
|
37
37
|
newName: z.ZodString;
|