@kl1/contracts 1.0.86 → 1.0.88
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/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/channel/index.d.ts +9 -1
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +7 -0
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +32 -32
- package/dist/src/chat/schema.d.ts +30 -18
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +35 -25
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/chatwoot/index.d.ts +7527 -0
- package/dist/src/chatwoot/index.d.ts.map +1 -0
- package/dist/src/chatwoot/schema.d.ts +79 -0
- package/dist/src/chatwoot/schema.d.ts.map +1 -0
- package/dist/src/chatwoot/validation.d.ts +53 -0
- package/dist/src/chatwoot/validation.d.ts.map +1 -0
- package/dist/src/contract.d.ts +147 -100
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +27 -17
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +32 -22
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +5 -5
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/messenger/index.d.ts +27 -17
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/viber/index.d.ts +27 -17
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -29822,6 +29822,13 @@ export declare const apiContract: {
|
|
29822
29822
|
getChannels: {
|
29823
29823
|
summary: "Get Channels";
|
29824
29824
|
method: "GET";
|
29825
|
+
query: import("zod").ZodObject<{
|
29826
|
+
withDeleted: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
29827
|
+
}, "strip", import("zod").ZodTypeAny, {
|
29828
|
+
withDeleted: boolean;
|
29829
|
+
}, {
|
29830
|
+
withDeleted?: boolean | undefined;
|
29831
|
+
}>;
|
29825
29832
|
responses: {
|
29826
29833
|
200: import("zod").ZodObject<{
|
29827
29834
|
requestId: import("zod").ZodString;
|
@@ -81990,7 +81997,7 @@ export declare const platformContract: {
|
|
81990
81997
|
message: import("zod").ZodObject<{
|
81991
81998
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
81992
81999
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
81993
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
82000
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
81994
82001
|
readAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
81995
82002
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
81996
82003
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -82034,7 +82041,7 @@ export declare const platformContract: {
|
|
82034
82041
|
phone: string | null;
|
82035
82042
|
}>;
|
82036
82043
|
}, "strip", import("zod").ZodTypeAny, {
|
82037
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
82044
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
82038
82045
|
direction: "incoming" | "outgoing" | "system";
|
82039
82046
|
sender: {
|
82040
82047
|
address: string | null;
|
@@ -82060,7 +82067,7 @@ export declare const platformContract: {
|
|
82060
82067
|
fileSize: number;
|
82061
82068
|
} | undefined;
|
82062
82069
|
}, {
|
82063
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
82070
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
82064
82071
|
direction: "incoming" | "outgoing" | "system";
|
82065
82072
|
sender: {
|
82066
82073
|
address: string | null;
|
@@ -82088,7 +82095,7 @@ export declare const platformContract: {
|
|
82088
82095
|
}>;
|
82089
82096
|
}, "strip", import("zod").ZodTypeAny, {
|
82090
82097
|
message: {
|
82091
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
82098
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
82092
82099
|
direction: "incoming" | "outgoing" | "system";
|
82093
82100
|
sender: {
|
82094
82101
|
address: string | null;
|
@@ -82174,7 +82181,7 @@ export declare const platformContract: {
|
|
82174
82181
|
stickerId: number;
|
82175
82182
|
}, {
|
82176
82183
|
message: {
|
82177
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
82184
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
82178
82185
|
direction: "incoming" | "outgoing" | "system";
|
82179
82186
|
sender: {
|
82180
82187
|
address: string | null;
|
@@ -82521,6 +82528,8 @@ export declare const platformContract: {
|
|
82521
82528
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
82522
82529
|
isLatest: import("zod").ZodBoolean;
|
82523
82530
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
82531
|
+
createdAt: import("zod").ZodString;
|
82532
|
+
updatedAt: import("zod").ZodString;
|
82524
82533
|
platformContact: import("zod").ZodObject<{
|
82525
82534
|
channelId: import("zod").ZodString;
|
82526
82535
|
socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -82737,6 +82746,8 @@ export declare const platformContract: {
|
|
82737
82746
|
} | undefined;
|
82738
82747
|
};
|
82739
82748
|
direction: "incoming" | "outgoing" | "system";
|
82749
|
+
createdAt: string;
|
82750
|
+
updatedAt: string;
|
82740
82751
|
actor: {
|
82741
82752
|
address: string | null;
|
82742
82753
|
name: string;
|
@@ -82792,6 +82803,8 @@ export declare const platformContract: {
|
|
82792
82803
|
} | undefined;
|
82793
82804
|
};
|
82794
82805
|
direction: "incoming" | "outgoing" | "system";
|
82806
|
+
createdAt: string;
|
82807
|
+
updatedAt: string;
|
82795
82808
|
actor: {
|
82796
82809
|
address: string | null;
|
82797
82810
|
name: string;
|
@@ -82824,7 +82837,7 @@ export declare const platformContract: {
|
|
82824
82837
|
message: import("zod").ZodObject<{
|
82825
82838
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
82826
82839
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
82827
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
82840
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
82828
82841
|
readAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
82829
82842
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
82830
82843
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -82871,7 +82884,7 @@ export declare const platformContract: {
|
|
82871
82884
|
phone: string | null;
|
82872
82885
|
}>;
|
82873
82886
|
}, "strip", import("zod").ZodTypeAny, {
|
82874
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
82887
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
82875
82888
|
direction: "incoming" | "outgoing" | "system";
|
82876
82889
|
sender: {
|
82877
82890
|
id: string;
|
@@ -82898,7 +82911,7 @@ export declare const platformContract: {
|
|
82898
82911
|
fileSize: number;
|
82899
82912
|
} | undefined;
|
82900
82913
|
}, {
|
82901
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
82914
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
82902
82915
|
direction: "incoming" | "outgoing" | "system";
|
82903
82916
|
sender: {
|
82904
82917
|
id: string;
|
@@ -82927,7 +82940,7 @@ export declare const platformContract: {
|
|
82927
82940
|
}>;
|
82928
82941
|
}, "strip", import("zod").ZodTypeAny, {
|
82929
82942
|
message: {
|
82930
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
82943
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
82931
82944
|
direction: "incoming" | "outgoing" | "system";
|
82932
82945
|
sender: {
|
82933
82946
|
id: string;
|
@@ -82981,6 +82994,8 @@ export declare const platformContract: {
|
|
82981
82994
|
} | undefined;
|
82982
82995
|
};
|
82983
82996
|
direction: "incoming" | "outgoing" | "system";
|
82997
|
+
createdAt: string;
|
82998
|
+
updatedAt: string;
|
82984
82999
|
actor: {
|
82985
83000
|
address: string | null;
|
82986
83001
|
name: string;
|
@@ -83012,7 +83027,7 @@ export declare const platformContract: {
|
|
83012
83027
|
};
|
83013
83028
|
}, {
|
83014
83029
|
message: {
|
83015
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
83030
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
83016
83031
|
direction: "incoming" | "outgoing" | "system";
|
83017
83032
|
sender: {
|
83018
83033
|
id: string;
|
@@ -83066,6 +83081,8 @@ export declare const platformContract: {
|
|
83066
83081
|
} | undefined;
|
83067
83082
|
};
|
83068
83083
|
direction: "incoming" | "outgoing" | "system";
|
83084
|
+
createdAt: string;
|
83085
|
+
updatedAt: string;
|
83069
83086
|
actor: {
|
83070
83087
|
address: string | null;
|
83071
83088
|
name: string;
|
@@ -83107,7 +83124,7 @@ export declare const platformContract: {
|
|
83107
83124
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
83108
83125
|
message: import("zod").ZodString;
|
83109
83126
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
83110
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
83127
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
83111
83128
|
readAt: import("zod").ZodDate;
|
83112
83129
|
metadata: import("zod").ZodAny;
|
83113
83130
|
platformId: import("zod").ZodString;
|
@@ -85648,7 +85665,7 @@ export declare const platformContract: {
|
|
85648
85665
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
85649
85666
|
message: import("zod").ZodString;
|
85650
85667
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
85651
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
85668
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
85652
85669
|
readAt: import("zod").ZodDate;
|
85653
85670
|
metadata: import("zod").ZodAny;
|
85654
85671
|
platformId: import("zod").ZodString;
|
@@ -86306,7 +86323,7 @@ export declare const platformContract: {
|
|
86306
86323
|
};
|
86307
86324
|
}>;
|
86308
86325
|
}, "strip", import("zod").ZodTypeAny, {
|
86309
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
86326
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
86310
86327
|
message: string;
|
86311
86328
|
id: string;
|
86312
86329
|
url: string;
|
@@ -86468,7 +86485,7 @@ export declare const platformContract: {
|
|
86468
86485
|
metadata?: any;
|
86469
86486
|
template?: any;
|
86470
86487
|
}, {
|
86471
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
86488
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
86472
86489
|
message: string;
|
86473
86490
|
id: string;
|
86474
86491
|
url: string;
|
@@ -87243,7 +87260,7 @@ export declare const platformContract: {
|
|
87243
87260
|
};
|
87244
87261
|
}>;
|
87245
87262
|
}, "strip", import("zod").ZodTypeAny, {
|
87246
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
87263
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
87247
87264
|
message: string;
|
87248
87265
|
id: string;
|
87249
87266
|
url: string;
|
@@ -87672,7 +87689,7 @@ export declare const platformContract: {
|
|
87672
87689
|
previewUrl: string;
|
87673
87690
|
imageSetId: string;
|
87674
87691
|
repliedMessage: {
|
87675
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
87692
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
87676
87693
|
message: string;
|
87677
87694
|
id: string;
|
87678
87695
|
url: string;
|
@@ -87881,7 +87898,7 @@ export declare const platformContract: {
|
|
87881
87898
|
metadata?: any;
|
87882
87899
|
template?: any;
|
87883
87900
|
}, {
|
87884
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
87901
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
87885
87902
|
message: string;
|
87886
87903
|
id: string;
|
87887
87904
|
url: string;
|
@@ -88310,7 +88327,7 @@ export declare const platformContract: {
|
|
88310
88327
|
previewUrl: string;
|
88311
88328
|
imageSetId: string;
|
88312
88329
|
repliedMessage: {
|
88313
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
88330
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
88314
88331
|
message: string;
|
88315
88332
|
id: string;
|
88316
88333
|
url: string;
|
@@ -88521,7 +88538,7 @@ export declare const platformContract: {
|
|
88521
88538
|
}>;
|
88522
88539
|
}, "strip", import("zod").ZodTypeAny, {
|
88523
88540
|
data: {
|
88524
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
88541
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
88525
88542
|
message: string;
|
88526
88543
|
id: string;
|
88527
88544
|
url: string;
|
@@ -88950,7 +88967,7 @@ export declare const platformContract: {
|
|
88950
88967
|
previewUrl: string;
|
88951
88968
|
imageSetId: string;
|
88952
88969
|
repliedMessage: {
|
88953
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
88970
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
88954
88971
|
message: string;
|
88955
88972
|
id: string;
|
88956
88973
|
url: string;
|
@@ -89162,7 +89179,7 @@ export declare const platformContract: {
|
|
89162
89179
|
requestId: string;
|
89163
89180
|
}, {
|
89164
89181
|
data: {
|
89165
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
89182
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
89166
89183
|
message: string;
|
89167
89184
|
id: string;
|
89168
89185
|
url: string;
|
@@ -89591,7 +89608,7 @@ export declare const platformContract: {
|
|
89591
89608
|
previewUrl: string;
|
89592
89609
|
imageSetId: string;
|
89593
89610
|
repliedMessage: {
|
89594
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
89611
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
89595
89612
|
message: string;
|
89596
89613
|
id: string;
|
89597
89614
|
url: string;
|
@@ -90460,6 +90477,8 @@ export declare const platformContract: {
|
|
90460
90477
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
90461
90478
|
isLatest: import("zod").ZodBoolean;
|
90462
90479
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
90480
|
+
createdAt: import("zod").ZodString;
|
90481
|
+
updatedAt: import("zod").ZodString;
|
90463
90482
|
platformContact: import("zod").ZodObject<{
|
90464
90483
|
channelId: import("zod").ZodString;
|
90465
90484
|
socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -90676,6 +90695,8 @@ export declare const platformContract: {
|
|
90676
90695
|
} | undefined;
|
90677
90696
|
};
|
90678
90697
|
direction: "incoming" | "outgoing" | "system";
|
90698
|
+
createdAt: string;
|
90699
|
+
updatedAt: string;
|
90679
90700
|
actor: {
|
90680
90701
|
address: string | null;
|
90681
90702
|
name: string;
|
@@ -90731,6 +90752,8 @@ export declare const platformContract: {
|
|
90731
90752
|
} | undefined;
|
90732
90753
|
};
|
90733
90754
|
direction: "incoming" | "outgoing" | "system";
|
90755
|
+
createdAt: string;
|
90756
|
+
updatedAt: string;
|
90734
90757
|
actor: {
|
90735
90758
|
address: string | null;
|
90736
90759
|
name: string;
|
@@ -90763,7 +90786,7 @@ export declare const platformContract: {
|
|
90763
90786
|
message: import("zod").ZodObject<{
|
90764
90787
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
90765
90788
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
90766
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
90789
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
90767
90790
|
readAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
90768
90791
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
90769
90792
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -90810,7 +90833,7 @@ export declare const platformContract: {
|
|
90810
90833
|
phone: string | null;
|
90811
90834
|
}>;
|
90812
90835
|
}, "strip", import("zod").ZodTypeAny, {
|
90813
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
90836
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
90814
90837
|
direction: "incoming" | "outgoing" | "system";
|
90815
90838
|
sender: {
|
90816
90839
|
id: string;
|
@@ -90837,7 +90860,7 @@ export declare const platformContract: {
|
|
90837
90860
|
fileSize: number;
|
90838
90861
|
} | undefined;
|
90839
90862
|
}, {
|
90840
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
90863
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
90841
90864
|
direction: "incoming" | "outgoing" | "system";
|
90842
90865
|
sender: {
|
90843
90866
|
id: string;
|
@@ -90866,7 +90889,7 @@ export declare const platformContract: {
|
|
90866
90889
|
}>;
|
90867
90890
|
}, "strip", import("zod").ZodTypeAny, {
|
90868
90891
|
message: {
|
90869
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
90892
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
90870
90893
|
direction: "incoming" | "outgoing" | "system";
|
90871
90894
|
sender: {
|
90872
90895
|
id: string;
|
@@ -90920,6 +90943,8 @@ export declare const platformContract: {
|
|
90920
90943
|
} | undefined;
|
90921
90944
|
};
|
90922
90945
|
direction: "incoming" | "outgoing" | "system";
|
90946
|
+
createdAt: string;
|
90947
|
+
updatedAt: string;
|
90923
90948
|
actor: {
|
90924
90949
|
address: string | null;
|
90925
90950
|
name: string;
|
@@ -90951,7 +90976,7 @@ export declare const platformContract: {
|
|
90951
90976
|
};
|
90952
90977
|
}, {
|
90953
90978
|
message: {
|
90954
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
90979
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
90955
90980
|
direction: "incoming" | "outgoing" | "system";
|
90956
90981
|
sender: {
|
90957
90982
|
id: string;
|
@@ -91005,6 +91030,8 @@ export declare const platformContract: {
|
|
91005
91030
|
} | undefined;
|
91006
91031
|
};
|
91007
91032
|
direction: "incoming" | "outgoing" | "system";
|
91033
|
+
createdAt: string;
|
91034
|
+
updatedAt: string;
|
91008
91035
|
actor: {
|
91009
91036
|
address: string | null;
|
91010
91037
|
name: string;
|
@@ -91046,7 +91073,7 @@ export declare const platformContract: {
|
|
91046
91073
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
91047
91074
|
message: import("zod").ZodString;
|
91048
91075
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
91049
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
91076
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
91050
91077
|
readAt: import("zod").ZodDate;
|
91051
91078
|
metadata: import("zod").ZodAny;
|
91052
91079
|
platformId: import("zod").ZodString;
|
@@ -93587,7 +93614,7 @@ export declare const platformContract: {
|
|
93587
93614
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
93588
93615
|
message: import("zod").ZodString;
|
93589
93616
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
93590
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
93617
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
93591
93618
|
readAt: import("zod").ZodDate;
|
93592
93619
|
metadata: import("zod").ZodAny;
|
93593
93620
|
platformId: import("zod").ZodString;
|
@@ -94245,7 +94272,7 @@ export declare const platformContract: {
|
|
94245
94272
|
};
|
94246
94273
|
}>;
|
94247
94274
|
}, "strip", import("zod").ZodTypeAny, {
|
94248
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
94275
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94249
94276
|
message: string;
|
94250
94277
|
id: string;
|
94251
94278
|
url: string;
|
@@ -94407,7 +94434,7 @@ export declare const platformContract: {
|
|
94407
94434
|
metadata?: any;
|
94408
94435
|
template?: any;
|
94409
94436
|
}, {
|
94410
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
94437
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94411
94438
|
message: string;
|
94412
94439
|
id: string;
|
94413
94440
|
url: string;
|
@@ -95182,7 +95209,7 @@ export declare const platformContract: {
|
|
95182
95209
|
};
|
95183
95210
|
}>;
|
95184
95211
|
}, "strip", import("zod").ZodTypeAny, {
|
95185
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
95212
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
95186
95213
|
message: string;
|
95187
95214
|
id: string;
|
95188
95215
|
url: string;
|
@@ -95611,7 +95638,7 @@ export declare const platformContract: {
|
|
95611
95638
|
previewUrl: string;
|
95612
95639
|
imageSetId: string;
|
95613
95640
|
repliedMessage: {
|
95614
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
95641
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
95615
95642
|
message: string;
|
95616
95643
|
id: string;
|
95617
95644
|
url: string;
|
@@ -95820,7 +95847,7 @@ export declare const platformContract: {
|
|
95820
95847
|
metadata?: any;
|
95821
95848
|
template?: any;
|
95822
95849
|
}, {
|
95823
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
95850
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
95824
95851
|
message: string;
|
95825
95852
|
id: string;
|
95826
95853
|
url: string;
|
@@ -96249,7 +96276,7 @@ export declare const platformContract: {
|
|
96249
96276
|
previewUrl: string;
|
96250
96277
|
imageSetId: string;
|
96251
96278
|
repliedMessage: {
|
96252
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
96279
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
96253
96280
|
message: string;
|
96254
96281
|
id: string;
|
96255
96282
|
url: string;
|
@@ -96460,7 +96487,7 @@ export declare const platformContract: {
|
|
96460
96487
|
}>;
|
96461
96488
|
}, "strip", import("zod").ZodTypeAny, {
|
96462
96489
|
data: {
|
96463
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
96490
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
96464
96491
|
message: string;
|
96465
96492
|
id: string;
|
96466
96493
|
url: string;
|
@@ -96889,7 +96916,7 @@ export declare const platformContract: {
|
|
96889
96916
|
previewUrl: string;
|
96890
96917
|
imageSetId: string;
|
96891
96918
|
repliedMessage: {
|
96892
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
96919
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
96893
96920
|
message: string;
|
96894
96921
|
id: string;
|
96895
96922
|
url: string;
|
@@ -97101,7 +97128,7 @@ export declare const platformContract: {
|
|
97101
97128
|
requestId: string;
|
97102
97129
|
}, {
|
97103
97130
|
data: {
|
97104
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
97131
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
97105
97132
|
message: string;
|
97106
97133
|
id: string;
|
97107
97134
|
url: string;
|
@@ -97530,7 +97557,7 @@ export declare const platformContract: {
|
|
97530
97557
|
previewUrl: string;
|
97531
97558
|
imageSetId: string;
|
97532
97559
|
repliedMessage: {
|
97533
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
97560
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
97534
97561
|
message: string;
|
97535
97562
|
id: string;
|
97536
97563
|
url: string;
|
@@ -99066,6 +99093,8 @@ export declare const platformContract: {
|
|
99066
99093
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
99067
99094
|
isLatest: import("zod").ZodBoolean;
|
99068
99095
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
99096
|
+
createdAt: import("zod").ZodString;
|
99097
|
+
updatedAt: import("zod").ZodString;
|
99069
99098
|
platformContact: import("zod").ZodObject<{
|
99070
99099
|
channelId: import("zod").ZodString;
|
99071
99100
|
socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -99282,6 +99311,8 @@ export declare const platformContract: {
|
|
99282
99311
|
} | undefined;
|
99283
99312
|
};
|
99284
99313
|
direction: "incoming" | "outgoing" | "system";
|
99314
|
+
createdAt: string;
|
99315
|
+
updatedAt: string;
|
99285
99316
|
actor: {
|
99286
99317
|
address: string | null;
|
99287
99318
|
name: string;
|
@@ -99337,6 +99368,8 @@ export declare const platformContract: {
|
|
99337
99368
|
} | undefined;
|
99338
99369
|
};
|
99339
99370
|
direction: "incoming" | "outgoing" | "system";
|
99371
|
+
createdAt: string;
|
99372
|
+
updatedAt: string;
|
99340
99373
|
actor: {
|
99341
99374
|
address: string | null;
|
99342
99375
|
name: string;
|
@@ -99369,7 +99402,7 @@ export declare const platformContract: {
|
|
99369
99402
|
message: import("zod").ZodObject<{
|
99370
99403
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
99371
99404
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
99372
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
99405
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
99373
99406
|
readAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
99374
99407
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
99375
99408
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -99416,7 +99449,7 @@ export declare const platformContract: {
|
|
99416
99449
|
phone: string | null;
|
99417
99450
|
}>;
|
99418
99451
|
}, "strip", import("zod").ZodTypeAny, {
|
99419
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
99452
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
99420
99453
|
direction: "incoming" | "outgoing" | "system";
|
99421
99454
|
sender: {
|
99422
99455
|
id: string;
|
@@ -99443,7 +99476,7 @@ export declare const platformContract: {
|
|
99443
99476
|
fileSize: number;
|
99444
99477
|
} | undefined;
|
99445
99478
|
}, {
|
99446
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
99479
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
99447
99480
|
direction: "incoming" | "outgoing" | "system";
|
99448
99481
|
sender: {
|
99449
99482
|
id: string;
|
@@ -99472,7 +99505,7 @@ export declare const platformContract: {
|
|
99472
99505
|
}>;
|
99473
99506
|
}, "strip", import("zod").ZodTypeAny, {
|
99474
99507
|
message: {
|
99475
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
99508
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
99476
99509
|
direction: "incoming" | "outgoing" | "system";
|
99477
99510
|
sender: {
|
99478
99511
|
id: string;
|
@@ -99526,6 +99559,8 @@ export declare const platformContract: {
|
|
99526
99559
|
} | undefined;
|
99527
99560
|
};
|
99528
99561
|
direction: "incoming" | "outgoing" | "system";
|
99562
|
+
createdAt: string;
|
99563
|
+
updatedAt: string;
|
99529
99564
|
actor: {
|
99530
99565
|
address: string | null;
|
99531
99566
|
name: string;
|
@@ -99557,7 +99592,7 @@ export declare const platformContract: {
|
|
99557
99592
|
};
|
99558
99593
|
}, {
|
99559
99594
|
message: {
|
99560
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
99595
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
99561
99596
|
direction: "incoming" | "outgoing" | "system";
|
99562
99597
|
sender: {
|
99563
99598
|
id: string;
|
@@ -99611,6 +99646,8 @@ export declare const platformContract: {
|
|
99611
99646
|
} | undefined;
|
99612
99647
|
};
|
99613
99648
|
direction: "incoming" | "outgoing" | "system";
|
99649
|
+
createdAt: string;
|
99650
|
+
updatedAt: string;
|
99614
99651
|
actor: {
|
99615
99652
|
address: string | null;
|
99616
99653
|
name: string;
|
@@ -99652,7 +99689,7 @@ export declare const platformContract: {
|
|
99652
99689
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
99653
99690
|
message: import("zod").ZodString;
|
99654
99691
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
99655
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
99692
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
99656
99693
|
readAt: import("zod").ZodDate;
|
99657
99694
|
metadata: import("zod").ZodAny;
|
99658
99695
|
platformId: import("zod").ZodString;
|
@@ -102193,7 +102230,7 @@ export declare const platformContract: {
|
|
102193
102230
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
102194
102231
|
message: import("zod").ZodString;
|
102195
102232
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
102196
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
102233
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
102197
102234
|
readAt: import("zod").ZodDate;
|
102198
102235
|
metadata: import("zod").ZodAny;
|
102199
102236
|
platformId: import("zod").ZodString;
|
@@ -102851,7 +102888,7 @@ export declare const platformContract: {
|
|
102851
102888
|
};
|
102852
102889
|
}>;
|
102853
102890
|
}, "strip", import("zod").ZodTypeAny, {
|
102854
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
102891
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
102855
102892
|
message: string;
|
102856
102893
|
id: string;
|
102857
102894
|
url: string;
|
@@ -103013,7 +103050,7 @@ export declare const platformContract: {
|
|
103013
103050
|
metadata?: any;
|
103014
103051
|
template?: any;
|
103015
103052
|
}, {
|
103016
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
103053
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
103017
103054
|
message: string;
|
103018
103055
|
id: string;
|
103019
103056
|
url: string;
|
@@ -103788,7 +103825,7 @@ export declare const platformContract: {
|
|
103788
103825
|
};
|
103789
103826
|
}>;
|
103790
103827
|
}, "strip", import("zod").ZodTypeAny, {
|
103791
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
103828
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
103792
103829
|
message: string;
|
103793
103830
|
id: string;
|
103794
103831
|
url: string;
|
@@ -104217,7 +104254,7 @@ export declare const platformContract: {
|
|
104217
104254
|
previewUrl: string;
|
104218
104255
|
imageSetId: string;
|
104219
104256
|
repliedMessage: {
|
104220
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
104257
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
104221
104258
|
message: string;
|
104222
104259
|
id: string;
|
104223
104260
|
url: string;
|
@@ -104426,7 +104463,7 @@ export declare const platformContract: {
|
|
104426
104463
|
metadata?: any;
|
104427
104464
|
template?: any;
|
104428
104465
|
}, {
|
104429
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
104466
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
104430
104467
|
message: string;
|
104431
104468
|
id: string;
|
104432
104469
|
url: string;
|
@@ -104855,7 +104892,7 @@ export declare const platformContract: {
|
|
104855
104892
|
previewUrl: string;
|
104856
104893
|
imageSetId: string;
|
104857
104894
|
repliedMessage: {
|
104858
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
104895
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
104859
104896
|
message: string;
|
104860
104897
|
id: string;
|
104861
104898
|
url: string;
|
@@ -105066,7 +105103,7 @@ export declare const platformContract: {
|
|
105066
105103
|
}>;
|
105067
105104
|
}, "strip", import("zod").ZodTypeAny, {
|
105068
105105
|
data: {
|
105069
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
105106
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
105070
105107
|
message: string;
|
105071
105108
|
id: string;
|
105072
105109
|
url: string;
|
@@ -105495,7 +105532,7 @@ export declare const platformContract: {
|
|
105495
105532
|
previewUrl: string;
|
105496
105533
|
imageSetId: string;
|
105497
105534
|
repliedMessage: {
|
105498
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
105535
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
105499
105536
|
message: string;
|
105500
105537
|
id: string;
|
105501
105538
|
url: string;
|
@@ -105707,7 +105744,7 @@ export declare const platformContract: {
|
|
105707
105744
|
requestId: string;
|
105708
105745
|
}, {
|
105709
105746
|
data: {
|
105710
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
105747
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
105711
105748
|
message: string;
|
105712
105749
|
id: string;
|
105713
105750
|
url: string;
|
@@ -106136,7 +106173,7 @@ export declare const platformContract: {
|
|
106136
106173
|
previewUrl: string;
|
106137
106174
|
imageSetId: string;
|
106138
106175
|
repliedMessage: {
|
106139
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
106176
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
106140
106177
|
message: string;
|
106141
106178
|
id: string;
|
106142
106179
|
url: string;
|
@@ -108771,6 +108808,8 @@ export declare const platformContract: {
|
|
108771
108808
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
108772
108809
|
isLatest: import("zod").ZodBoolean;
|
108773
108810
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
108811
|
+
createdAt: import("zod").ZodString;
|
108812
|
+
updatedAt: import("zod").ZodString;
|
108774
108813
|
platformContact: import("zod").ZodObject<{
|
108775
108814
|
channelId: import("zod").ZodString;
|
108776
108815
|
socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -108987,6 +109026,8 @@ export declare const platformContract: {
|
|
108987
109026
|
} | undefined;
|
108988
109027
|
};
|
108989
109028
|
direction: "incoming" | "outgoing" | "system";
|
109029
|
+
createdAt: string;
|
109030
|
+
updatedAt: string;
|
108990
109031
|
actor: {
|
108991
109032
|
address: string | null;
|
108992
109033
|
name: string;
|
@@ -109042,6 +109083,8 @@ export declare const platformContract: {
|
|
109042
109083
|
} | undefined;
|
109043
109084
|
};
|
109044
109085
|
direction: "incoming" | "outgoing" | "system";
|
109086
|
+
createdAt: string;
|
109087
|
+
updatedAt: string;
|
109045
109088
|
actor: {
|
109046
109089
|
address: string | null;
|
109047
109090
|
name: string;
|
@@ -109074,7 +109117,7 @@ export declare const platformContract: {
|
|
109074
109117
|
message: import("zod").ZodObject<{
|
109075
109118
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
109076
109119
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
109077
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
109120
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
109078
109121
|
readAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
109079
109122
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
109080
109123
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -109121,7 +109164,7 @@ export declare const platformContract: {
|
|
109121
109164
|
phone: string | null;
|
109122
109165
|
}>;
|
109123
109166
|
}, "strip", import("zod").ZodTypeAny, {
|
109124
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
109167
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
109125
109168
|
direction: "incoming" | "outgoing" | "system";
|
109126
109169
|
sender: {
|
109127
109170
|
id: string;
|
@@ -109148,7 +109191,7 @@ export declare const platformContract: {
|
|
109148
109191
|
fileSize: number;
|
109149
109192
|
} | undefined;
|
109150
109193
|
}, {
|
109151
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
109194
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
109152
109195
|
direction: "incoming" | "outgoing" | "system";
|
109153
109196
|
sender: {
|
109154
109197
|
id: string;
|
@@ -109177,7 +109220,7 @@ export declare const platformContract: {
|
|
109177
109220
|
}>;
|
109178
109221
|
}, "strip", import("zod").ZodTypeAny, {
|
109179
109222
|
message: {
|
109180
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
109223
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
109181
109224
|
direction: "incoming" | "outgoing" | "system";
|
109182
109225
|
sender: {
|
109183
109226
|
id: string;
|
@@ -109231,6 +109274,8 @@ export declare const platformContract: {
|
|
109231
109274
|
} | undefined;
|
109232
109275
|
};
|
109233
109276
|
direction: "incoming" | "outgoing" | "system";
|
109277
|
+
createdAt: string;
|
109278
|
+
updatedAt: string;
|
109234
109279
|
actor: {
|
109235
109280
|
address: string | null;
|
109236
109281
|
name: string;
|
@@ -109262,7 +109307,7 @@ export declare const platformContract: {
|
|
109262
109307
|
};
|
109263
109308
|
}, {
|
109264
109309
|
message: {
|
109265
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
109310
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
109266
109311
|
direction: "incoming" | "outgoing" | "system";
|
109267
109312
|
sender: {
|
109268
109313
|
id: string;
|
@@ -109316,6 +109361,8 @@ export declare const platformContract: {
|
|
109316
109361
|
} | undefined;
|
109317
109362
|
};
|
109318
109363
|
direction: "incoming" | "outgoing" | "system";
|
109364
|
+
createdAt: string;
|
109365
|
+
updatedAt: string;
|
109319
109366
|
actor: {
|
109320
109367
|
address: string | null;
|
109321
109368
|
name: string;
|
@@ -109357,7 +109404,7 @@ export declare const platformContract: {
|
|
109357
109404
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
109358
109405
|
message: import("zod").ZodString;
|
109359
109406
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
109360
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
109407
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
109361
109408
|
readAt: import("zod").ZodDate;
|
109362
109409
|
metadata: import("zod").ZodAny;
|
109363
109410
|
platformId: import("zod").ZodString;
|
@@ -111898,7 +111945,7 @@ export declare const platformContract: {
|
|
111898
111945
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
111899
111946
|
message: import("zod").ZodString;
|
111900
111947
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
111901
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
111948
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
111902
111949
|
readAt: import("zod").ZodDate;
|
111903
111950
|
metadata: import("zod").ZodAny;
|
111904
111951
|
platformId: import("zod").ZodString;
|
@@ -112556,7 +112603,7 @@ export declare const platformContract: {
|
|
112556
112603
|
};
|
112557
112604
|
}>;
|
112558
112605
|
}, "strip", import("zod").ZodTypeAny, {
|
112559
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
112606
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
112560
112607
|
message: string;
|
112561
112608
|
id: string;
|
112562
112609
|
url: string;
|
@@ -112718,7 +112765,7 @@ export declare const platformContract: {
|
|
112718
112765
|
metadata?: any;
|
112719
112766
|
template?: any;
|
112720
112767
|
}, {
|
112721
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
112768
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
112722
112769
|
message: string;
|
112723
112770
|
id: string;
|
112724
112771
|
url: string;
|
@@ -113493,7 +113540,7 @@ export declare const platformContract: {
|
|
113493
113540
|
};
|
113494
113541
|
}>;
|
113495
113542
|
}, "strip", import("zod").ZodTypeAny, {
|
113496
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
113543
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
113497
113544
|
message: string;
|
113498
113545
|
id: string;
|
113499
113546
|
url: string;
|
@@ -113922,7 +113969,7 @@ export declare const platformContract: {
|
|
113922
113969
|
previewUrl: string;
|
113923
113970
|
imageSetId: string;
|
113924
113971
|
repliedMessage: {
|
113925
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
113972
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
113926
113973
|
message: string;
|
113927
113974
|
id: string;
|
113928
113975
|
url: string;
|
@@ -114131,7 +114178,7 @@ export declare const platformContract: {
|
|
114131
114178
|
metadata?: any;
|
114132
114179
|
template?: any;
|
114133
114180
|
}, {
|
114134
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
114181
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
114135
114182
|
message: string;
|
114136
114183
|
id: string;
|
114137
114184
|
url: string;
|
@@ -114560,7 +114607,7 @@ export declare const platformContract: {
|
|
114560
114607
|
previewUrl: string;
|
114561
114608
|
imageSetId: string;
|
114562
114609
|
repliedMessage: {
|
114563
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
114610
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
114564
114611
|
message: string;
|
114565
114612
|
id: string;
|
114566
114613
|
url: string;
|
@@ -114771,7 +114818,7 @@ export declare const platformContract: {
|
|
114771
114818
|
}>;
|
114772
114819
|
}, "strip", import("zod").ZodTypeAny, {
|
114773
114820
|
data: {
|
114774
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
114821
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
114775
114822
|
message: string;
|
114776
114823
|
id: string;
|
114777
114824
|
url: string;
|
@@ -115200,7 +115247,7 @@ export declare const platformContract: {
|
|
115200
115247
|
previewUrl: string;
|
115201
115248
|
imageSetId: string;
|
115202
115249
|
repliedMessage: {
|
115203
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
115250
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
115204
115251
|
message: string;
|
115205
115252
|
id: string;
|
115206
115253
|
url: string;
|
@@ -115412,7 +115459,7 @@ export declare const platformContract: {
|
|
115412
115459
|
requestId: string;
|
115413
115460
|
}, {
|
115414
115461
|
data: {
|
115415
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
115462
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
115416
115463
|
message: string;
|
115417
115464
|
id: string;
|
115418
115465
|
url: string;
|
@@ -115841,7 +115888,7 @@ export declare const platformContract: {
|
|
115841
115888
|
previewUrl: string;
|
115842
115889
|
imageSetId: string;
|
115843
115890
|
repliedMessage: {
|
115844
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
115891
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
115845
115892
|
message: string;
|
115846
115893
|
id: string;
|
115847
115894
|
url: string;
|
@@ -124202,7 +124249,7 @@ export declare const chatContract: {
|
|
124202
124249
|
sendMessage: {
|
124203
124250
|
body: import("zod").ZodObject<{
|
124204
124251
|
roomId: import("zod").ZodString;
|
124205
|
-
messageType: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
124252
|
+
messageType: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
124206
124253
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
124207
124254
|
messageAttachments: import("zod").ZodOptional<import("zod").ZodObject<{
|
124208
124255
|
bucketName: import("zod").ZodString;
|
@@ -124445,7 +124492,7 @@ export declare const chatContract: {
|
|
124445
124492
|
}>>;
|
124446
124493
|
file: import("zod").ZodOptional<import("zod").ZodType<File, import("zod").ZodTypeDef, File>>;
|
124447
124494
|
}, "strip", import("zod").ZodTypeAny, {
|
124448
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
124495
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
124449
124496
|
roomId: string;
|
124450
124497
|
message?: string | undefined;
|
124451
124498
|
messageAttachments?: {
|
@@ -124507,7 +124554,7 @@ export declare const chatContract: {
|
|
124507
124554
|
} | undefined;
|
124508
124555
|
file?: File | undefined;
|
124509
124556
|
}, {
|
124510
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
124557
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
124511
124558
|
roomId: string;
|
124512
124559
|
message?: string | undefined;
|
124513
124560
|
messageAttachments?: {
|
@@ -124581,7 +124628,7 @@ export declare const chatContract: {
|
|
124581
124628
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
124582
124629
|
message: import("zod").ZodString;
|
124583
124630
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
124584
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
124631
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
124585
124632
|
readAt: import("zod").ZodDate;
|
124586
124633
|
metadata: import("zod").ZodAny;
|
124587
124634
|
platformId: import("zod").ZodString;
|
@@ -127122,7 +127169,7 @@ export declare const chatContract: {
|
|
127122
127169
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
127123
127170
|
message: import("zod").ZodString;
|
127124
127171
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
127125
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
127172
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
127126
127173
|
readAt: import("zod").ZodDate;
|
127127
127174
|
metadata: import("zod").ZodAny;
|
127128
127175
|
platformId: import("zod").ZodString;
|
@@ -127780,7 +127827,7 @@ export declare const chatContract: {
|
|
127780
127827
|
};
|
127781
127828
|
}>;
|
127782
127829
|
}, "strip", import("zod").ZodTypeAny, {
|
127783
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
127830
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
127784
127831
|
message: string;
|
127785
127832
|
id: string;
|
127786
127833
|
url: string;
|
@@ -127942,7 +127989,7 @@ export declare const chatContract: {
|
|
127942
127989
|
metadata?: any;
|
127943
127990
|
template?: any;
|
127944
127991
|
}, {
|
127945
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
127992
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
127946
127993
|
message: string;
|
127947
127994
|
id: string;
|
127948
127995
|
url: string;
|
@@ -128717,7 +128764,7 @@ export declare const chatContract: {
|
|
128717
128764
|
};
|
128718
128765
|
}>;
|
128719
128766
|
}, "strip", import("zod").ZodTypeAny, {
|
128720
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
128767
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
128721
128768
|
message: string;
|
128722
128769
|
id: string;
|
128723
128770
|
url: string;
|
@@ -129146,7 +129193,7 @@ export declare const chatContract: {
|
|
129146
129193
|
previewUrl: string;
|
129147
129194
|
imageSetId: string;
|
129148
129195
|
repliedMessage: {
|
129149
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
129196
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
129150
129197
|
message: string;
|
129151
129198
|
id: string;
|
129152
129199
|
url: string;
|
@@ -129355,7 +129402,7 @@ export declare const chatContract: {
|
|
129355
129402
|
metadata?: any;
|
129356
129403
|
template?: any;
|
129357
129404
|
}, {
|
129358
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
129405
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
129359
129406
|
message: string;
|
129360
129407
|
id: string;
|
129361
129408
|
url: string;
|
@@ -129784,7 +129831,7 @@ export declare const chatContract: {
|
|
129784
129831
|
previewUrl: string;
|
129785
129832
|
imageSetId: string;
|
129786
129833
|
repliedMessage: {
|
129787
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
129834
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
129788
129835
|
message: string;
|
129789
129836
|
id: string;
|
129790
129837
|
url: string;
|
@@ -129995,7 +130042,7 @@ export declare const chatContract: {
|
|
129995
130042
|
}>;
|
129996
130043
|
}, "strip", import("zod").ZodTypeAny, {
|
129997
130044
|
data: {
|
129998
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
130045
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
129999
130046
|
message: string;
|
130000
130047
|
id: string;
|
130001
130048
|
url: string;
|
@@ -130424,7 +130471,7 @@ export declare const chatContract: {
|
|
130424
130471
|
previewUrl: string;
|
130425
130472
|
imageSetId: string;
|
130426
130473
|
repliedMessage: {
|
130427
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
130474
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130428
130475
|
message: string;
|
130429
130476
|
id: string;
|
130430
130477
|
url: string;
|
@@ -130636,7 +130683,7 @@ export declare const chatContract: {
|
|
130636
130683
|
requestId: string;
|
130637
130684
|
}, {
|
130638
130685
|
data: {
|
130639
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
130686
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130640
130687
|
message: string;
|
130641
130688
|
id: string;
|
130642
130689
|
url: string;
|
@@ -131065,7 +131112,7 @@ export declare const chatContract: {
|
|
131065
131112
|
previewUrl: string;
|
131066
131113
|
imageSetId: string;
|
131067
131114
|
repliedMessage: {
|
131068
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
131115
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
131069
131116
|
message: string;
|
131070
131117
|
id: string;
|
131071
131118
|
url: string;
|
@@ -131400,7 +131447,7 @@ export declare const chatContract: {
|
|
131400
131447
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
131401
131448
|
message: import("zod").ZodString;
|
131402
131449
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
131403
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
131450
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
131404
131451
|
readAt: import("zod").ZodDate;
|
131405
131452
|
metadata: import("zod").ZodAny;
|
131406
131453
|
platformId: import("zod").ZodString;
|
@@ -133941,7 +133988,7 @@ export declare const chatContract: {
|
|
133941
133988
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
133942
133989
|
message: import("zod").ZodString;
|
133943
133990
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
133944
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
133991
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
133945
133992
|
readAt: import("zod").ZodDate;
|
133946
133993
|
metadata: import("zod").ZodAny;
|
133947
133994
|
platformId: import("zod").ZodString;
|
@@ -134599,7 +134646,7 @@ export declare const chatContract: {
|
|
134599
134646
|
};
|
134600
134647
|
}>;
|
134601
134648
|
}, "strip", import("zod").ZodTypeAny, {
|
134602
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
134649
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
134603
134650
|
message: string;
|
134604
134651
|
id: string;
|
134605
134652
|
url: string;
|
@@ -134761,7 +134808,7 @@ export declare const chatContract: {
|
|
134761
134808
|
metadata?: any;
|
134762
134809
|
template?: any;
|
134763
134810
|
}, {
|
134764
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
134811
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
134765
134812
|
message: string;
|
134766
134813
|
id: string;
|
134767
134814
|
url: string;
|
@@ -135536,7 +135583,7 @@ export declare const chatContract: {
|
|
135536
135583
|
};
|
135537
135584
|
}>;
|
135538
135585
|
}, "strip", import("zod").ZodTypeAny, {
|
135539
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
135586
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
135540
135587
|
message: string;
|
135541
135588
|
id: string;
|
135542
135589
|
url: string;
|
@@ -135965,7 +136012,7 @@ export declare const chatContract: {
|
|
135965
136012
|
previewUrl: string;
|
135966
136013
|
imageSetId: string;
|
135967
136014
|
repliedMessage: {
|
135968
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
136015
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
135969
136016
|
message: string;
|
135970
136017
|
id: string;
|
135971
136018
|
url: string;
|
@@ -136174,7 +136221,7 @@ export declare const chatContract: {
|
|
136174
136221
|
metadata?: any;
|
136175
136222
|
template?: any;
|
136176
136223
|
}, {
|
136177
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
136224
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
136178
136225
|
message: string;
|
136179
136226
|
id: string;
|
136180
136227
|
url: string;
|
@@ -136603,7 +136650,7 @@ export declare const chatContract: {
|
|
136603
136650
|
previewUrl: string;
|
136604
136651
|
imageSetId: string;
|
136605
136652
|
repliedMessage: {
|
136606
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
136653
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
136607
136654
|
message: string;
|
136608
136655
|
id: string;
|
136609
136656
|
url: string;
|
@@ -136814,7 +136861,7 @@ export declare const chatContract: {
|
|
136814
136861
|
}>, "many">;
|
136815
136862
|
}, "strip", import("zod").ZodTypeAny, {
|
136816
136863
|
data: {
|
136817
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
136864
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
136818
136865
|
message: string;
|
136819
136866
|
id: string;
|
136820
136867
|
url: string;
|
@@ -137243,7 +137290,7 @@ export declare const chatContract: {
|
|
137243
137290
|
previewUrl: string;
|
137244
137291
|
imageSetId: string;
|
137245
137292
|
repliedMessage: {
|
137246
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
137293
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
137247
137294
|
message: string;
|
137248
137295
|
id: string;
|
137249
137296
|
url: string;
|
@@ -137458,7 +137505,7 @@ export declare const chatContract: {
|
|
137458
137505
|
requestId: string;
|
137459
137506
|
}, {
|
137460
137507
|
data: {
|
137461
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
137508
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
137462
137509
|
message: string;
|
137463
137510
|
id: string;
|
137464
137511
|
url: string;
|
@@ -137887,7 +137934,7 @@ export declare const chatContract: {
|
|
137887
137934
|
previewUrl: string;
|
137888
137935
|
imageSetId: string;
|
137889
137936
|
repliedMessage: {
|
137890
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
137937
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
137891
137938
|
message: string;
|
137892
137939
|
id: string;
|
137893
137940
|
url: string;
|