@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
|
@@ -2166,7 +2166,7 @@ export declare const viberContract: {
|
|
|
2166
2166
|
id: z.ZodOptional<z.ZodString>;
|
|
2167
2167
|
message: z.ZodOptional<z.ZodString>;
|
|
2168
2168
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
2169
|
-
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"]>;
|
|
2169
|
+
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"]>;
|
|
2170
2170
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2171
2171
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
2172
2172
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -2222,7 +2222,7 @@ export declare const viberContract: {
|
|
|
2222
2222
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2223
2223
|
label: z.ZodOptional<z.ZodString>;
|
|
2224
2224
|
}, "strip", z.ZodTypeAny, {
|
|
2225
|
-
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";
|
|
2225
|
+
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";
|
|
2226
2226
|
direction: "incoming" | "outgoing" | "system";
|
|
2227
2227
|
id?: string | undefined;
|
|
2228
2228
|
message?: string | undefined;
|
|
@@ -2257,7 +2257,7 @@ export declare const viberContract: {
|
|
|
2257
2257
|
editedAt?: string | Date | null | undefined;
|
|
2258
2258
|
label?: string | undefined;
|
|
2259
2259
|
}, {
|
|
2260
|
-
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";
|
|
2260
|
+
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";
|
|
2261
2261
|
direction: "incoming" | "outgoing" | "system";
|
|
2262
2262
|
id?: string | undefined;
|
|
2263
2263
|
message?: string | undefined;
|
|
@@ -2294,7 +2294,7 @@ export declare const viberContract: {
|
|
|
2294
2294
|
}>;
|
|
2295
2295
|
}, "strip", z.ZodTypeAny, {
|
|
2296
2296
|
message: {
|
|
2297
|
-
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";
|
|
2297
|
+
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";
|
|
2298
2298
|
direction: "incoming" | "outgoing" | "system";
|
|
2299
2299
|
id?: string | undefined;
|
|
2300
2300
|
message?: string | undefined;
|
|
@@ -2425,7 +2425,7 @@ export declare const viberContract: {
|
|
|
2425
2425
|
isBot: boolean | null;
|
|
2426
2426
|
}, {
|
|
2427
2427
|
message: {
|
|
2428
|
-
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";
|
|
2428
|
+
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";
|
|
2429
2429
|
direction: "incoming" | "outgoing" | "system";
|
|
2430
2430
|
id?: string | undefined;
|
|
2431
2431
|
message?: string | undefined;
|
|
@@ -2560,7 +2560,7 @@ export declare const viberContract: {
|
|
|
2560
2560
|
200: z.ZodObject<{
|
|
2561
2561
|
requestId: z.ZodString;
|
|
2562
2562
|
data: z.ZodObject<{
|
|
2563
|
-
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"]>;
|
|
2563
|
+
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"]>;
|
|
2564
2564
|
message: z.ZodString;
|
|
2565
2565
|
id: z.ZodString;
|
|
2566
2566
|
url: z.ZodString;
|
|
@@ -6496,7 +6496,7 @@ export declare const viberContract: {
|
|
|
6496
6496
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
6497
6497
|
message: z.ZodString;
|
|
6498
6498
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
6499
|
-
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"]>;
|
|
6499
|
+
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"]>;
|
|
6500
6500
|
readAt: z.ZodDate;
|
|
6501
6501
|
metadata: z.ZodAny;
|
|
6502
6502
|
platformId: z.ZodString;
|
|
@@ -6542,15 +6542,15 @@ export declare const viberContract: {
|
|
|
6542
6542
|
fileUrl: string | null;
|
|
6543
6543
|
}>;
|
|
6544
6544
|
actor: z.ZodObject<{
|
|
6545
|
+
name: z.ZodString;
|
|
6545
6546
|
id: z.ZodString;
|
|
6547
|
+
address: z.ZodNullable<z.ZodString>;
|
|
6548
|
+
email: z.ZodString;
|
|
6546
6549
|
createdAt: z.ZodDate;
|
|
6547
6550
|
updatedAt: z.ZodDate;
|
|
6548
6551
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
6549
|
-
name: z.ZodString;
|
|
6550
|
-
email: z.ZodString;
|
|
6551
6552
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
6552
6553
|
password: z.ZodString;
|
|
6553
|
-
address: z.ZodNullable<z.ZodString>;
|
|
6554
6554
|
phone: z.ZodNullable<z.ZodString>;
|
|
6555
6555
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
6556
6556
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -6746,15 +6746,15 @@ export declare const viberContract: {
|
|
|
6746
6746
|
};
|
|
6747
6747
|
}>;
|
|
6748
6748
|
assignee: z.ZodObject<{
|
|
6749
|
+
name: z.ZodString;
|
|
6749
6750
|
id: z.ZodString;
|
|
6751
|
+
address: z.ZodNullable<z.ZodString>;
|
|
6752
|
+
email: z.ZodString;
|
|
6750
6753
|
createdAt: z.ZodDate;
|
|
6751
6754
|
updatedAt: z.ZodDate;
|
|
6752
6755
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
6753
|
-
name: z.ZodString;
|
|
6754
|
-
email: z.ZodString;
|
|
6755
6756
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
6756
6757
|
password: z.ZodString;
|
|
6757
|
-
address: z.ZodNullable<z.ZodString>;
|
|
6758
6758
|
phone: z.ZodNullable<z.ZodString>;
|
|
6759
6759
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
6760
6760
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -6950,15 +6950,15 @@ export declare const viberContract: {
|
|
|
6950
6950
|
};
|
|
6951
6951
|
}>;
|
|
6952
6952
|
sender: z.ZodObject<{
|
|
6953
|
+
name: z.ZodString;
|
|
6953
6954
|
id: z.ZodString;
|
|
6955
|
+
address: z.ZodNullable<z.ZodString>;
|
|
6956
|
+
email: z.ZodString;
|
|
6954
6957
|
createdAt: z.ZodDate;
|
|
6955
6958
|
updatedAt: z.ZodDate;
|
|
6956
6959
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
6957
|
-
name: z.ZodString;
|
|
6958
|
-
email: z.ZodString;
|
|
6959
6960
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
6960
6961
|
password: z.ZodString;
|
|
6961
|
-
address: z.ZodNullable<z.ZodString>;
|
|
6962
6962
|
phone: z.ZodNullable<z.ZodString>;
|
|
6963
6963
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
6964
6964
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -7154,7 +7154,7 @@ export declare const viberContract: {
|
|
|
7154
7154
|
};
|
|
7155
7155
|
}>;
|
|
7156
7156
|
}, "strip", z.ZodTypeAny, {
|
|
7157
|
-
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";
|
|
7157
|
+
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";
|
|
7158
7158
|
message: string;
|
|
7159
7159
|
id: string;
|
|
7160
7160
|
url: string;
|
|
@@ -7316,7 +7316,7 @@ export declare const viberContract: {
|
|
|
7316
7316
|
metadata?: any;
|
|
7317
7317
|
template?: any;
|
|
7318
7318
|
}, {
|
|
7319
|
-
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";
|
|
7319
|
+
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";
|
|
7320
7320
|
message: string;
|
|
7321
7321
|
id: string;
|
|
7322
7322
|
url: string;
|
|
@@ -7690,7 +7690,7 @@ export declare const viberContract: {
|
|
|
7690
7690
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7691
7691
|
message: z.ZodString;
|
|
7692
7692
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
7693
|
-
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"]>;
|
|
7693
|
+
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"]>;
|
|
7694
7694
|
readAt: z.ZodDate;
|
|
7695
7695
|
metadata: z.ZodAny;
|
|
7696
7696
|
platformId: z.ZodString;
|
|
@@ -11186,7 +11186,7 @@ export declare const viberContract: {
|
|
|
11186
11186
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
11187
11187
|
message: z.ZodString;
|
|
11188
11188
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
11189
|
-
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"]>;
|
|
11189
|
+
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"]>;
|
|
11190
11190
|
readAt: z.ZodDate;
|
|
11191
11191
|
metadata: z.ZodAny;
|
|
11192
11192
|
platformId: z.ZodString;
|
|
@@ -11232,15 +11232,15 @@ export declare const viberContract: {
|
|
|
11232
11232
|
fileUrl: string | null;
|
|
11233
11233
|
}>;
|
|
11234
11234
|
actor: z.ZodObject<{
|
|
11235
|
+
name: z.ZodString;
|
|
11235
11236
|
id: z.ZodString;
|
|
11237
|
+
address: z.ZodNullable<z.ZodString>;
|
|
11238
|
+
email: z.ZodString;
|
|
11236
11239
|
createdAt: z.ZodDate;
|
|
11237
11240
|
updatedAt: z.ZodDate;
|
|
11238
11241
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
11239
|
-
name: z.ZodString;
|
|
11240
|
-
email: z.ZodString;
|
|
11241
11242
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
11242
11243
|
password: z.ZodString;
|
|
11243
|
-
address: z.ZodNullable<z.ZodString>;
|
|
11244
11244
|
phone: z.ZodNullable<z.ZodString>;
|
|
11245
11245
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
11246
11246
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -11436,15 +11436,15 @@ export declare const viberContract: {
|
|
|
11436
11436
|
};
|
|
11437
11437
|
}>;
|
|
11438
11438
|
assignee: z.ZodObject<{
|
|
11439
|
+
name: z.ZodString;
|
|
11439
11440
|
id: z.ZodString;
|
|
11441
|
+
address: z.ZodNullable<z.ZodString>;
|
|
11442
|
+
email: z.ZodString;
|
|
11440
11443
|
createdAt: z.ZodDate;
|
|
11441
11444
|
updatedAt: z.ZodDate;
|
|
11442
11445
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
11443
|
-
name: z.ZodString;
|
|
11444
|
-
email: z.ZodString;
|
|
11445
11446
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
11446
11447
|
password: z.ZodString;
|
|
11447
|
-
address: z.ZodNullable<z.ZodString>;
|
|
11448
11448
|
phone: z.ZodNullable<z.ZodString>;
|
|
11449
11449
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
11450
11450
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -11640,15 +11640,15 @@ export declare const viberContract: {
|
|
|
11640
11640
|
};
|
|
11641
11641
|
}>;
|
|
11642
11642
|
sender: z.ZodObject<{
|
|
11643
|
+
name: z.ZodString;
|
|
11643
11644
|
id: z.ZodString;
|
|
11645
|
+
address: z.ZodNullable<z.ZodString>;
|
|
11646
|
+
email: z.ZodString;
|
|
11644
11647
|
createdAt: z.ZodDate;
|
|
11645
11648
|
updatedAt: z.ZodDate;
|
|
11646
11649
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
11647
|
-
name: z.ZodString;
|
|
11648
|
-
email: z.ZodString;
|
|
11649
11650
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
11650
11651
|
password: z.ZodString;
|
|
11651
|
-
address: z.ZodNullable<z.ZodString>;
|
|
11652
11652
|
phone: z.ZodNullable<z.ZodString>;
|
|
11653
11653
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
11654
11654
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -11844,7 +11844,7 @@ export declare const viberContract: {
|
|
|
11844
11844
|
};
|
|
11845
11845
|
}>;
|
|
11846
11846
|
}, "strip", z.ZodTypeAny, {
|
|
11847
|
-
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";
|
|
11847
|
+
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";
|
|
11848
11848
|
message: string;
|
|
11849
11849
|
id: string;
|
|
11850
11850
|
url: string;
|
|
@@ -12006,7 +12006,7 @@ export declare const viberContract: {
|
|
|
12006
12006
|
metadata?: any;
|
|
12007
12007
|
template?: any;
|
|
12008
12008
|
}, {
|
|
12009
|
-
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";
|
|
12009
|
+
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";
|
|
12010
12010
|
message: string;
|
|
12011
12011
|
id: string;
|
|
12012
12012
|
url: string;
|
|
@@ -12808,7 +12808,7 @@ export declare const viberContract: {
|
|
|
12808
12808
|
editedMessageid: z.ZodString;
|
|
12809
12809
|
label: z.ZodOptional<z.ZodString>;
|
|
12810
12810
|
}, "strip", z.ZodTypeAny, {
|
|
12811
|
-
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";
|
|
12811
|
+
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";
|
|
12812
12812
|
message: string;
|
|
12813
12813
|
id: string;
|
|
12814
12814
|
url: string;
|
|
@@ -13363,7 +13363,7 @@ export declare const viberContract: {
|
|
|
13363
13363
|
previewUrl: string;
|
|
13364
13364
|
imageSetId: string;
|
|
13365
13365
|
repliedMessage: {
|
|
13366
|
-
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";
|
|
13366
|
+
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";
|
|
13367
13367
|
message: string;
|
|
13368
13368
|
id: string;
|
|
13369
13369
|
url: string;
|
|
@@ -13574,7 +13574,7 @@ export declare const viberContract: {
|
|
|
13574
13574
|
template?: any;
|
|
13575
13575
|
label?: string | undefined;
|
|
13576
13576
|
}, {
|
|
13577
|
-
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";
|
|
13577
|
+
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";
|
|
13578
13578
|
message: string;
|
|
13579
13579
|
id: string;
|
|
13580
13580
|
url: string;
|
|
@@ -14129,7 +14129,7 @@ export declare const viberContract: {
|
|
|
14129
14129
|
previewUrl: string;
|
|
14130
14130
|
imageSetId: string;
|
|
14131
14131
|
repliedMessage: {
|
|
14132
|
-
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";
|
|
14132
|
+
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";
|
|
14133
14133
|
message: string;
|
|
14134
14134
|
id: string;
|
|
14135
14135
|
url: string;
|
|
@@ -14341,7 +14341,7 @@ export declare const viberContract: {
|
|
|
14341
14341
|
label?: string | undefined;
|
|
14342
14342
|
}>>>;
|
|
14343
14343
|
}, "strip", z.ZodTypeAny, {
|
|
14344
|
-
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";
|
|
14344
|
+
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";
|
|
14345
14345
|
message: string;
|
|
14346
14346
|
id: string;
|
|
14347
14347
|
url: string;
|
|
@@ -14896,7 +14896,7 @@ export declare const viberContract: {
|
|
|
14896
14896
|
previewUrl: string;
|
|
14897
14897
|
imageSetId: string;
|
|
14898
14898
|
repliedMessage: {
|
|
14899
|
-
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";
|
|
14899
|
+
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";
|
|
14900
14900
|
message: string;
|
|
14901
14901
|
id: string;
|
|
14902
14902
|
url: string;
|
|
@@ -15107,7 +15107,7 @@ export declare const viberContract: {
|
|
|
15107
15107
|
template?: any;
|
|
15108
15108
|
metadata?: any;
|
|
15109
15109
|
fromMessage?: {
|
|
15110
|
-
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";
|
|
15110
|
+
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";
|
|
15111
15111
|
message: string;
|
|
15112
15112
|
id: string;
|
|
15113
15113
|
url: string;
|
|
@@ -15662,7 +15662,7 @@ export declare const viberContract: {
|
|
|
15662
15662
|
previewUrl: string;
|
|
15663
15663
|
imageSetId: string;
|
|
15664
15664
|
repliedMessage: {
|
|
15665
|
-
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";
|
|
15665
|
+
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";
|
|
15666
15666
|
message: string;
|
|
15667
15667
|
id: string;
|
|
15668
15668
|
url: string;
|
|
@@ -15874,7 +15874,7 @@ export declare const viberContract: {
|
|
|
15874
15874
|
label?: string | undefined;
|
|
15875
15875
|
} | null | undefined;
|
|
15876
15876
|
}, {
|
|
15877
|
-
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";
|
|
15877
|
+
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";
|
|
15878
15878
|
message: string;
|
|
15879
15879
|
id: string;
|
|
15880
15880
|
url: string;
|
|
@@ -16429,7 +16429,7 @@ export declare const viberContract: {
|
|
|
16429
16429
|
previewUrl: string;
|
|
16430
16430
|
imageSetId: string;
|
|
16431
16431
|
repliedMessage: {
|
|
16432
|
-
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";
|
|
16432
|
+
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";
|
|
16433
16433
|
message: string;
|
|
16434
16434
|
id: string;
|
|
16435
16435
|
url: string;
|
|
@@ -16640,7 +16640,7 @@ export declare const viberContract: {
|
|
|
16640
16640
|
template?: any;
|
|
16641
16641
|
metadata?: any;
|
|
16642
16642
|
fromMessage?: {
|
|
16643
|
-
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";
|
|
16643
|
+
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";
|
|
16644
16644
|
message: string;
|
|
16645
16645
|
id: string;
|
|
16646
16646
|
url: string;
|
|
@@ -17195,7 +17195,7 @@ export declare const viberContract: {
|
|
|
17195
17195
|
previewUrl: string;
|
|
17196
17196
|
imageSetId: string;
|
|
17197
17197
|
repliedMessage: {
|
|
17198
|
-
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";
|
|
17198
|
+
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";
|
|
17199
17199
|
message: string;
|
|
17200
17200
|
id: string;
|
|
17201
17201
|
url: string;
|
|
@@ -17409,7 +17409,7 @@ export declare const viberContract: {
|
|
|
17409
17409
|
}>;
|
|
17410
17410
|
}, "strip", z.ZodTypeAny, {
|
|
17411
17411
|
data: {
|
|
17412
|
-
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";
|
|
17412
|
+
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";
|
|
17413
17413
|
message: string;
|
|
17414
17414
|
id: string;
|
|
17415
17415
|
url: string;
|
|
@@ -17964,7 +17964,7 @@ export declare const viberContract: {
|
|
|
17964
17964
|
previewUrl: string;
|
|
17965
17965
|
imageSetId: string;
|
|
17966
17966
|
repliedMessage: {
|
|
17967
|
-
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";
|
|
17967
|
+
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";
|
|
17968
17968
|
message: string;
|
|
17969
17969
|
id: string;
|
|
17970
17970
|
url: string;
|
|
@@ -18175,7 +18175,7 @@ export declare const viberContract: {
|
|
|
18175
18175
|
template?: any;
|
|
18176
18176
|
metadata?: any;
|
|
18177
18177
|
fromMessage?: {
|
|
18178
|
-
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";
|
|
18178
|
+
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";
|
|
18179
18179
|
message: string;
|
|
18180
18180
|
id: string;
|
|
18181
18181
|
url: string;
|
|
@@ -18730,7 +18730,7 @@ export declare const viberContract: {
|
|
|
18730
18730
|
previewUrl: string;
|
|
18731
18731
|
imageSetId: string;
|
|
18732
18732
|
repliedMessage: {
|
|
18733
|
-
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";
|
|
18733
|
+
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";
|
|
18734
18734
|
message: string;
|
|
18735
18735
|
id: string;
|
|
18736
18736
|
url: string;
|
|
@@ -18945,7 +18945,7 @@ export declare const viberContract: {
|
|
|
18945
18945
|
requestId: string;
|
|
18946
18946
|
}, {
|
|
18947
18947
|
data: {
|
|
18948
|
-
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";
|
|
18948
|
+
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";
|
|
18949
18949
|
message: string;
|
|
18950
18950
|
id: string;
|
|
18951
18951
|
url: string;
|
|
@@ -19500,7 +19500,7 @@ export declare const viberContract: {
|
|
|
19500
19500
|
previewUrl: string;
|
|
19501
19501
|
imageSetId: string;
|
|
19502
19502
|
repliedMessage: {
|
|
19503
|
-
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";
|
|
19503
|
+
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";
|
|
19504
19504
|
message: string;
|
|
19505
19505
|
id: string;
|
|
19506
19506
|
url: string;
|
|
@@ -19711,7 +19711,7 @@ export declare const viberContract: {
|
|
|
19711
19711
|
template?: any;
|
|
19712
19712
|
metadata?: any;
|
|
19713
19713
|
fromMessage?: {
|
|
19714
|
-
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";
|
|
19714
|
+
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";
|
|
19715
19715
|
message: string;
|
|
19716
19716
|
id: string;
|
|
19717
19717
|
url: string;
|
|
@@ -20266,7 +20266,7 @@ export declare const viberContract: {
|
|
|
20266
20266
|
previewUrl: string;
|
|
20267
20267
|
imageSetId: string;
|
|
20268
20268
|
repliedMessage: {
|
|
20269
|
-
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";
|
|
20269
|
+
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";
|
|
20270
20270
|
message: string;
|
|
20271
20271
|
id: string;
|
|
20272
20272
|
url: string;
|