@kl1/contracts 1.2.26-uat → 1.2.28-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/api-contracts/src/channel/index.d.ts +179 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +12 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +14 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +3987 -298
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +1020 -129
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +608 -76
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +5414 -586
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +13 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +4 -4
- package/dist/api-contracts/src/dashboard/schema.d.ts +2 -2
- package/dist/api-contracts/src/facebook-feed/index.d.ts +624 -58
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +12 -3
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/index.d.ts +133 -2
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +25 -0
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/validation.d.ts +10 -0
- package/dist/api-contracts/src/hold-label/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +1 -0
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +585 -48
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +578 -53
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +16 -5
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +585 -48
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +7 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +85 -11
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/schema.d.ts +22 -0
- package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +555 -48
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +555 -48
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +1582 -56
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +569 -48
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +362 -10
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +3 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +4383 -4287
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4382 -4287
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -127,6 +127,7 @@ export declare const lineContract: {
|
|
|
127
127
|
channelId: z.ZodOptional<z.ZodString>;
|
|
128
128
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
129
129
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
130
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
130
131
|
}, "strip", z.ZodTypeAny, {
|
|
131
132
|
email: string;
|
|
132
133
|
wabaExternalId: string;
|
|
@@ -136,6 +137,7 @@ export declare const lineContract: {
|
|
|
136
137
|
channelId?: string | undefined;
|
|
137
138
|
status?: "active" | "pending" | undefined;
|
|
138
139
|
apiKey?: string | undefined;
|
|
140
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
139
141
|
}, {
|
|
140
142
|
email: string;
|
|
141
143
|
wabaExternalId: string;
|
|
@@ -145,6 +147,7 @@ export declare const lineContract: {
|
|
|
145
147
|
channelId?: string | undefined;
|
|
146
148
|
status?: "active" | "pending" | undefined;
|
|
147
149
|
apiKey?: string | undefined;
|
|
150
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
148
151
|
}>>;
|
|
149
152
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
150
153
|
mobileNumber: z.ZodString;
|
|
@@ -177,6 +180,7 @@ export declare const lineContract: {
|
|
|
177
180
|
channelId?: string | undefined;
|
|
178
181
|
status?: "active" | "pending" | undefined;
|
|
179
182
|
apiKey?: string | undefined;
|
|
183
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
180
184
|
} | undefined;
|
|
181
185
|
vonageCredentials?: {
|
|
182
186
|
apiKey: string;
|
|
@@ -201,6 +205,7 @@ export declare const lineContract: {
|
|
|
201
205
|
channelId?: string | undefined;
|
|
202
206
|
status?: "active" | "pending" | undefined;
|
|
203
207
|
apiKey?: string | undefined;
|
|
208
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
204
209
|
} | undefined;
|
|
205
210
|
vonageCredentials?: {
|
|
206
211
|
apiKey: string;
|
|
@@ -255,6 +260,7 @@ export declare const lineContract: {
|
|
|
255
260
|
channelId?: string | undefined;
|
|
256
261
|
status?: "active" | "pending" | undefined;
|
|
257
262
|
apiKey?: string | undefined;
|
|
263
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
258
264
|
} | undefined;
|
|
259
265
|
vonageCredentials?: {
|
|
260
266
|
apiKey: string;
|
|
@@ -297,6 +303,7 @@ export declare const lineContract: {
|
|
|
297
303
|
channelId?: string | undefined;
|
|
298
304
|
status?: "active" | "pending" | undefined;
|
|
299
305
|
apiKey?: string | undefined;
|
|
306
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
300
307
|
} | undefined;
|
|
301
308
|
vonageCredentials?: {
|
|
302
309
|
apiKey: string;
|
|
@@ -342,6 +349,7 @@ export declare const lineContract: {
|
|
|
342
349
|
channelId?: string | undefined;
|
|
343
350
|
status?: "active" | "pending" | undefined;
|
|
344
351
|
apiKey?: string | undefined;
|
|
352
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
345
353
|
} | undefined;
|
|
346
354
|
vonageCredentials?: {
|
|
347
355
|
apiKey: string;
|
|
@@ -416,6 +424,7 @@ export declare const lineContract: {
|
|
|
416
424
|
channelId?: string | undefined;
|
|
417
425
|
status?: "active" | "pending" | undefined;
|
|
418
426
|
apiKey?: string | undefined;
|
|
427
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
419
428
|
} | undefined;
|
|
420
429
|
vonageCredentials?: {
|
|
421
430
|
apiKey: string;
|
|
@@ -472,7 +481,7 @@ export declare const lineContract: {
|
|
|
472
481
|
message: z.ZodObject<{
|
|
473
482
|
message: z.ZodOptional<z.ZodString>;
|
|
474
483
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
475
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
484
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
476
485
|
readAt: z.ZodOptional<z.ZodDate>;
|
|
477
486
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
478
487
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -516,7 +525,7 @@ export declare const lineContract: {
|
|
|
516
525
|
phone: string | null;
|
|
517
526
|
}>;
|
|
518
527
|
}, "strip", z.ZodTypeAny, {
|
|
519
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
528
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
520
529
|
direction: "incoming" | "outgoing" | "system";
|
|
521
530
|
sender: {
|
|
522
531
|
name: string;
|
|
@@ -542,7 +551,7 @@ export declare const lineContract: {
|
|
|
542
551
|
fileSize: number;
|
|
543
552
|
} | undefined;
|
|
544
553
|
}, {
|
|
545
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
554
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
546
555
|
direction: "incoming" | "outgoing" | "system";
|
|
547
556
|
sender: {
|
|
548
557
|
name: string;
|
|
@@ -570,7 +579,7 @@ export declare const lineContract: {
|
|
|
570
579
|
}>;
|
|
571
580
|
}, "strip", z.ZodTypeAny, {
|
|
572
581
|
message: {
|
|
573
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
582
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
574
583
|
direction: "incoming" | "outgoing" | "system";
|
|
575
584
|
sender: {
|
|
576
585
|
name: string;
|
|
@@ -618,6 +627,7 @@ export declare const lineContract: {
|
|
|
618
627
|
channelId?: string | undefined;
|
|
619
628
|
status?: "active" | "pending" | undefined;
|
|
620
629
|
apiKey?: string | undefined;
|
|
630
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
621
631
|
} | undefined;
|
|
622
632
|
vonageCredentials?: {
|
|
623
633
|
apiKey: string;
|
|
@@ -675,7 +685,7 @@ export declare const lineContract: {
|
|
|
675
685
|
stickerId: number;
|
|
676
686
|
}, {
|
|
677
687
|
message: {
|
|
678
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
688
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
679
689
|
direction: "incoming" | "outgoing" | "system";
|
|
680
690
|
sender: {
|
|
681
691
|
name: string;
|
|
@@ -723,6 +733,7 @@ export declare const lineContract: {
|
|
|
723
733
|
channelId?: string | undefined;
|
|
724
734
|
status?: "active" | "pending" | undefined;
|
|
725
735
|
apiKey?: string | undefined;
|
|
736
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
726
737
|
} | undefined;
|
|
727
738
|
vonageCredentials?: {
|
|
728
739
|
apiKey: string;
|
|
@@ -883,6 +894,7 @@ export declare const lineContract: {
|
|
|
883
894
|
channelId: z.ZodOptional<z.ZodString>;
|
|
884
895
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
885
896
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
897
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
886
898
|
}, "strip", z.ZodTypeAny, {
|
|
887
899
|
email: string;
|
|
888
900
|
wabaExternalId: string;
|
|
@@ -892,6 +904,7 @@ export declare const lineContract: {
|
|
|
892
904
|
channelId?: string | undefined;
|
|
893
905
|
status?: "active" | "pending" | undefined;
|
|
894
906
|
apiKey?: string | undefined;
|
|
907
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
895
908
|
}, {
|
|
896
909
|
email: string;
|
|
897
910
|
wabaExternalId: string;
|
|
@@ -901,6 +914,7 @@ export declare const lineContract: {
|
|
|
901
914
|
channelId?: string | undefined;
|
|
902
915
|
status?: "active" | "pending" | undefined;
|
|
903
916
|
apiKey?: string | undefined;
|
|
917
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
904
918
|
}>>;
|
|
905
919
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
906
920
|
mobileNumber: z.ZodString;
|
|
@@ -933,6 +947,7 @@ export declare const lineContract: {
|
|
|
933
947
|
channelId?: string | undefined;
|
|
934
948
|
status?: "active" | "pending" | undefined;
|
|
935
949
|
apiKey?: string | undefined;
|
|
950
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
936
951
|
} | undefined;
|
|
937
952
|
vonageCredentials?: {
|
|
938
953
|
apiKey: string;
|
|
@@ -957,6 +972,7 @@ export declare const lineContract: {
|
|
|
957
972
|
channelId?: string | undefined;
|
|
958
973
|
status?: "active" | "pending" | undefined;
|
|
959
974
|
apiKey?: string | undefined;
|
|
975
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
960
976
|
} | undefined;
|
|
961
977
|
vonageCredentials?: {
|
|
962
978
|
apiKey: string;
|
|
@@ -1011,6 +1027,7 @@ export declare const lineContract: {
|
|
|
1011
1027
|
channelId?: string | undefined;
|
|
1012
1028
|
status?: "active" | "pending" | undefined;
|
|
1013
1029
|
apiKey?: string | undefined;
|
|
1030
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1014
1031
|
} | undefined;
|
|
1015
1032
|
vonageCredentials?: {
|
|
1016
1033
|
apiKey: string;
|
|
@@ -1053,6 +1070,7 @@ export declare const lineContract: {
|
|
|
1053
1070
|
channelId?: string | undefined;
|
|
1054
1071
|
status?: "active" | "pending" | undefined;
|
|
1055
1072
|
apiKey?: string | undefined;
|
|
1073
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1056
1074
|
} | undefined;
|
|
1057
1075
|
vonageCredentials?: {
|
|
1058
1076
|
apiKey: string;
|
|
@@ -1097,6 +1115,7 @@ export declare const lineContract: {
|
|
|
1097
1115
|
channelId?: string | undefined;
|
|
1098
1116
|
status?: "active" | "pending" | undefined;
|
|
1099
1117
|
apiKey?: string | undefined;
|
|
1118
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1100
1119
|
} | undefined;
|
|
1101
1120
|
vonageCredentials?: {
|
|
1102
1121
|
apiKey: string;
|
|
@@ -1142,6 +1161,7 @@ export declare const lineContract: {
|
|
|
1142
1161
|
channelId?: string | undefined;
|
|
1143
1162
|
status?: "active" | "pending" | undefined;
|
|
1144
1163
|
apiKey?: string | undefined;
|
|
1164
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1145
1165
|
} | undefined;
|
|
1146
1166
|
vonageCredentials?: {
|
|
1147
1167
|
apiKey: string;
|
|
@@ -1336,6 +1356,7 @@ export declare const lineContract: {
|
|
|
1336
1356
|
channelId: z.ZodOptional<z.ZodString>;
|
|
1337
1357
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
1338
1358
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
1359
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
1339
1360
|
}, "strip", z.ZodTypeAny, {
|
|
1340
1361
|
email: string;
|
|
1341
1362
|
wabaExternalId: string;
|
|
@@ -1345,6 +1366,7 @@ export declare const lineContract: {
|
|
|
1345
1366
|
channelId?: string | undefined;
|
|
1346
1367
|
status?: "active" | "pending" | undefined;
|
|
1347
1368
|
apiKey?: string | undefined;
|
|
1369
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1348
1370
|
}, {
|
|
1349
1371
|
email: string;
|
|
1350
1372
|
wabaExternalId: string;
|
|
@@ -1354,6 +1376,7 @@ export declare const lineContract: {
|
|
|
1354
1376
|
channelId?: string | undefined;
|
|
1355
1377
|
status?: "active" | "pending" | undefined;
|
|
1356
1378
|
apiKey?: string | undefined;
|
|
1379
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1357
1380
|
}>>;
|
|
1358
1381
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
1359
1382
|
mobileNumber: z.ZodString;
|
|
@@ -1386,6 +1409,7 @@ export declare const lineContract: {
|
|
|
1386
1409
|
channelId?: string | undefined;
|
|
1387
1410
|
status?: "active" | "pending" | undefined;
|
|
1388
1411
|
apiKey?: string | undefined;
|
|
1412
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1389
1413
|
} | undefined;
|
|
1390
1414
|
vonageCredentials?: {
|
|
1391
1415
|
apiKey: string;
|
|
@@ -1410,6 +1434,7 @@ export declare const lineContract: {
|
|
|
1410
1434
|
channelId?: string | undefined;
|
|
1411
1435
|
status?: "active" | "pending" | undefined;
|
|
1412
1436
|
apiKey?: string | undefined;
|
|
1437
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1413
1438
|
} | undefined;
|
|
1414
1439
|
vonageCredentials?: {
|
|
1415
1440
|
apiKey: string;
|
|
@@ -1464,6 +1489,7 @@ export declare const lineContract: {
|
|
|
1464
1489
|
channelId?: string | undefined;
|
|
1465
1490
|
status?: "active" | "pending" | undefined;
|
|
1466
1491
|
apiKey?: string | undefined;
|
|
1492
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1467
1493
|
} | undefined;
|
|
1468
1494
|
vonageCredentials?: {
|
|
1469
1495
|
apiKey: string;
|
|
@@ -1506,6 +1532,7 @@ export declare const lineContract: {
|
|
|
1506
1532
|
channelId?: string | undefined;
|
|
1507
1533
|
status?: "active" | "pending" | undefined;
|
|
1508
1534
|
apiKey?: string | undefined;
|
|
1535
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1509
1536
|
} | undefined;
|
|
1510
1537
|
vonageCredentials?: {
|
|
1511
1538
|
apiKey: string;
|
|
@@ -1530,7 +1557,7 @@ export declare const lineContract: {
|
|
|
1530
1557
|
} | undefined;
|
|
1531
1558
|
}>;
|
|
1532
1559
|
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
|
1533
|
-
telegramBusinessConnectionId: z.ZodNullable<z.ZodString
|
|
1560
|
+
telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1534
1561
|
}, "strip", z.ZodTypeAny, {
|
|
1535
1562
|
id: string;
|
|
1536
1563
|
channel: {
|
|
@@ -1553,6 +1580,7 @@ export declare const lineContract: {
|
|
|
1553
1580
|
channelId?: string | undefined;
|
|
1554
1581
|
status?: "active" | "pending" | undefined;
|
|
1555
1582
|
apiKey?: string | undefined;
|
|
1583
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1556
1584
|
} | undefined;
|
|
1557
1585
|
vonageCredentials?: {
|
|
1558
1586
|
apiKey: string;
|
|
@@ -1612,11 +1640,11 @@ export declare const lineContract: {
|
|
|
1612
1640
|
id: string;
|
|
1613
1641
|
email: string;
|
|
1614
1642
|
} | null;
|
|
1615
|
-
telegramBusinessConnectionId: string | null;
|
|
1616
1643
|
lastMessage?: string | undefined;
|
|
1617
1644
|
handleTime?: number | undefined;
|
|
1618
1645
|
metadata?: any;
|
|
1619
1646
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
|
1647
|
+
telegramBusinessConnectionId?: string | null | undefined;
|
|
1620
1648
|
}, {
|
|
1621
1649
|
id: string;
|
|
1622
1650
|
channel: {
|
|
@@ -1639,6 +1667,7 @@ export declare const lineContract: {
|
|
|
1639
1667
|
channelId?: string | undefined;
|
|
1640
1668
|
status?: "active" | "pending" | undefined;
|
|
1641
1669
|
apiKey?: string | undefined;
|
|
1670
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1642
1671
|
} | undefined;
|
|
1643
1672
|
vonageCredentials?: {
|
|
1644
1673
|
apiKey: string;
|
|
@@ -1698,17 +1727,17 @@ export declare const lineContract: {
|
|
|
1698
1727
|
id: string;
|
|
1699
1728
|
email: string;
|
|
1700
1729
|
} | null;
|
|
1701
|
-
telegramBusinessConnectionId: string | null;
|
|
1702
1730
|
lastMessage?: string | undefined;
|
|
1703
1731
|
handleTime?: number | undefined;
|
|
1704
1732
|
metadata?: any;
|
|
1705
1733
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
|
1734
|
+
telegramBusinessConnectionId?: string | null | undefined;
|
|
1706
1735
|
}>;
|
|
1707
1736
|
message: z.ZodObject<{
|
|
1708
1737
|
id: z.ZodOptional<z.ZodString>;
|
|
1709
1738
|
message: z.ZodOptional<z.ZodString>;
|
|
1710
1739
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
1711
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
1740
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
1712
1741
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
1713
1742
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
1714
1743
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -1764,7 +1793,7 @@ export declare const lineContract: {
|
|
|
1764
1793
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
1765
1794
|
label: z.ZodOptional<z.ZodString>;
|
|
1766
1795
|
}, "strip", z.ZodTypeAny, {
|
|
1767
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
1796
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1768
1797
|
direction: "incoming" | "outgoing" | "system";
|
|
1769
1798
|
id?: string | undefined;
|
|
1770
1799
|
message?: string | undefined;
|
|
@@ -1799,7 +1828,7 @@ export declare const lineContract: {
|
|
|
1799
1828
|
editedAt?: string | Date | null | undefined;
|
|
1800
1829
|
label?: string | undefined;
|
|
1801
1830
|
}, {
|
|
1802
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
1831
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1803
1832
|
direction: "incoming" | "outgoing" | "system";
|
|
1804
1833
|
id?: string | undefined;
|
|
1805
1834
|
message?: string | undefined;
|
|
@@ -1836,7 +1865,7 @@ export declare const lineContract: {
|
|
|
1836
1865
|
}>;
|
|
1837
1866
|
}, "strip", z.ZodTypeAny, {
|
|
1838
1867
|
message: {
|
|
1839
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
1868
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1840
1869
|
direction: "incoming" | "outgoing" | "system";
|
|
1841
1870
|
id?: string | undefined;
|
|
1842
1871
|
message?: string | undefined;
|
|
@@ -1893,6 +1922,7 @@ export declare const lineContract: {
|
|
|
1893
1922
|
channelId?: string | undefined;
|
|
1894
1923
|
status?: "active" | "pending" | undefined;
|
|
1895
1924
|
apiKey?: string | undefined;
|
|
1925
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
1896
1926
|
} | undefined;
|
|
1897
1927
|
vonageCredentials?: {
|
|
1898
1928
|
apiKey: string;
|
|
@@ -1952,16 +1982,16 @@ export declare const lineContract: {
|
|
|
1952
1982
|
id: string;
|
|
1953
1983
|
email: string;
|
|
1954
1984
|
} | null;
|
|
1955
|
-
telegramBusinessConnectionId: string | null;
|
|
1956
1985
|
lastMessage?: string | undefined;
|
|
1957
1986
|
handleTime?: number | undefined;
|
|
1958
1987
|
metadata?: any;
|
|
1959
1988
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
|
1989
|
+
telegramBusinessConnectionId?: string | null | undefined;
|
|
1960
1990
|
};
|
|
1961
1991
|
isBot: boolean | null;
|
|
1962
1992
|
}, {
|
|
1963
1993
|
message: {
|
|
1964
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
1994
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1965
1995
|
direction: "incoming" | "outgoing" | "system";
|
|
1966
1996
|
id?: string | undefined;
|
|
1967
1997
|
message?: string | undefined;
|
|
@@ -2018,6 +2048,7 @@ export declare const lineContract: {
|
|
|
2018
2048
|
channelId?: string | undefined;
|
|
2019
2049
|
status?: "active" | "pending" | undefined;
|
|
2020
2050
|
apiKey?: string | undefined;
|
|
2051
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2021
2052
|
} | undefined;
|
|
2022
2053
|
vonageCredentials?: {
|
|
2023
2054
|
apiKey: string;
|
|
@@ -2077,11 +2108,11 @@ export declare const lineContract: {
|
|
|
2077
2108
|
id: string;
|
|
2078
2109
|
email: string;
|
|
2079
2110
|
} | null;
|
|
2080
|
-
telegramBusinessConnectionId: string | null;
|
|
2081
2111
|
lastMessage?: string | undefined;
|
|
2082
2112
|
handleTime?: number | undefined;
|
|
2083
2113
|
metadata?: any;
|
|
2084
2114
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
|
2115
|
+
telegramBusinessConnectionId?: string | null | undefined;
|
|
2085
2116
|
};
|
|
2086
2117
|
isBot?: boolean | null | undefined;
|
|
2087
2118
|
}>;
|
|
@@ -2090,7 +2121,7 @@ export declare const lineContract: {
|
|
|
2090
2121
|
200: z.ZodObject<{
|
|
2091
2122
|
requestId: z.ZodString;
|
|
2092
2123
|
data: z.ZodObject<{
|
|
2093
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
2124
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
2094
2125
|
message: z.ZodString;
|
|
2095
2126
|
id: z.ZodString;
|
|
2096
2127
|
url: z.ZodString;
|
|
@@ -4038,6 +4069,7 @@ export declare const lineContract: {
|
|
|
4038
4069
|
channelId: z.ZodOptional<z.ZodString>;
|
|
4039
4070
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
4040
4071
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
4072
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
4041
4073
|
}, "strip", z.ZodTypeAny, {
|
|
4042
4074
|
email: string;
|
|
4043
4075
|
wabaExternalId: string;
|
|
@@ -4047,6 +4079,7 @@ export declare const lineContract: {
|
|
|
4047
4079
|
channelId?: string | undefined;
|
|
4048
4080
|
status?: "active" | "pending" | undefined;
|
|
4049
4081
|
apiKey?: string | undefined;
|
|
4082
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4050
4083
|
}, {
|
|
4051
4084
|
email: string;
|
|
4052
4085
|
wabaExternalId: string;
|
|
@@ -4056,6 +4089,7 @@ export declare const lineContract: {
|
|
|
4056
4089
|
channelId?: string | undefined;
|
|
4057
4090
|
status?: "active" | "pending" | undefined;
|
|
4058
4091
|
apiKey?: string | undefined;
|
|
4092
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4059
4093
|
}>>;
|
|
4060
4094
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
4061
4095
|
mobileNumber: z.ZodString;
|
|
@@ -4088,6 +4122,7 @@ export declare const lineContract: {
|
|
|
4088
4122
|
channelId?: string | undefined;
|
|
4089
4123
|
status?: "active" | "pending" | undefined;
|
|
4090
4124
|
apiKey?: string | undefined;
|
|
4125
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4091
4126
|
} | undefined;
|
|
4092
4127
|
vonageCredentials?: {
|
|
4093
4128
|
apiKey: string;
|
|
@@ -4112,6 +4147,7 @@ export declare const lineContract: {
|
|
|
4112
4147
|
channelId?: string | undefined;
|
|
4113
4148
|
status?: "active" | "pending" | undefined;
|
|
4114
4149
|
apiKey?: string | undefined;
|
|
4150
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4115
4151
|
} | undefined;
|
|
4116
4152
|
vonageCredentials?: {
|
|
4117
4153
|
apiKey: string;
|
|
@@ -4370,6 +4406,7 @@ export declare const lineContract: {
|
|
|
4370
4406
|
channelId?: string | undefined;
|
|
4371
4407
|
status?: "active" | "pending" | undefined;
|
|
4372
4408
|
apiKey?: string | undefined;
|
|
4409
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4373
4410
|
} | undefined;
|
|
4374
4411
|
vonageCredentials?: {
|
|
4375
4412
|
apiKey: string;
|
|
@@ -4459,6 +4496,7 @@ export declare const lineContract: {
|
|
|
4459
4496
|
channelId?: string | undefined;
|
|
4460
4497
|
status?: "active" | "pending" | undefined;
|
|
4461
4498
|
apiKey?: string | undefined;
|
|
4499
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4462
4500
|
} | undefined;
|
|
4463
4501
|
vonageCredentials?: {
|
|
4464
4502
|
apiKey: string;
|
|
@@ -4531,17 +4569,17 @@ export declare const lineContract: {
|
|
|
4531
4569
|
}>;
|
|
4532
4570
|
cxlog: z.ZodObject<{
|
|
4533
4571
|
id: z.ZodString;
|
|
4572
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
4573
|
+
direction: z.ZodNullable<z.ZodString>;
|
|
4534
4574
|
createdAt: z.ZodDate;
|
|
4535
4575
|
updatedAt: z.ZodDate;
|
|
4536
4576
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4537
|
-
caseId: z.ZodNumber;
|
|
4538
4577
|
entityId: z.ZodString;
|
|
4539
|
-
entityName: z.ZodString;
|
|
4540
|
-
contactId: z.ZodNullable<z.ZodString>;
|
|
4541
|
-
channel: z.ZodNullable<z.ZodString>;
|
|
4542
4578
|
queueId: z.ZodNullable<z.ZodString>;
|
|
4579
|
+
contactId: z.ZodNullable<z.ZodString>;
|
|
4580
|
+
caseId: z.ZodNumber;
|
|
4581
|
+
entityName: z.ZodString;
|
|
4543
4582
|
agentId: z.ZodNullable<z.ZodString>;
|
|
4544
|
-
direction: z.ZodNullable<z.ZodString>;
|
|
4545
4583
|
startedDate: z.ZodNullable<z.ZodDate>;
|
|
4546
4584
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
|
4547
4585
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4811,6 +4849,69 @@ export declare const lineContract: {
|
|
|
4811
4849
|
dateValue: Date | null;
|
|
4812
4850
|
}[] | null | undefined;
|
|
4813
4851
|
}>>;
|
|
4852
|
+
holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4853
|
+
id: z.ZodString;
|
|
4854
|
+
createdAt: z.ZodDate;
|
|
4855
|
+
updatedAt: z.ZodDate;
|
|
4856
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4857
|
+
startedAt: z.ZodString;
|
|
4858
|
+
endedAt: z.ZodNullable<z.ZodString>;
|
|
4859
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
4860
|
+
holdLabel: z.ZodObject<{
|
|
4861
|
+
id: z.ZodString;
|
|
4862
|
+
createdAt: z.ZodDate;
|
|
4863
|
+
updatedAt: z.ZodDate;
|
|
4864
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4865
|
+
name: z.ZodString;
|
|
4866
|
+
position: z.ZodNumber;
|
|
4867
|
+
}, "strip", z.ZodTypeAny, {
|
|
4868
|
+
name: string;
|
|
4869
|
+
id: string;
|
|
4870
|
+
position: number;
|
|
4871
|
+
createdAt: Date;
|
|
4872
|
+
updatedAt: Date;
|
|
4873
|
+
deletedAt: Date | null;
|
|
4874
|
+
}, {
|
|
4875
|
+
name: string;
|
|
4876
|
+
id: string;
|
|
4877
|
+
position: number;
|
|
4878
|
+
createdAt: Date;
|
|
4879
|
+
updatedAt: Date;
|
|
4880
|
+
deletedAt: Date | null;
|
|
4881
|
+
}>;
|
|
4882
|
+
}, "strip", z.ZodTypeAny, {
|
|
4883
|
+
id: string;
|
|
4884
|
+
createdAt: Date;
|
|
4885
|
+
updatedAt: Date;
|
|
4886
|
+
deletedAt: Date | null;
|
|
4887
|
+
startedAt: string;
|
|
4888
|
+
endedAt: string | null;
|
|
4889
|
+
duration: number | null;
|
|
4890
|
+
holdLabel: {
|
|
4891
|
+
name: string;
|
|
4892
|
+
id: string;
|
|
4893
|
+
position: number;
|
|
4894
|
+
createdAt: Date;
|
|
4895
|
+
updatedAt: Date;
|
|
4896
|
+
deletedAt: Date | null;
|
|
4897
|
+
};
|
|
4898
|
+
}, {
|
|
4899
|
+
id: string;
|
|
4900
|
+
createdAt: Date;
|
|
4901
|
+
updatedAt: Date;
|
|
4902
|
+
deletedAt: Date | null;
|
|
4903
|
+
startedAt: string;
|
|
4904
|
+
endedAt: string | null;
|
|
4905
|
+
duration: number | null;
|
|
4906
|
+
holdLabel: {
|
|
4907
|
+
name: string;
|
|
4908
|
+
id: string;
|
|
4909
|
+
position: number;
|
|
4910
|
+
createdAt: Date;
|
|
4911
|
+
updatedAt: Date;
|
|
4912
|
+
deletedAt: Date | null;
|
|
4913
|
+
};
|
|
4914
|
+
}>, "many">>>;
|
|
4814
4915
|
}, "strip", z.ZodTypeAny, {
|
|
4815
4916
|
id: string;
|
|
4816
4917
|
channel: string | null;
|
|
@@ -4879,6 +4980,23 @@ export declare const lineContract: {
|
|
|
4879
4980
|
dateValue: Date | null;
|
|
4880
4981
|
}[] | null | undefined;
|
|
4881
4982
|
} | null;
|
|
4983
|
+
holdLogs?: {
|
|
4984
|
+
id: string;
|
|
4985
|
+
createdAt: Date;
|
|
4986
|
+
updatedAt: Date;
|
|
4987
|
+
deletedAt: Date | null;
|
|
4988
|
+
startedAt: string;
|
|
4989
|
+
endedAt: string | null;
|
|
4990
|
+
duration: number | null;
|
|
4991
|
+
holdLabel: {
|
|
4992
|
+
name: string;
|
|
4993
|
+
id: string;
|
|
4994
|
+
position: number;
|
|
4995
|
+
createdAt: Date;
|
|
4996
|
+
updatedAt: Date;
|
|
4997
|
+
deletedAt: Date | null;
|
|
4998
|
+
};
|
|
4999
|
+
}[] | null | undefined;
|
|
4882
5000
|
}, {
|
|
4883
5001
|
id: string;
|
|
4884
5002
|
channel: string | null;
|
|
@@ -4947,6 +5065,23 @@ export declare const lineContract: {
|
|
|
4947
5065
|
dateValue: Date | null;
|
|
4948
5066
|
}[] | null | undefined;
|
|
4949
5067
|
} | null;
|
|
5068
|
+
holdLogs?: {
|
|
5069
|
+
id: string;
|
|
5070
|
+
createdAt: Date;
|
|
5071
|
+
updatedAt: Date;
|
|
5072
|
+
deletedAt: Date | null;
|
|
5073
|
+
startedAt: string;
|
|
5074
|
+
endedAt: string | null;
|
|
5075
|
+
duration: number | null;
|
|
5076
|
+
holdLabel: {
|
|
5077
|
+
name: string;
|
|
5078
|
+
id: string;
|
|
5079
|
+
position: number;
|
|
5080
|
+
createdAt: Date;
|
|
5081
|
+
updatedAt: Date;
|
|
5082
|
+
deletedAt: Date | null;
|
|
5083
|
+
};
|
|
5084
|
+
}[] | null | undefined;
|
|
4950
5085
|
}>;
|
|
4951
5086
|
workflowRule: z.ZodObject<{
|
|
4952
5087
|
id: z.ZodString;
|
|
@@ -4996,6 +5131,7 @@ export declare const lineContract: {
|
|
|
4996
5131
|
channelId?: string | undefined;
|
|
4997
5132
|
status?: "active" | "pending" | undefined;
|
|
4998
5133
|
apiKey?: string | undefined;
|
|
5134
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4999
5135
|
} | undefined;
|
|
5000
5136
|
vonageCredentials?: {
|
|
5001
5137
|
apiKey: string;
|
|
@@ -5363,6 +5499,23 @@ export declare const lineContract: {
|
|
|
5363
5499
|
dateValue: Date | null;
|
|
5364
5500
|
}[] | null | undefined;
|
|
5365
5501
|
} | null;
|
|
5502
|
+
holdLogs?: {
|
|
5503
|
+
id: string;
|
|
5504
|
+
createdAt: Date;
|
|
5505
|
+
updatedAt: Date;
|
|
5506
|
+
deletedAt: Date | null;
|
|
5507
|
+
startedAt: string;
|
|
5508
|
+
endedAt: string | null;
|
|
5509
|
+
duration: number | null;
|
|
5510
|
+
holdLabel: {
|
|
5511
|
+
name: string;
|
|
5512
|
+
id: string;
|
|
5513
|
+
position: number;
|
|
5514
|
+
createdAt: Date;
|
|
5515
|
+
updatedAt: Date;
|
|
5516
|
+
deletedAt: Date | null;
|
|
5517
|
+
};
|
|
5518
|
+
}[] | null | undefined;
|
|
5366
5519
|
};
|
|
5367
5520
|
workflowRule: {
|
|
5368
5521
|
name: string;
|
|
@@ -5396,6 +5549,7 @@ export declare const lineContract: {
|
|
|
5396
5549
|
channelId?: string | undefined;
|
|
5397
5550
|
status?: "active" | "pending" | undefined;
|
|
5398
5551
|
apiKey?: string | undefined;
|
|
5552
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5399
5553
|
} | undefined;
|
|
5400
5554
|
vonageCredentials?: {
|
|
5401
5555
|
apiKey: string;
|
|
@@ -5763,6 +5917,23 @@ export declare const lineContract: {
|
|
|
5763
5917
|
dateValue: Date | null;
|
|
5764
5918
|
}[] | null | undefined;
|
|
5765
5919
|
} | null;
|
|
5920
|
+
holdLogs?: {
|
|
5921
|
+
id: string;
|
|
5922
|
+
createdAt: Date;
|
|
5923
|
+
updatedAt: Date;
|
|
5924
|
+
deletedAt: Date | null;
|
|
5925
|
+
startedAt: string;
|
|
5926
|
+
endedAt: string | null;
|
|
5927
|
+
duration: number | null;
|
|
5928
|
+
holdLabel: {
|
|
5929
|
+
name: string;
|
|
5930
|
+
id: string;
|
|
5931
|
+
position: number;
|
|
5932
|
+
createdAt: Date;
|
|
5933
|
+
updatedAt: Date;
|
|
5934
|
+
deletedAt: Date | null;
|
|
5935
|
+
};
|
|
5936
|
+
}[] | null | undefined;
|
|
5766
5937
|
};
|
|
5767
5938
|
workflowRule: {
|
|
5768
5939
|
name: string;
|
|
@@ -5813,7 +5984,7 @@ export declare const lineContract: {
|
|
|
5813
5984
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5814
5985
|
message: z.ZodString;
|
|
5815
5986
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
5816
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
5987
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
5817
5988
|
readAt: z.ZodDate;
|
|
5818
5989
|
metadata: z.ZodAny;
|
|
5819
5990
|
platformId: z.ZodString;
|
|
@@ -6471,7 +6642,7 @@ export declare const lineContract: {
|
|
|
6471
6642
|
};
|
|
6472
6643
|
}>;
|
|
6473
6644
|
}, "strip", z.ZodTypeAny, {
|
|
6474
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
6645
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
6475
6646
|
message: string;
|
|
6476
6647
|
id: string;
|
|
6477
6648
|
url: string;
|
|
@@ -6633,7 +6804,7 @@ export declare const lineContract: {
|
|
|
6633
6804
|
metadata?: any;
|
|
6634
6805
|
template?: any;
|
|
6635
6806
|
}, {
|
|
6636
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
6807
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
6637
6808
|
message: string;
|
|
6638
6809
|
id: string;
|
|
6639
6810
|
url: string;
|
|
@@ -7007,7 +7178,7 @@ export declare const lineContract: {
|
|
|
7007
7178
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7008
7179
|
message: z.ZodString;
|
|
7009
7180
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
7010
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
7181
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
7011
7182
|
readAt: z.ZodDate;
|
|
7012
7183
|
metadata: z.ZodAny;
|
|
7013
7184
|
platformId: z.ZodString;
|
|
@@ -8512,6 +8683,7 @@ export declare const lineContract: {
|
|
|
8512
8683
|
channelId: z.ZodOptional<z.ZodString>;
|
|
8513
8684
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
8514
8685
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
8686
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
8515
8687
|
}, "strip", z.ZodTypeAny, {
|
|
8516
8688
|
email: string;
|
|
8517
8689
|
wabaExternalId: string;
|
|
@@ -8521,6 +8693,7 @@ export declare const lineContract: {
|
|
|
8521
8693
|
channelId?: string | undefined;
|
|
8522
8694
|
status?: "active" | "pending" | undefined;
|
|
8523
8695
|
apiKey?: string | undefined;
|
|
8696
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8524
8697
|
}, {
|
|
8525
8698
|
email: string;
|
|
8526
8699
|
wabaExternalId: string;
|
|
@@ -8530,6 +8703,7 @@ export declare const lineContract: {
|
|
|
8530
8703
|
channelId?: string | undefined;
|
|
8531
8704
|
status?: "active" | "pending" | undefined;
|
|
8532
8705
|
apiKey?: string | undefined;
|
|
8706
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8533
8707
|
}>>;
|
|
8534
8708
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
8535
8709
|
mobileNumber: z.ZodString;
|
|
@@ -8562,6 +8736,7 @@ export declare const lineContract: {
|
|
|
8562
8736
|
channelId?: string | undefined;
|
|
8563
8737
|
status?: "active" | "pending" | undefined;
|
|
8564
8738
|
apiKey?: string | undefined;
|
|
8739
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8565
8740
|
} | undefined;
|
|
8566
8741
|
vonageCredentials?: {
|
|
8567
8742
|
apiKey: string;
|
|
@@ -8586,6 +8761,7 @@ export declare const lineContract: {
|
|
|
8586
8761
|
channelId?: string | undefined;
|
|
8587
8762
|
status?: "active" | "pending" | undefined;
|
|
8588
8763
|
apiKey?: string | undefined;
|
|
8764
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8589
8765
|
} | undefined;
|
|
8590
8766
|
vonageCredentials?: {
|
|
8591
8767
|
apiKey: string;
|
|
@@ -8844,6 +9020,7 @@ export declare const lineContract: {
|
|
|
8844
9020
|
channelId?: string | undefined;
|
|
8845
9021
|
status?: "active" | "pending" | undefined;
|
|
8846
9022
|
apiKey?: string | undefined;
|
|
9023
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8847
9024
|
} | undefined;
|
|
8848
9025
|
vonageCredentials?: {
|
|
8849
9026
|
apiKey: string;
|
|
@@ -8933,6 +9110,7 @@ export declare const lineContract: {
|
|
|
8933
9110
|
channelId?: string | undefined;
|
|
8934
9111
|
status?: "active" | "pending" | undefined;
|
|
8935
9112
|
apiKey?: string | undefined;
|
|
9113
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8936
9114
|
} | undefined;
|
|
8937
9115
|
vonageCredentials?: {
|
|
8938
9116
|
apiKey: string;
|
|
@@ -9005,17 +9183,17 @@ export declare const lineContract: {
|
|
|
9005
9183
|
}>;
|
|
9006
9184
|
cxlog: z.ZodObject<{
|
|
9007
9185
|
id: z.ZodString;
|
|
9186
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
9187
|
+
direction: z.ZodNullable<z.ZodString>;
|
|
9008
9188
|
createdAt: z.ZodDate;
|
|
9009
9189
|
updatedAt: z.ZodDate;
|
|
9010
9190
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9011
|
-
caseId: z.ZodNumber;
|
|
9012
9191
|
entityId: z.ZodString;
|
|
9013
|
-
entityName: z.ZodString;
|
|
9014
|
-
contactId: z.ZodNullable<z.ZodString>;
|
|
9015
|
-
channel: z.ZodNullable<z.ZodString>;
|
|
9016
9192
|
queueId: z.ZodNullable<z.ZodString>;
|
|
9193
|
+
contactId: z.ZodNullable<z.ZodString>;
|
|
9194
|
+
caseId: z.ZodNumber;
|
|
9195
|
+
entityName: z.ZodString;
|
|
9017
9196
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9018
|
-
direction: z.ZodNullable<z.ZodString>;
|
|
9019
9197
|
startedDate: z.ZodNullable<z.ZodDate>;
|
|
9020
9198
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
|
9021
9199
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
|
@@ -9285,6 +9463,69 @@ export declare const lineContract: {
|
|
|
9285
9463
|
dateValue: Date | null;
|
|
9286
9464
|
}[] | null | undefined;
|
|
9287
9465
|
}>>;
|
|
9466
|
+
holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9467
|
+
id: z.ZodString;
|
|
9468
|
+
createdAt: z.ZodDate;
|
|
9469
|
+
updatedAt: z.ZodDate;
|
|
9470
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9471
|
+
startedAt: z.ZodString;
|
|
9472
|
+
endedAt: z.ZodNullable<z.ZodString>;
|
|
9473
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
9474
|
+
holdLabel: z.ZodObject<{
|
|
9475
|
+
id: z.ZodString;
|
|
9476
|
+
createdAt: z.ZodDate;
|
|
9477
|
+
updatedAt: z.ZodDate;
|
|
9478
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9479
|
+
name: z.ZodString;
|
|
9480
|
+
position: z.ZodNumber;
|
|
9481
|
+
}, "strip", z.ZodTypeAny, {
|
|
9482
|
+
name: string;
|
|
9483
|
+
id: string;
|
|
9484
|
+
position: number;
|
|
9485
|
+
createdAt: Date;
|
|
9486
|
+
updatedAt: Date;
|
|
9487
|
+
deletedAt: Date | null;
|
|
9488
|
+
}, {
|
|
9489
|
+
name: string;
|
|
9490
|
+
id: string;
|
|
9491
|
+
position: number;
|
|
9492
|
+
createdAt: Date;
|
|
9493
|
+
updatedAt: Date;
|
|
9494
|
+
deletedAt: Date | null;
|
|
9495
|
+
}>;
|
|
9496
|
+
}, "strip", z.ZodTypeAny, {
|
|
9497
|
+
id: string;
|
|
9498
|
+
createdAt: Date;
|
|
9499
|
+
updatedAt: Date;
|
|
9500
|
+
deletedAt: Date | null;
|
|
9501
|
+
startedAt: string;
|
|
9502
|
+
endedAt: string | null;
|
|
9503
|
+
duration: number | null;
|
|
9504
|
+
holdLabel: {
|
|
9505
|
+
name: string;
|
|
9506
|
+
id: string;
|
|
9507
|
+
position: number;
|
|
9508
|
+
createdAt: Date;
|
|
9509
|
+
updatedAt: Date;
|
|
9510
|
+
deletedAt: Date | null;
|
|
9511
|
+
};
|
|
9512
|
+
}, {
|
|
9513
|
+
id: string;
|
|
9514
|
+
createdAt: Date;
|
|
9515
|
+
updatedAt: Date;
|
|
9516
|
+
deletedAt: Date | null;
|
|
9517
|
+
startedAt: string;
|
|
9518
|
+
endedAt: string | null;
|
|
9519
|
+
duration: number | null;
|
|
9520
|
+
holdLabel: {
|
|
9521
|
+
name: string;
|
|
9522
|
+
id: string;
|
|
9523
|
+
position: number;
|
|
9524
|
+
createdAt: Date;
|
|
9525
|
+
updatedAt: Date;
|
|
9526
|
+
deletedAt: Date | null;
|
|
9527
|
+
};
|
|
9528
|
+
}>, "many">>>;
|
|
9288
9529
|
}, "strip", z.ZodTypeAny, {
|
|
9289
9530
|
id: string;
|
|
9290
9531
|
channel: string | null;
|
|
@@ -9353,6 +9594,23 @@ export declare const lineContract: {
|
|
|
9353
9594
|
dateValue: Date | null;
|
|
9354
9595
|
}[] | null | undefined;
|
|
9355
9596
|
} | null;
|
|
9597
|
+
holdLogs?: {
|
|
9598
|
+
id: string;
|
|
9599
|
+
createdAt: Date;
|
|
9600
|
+
updatedAt: Date;
|
|
9601
|
+
deletedAt: Date | null;
|
|
9602
|
+
startedAt: string;
|
|
9603
|
+
endedAt: string | null;
|
|
9604
|
+
duration: number | null;
|
|
9605
|
+
holdLabel: {
|
|
9606
|
+
name: string;
|
|
9607
|
+
id: string;
|
|
9608
|
+
position: number;
|
|
9609
|
+
createdAt: Date;
|
|
9610
|
+
updatedAt: Date;
|
|
9611
|
+
deletedAt: Date | null;
|
|
9612
|
+
};
|
|
9613
|
+
}[] | null | undefined;
|
|
9356
9614
|
}, {
|
|
9357
9615
|
id: string;
|
|
9358
9616
|
channel: string | null;
|
|
@@ -9421,6 +9679,23 @@ export declare const lineContract: {
|
|
|
9421
9679
|
dateValue: Date | null;
|
|
9422
9680
|
}[] | null | undefined;
|
|
9423
9681
|
} | null;
|
|
9682
|
+
holdLogs?: {
|
|
9683
|
+
id: string;
|
|
9684
|
+
createdAt: Date;
|
|
9685
|
+
updatedAt: Date;
|
|
9686
|
+
deletedAt: Date | null;
|
|
9687
|
+
startedAt: string;
|
|
9688
|
+
endedAt: string | null;
|
|
9689
|
+
duration: number | null;
|
|
9690
|
+
holdLabel: {
|
|
9691
|
+
name: string;
|
|
9692
|
+
id: string;
|
|
9693
|
+
position: number;
|
|
9694
|
+
createdAt: Date;
|
|
9695
|
+
updatedAt: Date;
|
|
9696
|
+
deletedAt: Date | null;
|
|
9697
|
+
};
|
|
9698
|
+
}[] | null | undefined;
|
|
9424
9699
|
}>;
|
|
9425
9700
|
workflowRule: z.ZodObject<{
|
|
9426
9701
|
id: z.ZodString;
|
|
@@ -9470,6 +9745,7 @@ export declare const lineContract: {
|
|
|
9470
9745
|
channelId?: string | undefined;
|
|
9471
9746
|
status?: "active" | "pending" | undefined;
|
|
9472
9747
|
apiKey?: string | undefined;
|
|
9748
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9473
9749
|
} | undefined;
|
|
9474
9750
|
vonageCredentials?: {
|
|
9475
9751
|
apiKey: string;
|
|
@@ -9837,6 +10113,23 @@ export declare const lineContract: {
|
|
|
9837
10113
|
dateValue: Date | null;
|
|
9838
10114
|
}[] | null | undefined;
|
|
9839
10115
|
} | null;
|
|
10116
|
+
holdLogs?: {
|
|
10117
|
+
id: string;
|
|
10118
|
+
createdAt: Date;
|
|
10119
|
+
updatedAt: Date;
|
|
10120
|
+
deletedAt: Date | null;
|
|
10121
|
+
startedAt: string;
|
|
10122
|
+
endedAt: string | null;
|
|
10123
|
+
duration: number | null;
|
|
10124
|
+
holdLabel: {
|
|
10125
|
+
name: string;
|
|
10126
|
+
id: string;
|
|
10127
|
+
position: number;
|
|
10128
|
+
createdAt: Date;
|
|
10129
|
+
updatedAt: Date;
|
|
10130
|
+
deletedAt: Date | null;
|
|
10131
|
+
};
|
|
10132
|
+
}[] | null | undefined;
|
|
9840
10133
|
};
|
|
9841
10134
|
workflowRule: {
|
|
9842
10135
|
name: string;
|
|
@@ -9870,6 +10163,7 @@ export declare const lineContract: {
|
|
|
9870
10163
|
channelId?: string | undefined;
|
|
9871
10164
|
status?: "active" | "pending" | undefined;
|
|
9872
10165
|
apiKey?: string | undefined;
|
|
10166
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9873
10167
|
} | undefined;
|
|
9874
10168
|
vonageCredentials?: {
|
|
9875
10169
|
apiKey: string;
|
|
@@ -10237,6 +10531,23 @@ export declare const lineContract: {
|
|
|
10237
10531
|
dateValue: Date | null;
|
|
10238
10532
|
}[] | null | undefined;
|
|
10239
10533
|
} | null;
|
|
10534
|
+
holdLogs?: {
|
|
10535
|
+
id: string;
|
|
10536
|
+
createdAt: Date;
|
|
10537
|
+
updatedAt: Date;
|
|
10538
|
+
deletedAt: Date | null;
|
|
10539
|
+
startedAt: string;
|
|
10540
|
+
endedAt: string | null;
|
|
10541
|
+
duration: number | null;
|
|
10542
|
+
holdLabel: {
|
|
10543
|
+
name: string;
|
|
10544
|
+
id: string;
|
|
10545
|
+
position: number;
|
|
10546
|
+
createdAt: Date;
|
|
10547
|
+
updatedAt: Date;
|
|
10548
|
+
deletedAt: Date | null;
|
|
10549
|
+
};
|
|
10550
|
+
}[] | null | undefined;
|
|
10240
10551
|
};
|
|
10241
10552
|
workflowRule: {
|
|
10242
10553
|
name: string;
|
|
@@ -10290,7 +10601,7 @@ export declare const lineContract: {
|
|
|
10290
10601
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
10291
10602
|
message: z.ZodString;
|
|
10292
10603
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
10293
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
10604
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
10294
10605
|
readAt: z.ZodDate;
|
|
10295
10606
|
metadata: z.ZodAny;
|
|
10296
10607
|
platformId: z.ZodString;
|
|
@@ -10948,7 +11259,7 @@ export declare const lineContract: {
|
|
|
10948
11259
|
};
|
|
10949
11260
|
}>;
|
|
10950
11261
|
}, "strip", z.ZodTypeAny, {
|
|
10951
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
11262
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
10952
11263
|
message: string;
|
|
10953
11264
|
id: string;
|
|
10954
11265
|
url: string;
|
|
@@ -11110,7 +11421,7 @@ export declare const lineContract: {
|
|
|
11110
11421
|
metadata?: any;
|
|
11111
11422
|
template?: any;
|
|
11112
11423
|
}, {
|
|
11113
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
11424
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
11114
11425
|
message: string;
|
|
11115
11426
|
id: string;
|
|
11116
11427
|
url: string;
|
|
@@ -11912,7 +12223,7 @@ export declare const lineContract: {
|
|
|
11912
12223
|
editedMessageid: z.ZodString;
|
|
11913
12224
|
label: z.ZodOptional<z.ZodString>;
|
|
11914
12225
|
}, "strip", z.ZodTypeAny, {
|
|
11915
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
12226
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
11916
12227
|
message: string;
|
|
11917
12228
|
id: string;
|
|
11918
12229
|
url: string;
|
|
@@ -12043,6 +12354,7 @@ export declare const lineContract: {
|
|
|
12043
12354
|
channelId?: string | undefined;
|
|
12044
12355
|
status?: "active" | "pending" | undefined;
|
|
12045
12356
|
apiKey?: string | undefined;
|
|
12357
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12046
12358
|
} | undefined;
|
|
12047
12359
|
vonageCredentials?: {
|
|
12048
12360
|
apiKey: string;
|
|
@@ -12410,6 +12722,23 @@ export declare const lineContract: {
|
|
|
12410
12722
|
dateValue: Date | null;
|
|
12411
12723
|
}[] | null | undefined;
|
|
12412
12724
|
} | null;
|
|
12725
|
+
holdLogs?: {
|
|
12726
|
+
id: string;
|
|
12727
|
+
createdAt: Date;
|
|
12728
|
+
updatedAt: Date;
|
|
12729
|
+
deletedAt: Date | null;
|
|
12730
|
+
startedAt: string;
|
|
12731
|
+
endedAt: string | null;
|
|
12732
|
+
duration: number | null;
|
|
12733
|
+
holdLabel: {
|
|
12734
|
+
name: string;
|
|
12735
|
+
id: string;
|
|
12736
|
+
position: number;
|
|
12737
|
+
createdAt: Date;
|
|
12738
|
+
updatedAt: Date;
|
|
12739
|
+
deletedAt: Date | null;
|
|
12740
|
+
};
|
|
12741
|
+
}[] | null | undefined;
|
|
12413
12742
|
};
|
|
12414
12743
|
workflowRule: {
|
|
12415
12744
|
name: string;
|
|
@@ -12438,7 +12767,7 @@ export declare const lineContract: {
|
|
|
12438
12767
|
previewUrl: string;
|
|
12439
12768
|
imageSetId: string;
|
|
12440
12769
|
repliedMessage: {
|
|
12441
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
12770
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
12442
12771
|
message: string;
|
|
12443
12772
|
id: string;
|
|
12444
12773
|
url: string;
|
|
@@ -12649,7 +12978,7 @@ export declare const lineContract: {
|
|
|
12649
12978
|
template?: any;
|
|
12650
12979
|
label?: string | undefined;
|
|
12651
12980
|
}, {
|
|
12652
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
12981
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
12653
12982
|
message: string;
|
|
12654
12983
|
id: string;
|
|
12655
12984
|
url: string;
|
|
@@ -12780,6 +13109,7 @@ export declare const lineContract: {
|
|
|
12780
13109
|
channelId?: string | undefined;
|
|
12781
13110
|
status?: "active" | "pending" | undefined;
|
|
12782
13111
|
apiKey?: string | undefined;
|
|
13112
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12783
13113
|
} | undefined;
|
|
12784
13114
|
vonageCredentials?: {
|
|
12785
13115
|
apiKey: string;
|
|
@@ -13147,6 +13477,23 @@ export declare const lineContract: {
|
|
|
13147
13477
|
dateValue: Date | null;
|
|
13148
13478
|
}[] | null | undefined;
|
|
13149
13479
|
} | null;
|
|
13480
|
+
holdLogs?: {
|
|
13481
|
+
id: string;
|
|
13482
|
+
createdAt: Date;
|
|
13483
|
+
updatedAt: Date;
|
|
13484
|
+
deletedAt: Date | null;
|
|
13485
|
+
startedAt: string;
|
|
13486
|
+
endedAt: string | null;
|
|
13487
|
+
duration: number | null;
|
|
13488
|
+
holdLabel: {
|
|
13489
|
+
name: string;
|
|
13490
|
+
id: string;
|
|
13491
|
+
position: number;
|
|
13492
|
+
createdAt: Date;
|
|
13493
|
+
updatedAt: Date;
|
|
13494
|
+
deletedAt: Date | null;
|
|
13495
|
+
};
|
|
13496
|
+
}[] | null | undefined;
|
|
13150
13497
|
};
|
|
13151
13498
|
workflowRule: {
|
|
13152
13499
|
name: string;
|
|
@@ -13175,7 +13522,7 @@ export declare const lineContract: {
|
|
|
13175
13522
|
previewUrl: string;
|
|
13176
13523
|
imageSetId: string;
|
|
13177
13524
|
repliedMessage: {
|
|
13178
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
13525
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13179
13526
|
message: string;
|
|
13180
13527
|
id: string;
|
|
13181
13528
|
url: string;
|
|
@@ -13387,7 +13734,7 @@ export declare const lineContract: {
|
|
|
13387
13734
|
label?: string | undefined;
|
|
13388
13735
|
}>>>;
|
|
13389
13736
|
}, "strip", z.ZodTypeAny, {
|
|
13390
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
13737
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13391
13738
|
message: string;
|
|
13392
13739
|
id: string;
|
|
13393
13740
|
url: string;
|
|
@@ -13518,6 +13865,7 @@ export declare const lineContract: {
|
|
|
13518
13865
|
channelId?: string | undefined;
|
|
13519
13866
|
status?: "active" | "pending" | undefined;
|
|
13520
13867
|
apiKey?: string | undefined;
|
|
13868
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13521
13869
|
} | undefined;
|
|
13522
13870
|
vonageCredentials?: {
|
|
13523
13871
|
apiKey: string;
|
|
@@ -13885,6 +14233,23 @@ export declare const lineContract: {
|
|
|
13885
14233
|
dateValue: Date | null;
|
|
13886
14234
|
}[] | null | undefined;
|
|
13887
14235
|
} | null;
|
|
14236
|
+
holdLogs?: {
|
|
14237
|
+
id: string;
|
|
14238
|
+
createdAt: Date;
|
|
14239
|
+
updatedAt: Date;
|
|
14240
|
+
deletedAt: Date | null;
|
|
14241
|
+
startedAt: string;
|
|
14242
|
+
endedAt: string | null;
|
|
14243
|
+
duration: number | null;
|
|
14244
|
+
holdLabel: {
|
|
14245
|
+
name: string;
|
|
14246
|
+
id: string;
|
|
14247
|
+
position: number;
|
|
14248
|
+
createdAt: Date;
|
|
14249
|
+
updatedAt: Date;
|
|
14250
|
+
deletedAt: Date | null;
|
|
14251
|
+
};
|
|
14252
|
+
}[] | null | undefined;
|
|
13888
14253
|
};
|
|
13889
14254
|
workflowRule: {
|
|
13890
14255
|
name: string;
|
|
@@ -13913,7 +14278,7 @@ export declare const lineContract: {
|
|
|
13913
14278
|
previewUrl: string;
|
|
13914
14279
|
imageSetId: string;
|
|
13915
14280
|
repliedMessage: {
|
|
13916
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
14281
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13917
14282
|
message: string;
|
|
13918
14283
|
id: string;
|
|
13919
14284
|
url: string;
|
|
@@ -14124,7 +14489,7 @@ export declare const lineContract: {
|
|
|
14124
14489
|
template?: any;
|
|
14125
14490
|
metadata?: any;
|
|
14126
14491
|
fromMessage?: {
|
|
14127
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
14492
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14128
14493
|
message: string;
|
|
14129
14494
|
id: string;
|
|
14130
14495
|
url: string;
|
|
@@ -14255,6 +14620,7 @@ export declare const lineContract: {
|
|
|
14255
14620
|
channelId?: string | undefined;
|
|
14256
14621
|
status?: "active" | "pending" | undefined;
|
|
14257
14622
|
apiKey?: string | undefined;
|
|
14623
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
14258
14624
|
} | undefined;
|
|
14259
14625
|
vonageCredentials?: {
|
|
14260
14626
|
apiKey: string;
|
|
@@ -14622,6 +14988,23 @@ export declare const lineContract: {
|
|
|
14622
14988
|
dateValue: Date | null;
|
|
14623
14989
|
}[] | null | undefined;
|
|
14624
14990
|
} | null;
|
|
14991
|
+
holdLogs?: {
|
|
14992
|
+
id: string;
|
|
14993
|
+
createdAt: Date;
|
|
14994
|
+
updatedAt: Date;
|
|
14995
|
+
deletedAt: Date | null;
|
|
14996
|
+
startedAt: string;
|
|
14997
|
+
endedAt: string | null;
|
|
14998
|
+
duration: number | null;
|
|
14999
|
+
holdLabel: {
|
|
15000
|
+
name: string;
|
|
15001
|
+
id: string;
|
|
15002
|
+
position: number;
|
|
15003
|
+
createdAt: Date;
|
|
15004
|
+
updatedAt: Date;
|
|
15005
|
+
deletedAt: Date | null;
|
|
15006
|
+
};
|
|
15007
|
+
}[] | null | undefined;
|
|
14625
15008
|
};
|
|
14626
15009
|
workflowRule: {
|
|
14627
15010
|
name: string;
|
|
@@ -14650,7 +15033,7 @@ export declare const lineContract: {
|
|
|
14650
15033
|
previewUrl: string;
|
|
14651
15034
|
imageSetId: string;
|
|
14652
15035
|
repliedMessage: {
|
|
14653
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
15036
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14654
15037
|
message: string;
|
|
14655
15038
|
id: string;
|
|
14656
15039
|
url: string;
|
|
@@ -14862,7 +15245,7 @@ export declare const lineContract: {
|
|
|
14862
15245
|
label?: string | undefined;
|
|
14863
15246
|
} | null | undefined;
|
|
14864
15247
|
}, {
|
|
14865
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
15248
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14866
15249
|
message: string;
|
|
14867
15250
|
id: string;
|
|
14868
15251
|
url: string;
|
|
@@ -14993,6 +15376,7 @@ export declare const lineContract: {
|
|
|
14993
15376
|
channelId?: string | undefined;
|
|
14994
15377
|
status?: "active" | "pending" | undefined;
|
|
14995
15378
|
apiKey?: string | undefined;
|
|
15379
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
14996
15380
|
} | undefined;
|
|
14997
15381
|
vonageCredentials?: {
|
|
14998
15382
|
apiKey: string;
|
|
@@ -15360,6 +15744,23 @@ export declare const lineContract: {
|
|
|
15360
15744
|
dateValue: Date | null;
|
|
15361
15745
|
}[] | null | undefined;
|
|
15362
15746
|
} | null;
|
|
15747
|
+
holdLogs?: {
|
|
15748
|
+
id: string;
|
|
15749
|
+
createdAt: Date;
|
|
15750
|
+
updatedAt: Date;
|
|
15751
|
+
deletedAt: Date | null;
|
|
15752
|
+
startedAt: string;
|
|
15753
|
+
endedAt: string | null;
|
|
15754
|
+
duration: number | null;
|
|
15755
|
+
holdLabel: {
|
|
15756
|
+
name: string;
|
|
15757
|
+
id: string;
|
|
15758
|
+
position: number;
|
|
15759
|
+
createdAt: Date;
|
|
15760
|
+
updatedAt: Date;
|
|
15761
|
+
deletedAt: Date | null;
|
|
15762
|
+
};
|
|
15763
|
+
}[] | null | undefined;
|
|
15363
15764
|
};
|
|
15364
15765
|
workflowRule: {
|
|
15365
15766
|
name: string;
|
|
@@ -15388,7 +15789,7 @@ export declare const lineContract: {
|
|
|
15388
15789
|
previewUrl: string;
|
|
15389
15790
|
imageSetId: string;
|
|
15390
15791
|
repliedMessage: {
|
|
15391
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
15792
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15392
15793
|
message: string;
|
|
15393
15794
|
id: string;
|
|
15394
15795
|
url: string;
|
|
@@ -15599,7 +16000,7 @@ export declare const lineContract: {
|
|
|
15599
16000
|
template?: any;
|
|
15600
16001
|
metadata?: any;
|
|
15601
16002
|
fromMessage?: {
|
|
15602
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
16003
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15603
16004
|
message: string;
|
|
15604
16005
|
id: string;
|
|
15605
16006
|
url: string;
|
|
@@ -15730,6 +16131,7 @@ export declare const lineContract: {
|
|
|
15730
16131
|
channelId?: string | undefined;
|
|
15731
16132
|
status?: "active" | "pending" | undefined;
|
|
15732
16133
|
apiKey?: string | undefined;
|
|
16134
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
15733
16135
|
} | undefined;
|
|
15734
16136
|
vonageCredentials?: {
|
|
15735
16137
|
apiKey: string;
|
|
@@ -16097,6 +16499,23 @@ export declare const lineContract: {
|
|
|
16097
16499
|
dateValue: Date | null;
|
|
16098
16500
|
}[] | null | undefined;
|
|
16099
16501
|
} | null;
|
|
16502
|
+
holdLogs?: {
|
|
16503
|
+
id: string;
|
|
16504
|
+
createdAt: Date;
|
|
16505
|
+
updatedAt: Date;
|
|
16506
|
+
deletedAt: Date | null;
|
|
16507
|
+
startedAt: string;
|
|
16508
|
+
endedAt: string | null;
|
|
16509
|
+
duration: number | null;
|
|
16510
|
+
holdLabel: {
|
|
16511
|
+
name: string;
|
|
16512
|
+
id: string;
|
|
16513
|
+
position: number;
|
|
16514
|
+
createdAt: Date;
|
|
16515
|
+
updatedAt: Date;
|
|
16516
|
+
deletedAt: Date | null;
|
|
16517
|
+
};
|
|
16518
|
+
}[] | null | undefined;
|
|
16100
16519
|
};
|
|
16101
16520
|
workflowRule: {
|
|
16102
16521
|
name: string;
|
|
@@ -16125,7 +16544,7 @@ export declare const lineContract: {
|
|
|
16125
16544
|
previewUrl: string;
|
|
16126
16545
|
imageSetId: string;
|
|
16127
16546
|
repliedMessage: {
|
|
16128
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
16547
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16129
16548
|
message: string;
|
|
16130
16549
|
id: string;
|
|
16131
16550
|
url: string;
|
|
@@ -16339,7 +16758,7 @@ export declare const lineContract: {
|
|
|
16339
16758
|
}>;
|
|
16340
16759
|
}, "strip", z.ZodTypeAny, {
|
|
16341
16760
|
data: {
|
|
16342
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
16761
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16343
16762
|
message: string;
|
|
16344
16763
|
id: string;
|
|
16345
16764
|
url: string;
|
|
@@ -16470,6 +16889,7 @@ export declare const lineContract: {
|
|
|
16470
16889
|
channelId?: string | undefined;
|
|
16471
16890
|
status?: "active" | "pending" | undefined;
|
|
16472
16891
|
apiKey?: string | undefined;
|
|
16892
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16473
16893
|
} | undefined;
|
|
16474
16894
|
vonageCredentials?: {
|
|
16475
16895
|
apiKey: string;
|
|
@@ -16837,6 +17257,23 @@ export declare const lineContract: {
|
|
|
16837
17257
|
dateValue: Date | null;
|
|
16838
17258
|
}[] | null | undefined;
|
|
16839
17259
|
} | null;
|
|
17260
|
+
holdLogs?: {
|
|
17261
|
+
id: string;
|
|
17262
|
+
createdAt: Date;
|
|
17263
|
+
updatedAt: Date;
|
|
17264
|
+
deletedAt: Date | null;
|
|
17265
|
+
startedAt: string;
|
|
17266
|
+
endedAt: string | null;
|
|
17267
|
+
duration: number | null;
|
|
17268
|
+
holdLabel: {
|
|
17269
|
+
name: string;
|
|
17270
|
+
id: string;
|
|
17271
|
+
position: number;
|
|
17272
|
+
createdAt: Date;
|
|
17273
|
+
updatedAt: Date;
|
|
17274
|
+
deletedAt: Date | null;
|
|
17275
|
+
};
|
|
17276
|
+
}[] | null | undefined;
|
|
16840
17277
|
};
|
|
16841
17278
|
workflowRule: {
|
|
16842
17279
|
name: string;
|
|
@@ -16865,7 +17302,7 @@ export declare const lineContract: {
|
|
|
16865
17302
|
previewUrl: string;
|
|
16866
17303
|
imageSetId: string;
|
|
16867
17304
|
repliedMessage: {
|
|
16868
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
17305
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16869
17306
|
message: string;
|
|
16870
17307
|
id: string;
|
|
16871
17308
|
url: string;
|
|
@@ -17076,7 +17513,7 @@ export declare const lineContract: {
|
|
|
17076
17513
|
template?: any;
|
|
17077
17514
|
metadata?: any;
|
|
17078
17515
|
fromMessage?: {
|
|
17079
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
17516
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17080
17517
|
message: string;
|
|
17081
17518
|
id: string;
|
|
17082
17519
|
url: string;
|
|
@@ -17207,6 +17644,7 @@ export declare const lineContract: {
|
|
|
17207
17644
|
channelId?: string | undefined;
|
|
17208
17645
|
status?: "active" | "pending" | undefined;
|
|
17209
17646
|
apiKey?: string | undefined;
|
|
17647
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
17210
17648
|
} | undefined;
|
|
17211
17649
|
vonageCredentials?: {
|
|
17212
17650
|
apiKey: string;
|
|
@@ -17574,6 +18012,23 @@ export declare const lineContract: {
|
|
|
17574
18012
|
dateValue: Date | null;
|
|
17575
18013
|
}[] | null | undefined;
|
|
17576
18014
|
} | null;
|
|
18015
|
+
holdLogs?: {
|
|
18016
|
+
id: string;
|
|
18017
|
+
createdAt: Date;
|
|
18018
|
+
updatedAt: Date;
|
|
18019
|
+
deletedAt: Date | null;
|
|
18020
|
+
startedAt: string;
|
|
18021
|
+
endedAt: string | null;
|
|
18022
|
+
duration: number | null;
|
|
18023
|
+
holdLabel: {
|
|
18024
|
+
name: string;
|
|
18025
|
+
id: string;
|
|
18026
|
+
position: number;
|
|
18027
|
+
createdAt: Date;
|
|
18028
|
+
updatedAt: Date;
|
|
18029
|
+
deletedAt: Date | null;
|
|
18030
|
+
};
|
|
18031
|
+
}[] | null | undefined;
|
|
17577
18032
|
};
|
|
17578
18033
|
workflowRule: {
|
|
17579
18034
|
name: string;
|
|
@@ -17602,7 +18057,7 @@ export declare const lineContract: {
|
|
|
17602
18057
|
previewUrl: string;
|
|
17603
18058
|
imageSetId: string;
|
|
17604
18059
|
repliedMessage: {
|
|
17605
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
18060
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17606
18061
|
message: string;
|
|
17607
18062
|
id: string;
|
|
17608
18063
|
url: string;
|
|
@@ -17817,7 +18272,7 @@ export declare const lineContract: {
|
|
|
17817
18272
|
requestId: string;
|
|
17818
18273
|
}, {
|
|
17819
18274
|
data: {
|
|
17820
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
18275
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17821
18276
|
message: string;
|
|
17822
18277
|
id: string;
|
|
17823
18278
|
url: string;
|
|
@@ -17948,6 +18403,7 @@ export declare const lineContract: {
|
|
|
17948
18403
|
channelId?: string | undefined;
|
|
17949
18404
|
status?: "active" | "pending" | undefined;
|
|
17950
18405
|
apiKey?: string | undefined;
|
|
18406
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
17951
18407
|
} | undefined;
|
|
17952
18408
|
vonageCredentials?: {
|
|
17953
18409
|
apiKey: string;
|
|
@@ -18315,6 +18771,23 @@ export declare const lineContract: {
|
|
|
18315
18771
|
dateValue: Date | null;
|
|
18316
18772
|
}[] | null | undefined;
|
|
18317
18773
|
} | null;
|
|
18774
|
+
holdLogs?: {
|
|
18775
|
+
id: string;
|
|
18776
|
+
createdAt: Date;
|
|
18777
|
+
updatedAt: Date;
|
|
18778
|
+
deletedAt: Date | null;
|
|
18779
|
+
startedAt: string;
|
|
18780
|
+
endedAt: string | null;
|
|
18781
|
+
duration: number | null;
|
|
18782
|
+
holdLabel: {
|
|
18783
|
+
name: string;
|
|
18784
|
+
id: string;
|
|
18785
|
+
position: number;
|
|
18786
|
+
createdAt: Date;
|
|
18787
|
+
updatedAt: Date;
|
|
18788
|
+
deletedAt: Date | null;
|
|
18789
|
+
};
|
|
18790
|
+
}[] | null | undefined;
|
|
18318
18791
|
};
|
|
18319
18792
|
workflowRule: {
|
|
18320
18793
|
name: string;
|
|
@@ -18343,7 +18816,7 @@ export declare const lineContract: {
|
|
|
18343
18816
|
previewUrl: string;
|
|
18344
18817
|
imageSetId: string;
|
|
18345
18818
|
repliedMessage: {
|
|
18346
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
18819
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18347
18820
|
message: string;
|
|
18348
18821
|
id: string;
|
|
18349
18822
|
url: string;
|
|
@@ -18554,7 +19027,7 @@ export declare const lineContract: {
|
|
|
18554
19027
|
template?: any;
|
|
18555
19028
|
metadata?: any;
|
|
18556
19029
|
fromMessage?: {
|
|
18557
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
19030
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18558
19031
|
message: string;
|
|
18559
19032
|
id: string;
|
|
18560
19033
|
url: string;
|
|
@@ -18685,6 +19158,7 @@ export declare const lineContract: {
|
|
|
18685
19158
|
channelId?: string | undefined;
|
|
18686
19159
|
status?: "active" | "pending" | undefined;
|
|
18687
19160
|
apiKey?: string | undefined;
|
|
19161
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18688
19162
|
} | undefined;
|
|
18689
19163
|
vonageCredentials?: {
|
|
18690
19164
|
apiKey: string;
|
|
@@ -19052,6 +19526,23 @@ export declare const lineContract: {
|
|
|
19052
19526
|
dateValue: Date | null;
|
|
19053
19527
|
}[] | null | undefined;
|
|
19054
19528
|
} | null;
|
|
19529
|
+
holdLogs?: {
|
|
19530
|
+
id: string;
|
|
19531
|
+
createdAt: Date;
|
|
19532
|
+
updatedAt: Date;
|
|
19533
|
+
deletedAt: Date | null;
|
|
19534
|
+
startedAt: string;
|
|
19535
|
+
endedAt: string | null;
|
|
19536
|
+
duration: number | null;
|
|
19537
|
+
holdLabel: {
|
|
19538
|
+
name: string;
|
|
19539
|
+
id: string;
|
|
19540
|
+
position: number;
|
|
19541
|
+
createdAt: Date;
|
|
19542
|
+
updatedAt: Date;
|
|
19543
|
+
deletedAt: Date | null;
|
|
19544
|
+
};
|
|
19545
|
+
}[] | null | undefined;
|
|
19055
19546
|
};
|
|
19056
19547
|
workflowRule: {
|
|
19057
19548
|
name: string;
|
|
@@ -19080,7 +19571,7 @@ export declare const lineContract: {
|
|
|
19080
19571
|
previewUrl: string;
|
|
19081
19572
|
imageSetId: string;
|
|
19082
19573
|
repliedMessage: {
|
|
19083
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
19574
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19084
19575
|
message: string;
|
|
19085
19576
|
id: string;
|
|
19086
19577
|
url: string;
|
|
@@ -19328,6 +19819,7 @@ export declare const lineContract: {
|
|
|
19328
19819
|
channelId: z.ZodOptional<z.ZodString>;
|
|
19329
19820
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
19330
19821
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
19822
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
19331
19823
|
}, "strip", z.ZodTypeAny, {
|
|
19332
19824
|
email: string;
|
|
19333
19825
|
wabaExternalId: string;
|
|
@@ -19337,6 +19829,7 @@ export declare const lineContract: {
|
|
|
19337
19829
|
channelId?: string | undefined;
|
|
19338
19830
|
status?: "active" | "pending" | undefined;
|
|
19339
19831
|
apiKey?: string | undefined;
|
|
19832
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19340
19833
|
}, {
|
|
19341
19834
|
email: string;
|
|
19342
19835
|
wabaExternalId: string;
|
|
@@ -19346,6 +19839,7 @@ export declare const lineContract: {
|
|
|
19346
19839
|
channelId?: string | undefined;
|
|
19347
19840
|
status?: "active" | "pending" | undefined;
|
|
19348
19841
|
apiKey?: string | undefined;
|
|
19842
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19349
19843
|
}>>;
|
|
19350
19844
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
19351
19845
|
mobileNumber: z.ZodString;
|
|
@@ -19378,6 +19872,7 @@ export declare const lineContract: {
|
|
|
19378
19872
|
channelId?: string | undefined;
|
|
19379
19873
|
status?: "active" | "pending" | undefined;
|
|
19380
19874
|
apiKey?: string | undefined;
|
|
19875
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19381
19876
|
} | undefined;
|
|
19382
19877
|
vonageCredentials?: {
|
|
19383
19878
|
apiKey: string;
|
|
@@ -19402,6 +19897,7 @@ export declare const lineContract: {
|
|
|
19402
19897
|
channelId?: string | undefined;
|
|
19403
19898
|
status?: "active" | "pending" | undefined;
|
|
19404
19899
|
apiKey?: string | undefined;
|
|
19900
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19405
19901
|
} | undefined;
|
|
19406
19902
|
vonageCredentials?: {
|
|
19407
19903
|
apiKey: string;
|
|
@@ -19456,6 +19952,7 @@ export declare const lineContract: {
|
|
|
19456
19952
|
channelId?: string | undefined;
|
|
19457
19953
|
status?: "active" | "pending" | undefined;
|
|
19458
19954
|
apiKey?: string | undefined;
|
|
19955
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19459
19956
|
} | undefined;
|
|
19460
19957
|
vonageCredentials?: {
|
|
19461
19958
|
apiKey: string;
|
|
@@ -19498,6 +19995,7 @@ export declare const lineContract: {
|
|
|
19498
19995
|
channelId?: string | undefined;
|
|
19499
19996
|
status?: "active" | "pending" | undefined;
|
|
19500
19997
|
apiKey?: string | undefined;
|
|
19998
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19501
19999
|
} | undefined;
|
|
19502
20000
|
vonageCredentials?: {
|
|
19503
20001
|
apiKey: string;
|
|
@@ -19545,6 +20043,7 @@ export declare const lineContract: {
|
|
|
19545
20043
|
channelId: z.ZodOptional<z.ZodString>;
|
|
19546
20044
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
19547
20045
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
20046
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
19548
20047
|
}, "strip", z.ZodTypeAny, {
|
|
19549
20048
|
email: string;
|
|
19550
20049
|
wabaExternalId: string;
|
|
@@ -19554,6 +20053,7 @@ export declare const lineContract: {
|
|
|
19554
20053
|
channelId?: string | undefined;
|
|
19555
20054
|
status?: "active" | "pending" | undefined;
|
|
19556
20055
|
apiKey?: string | undefined;
|
|
20056
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19557
20057
|
}, {
|
|
19558
20058
|
email: string;
|
|
19559
20059
|
wabaExternalId: string;
|
|
@@ -19563,6 +20063,7 @@ export declare const lineContract: {
|
|
|
19563
20063
|
channelId?: string | undefined;
|
|
19564
20064
|
status?: "active" | "pending" | undefined;
|
|
19565
20065
|
apiKey?: string | undefined;
|
|
20066
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19566
20067
|
}>>;
|
|
19567
20068
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
19568
20069
|
mobileNumber: z.ZodString;
|
|
@@ -19595,6 +20096,7 @@ export declare const lineContract: {
|
|
|
19595
20096
|
channelId?: string | undefined;
|
|
19596
20097
|
status?: "active" | "pending" | undefined;
|
|
19597
20098
|
apiKey?: string | undefined;
|
|
20099
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19598
20100
|
} | undefined;
|
|
19599
20101
|
vonageCredentials?: {
|
|
19600
20102
|
apiKey: string;
|
|
@@ -19619,6 +20121,7 @@ export declare const lineContract: {
|
|
|
19619
20121
|
channelId?: string | undefined;
|
|
19620
20122
|
status?: "active" | "pending" | undefined;
|
|
19621
20123
|
apiKey?: string | undefined;
|
|
20124
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19622
20125
|
} | undefined;
|
|
19623
20126
|
vonageCredentials?: {
|
|
19624
20127
|
apiKey: string;
|
|
@@ -19673,6 +20176,7 @@ export declare const lineContract: {
|
|
|
19673
20176
|
channelId?: string | undefined;
|
|
19674
20177
|
status?: "active" | "pending" | undefined;
|
|
19675
20178
|
apiKey?: string | undefined;
|
|
20179
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19676
20180
|
} | undefined;
|
|
19677
20181
|
vonageCredentials?: {
|
|
19678
20182
|
apiKey: string;
|
|
@@ -19715,6 +20219,7 @@ export declare const lineContract: {
|
|
|
19715
20219
|
channelId?: string | undefined;
|
|
19716
20220
|
status?: "active" | "pending" | undefined;
|
|
19717
20221
|
apiKey?: string | undefined;
|
|
20222
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19718
20223
|
} | undefined;
|
|
19719
20224
|
vonageCredentials?: {
|
|
19720
20225
|
apiKey: string;
|
|
@@ -19759,6 +20264,7 @@ export declare const lineContract: {
|
|
|
19759
20264
|
channelId?: string | undefined;
|
|
19760
20265
|
status?: "active" | "pending" | undefined;
|
|
19761
20266
|
apiKey?: string | undefined;
|
|
20267
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19762
20268
|
} | undefined;
|
|
19763
20269
|
vonageCredentials?: {
|
|
19764
20270
|
apiKey: string;
|
|
@@ -19804,6 +20310,7 @@ export declare const lineContract: {
|
|
|
19804
20310
|
channelId?: string | undefined;
|
|
19805
20311
|
status?: "active" | "pending" | undefined;
|
|
19806
20312
|
apiKey?: string | undefined;
|
|
20313
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19807
20314
|
} | undefined;
|
|
19808
20315
|
vonageCredentials?: {
|
|
19809
20316
|
apiKey: string;
|
|
@@ -19885,6 +20392,7 @@ export declare const lineContract: {
|
|
|
19885
20392
|
channelId: z.ZodOptional<z.ZodString>;
|
|
19886
20393
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
19887
20394
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
20395
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
19888
20396
|
}, "strip", z.ZodTypeAny, {
|
|
19889
20397
|
email: string;
|
|
19890
20398
|
wabaExternalId: string;
|
|
@@ -19894,6 +20402,7 @@ export declare const lineContract: {
|
|
|
19894
20402
|
channelId?: string | undefined;
|
|
19895
20403
|
status?: "active" | "pending" | undefined;
|
|
19896
20404
|
apiKey?: string | undefined;
|
|
20405
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19897
20406
|
}, {
|
|
19898
20407
|
email: string;
|
|
19899
20408
|
wabaExternalId: string;
|
|
@@ -19903,6 +20412,7 @@ export declare const lineContract: {
|
|
|
19903
20412
|
channelId?: string | undefined;
|
|
19904
20413
|
status?: "active" | "pending" | undefined;
|
|
19905
20414
|
apiKey?: string | undefined;
|
|
20415
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19906
20416
|
}>>;
|
|
19907
20417
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
19908
20418
|
mobileNumber: z.ZodString;
|
|
@@ -19935,6 +20445,7 @@ export declare const lineContract: {
|
|
|
19935
20445
|
channelId?: string | undefined;
|
|
19936
20446
|
status?: "active" | "pending" | undefined;
|
|
19937
20447
|
apiKey?: string | undefined;
|
|
20448
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19938
20449
|
} | undefined;
|
|
19939
20450
|
vonageCredentials?: {
|
|
19940
20451
|
apiKey: string;
|
|
@@ -19959,6 +20470,7 @@ export declare const lineContract: {
|
|
|
19959
20470
|
channelId?: string | undefined;
|
|
19960
20471
|
status?: "active" | "pending" | undefined;
|
|
19961
20472
|
apiKey?: string | undefined;
|
|
20473
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19962
20474
|
} | undefined;
|
|
19963
20475
|
vonageCredentials?: {
|
|
19964
20476
|
apiKey: string;
|
|
@@ -20013,6 +20525,7 @@ export declare const lineContract: {
|
|
|
20013
20525
|
channelId?: string | undefined;
|
|
20014
20526
|
status?: "active" | "pending" | undefined;
|
|
20015
20527
|
apiKey?: string | undefined;
|
|
20528
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20016
20529
|
} | undefined;
|
|
20017
20530
|
vonageCredentials?: {
|
|
20018
20531
|
apiKey: string;
|
|
@@ -20055,6 +20568,7 @@ export declare const lineContract: {
|
|
|
20055
20568
|
channelId?: string | undefined;
|
|
20056
20569
|
status?: "active" | "pending" | undefined;
|
|
20057
20570
|
apiKey?: string | undefined;
|
|
20571
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20058
20572
|
} | undefined;
|
|
20059
20573
|
vonageCredentials?: {
|
|
20060
20574
|
apiKey: string;
|
|
@@ -20099,6 +20613,7 @@ export declare const lineContract: {
|
|
|
20099
20613
|
channelId?: string | undefined;
|
|
20100
20614
|
status?: "active" | "pending" | undefined;
|
|
20101
20615
|
apiKey?: string | undefined;
|
|
20616
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20102
20617
|
} | undefined;
|
|
20103
20618
|
vonageCredentials?: {
|
|
20104
20619
|
apiKey: string;
|
|
@@ -20144,6 +20659,7 @@ export declare const lineContract: {
|
|
|
20144
20659
|
channelId?: string | undefined;
|
|
20145
20660
|
status?: "active" | "pending" | undefined;
|
|
20146
20661
|
apiKey?: string | undefined;
|
|
20662
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20147
20663
|
} | undefined;
|
|
20148
20664
|
vonageCredentials?: {
|
|
20149
20665
|
apiKey: string;
|
|
@@ -20225,6 +20741,7 @@ export declare const lineContract: {
|
|
|
20225
20741
|
channelId: z.ZodOptional<z.ZodString>;
|
|
20226
20742
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
20227
20743
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
20744
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
20228
20745
|
}, "strip", z.ZodTypeAny, {
|
|
20229
20746
|
email: string;
|
|
20230
20747
|
wabaExternalId: string;
|
|
@@ -20234,6 +20751,7 @@ export declare const lineContract: {
|
|
|
20234
20751
|
channelId?: string | undefined;
|
|
20235
20752
|
status?: "active" | "pending" | undefined;
|
|
20236
20753
|
apiKey?: string | undefined;
|
|
20754
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20237
20755
|
}, {
|
|
20238
20756
|
email: string;
|
|
20239
20757
|
wabaExternalId: string;
|
|
@@ -20243,6 +20761,7 @@ export declare const lineContract: {
|
|
|
20243
20761
|
channelId?: string | undefined;
|
|
20244
20762
|
status?: "active" | "pending" | undefined;
|
|
20245
20763
|
apiKey?: string | undefined;
|
|
20764
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20246
20765
|
}>>;
|
|
20247
20766
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
20248
20767
|
mobileNumber: z.ZodString;
|
|
@@ -20275,6 +20794,7 @@ export declare const lineContract: {
|
|
|
20275
20794
|
channelId?: string | undefined;
|
|
20276
20795
|
status?: "active" | "pending" | undefined;
|
|
20277
20796
|
apiKey?: string | undefined;
|
|
20797
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20278
20798
|
} | undefined;
|
|
20279
20799
|
vonageCredentials?: {
|
|
20280
20800
|
apiKey: string;
|
|
@@ -20299,6 +20819,7 @@ export declare const lineContract: {
|
|
|
20299
20819
|
channelId?: string | undefined;
|
|
20300
20820
|
status?: "active" | "pending" | undefined;
|
|
20301
20821
|
apiKey?: string | undefined;
|
|
20822
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20302
20823
|
} | undefined;
|
|
20303
20824
|
vonageCredentials?: {
|
|
20304
20825
|
apiKey: string;
|
|
@@ -20353,6 +20874,7 @@ export declare const lineContract: {
|
|
|
20353
20874
|
channelId?: string | undefined;
|
|
20354
20875
|
status?: "active" | "pending" | undefined;
|
|
20355
20876
|
apiKey?: string | undefined;
|
|
20877
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20356
20878
|
} | undefined;
|
|
20357
20879
|
vonageCredentials?: {
|
|
20358
20880
|
apiKey: string;
|
|
@@ -20395,6 +20917,7 @@ export declare const lineContract: {
|
|
|
20395
20917
|
channelId?: string | undefined;
|
|
20396
20918
|
status?: "active" | "pending" | undefined;
|
|
20397
20919
|
apiKey?: string | undefined;
|
|
20920
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20398
20921
|
} | undefined;
|
|
20399
20922
|
vonageCredentials?: {
|
|
20400
20923
|
apiKey: string;
|
|
@@ -20439,6 +20962,7 @@ export declare const lineContract: {
|
|
|
20439
20962
|
channelId?: string | undefined;
|
|
20440
20963
|
status?: "active" | "pending" | undefined;
|
|
20441
20964
|
apiKey?: string | undefined;
|
|
20965
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20442
20966
|
} | undefined;
|
|
20443
20967
|
vonageCredentials?: {
|
|
20444
20968
|
apiKey: string;
|
|
@@ -20484,6 +21008,7 @@ export declare const lineContract: {
|
|
|
20484
21008
|
channelId?: string | undefined;
|
|
20485
21009
|
status?: "active" | "pending" | undefined;
|
|
20486
21010
|
apiKey?: string | undefined;
|
|
21011
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20487
21012
|
} | undefined;
|
|
20488
21013
|
vonageCredentials?: {
|
|
20489
21014
|
apiKey: string;
|