@kl1/contracts 1.1.79-uat → 1.1.80-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/automation-queue/index.d.ts +3410 -0
- package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -0
- package/dist/api-contracts/src/automation-queue/schema.d.ts +618 -0
- package/dist/api-contracts/src/automation-queue/schema.d.ts.map +1 -0
- package/dist/api-contracts/src/automation-queue/validation.d.ts +52 -0
- package/dist/api-contracts/src/automation-queue/validation.d.ts.map +1 -0
- package/dist/api-contracts/src/chat/index.d.ts +145 -145
- package/dist/api-contracts/src/chat/schema.d.ts +64 -76
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +51 -51
- package/dist/api-contracts/src/comment/index.d.ts +1 -1
- package/dist/api-contracts/src/comment/validation.d.ts +1 -1
- package/dist/api-contracts/src/contract.d.ts +219 -219
- package/dist/api-contracts/src/facebook-feed/index.d.ts +43 -43
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
- 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 +33 -33
- package/dist/api-contracts/src/line/index.d.ts +38 -38
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +33 -33
- package/dist/api-contracts/src/sms/index.d.ts +5 -5
- package/dist/api-contracts/src/viber/index.d.ts +33 -33
- package/dist/api-contracts/src/webchat/index.d.ts +33 -33
- package/dist/entities/src/enums/chat.d.ts +2 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +490 -387
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +489 -387
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -420,7 +420,7 @@ export declare const messengerContract: {
|
|
420
420
|
id: z.ZodOptional<z.ZodString>;
|
421
421
|
message: z.ZodOptional<z.ZodString>;
|
422
422
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
423
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
423
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
424
424
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
425
425
|
metadata: z.ZodOptional<z.ZodAny>;
|
426
426
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -475,7 +475,7 @@ export declare const messengerContract: {
|
|
475
475
|
isEdited: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
476
476
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
477
477
|
}, "strip", z.ZodTypeAny, {
|
478
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
478
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
479
479
|
direction: "incoming" | "outgoing" | "system";
|
480
480
|
message?: string | undefined;
|
481
481
|
id?: string | undefined;
|
@@ -509,7 +509,7 @@ export declare const messengerContract: {
|
|
509
509
|
isEdited?: boolean | null | undefined;
|
510
510
|
editedAt?: string | Date | null | undefined;
|
511
511
|
}, {
|
512
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
512
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
513
513
|
direction: "incoming" | "outgoing" | "system";
|
514
514
|
message?: string | undefined;
|
515
515
|
id?: string | undefined;
|
@@ -545,7 +545,7 @@ export declare const messengerContract: {
|
|
545
545
|
}>;
|
546
546
|
}, "strip", z.ZodTypeAny, {
|
547
547
|
message: {
|
548
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
548
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
549
549
|
direction: "incoming" | "outgoing" | "system";
|
550
550
|
message?: string | undefined;
|
551
551
|
id?: string | undefined;
|
@@ -656,7 +656,7 @@ export declare const messengerContract: {
|
|
656
656
|
isBot: boolean | null;
|
657
657
|
}, {
|
658
658
|
message: {
|
659
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
659
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
660
660
|
direction: "incoming" | "outgoing" | "system";
|
661
661
|
message?: string | undefined;
|
662
662
|
id?: string | undefined;
|
@@ -780,7 +780,7 @@ export declare const messengerContract: {
|
|
780
780
|
}, {
|
781
781
|
message: z.ZodString;
|
782
782
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
783
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
783
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
784
784
|
readAt: z.ZodDate;
|
785
785
|
metadata: z.ZodAny;
|
786
786
|
platformId: z.ZodString;
|
@@ -3833,7 +3833,7 @@ export declare const messengerContract: {
|
|
3833
3833
|
}, {
|
3834
3834
|
message: z.ZodString;
|
3835
3835
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
3836
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
3836
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
3837
3837
|
readAt: z.ZodDate;
|
3838
3838
|
metadata: z.ZodAny;
|
3839
3839
|
platformId: z.ZodString;
|
@@ -4492,7 +4492,7 @@ export declare const messengerContract: {
|
|
4492
4492
|
};
|
4493
4493
|
}>;
|
4494
4494
|
}>, "strip", z.ZodTypeAny, {
|
4495
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
4495
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
4496
4496
|
message: string;
|
4497
4497
|
id: string;
|
4498
4498
|
url: string;
|
@@ -4654,7 +4654,7 @@ export declare const messengerContract: {
|
|
4654
4654
|
template?: any;
|
4655
4655
|
metadata?: any;
|
4656
4656
|
}, {
|
4657
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
4657
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
4658
4658
|
message: string;
|
4659
4659
|
id: string;
|
4660
4660
|
url: string;
|
@@ -5464,7 +5464,7 @@ export declare const messengerContract: {
|
|
5464
5464
|
}, {
|
5465
5465
|
message: z.ZodString;
|
5466
5466
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
5467
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
5467
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
5468
5468
|
readAt: z.ZodDate;
|
5469
5469
|
metadata: z.ZodAny;
|
5470
5470
|
platformId: z.ZodString;
|
@@ -8517,7 +8517,7 @@ export declare const messengerContract: {
|
|
8517
8517
|
}, {
|
8518
8518
|
message: z.ZodString;
|
8519
8519
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
8520
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
8520
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
8521
8521
|
readAt: z.ZodDate;
|
8522
8522
|
metadata: z.ZodAny;
|
8523
8523
|
platformId: z.ZodString;
|
@@ -9176,7 +9176,7 @@ export declare const messengerContract: {
|
|
9176
9176
|
};
|
9177
9177
|
}>;
|
9178
9178
|
}>, "strip", z.ZodTypeAny, {
|
9179
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
9179
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
9180
9180
|
message: string;
|
9181
9181
|
id: string;
|
9182
9182
|
url: string;
|
@@ -9338,7 +9338,7 @@ export declare const messengerContract: {
|
|
9338
9338
|
template?: any;
|
9339
9339
|
metadata?: any;
|
9340
9340
|
}, {
|
9341
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
9341
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
9342
9342
|
message: string;
|
9343
9343
|
id: string;
|
9344
9344
|
url: string;
|
@@ -10140,7 +10140,7 @@ export declare const messengerContract: {
|
|
10140
10140
|
}>;
|
10141
10141
|
editedMessageid: z.ZodString;
|
10142
10142
|
}>, "strip", z.ZodTypeAny, {
|
10143
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
10143
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
10144
10144
|
message: string;
|
10145
10145
|
id: string;
|
10146
10146
|
url: string;
|
@@ -10638,7 +10638,7 @@ export declare const messengerContract: {
|
|
10638
10638
|
previewUrl: string;
|
10639
10639
|
imageSetId: string;
|
10640
10640
|
repliedMessage: {
|
10641
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
10641
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
10642
10642
|
message: string;
|
10643
10643
|
id: string;
|
10644
10644
|
url: string;
|
@@ -10848,7 +10848,7 @@ export declare const messengerContract: {
|
|
10848
10848
|
template?: any;
|
10849
10849
|
metadata?: any;
|
10850
10850
|
}, {
|
10851
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
10851
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
10852
10852
|
message: string;
|
10853
10853
|
id: string;
|
10854
10854
|
url: string;
|
@@ -11346,7 +11346,7 @@ export declare const messengerContract: {
|
|
11346
11346
|
previewUrl: string;
|
11347
11347
|
imageSetId: string;
|
11348
11348
|
repliedMessage: {
|
11349
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
11349
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
11350
11350
|
message: string;
|
11351
11351
|
id: string;
|
11352
11352
|
url: string;
|
@@ -11557,7 +11557,7 @@ export declare const messengerContract: {
|
|
11557
11557
|
metadata?: any;
|
11558
11558
|
}>>>;
|
11559
11559
|
}>, "strip", z.ZodTypeAny, {
|
11560
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
11560
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
11561
11561
|
message: string;
|
11562
11562
|
id: string;
|
11563
11563
|
url: string;
|
@@ -12055,7 +12055,7 @@ export declare const messengerContract: {
|
|
12055
12055
|
previewUrl: string;
|
12056
12056
|
imageSetId: string;
|
12057
12057
|
repliedMessage: {
|
12058
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
12058
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12059
12059
|
message: string;
|
12060
12060
|
id: string;
|
12061
12061
|
url: string;
|
@@ -12265,7 +12265,7 @@ export declare const messengerContract: {
|
|
12265
12265
|
template?: any;
|
12266
12266
|
metadata?: any;
|
12267
12267
|
fromMessage?: {
|
12268
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
12268
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12269
12269
|
message: string;
|
12270
12270
|
id: string;
|
12271
12271
|
url: string;
|
@@ -12763,7 +12763,7 @@ export declare const messengerContract: {
|
|
12763
12763
|
previewUrl: string;
|
12764
12764
|
imageSetId: string;
|
12765
12765
|
repliedMessage: {
|
12766
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
12766
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12767
12767
|
message: string;
|
12768
12768
|
id: string;
|
12769
12769
|
url: string;
|
@@ -12974,7 +12974,7 @@ export declare const messengerContract: {
|
|
12974
12974
|
metadata?: any;
|
12975
12975
|
} | null | undefined;
|
12976
12976
|
}, {
|
12977
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
12977
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12978
12978
|
message: string;
|
12979
12979
|
id: string;
|
12980
12980
|
url: string;
|
@@ -13472,7 +13472,7 @@ export declare const messengerContract: {
|
|
13472
13472
|
previewUrl: string;
|
13473
13473
|
imageSetId: string;
|
13474
13474
|
repliedMessage: {
|
13475
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
13475
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
13476
13476
|
message: string;
|
13477
13477
|
id: string;
|
13478
13478
|
url: string;
|
@@ -13682,7 +13682,7 @@ export declare const messengerContract: {
|
|
13682
13682
|
template?: any;
|
13683
13683
|
metadata?: any;
|
13684
13684
|
fromMessage?: {
|
13685
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
13685
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
13686
13686
|
message: string;
|
13687
13687
|
id: string;
|
13688
13688
|
url: string;
|
@@ -14180,7 +14180,7 @@ export declare const messengerContract: {
|
|
14180
14180
|
previewUrl: string;
|
14181
14181
|
imageSetId: string;
|
14182
14182
|
repliedMessage: {
|
14183
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
14183
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14184
14184
|
message: string;
|
14185
14185
|
id: string;
|
14186
14186
|
url: string;
|
@@ -14393,7 +14393,7 @@ export declare const messengerContract: {
|
|
14393
14393
|
}>;
|
14394
14394
|
}>, "strip", z.ZodTypeAny, {
|
14395
14395
|
data: {
|
14396
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
14396
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14397
14397
|
message: string;
|
14398
14398
|
id: string;
|
14399
14399
|
url: string;
|
@@ -14891,7 +14891,7 @@ export declare const messengerContract: {
|
|
14891
14891
|
previewUrl: string;
|
14892
14892
|
imageSetId: string;
|
14893
14893
|
repliedMessage: {
|
14894
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
14894
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14895
14895
|
message: string;
|
14896
14896
|
id: string;
|
14897
14897
|
url: string;
|
@@ -15101,7 +15101,7 @@ export declare const messengerContract: {
|
|
15101
15101
|
template?: any;
|
15102
15102
|
metadata?: any;
|
15103
15103
|
fromMessage?: {
|
15104
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
15104
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
15105
15105
|
message: string;
|
15106
15106
|
id: string;
|
15107
15107
|
url: string;
|
@@ -15599,7 +15599,7 @@ export declare const messengerContract: {
|
|
15599
15599
|
previewUrl: string;
|
15600
15600
|
imageSetId: string;
|
15601
15601
|
repliedMessage: {
|
15602
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
15602
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
15603
15603
|
message: string;
|
15604
15604
|
id: string;
|
15605
15605
|
url: string;
|
@@ -15813,7 +15813,7 @@ export declare const messengerContract: {
|
|
15813
15813
|
requestId: string;
|
15814
15814
|
}, {
|
15815
15815
|
data: {
|
15816
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
15816
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
15817
15817
|
message: string;
|
15818
15818
|
id: string;
|
15819
15819
|
url: string;
|
@@ -16311,7 +16311,7 @@ export declare const messengerContract: {
|
|
16311
16311
|
previewUrl: string;
|
16312
16312
|
imageSetId: string;
|
16313
16313
|
repliedMessage: {
|
16314
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
16314
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
16315
16315
|
message: string;
|
16316
16316
|
id: string;
|
16317
16317
|
url: string;
|
@@ -16521,7 +16521,7 @@ export declare const messengerContract: {
|
|
16521
16521
|
template?: any;
|
16522
16522
|
metadata?: any;
|
16523
16523
|
fromMessage?: {
|
16524
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
16524
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
16525
16525
|
message: string;
|
16526
16526
|
id: string;
|
16527
16527
|
url: string;
|
@@ -17019,7 +17019,7 @@ export declare const messengerContract: {
|
|
17019
17019
|
previewUrl: string;
|
17020
17020
|
imageSetId: string;
|
17021
17021
|
repliedMessage: {
|
17022
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
17022
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17023
17023
|
message: string;
|
17024
17024
|
id: string;
|
17025
17025
|
url: string;
|
@@ -1129,7 +1129,7 @@ export declare const smsContract: {
|
|
1129
1129
|
id: z.ZodOptional<z.ZodString>;
|
1130
1130
|
message: z.ZodOptional<z.ZodString>;
|
1131
1131
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
1132
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
1132
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
1133
1133
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
1134
1134
|
metadata: z.ZodOptional<z.ZodAny>;
|
1135
1135
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -1184,7 +1184,7 @@ export declare const smsContract: {
|
|
1184
1184
|
isEdited: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1185
1185
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
1186
1186
|
}, "strip", z.ZodTypeAny, {
|
1187
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
1187
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1188
1188
|
direction: "incoming" | "outgoing" | "system";
|
1189
1189
|
message?: string | undefined;
|
1190
1190
|
id?: string | undefined;
|
@@ -1218,7 +1218,7 @@ export declare const smsContract: {
|
|
1218
1218
|
isEdited?: boolean | null | undefined;
|
1219
1219
|
editedAt?: string | Date | null | undefined;
|
1220
1220
|
}, {
|
1221
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
1221
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1222
1222
|
direction: "incoming" | "outgoing" | "system";
|
1223
1223
|
message?: string | undefined;
|
1224
1224
|
id?: string | undefined;
|
@@ -1254,7 +1254,7 @@ export declare const smsContract: {
|
|
1254
1254
|
}>;
|
1255
1255
|
}, "strip", z.ZodTypeAny, {
|
1256
1256
|
message: {
|
1257
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
1257
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1258
1258
|
direction: "incoming" | "outgoing" | "system";
|
1259
1259
|
message?: string | undefined;
|
1260
1260
|
id?: string | undefined;
|
@@ -1365,7 +1365,7 @@ export declare const smsContract: {
|
|
1365
1365
|
isBot: boolean | null;
|
1366
1366
|
}, {
|
1367
1367
|
message: {
|
1368
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
1368
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1369
1369
|
direction: "incoming" | "outgoing" | "system";
|
1370
1370
|
message?: string | undefined;
|
1371
1371
|
id?: string | undefined;
|