@kl1/contracts 1.2.82-uat → 1.2.84-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/activity-log/index.d.ts +3 -3
- package/dist/api-contracts/src/activity-log/schema.d.ts +3 -3
- package/dist/api-contracts/src/auth/index.d.ts +3 -3
- package/dist/api-contracts/src/automation-queue/index.d.ts +30 -30
- package/dist/api-contracts/src/automation-queue/schema.d.ts +6 -6
- package/dist/api-contracts/src/business-calendar/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +271 -271
- package/dist/api-contracts/src/chat/schema.d.ts +93 -93
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +86 -86
- package/dist/api-contracts/src/comment/index.d.ts +45 -45
- package/dist/api-contracts/src/comment/schema.d.ts +15 -15
- package/dist/api-contracts/src/contract.d.ts +963 -632
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +24 -24
- package/dist/api-contracts/src/cx-log/schema.d.ts +24 -24
- package/dist/api-contracts/src/dashboard/index.d.ts +73 -0
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/validation.d.ts +3 -0
- package/dist/api-contracts/src/dashboard/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +61 -61
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +6 -6
- package/dist/api-contracts/src/instagram/index.d.ts +51 -51
- package/dist/api-contracts/src/line/index.d.ts +56 -56
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +51 -51
- package/dist/api-contracts/src/notification/index.d.ts +9 -9
- package/dist/api-contracts/src/notification/schema.d.ts +9 -9
- package/dist/api-contracts/src/notification/validation.d.ts +3 -3
- package/dist/api-contracts/src/sms/index.d.ts +5 -5
- package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +51 -51
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +6 -6
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +3 -3
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +30 -30
- package/dist/api-contracts/src/telephony-cdr/schema.d.ts +18 -18
- package/dist/api-contracts/src/ticket/index.d.ts +36 -36
- package/dist/api-contracts/src/ticket/schema.d.ts +9 -9
- package/dist/api-contracts/src/user/index.d.ts +142 -12
- package/dist/api-contracts/src/user/index.d.ts.map +1 -1
- package/dist/api-contracts/src/user/schema.d.ts +38 -1
- package/dist/api-contracts/src/user/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/user-presence-status-log/schema.d.ts +3 -3
- package/dist/api-contracts/src/viber/index.d.ts +51 -51
- package/dist/api-contracts/src/webchat/index.d.ts +56 -56
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +51 -51
- package/dist/api-contracts/src/workflow-rule/index.d.ts +21 -21
- package/dist/index.js +116 -62
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +116 -62
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
|
5
5
|
updatedAt: z.ZodDate;
|
|
6
6
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7
7
|
message: z.ZodNullable<z.ZodString>;
|
|
8
|
-
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>]>;
|
|
8
|
+
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item", "lazada_sys_msg"]>]>;
|
|
9
9
|
metadata: z.ZodAny;
|
|
10
10
|
platformId: z.ZodString;
|
|
11
11
|
platformMessageId: z.ZodString;
|
|
@@ -1613,15 +1613,15 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
|
1613
1613
|
socialPlatformId: string;
|
|
1614
1614
|
}>;
|
|
1615
1615
|
actor: z.ZodObject<{
|
|
1616
|
+
name: z.ZodString;
|
|
1616
1617
|
id: z.ZodString;
|
|
1618
|
+
address: z.ZodNullable<z.ZodString>;
|
|
1619
|
+
email: z.ZodString;
|
|
1617
1620
|
createdAt: z.ZodDate;
|
|
1618
1621
|
updatedAt: z.ZodDate;
|
|
1619
1622
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
1620
|
-
name: z.ZodString;
|
|
1621
|
-
email: z.ZodString;
|
|
1622
1623
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
1623
1624
|
password: z.ZodString;
|
|
1624
|
-
address: z.ZodNullable<z.ZodString>;
|
|
1625
1625
|
phone: z.ZodNullable<z.ZodString>;
|
|
1626
1626
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
1627
1627
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -1818,7 +1818,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
|
1818
1818
|
}>;
|
|
1819
1819
|
permalinkURL: z.ZodString;
|
|
1820
1820
|
}, "strip", z.ZodTypeAny, {
|
|
1821
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1821
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
1822
1822
|
message: string | null;
|
|
1823
1823
|
id: string;
|
|
1824
1824
|
channel: {
|
|
@@ -2100,7 +2100,7 @@ export declare const FeedPostSchema: z.ZodObject<{
|
|
|
2100
2100
|
metadata?: any;
|
|
2101
2101
|
template?: any;
|
|
2102
2102
|
}, {
|
|
2103
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2103
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
2104
2104
|
message: string | null;
|
|
2105
2105
|
id: string;
|
|
2106
2106
|
channel: {
|
|
@@ -571,7 +571,7 @@ export declare const instagramContract: {
|
|
|
571
571
|
id: z.ZodOptional<z.ZodString>;
|
|
572
572
|
message: z.ZodOptional<z.ZodString>;
|
|
573
573
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
574
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
574
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item", "lazada_sys_msg"]>;
|
|
575
575
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
576
576
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
577
577
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -627,7 +627,7 @@ export declare const instagramContract: {
|
|
|
627
627
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
628
628
|
label: z.ZodOptional<z.ZodString>;
|
|
629
629
|
}, "strip", z.ZodTypeAny, {
|
|
630
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
630
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
631
631
|
direction: "incoming" | "outgoing" | "system";
|
|
632
632
|
id?: string | undefined;
|
|
633
633
|
message?: string | undefined;
|
|
@@ -662,7 +662,7 @@ export declare const instagramContract: {
|
|
|
662
662
|
editedAt?: string | Date | null | undefined;
|
|
663
663
|
label?: string | undefined;
|
|
664
664
|
}, {
|
|
665
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
665
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
666
666
|
direction: "incoming" | "outgoing" | "system";
|
|
667
667
|
id?: string | undefined;
|
|
668
668
|
message?: string | undefined;
|
|
@@ -699,7 +699,7 @@ export declare const instagramContract: {
|
|
|
699
699
|
}>;
|
|
700
700
|
}, "strip", z.ZodTypeAny, {
|
|
701
701
|
message: {
|
|
702
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
702
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
703
703
|
direction: "incoming" | "outgoing" | "system";
|
|
704
704
|
id?: string | undefined;
|
|
705
705
|
message?: string | undefined;
|
|
@@ -830,7 +830,7 @@ export declare const instagramContract: {
|
|
|
830
830
|
isBot: boolean | null;
|
|
831
831
|
}, {
|
|
832
832
|
message: {
|
|
833
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
833
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
834
834
|
direction: "incoming" | "outgoing" | "system";
|
|
835
835
|
id?: string | undefined;
|
|
836
836
|
message?: string | undefined;
|
|
@@ -965,7 +965,7 @@ export declare const instagramContract: {
|
|
|
965
965
|
200: z.ZodObject<{
|
|
966
966
|
requestId: z.ZodString;
|
|
967
967
|
data: z.ZodObject<{
|
|
968
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
968
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item", "lazada_sys_msg"]>;
|
|
969
969
|
message: z.ZodString;
|
|
970
970
|
id: z.ZodString;
|
|
971
971
|
url: z.ZodString;
|
|
@@ -4901,7 +4901,7 @@ export declare const instagramContract: {
|
|
|
4901
4901
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4902
4902
|
message: z.ZodString;
|
|
4903
4903
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
4904
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
4904
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item", "lazada_sys_msg"]>;
|
|
4905
4905
|
readAt: z.ZodDate;
|
|
4906
4906
|
metadata: z.ZodAny;
|
|
4907
4907
|
platformId: z.ZodString;
|
|
@@ -4947,15 +4947,15 @@ export declare const instagramContract: {
|
|
|
4947
4947
|
fileUrl: string | null;
|
|
4948
4948
|
}>;
|
|
4949
4949
|
actor: z.ZodObject<{
|
|
4950
|
+
name: z.ZodString;
|
|
4950
4951
|
id: z.ZodString;
|
|
4952
|
+
address: z.ZodNullable<z.ZodString>;
|
|
4953
|
+
email: z.ZodString;
|
|
4951
4954
|
createdAt: z.ZodDate;
|
|
4952
4955
|
updatedAt: z.ZodDate;
|
|
4953
4956
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4954
|
-
name: z.ZodString;
|
|
4955
|
-
email: z.ZodString;
|
|
4956
4957
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
4957
4958
|
password: z.ZodString;
|
|
4958
|
-
address: z.ZodNullable<z.ZodString>;
|
|
4959
4959
|
phone: z.ZodNullable<z.ZodString>;
|
|
4960
4960
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
4961
4961
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -5151,15 +5151,15 @@ export declare const instagramContract: {
|
|
|
5151
5151
|
};
|
|
5152
5152
|
}>;
|
|
5153
5153
|
assignee: z.ZodObject<{
|
|
5154
|
+
name: z.ZodString;
|
|
5154
5155
|
id: z.ZodString;
|
|
5156
|
+
address: z.ZodNullable<z.ZodString>;
|
|
5157
|
+
email: z.ZodString;
|
|
5155
5158
|
createdAt: z.ZodDate;
|
|
5156
5159
|
updatedAt: z.ZodDate;
|
|
5157
5160
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5158
|
-
name: z.ZodString;
|
|
5159
|
-
email: z.ZodString;
|
|
5160
5161
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
5161
5162
|
password: z.ZodString;
|
|
5162
|
-
address: z.ZodNullable<z.ZodString>;
|
|
5163
5163
|
phone: z.ZodNullable<z.ZodString>;
|
|
5164
5164
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
5165
5165
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -5355,15 +5355,15 @@ export declare const instagramContract: {
|
|
|
5355
5355
|
};
|
|
5356
5356
|
}>;
|
|
5357
5357
|
sender: z.ZodObject<{
|
|
5358
|
+
name: z.ZodString;
|
|
5358
5359
|
id: z.ZodString;
|
|
5360
|
+
address: z.ZodNullable<z.ZodString>;
|
|
5361
|
+
email: z.ZodString;
|
|
5359
5362
|
createdAt: z.ZodDate;
|
|
5360
5363
|
updatedAt: z.ZodDate;
|
|
5361
5364
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5362
|
-
name: z.ZodString;
|
|
5363
|
-
email: z.ZodString;
|
|
5364
5365
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
5365
5366
|
password: z.ZodString;
|
|
5366
|
-
address: z.ZodNullable<z.ZodString>;
|
|
5367
5367
|
phone: z.ZodNullable<z.ZodString>;
|
|
5368
5368
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
5369
5369
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -5559,7 +5559,7 @@ export declare const instagramContract: {
|
|
|
5559
5559
|
};
|
|
5560
5560
|
}>;
|
|
5561
5561
|
}, "strip", z.ZodTypeAny, {
|
|
5562
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
5562
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
5563
5563
|
message: string;
|
|
5564
5564
|
id: string;
|
|
5565
5565
|
url: string;
|
|
@@ -5721,7 +5721,7 @@ export declare const instagramContract: {
|
|
|
5721
5721
|
metadata?: any;
|
|
5722
5722
|
template?: any;
|
|
5723
5723
|
}, {
|
|
5724
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
5724
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
5725
5725
|
message: string;
|
|
5726
5726
|
id: string;
|
|
5727
5727
|
url: string;
|
|
@@ -6095,7 +6095,7 @@ export declare const instagramContract: {
|
|
|
6095
6095
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
6096
6096
|
message: z.ZodString;
|
|
6097
6097
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
6098
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
6098
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item", "lazada_sys_msg"]>;
|
|
6099
6099
|
readAt: z.ZodDate;
|
|
6100
6100
|
metadata: z.ZodAny;
|
|
6101
6101
|
platformId: z.ZodString;
|
|
@@ -9591,7 +9591,7 @@ export declare const instagramContract: {
|
|
|
9591
9591
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9592
9592
|
message: z.ZodString;
|
|
9593
9593
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
9594
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
9594
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item", "lazada_sys_msg"]>;
|
|
9595
9595
|
readAt: z.ZodDate;
|
|
9596
9596
|
metadata: z.ZodAny;
|
|
9597
9597
|
platformId: z.ZodString;
|
|
@@ -9637,15 +9637,15 @@ export declare const instagramContract: {
|
|
|
9637
9637
|
fileUrl: string | null;
|
|
9638
9638
|
}>;
|
|
9639
9639
|
actor: z.ZodObject<{
|
|
9640
|
+
name: z.ZodString;
|
|
9640
9641
|
id: z.ZodString;
|
|
9642
|
+
address: z.ZodNullable<z.ZodString>;
|
|
9643
|
+
email: z.ZodString;
|
|
9641
9644
|
createdAt: z.ZodDate;
|
|
9642
9645
|
updatedAt: z.ZodDate;
|
|
9643
9646
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9644
|
-
name: z.ZodString;
|
|
9645
|
-
email: z.ZodString;
|
|
9646
9647
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
9647
9648
|
password: z.ZodString;
|
|
9648
|
-
address: z.ZodNullable<z.ZodString>;
|
|
9649
9649
|
phone: z.ZodNullable<z.ZodString>;
|
|
9650
9650
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
9651
9651
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -9841,15 +9841,15 @@ export declare const instagramContract: {
|
|
|
9841
9841
|
};
|
|
9842
9842
|
}>;
|
|
9843
9843
|
assignee: z.ZodObject<{
|
|
9844
|
+
name: z.ZodString;
|
|
9844
9845
|
id: z.ZodString;
|
|
9846
|
+
address: z.ZodNullable<z.ZodString>;
|
|
9847
|
+
email: z.ZodString;
|
|
9845
9848
|
createdAt: z.ZodDate;
|
|
9846
9849
|
updatedAt: z.ZodDate;
|
|
9847
9850
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9848
|
-
name: z.ZodString;
|
|
9849
|
-
email: z.ZodString;
|
|
9850
9851
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
9851
9852
|
password: z.ZodString;
|
|
9852
|
-
address: z.ZodNullable<z.ZodString>;
|
|
9853
9853
|
phone: z.ZodNullable<z.ZodString>;
|
|
9854
9854
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
9855
9855
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -10045,15 +10045,15 @@ export declare const instagramContract: {
|
|
|
10045
10045
|
};
|
|
10046
10046
|
}>;
|
|
10047
10047
|
sender: z.ZodObject<{
|
|
10048
|
+
name: z.ZodString;
|
|
10048
10049
|
id: z.ZodString;
|
|
10050
|
+
address: z.ZodNullable<z.ZodString>;
|
|
10051
|
+
email: z.ZodString;
|
|
10049
10052
|
createdAt: z.ZodDate;
|
|
10050
10053
|
updatedAt: z.ZodDate;
|
|
10051
10054
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
10052
|
-
name: z.ZodString;
|
|
10053
|
-
email: z.ZodString;
|
|
10054
10055
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
10055
10056
|
password: z.ZodString;
|
|
10056
|
-
address: z.ZodNullable<z.ZodString>;
|
|
10057
10057
|
phone: z.ZodNullable<z.ZodString>;
|
|
10058
10058
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
10059
10059
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -10249,7 +10249,7 @@ export declare const instagramContract: {
|
|
|
10249
10249
|
};
|
|
10250
10250
|
}>;
|
|
10251
10251
|
}, "strip", z.ZodTypeAny, {
|
|
10252
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
10252
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
10253
10253
|
message: string;
|
|
10254
10254
|
id: string;
|
|
10255
10255
|
url: string;
|
|
@@ -10411,7 +10411,7 @@ export declare const instagramContract: {
|
|
|
10411
10411
|
metadata?: any;
|
|
10412
10412
|
template?: any;
|
|
10413
10413
|
}, {
|
|
10414
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
10414
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
10415
10415
|
message: string;
|
|
10416
10416
|
id: string;
|
|
10417
10417
|
url: string;
|
|
@@ -11213,7 +11213,7 @@ export declare const instagramContract: {
|
|
|
11213
11213
|
editedMessageid: z.ZodString;
|
|
11214
11214
|
label: z.ZodOptional<z.ZodString>;
|
|
11215
11215
|
}, "strip", z.ZodTypeAny, {
|
|
11216
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
11216
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
11217
11217
|
message: string;
|
|
11218
11218
|
id: string;
|
|
11219
11219
|
url: string;
|
|
@@ -11768,7 +11768,7 @@ export declare const instagramContract: {
|
|
|
11768
11768
|
previewUrl: string;
|
|
11769
11769
|
imageSetId: string;
|
|
11770
11770
|
repliedMessage: {
|
|
11771
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
11771
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
11772
11772
|
message: string;
|
|
11773
11773
|
id: string;
|
|
11774
11774
|
url: string;
|
|
@@ -11979,7 +11979,7 @@ export declare const instagramContract: {
|
|
|
11979
11979
|
template?: any;
|
|
11980
11980
|
label?: string | undefined;
|
|
11981
11981
|
}, {
|
|
11982
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
11982
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
11983
11983
|
message: string;
|
|
11984
11984
|
id: string;
|
|
11985
11985
|
url: string;
|
|
@@ -12534,7 +12534,7 @@ export declare const instagramContract: {
|
|
|
12534
12534
|
previewUrl: string;
|
|
12535
12535
|
imageSetId: string;
|
|
12536
12536
|
repliedMessage: {
|
|
12537
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
12537
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
12538
12538
|
message: string;
|
|
12539
12539
|
id: string;
|
|
12540
12540
|
url: string;
|
|
@@ -12746,7 +12746,7 @@ export declare const instagramContract: {
|
|
|
12746
12746
|
label?: string | undefined;
|
|
12747
12747
|
}>>>;
|
|
12748
12748
|
}, "strip", z.ZodTypeAny, {
|
|
12749
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
12749
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
12750
12750
|
message: string;
|
|
12751
12751
|
id: string;
|
|
12752
12752
|
url: string;
|
|
@@ -13301,7 +13301,7 @@ export declare const instagramContract: {
|
|
|
13301
13301
|
previewUrl: string;
|
|
13302
13302
|
imageSetId: string;
|
|
13303
13303
|
repliedMessage: {
|
|
13304
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13304
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
13305
13305
|
message: string;
|
|
13306
13306
|
id: string;
|
|
13307
13307
|
url: string;
|
|
@@ -13512,7 +13512,7 @@ export declare const instagramContract: {
|
|
|
13512
13512
|
template?: any;
|
|
13513
13513
|
metadata?: any;
|
|
13514
13514
|
fromMessage?: {
|
|
13515
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13515
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
13516
13516
|
message: string;
|
|
13517
13517
|
id: string;
|
|
13518
13518
|
url: string;
|
|
@@ -14067,7 +14067,7 @@ export declare const instagramContract: {
|
|
|
14067
14067
|
previewUrl: string;
|
|
14068
14068
|
imageSetId: string;
|
|
14069
14069
|
repliedMessage: {
|
|
14070
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14070
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
14071
14071
|
message: string;
|
|
14072
14072
|
id: string;
|
|
14073
14073
|
url: string;
|
|
@@ -14279,7 +14279,7 @@ export declare const instagramContract: {
|
|
|
14279
14279
|
label?: string | undefined;
|
|
14280
14280
|
} | null | undefined;
|
|
14281
14281
|
}, {
|
|
14282
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14282
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
14283
14283
|
message: string;
|
|
14284
14284
|
id: string;
|
|
14285
14285
|
url: string;
|
|
@@ -14834,7 +14834,7 @@ export declare const instagramContract: {
|
|
|
14834
14834
|
previewUrl: string;
|
|
14835
14835
|
imageSetId: string;
|
|
14836
14836
|
repliedMessage: {
|
|
14837
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14837
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
14838
14838
|
message: string;
|
|
14839
14839
|
id: string;
|
|
14840
14840
|
url: string;
|
|
@@ -15045,7 +15045,7 @@ export declare const instagramContract: {
|
|
|
15045
15045
|
template?: any;
|
|
15046
15046
|
metadata?: any;
|
|
15047
15047
|
fromMessage?: {
|
|
15048
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15048
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
15049
15049
|
message: string;
|
|
15050
15050
|
id: string;
|
|
15051
15051
|
url: string;
|
|
@@ -15600,7 +15600,7 @@ export declare const instagramContract: {
|
|
|
15600
15600
|
previewUrl: string;
|
|
15601
15601
|
imageSetId: string;
|
|
15602
15602
|
repliedMessage: {
|
|
15603
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15603
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
15604
15604
|
message: string;
|
|
15605
15605
|
id: string;
|
|
15606
15606
|
url: string;
|
|
@@ -15814,7 +15814,7 @@ export declare const instagramContract: {
|
|
|
15814
15814
|
}>;
|
|
15815
15815
|
}, "strip", z.ZodTypeAny, {
|
|
15816
15816
|
data: {
|
|
15817
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15817
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
15818
15818
|
message: string;
|
|
15819
15819
|
id: string;
|
|
15820
15820
|
url: string;
|
|
@@ -16369,7 +16369,7 @@ export declare const instagramContract: {
|
|
|
16369
16369
|
previewUrl: string;
|
|
16370
16370
|
imageSetId: string;
|
|
16371
16371
|
repliedMessage: {
|
|
16372
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16372
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
16373
16373
|
message: string;
|
|
16374
16374
|
id: string;
|
|
16375
16375
|
url: string;
|
|
@@ -16580,7 +16580,7 @@ export declare const instagramContract: {
|
|
|
16580
16580
|
template?: any;
|
|
16581
16581
|
metadata?: any;
|
|
16582
16582
|
fromMessage?: {
|
|
16583
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16583
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
16584
16584
|
message: string;
|
|
16585
16585
|
id: string;
|
|
16586
16586
|
url: string;
|
|
@@ -17135,7 +17135,7 @@ export declare const instagramContract: {
|
|
|
17135
17135
|
previewUrl: string;
|
|
17136
17136
|
imageSetId: string;
|
|
17137
17137
|
repliedMessage: {
|
|
17138
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17138
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
17139
17139
|
message: string;
|
|
17140
17140
|
id: string;
|
|
17141
17141
|
url: string;
|
|
@@ -17350,7 +17350,7 @@ export declare const instagramContract: {
|
|
|
17350
17350
|
requestId: string;
|
|
17351
17351
|
}, {
|
|
17352
17352
|
data: {
|
|
17353
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17353
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
17354
17354
|
message: string;
|
|
17355
17355
|
id: string;
|
|
17356
17356
|
url: string;
|
|
@@ -17905,7 +17905,7 @@ export declare const instagramContract: {
|
|
|
17905
17905
|
previewUrl: string;
|
|
17906
17906
|
imageSetId: string;
|
|
17907
17907
|
repliedMessage: {
|
|
17908
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17908
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
17909
17909
|
message: string;
|
|
17910
17910
|
id: string;
|
|
17911
17911
|
url: string;
|
|
@@ -18116,7 +18116,7 @@ export declare const instagramContract: {
|
|
|
18116
18116
|
template?: any;
|
|
18117
18117
|
metadata?: any;
|
|
18118
18118
|
fromMessage?: {
|
|
18119
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18119
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
18120
18120
|
message: string;
|
|
18121
18121
|
id: string;
|
|
18122
18122
|
url: string;
|
|
@@ -18671,7 +18671,7 @@ export declare const instagramContract: {
|
|
|
18671
18671
|
previewUrl: string;
|
|
18672
18672
|
imageSetId: string;
|
|
18673
18673
|
repliedMessage: {
|
|
18674
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18674
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported" | "lazada_sys_msg";
|
|
18675
18675
|
message: string;
|
|
18676
18676
|
id: string;
|
|
18677
18677
|
url: string;
|