@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
|
@@ -575,7 +575,7 @@ export declare const messengerContract: {
|
|
|
575
575
|
id: z.ZodOptional<z.ZodString>;
|
|
576
576
|
message: z.ZodOptional<z.ZodString>;
|
|
577
577
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
578
|
-
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"]>;
|
|
578
|
+
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"]>;
|
|
579
579
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
580
580
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
581
581
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -631,7 +631,7 @@ export declare const messengerContract: {
|
|
|
631
631
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
632
632
|
label: z.ZodOptional<z.ZodString>;
|
|
633
633
|
}, "strip", z.ZodTypeAny, {
|
|
634
|
-
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";
|
|
634
|
+
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";
|
|
635
635
|
direction: "incoming" | "outgoing" | "system";
|
|
636
636
|
id?: string | undefined;
|
|
637
637
|
message?: string | undefined;
|
|
@@ -666,7 +666,7 @@ export declare const messengerContract: {
|
|
|
666
666
|
editedAt?: string | Date | null | undefined;
|
|
667
667
|
label?: string | undefined;
|
|
668
668
|
}, {
|
|
669
|
-
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";
|
|
669
|
+
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";
|
|
670
670
|
direction: "incoming" | "outgoing" | "system";
|
|
671
671
|
id?: string | undefined;
|
|
672
672
|
message?: string | undefined;
|
|
@@ -703,7 +703,7 @@ export declare const messengerContract: {
|
|
|
703
703
|
}>;
|
|
704
704
|
}, "strip", z.ZodTypeAny, {
|
|
705
705
|
message: {
|
|
706
|
-
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";
|
|
706
|
+
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";
|
|
707
707
|
direction: "incoming" | "outgoing" | "system";
|
|
708
708
|
id?: string | undefined;
|
|
709
709
|
message?: string | undefined;
|
|
@@ -834,7 +834,7 @@ export declare const messengerContract: {
|
|
|
834
834
|
isBot: boolean | null;
|
|
835
835
|
}, {
|
|
836
836
|
message: {
|
|
837
|
-
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";
|
|
837
|
+
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";
|
|
838
838
|
direction: "incoming" | "outgoing" | "system";
|
|
839
839
|
id?: string | undefined;
|
|
840
840
|
message?: string | undefined;
|
|
@@ -969,7 +969,7 @@ export declare const messengerContract: {
|
|
|
969
969
|
200: z.ZodObject<{
|
|
970
970
|
requestId: z.ZodString;
|
|
971
971
|
data: z.ZodObject<{
|
|
972
|
-
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"]>;
|
|
972
|
+
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"]>;
|
|
973
973
|
message: z.ZodString;
|
|
974
974
|
id: z.ZodString;
|
|
975
975
|
url: z.ZodString;
|
|
@@ -4905,7 +4905,7 @@ export declare const messengerContract: {
|
|
|
4905
4905
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4906
4906
|
message: z.ZodString;
|
|
4907
4907
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
4908
|
-
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"]>;
|
|
4908
|
+
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"]>;
|
|
4909
4909
|
readAt: z.ZodDate;
|
|
4910
4910
|
metadata: z.ZodAny;
|
|
4911
4911
|
platformId: z.ZodString;
|
|
@@ -4951,15 +4951,15 @@ export declare const messengerContract: {
|
|
|
4951
4951
|
fileUrl: string | null;
|
|
4952
4952
|
}>;
|
|
4953
4953
|
actor: z.ZodObject<{
|
|
4954
|
+
name: z.ZodString;
|
|
4954
4955
|
id: z.ZodString;
|
|
4956
|
+
address: z.ZodNullable<z.ZodString>;
|
|
4957
|
+
email: z.ZodString;
|
|
4955
4958
|
createdAt: z.ZodDate;
|
|
4956
4959
|
updatedAt: z.ZodDate;
|
|
4957
4960
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4958
|
-
name: z.ZodString;
|
|
4959
|
-
email: z.ZodString;
|
|
4960
4961
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
4961
4962
|
password: z.ZodString;
|
|
4962
|
-
address: z.ZodNullable<z.ZodString>;
|
|
4963
4963
|
phone: z.ZodNullable<z.ZodString>;
|
|
4964
4964
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
4965
4965
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -5155,15 +5155,15 @@ export declare const messengerContract: {
|
|
|
5155
5155
|
};
|
|
5156
5156
|
}>;
|
|
5157
5157
|
assignee: z.ZodObject<{
|
|
5158
|
+
name: z.ZodString;
|
|
5158
5159
|
id: z.ZodString;
|
|
5160
|
+
address: z.ZodNullable<z.ZodString>;
|
|
5161
|
+
email: z.ZodString;
|
|
5159
5162
|
createdAt: z.ZodDate;
|
|
5160
5163
|
updatedAt: z.ZodDate;
|
|
5161
5164
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5162
|
-
name: z.ZodString;
|
|
5163
|
-
email: z.ZodString;
|
|
5164
5165
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
5165
5166
|
password: z.ZodString;
|
|
5166
|
-
address: z.ZodNullable<z.ZodString>;
|
|
5167
5167
|
phone: z.ZodNullable<z.ZodString>;
|
|
5168
5168
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
5169
5169
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -5359,15 +5359,15 @@ export declare const messengerContract: {
|
|
|
5359
5359
|
};
|
|
5360
5360
|
}>;
|
|
5361
5361
|
sender: z.ZodObject<{
|
|
5362
|
+
name: z.ZodString;
|
|
5362
5363
|
id: z.ZodString;
|
|
5364
|
+
address: z.ZodNullable<z.ZodString>;
|
|
5365
|
+
email: z.ZodString;
|
|
5363
5366
|
createdAt: z.ZodDate;
|
|
5364
5367
|
updatedAt: z.ZodDate;
|
|
5365
5368
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5366
|
-
name: z.ZodString;
|
|
5367
|
-
email: z.ZodString;
|
|
5368
5369
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
5369
5370
|
password: z.ZodString;
|
|
5370
|
-
address: z.ZodNullable<z.ZodString>;
|
|
5371
5371
|
phone: z.ZodNullable<z.ZodString>;
|
|
5372
5372
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
5373
5373
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -5563,7 +5563,7 @@ export declare const messengerContract: {
|
|
|
5563
5563
|
};
|
|
5564
5564
|
}>;
|
|
5565
5565
|
}, "strip", z.ZodTypeAny, {
|
|
5566
|
-
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";
|
|
5566
|
+
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";
|
|
5567
5567
|
message: string;
|
|
5568
5568
|
id: string;
|
|
5569
5569
|
url: string;
|
|
@@ -5725,7 +5725,7 @@ export declare const messengerContract: {
|
|
|
5725
5725
|
metadata?: any;
|
|
5726
5726
|
template?: any;
|
|
5727
5727
|
}, {
|
|
5728
|
-
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";
|
|
5728
|
+
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";
|
|
5729
5729
|
message: string;
|
|
5730
5730
|
id: string;
|
|
5731
5731
|
url: string;
|
|
@@ -6099,7 +6099,7 @@ export declare const messengerContract: {
|
|
|
6099
6099
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
6100
6100
|
message: z.ZodString;
|
|
6101
6101
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
6102
|
-
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"]>;
|
|
6102
|
+
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"]>;
|
|
6103
6103
|
readAt: z.ZodDate;
|
|
6104
6104
|
metadata: z.ZodAny;
|
|
6105
6105
|
platformId: z.ZodString;
|
|
@@ -9595,7 +9595,7 @@ export declare const messengerContract: {
|
|
|
9595
9595
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9596
9596
|
message: z.ZodString;
|
|
9597
9597
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
9598
|
-
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"]>;
|
|
9598
|
+
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"]>;
|
|
9599
9599
|
readAt: z.ZodDate;
|
|
9600
9600
|
metadata: z.ZodAny;
|
|
9601
9601
|
platformId: z.ZodString;
|
|
@@ -9641,15 +9641,15 @@ export declare const messengerContract: {
|
|
|
9641
9641
|
fileUrl: string | null;
|
|
9642
9642
|
}>;
|
|
9643
9643
|
actor: z.ZodObject<{
|
|
9644
|
+
name: z.ZodString;
|
|
9644
9645
|
id: z.ZodString;
|
|
9646
|
+
address: z.ZodNullable<z.ZodString>;
|
|
9647
|
+
email: z.ZodString;
|
|
9645
9648
|
createdAt: z.ZodDate;
|
|
9646
9649
|
updatedAt: z.ZodDate;
|
|
9647
9650
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9648
|
-
name: z.ZodString;
|
|
9649
|
-
email: z.ZodString;
|
|
9650
9651
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
9651
9652
|
password: z.ZodString;
|
|
9652
|
-
address: z.ZodNullable<z.ZodString>;
|
|
9653
9653
|
phone: z.ZodNullable<z.ZodString>;
|
|
9654
9654
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
9655
9655
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -9845,15 +9845,15 @@ export declare const messengerContract: {
|
|
|
9845
9845
|
};
|
|
9846
9846
|
}>;
|
|
9847
9847
|
assignee: z.ZodObject<{
|
|
9848
|
+
name: z.ZodString;
|
|
9848
9849
|
id: z.ZodString;
|
|
9850
|
+
address: z.ZodNullable<z.ZodString>;
|
|
9851
|
+
email: z.ZodString;
|
|
9849
9852
|
createdAt: z.ZodDate;
|
|
9850
9853
|
updatedAt: z.ZodDate;
|
|
9851
9854
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9852
|
-
name: z.ZodString;
|
|
9853
|
-
email: z.ZodString;
|
|
9854
9855
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
9855
9856
|
password: z.ZodString;
|
|
9856
|
-
address: z.ZodNullable<z.ZodString>;
|
|
9857
9857
|
phone: z.ZodNullable<z.ZodString>;
|
|
9858
9858
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
9859
9859
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -10049,15 +10049,15 @@ export declare const messengerContract: {
|
|
|
10049
10049
|
};
|
|
10050
10050
|
}>;
|
|
10051
10051
|
sender: z.ZodObject<{
|
|
10052
|
+
name: z.ZodString;
|
|
10052
10053
|
id: z.ZodString;
|
|
10054
|
+
address: z.ZodNullable<z.ZodString>;
|
|
10055
|
+
email: z.ZodString;
|
|
10053
10056
|
createdAt: z.ZodDate;
|
|
10054
10057
|
updatedAt: z.ZodDate;
|
|
10055
10058
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
10056
|
-
name: z.ZodString;
|
|
10057
|
-
email: z.ZodString;
|
|
10058
10059
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
10059
10060
|
password: z.ZodString;
|
|
10060
|
-
address: z.ZodNullable<z.ZodString>;
|
|
10061
10061
|
phone: z.ZodNullable<z.ZodString>;
|
|
10062
10062
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
10063
10063
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -10253,7 +10253,7 @@ export declare const messengerContract: {
|
|
|
10253
10253
|
};
|
|
10254
10254
|
}>;
|
|
10255
10255
|
}, "strip", z.ZodTypeAny, {
|
|
10256
|
-
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";
|
|
10256
|
+
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";
|
|
10257
10257
|
message: string;
|
|
10258
10258
|
id: string;
|
|
10259
10259
|
url: string;
|
|
@@ -10415,7 +10415,7 @@ export declare const messengerContract: {
|
|
|
10415
10415
|
metadata?: any;
|
|
10416
10416
|
template?: any;
|
|
10417
10417
|
}, {
|
|
10418
|
-
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";
|
|
10418
|
+
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";
|
|
10419
10419
|
message: string;
|
|
10420
10420
|
id: string;
|
|
10421
10421
|
url: string;
|
|
@@ -11217,7 +11217,7 @@ export declare const messengerContract: {
|
|
|
11217
11217
|
editedMessageid: z.ZodString;
|
|
11218
11218
|
label: z.ZodOptional<z.ZodString>;
|
|
11219
11219
|
}, "strip", z.ZodTypeAny, {
|
|
11220
|
-
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";
|
|
11220
|
+
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";
|
|
11221
11221
|
message: string;
|
|
11222
11222
|
id: string;
|
|
11223
11223
|
url: string;
|
|
@@ -11772,7 +11772,7 @@ export declare const messengerContract: {
|
|
|
11772
11772
|
previewUrl: string;
|
|
11773
11773
|
imageSetId: string;
|
|
11774
11774
|
repliedMessage: {
|
|
11775
|
-
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";
|
|
11775
|
+
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";
|
|
11776
11776
|
message: string;
|
|
11777
11777
|
id: string;
|
|
11778
11778
|
url: string;
|
|
@@ -11983,7 +11983,7 @@ export declare const messengerContract: {
|
|
|
11983
11983
|
template?: any;
|
|
11984
11984
|
label?: string | undefined;
|
|
11985
11985
|
}, {
|
|
11986
|
-
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";
|
|
11986
|
+
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";
|
|
11987
11987
|
message: string;
|
|
11988
11988
|
id: string;
|
|
11989
11989
|
url: string;
|
|
@@ -12538,7 +12538,7 @@ export declare const messengerContract: {
|
|
|
12538
12538
|
previewUrl: string;
|
|
12539
12539
|
imageSetId: string;
|
|
12540
12540
|
repliedMessage: {
|
|
12541
|
-
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";
|
|
12541
|
+
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";
|
|
12542
12542
|
message: string;
|
|
12543
12543
|
id: string;
|
|
12544
12544
|
url: string;
|
|
@@ -12750,7 +12750,7 @@ export declare const messengerContract: {
|
|
|
12750
12750
|
label?: string | undefined;
|
|
12751
12751
|
}>>>;
|
|
12752
12752
|
}, "strip", z.ZodTypeAny, {
|
|
12753
|
-
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";
|
|
12753
|
+
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";
|
|
12754
12754
|
message: string;
|
|
12755
12755
|
id: string;
|
|
12756
12756
|
url: string;
|
|
@@ -13305,7 +13305,7 @@ export declare const messengerContract: {
|
|
|
13305
13305
|
previewUrl: string;
|
|
13306
13306
|
imageSetId: string;
|
|
13307
13307
|
repliedMessage: {
|
|
13308
|
-
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";
|
|
13308
|
+
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";
|
|
13309
13309
|
message: string;
|
|
13310
13310
|
id: string;
|
|
13311
13311
|
url: string;
|
|
@@ -13516,7 +13516,7 @@ export declare const messengerContract: {
|
|
|
13516
13516
|
template?: any;
|
|
13517
13517
|
metadata?: any;
|
|
13518
13518
|
fromMessage?: {
|
|
13519
|
-
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";
|
|
13519
|
+
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";
|
|
13520
13520
|
message: string;
|
|
13521
13521
|
id: string;
|
|
13522
13522
|
url: string;
|
|
@@ -14071,7 +14071,7 @@ export declare const messengerContract: {
|
|
|
14071
14071
|
previewUrl: string;
|
|
14072
14072
|
imageSetId: string;
|
|
14073
14073
|
repliedMessage: {
|
|
14074
|
-
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";
|
|
14074
|
+
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";
|
|
14075
14075
|
message: string;
|
|
14076
14076
|
id: string;
|
|
14077
14077
|
url: string;
|
|
@@ -14283,7 +14283,7 @@ export declare const messengerContract: {
|
|
|
14283
14283
|
label?: string | undefined;
|
|
14284
14284
|
} | null | undefined;
|
|
14285
14285
|
}, {
|
|
14286
|
-
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";
|
|
14286
|
+
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";
|
|
14287
14287
|
message: string;
|
|
14288
14288
|
id: string;
|
|
14289
14289
|
url: string;
|
|
@@ -14838,7 +14838,7 @@ export declare const messengerContract: {
|
|
|
14838
14838
|
previewUrl: string;
|
|
14839
14839
|
imageSetId: string;
|
|
14840
14840
|
repliedMessage: {
|
|
14841
|
-
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";
|
|
14841
|
+
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";
|
|
14842
14842
|
message: string;
|
|
14843
14843
|
id: string;
|
|
14844
14844
|
url: string;
|
|
@@ -15049,7 +15049,7 @@ export declare const messengerContract: {
|
|
|
15049
15049
|
template?: any;
|
|
15050
15050
|
metadata?: any;
|
|
15051
15051
|
fromMessage?: {
|
|
15052
|
-
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";
|
|
15052
|
+
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";
|
|
15053
15053
|
message: string;
|
|
15054
15054
|
id: string;
|
|
15055
15055
|
url: string;
|
|
@@ -15604,7 +15604,7 @@ export declare const messengerContract: {
|
|
|
15604
15604
|
previewUrl: string;
|
|
15605
15605
|
imageSetId: string;
|
|
15606
15606
|
repliedMessage: {
|
|
15607
|
-
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";
|
|
15607
|
+
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";
|
|
15608
15608
|
message: string;
|
|
15609
15609
|
id: string;
|
|
15610
15610
|
url: string;
|
|
@@ -15818,7 +15818,7 @@ export declare const messengerContract: {
|
|
|
15818
15818
|
}>;
|
|
15819
15819
|
}, "strip", z.ZodTypeAny, {
|
|
15820
15820
|
data: {
|
|
15821
|
-
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";
|
|
15821
|
+
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";
|
|
15822
15822
|
message: string;
|
|
15823
15823
|
id: string;
|
|
15824
15824
|
url: string;
|
|
@@ -16373,7 +16373,7 @@ export declare const messengerContract: {
|
|
|
16373
16373
|
previewUrl: string;
|
|
16374
16374
|
imageSetId: string;
|
|
16375
16375
|
repliedMessage: {
|
|
16376
|
-
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";
|
|
16376
|
+
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";
|
|
16377
16377
|
message: string;
|
|
16378
16378
|
id: string;
|
|
16379
16379
|
url: string;
|
|
@@ -16584,7 +16584,7 @@ export declare const messengerContract: {
|
|
|
16584
16584
|
template?: any;
|
|
16585
16585
|
metadata?: any;
|
|
16586
16586
|
fromMessage?: {
|
|
16587
|
-
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";
|
|
16587
|
+
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";
|
|
16588
16588
|
message: string;
|
|
16589
16589
|
id: string;
|
|
16590
16590
|
url: string;
|
|
@@ -17139,7 +17139,7 @@ export declare const messengerContract: {
|
|
|
17139
17139
|
previewUrl: string;
|
|
17140
17140
|
imageSetId: string;
|
|
17141
17141
|
repliedMessage: {
|
|
17142
|
-
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";
|
|
17142
|
+
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";
|
|
17143
17143
|
message: string;
|
|
17144
17144
|
id: string;
|
|
17145
17145
|
url: string;
|
|
@@ -17354,7 +17354,7 @@ export declare const messengerContract: {
|
|
|
17354
17354
|
requestId: string;
|
|
17355
17355
|
}, {
|
|
17356
17356
|
data: {
|
|
17357
|
-
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";
|
|
17357
|
+
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";
|
|
17358
17358
|
message: string;
|
|
17359
17359
|
id: string;
|
|
17360
17360
|
url: string;
|
|
@@ -17909,7 +17909,7 @@ export declare const messengerContract: {
|
|
|
17909
17909
|
previewUrl: string;
|
|
17910
17910
|
imageSetId: string;
|
|
17911
17911
|
repliedMessage: {
|
|
17912
|
-
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";
|
|
17912
|
+
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";
|
|
17913
17913
|
message: string;
|
|
17914
17914
|
id: string;
|
|
17915
17915
|
url: string;
|
|
@@ -18120,7 +18120,7 @@ export declare const messengerContract: {
|
|
|
18120
18120
|
template?: any;
|
|
18121
18121
|
metadata?: any;
|
|
18122
18122
|
fromMessage?: {
|
|
18123
|
-
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";
|
|
18123
|
+
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";
|
|
18124
18124
|
message: string;
|
|
18125
18125
|
id: string;
|
|
18126
18126
|
url: string;
|
|
@@ -18675,7 +18675,7 @@ export declare const messengerContract: {
|
|
|
18675
18675
|
previewUrl: string;
|
|
18676
18676
|
imageSetId: string;
|
|
18677
18677
|
repliedMessage: {
|
|
18678
|
-
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";
|
|
18678
|
+
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";
|
|
18679
18679
|
message: string;
|
|
18680
18680
|
id: string;
|
|
18681
18681
|
url: string;
|
|
@@ -45,15 +45,15 @@ export declare const userNotificationContract: {
|
|
|
45
45
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
46
46
|
actorId: z.ZodString;
|
|
47
47
|
actor: z.ZodObject<{
|
|
48
|
+
name: z.ZodString;
|
|
48
49
|
id: z.ZodString;
|
|
50
|
+
address: z.ZodNullable<z.ZodString>;
|
|
51
|
+
email: z.ZodString;
|
|
49
52
|
createdAt: z.ZodDate;
|
|
50
53
|
updatedAt: z.ZodDate;
|
|
51
54
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
52
|
-
name: z.ZodString;
|
|
53
|
-
email: z.ZodString;
|
|
54
55
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
55
56
|
password: z.ZodString;
|
|
56
|
-
address: z.ZodNullable<z.ZodString>;
|
|
57
57
|
phone: z.ZodNullable<z.ZodString>;
|
|
58
58
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
59
59
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -1059,15 +1059,15 @@ export declare const userNotificationContract: {
|
|
|
1059
1059
|
201: z.ZodObject<{
|
|
1060
1060
|
requestId: z.ZodString;
|
|
1061
1061
|
data: z.ZodObject<{
|
|
1062
|
+
name: z.ZodString;
|
|
1062
1063
|
id: z.ZodString;
|
|
1064
|
+
address: z.ZodNullable<z.ZodString>;
|
|
1065
|
+
email: z.ZodString;
|
|
1063
1066
|
createdAt: z.ZodDate;
|
|
1064
1067
|
updatedAt: z.ZodDate;
|
|
1065
1068
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
1066
|
-
name: z.ZodString;
|
|
1067
|
-
email: z.ZodString;
|
|
1068
1069
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
1069
1070
|
password: z.ZodString;
|
|
1070
|
-
address: z.ZodNullable<z.ZodString>;
|
|
1071
1071
|
phone: z.ZodNullable<z.ZodString>;
|
|
1072
1072
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
1073
1073
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -1449,15 +1449,15 @@ export declare const userNotificationContract: {
|
|
|
1449
1449
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
1450
1450
|
actorId: z.ZodString;
|
|
1451
1451
|
actor: z.ZodObject<{
|
|
1452
|
+
name: z.ZodString;
|
|
1452
1453
|
id: z.ZodString;
|
|
1454
|
+
address: z.ZodNullable<z.ZodString>;
|
|
1455
|
+
email: z.ZodString;
|
|
1453
1456
|
createdAt: z.ZodDate;
|
|
1454
1457
|
updatedAt: z.ZodDate;
|
|
1455
1458
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
1456
|
-
name: z.ZodString;
|
|
1457
|
-
email: z.ZodString;
|
|
1458
1459
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
1459
1460
|
password: z.ZodString;
|
|
1460
|
-
address: z.ZodNullable<z.ZodString>;
|
|
1461
1461
|
phone: z.ZodNullable<z.ZodString>;
|
|
1462
1462
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
1463
1463
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -6,15 +6,15 @@ export declare const NotificationChangeSchema: z.ZodObject<{
|
|
|
6
6
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7
7
|
actorId: z.ZodString;
|
|
8
8
|
actor: z.ZodObject<{
|
|
9
|
+
name: z.ZodString;
|
|
9
10
|
id: z.ZodString;
|
|
11
|
+
address: z.ZodNullable<z.ZodString>;
|
|
12
|
+
email: z.ZodString;
|
|
10
13
|
createdAt: z.ZodDate;
|
|
11
14
|
updatedAt: z.ZodDate;
|
|
12
15
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
13
|
-
name: z.ZodString;
|
|
14
|
-
email: z.ZodString;
|
|
15
16
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
16
17
|
password: z.ZodString;
|
|
17
|
-
address: z.ZodNullable<z.ZodString>;
|
|
18
18
|
phone: z.ZodNullable<z.ZodString>;
|
|
19
19
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
20
20
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -329,15 +329,15 @@ export declare const NotificationObjectSchema: z.ZodObject<{
|
|
|
329
329
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
330
330
|
actorId: z.ZodString;
|
|
331
331
|
actor: z.ZodObject<{
|
|
332
|
+
name: z.ZodString;
|
|
332
333
|
id: z.ZodString;
|
|
334
|
+
address: z.ZodNullable<z.ZodString>;
|
|
335
|
+
email: z.ZodString;
|
|
333
336
|
createdAt: z.ZodDate;
|
|
334
337
|
updatedAt: z.ZodDate;
|
|
335
338
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
336
|
-
name: z.ZodString;
|
|
337
|
-
email: z.ZodString;
|
|
338
339
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
339
340
|
password: z.ZodString;
|
|
340
|
-
address: z.ZodNullable<z.ZodString>;
|
|
341
341
|
phone: z.ZodNullable<z.ZodString>;
|
|
342
342
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
343
343
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -778,15 +778,15 @@ export declare const NotificationSchema: z.ZodObject<{
|
|
|
778
778
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
779
779
|
actorId: z.ZodString;
|
|
780
780
|
actor: z.ZodObject<{
|
|
781
|
+
name: z.ZodString;
|
|
781
782
|
id: z.ZodString;
|
|
783
|
+
address: z.ZodNullable<z.ZodString>;
|
|
784
|
+
email: z.ZodString;
|
|
782
785
|
createdAt: z.ZodDate;
|
|
783
786
|
updatedAt: z.ZodDate;
|
|
784
787
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
785
|
-
name: z.ZodString;
|
|
786
|
-
email: z.ZodString;
|
|
787
788
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
788
789
|
password: z.ZodString;
|
|
789
|
-
address: z.ZodNullable<z.ZodString>;
|
|
790
790
|
phone: z.ZodNullable<z.ZodString>;
|
|
791
791
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
792
792
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -31,15 +31,15 @@ export declare const GetNotificationsResponseSchema: z.ZodObject<{
|
|
|
31
31
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
32
32
|
actorId: z.ZodString;
|
|
33
33
|
actor: z.ZodObject<{
|
|
34
|
+
name: z.ZodString;
|
|
34
35
|
id: z.ZodString;
|
|
36
|
+
address: z.ZodNullable<z.ZodString>;
|
|
37
|
+
email: z.ZodString;
|
|
35
38
|
createdAt: z.ZodDate;
|
|
36
39
|
updatedAt: z.ZodDate;
|
|
37
40
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
38
|
-
name: z.ZodString;
|
|
39
|
-
email: z.ZodString;
|
|
40
41
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
41
42
|
password: z.ZodString;
|
|
42
|
-
address: z.ZodNullable<z.ZodString>;
|
|
43
43
|
phone: z.ZodNullable<z.ZodString>;
|
|
44
44
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
45
45
|
roles: z.ZodArray<z.ZodObject<{
|