@kl1/contracts 1.1.58-uat → 1.1.60-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +13 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -2
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +138 -138
- package/dist/src/chat/schema.d.ts +51 -81
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +46 -46
- package/dist/src/contract.d.ts +572 -236
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/facebook-feed/index.d.ts +66 -66
- package/dist/src/facebook-feed/schema.d.ts +3 -3
- package/dist/src/instagram/index.d.ts +33 -33
- package/dist/src/line/index.d.ts +38 -38
- package/dist/src/line/validation.d.ts +5 -5
- package/dist/src/messenger/index.d.ts +33 -33
- package/dist/src/subscription/index.d.ts +336 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/subscription/schema.d.ts +133 -0
- package/dist/src/subscription/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +33 -33
- package/dist/src/webchat/index.d.ts +33 -33
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -31251,11 +31251,121 @@ export declare const apiContract: {
|
|
31251
31251
|
perUnit: number;
|
31252
31252
|
price: number;
|
31253
31253
|
}>;
|
31254
|
+
product: import("zod").ZodObject<{
|
31255
|
+
id: import("zod").ZodString;
|
31256
|
+
createdAt: import("zod").ZodDate;
|
31257
|
+
updatedAt: import("zod").ZodDate;
|
31258
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
31259
|
+
provider: import("zod").ZodString;
|
31260
|
+
productId: import("zod").ZodString;
|
31261
|
+
name: import("zod").ZodString;
|
31262
|
+
type: import("zod").ZodString;
|
31263
|
+
omnichannel: import("zod").ZodString;
|
31264
|
+
usageType: import("zod").ZodNullable<import("zod").ZodString>;
|
31265
|
+
productPrice: import("zod").ZodObject<{
|
31266
|
+
id: import("zod").ZodString;
|
31267
|
+
createdAt: import("zod").ZodDate;
|
31268
|
+
updatedAt: import("zod").ZodDate;
|
31269
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
31270
|
+
priceId: import("zod").ZodString;
|
31271
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
31272
|
+
perUnit: import("zod").ZodNumber;
|
31273
|
+
price: import("zod").ZodNumber;
|
31274
|
+
currency: import("zod").ZodNullable<import("zod").ZodString>;
|
31275
|
+
}, "strip", import("zod").ZodTypeAny, {
|
31276
|
+
id: string;
|
31277
|
+
name: string | null;
|
31278
|
+
currency: string | null;
|
31279
|
+
createdAt: Date;
|
31280
|
+
updatedAt: Date;
|
31281
|
+
deletedAt: Date | null;
|
31282
|
+
priceId: string;
|
31283
|
+
perUnit: number;
|
31284
|
+
price: number;
|
31285
|
+
}, {
|
31286
|
+
id: string;
|
31287
|
+
name: string | null;
|
31288
|
+
currency: string | null;
|
31289
|
+
createdAt: Date;
|
31290
|
+
updatedAt: Date;
|
31291
|
+
deletedAt: Date | null;
|
31292
|
+
priceId: string;
|
31293
|
+
perUnit: number;
|
31294
|
+
price: number;
|
31295
|
+
}>;
|
31296
|
+
}, "strip", import("zod").ZodTypeAny, {
|
31297
|
+
type: string;
|
31298
|
+
id: string;
|
31299
|
+
name: string;
|
31300
|
+
createdAt: Date;
|
31301
|
+
updatedAt: Date;
|
31302
|
+
deletedAt: Date | null;
|
31303
|
+
provider: string;
|
31304
|
+
productId: string;
|
31305
|
+
omnichannel: string;
|
31306
|
+
usageType: string | null;
|
31307
|
+
productPrice: {
|
31308
|
+
id: string;
|
31309
|
+
name: string | null;
|
31310
|
+
currency: string | null;
|
31311
|
+
createdAt: Date;
|
31312
|
+
updatedAt: Date;
|
31313
|
+
deletedAt: Date | null;
|
31314
|
+
priceId: string;
|
31315
|
+
perUnit: number;
|
31316
|
+
price: number;
|
31317
|
+
};
|
31318
|
+
}, {
|
31319
|
+
type: string;
|
31320
|
+
id: string;
|
31321
|
+
name: string;
|
31322
|
+
createdAt: Date;
|
31323
|
+
updatedAt: Date;
|
31324
|
+
deletedAt: Date | null;
|
31325
|
+
provider: string;
|
31326
|
+
productId: string;
|
31327
|
+
omnichannel: string;
|
31328
|
+
usageType: string | null;
|
31329
|
+
productPrice: {
|
31330
|
+
id: string;
|
31331
|
+
name: string | null;
|
31332
|
+
currency: string | null;
|
31333
|
+
createdAt: Date;
|
31334
|
+
updatedAt: Date;
|
31335
|
+
deletedAt: Date | null;
|
31336
|
+
priceId: string;
|
31337
|
+
perUnit: number;
|
31338
|
+
price: number;
|
31339
|
+
};
|
31340
|
+
}>;
|
31254
31341
|
}, "strip", import("zod").ZodTypeAny, {
|
31255
31342
|
type: string;
|
31256
31343
|
interval: string;
|
31257
31344
|
id: string;
|
31258
31345
|
name: string | null;
|
31346
|
+
product: {
|
31347
|
+
type: string;
|
31348
|
+
id: string;
|
31349
|
+
name: string;
|
31350
|
+
createdAt: Date;
|
31351
|
+
updatedAt: Date;
|
31352
|
+
deletedAt: Date | null;
|
31353
|
+
provider: string;
|
31354
|
+
productId: string;
|
31355
|
+
omnichannel: string;
|
31356
|
+
usageType: string | null;
|
31357
|
+
productPrice: {
|
31358
|
+
id: string;
|
31359
|
+
name: string | null;
|
31360
|
+
currency: string | null;
|
31361
|
+
createdAt: Date;
|
31362
|
+
updatedAt: Date;
|
31363
|
+
deletedAt: Date | null;
|
31364
|
+
priceId: string;
|
31365
|
+
perUnit: number;
|
31366
|
+
price: number;
|
31367
|
+
};
|
31368
|
+
};
|
31259
31369
|
status: string;
|
31260
31370
|
createdAt: Date;
|
31261
31371
|
updatedAt: Date;
|
@@ -31314,6 +31424,29 @@ export declare const apiContract: {
|
|
31314
31424
|
interval: string;
|
31315
31425
|
id: string;
|
31316
31426
|
name: string | null;
|
31427
|
+
product: {
|
31428
|
+
type: string;
|
31429
|
+
id: string;
|
31430
|
+
name: string;
|
31431
|
+
createdAt: Date;
|
31432
|
+
updatedAt: Date;
|
31433
|
+
deletedAt: Date | null;
|
31434
|
+
provider: string;
|
31435
|
+
productId: string;
|
31436
|
+
omnichannel: string;
|
31437
|
+
usageType: string | null;
|
31438
|
+
productPrice: {
|
31439
|
+
id: string;
|
31440
|
+
name: string | null;
|
31441
|
+
currency: string | null;
|
31442
|
+
createdAt: Date;
|
31443
|
+
updatedAt: Date;
|
31444
|
+
deletedAt: Date | null;
|
31445
|
+
priceId: string;
|
31446
|
+
perUnit: number;
|
31447
|
+
price: number;
|
31448
|
+
};
|
31449
|
+
};
|
31317
31450
|
status: string;
|
31318
31451
|
createdAt: Date;
|
31319
31452
|
updatedAt: Date;
|
@@ -31375,6 +31508,29 @@ export declare const apiContract: {
|
|
31375
31508
|
interval: string;
|
31376
31509
|
id: string;
|
31377
31510
|
name: string | null;
|
31511
|
+
product: {
|
31512
|
+
type: string;
|
31513
|
+
id: string;
|
31514
|
+
name: string;
|
31515
|
+
createdAt: Date;
|
31516
|
+
updatedAt: Date;
|
31517
|
+
deletedAt: Date | null;
|
31518
|
+
provider: string;
|
31519
|
+
productId: string;
|
31520
|
+
omnichannel: string;
|
31521
|
+
usageType: string | null;
|
31522
|
+
productPrice: {
|
31523
|
+
id: string;
|
31524
|
+
name: string | null;
|
31525
|
+
currency: string | null;
|
31526
|
+
createdAt: Date;
|
31527
|
+
updatedAt: Date;
|
31528
|
+
deletedAt: Date | null;
|
31529
|
+
priceId: string;
|
31530
|
+
perUnit: number;
|
31531
|
+
price: number;
|
31532
|
+
};
|
31533
|
+
};
|
31378
31534
|
status: string;
|
31379
31535
|
createdAt: Date;
|
31380
31536
|
updatedAt: Date;
|
@@ -31436,6 +31592,29 @@ export declare const apiContract: {
|
|
31436
31592
|
interval: string;
|
31437
31593
|
id: string;
|
31438
31594
|
name: string | null;
|
31595
|
+
product: {
|
31596
|
+
type: string;
|
31597
|
+
id: string;
|
31598
|
+
name: string;
|
31599
|
+
createdAt: Date;
|
31600
|
+
updatedAt: Date;
|
31601
|
+
deletedAt: Date | null;
|
31602
|
+
provider: string;
|
31603
|
+
productId: string;
|
31604
|
+
omnichannel: string;
|
31605
|
+
usageType: string | null;
|
31606
|
+
productPrice: {
|
31607
|
+
id: string;
|
31608
|
+
name: string | null;
|
31609
|
+
currency: string | null;
|
31610
|
+
createdAt: Date;
|
31611
|
+
updatedAt: Date;
|
31612
|
+
deletedAt: Date | null;
|
31613
|
+
priceId: string;
|
31614
|
+
perUnit: number;
|
31615
|
+
price: number;
|
31616
|
+
};
|
31617
|
+
};
|
31439
31618
|
status: string;
|
31440
31619
|
createdAt: Date;
|
31441
31620
|
updatedAt: Date;
|
@@ -31561,6 +31740,163 @@ export declare const apiContract: {
|
|
31561
31740
|
};
|
31562
31741
|
path: "subscriptions/";
|
31563
31742
|
};
|
31743
|
+
getAvailablePlan: {
|
31744
|
+
method: "GET";
|
31745
|
+
query: null;
|
31746
|
+
responses: {
|
31747
|
+
200: import("zod").ZodObject<{
|
31748
|
+
requestId: import("zod").ZodString;
|
31749
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
31750
|
+
id: import("zod").ZodString;
|
31751
|
+
createdAt: import("zod").ZodDate;
|
31752
|
+
updatedAt: import("zod").ZodDate;
|
31753
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
31754
|
+
provider: import("zod").ZodString;
|
31755
|
+
productId: import("zod").ZodString;
|
31756
|
+
name: import("zod").ZodString;
|
31757
|
+
type: import("zod").ZodString;
|
31758
|
+
omnichannel: import("zod").ZodString;
|
31759
|
+
usageType: import("zod").ZodNullable<import("zod").ZodString>;
|
31760
|
+
productPrice: import("zod").ZodObject<{
|
31761
|
+
id: import("zod").ZodString;
|
31762
|
+
createdAt: import("zod").ZodDate;
|
31763
|
+
updatedAt: import("zod").ZodDate;
|
31764
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
31765
|
+
priceId: import("zod").ZodString;
|
31766
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
31767
|
+
perUnit: import("zod").ZodNumber;
|
31768
|
+
price: import("zod").ZodNumber;
|
31769
|
+
currency: import("zod").ZodNullable<import("zod").ZodString>;
|
31770
|
+
}, "strip", import("zod").ZodTypeAny, {
|
31771
|
+
id: string;
|
31772
|
+
name: string | null;
|
31773
|
+
currency: string | null;
|
31774
|
+
createdAt: Date;
|
31775
|
+
updatedAt: Date;
|
31776
|
+
deletedAt: Date | null;
|
31777
|
+
priceId: string;
|
31778
|
+
perUnit: number;
|
31779
|
+
price: number;
|
31780
|
+
}, {
|
31781
|
+
id: string;
|
31782
|
+
name: string | null;
|
31783
|
+
currency: string | null;
|
31784
|
+
createdAt: Date;
|
31785
|
+
updatedAt: Date;
|
31786
|
+
deletedAt: Date | null;
|
31787
|
+
priceId: string;
|
31788
|
+
perUnit: number;
|
31789
|
+
price: number;
|
31790
|
+
}>;
|
31791
|
+
}, "strip", import("zod").ZodTypeAny, {
|
31792
|
+
type: string;
|
31793
|
+
id: string;
|
31794
|
+
name: string;
|
31795
|
+
createdAt: Date;
|
31796
|
+
updatedAt: Date;
|
31797
|
+
deletedAt: Date | null;
|
31798
|
+
provider: string;
|
31799
|
+
productId: string;
|
31800
|
+
omnichannel: string;
|
31801
|
+
usageType: string | null;
|
31802
|
+
productPrice: {
|
31803
|
+
id: string;
|
31804
|
+
name: string | null;
|
31805
|
+
currency: string | null;
|
31806
|
+
createdAt: Date;
|
31807
|
+
updatedAt: Date;
|
31808
|
+
deletedAt: Date | null;
|
31809
|
+
priceId: string;
|
31810
|
+
perUnit: number;
|
31811
|
+
price: number;
|
31812
|
+
};
|
31813
|
+
}, {
|
31814
|
+
type: string;
|
31815
|
+
id: string;
|
31816
|
+
name: string;
|
31817
|
+
createdAt: Date;
|
31818
|
+
updatedAt: Date;
|
31819
|
+
deletedAt: Date | null;
|
31820
|
+
provider: string;
|
31821
|
+
productId: string;
|
31822
|
+
omnichannel: string;
|
31823
|
+
usageType: string | null;
|
31824
|
+
productPrice: {
|
31825
|
+
id: string;
|
31826
|
+
name: string | null;
|
31827
|
+
currency: string | null;
|
31828
|
+
createdAt: Date;
|
31829
|
+
updatedAt: Date;
|
31830
|
+
deletedAt: Date | null;
|
31831
|
+
priceId: string;
|
31832
|
+
perUnit: number;
|
31833
|
+
price: number;
|
31834
|
+
};
|
31835
|
+
}>, "many">;
|
31836
|
+
}, "strip", import("zod").ZodTypeAny, {
|
31837
|
+
data: {
|
31838
|
+
type: string;
|
31839
|
+
id: string;
|
31840
|
+
name: string;
|
31841
|
+
createdAt: Date;
|
31842
|
+
updatedAt: Date;
|
31843
|
+
deletedAt: Date | null;
|
31844
|
+
provider: string;
|
31845
|
+
productId: string;
|
31846
|
+
omnichannel: string;
|
31847
|
+
usageType: string | null;
|
31848
|
+
productPrice: {
|
31849
|
+
id: string;
|
31850
|
+
name: string | null;
|
31851
|
+
currency: string | null;
|
31852
|
+
createdAt: Date;
|
31853
|
+
updatedAt: Date;
|
31854
|
+
deletedAt: Date | null;
|
31855
|
+
priceId: string;
|
31856
|
+
perUnit: number;
|
31857
|
+
price: number;
|
31858
|
+
};
|
31859
|
+
}[];
|
31860
|
+
requestId: string;
|
31861
|
+
}, {
|
31862
|
+
data: {
|
31863
|
+
type: string;
|
31864
|
+
id: string;
|
31865
|
+
name: string;
|
31866
|
+
createdAt: Date;
|
31867
|
+
updatedAt: Date;
|
31868
|
+
deletedAt: Date | null;
|
31869
|
+
provider: string;
|
31870
|
+
productId: string;
|
31871
|
+
omnichannel: string;
|
31872
|
+
usageType: string | null;
|
31873
|
+
productPrice: {
|
31874
|
+
id: string;
|
31875
|
+
name: string | null;
|
31876
|
+
currency: string | null;
|
31877
|
+
createdAt: Date;
|
31878
|
+
updatedAt: Date;
|
31879
|
+
deletedAt: Date | null;
|
31880
|
+
priceId: string;
|
31881
|
+
perUnit: number;
|
31882
|
+
price: number;
|
31883
|
+
};
|
31884
|
+
}[];
|
31885
|
+
requestId: string;
|
31886
|
+
}>;
|
31887
|
+
500: import("zod").ZodObject<{
|
31888
|
+
message: import("zod").ZodString;
|
31889
|
+
error: import("zod").ZodAny;
|
31890
|
+
}, "strip", import("zod").ZodTypeAny, {
|
31891
|
+
message: string;
|
31892
|
+
error?: any;
|
31893
|
+
}, {
|
31894
|
+
message: string;
|
31895
|
+
error?: any;
|
31896
|
+
}>;
|
31897
|
+
};
|
31898
|
+
path: "subscriptions/available-plan";
|
31899
|
+
};
|
31564
31900
|
};
|
31565
31901
|
};
|
31566
31902
|
export declare const contactContract: {
|
@@ -74331,7 +74667,7 @@ export declare const platformContract: {
|
|
74331
74667
|
message: import("zod").ZodObject<{
|
74332
74668
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
74333
74669
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
74334
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
74670
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
74335
74671
|
readAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
74336
74672
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
74337
74673
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -74375,7 +74711,7 @@ export declare const platformContract: {
|
|
74375
74711
|
phone: string | null;
|
74376
74712
|
}>;
|
74377
74713
|
}, "strip", import("zod").ZodTypeAny, {
|
74378
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
74714
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
74379
74715
|
direction: "incoming" | "outgoing" | "system";
|
74380
74716
|
sender: {
|
74381
74717
|
address: string | null;
|
@@ -74401,7 +74737,7 @@ export declare const platformContract: {
|
|
74401
74737
|
fileSize: number;
|
74402
74738
|
} | undefined;
|
74403
74739
|
}, {
|
74404
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
74740
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
74405
74741
|
direction: "incoming" | "outgoing" | "system";
|
74406
74742
|
sender: {
|
74407
74743
|
address: string | null;
|
@@ -74429,7 +74765,7 @@ export declare const platformContract: {
|
|
74429
74765
|
}>;
|
74430
74766
|
}, "strip", import("zod").ZodTypeAny, {
|
74431
74767
|
message: {
|
74432
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
74768
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
74433
74769
|
direction: "incoming" | "outgoing" | "system";
|
74434
74770
|
sender: {
|
74435
74771
|
address: string | null;
|
@@ -74517,7 +74853,7 @@ export declare const platformContract: {
|
|
74517
74853
|
stickerId: number;
|
74518
74854
|
}, {
|
74519
74855
|
message: {
|
74520
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
74856
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
74521
74857
|
direction: "incoming" | "outgoing" | "system";
|
74522
74858
|
sender: {
|
74523
74859
|
address: string | null;
|
@@ -75240,7 +75576,7 @@ export declare const platformContract: {
|
|
75240
75576
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
75241
75577
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
75242
75578
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
75243
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
75579
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
75244
75580
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
75245
75581
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
75246
75582
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -75292,7 +75628,7 @@ export declare const platformContract: {
|
|
75292
75628
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
75293
75629
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
75294
75630
|
}, "strip", import("zod").ZodTypeAny, {
|
75295
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
75631
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75296
75632
|
direction: "incoming" | "outgoing" | "system";
|
75297
75633
|
id?: string | undefined;
|
75298
75634
|
message?: string | undefined;
|
@@ -75323,7 +75659,7 @@ export declare const platformContract: {
|
|
75323
75659
|
parentMessageId?: string | undefined;
|
75324
75660
|
feedPostId?: string | undefined;
|
75325
75661
|
}, {
|
75326
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
75662
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75327
75663
|
direction: "incoming" | "outgoing" | "system";
|
75328
75664
|
id?: string | undefined;
|
75329
75665
|
message?: string | undefined;
|
@@ -75356,7 +75692,7 @@ export declare const platformContract: {
|
|
75356
75692
|
}>;
|
75357
75693
|
}, "strip", import("zod").ZodTypeAny, {
|
75358
75694
|
message: {
|
75359
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
75695
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75360
75696
|
direction: "incoming" | "outgoing" | "system";
|
75361
75697
|
id?: string | undefined;
|
75362
75698
|
message?: string | undefined;
|
@@ -75459,7 +75795,7 @@ export declare const platformContract: {
|
|
75459
75795
|
isBot: boolean | null;
|
75460
75796
|
}, {
|
75461
75797
|
message: {
|
75462
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
75798
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75463
75799
|
direction: "incoming" | "outgoing" | "system";
|
75464
75800
|
id?: string | undefined;
|
75465
75801
|
message?: string | undefined;
|
@@ -75566,7 +75902,7 @@ export declare const platformContract: {
|
|
75566
75902
|
200: import("zod").ZodObject<{
|
75567
75903
|
requestId: import("zod").ZodString;
|
75568
75904
|
data: import("zod").ZodObject<{
|
75569
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
75905
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
75570
75906
|
message: import("zod").ZodString;
|
75571
75907
|
id: import("zod").ZodString;
|
75572
75908
|
url: import("zod").ZodString;
|
@@ -78997,7 +79333,7 @@ export declare const platformContract: {
|
|
78997
79333
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
78998
79334
|
message: import("zod").ZodString;
|
78999
79335
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
79000
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
79336
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
79001
79337
|
readAt: import("zod").ZodDate;
|
79002
79338
|
metadata: import("zod").ZodAny;
|
79003
79339
|
platformId: import("zod").ZodString;
|
@@ -79655,7 +79991,7 @@ export declare const platformContract: {
|
|
79655
79991
|
};
|
79656
79992
|
}>;
|
79657
79993
|
}, "strip", import("zod").ZodTypeAny, {
|
79658
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
79994
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
79659
79995
|
message: string;
|
79660
79996
|
id: string;
|
79661
79997
|
url: string;
|
@@ -79817,7 +80153,7 @@ export declare const platformContract: {
|
|
79817
80153
|
metadata?: any;
|
79818
80154
|
template?: any;
|
79819
80155
|
}, {
|
79820
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
80156
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
79821
80157
|
message: string;
|
79822
80158
|
id: string;
|
79823
80159
|
url: string;
|
@@ -80190,7 +80526,7 @@ export declare const platformContract: {
|
|
80190
80526
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
80191
80527
|
message: import("zod").ZodString;
|
80192
80528
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
80193
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
80529
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
80194
80530
|
readAt: import("zod").ZodDate;
|
80195
80531
|
metadata: import("zod").ZodAny;
|
80196
80532
|
platformId: import("zod").ZodString;
|
@@ -83182,7 +83518,7 @@ export declare const platformContract: {
|
|
83182
83518
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
83183
83519
|
message: import("zod").ZodString;
|
83184
83520
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
83185
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
83521
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
83186
83522
|
readAt: import("zod").ZodDate;
|
83187
83523
|
metadata: import("zod").ZodAny;
|
83188
83524
|
platformId: import("zod").ZodString;
|
@@ -83840,7 +84176,7 @@ export declare const platformContract: {
|
|
83840
84176
|
};
|
83841
84177
|
}>;
|
83842
84178
|
}, "strip", import("zod").ZodTypeAny, {
|
83843
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
84179
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
83844
84180
|
message: string;
|
83845
84181
|
id: string;
|
83846
84182
|
url: string;
|
@@ -84002,7 +84338,7 @@ export declare const platformContract: {
|
|
84002
84338
|
metadata?: any;
|
84003
84339
|
template?: any;
|
84004
84340
|
}, {
|
84005
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
84341
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
84006
84342
|
message: string;
|
84007
84343
|
id: string;
|
84008
84344
|
url: string;
|
@@ -84802,7 +85138,7 @@ export declare const platformContract: {
|
|
84802
85138
|
isActive: boolean;
|
84803
85139
|
}>;
|
84804
85140
|
}, "strip", import("zod").ZodTypeAny, {
|
84805
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
85141
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
84806
85142
|
message: string;
|
84807
85143
|
id: string;
|
84808
85144
|
url: string;
|
@@ -85295,7 +85631,7 @@ export declare const platformContract: {
|
|
85295
85631
|
previewUrl: string;
|
85296
85632
|
imageSetId: string;
|
85297
85633
|
repliedMessage: {
|
85298
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
85634
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
85299
85635
|
message: string;
|
85300
85636
|
id: string;
|
85301
85637
|
url: string;
|
@@ -85504,7 +85840,7 @@ export declare const platformContract: {
|
|
85504
85840
|
metadata?: any;
|
85505
85841
|
template?: any;
|
85506
85842
|
}, {
|
85507
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
85843
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
85508
85844
|
message: string;
|
85509
85845
|
id: string;
|
85510
85846
|
url: string;
|
@@ -85997,7 +86333,7 @@ export declare const platformContract: {
|
|
85997
86333
|
previewUrl: string;
|
85998
86334
|
imageSetId: string;
|
85999
86335
|
repliedMessage: {
|
86000
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
86336
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
86001
86337
|
message: string;
|
86002
86338
|
id: string;
|
86003
86339
|
url: string;
|
@@ -86207,7 +86543,7 @@ export declare const platformContract: {
|
|
86207
86543
|
template?: any;
|
86208
86544
|
}>>>;
|
86209
86545
|
}, "strip", import("zod").ZodTypeAny, {
|
86210
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
86546
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
86211
86547
|
message: string;
|
86212
86548
|
id: string;
|
86213
86549
|
url: string;
|
@@ -86700,7 +87036,7 @@ export declare const platformContract: {
|
|
86700
87036
|
previewUrl: string;
|
86701
87037
|
imageSetId: string;
|
86702
87038
|
repliedMessage: {
|
86703
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
87039
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
86704
87040
|
message: string;
|
86705
87041
|
id: string;
|
86706
87042
|
url: string;
|
@@ -86909,7 +87245,7 @@ export declare const platformContract: {
|
|
86909
87245
|
template?: any;
|
86910
87246
|
metadata?: any;
|
86911
87247
|
fromMessage?: {
|
86912
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
87248
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
86913
87249
|
message: string;
|
86914
87250
|
id: string;
|
86915
87251
|
url: string;
|
@@ -87402,7 +87738,7 @@ export declare const platformContract: {
|
|
87402
87738
|
previewUrl: string;
|
87403
87739
|
imageSetId: string;
|
87404
87740
|
repliedMessage: {
|
87405
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
87741
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
87406
87742
|
message: string;
|
87407
87743
|
id: string;
|
87408
87744
|
url: string;
|
@@ -87612,7 +87948,7 @@ export declare const platformContract: {
|
|
87612
87948
|
template?: any;
|
87613
87949
|
} | null | undefined;
|
87614
87950
|
}, {
|
87615
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
87951
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
87616
87952
|
message: string;
|
87617
87953
|
id: string;
|
87618
87954
|
url: string;
|
@@ -88105,7 +88441,7 @@ export declare const platformContract: {
|
|
88105
88441
|
previewUrl: string;
|
88106
88442
|
imageSetId: string;
|
88107
88443
|
repliedMessage: {
|
88108
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
88444
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
88109
88445
|
message: string;
|
88110
88446
|
id: string;
|
88111
88447
|
url: string;
|
@@ -88314,7 +88650,7 @@ export declare const platformContract: {
|
|
88314
88650
|
template?: any;
|
88315
88651
|
metadata?: any;
|
88316
88652
|
fromMessage?: {
|
88317
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
88653
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
88318
88654
|
message: string;
|
88319
88655
|
id: string;
|
88320
88656
|
url: string;
|
@@ -88807,7 +89143,7 @@ export declare const platformContract: {
|
|
88807
89143
|
previewUrl: string;
|
88808
89144
|
imageSetId: string;
|
88809
89145
|
repliedMessage: {
|
88810
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
89146
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
88811
89147
|
message: string;
|
88812
89148
|
id: string;
|
88813
89149
|
url: string;
|
@@ -89019,7 +89355,7 @@ export declare const platformContract: {
|
|
89019
89355
|
}>;
|
89020
89356
|
}, "strip", import("zod").ZodTypeAny, {
|
89021
89357
|
data: {
|
89022
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
89358
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
89023
89359
|
message: string;
|
89024
89360
|
id: string;
|
89025
89361
|
url: string;
|
@@ -89512,7 +89848,7 @@ export declare const platformContract: {
|
|
89512
89848
|
previewUrl: string;
|
89513
89849
|
imageSetId: string;
|
89514
89850
|
repliedMessage: {
|
89515
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
89851
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
89516
89852
|
message: string;
|
89517
89853
|
id: string;
|
89518
89854
|
url: string;
|
@@ -89721,7 +90057,7 @@ export declare const platformContract: {
|
|
89721
90057
|
template?: any;
|
89722
90058
|
metadata?: any;
|
89723
90059
|
fromMessage?: {
|
89724
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
90060
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
89725
90061
|
message: string;
|
89726
90062
|
id: string;
|
89727
90063
|
url: string;
|
@@ -90214,7 +90550,7 @@ export declare const platformContract: {
|
|
90214
90550
|
previewUrl: string;
|
90215
90551
|
imageSetId: string;
|
90216
90552
|
repliedMessage: {
|
90217
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
90553
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
90218
90554
|
message: string;
|
90219
90555
|
id: string;
|
90220
90556
|
url: string;
|
@@ -90427,7 +90763,7 @@ export declare const platformContract: {
|
|
90427
90763
|
requestId: string;
|
90428
90764
|
}, {
|
90429
90765
|
data: {
|
90430
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
90766
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
90431
90767
|
message: string;
|
90432
90768
|
id: string;
|
90433
90769
|
url: string;
|
@@ -90920,7 +91256,7 @@ export declare const platformContract: {
|
|
90920
91256
|
previewUrl: string;
|
90921
91257
|
imageSetId: string;
|
90922
91258
|
repliedMessage: {
|
90923
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
91259
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
90924
91260
|
message: string;
|
90925
91261
|
id: string;
|
90926
91262
|
url: string;
|
@@ -91129,7 +91465,7 @@ export declare const platformContract: {
|
|
91129
91465
|
template?: any;
|
91130
91466
|
metadata?: any;
|
91131
91467
|
fromMessage?: {
|
91132
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
91468
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
91133
91469
|
message: string;
|
91134
91470
|
id: string;
|
91135
91471
|
url: string;
|
@@ -91622,7 +91958,7 @@ export declare const platformContract: {
|
|
91622
91958
|
previewUrl: string;
|
91623
91959
|
imageSetId: string;
|
91624
91960
|
repliedMessage: {
|
91625
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
91961
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
91626
91962
|
message: string;
|
91627
91963
|
id: string;
|
91628
91964
|
url: string;
|
@@ -94137,7 +94473,7 @@ export declare const platformContract: {
|
|
94137
94473
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
94138
94474
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
94139
94475
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
94140
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
94476
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
94141
94477
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
94142
94478
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
94143
94479
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -94189,7 +94525,7 @@ export declare const platformContract: {
|
|
94189
94525
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
94190
94526
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
94191
94527
|
}, "strip", import("zod").ZodTypeAny, {
|
94192
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
94528
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94193
94529
|
direction: "incoming" | "outgoing" | "system";
|
94194
94530
|
id?: string | undefined;
|
94195
94531
|
message?: string | undefined;
|
@@ -94220,7 +94556,7 @@ export declare const platformContract: {
|
|
94220
94556
|
parentMessageId?: string | undefined;
|
94221
94557
|
feedPostId?: string | undefined;
|
94222
94558
|
}, {
|
94223
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
94559
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94224
94560
|
direction: "incoming" | "outgoing" | "system";
|
94225
94561
|
id?: string | undefined;
|
94226
94562
|
message?: string | undefined;
|
@@ -94253,7 +94589,7 @@ export declare const platformContract: {
|
|
94253
94589
|
}>;
|
94254
94590
|
}, "strip", import("zod").ZodTypeAny, {
|
94255
94591
|
message: {
|
94256
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
94592
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94257
94593
|
direction: "incoming" | "outgoing" | "system";
|
94258
94594
|
id?: string | undefined;
|
94259
94595
|
message?: string | undefined;
|
@@ -94356,7 +94692,7 @@ export declare const platformContract: {
|
|
94356
94692
|
isBot: boolean | null;
|
94357
94693
|
}, {
|
94358
94694
|
message: {
|
94359
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
94695
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94360
94696
|
direction: "incoming" | "outgoing" | "system";
|
94361
94697
|
id?: string | undefined;
|
94362
94698
|
message?: string | undefined;
|
@@ -94463,7 +94799,7 @@ export declare const platformContract: {
|
|
94463
94799
|
200: import("zod").ZodObject<{
|
94464
94800
|
requestId: import("zod").ZodString;
|
94465
94801
|
data: import("zod").ZodObject<{
|
94466
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
94802
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
94467
94803
|
message: import("zod").ZodString;
|
94468
94804
|
id: import("zod").ZodString;
|
94469
94805
|
url: import("zod").ZodString;
|
@@ -97894,7 +98230,7 @@ export declare const platformContract: {
|
|
97894
98230
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
97895
98231
|
message: import("zod").ZodString;
|
97896
98232
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
97897
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
98233
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
97898
98234
|
readAt: import("zod").ZodDate;
|
97899
98235
|
metadata: import("zod").ZodAny;
|
97900
98236
|
platformId: import("zod").ZodString;
|
@@ -98552,7 +98888,7 @@ export declare const platformContract: {
|
|
98552
98888
|
};
|
98553
98889
|
}>;
|
98554
98890
|
}, "strip", import("zod").ZodTypeAny, {
|
98555
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
98891
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
98556
98892
|
message: string;
|
98557
98893
|
id: string;
|
98558
98894
|
url: string;
|
@@ -98714,7 +99050,7 @@ export declare const platformContract: {
|
|
98714
99050
|
metadata?: any;
|
98715
99051
|
template?: any;
|
98716
99052
|
}, {
|
98717
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
99053
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
98718
99054
|
message: string;
|
98719
99055
|
id: string;
|
98720
99056
|
url: string;
|
@@ -99087,7 +99423,7 @@ export declare const platformContract: {
|
|
99087
99423
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
99088
99424
|
message: import("zod").ZodString;
|
99089
99425
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
99090
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
99426
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
99091
99427
|
readAt: import("zod").ZodDate;
|
99092
99428
|
metadata: import("zod").ZodAny;
|
99093
99429
|
platformId: import("zod").ZodString;
|
@@ -102079,7 +102415,7 @@ export declare const platformContract: {
|
|
102079
102415
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
102080
102416
|
message: import("zod").ZodString;
|
102081
102417
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
102082
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
102418
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
102083
102419
|
readAt: import("zod").ZodDate;
|
102084
102420
|
metadata: import("zod").ZodAny;
|
102085
102421
|
platformId: import("zod").ZodString;
|
@@ -102737,7 +103073,7 @@ export declare const platformContract: {
|
|
102737
103073
|
};
|
102738
103074
|
}>;
|
102739
103075
|
}, "strip", import("zod").ZodTypeAny, {
|
102740
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
103076
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
102741
103077
|
message: string;
|
102742
103078
|
id: string;
|
102743
103079
|
url: string;
|
@@ -102899,7 +103235,7 @@ export declare const platformContract: {
|
|
102899
103235
|
metadata?: any;
|
102900
103236
|
template?: any;
|
102901
103237
|
}, {
|
102902
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
103238
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
102903
103239
|
message: string;
|
102904
103240
|
id: string;
|
102905
103241
|
url: string;
|
@@ -103699,7 +104035,7 @@ export declare const platformContract: {
|
|
103699
104035
|
isActive: boolean;
|
103700
104036
|
}>;
|
103701
104037
|
}, "strip", import("zod").ZodTypeAny, {
|
103702
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
104038
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
103703
104039
|
message: string;
|
103704
104040
|
id: string;
|
103705
104041
|
url: string;
|
@@ -104192,7 +104528,7 @@ export declare const platformContract: {
|
|
104192
104528
|
previewUrl: string;
|
104193
104529
|
imageSetId: string;
|
104194
104530
|
repliedMessage: {
|
104195
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
104531
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
104196
104532
|
message: string;
|
104197
104533
|
id: string;
|
104198
104534
|
url: string;
|
@@ -104401,7 +104737,7 @@ export declare const platformContract: {
|
|
104401
104737
|
metadata?: any;
|
104402
104738
|
template?: any;
|
104403
104739
|
}, {
|
104404
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
104740
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
104405
104741
|
message: string;
|
104406
104742
|
id: string;
|
104407
104743
|
url: string;
|
@@ -104894,7 +105230,7 @@ export declare const platformContract: {
|
|
104894
105230
|
previewUrl: string;
|
104895
105231
|
imageSetId: string;
|
104896
105232
|
repliedMessage: {
|
104897
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
105233
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
104898
105234
|
message: string;
|
104899
105235
|
id: string;
|
104900
105236
|
url: string;
|
@@ -105104,7 +105440,7 @@ export declare const platformContract: {
|
|
105104
105440
|
template?: any;
|
105105
105441
|
}>>>;
|
105106
105442
|
}, "strip", import("zod").ZodTypeAny, {
|
105107
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
105443
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
105108
105444
|
message: string;
|
105109
105445
|
id: string;
|
105110
105446
|
url: string;
|
@@ -105597,7 +105933,7 @@ export declare const platformContract: {
|
|
105597
105933
|
previewUrl: string;
|
105598
105934
|
imageSetId: string;
|
105599
105935
|
repliedMessage: {
|
105600
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
105936
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
105601
105937
|
message: string;
|
105602
105938
|
id: string;
|
105603
105939
|
url: string;
|
@@ -105806,7 +106142,7 @@ export declare const platformContract: {
|
|
105806
106142
|
template?: any;
|
105807
106143
|
metadata?: any;
|
105808
106144
|
fromMessage?: {
|
105809
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
106145
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
105810
106146
|
message: string;
|
105811
106147
|
id: string;
|
105812
106148
|
url: string;
|
@@ -106299,7 +106635,7 @@ export declare const platformContract: {
|
|
106299
106635
|
previewUrl: string;
|
106300
106636
|
imageSetId: string;
|
106301
106637
|
repliedMessage: {
|
106302
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
106638
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
106303
106639
|
message: string;
|
106304
106640
|
id: string;
|
106305
106641
|
url: string;
|
@@ -106509,7 +106845,7 @@ export declare const platformContract: {
|
|
106509
106845
|
template?: any;
|
106510
106846
|
} | null | undefined;
|
106511
106847
|
}, {
|
106512
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
106848
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
106513
106849
|
message: string;
|
106514
106850
|
id: string;
|
106515
106851
|
url: string;
|
@@ -107002,7 +107338,7 @@ export declare const platformContract: {
|
|
107002
107338
|
previewUrl: string;
|
107003
107339
|
imageSetId: string;
|
107004
107340
|
repliedMessage: {
|
107005
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
107341
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
107006
107342
|
message: string;
|
107007
107343
|
id: string;
|
107008
107344
|
url: string;
|
@@ -107211,7 +107547,7 @@ export declare const platformContract: {
|
|
107211
107547
|
template?: any;
|
107212
107548
|
metadata?: any;
|
107213
107549
|
fromMessage?: {
|
107214
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
107550
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
107215
107551
|
message: string;
|
107216
107552
|
id: string;
|
107217
107553
|
url: string;
|
@@ -107704,7 +108040,7 @@ export declare const platformContract: {
|
|
107704
108040
|
previewUrl: string;
|
107705
108041
|
imageSetId: string;
|
107706
108042
|
repliedMessage: {
|
107707
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
108043
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
107708
108044
|
message: string;
|
107709
108045
|
id: string;
|
107710
108046
|
url: string;
|
@@ -107916,7 +108252,7 @@ export declare const platformContract: {
|
|
107916
108252
|
}>;
|
107917
108253
|
}, "strip", import("zod").ZodTypeAny, {
|
107918
108254
|
data: {
|
107919
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
108255
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
107920
108256
|
message: string;
|
107921
108257
|
id: string;
|
107922
108258
|
url: string;
|
@@ -108409,7 +108745,7 @@ export declare const platformContract: {
|
|
108409
108745
|
previewUrl: string;
|
108410
108746
|
imageSetId: string;
|
108411
108747
|
repliedMessage: {
|
108412
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
108748
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
108413
108749
|
message: string;
|
108414
108750
|
id: string;
|
108415
108751
|
url: string;
|
@@ -108618,7 +108954,7 @@ export declare const platformContract: {
|
|
108618
108954
|
template?: any;
|
108619
108955
|
metadata?: any;
|
108620
108956
|
fromMessage?: {
|
108621
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
108957
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
108622
108958
|
message: string;
|
108623
108959
|
id: string;
|
108624
108960
|
url: string;
|
@@ -109111,7 +109447,7 @@ export declare const platformContract: {
|
|
109111
109447
|
previewUrl: string;
|
109112
109448
|
imageSetId: string;
|
109113
109449
|
repliedMessage: {
|
109114
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
109450
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
109115
109451
|
message: string;
|
109116
109452
|
id: string;
|
109117
109453
|
url: string;
|
@@ -109324,7 +109660,7 @@ export declare const platformContract: {
|
|
109324
109660
|
requestId: string;
|
109325
109661
|
}, {
|
109326
109662
|
data: {
|
109327
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
109663
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
109328
109664
|
message: string;
|
109329
109665
|
id: string;
|
109330
109666
|
url: string;
|
@@ -109817,7 +110153,7 @@ export declare const platformContract: {
|
|
109817
110153
|
previewUrl: string;
|
109818
110154
|
imageSetId: string;
|
109819
110155
|
repliedMessage: {
|
109820
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
110156
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
109821
110157
|
message: string;
|
109822
110158
|
id: string;
|
109823
110159
|
url: string;
|
@@ -110026,7 +110362,7 @@ export declare const platformContract: {
|
|
110026
110362
|
template?: any;
|
110027
110363
|
metadata?: any;
|
110028
110364
|
fromMessage?: {
|
110029
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
110365
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
110030
110366
|
message: string;
|
110031
110367
|
id: string;
|
110032
110368
|
url: string;
|
@@ -110519,7 +110855,7 @@ export declare const platformContract: {
|
|
110519
110855
|
previewUrl: string;
|
110520
110856
|
imageSetId: string;
|
110521
110857
|
repliedMessage: {
|
110522
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
110858
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
110523
110859
|
message: string;
|
110524
110860
|
id: string;
|
110525
110861
|
url: string;
|
@@ -111904,7 +112240,7 @@ export declare const platformMessengerContract: {
|
|
111904
112240
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
111905
112241
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
111906
112242
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
111907
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
112243
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
111908
112244
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
111909
112245
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
111910
112246
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -111956,7 +112292,7 @@ export declare const platformMessengerContract: {
|
|
111956
112292
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
111957
112293
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
111958
112294
|
}, "strip", import("zod").ZodTypeAny, {
|
111959
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
112295
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
111960
112296
|
direction: "incoming" | "outgoing" | "system";
|
111961
112297
|
id?: string | undefined;
|
111962
112298
|
message?: string | undefined;
|
@@ -111987,7 +112323,7 @@ export declare const platformMessengerContract: {
|
|
111987
112323
|
parentMessageId?: string | undefined;
|
111988
112324
|
feedPostId?: string | undefined;
|
111989
112325
|
}, {
|
111990
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
112326
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
111991
112327
|
direction: "incoming" | "outgoing" | "system";
|
111992
112328
|
id?: string | undefined;
|
111993
112329
|
message?: string | undefined;
|
@@ -112020,7 +112356,7 @@ export declare const platformMessengerContract: {
|
|
112020
112356
|
}>;
|
112021
112357
|
}, "strip", import("zod").ZodTypeAny, {
|
112022
112358
|
message: {
|
112023
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
112359
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
112024
112360
|
direction: "incoming" | "outgoing" | "system";
|
112025
112361
|
id?: string | undefined;
|
112026
112362
|
message?: string | undefined;
|
@@ -112123,7 +112459,7 @@ export declare const platformMessengerContract: {
|
|
112123
112459
|
isBot: boolean | null;
|
112124
112460
|
}, {
|
112125
112461
|
message: {
|
112126
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
112462
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
112127
112463
|
direction: "incoming" | "outgoing" | "system";
|
112128
112464
|
id?: string | undefined;
|
112129
112465
|
message?: string | undefined;
|
@@ -112230,7 +112566,7 @@ export declare const platformMessengerContract: {
|
|
112230
112566
|
200: import("zod").ZodObject<{
|
112231
112567
|
requestId: import("zod").ZodString;
|
112232
112568
|
data: import("zod").ZodObject<{
|
112233
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
112569
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
112234
112570
|
message: import("zod").ZodString;
|
112235
112571
|
id: import("zod").ZodString;
|
112236
112572
|
url: import("zod").ZodString;
|
@@ -115661,7 +115997,7 @@ export declare const platformMessengerContract: {
|
|
115661
115997
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
115662
115998
|
message: import("zod").ZodString;
|
115663
115999
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
115664
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
116000
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
115665
116001
|
readAt: import("zod").ZodDate;
|
115666
116002
|
metadata: import("zod").ZodAny;
|
115667
116003
|
platformId: import("zod").ZodString;
|
@@ -116319,7 +116655,7 @@ export declare const platformMessengerContract: {
|
|
116319
116655
|
};
|
116320
116656
|
}>;
|
116321
116657
|
}, "strip", import("zod").ZodTypeAny, {
|
116322
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
116658
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
116323
116659
|
message: string;
|
116324
116660
|
id: string;
|
116325
116661
|
url: string;
|
@@ -116481,7 +116817,7 @@ export declare const platformMessengerContract: {
|
|
116481
116817
|
metadata?: any;
|
116482
116818
|
template?: any;
|
116483
116819
|
}, {
|
116484
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
116820
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
116485
116821
|
message: string;
|
116486
116822
|
id: string;
|
116487
116823
|
url: string;
|
@@ -116854,7 +117190,7 @@ export declare const platformMessengerContract: {
|
|
116854
117190
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
116855
117191
|
message: import("zod").ZodString;
|
116856
117192
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
116857
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
117193
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
116858
117194
|
readAt: import("zod").ZodDate;
|
116859
117195
|
metadata: import("zod").ZodAny;
|
116860
117196
|
platformId: import("zod").ZodString;
|
@@ -119846,7 +120182,7 @@ export declare const platformMessengerContract: {
|
|
119846
120182
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
119847
120183
|
message: import("zod").ZodString;
|
119848
120184
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
119849
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
120185
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
119850
120186
|
readAt: import("zod").ZodDate;
|
119851
120187
|
metadata: import("zod").ZodAny;
|
119852
120188
|
platformId: import("zod").ZodString;
|
@@ -120504,7 +120840,7 @@ export declare const platformMessengerContract: {
|
|
120504
120840
|
};
|
120505
120841
|
}>;
|
120506
120842
|
}, "strip", import("zod").ZodTypeAny, {
|
120507
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
120843
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
120508
120844
|
message: string;
|
120509
120845
|
id: string;
|
120510
120846
|
url: string;
|
@@ -120666,7 +121002,7 @@ export declare const platformMessengerContract: {
|
|
120666
121002
|
metadata?: any;
|
120667
121003
|
template?: any;
|
120668
121004
|
}, {
|
120669
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
121005
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
120670
121006
|
message: string;
|
120671
121007
|
id: string;
|
120672
121008
|
url: string;
|
@@ -121466,7 +121802,7 @@ export declare const platformMessengerContract: {
|
|
121466
121802
|
isActive: boolean;
|
121467
121803
|
}>;
|
121468
121804
|
}, "strip", import("zod").ZodTypeAny, {
|
121469
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
121805
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
121470
121806
|
message: string;
|
121471
121807
|
id: string;
|
121472
121808
|
url: string;
|
@@ -121959,7 +122295,7 @@ export declare const platformMessengerContract: {
|
|
121959
122295
|
previewUrl: string;
|
121960
122296
|
imageSetId: string;
|
121961
122297
|
repliedMessage: {
|
121962
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
122298
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
121963
122299
|
message: string;
|
121964
122300
|
id: string;
|
121965
122301
|
url: string;
|
@@ -122168,7 +122504,7 @@ export declare const platformMessengerContract: {
|
|
122168
122504
|
metadata?: any;
|
122169
122505
|
template?: any;
|
122170
122506
|
}, {
|
122171
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
122507
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
122172
122508
|
message: string;
|
122173
122509
|
id: string;
|
122174
122510
|
url: string;
|
@@ -122661,7 +122997,7 @@ export declare const platformMessengerContract: {
|
|
122661
122997
|
previewUrl: string;
|
122662
122998
|
imageSetId: string;
|
122663
122999
|
repliedMessage: {
|
122664
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
123000
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
122665
123001
|
message: string;
|
122666
123002
|
id: string;
|
122667
123003
|
url: string;
|
@@ -122871,7 +123207,7 @@ export declare const platformMessengerContract: {
|
|
122871
123207
|
template?: any;
|
122872
123208
|
}>>>;
|
122873
123209
|
}, "strip", import("zod").ZodTypeAny, {
|
122874
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
123210
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
122875
123211
|
message: string;
|
122876
123212
|
id: string;
|
122877
123213
|
url: string;
|
@@ -123364,7 +123700,7 @@ export declare const platformMessengerContract: {
|
|
123364
123700
|
previewUrl: string;
|
123365
123701
|
imageSetId: string;
|
123366
123702
|
repliedMessage: {
|
123367
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
123703
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
123368
123704
|
message: string;
|
123369
123705
|
id: string;
|
123370
123706
|
url: string;
|
@@ -123573,7 +123909,7 @@ export declare const platformMessengerContract: {
|
|
123573
123909
|
template?: any;
|
123574
123910
|
metadata?: any;
|
123575
123911
|
fromMessage?: {
|
123576
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
123912
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
123577
123913
|
message: string;
|
123578
123914
|
id: string;
|
123579
123915
|
url: string;
|
@@ -124066,7 +124402,7 @@ export declare const platformMessengerContract: {
|
|
124066
124402
|
previewUrl: string;
|
124067
124403
|
imageSetId: string;
|
124068
124404
|
repliedMessage: {
|
124069
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
124405
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
124070
124406
|
message: string;
|
124071
124407
|
id: string;
|
124072
124408
|
url: string;
|
@@ -124276,7 +124612,7 @@ export declare const platformMessengerContract: {
|
|
124276
124612
|
template?: any;
|
124277
124613
|
} | null | undefined;
|
124278
124614
|
}, {
|
124279
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
124615
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
124280
124616
|
message: string;
|
124281
124617
|
id: string;
|
124282
124618
|
url: string;
|
@@ -124769,7 +125105,7 @@ export declare const platformMessengerContract: {
|
|
124769
125105
|
previewUrl: string;
|
124770
125106
|
imageSetId: string;
|
124771
125107
|
repliedMessage: {
|
124772
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
125108
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
124773
125109
|
message: string;
|
124774
125110
|
id: string;
|
124775
125111
|
url: string;
|
@@ -124978,7 +125314,7 @@ export declare const platformMessengerContract: {
|
|
124978
125314
|
template?: any;
|
124979
125315
|
metadata?: any;
|
124980
125316
|
fromMessage?: {
|
124981
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
125317
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
124982
125318
|
message: string;
|
124983
125319
|
id: string;
|
124984
125320
|
url: string;
|
@@ -125471,7 +125807,7 @@ export declare const platformMessengerContract: {
|
|
125471
125807
|
previewUrl: string;
|
125472
125808
|
imageSetId: string;
|
125473
125809
|
repliedMessage: {
|
125474
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
125810
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
125475
125811
|
message: string;
|
125476
125812
|
id: string;
|
125477
125813
|
url: string;
|
@@ -125683,7 +126019,7 @@ export declare const platformMessengerContract: {
|
|
125683
126019
|
}>;
|
125684
126020
|
}, "strip", import("zod").ZodTypeAny, {
|
125685
126021
|
data: {
|
125686
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
126022
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
125687
126023
|
message: string;
|
125688
126024
|
id: string;
|
125689
126025
|
url: string;
|
@@ -126176,7 +126512,7 @@ export declare const platformMessengerContract: {
|
|
126176
126512
|
previewUrl: string;
|
126177
126513
|
imageSetId: string;
|
126178
126514
|
repliedMessage: {
|
126179
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
126515
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
126180
126516
|
message: string;
|
126181
126517
|
id: string;
|
126182
126518
|
url: string;
|
@@ -126385,7 +126721,7 @@ export declare const platformMessengerContract: {
|
|
126385
126721
|
template?: any;
|
126386
126722
|
metadata?: any;
|
126387
126723
|
fromMessage?: {
|
126388
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
126724
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
126389
126725
|
message: string;
|
126390
126726
|
id: string;
|
126391
126727
|
url: string;
|
@@ -126878,7 +127214,7 @@ export declare const platformMessengerContract: {
|
|
126878
127214
|
previewUrl: string;
|
126879
127215
|
imageSetId: string;
|
126880
127216
|
repliedMessage: {
|
126881
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
127217
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
126882
127218
|
message: string;
|
126883
127219
|
id: string;
|
126884
127220
|
url: string;
|
@@ -127091,7 +127427,7 @@ export declare const platformMessengerContract: {
|
|
127091
127427
|
requestId: string;
|
127092
127428
|
}, {
|
127093
127429
|
data: {
|
127094
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
127430
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
127095
127431
|
message: string;
|
127096
127432
|
id: string;
|
127097
127433
|
url: string;
|
@@ -127584,7 +127920,7 @@ export declare const platformMessengerContract: {
|
|
127584
127920
|
previewUrl: string;
|
127585
127921
|
imageSetId: string;
|
127586
127922
|
repliedMessage: {
|
127587
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
127923
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
127588
127924
|
message: string;
|
127589
127925
|
id: string;
|
127590
127926
|
url: string;
|
@@ -127793,7 +128129,7 @@ export declare const platformMessengerContract: {
|
|
127793
128129
|
template?: any;
|
127794
128130
|
metadata?: any;
|
127795
128131
|
fromMessage?: {
|
127796
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
128132
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
127797
128133
|
message: string;
|
127798
128134
|
id: string;
|
127799
128135
|
url: string;
|
@@ -128286,7 +128622,7 @@ export declare const platformMessengerContract: {
|
|
128286
128622
|
previewUrl: string;
|
128287
128623
|
imageSetId: string;
|
128288
128624
|
repliedMessage: {
|
128289
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
128625
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
128290
128626
|
message: string;
|
128291
128627
|
id: string;
|
128292
128628
|
url: string;
|
@@ -130320,7 +130656,7 @@ export declare const platformInstagramContract: {
|
|
130320
130656
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
130321
130657
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
130322
130658
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
130323
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
130659
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
130324
130660
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
130325
130661
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
130326
130662
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -130372,7 +130708,7 @@ export declare const platformInstagramContract: {
|
|
130372
130708
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
130373
130709
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
130374
130710
|
}, "strip", import("zod").ZodTypeAny, {
|
130375
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
130711
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130376
130712
|
direction: "incoming" | "outgoing" | "system";
|
130377
130713
|
id?: string | undefined;
|
130378
130714
|
message?: string | undefined;
|
@@ -130403,7 +130739,7 @@ export declare const platformInstagramContract: {
|
|
130403
130739
|
parentMessageId?: string | undefined;
|
130404
130740
|
feedPostId?: string | undefined;
|
130405
130741
|
}, {
|
130406
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
130742
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130407
130743
|
direction: "incoming" | "outgoing" | "system";
|
130408
130744
|
id?: string | undefined;
|
130409
130745
|
message?: string | undefined;
|
@@ -130436,7 +130772,7 @@ export declare const platformInstagramContract: {
|
|
130436
130772
|
}>;
|
130437
130773
|
}, "strip", import("zod").ZodTypeAny, {
|
130438
130774
|
message: {
|
130439
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
130775
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130440
130776
|
direction: "incoming" | "outgoing" | "system";
|
130441
130777
|
id?: string | undefined;
|
130442
130778
|
message?: string | undefined;
|
@@ -130539,7 +130875,7 @@ export declare const platformInstagramContract: {
|
|
130539
130875
|
isBot: boolean | null;
|
130540
130876
|
}, {
|
130541
130877
|
message: {
|
130542
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
130878
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130543
130879
|
direction: "incoming" | "outgoing" | "system";
|
130544
130880
|
id?: string | undefined;
|
130545
130881
|
message?: string | undefined;
|
@@ -130646,7 +130982,7 @@ export declare const platformInstagramContract: {
|
|
130646
130982
|
200: import("zod").ZodObject<{
|
130647
130983
|
requestId: import("zod").ZodString;
|
130648
130984
|
data: import("zod").ZodObject<{
|
130649
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
130985
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
130650
130986
|
message: import("zod").ZodString;
|
130651
130987
|
id: import("zod").ZodString;
|
130652
130988
|
url: import("zod").ZodString;
|
@@ -134077,7 +134413,7 @@ export declare const platformInstagramContract: {
|
|
134077
134413
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
134078
134414
|
message: import("zod").ZodString;
|
134079
134415
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
134080
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
134416
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
134081
134417
|
readAt: import("zod").ZodDate;
|
134082
134418
|
metadata: import("zod").ZodAny;
|
134083
134419
|
platformId: import("zod").ZodString;
|
@@ -134735,7 +135071,7 @@ export declare const platformInstagramContract: {
|
|
134735
135071
|
};
|
134736
135072
|
}>;
|
134737
135073
|
}, "strip", import("zod").ZodTypeAny, {
|
134738
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
135074
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
134739
135075
|
message: string;
|
134740
135076
|
id: string;
|
134741
135077
|
url: string;
|
@@ -134897,7 +135233,7 @@ export declare const platformInstagramContract: {
|
|
134897
135233
|
metadata?: any;
|
134898
135234
|
template?: any;
|
134899
135235
|
}, {
|
134900
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
135236
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
134901
135237
|
message: string;
|
134902
135238
|
id: string;
|
134903
135239
|
url: string;
|
@@ -135270,7 +135606,7 @@ export declare const platformInstagramContract: {
|
|
135270
135606
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
135271
135607
|
message: import("zod").ZodString;
|
135272
135608
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
135273
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
135609
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
135274
135610
|
readAt: import("zod").ZodDate;
|
135275
135611
|
metadata: import("zod").ZodAny;
|
135276
135612
|
platformId: import("zod").ZodString;
|
@@ -138262,7 +138598,7 @@ export declare const platformInstagramContract: {
|
|
138262
138598
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
138263
138599
|
message: import("zod").ZodString;
|
138264
138600
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
138265
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
138601
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
138266
138602
|
readAt: import("zod").ZodDate;
|
138267
138603
|
metadata: import("zod").ZodAny;
|
138268
138604
|
platformId: import("zod").ZodString;
|
@@ -138920,7 +139256,7 @@ export declare const platformInstagramContract: {
|
|
138920
139256
|
};
|
138921
139257
|
}>;
|
138922
139258
|
}, "strip", import("zod").ZodTypeAny, {
|
138923
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
139259
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
138924
139260
|
message: string;
|
138925
139261
|
id: string;
|
138926
139262
|
url: string;
|
@@ -139082,7 +139418,7 @@ export declare const platformInstagramContract: {
|
|
139082
139418
|
metadata?: any;
|
139083
139419
|
template?: any;
|
139084
139420
|
}, {
|
139085
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
139421
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
139086
139422
|
message: string;
|
139087
139423
|
id: string;
|
139088
139424
|
url: string;
|
@@ -139882,7 +140218,7 @@ export declare const platformInstagramContract: {
|
|
139882
140218
|
isActive: boolean;
|
139883
140219
|
}>;
|
139884
140220
|
}, "strip", import("zod").ZodTypeAny, {
|
139885
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
140221
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
139886
140222
|
message: string;
|
139887
140223
|
id: string;
|
139888
140224
|
url: string;
|
@@ -140375,7 +140711,7 @@ export declare const platformInstagramContract: {
|
|
140375
140711
|
previewUrl: string;
|
140376
140712
|
imageSetId: string;
|
140377
140713
|
repliedMessage: {
|
140378
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
140714
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
140379
140715
|
message: string;
|
140380
140716
|
id: string;
|
140381
140717
|
url: string;
|
@@ -140584,7 +140920,7 @@ export declare const platformInstagramContract: {
|
|
140584
140920
|
metadata?: any;
|
140585
140921
|
template?: any;
|
140586
140922
|
}, {
|
140587
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
140923
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
140588
140924
|
message: string;
|
140589
140925
|
id: string;
|
140590
140926
|
url: string;
|
@@ -141077,7 +141413,7 @@ export declare const platformInstagramContract: {
|
|
141077
141413
|
previewUrl: string;
|
141078
141414
|
imageSetId: string;
|
141079
141415
|
repliedMessage: {
|
141080
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
141416
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
141081
141417
|
message: string;
|
141082
141418
|
id: string;
|
141083
141419
|
url: string;
|
@@ -141287,7 +141623,7 @@ export declare const platformInstagramContract: {
|
|
141287
141623
|
template?: any;
|
141288
141624
|
}>>>;
|
141289
141625
|
}, "strip", import("zod").ZodTypeAny, {
|
141290
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
141626
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
141291
141627
|
message: string;
|
141292
141628
|
id: string;
|
141293
141629
|
url: string;
|
@@ -141780,7 +142116,7 @@ export declare const platformInstagramContract: {
|
|
141780
142116
|
previewUrl: string;
|
141781
142117
|
imageSetId: string;
|
141782
142118
|
repliedMessage: {
|
141783
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
142119
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
141784
142120
|
message: string;
|
141785
142121
|
id: string;
|
141786
142122
|
url: string;
|
@@ -141989,7 +142325,7 @@ export declare const platformInstagramContract: {
|
|
141989
142325
|
template?: any;
|
141990
142326
|
metadata?: any;
|
141991
142327
|
fromMessage?: {
|
141992
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
142328
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
141993
142329
|
message: string;
|
141994
142330
|
id: string;
|
141995
142331
|
url: string;
|
@@ -142482,7 +142818,7 @@ export declare const platformInstagramContract: {
|
|
142482
142818
|
previewUrl: string;
|
142483
142819
|
imageSetId: string;
|
142484
142820
|
repliedMessage: {
|
142485
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
142821
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
142486
142822
|
message: string;
|
142487
142823
|
id: string;
|
142488
142824
|
url: string;
|
@@ -142692,7 +143028,7 @@ export declare const platformInstagramContract: {
|
|
142692
143028
|
template?: any;
|
142693
143029
|
} | null | undefined;
|
142694
143030
|
}, {
|
142695
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
143031
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
142696
143032
|
message: string;
|
142697
143033
|
id: string;
|
142698
143034
|
url: string;
|
@@ -143185,7 +143521,7 @@ export declare const platformInstagramContract: {
|
|
143185
143521
|
previewUrl: string;
|
143186
143522
|
imageSetId: string;
|
143187
143523
|
repliedMessage: {
|
143188
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
143524
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
143189
143525
|
message: string;
|
143190
143526
|
id: string;
|
143191
143527
|
url: string;
|
@@ -143394,7 +143730,7 @@ export declare const platformInstagramContract: {
|
|
143394
143730
|
template?: any;
|
143395
143731
|
metadata?: any;
|
143396
143732
|
fromMessage?: {
|
143397
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
143733
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
143398
143734
|
message: string;
|
143399
143735
|
id: string;
|
143400
143736
|
url: string;
|
@@ -143887,7 +144223,7 @@ export declare const platformInstagramContract: {
|
|
143887
144223
|
previewUrl: string;
|
143888
144224
|
imageSetId: string;
|
143889
144225
|
repliedMessage: {
|
143890
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
144226
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
143891
144227
|
message: string;
|
143892
144228
|
id: string;
|
143893
144229
|
url: string;
|
@@ -144099,7 +144435,7 @@ export declare const platformInstagramContract: {
|
|
144099
144435
|
}>;
|
144100
144436
|
}, "strip", import("zod").ZodTypeAny, {
|
144101
144437
|
data: {
|
144102
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
144438
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
144103
144439
|
message: string;
|
144104
144440
|
id: string;
|
144105
144441
|
url: string;
|
@@ -144592,7 +144928,7 @@ export declare const platformInstagramContract: {
|
|
144592
144928
|
previewUrl: string;
|
144593
144929
|
imageSetId: string;
|
144594
144930
|
repliedMessage: {
|
144595
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
144931
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
144596
144932
|
message: string;
|
144597
144933
|
id: string;
|
144598
144934
|
url: string;
|
@@ -144801,7 +145137,7 @@ export declare const platformInstagramContract: {
|
|
144801
145137
|
template?: any;
|
144802
145138
|
metadata?: any;
|
144803
145139
|
fromMessage?: {
|
144804
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
145140
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
144805
145141
|
message: string;
|
144806
145142
|
id: string;
|
144807
145143
|
url: string;
|
@@ -145294,7 +145630,7 @@ export declare const platformInstagramContract: {
|
|
145294
145630
|
previewUrl: string;
|
145295
145631
|
imageSetId: string;
|
145296
145632
|
repliedMessage: {
|
145297
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
145633
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
145298
145634
|
message: string;
|
145299
145635
|
id: string;
|
145300
145636
|
url: string;
|
@@ -145507,7 +145843,7 @@ export declare const platformInstagramContract: {
|
|
145507
145843
|
requestId: string;
|
145508
145844
|
}, {
|
145509
145845
|
data: {
|
145510
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
145846
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
145511
145847
|
message: string;
|
145512
145848
|
id: string;
|
145513
145849
|
url: string;
|
@@ -146000,7 +146336,7 @@ export declare const platformInstagramContract: {
|
|
146000
146336
|
previewUrl: string;
|
146001
146337
|
imageSetId: string;
|
146002
146338
|
repliedMessage: {
|
146003
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
146339
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
146004
146340
|
message: string;
|
146005
146341
|
id: string;
|
146006
146342
|
url: string;
|
@@ -146209,7 +146545,7 @@ export declare const platformInstagramContract: {
|
|
146209
146545
|
template?: any;
|
146210
146546
|
metadata?: any;
|
146211
146547
|
fromMessage?: {
|
146212
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
146548
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
146213
146549
|
message: string;
|
146214
146550
|
id: string;
|
146215
146551
|
url: string;
|
@@ -146702,7 +147038,7 @@ export declare const platformInstagramContract: {
|
|
146702
147038
|
previewUrl: string;
|
146703
147039
|
imageSetId: string;
|
146704
147040
|
repliedMessage: {
|
146705
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
147041
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
146706
147042
|
message: string;
|
146707
147043
|
id: string;
|
146708
147044
|
url: string;
|
@@ -151706,7 +152042,7 @@ export declare const facebookFeedContract: {
|
|
151706
152042
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
151707
152043
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
151708
152044
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
151709
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
152045
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
151710
152046
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
151711
152047
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
151712
152048
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -151758,7 +152094,7 @@ export declare const facebookFeedContract: {
|
|
151758
152094
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
151759
152095
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
151760
152096
|
}, "strip", import("zod").ZodTypeAny, {
|
151761
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
152097
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
151762
152098
|
direction: "incoming" | "outgoing" | "system";
|
151763
152099
|
id?: string | undefined;
|
151764
152100
|
message?: string | undefined;
|
@@ -151789,7 +152125,7 @@ export declare const facebookFeedContract: {
|
|
151789
152125
|
parentMessageId?: string | undefined;
|
151790
152126
|
feedPostId?: string | undefined;
|
151791
152127
|
}, {
|
151792
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
152128
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
151793
152129
|
direction: "incoming" | "outgoing" | "system";
|
151794
152130
|
id?: string | undefined;
|
151795
152131
|
message?: string | undefined;
|
@@ -152196,7 +152532,7 @@ export declare const facebookFeedContract: {
|
|
152196
152532
|
}>>;
|
152197
152533
|
}, "strip", import("zod").ZodTypeAny, {
|
152198
152534
|
message: {
|
152199
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
152535
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
152200
152536
|
direction: "incoming" | "outgoing" | "system";
|
152201
152537
|
id?: string | undefined;
|
152202
152538
|
message?: string | undefined;
|
@@ -152303,7 +152639,7 @@ export declare const facebookFeedContract: {
|
|
152303
152639
|
} | undefined;
|
152304
152640
|
}, {
|
152305
152641
|
message: {
|
152306
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
152642
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
152307
152643
|
direction: "incoming" | "outgoing" | "system";
|
152308
152644
|
id?: string | undefined;
|
152309
152645
|
message?: string | undefined;
|
@@ -152414,7 +152750,7 @@ export declare const facebookFeedContract: {
|
|
152414
152750
|
200: import("zod").ZodObject<{
|
152415
152751
|
requestId: import("zod").ZodString;
|
152416
152752
|
data: import("zod").ZodObject<{
|
152417
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
152753
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
152418
152754
|
message: import("zod").ZodString;
|
152419
152755
|
id: import("zod").ZodString;
|
152420
152756
|
url: import("zod").ZodString;
|
@@ -155845,7 +156181,7 @@ export declare const facebookFeedContract: {
|
|
155845
156181
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
155846
156182
|
message: import("zod").ZodString;
|
155847
156183
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
155848
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
156184
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
155849
156185
|
readAt: import("zod").ZodDate;
|
155850
156186
|
metadata: import("zod").ZodAny;
|
155851
156187
|
platformId: import("zod").ZodString;
|
@@ -156503,7 +156839,7 @@ export declare const facebookFeedContract: {
|
|
156503
156839
|
};
|
156504
156840
|
}>;
|
156505
156841
|
}, "strip", import("zod").ZodTypeAny, {
|
156506
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
156842
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
156507
156843
|
message: string;
|
156508
156844
|
id: string;
|
156509
156845
|
url: string;
|
@@ -156665,7 +157001,7 @@ export declare const facebookFeedContract: {
|
|
156665
157001
|
metadata?: any;
|
156666
157002
|
template?: any;
|
156667
157003
|
}, {
|
156668
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
157004
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
156669
157005
|
message: string;
|
156670
157006
|
id: string;
|
156671
157007
|
url: string;
|
@@ -157038,7 +157374,7 @@ export declare const facebookFeedContract: {
|
|
157038
157374
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
157039
157375
|
message: import("zod").ZodString;
|
157040
157376
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
157041
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
157377
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
157042
157378
|
readAt: import("zod").ZodDate;
|
157043
157379
|
metadata: import("zod").ZodAny;
|
157044
157380
|
platformId: import("zod").ZodString;
|
@@ -160030,7 +160366,7 @@ export declare const facebookFeedContract: {
|
|
160030
160366
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
160031
160367
|
message: import("zod").ZodString;
|
160032
160368
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
160033
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
160369
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
160034
160370
|
readAt: import("zod").ZodDate;
|
160035
160371
|
metadata: import("zod").ZodAny;
|
160036
160372
|
platformId: import("zod").ZodString;
|
@@ -160688,7 +161024,7 @@ export declare const facebookFeedContract: {
|
|
160688
161024
|
};
|
160689
161025
|
}>;
|
160690
161026
|
}, "strip", import("zod").ZodTypeAny, {
|
160691
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
161027
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
160692
161028
|
message: string;
|
160693
161029
|
id: string;
|
160694
161030
|
url: string;
|
@@ -160850,7 +161186,7 @@ export declare const facebookFeedContract: {
|
|
160850
161186
|
metadata?: any;
|
160851
161187
|
template?: any;
|
160852
161188
|
}, {
|
160853
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
161189
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
160854
161190
|
message: string;
|
160855
161191
|
id: string;
|
160856
161192
|
url: string;
|
@@ -161650,7 +161986,7 @@ export declare const facebookFeedContract: {
|
|
161650
161986
|
isActive: boolean;
|
161651
161987
|
}>;
|
161652
161988
|
}, "strip", import("zod").ZodTypeAny, {
|
161653
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
161989
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
161654
161990
|
message: string;
|
161655
161991
|
id: string;
|
161656
161992
|
url: string;
|
@@ -162143,7 +162479,7 @@ export declare const facebookFeedContract: {
|
|
162143
162479
|
previewUrl: string;
|
162144
162480
|
imageSetId: string;
|
162145
162481
|
repliedMessage: {
|
162146
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
162482
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
162147
162483
|
message: string;
|
162148
162484
|
id: string;
|
162149
162485
|
url: string;
|
@@ -162352,7 +162688,7 @@ export declare const facebookFeedContract: {
|
|
162352
162688
|
metadata?: any;
|
162353
162689
|
template?: any;
|
162354
162690
|
}, {
|
162355
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
162691
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
162356
162692
|
message: string;
|
162357
162693
|
id: string;
|
162358
162694
|
url: string;
|
@@ -162845,7 +163181,7 @@ export declare const facebookFeedContract: {
|
|
162845
163181
|
previewUrl: string;
|
162846
163182
|
imageSetId: string;
|
162847
163183
|
repliedMessage: {
|
162848
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
163184
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
162849
163185
|
message: string;
|
162850
163186
|
id: string;
|
162851
163187
|
url: string;
|
@@ -163055,7 +163391,7 @@ export declare const facebookFeedContract: {
|
|
163055
163391
|
template?: any;
|
163056
163392
|
}>>>;
|
163057
163393
|
}, "strip", import("zod").ZodTypeAny, {
|
163058
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
163394
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
163059
163395
|
message: string;
|
163060
163396
|
id: string;
|
163061
163397
|
url: string;
|
@@ -163548,7 +163884,7 @@ export declare const facebookFeedContract: {
|
|
163548
163884
|
previewUrl: string;
|
163549
163885
|
imageSetId: string;
|
163550
163886
|
repliedMessage: {
|
163551
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
163887
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
163552
163888
|
message: string;
|
163553
163889
|
id: string;
|
163554
163890
|
url: string;
|
@@ -163757,7 +164093,7 @@ export declare const facebookFeedContract: {
|
|
163757
164093
|
template?: any;
|
163758
164094
|
metadata?: any;
|
163759
164095
|
fromMessage?: {
|
163760
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
164096
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
163761
164097
|
message: string;
|
163762
164098
|
id: string;
|
163763
164099
|
url: string;
|
@@ -164250,7 +164586,7 @@ export declare const facebookFeedContract: {
|
|
164250
164586
|
previewUrl: string;
|
164251
164587
|
imageSetId: string;
|
164252
164588
|
repliedMessage: {
|
164253
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
164589
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
164254
164590
|
message: string;
|
164255
164591
|
id: string;
|
164256
164592
|
url: string;
|
@@ -164460,7 +164796,7 @@ export declare const facebookFeedContract: {
|
|
164460
164796
|
template?: any;
|
164461
164797
|
} | null | undefined;
|
164462
164798
|
}, {
|
164463
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
164799
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
164464
164800
|
message: string;
|
164465
164801
|
id: string;
|
164466
164802
|
url: string;
|
@@ -164953,7 +165289,7 @@ export declare const facebookFeedContract: {
|
|
164953
165289
|
previewUrl: string;
|
164954
165290
|
imageSetId: string;
|
164955
165291
|
repliedMessage: {
|
164956
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
165292
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
164957
165293
|
message: string;
|
164958
165294
|
id: string;
|
164959
165295
|
url: string;
|
@@ -165162,7 +165498,7 @@ export declare const facebookFeedContract: {
|
|
165162
165498
|
template?: any;
|
165163
165499
|
metadata?: any;
|
165164
165500
|
fromMessage?: {
|
165165
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
165501
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
165166
165502
|
message: string;
|
165167
165503
|
id: string;
|
165168
165504
|
url: string;
|
@@ -165655,7 +165991,7 @@ export declare const facebookFeedContract: {
|
|
165655
165991
|
previewUrl: string;
|
165656
165992
|
imageSetId: string;
|
165657
165993
|
repliedMessage: {
|
165658
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
165994
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
165659
165995
|
message: string;
|
165660
165996
|
id: string;
|
165661
165997
|
url: string;
|
@@ -165867,7 +166203,7 @@ export declare const facebookFeedContract: {
|
|
165867
166203
|
}>;
|
165868
166204
|
}, "strip", import("zod").ZodTypeAny, {
|
165869
166205
|
data: {
|
165870
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
166206
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
165871
166207
|
message: string;
|
165872
166208
|
id: string;
|
165873
166209
|
url: string;
|
@@ -166360,7 +166696,7 @@ export declare const facebookFeedContract: {
|
|
166360
166696
|
previewUrl: string;
|
166361
166697
|
imageSetId: string;
|
166362
166698
|
repliedMessage: {
|
166363
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
166699
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
166364
166700
|
message: string;
|
166365
166701
|
id: string;
|
166366
166702
|
url: string;
|
@@ -166569,7 +166905,7 @@ export declare const facebookFeedContract: {
|
|
166569
166905
|
template?: any;
|
166570
166906
|
metadata?: any;
|
166571
166907
|
fromMessage?: {
|
166572
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
166908
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
166573
166909
|
message: string;
|
166574
166910
|
id: string;
|
166575
166911
|
url: string;
|
@@ -167062,7 +167398,7 @@ export declare const facebookFeedContract: {
|
|
167062
167398
|
previewUrl: string;
|
167063
167399
|
imageSetId: string;
|
167064
167400
|
repliedMessage: {
|
167065
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
167401
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
167066
167402
|
message: string;
|
167067
167403
|
id: string;
|
167068
167404
|
url: string;
|
@@ -167275,7 +167611,7 @@ export declare const facebookFeedContract: {
|
|
167275
167611
|
requestId: string;
|
167276
167612
|
}, {
|
167277
167613
|
data: {
|
167278
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
167614
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
167279
167615
|
message: string;
|
167280
167616
|
id: string;
|
167281
167617
|
url: string;
|
@@ -167768,7 +168104,7 @@ export declare const facebookFeedContract: {
|
|
167768
168104
|
previewUrl: string;
|
167769
168105
|
imageSetId: string;
|
167770
168106
|
repliedMessage: {
|
167771
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
168107
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
167772
168108
|
message: string;
|
167773
168109
|
id: string;
|
167774
168110
|
url: string;
|
@@ -167977,7 +168313,7 @@ export declare const facebookFeedContract: {
|
|
167977
168313
|
template?: any;
|
167978
168314
|
metadata?: any;
|
167979
168315
|
fromMessage?: {
|
167980
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
168316
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
167981
168317
|
message: string;
|
167982
168318
|
id: string;
|
167983
168319
|
url: string;
|
@@ -168470,7 +168806,7 @@ export declare const facebookFeedContract: {
|
|
168470
168806
|
previewUrl: string;
|
168471
168807
|
imageSetId: string;
|
168472
168808
|
repliedMessage: {
|
168473
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
168809
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
168474
168810
|
message: string;
|
168475
168811
|
id: string;
|
168476
168812
|
url: string;
|
@@ -169075,7 +169411,7 @@ export declare const facebookFeedContract: {
|
|
169075
169411
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
169076
169412
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
169077
169413
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
169078
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
169414
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
169079
169415
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
169080
169416
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
169081
169417
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -169127,7 +169463,7 @@ export declare const facebookFeedContract: {
|
|
169127
169463
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
169128
169464
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
169129
169465
|
}, "strip", import("zod").ZodTypeAny, {
|
169130
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
169466
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
169131
169467
|
direction: "incoming" | "outgoing" | "system";
|
169132
169468
|
id?: string | undefined;
|
169133
169469
|
message?: string | undefined;
|
@@ -169158,7 +169494,7 @@ export declare const facebookFeedContract: {
|
|
169158
169494
|
parentMessageId?: string | undefined;
|
169159
169495
|
feedPostId?: string | undefined;
|
169160
169496
|
}, {
|
169161
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
169497
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
169162
169498
|
direction: "incoming" | "outgoing" | "system";
|
169163
169499
|
id?: string | undefined;
|
169164
169500
|
message?: string | undefined;
|
@@ -169191,7 +169527,7 @@ export declare const facebookFeedContract: {
|
|
169191
169527
|
}>;
|
169192
169528
|
}, "strip", import("zod").ZodTypeAny, {
|
169193
169529
|
message: {
|
169194
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
169530
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
169195
169531
|
direction: "incoming" | "outgoing" | "system";
|
169196
169532
|
id?: string | undefined;
|
169197
169533
|
message?: string | undefined;
|
@@ -169294,7 +169630,7 @@ export declare const facebookFeedContract: {
|
|
169294
169630
|
isBot: boolean | null;
|
169295
169631
|
}, {
|
169296
169632
|
message: {
|
169297
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
169633
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
169298
169634
|
direction: "incoming" | "outgoing" | "system";
|
169299
169635
|
id?: string | undefined;
|
169300
169636
|
message?: string | undefined;
|
@@ -169401,7 +169737,7 @@ export declare const facebookFeedContract: {
|
|
169401
169737
|
200: import("zod").ZodObject<{
|
169402
169738
|
requestId: import("zod").ZodString;
|
169403
169739
|
data: import("zod").ZodObject<{
|
169404
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
169740
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
169405
169741
|
message: import("zod").ZodString;
|
169406
169742
|
id: import("zod").ZodString;
|
169407
169743
|
url: import("zod").ZodString;
|
@@ -172832,7 +173168,7 @@ export declare const facebookFeedContract: {
|
|
172832
173168
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
172833
173169
|
message: import("zod").ZodString;
|
172834
173170
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
172835
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
173171
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
172836
173172
|
readAt: import("zod").ZodDate;
|
172837
173173
|
metadata: import("zod").ZodAny;
|
172838
173174
|
platformId: import("zod").ZodString;
|
@@ -173490,7 +173826,7 @@ export declare const facebookFeedContract: {
|
|
173490
173826
|
};
|
173491
173827
|
}>;
|
173492
173828
|
}, "strip", import("zod").ZodTypeAny, {
|
173493
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
173829
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
173494
173830
|
message: string;
|
173495
173831
|
id: string;
|
173496
173832
|
url: string;
|
@@ -173652,7 +173988,7 @@ export declare const facebookFeedContract: {
|
|
173652
173988
|
metadata?: any;
|
173653
173989
|
template?: any;
|
173654
173990
|
}, {
|
173655
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
173991
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
173656
173992
|
message: string;
|
173657
173993
|
id: string;
|
173658
173994
|
url: string;
|
@@ -174025,7 +174361,7 @@ export declare const facebookFeedContract: {
|
|
174025
174361
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
174026
174362
|
message: import("zod").ZodString;
|
174027
174363
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
174028
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
174364
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
174029
174365
|
readAt: import("zod").ZodDate;
|
174030
174366
|
metadata: import("zod").ZodAny;
|
174031
174367
|
platformId: import("zod").ZodString;
|
@@ -177017,7 +177353,7 @@ export declare const facebookFeedContract: {
|
|
177017
177353
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
177018
177354
|
message: import("zod").ZodString;
|
177019
177355
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
177020
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
177356
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
177021
177357
|
readAt: import("zod").ZodDate;
|
177022
177358
|
metadata: import("zod").ZodAny;
|
177023
177359
|
platformId: import("zod").ZodString;
|
@@ -177675,7 +178011,7 @@ export declare const facebookFeedContract: {
|
|
177675
178011
|
};
|
177676
178012
|
}>;
|
177677
178013
|
}, "strip", import("zod").ZodTypeAny, {
|
177678
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
178014
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
177679
178015
|
message: string;
|
177680
178016
|
id: string;
|
177681
178017
|
url: string;
|
@@ -177837,7 +178173,7 @@ export declare const facebookFeedContract: {
|
|
177837
178173
|
metadata?: any;
|
177838
178174
|
template?: any;
|
177839
178175
|
}, {
|
177840
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
178176
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
177841
178177
|
message: string;
|
177842
178178
|
id: string;
|
177843
178179
|
url: string;
|
@@ -178637,7 +178973,7 @@ export declare const facebookFeedContract: {
|
|
178637
178973
|
isActive: boolean;
|
178638
178974
|
}>;
|
178639
178975
|
}, "strip", import("zod").ZodTypeAny, {
|
178640
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
178976
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
178641
178977
|
message: string;
|
178642
178978
|
id: string;
|
178643
178979
|
url: string;
|
@@ -179130,7 +179466,7 @@ export declare const facebookFeedContract: {
|
|
179130
179466
|
previewUrl: string;
|
179131
179467
|
imageSetId: string;
|
179132
179468
|
repliedMessage: {
|
179133
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
179469
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
179134
179470
|
message: string;
|
179135
179471
|
id: string;
|
179136
179472
|
url: string;
|
@@ -179339,7 +179675,7 @@ export declare const facebookFeedContract: {
|
|
179339
179675
|
metadata?: any;
|
179340
179676
|
template?: any;
|
179341
179677
|
}, {
|
179342
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
179678
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
179343
179679
|
message: string;
|
179344
179680
|
id: string;
|
179345
179681
|
url: string;
|
@@ -179832,7 +180168,7 @@ export declare const facebookFeedContract: {
|
|
179832
180168
|
previewUrl: string;
|
179833
180169
|
imageSetId: string;
|
179834
180170
|
repliedMessage: {
|
179835
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
180171
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
179836
180172
|
message: string;
|
179837
180173
|
id: string;
|
179838
180174
|
url: string;
|
@@ -180042,7 +180378,7 @@ export declare const facebookFeedContract: {
|
|
180042
180378
|
template?: any;
|
180043
180379
|
}>>>;
|
180044
180380
|
}, "strip", import("zod").ZodTypeAny, {
|
180045
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
180381
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
180046
180382
|
message: string;
|
180047
180383
|
id: string;
|
180048
180384
|
url: string;
|
@@ -180535,7 +180871,7 @@ export declare const facebookFeedContract: {
|
|
180535
180871
|
previewUrl: string;
|
180536
180872
|
imageSetId: string;
|
180537
180873
|
repliedMessage: {
|
180538
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
180874
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
180539
180875
|
message: string;
|
180540
180876
|
id: string;
|
180541
180877
|
url: string;
|
@@ -180744,7 +181080,7 @@ export declare const facebookFeedContract: {
|
|
180744
181080
|
template?: any;
|
180745
181081
|
metadata?: any;
|
180746
181082
|
fromMessage?: {
|
180747
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
181083
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
180748
181084
|
message: string;
|
180749
181085
|
id: string;
|
180750
181086
|
url: string;
|
@@ -181237,7 +181573,7 @@ export declare const facebookFeedContract: {
|
|
181237
181573
|
previewUrl: string;
|
181238
181574
|
imageSetId: string;
|
181239
181575
|
repliedMessage: {
|
181240
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
181576
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
181241
181577
|
message: string;
|
181242
181578
|
id: string;
|
181243
181579
|
url: string;
|
@@ -181447,7 +181783,7 @@ export declare const facebookFeedContract: {
|
|
181447
181783
|
template?: any;
|
181448
181784
|
} | null | undefined;
|
181449
181785
|
}, {
|
181450
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
181786
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
181451
181787
|
message: string;
|
181452
181788
|
id: string;
|
181453
181789
|
url: string;
|
@@ -181940,7 +182276,7 @@ export declare const facebookFeedContract: {
|
|
181940
182276
|
previewUrl: string;
|
181941
182277
|
imageSetId: string;
|
181942
182278
|
repliedMessage: {
|
181943
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
182279
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
181944
182280
|
message: string;
|
181945
182281
|
id: string;
|
181946
182282
|
url: string;
|
@@ -182149,7 +182485,7 @@ export declare const facebookFeedContract: {
|
|
182149
182485
|
template?: any;
|
182150
182486
|
metadata?: any;
|
182151
182487
|
fromMessage?: {
|
182152
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
182488
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
182153
182489
|
message: string;
|
182154
182490
|
id: string;
|
182155
182491
|
url: string;
|
@@ -182642,7 +182978,7 @@ export declare const facebookFeedContract: {
|
|
182642
182978
|
previewUrl: string;
|
182643
182979
|
imageSetId: string;
|
182644
182980
|
repliedMessage: {
|
182645
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
182981
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
182646
182982
|
message: string;
|
182647
182983
|
id: string;
|
182648
182984
|
url: string;
|
@@ -182854,7 +183190,7 @@ export declare const facebookFeedContract: {
|
|
182854
183190
|
}>;
|
182855
183191
|
}, "strip", import("zod").ZodTypeAny, {
|
182856
183192
|
data: {
|
182857
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
183193
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
182858
183194
|
message: string;
|
182859
183195
|
id: string;
|
182860
183196
|
url: string;
|
@@ -183347,7 +183683,7 @@ export declare const facebookFeedContract: {
|
|
183347
183683
|
previewUrl: string;
|
183348
183684
|
imageSetId: string;
|
183349
183685
|
repliedMessage: {
|
183350
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
183686
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
183351
183687
|
message: string;
|
183352
183688
|
id: string;
|
183353
183689
|
url: string;
|
@@ -183556,7 +183892,7 @@ export declare const facebookFeedContract: {
|
|
183556
183892
|
template?: any;
|
183557
183893
|
metadata?: any;
|
183558
183894
|
fromMessage?: {
|
183559
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
183895
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
183560
183896
|
message: string;
|
183561
183897
|
id: string;
|
183562
183898
|
url: string;
|
@@ -184049,7 +184385,7 @@ export declare const facebookFeedContract: {
|
|
184049
184385
|
previewUrl: string;
|
184050
184386
|
imageSetId: string;
|
184051
184387
|
repliedMessage: {
|
184052
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
184388
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
184053
184389
|
message: string;
|
184054
184390
|
id: string;
|
184055
184391
|
url: string;
|
@@ -184262,7 +184598,7 @@ export declare const facebookFeedContract: {
|
|
184262
184598
|
requestId: string;
|
184263
184599
|
}, {
|
184264
184600
|
data: {
|
184265
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
184601
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
184266
184602
|
message: string;
|
184267
184603
|
id: string;
|
184268
184604
|
url: string;
|
@@ -184755,7 +185091,7 @@ export declare const facebookFeedContract: {
|
|
184755
185091
|
previewUrl: string;
|
184756
185092
|
imageSetId: string;
|
184757
185093
|
repliedMessage: {
|
184758
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
185094
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
184759
185095
|
message: string;
|
184760
185096
|
id: string;
|
184761
185097
|
url: string;
|
@@ -184964,7 +185300,7 @@ export declare const facebookFeedContract: {
|
|
184964
185300
|
template?: any;
|
184965
185301
|
metadata?: any;
|
184966
185302
|
fromMessage?: {
|
184967
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
185303
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
184968
185304
|
message: string;
|
184969
185305
|
id: string;
|
184970
185306
|
url: string;
|
@@ -185457,7 +185793,7 @@ export declare const facebookFeedContract: {
|
|
185457
185793
|
previewUrl: string;
|
185458
185794
|
imageSetId: string;
|
185459
185795
|
repliedMessage: {
|
185460
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
185796
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
185461
185797
|
message: string;
|
185462
185798
|
id: string;
|
185463
185799
|
url: string;
|
@@ -185715,7 +186051,7 @@ export declare const feedPostContract: {
|
|
185715
186051
|
updatedAt: import("zod").ZodDate;
|
185716
186052
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
185717
186053
|
message: import("zod").ZodNullable<import("zod").ZodString>;
|
185718
|
-
type: import("zod").ZodUnion<[import("zod").ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
186054
|
+
type: import("zod").ZodUnion<[import("zod").ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>]>;
|
185719
186055
|
metadata: import("zod").ZodAny;
|
185720
186056
|
platformId: import("zod").ZodString;
|
185721
186057
|
platformMessageId: import("zod").ZodString;
|
@@ -187266,7 +187602,7 @@ export declare const feedPostContract: {
|
|
187266
187602
|
imageURL: import("zod").ZodString;
|
187267
187603
|
permalinkURL: import("zod").ZodString;
|
187268
187604
|
}, "strip", import("zod").ZodTypeAny, {
|
187269
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "
|
187605
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
187270
187606
|
message: string | null;
|
187271
187607
|
id: string;
|
187272
187608
|
channel: {
|
@@ -187510,7 +187846,7 @@ export declare const feedPostContract: {
|
|
187510
187846
|
permalinkURL: string;
|
187511
187847
|
metadata?: any;
|
187512
187848
|
}, {
|
187513
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "
|
187849
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
187514
187850
|
message: string | null;
|
187515
187851
|
id: string;
|
187516
187852
|
channel: {
|
@@ -187756,7 +188092,7 @@ export declare const feedPostContract: {
|
|
187756
188092
|
}>;
|
187757
188093
|
}, "strip", import("zod").ZodTypeAny, {
|
187758
188094
|
data: {
|
187759
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "
|
188095
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
187760
188096
|
message: string | null;
|
187761
188097
|
id: string;
|
187762
188098
|
channel: {
|
@@ -188003,7 +188339,7 @@ export declare const feedPostContract: {
|
|
188003
188339
|
requestId: string;
|
188004
188340
|
}, {
|
188005
188341
|
data: {
|
188006
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "
|
188342
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
188007
188343
|
message: string | null;
|
188008
188344
|
id: string;
|
188009
188345
|
channel: {
|
@@ -188295,7 +188631,7 @@ export declare const feedPostContract: {
|
|
188295
188631
|
page: import("zod").ZodNumber;
|
188296
188632
|
pageSize: import("zod").ZodNumber;
|
188297
188633
|
data: import("zod").ZodObject<{
|
188298
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
188634
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
188299
188635
|
message: import("zod").ZodString;
|
188300
188636
|
id: import("zod").ZodString;
|
188301
188637
|
url: import("zod").ZodString;
|
@@ -191726,7 +192062,7 @@ export declare const feedPostContract: {
|
|
191726
192062
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
191727
192063
|
message: import("zod").ZodString;
|
191728
192064
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
191729
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
192065
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
191730
192066
|
readAt: import("zod").ZodDate;
|
191731
192067
|
metadata: import("zod").ZodAny;
|
191732
192068
|
platformId: import("zod").ZodString;
|
@@ -192384,7 +192720,7 @@ export declare const feedPostContract: {
|
|
192384
192720
|
};
|
192385
192721
|
}>;
|
192386
192722
|
}, "strip", import("zod").ZodTypeAny, {
|
192387
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
192723
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
192388
192724
|
message: string;
|
192389
192725
|
id: string;
|
192390
192726
|
url: string;
|
@@ -192546,7 +192882,7 @@ export declare const feedPostContract: {
|
|
192546
192882
|
metadata?: any;
|
192547
192883
|
template?: any;
|
192548
192884
|
}, {
|
192549
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
192885
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
192550
192886
|
message: string;
|
192551
192887
|
id: string;
|
192552
192888
|
url: string;
|
@@ -193853,7 +194189,7 @@ export declare const feedPostContract: {
|
|
193853
194189
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
193854
194190
|
message: import("zod").ZodString;
|
193855
194191
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
193856
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
194192
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
193857
194193
|
readAt: import("zod").ZodDate;
|
193858
194194
|
metadata: import("zod").ZodAny;
|
193859
194195
|
platformId: import("zod").ZodString;
|
@@ -196845,7 +197181,7 @@ export declare const feedPostContract: {
|
|
196845
197181
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
196846
197182
|
message: import("zod").ZodString;
|
196847
197183
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
196848
|
-
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "
|
197184
|
+
type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
|
196849
197185
|
readAt: import("zod").ZodDate;
|
196850
197186
|
metadata: import("zod").ZodAny;
|
196851
197187
|
platformId: import("zod").ZodString;
|
@@ -197503,7 +197839,7 @@ export declare const feedPostContract: {
|
|
197503
197839
|
};
|
197504
197840
|
}>;
|
197505
197841
|
}, "strip", import("zod").ZodTypeAny, {
|
197506
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
197842
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
197507
197843
|
message: string;
|
197508
197844
|
id: string;
|
197509
197845
|
url: string;
|
@@ -197665,7 +198001,7 @@ export declare const feedPostContract: {
|
|
197665
198001
|
metadata?: any;
|
197666
198002
|
template?: any;
|
197667
198003
|
}, {
|
197668
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
198004
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
197669
198005
|
message: string;
|
197670
198006
|
id: string;
|
197671
198007
|
url: string;
|
@@ -198465,7 +198801,7 @@ export declare const feedPostContract: {
|
|
198465
198801
|
isActive: boolean;
|
198466
198802
|
}>;
|
198467
198803
|
}, "strip", import("zod").ZodTypeAny, {
|
198468
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
198804
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
198469
198805
|
message: string;
|
198470
198806
|
id: string;
|
198471
198807
|
url: string;
|
@@ -198958,7 +199294,7 @@ export declare const feedPostContract: {
|
|
198958
199294
|
previewUrl: string;
|
198959
199295
|
imageSetId: string;
|
198960
199296
|
repliedMessage: {
|
198961
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
199297
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
198962
199298
|
message: string;
|
198963
199299
|
id: string;
|
198964
199300
|
url: string;
|
@@ -199167,7 +199503,7 @@ export declare const feedPostContract: {
|
|
199167
199503
|
metadata?: any;
|
199168
199504
|
template?: any;
|
199169
199505
|
}, {
|
199170
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
199506
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
199171
199507
|
message: string;
|
199172
199508
|
id: string;
|
199173
199509
|
url: string;
|
@@ -199660,7 +199996,7 @@ export declare const feedPostContract: {
|
|
199660
199996
|
previewUrl: string;
|
199661
199997
|
imageSetId: string;
|
199662
199998
|
repliedMessage: {
|
199663
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
199999
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
199664
200000
|
message: string;
|
199665
200001
|
id: string;
|
199666
200002
|
url: string;
|
@@ -199870,13 +200206,13 @@ export declare const feedPostContract: {
|
|
199870
200206
|
template?: any;
|
199871
200207
|
}>, "many">;
|
199872
200208
|
}, "strip", import("zod").ZodTypeAny, {
|
199873
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
200209
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
199874
200210
|
message: string;
|
199875
200211
|
id: string;
|
199876
200212
|
url: string;
|
199877
200213
|
direction: "incoming" | "outgoing" | "system";
|
199878
200214
|
children: {
|
199879
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
200215
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
199880
200216
|
message: string;
|
199881
200217
|
id: string;
|
199882
200218
|
url: string;
|
@@ -200369,7 +200705,7 @@ export declare const feedPostContract: {
|
|
200369
200705
|
previewUrl: string;
|
200370
200706
|
imageSetId: string;
|
200371
200707
|
repliedMessage: {
|
200372
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
200708
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
200373
200709
|
message: string;
|
200374
200710
|
id: string;
|
200375
200711
|
url: string;
|
@@ -201066,7 +201402,7 @@ export declare const feedPostContract: {
|
|
201066
201402
|
previewUrl: string;
|
201067
201403
|
imageSetId: string;
|
201068
201404
|
repliedMessage: {
|
201069
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
201405
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
201070
201406
|
message: string;
|
201071
201407
|
id: string;
|
201072
201408
|
url: string;
|
@@ -201387,13 +201723,13 @@ export declare const feedPostContract: {
|
|
201387
201723
|
template?: any;
|
201388
201724
|
metadata?: any;
|
201389
201725
|
}, {
|
201390
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
201726
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
201391
201727
|
message: string;
|
201392
201728
|
id: string;
|
201393
201729
|
url: string;
|
201394
201730
|
direction: "incoming" | "outgoing" | "system";
|
201395
201731
|
children: {
|
201396
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
201732
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
201397
201733
|
message: string;
|
201398
201734
|
id: string;
|
201399
201735
|
url: string;
|
@@ -201886,7 +202222,7 @@ export declare const feedPostContract: {
|
|
201886
202222
|
previewUrl: string;
|
201887
202223
|
imageSetId: string;
|
201888
202224
|
repliedMessage: {
|
201889
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
202225
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
201890
202226
|
message: string;
|
201891
202227
|
id: string;
|
201892
202228
|
url: string;
|
@@ -202583,7 +202919,7 @@ export declare const feedPostContract: {
|
|
202583
202919
|
previewUrl: string;
|
202584
202920
|
imageSetId: string;
|
202585
202921
|
repliedMessage: {
|
202586
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
202922
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
202587
202923
|
message: string;
|
202588
202924
|
id: string;
|
202589
202925
|
url: string;
|
@@ -202906,13 +203242,13 @@ export declare const feedPostContract: {
|
|
202906
203242
|
}>;
|
202907
203243
|
}, "strip", import("zod").ZodTypeAny, {
|
202908
203244
|
data: {
|
202909
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
203245
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
202910
203246
|
message: string;
|
202911
203247
|
id: string;
|
202912
203248
|
url: string;
|
202913
203249
|
direction: "incoming" | "outgoing" | "system";
|
202914
203250
|
children: {
|
202915
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
203251
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
202916
203252
|
message: string;
|
202917
203253
|
id: string;
|
202918
203254
|
url: string;
|
@@ -203405,7 +203741,7 @@ export declare const feedPostContract: {
|
|
203405
203741
|
previewUrl: string;
|
203406
203742
|
imageSetId: string;
|
203407
203743
|
repliedMessage: {
|
203408
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
203744
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
203409
203745
|
message: string;
|
203410
203746
|
id: string;
|
203411
203747
|
url: string;
|
@@ -204102,7 +204438,7 @@ export declare const feedPostContract: {
|
|
204102
204438
|
previewUrl: string;
|
204103
204439
|
imageSetId: string;
|
204104
204440
|
repliedMessage: {
|
204105
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
204441
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
204106
204442
|
message: string;
|
204107
204443
|
id: string;
|
204108
204444
|
url: string;
|
@@ -204429,13 +204765,13 @@ export declare const feedPostContract: {
|
|
204429
204765
|
requestId: string;
|
204430
204766
|
}, {
|
204431
204767
|
data: {
|
204432
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
204768
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
204433
204769
|
message: string;
|
204434
204770
|
id: string;
|
204435
204771
|
url: string;
|
204436
204772
|
direction: "incoming" | "outgoing" | "system";
|
204437
204773
|
children: {
|
204438
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
204774
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
204439
204775
|
message: string;
|
204440
204776
|
id: string;
|
204441
204777
|
url: string;
|
@@ -204928,7 +205264,7 @@ export declare const feedPostContract: {
|
|
204928
205264
|
previewUrl: string;
|
204929
205265
|
imageSetId: string;
|
204930
205266
|
repliedMessage: {
|
204931
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
205267
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
204932
205268
|
message: string;
|
204933
205269
|
id: string;
|
204934
205270
|
url: string;
|
@@ -205625,7 +205961,7 @@ export declare const feedPostContract: {
|
|
205625
205961
|
previewUrl: string;
|
205626
205962
|
imageSetId: string;
|
205627
205963
|
repliedMessage: {
|
205628
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "
|
205964
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
205629
205965
|
message: string;
|
205630
205966
|
id: string;
|
205631
205967
|
url: string;
|