@kl1/contracts 1.1.41-uat → 1.1.43-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 +2963 -2771
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2961 -2772
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +1692 -73
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +36 -0
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +7 -0
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +767 -59
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +136 -20
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +153 -61
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +3972 -1072
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +75 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +61 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +145 -53
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +150 -58
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +5 -5
- package/dist/src/messenger/index.d.ts +180 -54
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +43 -0
- package/dist/src/messenger/validation.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +286 -53
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +192 -53
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +132 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/package.json +4 -10
@@ -247,7 +247,7 @@ export declare const StickerSchema: z.ZodObject<{
|
|
247
247
|
}>;
|
248
248
|
export declare const SendMessageSchema: z.ZodObject<{
|
249
249
|
roomId: z.ZodString;
|
250
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
250
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
251
251
|
message: z.ZodOptional<z.ZodString>;
|
252
252
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
253
253
|
bucketName: z.ZodString;
|
@@ -491,7 +491,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
491
491
|
file: z.ZodOptional<z.ZodType<File, z.ZodTypeDef, File>>;
|
492
492
|
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
493
493
|
}, "strip", z.ZodTypeAny, {
|
494
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
494
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
495
495
|
roomId: string;
|
496
496
|
message?: string | undefined;
|
497
497
|
messageAttachments?: {
|
@@ -554,7 +554,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
554
554
|
file?: File | undefined;
|
555
555
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
556
556
|
}, {
|
557
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
557
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
558
558
|
roomId: string;
|
559
559
|
message?: string | undefined;
|
560
560
|
messageAttachments?: {
|
@@ -854,6 +854,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
854
854
|
connectedUserId?: string | null | undefined;
|
855
855
|
}>;
|
856
856
|
export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
857
|
+
isBot: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
857
858
|
room: z.ZodObject<{
|
858
859
|
id: z.ZodString;
|
859
860
|
lastMessage: z.ZodOptional<z.ZodString>;
|
@@ -1208,7 +1209,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1208
1209
|
message: z.ZodObject<{
|
1209
1210
|
message: z.ZodOptional<z.ZodString>;
|
1210
1211
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
1211
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
1212
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
1212
1213
|
readAt: z.ZodOptional<z.ZodDate>;
|
1213
1214
|
metadata: z.ZodOptional<z.ZodAny>;
|
1214
1215
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -1224,18 +1225,21 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1224
1225
|
fileName: z.ZodString;
|
1225
1226
|
fileSize: z.ZodNumber;
|
1226
1227
|
fileKey: z.ZodString;
|
1228
|
+
originalUrl: z.ZodOptional<z.ZodString>;
|
1227
1229
|
}, "strip", z.ZodTypeAny, {
|
1228
1230
|
fileName: string;
|
1229
1231
|
fileKey: string;
|
1230
1232
|
bucketName: string;
|
1231
1233
|
fileSize: number;
|
1234
|
+
originalUrl?: string | undefined;
|
1232
1235
|
}, {
|
1233
1236
|
fileName: string;
|
1234
1237
|
fileKey: string;
|
1235
1238
|
bucketName: string;
|
1236
1239
|
fileSize: number;
|
1240
|
+
originalUrl?: string | undefined;
|
1237
1241
|
}>>;
|
1238
|
-
sender: z.ZodObject<{
|
1242
|
+
sender: z.ZodOptional<z.ZodObject<{
|
1239
1243
|
id: z.ZodString;
|
1240
1244
|
name: z.ZodString;
|
1241
1245
|
email: z.ZodString;
|
@@ -1253,17 +1257,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1253
1257
|
name: string;
|
1254
1258
|
email: string;
|
1255
1259
|
phone: string | null;
|
1256
|
-
}
|
1260
|
+
}>>;
|
1257
1261
|
}, "strip", z.ZodTypeAny, {
|
1258
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1262
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1259
1263
|
direction: "incoming" | "outgoing" | "system";
|
1260
|
-
sender: {
|
1261
|
-
id: string;
|
1262
|
-
address: string | null;
|
1263
|
-
name: string;
|
1264
|
-
email: string;
|
1265
|
-
phone: string | null;
|
1266
|
-
};
|
1267
1264
|
message?: string | undefined;
|
1268
1265
|
readAt?: Date | undefined;
|
1269
1266
|
metadata?: any;
|
@@ -1280,17 +1277,18 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1280
1277
|
fileKey: string;
|
1281
1278
|
bucketName: string;
|
1282
1279
|
fileSize: number;
|
1280
|
+
originalUrl?: string | undefined;
|
1283
1281
|
} | undefined;
|
1284
|
-
|
1285
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1286
|
-
direction: "incoming" | "outgoing" | "system";
|
1287
|
-
sender: {
|
1282
|
+
sender?: {
|
1288
1283
|
id: string;
|
1289
1284
|
address: string | null;
|
1290
1285
|
name: string;
|
1291
1286
|
email: string;
|
1292
1287
|
phone: string | null;
|
1293
|
-
};
|
1288
|
+
} | undefined;
|
1289
|
+
}, {
|
1290
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1291
|
+
direction: "incoming" | "outgoing" | "system";
|
1294
1292
|
message?: string | undefined;
|
1295
1293
|
readAt?: Date | undefined;
|
1296
1294
|
metadata?: any;
|
@@ -1307,19 +1305,20 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1307
1305
|
fileKey: string;
|
1308
1306
|
bucketName: string;
|
1309
1307
|
fileSize: number;
|
1308
|
+
originalUrl?: string | undefined;
|
1310
1309
|
} | undefined;
|
1311
|
-
|
1312
|
-
}, "strip", z.ZodTypeAny, {
|
1313
|
-
message: {
|
1314
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1315
|
-
direction: "incoming" | "outgoing" | "system";
|
1316
|
-
sender: {
|
1310
|
+
sender?: {
|
1317
1311
|
id: string;
|
1318
1312
|
address: string | null;
|
1319
1313
|
name: string;
|
1320
1314
|
email: string;
|
1321
1315
|
phone: string | null;
|
1322
|
-
};
|
1316
|
+
} | undefined;
|
1317
|
+
}>;
|
1318
|
+
}, "strip", z.ZodTypeAny, {
|
1319
|
+
message: {
|
1320
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1321
|
+
direction: "incoming" | "outgoing" | "system";
|
1323
1322
|
message?: string | undefined;
|
1324
1323
|
readAt?: Date | undefined;
|
1325
1324
|
metadata?: any;
|
@@ -1336,6 +1335,14 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1336
1335
|
fileKey: string;
|
1337
1336
|
bucketName: string;
|
1338
1337
|
fileSize: number;
|
1338
|
+
originalUrl?: string | undefined;
|
1339
|
+
} | undefined;
|
1340
|
+
sender?: {
|
1341
|
+
id: string;
|
1342
|
+
address: string | null;
|
1343
|
+
name: string;
|
1344
|
+
email: string;
|
1345
|
+
phone: string | null;
|
1339
1346
|
} | undefined;
|
1340
1347
|
};
|
1341
1348
|
room: {
|
@@ -1405,17 +1412,11 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1405
1412
|
metadata?: any;
|
1406
1413
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1407
1414
|
};
|
1415
|
+
isBot: boolean | null;
|
1408
1416
|
}, {
|
1409
1417
|
message: {
|
1410
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1418
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
1411
1419
|
direction: "incoming" | "outgoing" | "system";
|
1412
|
-
sender: {
|
1413
|
-
id: string;
|
1414
|
-
address: string | null;
|
1415
|
-
name: string;
|
1416
|
-
email: string;
|
1417
|
-
phone: string | null;
|
1418
|
-
};
|
1419
1420
|
message?: string | undefined;
|
1420
1421
|
readAt?: Date | undefined;
|
1421
1422
|
metadata?: any;
|
@@ -1432,6 +1433,14 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1432
1433
|
fileKey: string;
|
1433
1434
|
bucketName: string;
|
1434
1435
|
fileSize: number;
|
1436
|
+
originalUrl?: string | undefined;
|
1437
|
+
} | undefined;
|
1438
|
+
sender?: {
|
1439
|
+
id: string;
|
1440
|
+
address: string | null;
|
1441
|
+
name: string;
|
1442
|
+
email: string;
|
1443
|
+
phone: string | null;
|
1435
1444
|
} | undefined;
|
1436
1445
|
};
|
1437
1446
|
room: {
|
@@ -1501,6 +1510,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
1501
1510
|
metadata?: any;
|
1502
1511
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1503
1512
|
};
|
1513
|
+
isBot?: boolean | null | undefined;
|
1504
1514
|
}>;
|
1505
1515
|
export declare const SendMessageResponseSchema: z.ZodObject<{
|
1506
1516
|
requestId: z.ZodString;
|
@@ -1511,7 +1521,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
1511
1521
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1512
1522
|
message: z.ZodString;
|
1513
1523
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
1514
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
1524
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
1515
1525
|
readAt: z.ZodDate;
|
1516
1526
|
metadata: z.ZodAny;
|
1517
1527
|
platformId: z.ZodString;
|
@@ -1536,6 +1546,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
1536
1546
|
firstResponseAt: z.ZodDate;
|
1537
1547
|
firstResponseTime: z.ZodNumber;
|
1538
1548
|
isLatest: z.ZodBoolean;
|
1549
|
+
isBotRoom: z.ZodBoolean;
|
1539
1550
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
1540
1551
|
platformContact: z.ZodObject<{
|
1541
1552
|
id: z.ZodString;
|
@@ -2911,6 +2922,25 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
2911
2922
|
isReloginRequired: z.ZodBoolean;
|
2912
2923
|
connectedUserName: z.ZodString;
|
2913
2924
|
connectedUserId: z.ZodString;
|
2925
|
+
botpressBot: z.ZodNullable<z.ZodObject<{
|
2926
|
+
id: z.ZodString;
|
2927
|
+
name: z.ZodString;
|
2928
|
+
botId: z.ZodString;
|
2929
|
+
integrationId: z.ZodString;
|
2930
|
+
accessToken: z.ZodString;
|
2931
|
+
}, "strip", z.ZodTypeAny, {
|
2932
|
+
id: string;
|
2933
|
+
name: string;
|
2934
|
+
accessToken: string;
|
2935
|
+
botId: string;
|
2936
|
+
integrationId: string;
|
2937
|
+
}, {
|
2938
|
+
id: string;
|
2939
|
+
name: string;
|
2940
|
+
accessToken: string;
|
2941
|
+
botId: string;
|
2942
|
+
integrationId: string;
|
2943
|
+
}>>;
|
2914
2944
|
actor: z.ZodObject<{
|
2915
2945
|
id: z.ZodString;
|
2916
2946
|
createdAt: z.ZodDate;
|
@@ -3179,6 +3209,13 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
3179
3209
|
isReloginRequired: boolean;
|
3180
3210
|
connectedUserName: string;
|
3181
3211
|
connectedUserId: string;
|
3212
|
+
botpressBot: {
|
3213
|
+
id: string;
|
3214
|
+
name: string;
|
3215
|
+
accessToken: string;
|
3216
|
+
botId: string;
|
3217
|
+
integrationId: string;
|
3218
|
+
} | null;
|
3182
3219
|
}, {
|
3183
3220
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat";
|
3184
3221
|
id: string;
|
@@ -3243,6 +3280,13 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
3243
3280
|
isReloginRequired: boolean;
|
3244
3281
|
connectedUserName: string;
|
3245
3282
|
connectedUserId: string;
|
3283
|
+
botpressBot: {
|
3284
|
+
id: string;
|
3285
|
+
name: string;
|
3286
|
+
accessToken: string;
|
3287
|
+
botId: string;
|
3288
|
+
integrationId: string;
|
3289
|
+
} | null;
|
3246
3290
|
}>;
|
3247
3291
|
cxlog: z.ZodObject<{
|
3248
3292
|
id: z.ZodString;
|
@@ -3754,6 +3798,13 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
3754
3798
|
isReloginRequired: boolean;
|
3755
3799
|
connectedUserName: string;
|
3756
3800
|
connectedUserId: string;
|
3801
|
+
botpressBot: {
|
3802
|
+
id: string;
|
3803
|
+
name: string;
|
3804
|
+
accessToken: string;
|
3805
|
+
botId: string;
|
3806
|
+
integrationId: string;
|
3807
|
+
} | null;
|
3757
3808
|
};
|
3758
3809
|
direction: "incoming" | "outgoing" | "system";
|
3759
3810
|
status: number;
|
@@ -3968,6 +4019,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
3968
4019
|
};
|
3969
4020
|
closedAt: Date;
|
3970
4021
|
lastMessageAt: Date | null;
|
4022
|
+
isBotRoom: boolean;
|
3971
4023
|
cxlog: {
|
3972
4024
|
id: string;
|
3973
4025
|
channel: string | null;
|
@@ -4112,6 +4164,13 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
4112
4164
|
isReloginRequired: boolean;
|
4113
4165
|
connectedUserName: string;
|
4114
4166
|
connectedUserId: string;
|
4167
|
+
botpressBot: {
|
4168
|
+
id: string;
|
4169
|
+
name: string;
|
4170
|
+
accessToken: string;
|
4171
|
+
botId: string;
|
4172
|
+
integrationId: string;
|
4173
|
+
} | null;
|
4115
4174
|
};
|
4116
4175
|
direction: "incoming" | "outgoing" | "system";
|
4117
4176
|
status: number;
|
@@ -4326,6 +4385,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
4326
4385
|
};
|
4327
4386
|
closedAt: Date;
|
4328
4387
|
lastMessageAt: Date | null;
|
4388
|
+
isBotRoom: boolean;
|
4329
4389
|
cxlog: {
|
4330
4390
|
id: string;
|
4331
4391
|
channel: string | null;
|
@@ -4446,7 +4506,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
4446
4506
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4447
4507
|
message: z.ZodString;
|
4448
4508
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
4449
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
4509
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
4450
4510
|
readAt: z.ZodDate;
|
4451
4511
|
metadata: z.ZodAny;
|
4452
4512
|
platformId: z.ZodString;
|
@@ -5104,7 +5164,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5104
5164
|
};
|
5105
5165
|
}>;
|
5106
5166
|
}, "strip", z.ZodTypeAny, {
|
5107
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
5167
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
5108
5168
|
message: string;
|
5109
5169
|
id: string;
|
5110
5170
|
url: string;
|
@@ -5156,7 +5216,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5156
5216
|
telephonySignature: string | null;
|
5157
5217
|
};
|
5158
5218
|
};
|
5159
|
-
platformId: string;
|
5160
5219
|
upload: {
|
5161
5220
|
id: string;
|
5162
5221
|
status: string | null;
|
@@ -5213,6 +5272,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5213
5272
|
telephonySignature: string | null;
|
5214
5273
|
};
|
5215
5274
|
};
|
5275
|
+
platformId: string;
|
5216
5276
|
readAt: Date;
|
5217
5277
|
platformMessageId: string;
|
5218
5278
|
replyPlatformMessageId: string;
|
@@ -5266,7 +5326,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5266
5326
|
metadata?: any;
|
5267
5327
|
template?: any;
|
5268
5328
|
}, {
|
5269
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
5329
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
5270
5330
|
message: string;
|
5271
5331
|
id: string;
|
5272
5332
|
url: string;
|
@@ -5318,7 +5378,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5318
5378
|
telephonySignature: string | null;
|
5319
5379
|
};
|
5320
5380
|
};
|
5321
|
-
platformId: string;
|
5322
5381
|
upload: {
|
5323
5382
|
id: string;
|
5324
5383
|
status: string | null;
|
@@ -5375,6 +5434,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5375
5434
|
telephonySignature: string | null;
|
5376
5435
|
};
|
5377
5436
|
};
|
5437
|
+
platformId: string;
|
5378
5438
|
readAt: Date;
|
5379
5439
|
platformMessageId: string;
|
5380
5440
|
replyPlatformMessageId: string;
|
@@ -6066,7 +6126,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6066
6126
|
isActive: boolean;
|
6067
6127
|
}>;
|
6068
6128
|
}, "strip", z.ZodTypeAny, {
|
6069
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
6129
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
6070
6130
|
message: string;
|
6071
6131
|
id: string;
|
6072
6132
|
url: string;
|
@@ -6118,7 +6178,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6118
6178
|
telephonySignature: string | null;
|
6119
6179
|
};
|
6120
6180
|
};
|
6121
|
-
platformId: string;
|
6122
6181
|
upload: {
|
6123
6182
|
id: string;
|
6124
6183
|
status: string | null;
|
@@ -6175,6 +6234,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6175
6234
|
telephonySignature: string | null;
|
6176
6235
|
};
|
6177
6236
|
};
|
6237
|
+
platformId: string;
|
6178
6238
|
room: {
|
6179
6239
|
id: string;
|
6180
6240
|
channel: {
|
@@ -6241,6 +6301,13 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6241
6301
|
isReloginRequired: boolean;
|
6242
6302
|
connectedUserName: string;
|
6243
6303
|
connectedUserId: string;
|
6304
|
+
botpressBot: {
|
6305
|
+
id: string;
|
6306
|
+
name: string;
|
6307
|
+
accessToken: string;
|
6308
|
+
botId: string;
|
6309
|
+
integrationId: string;
|
6310
|
+
} | null;
|
6244
6311
|
};
|
6245
6312
|
direction: "incoming" | "outgoing" | "system";
|
6246
6313
|
status: number;
|
@@ -6455,6 +6522,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6455
6522
|
};
|
6456
6523
|
closedAt: Date;
|
6457
6524
|
lastMessageAt: Date | null;
|
6525
|
+
isBotRoom: boolean;
|
6458
6526
|
cxlog: {
|
6459
6527
|
id: string;
|
6460
6528
|
channel: string | null;
|
@@ -6550,7 +6618,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6550
6618
|
previewUrl: string;
|
6551
6619
|
imageSetId: string;
|
6552
6620
|
repliedMessage: {
|
6553
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
6621
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
6554
6622
|
message: string;
|
6555
6623
|
id: string;
|
6556
6624
|
url: string;
|
@@ -6602,7 +6670,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6602
6670
|
telephonySignature: string | null;
|
6603
6671
|
};
|
6604
6672
|
};
|
6605
|
-
platformId: string;
|
6606
6673
|
upload: {
|
6607
6674
|
id: string;
|
6608
6675
|
status: string | null;
|
@@ -6659,6 +6726,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6659
6726
|
telephonySignature: string | null;
|
6660
6727
|
};
|
6661
6728
|
};
|
6729
|
+
platformId: string;
|
6662
6730
|
readAt: Date;
|
6663
6731
|
platformMessageId: string;
|
6664
6732
|
replyPlatformMessageId: string;
|
@@ -6759,7 +6827,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6759
6827
|
metadata?: any;
|
6760
6828
|
template?: any;
|
6761
6829
|
}, {
|
6762
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
6830
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
6763
6831
|
message: string;
|
6764
6832
|
id: string;
|
6765
6833
|
url: string;
|
@@ -6811,7 +6879,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6811
6879
|
telephonySignature: string | null;
|
6812
6880
|
};
|
6813
6881
|
};
|
6814
|
-
platformId: string;
|
6815
6882
|
upload: {
|
6816
6883
|
id: string;
|
6817
6884
|
status: string | null;
|
@@ -6868,6 +6935,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6868
6935
|
telephonySignature: string | null;
|
6869
6936
|
};
|
6870
6937
|
};
|
6938
|
+
platformId: string;
|
6871
6939
|
room: {
|
6872
6940
|
id: string;
|
6873
6941
|
channel: {
|
@@ -6934,6 +7002,13 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6934
7002
|
isReloginRequired: boolean;
|
6935
7003
|
connectedUserName: string;
|
6936
7004
|
connectedUserId: string;
|
7005
|
+
botpressBot: {
|
7006
|
+
id: string;
|
7007
|
+
name: string;
|
7008
|
+
accessToken: string;
|
7009
|
+
botId: string;
|
7010
|
+
integrationId: string;
|
7011
|
+
} | null;
|
6937
7012
|
};
|
6938
7013
|
direction: "incoming" | "outgoing" | "system";
|
6939
7014
|
status: number;
|
@@ -7148,6 +7223,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7148
7223
|
};
|
7149
7224
|
closedAt: Date;
|
7150
7225
|
lastMessageAt: Date | null;
|
7226
|
+
isBotRoom: boolean;
|
7151
7227
|
cxlog: {
|
7152
7228
|
id: string;
|
7153
7229
|
channel: string | null;
|
@@ -7243,7 +7319,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7243
7319
|
previewUrl: string;
|
7244
7320
|
imageSetId: string;
|
7245
7321
|
repliedMessage: {
|
7246
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
7322
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
7247
7323
|
message: string;
|
7248
7324
|
id: string;
|
7249
7325
|
url: string;
|
@@ -7295,7 +7371,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7295
7371
|
telephonySignature: string | null;
|
7296
7372
|
};
|
7297
7373
|
};
|
7298
|
-
platformId: string;
|
7299
7374
|
upload: {
|
7300
7375
|
id: string;
|
7301
7376
|
status: string | null;
|
@@ -7352,6 +7427,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7352
7427
|
telephonySignature: string | null;
|
7353
7428
|
};
|
7354
7429
|
};
|
7430
|
+
platformId: string;
|
7355
7431
|
readAt: Date;
|
7356
7432
|
platformMessageId: string;
|
7357
7433
|
replyPlatformMessageId: string;
|
@@ -7454,7 +7530,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7454
7530
|
}>;
|
7455
7531
|
}, "strip", z.ZodTypeAny, {
|
7456
7532
|
data: {
|
7457
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
7533
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
7458
7534
|
message: string;
|
7459
7535
|
id: string;
|
7460
7536
|
url: string;
|
@@ -7506,7 +7582,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7506
7582
|
telephonySignature: string | null;
|
7507
7583
|
};
|
7508
7584
|
};
|
7509
|
-
platformId: string;
|
7510
7585
|
upload: {
|
7511
7586
|
id: string;
|
7512
7587
|
status: string | null;
|
@@ -7563,6 +7638,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7563
7638
|
telephonySignature: string | null;
|
7564
7639
|
};
|
7565
7640
|
};
|
7641
|
+
platformId: string;
|
7566
7642
|
room: {
|
7567
7643
|
id: string;
|
7568
7644
|
channel: {
|
@@ -7629,6 +7705,13 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7629
7705
|
isReloginRequired: boolean;
|
7630
7706
|
connectedUserName: string;
|
7631
7707
|
connectedUserId: string;
|
7708
|
+
botpressBot: {
|
7709
|
+
id: string;
|
7710
|
+
name: string;
|
7711
|
+
accessToken: string;
|
7712
|
+
botId: string;
|
7713
|
+
integrationId: string;
|
7714
|
+
} | null;
|
7632
7715
|
};
|
7633
7716
|
direction: "incoming" | "outgoing" | "system";
|
7634
7717
|
status: number;
|
@@ -7843,6 +7926,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7843
7926
|
};
|
7844
7927
|
closedAt: Date;
|
7845
7928
|
lastMessageAt: Date | null;
|
7929
|
+
isBotRoom: boolean;
|
7846
7930
|
cxlog: {
|
7847
7931
|
id: string;
|
7848
7932
|
channel: string | null;
|
@@ -7938,7 +8022,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7938
8022
|
previewUrl: string;
|
7939
8023
|
imageSetId: string;
|
7940
8024
|
repliedMessage: {
|
7941
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
8025
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
7942
8026
|
message: string;
|
7943
8027
|
id: string;
|
7944
8028
|
url: string;
|
@@ -7990,7 +8074,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7990
8074
|
telephonySignature: string | null;
|
7991
8075
|
};
|
7992
8076
|
};
|
7993
|
-
platformId: string;
|
7994
8077
|
upload: {
|
7995
8078
|
id: string;
|
7996
8079
|
status: string | null;
|
@@ -8047,6 +8130,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8047
8130
|
telephonySignature: string | null;
|
8048
8131
|
};
|
8049
8132
|
};
|
8133
|
+
platformId: string;
|
8050
8134
|
readAt: Date;
|
8051
8135
|
platformMessageId: string;
|
8052
8136
|
replyPlatformMessageId: string;
|
@@ -8150,7 +8234,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8150
8234
|
requestId: string;
|
8151
8235
|
}, {
|
8152
8236
|
data: {
|
8153
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
8237
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
8154
8238
|
message: string;
|
8155
8239
|
id: string;
|
8156
8240
|
url: string;
|
@@ -8202,7 +8286,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8202
8286
|
telephonySignature: string | null;
|
8203
8287
|
};
|
8204
8288
|
};
|
8205
|
-
platformId: string;
|
8206
8289
|
upload: {
|
8207
8290
|
id: string;
|
8208
8291
|
status: string | null;
|
@@ -8259,6 +8342,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8259
8342
|
telephonySignature: string | null;
|
8260
8343
|
};
|
8261
8344
|
};
|
8345
|
+
platformId: string;
|
8262
8346
|
room: {
|
8263
8347
|
id: string;
|
8264
8348
|
channel: {
|
@@ -8325,6 +8409,13 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8325
8409
|
isReloginRequired: boolean;
|
8326
8410
|
connectedUserName: string;
|
8327
8411
|
connectedUserId: string;
|
8412
|
+
botpressBot: {
|
8413
|
+
id: string;
|
8414
|
+
name: string;
|
8415
|
+
accessToken: string;
|
8416
|
+
botId: string;
|
8417
|
+
integrationId: string;
|
8418
|
+
} | null;
|
8328
8419
|
};
|
8329
8420
|
direction: "incoming" | "outgoing" | "system";
|
8330
8421
|
status: number;
|
@@ -8539,6 +8630,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8539
8630
|
};
|
8540
8631
|
closedAt: Date;
|
8541
8632
|
lastMessageAt: Date | null;
|
8633
|
+
isBotRoom: boolean;
|
8542
8634
|
cxlog: {
|
8543
8635
|
id: string;
|
8544
8636
|
channel: string | null;
|
@@ -8634,7 +8726,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8634
8726
|
previewUrl: string;
|
8635
8727
|
imageSetId: string;
|
8636
8728
|
repliedMessage: {
|
8637
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
8729
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
8638
8730
|
message: string;
|
8639
8731
|
id: string;
|
8640
8732
|
url: string;
|
@@ -8686,7 +8778,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8686
8778
|
telephonySignature: string | null;
|
8687
8779
|
};
|
8688
8780
|
};
|
8689
|
-
platformId: string;
|
8690
8781
|
upload: {
|
8691
8782
|
id: string;
|
8692
8783
|
status: string | null;
|
@@ -8743,6 +8834,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8743
8834
|
telephonySignature: string | null;
|
8744
8835
|
};
|
8745
8836
|
};
|
8837
|
+
platformId: string;
|
8746
8838
|
readAt: Date;
|
8747
8839
|
platformMessageId: string;
|
8748
8840
|
replyPlatformMessageId: string;
|
@@ -9002,7 +9094,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
9002
9094
|
deletedAt: z.ZodNullable<z.ZodString>;
|
9003
9095
|
message: z.ZodOptional<z.ZodString>;
|
9004
9096
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
9005
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
9097
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
9006
9098
|
metadata: z.ZodAny;
|
9007
9099
|
platformId: z.ZodString;
|
9008
9100
|
platformMessageId: z.ZodString;
|
@@ -12140,7 +12232,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
12140
12232
|
};
|
12141
12233
|
}>>>;
|
12142
12234
|
}, "strip", z.ZodTypeAny, {
|
12143
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
12235
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
12144
12236
|
id: string;
|
12145
12237
|
direction: "incoming" | "outgoing" | "system";
|
12146
12238
|
createdAt: string;
|
@@ -12608,7 +12700,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
12608
12700
|
};
|
12609
12701
|
} | null | undefined;
|
12610
12702
|
}, {
|
12611
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
12703
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
12612
12704
|
id: string;
|
12613
12705
|
direction: "incoming" | "outgoing" | "system";
|
12614
12706
|
createdAt: string;
|
@@ -13078,7 +13170,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
13078
13170
|
}>;
|
13079
13171
|
}, "strip", z.ZodTypeAny, {
|
13080
13172
|
message: {
|
13081
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
13173
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
13082
13174
|
id: string;
|
13083
13175
|
direction: "incoming" | "outgoing" | "system";
|
13084
13176
|
createdAt: string;
|
@@ -13548,7 +13640,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
13548
13640
|
};
|
13549
13641
|
}, {
|
13550
13642
|
message: {
|
13551
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
13643
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
13552
13644
|
id: string;
|
13553
13645
|
direction: "incoming" | "outgoing" | "system";
|
13554
13646
|
createdAt: string;
|