@kl1/contracts 1.1.37 → 1.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist/api-contracts/src/chat/index.d.ts +7707 -133
  2. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/chat/schema.d.ts +59 -45
  4. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/validation.d.ts +93 -51
  6. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/contract.d.ts +380 -218
  8. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  9. package/dist/api-contracts/src/facebook-feed/index.d.ts +70 -43
  10. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  11. package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
  12. package/dist/api-contracts/src/instagram/index.d.ts +60 -33
  13. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  14. package/dist/api-contracts/src/line/index.d.ts +65 -38
  15. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  16. package/dist/api-contracts/src/line/validation.d.ts +5 -5
  17. package/dist/api-contracts/src/messenger/index.d.ts +60 -33
  18. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/sms/index.d.ts +20 -5
  20. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/telephony-cdr/call-report.schema.d.ts +28 -28
  22. package/dist/api-contracts/src/viber/index.d.ts +60 -33
  23. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  24. package/dist/api-contracts/src/webchat/index.d.ts +60 -33
  25. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  26. package/dist/entities/src/enums/chat.d.ts +1 -0
  27. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  28. package/dist/index.js +25 -8
  29. package/dist/index.js.map +1 -1
  30. package/dist/index.mjs +25 -8
  31. package/dist/index.mjs.map +1 -1
  32. package/package.json +1 -1
  33. package/dist/api-contracts/src/automation-queue/index.d.ts +0 -4212
  34. package/dist/api-contracts/src/automation-queue/index.d.ts.map +0 -1
  35. package/dist/api-contracts/src/automation-queue/schema.d.ts +0 -614
  36. package/dist/api-contracts/src/automation-queue/schema.d.ts.map +0 -1
  37. package/dist/api-contracts/src/automation-queue/validation.d.ts +0 -47
  38. package/dist/api-contracts/src/automation-queue/validation.d.ts.map +0 -1
  39. package/dist/api-contracts/src/hold-label/index.d.ts +0 -315
  40. package/dist/api-contracts/src/hold-label/index.d.ts.map +0 -1
  41. package/dist/api-contracts/src/hold-label/schema.d.ts +0 -24
  42. package/dist/api-contracts/src/hold-label/schema.d.ts.map +0 -1
  43. package/dist/api-contracts/src/hold-label/validation.d.ts +0 -24
  44. package/dist/api-contracts/src/hold-label/validation.d.ts.map +0 -1
  45. package/dist/api-contracts/src/presence-status/index.d.ts +0 -556
  46. package/dist/api-contracts/src/presence-status/index.d.ts.map +0 -1
  47. package/dist/api-contracts/src/presence-status/schema.d.ts +0 -31
  48. package/dist/api-contracts/src/presence-status/schema.d.ts.map +0 -1
  49. package/dist/api-contracts/src/presence-status/validation.d.ts +0 -28
  50. package/dist/api-contracts/src/presence-status/validation.d.ts.map +0 -1
  51. package/dist/api-contracts/src/subscription/index.d.ts +0 -1900
  52. package/dist/api-contracts/src/subscription/index.d.ts.map +0 -1
  53. package/dist/api-contracts/src/subscription/schema.d.ts +0 -2059
  54. package/dist/api-contracts/src/subscription/schema.d.ts.map +0 -1
  55. package/dist/api-contracts/src/subscription/validation.d.ts +0 -37
  56. package/dist/api-contracts/src/subscription/validation.d.ts.map +0 -1
@@ -3308,7 +3308,7 @@ export declare const facebookFeedContract: {
3308
3308
  id: z.ZodOptional<z.ZodString>;
3309
3309
  message: z.ZodOptional<z.ZodString>;
3310
3310
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
3311
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
3311
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
3312
3312
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
3313
3313
  metadata: z.ZodOptional<z.ZodAny>;
3314
3314
  platformId: z.ZodOptional<z.ZodString>;
@@ -3359,8 +3359,11 @@ export declare const facebookFeedContract: {
3359
3359
  }>>;
3360
3360
  parentMessageId: z.ZodOptional<z.ZodString>;
3361
3361
  feedPostId: z.ZodOptional<z.ZodString>;
3362
+ editedMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3363
+ isEdited: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3364
+ editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
3362
3365
  }, "strip", z.ZodTypeAny, {
3363
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
3366
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
3364
3367
  direction: "incoming" | "outgoing" | "system";
3365
3368
  id?: string | undefined;
3366
3369
  message?: string | undefined;
@@ -3390,8 +3393,11 @@ export declare const facebookFeedContract: {
3390
3393
  } | undefined;
3391
3394
  parentMessageId?: string | undefined;
3392
3395
  feedPostId?: string | undefined;
3396
+ editedMessageId?: string | null | undefined;
3397
+ isEdited?: boolean | null | undefined;
3398
+ editedAt?: string | Date | null | undefined;
3393
3399
  }, {
3394
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
3400
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
3395
3401
  direction: "incoming" | "outgoing" | "system";
3396
3402
  id?: string | undefined;
3397
3403
  message?: string | undefined;
@@ -3421,6 +3427,9 @@ export declare const facebookFeedContract: {
3421
3427
  } | undefined;
3422
3428
  parentMessageId?: string | undefined;
3423
3429
  feedPostId?: string | undefined;
3430
+ editedMessageId?: string | null | undefined;
3431
+ isEdited?: boolean | null | undefined;
3432
+ editedAt?: string | Date | null | undefined;
3424
3433
  }>;
3425
3434
  room: z.ZodObject<{
3426
3435
  id: z.ZodString;
@@ -3841,7 +3850,7 @@ export declare const facebookFeedContract: {
3841
3850
  }>>;
3842
3851
  }, "strip", z.ZodTypeAny, {
3843
3852
  message: {
3844
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
3853
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
3845
3854
  direction: "incoming" | "outgoing" | "system";
3846
3855
  id?: string | undefined;
3847
3856
  message?: string | undefined;
@@ -3871,6 +3880,9 @@ export declare const facebookFeedContract: {
3871
3880
  } | undefined;
3872
3881
  parentMessageId?: string | undefined;
3873
3882
  feedPostId?: string | undefined;
3883
+ editedMessageId?: string | null | undefined;
3884
+ isEdited?: boolean | null | undefined;
3885
+ editedAt?: string | Date | null | undefined;
3874
3886
  };
3875
3887
  room: {
3876
3888
  id: string;
@@ -3953,7 +3965,7 @@ export declare const facebookFeedContract: {
3953
3965
  } | undefined;
3954
3966
  }, {
3955
3967
  message: {
3956
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
3968
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
3957
3969
  direction: "incoming" | "outgoing" | "system";
3958
3970
  id?: string | undefined;
3959
3971
  message?: string | undefined;
@@ -3983,6 +3995,9 @@ export declare const facebookFeedContract: {
3983
3995
  } | undefined;
3984
3996
  parentMessageId?: string | undefined;
3985
3997
  feedPostId?: string | undefined;
3998
+ editedMessageId?: string | null | undefined;
3999
+ isEdited?: boolean | null | undefined;
4000
+ editedAt?: string | Date | null | undefined;
3986
4001
  };
3987
4002
  room: {
3988
4003
  id: string;
@@ -4069,7 +4084,7 @@ export declare const facebookFeedContract: {
4069
4084
  200: z.ZodObject<{
4070
4085
  requestId: z.ZodString;
4071
4086
  data: z.ZodObject<{
4072
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
4087
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
4073
4088
  message: z.ZodString;
4074
4089
  id: z.ZodString;
4075
4090
  url: z.ZodString;
@@ -7543,7 +7558,7 @@ export declare const facebookFeedContract: {
7543
7558
  deletedAt: z.ZodNullable<z.ZodDate>;
7544
7559
  message: z.ZodString;
7545
7560
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
7546
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
7561
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
7547
7562
  readAt: z.ZodDate;
7548
7563
  metadata: z.ZodAny;
7549
7564
  platformId: z.ZodString;
@@ -8201,7 +8216,7 @@ export declare const facebookFeedContract: {
8201
8216
  };
8202
8217
  }>;
8203
8218
  }, "strip", z.ZodTypeAny, {
8204
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
8219
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
8205
8220
  message: string;
8206
8221
  id: string;
8207
8222
  url: string;
@@ -8363,7 +8378,7 @@ export declare const facebookFeedContract: {
8363
8378
  metadata?: any;
8364
8379
  template?: any;
8365
8380
  }, {
8366
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
8381
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
8367
8382
  message: string;
8368
8383
  id: string;
8369
8384
  url: string;
@@ -8729,6 +8744,7 @@ export declare const facebookFeedContract: {
8729
8744
  telephonySignature: string | null;
8730
8745
  };
8731
8746
  }>;
8747
+ editedMessageid: z.ZodString;
8732
8748
  fromMessage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8733
8749
  id: z.ZodString;
8734
8750
  createdAt: z.ZodDate;
@@ -8736,7 +8752,7 @@ export declare const facebookFeedContract: {
8736
8752
  deletedAt: z.ZodNullable<z.ZodDate>;
8737
8753
  message: z.ZodString;
8738
8754
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
8739
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
8755
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
8740
8756
  readAt: z.ZodDate;
8741
8757
  metadata: z.ZodAny;
8742
8758
  platformId: z.ZodString;
@@ -11771,7 +11787,7 @@ export declare const facebookFeedContract: {
11771
11787
  deletedAt: z.ZodNullable<z.ZodDate>;
11772
11788
  message: z.ZodString;
11773
11789
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
11774
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
11790
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
11775
11791
  readAt: z.ZodDate;
11776
11792
  metadata: z.ZodAny;
11777
11793
  platformId: z.ZodString;
@@ -12429,7 +12445,7 @@ export declare const facebookFeedContract: {
12429
12445
  };
12430
12446
  }>;
12431
12447
  }, "strip", z.ZodTypeAny, {
12432
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
12448
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
12433
12449
  message: string;
12434
12450
  id: string;
12435
12451
  url: string;
@@ -12591,7 +12607,7 @@ export declare const facebookFeedContract: {
12591
12607
  metadata?: any;
12592
12608
  template?: any;
12593
12609
  }, {
12594
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
12610
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
12595
12611
  message: string;
12596
12612
  id: string;
12597
12613
  url: string;
@@ -13390,8 +13406,9 @@ export declare const facebookFeedContract: {
13390
13406
  deletedAt: Date | null;
13391
13407
  isActive: boolean;
13392
13408
  }>;
13409
+ editedMessageid: z.ZodString;
13393
13410
  }, "strip", z.ZodTypeAny, {
13394
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
13411
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
13395
13412
  message: string;
13396
13413
  id: string;
13397
13414
  url: string;
@@ -13889,7 +13906,7 @@ export declare const facebookFeedContract: {
13889
13906
  previewUrl: string;
13890
13907
  imageSetId: string;
13891
13908
  repliedMessage: {
13892
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
13909
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
13893
13910
  message: string;
13894
13911
  id: string;
13895
13912
  url: string;
@@ -14095,10 +14112,11 @@ export declare const facebookFeedContract: {
14095
14112
  telephonySignature: string | null;
14096
14113
  };
14097
14114
  };
14115
+ editedMessageid: string;
14098
14116
  metadata?: any;
14099
14117
  template?: any;
14100
14118
  }, {
14101
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
14119
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
14102
14120
  message: string;
14103
14121
  id: string;
14104
14122
  url: string;
@@ -14596,7 +14614,7 @@ export declare const facebookFeedContract: {
14596
14614
  previewUrl: string;
14597
14615
  imageSetId: string;
14598
14616
  repliedMessage: {
14599
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
14617
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
14600
14618
  message: string;
14601
14619
  id: string;
14602
14620
  url: string;
@@ -14802,11 +14820,12 @@ export declare const facebookFeedContract: {
14802
14820
  telephonySignature: string | null;
14803
14821
  };
14804
14822
  };
14823
+ editedMessageid: string;
14805
14824
  metadata?: any;
14806
14825
  template?: any;
14807
14826
  }>>>;
14808
14827
  }, "strip", z.ZodTypeAny, {
14809
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
14828
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
14810
14829
  message: string;
14811
14830
  id: string;
14812
14831
  url: string;
@@ -15304,7 +15323,7 @@ export declare const facebookFeedContract: {
15304
15323
  previewUrl: string;
15305
15324
  imageSetId: string;
15306
15325
  repliedMessage: {
15307
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
15326
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
15308
15327
  message: string;
15309
15328
  id: string;
15310
15329
  url: string;
@@ -15510,10 +15529,11 @@ export declare const facebookFeedContract: {
15510
15529
  telephonySignature: string | null;
15511
15530
  };
15512
15531
  };
15532
+ editedMessageid: string;
15513
15533
  template?: any;
15514
15534
  metadata?: any;
15515
15535
  fromMessage?: {
15516
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
15536
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
15517
15537
  message: string;
15518
15538
  id: string;
15519
15539
  url: string;
@@ -16011,7 +16031,7 @@ export declare const facebookFeedContract: {
16011
16031
  previewUrl: string;
16012
16032
  imageSetId: string;
16013
16033
  repliedMessage: {
16014
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
16034
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16015
16035
  message: string;
16016
16036
  id: string;
16017
16037
  url: string;
@@ -16217,11 +16237,12 @@ export declare const facebookFeedContract: {
16217
16237
  telephonySignature: string | null;
16218
16238
  };
16219
16239
  };
16240
+ editedMessageid: string;
16220
16241
  metadata?: any;
16221
16242
  template?: any;
16222
16243
  } | null | undefined;
16223
16244
  }, {
16224
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
16245
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16225
16246
  message: string;
16226
16247
  id: string;
16227
16248
  url: string;
@@ -16719,7 +16740,7 @@ export declare const facebookFeedContract: {
16719
16740
  previewUrl: string;
16720
16741
  imageSetId: string;
16721
16742
  repliedMessage: {
16722
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
16743
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16723
16744
  message: string;
16724
16745
  id: string;
16725
16746
  url: string;
@@ -16925,10 +16946,11 @@ export declare const facebookFeedContract: {
16925
16946
  telephonySignature: string | null;
16926
16947
  };
16927
16948
  };
16949
+ editedMessageid: string;
16928
16950
  template?: any;
16929
16951
  metadata?: any;
16930
16952
  fromMessage?: {
16931
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
16953
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16932
16954
  message: string;
16933
16955
  id: string;
16934
16956
  url: string;
@@ -17426,7 +17448,7 @@ export declare const facebookFeedContract: {
17426
17448
  previewUrl: string;
17427
17449
  imageSetId: string;
17428
17450
  repliedMessage: {
17429
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
17451
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
17430
17452
  message: string;
17431
17453
  id: string;
17432
17454
  url: string;
@@ -17632,13 +17654,14 @@ export declare const facebookFeedContract: {
17632
17654
  telephonySignature: string | null;
17633
17655
  };
17634
17656
  };
17657
+ editedMessageid: string;
17635
17658
  metadata?: any;
17636
17659
  template?: any;
17637
17660
  } | null | undefined;
17638
17661
  }>;
17639
17662
  }, "strip", z.ZodTypeAny, {
17640
17663
  data: {
17641
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
17664
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
17642
17665
  message: string;
17643
17666
  id: string;
17644
17667
  url: string;
@@ -18136,7 +18159,7 @@ export declare const facebookFeedContract: {
18136
18159
  previewUrl: string;
18137
18160
  imageSetId: string;
18138
18161
  repliedMessage: {
18139
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
18162
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
18140
18163
  message: string;
18141
18164
  id: string;
18142
18165
  url: string;
@@ -18342,10 +18365,11 @@ export declare const facebookFeedContract: {
18342
18365
  telephonySignature: string | null;
18343
18366
  };
18344
18367
  };
18368
+ editedMessageid: string;
18345
18369
  template?: any;
18346
18370
  metadata?: any;
18347
18371
  fromMessage?: {
18348
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
18372
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
18349
18373
  message: string;
18350
18374
  id: string;
18351
18375
  url: string;
@@ -18843,7 +18867,7 @@ export declare const facebookFeedContract: {
18843
18867
  previewUrl: string;
18844
18868
  imageSetId: string;
18845
18869
  repliedMessage: {
18846
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
18870
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
18847
18871
  message: string;
18848
18872
  id: string;
18849
18873
  url: string;
@@ -19049,6 +19073,7 @@ export declare const facebookFeedContract: {
19049
19073
  telephonySignature: string | null;
19050
19074
  };
19051
19075
  };
19076
+ editedMessageid: string;
19052
19077
  metadata?: any;
19053
19078
  template?: any;
19054
19079
  } | null | undefined;
@@ -19056,7 +19081,7 @@ export declare const facebookFeedContract: {
19056
19081
  requestId: string;
19057
19082
  }, {
19058
19083
  data: {
19059
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
19084
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
19060
19085
  message: string;
19061
19086
  id: string;
19062
19087
  url: string;
@@ -19554,7 +19579,7 @@ export declare const facebookFeedContract: {
19554
19579
  previewUrl: string;
19555
19580
  imageSetId: string;
19556
19581
  repliedMessage: {
19557
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
19582
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
19558
19583
  message: string;
19559
19584
  id: string;
19560
19585
  url: string;
@@ -19760,10 +19785,11 @@ export declare const facebookFeedContract: {
19760
19785
  telephonySignature: string | null;
19761
19786
  };
19762
19787
  };
19788
+ editedMessageid: string;
19763
19789
  template?: any;
19764
19790
  metadata?: any;
19765
19791
  fromMessage?: {
19766
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
19792
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
19767
19793
  message: string;
19768
19794
  id: string;
19769
19795
  url: string;
@@ -20261,7 +20287,7 @@ export declare const facebookFeedContract: {
20261
20287
  previewUrl: string;
20262
20288
  imageSetId: string;
20263
20289
  repliedMessage: {
20264
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
20290
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
20265
20291
  message: string;
20266
20292
  id: string;
20267
20293
  url: string;
@@ -20467,6 +20493,7 @@ export declare const facebookFeedContract: {
20467
20493
  telephonySignature: string | null;
20468
20494
  };
20469
20495
  };
20496
+ editedMessageid: string;
20470
20497
  metadata?: any;
20471
20498
  template?: any;
20472
20499
  } | null | undefined;
@@ -20706,7 +20733,7 @@ export declare const facebookFeedContract: {
20706
20733
  id: z.ZodOptional<z.ZodString>;
20707
20734
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20708
20735
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
20709
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
20736
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
20710
20737
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
20711
20738
  metadata: z.ZodOptional<z.ZodAny>;
20712
20739
  platformId: z.ZodOptional<z.ZodString>;
@@ -20758,7 +20785,7 @@ export declare const facebookFeedContract: {
20758
20785
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20759
20786
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20760
20787
  }, "strip", z.ZodTypeAny, {
20761
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
20788
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
20762
20789
  direction: "incoming" | "outgoing" | "system";
20763
20790
  id?: string | undefined;
20764
20791
  message?: string | null | undefined;
@@ -20789,7 +20816,7 @@ export declare const facebookFeedContract: {
20789
20816
  parentMessageId?: string | null | undefined;
20790
20817
  feedPostId?: string | null | undefined;
20791
20818
  }, {
20792
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
20819
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
20793
20820
  direction: "incoming" | "outgoing" | "system";
20794
20821
  id?: string | undefined;
20795
20822
  message?: string | null | undefined;
@@ -20822,7 +20849,7 @@ export declare const facebookFeedContract: {
20822
20849
  }>;
20823
20850
  }, "strip", z.ZodTypeAny, {
20824
20851
  message: {
20825
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
20852
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
20826
20853
  direction: "incoming" | "outgoing" | "system";
20827
20854
  id?: string | undefined;
20828
20855
  message?: string | null | undefined;
@@ -20889,7 +20916,7 @@ export declare const facebookFeedContract: {
20889
20916
  };
20890
20917
  }, {
20891
20918
  message: {
20892
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
20919
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
20893
20920
  direction: "incoming" | "outgoing" | "system";
20894
20921
  id?: string | undefined;
20895
20922
  message?: string | null | undefined;
@@ -21166,7 +21193,7 @@ export declare const facebookFeedContract: {
21166
21193
  id: z.ZodOptional<z.ZodString>;
21167
21194
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21168
21195
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
21169
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
21196
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
21170
21197
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
21171
21198
  metadata: z.ZodOptional<z.ZodAny>;
21172
21199
  platformId: z.ZodOptional<z.ZodString>;
@@ -21218,7 +21245,7 @@ export declare const facebookFeedContract: {
21218
21245
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21219
21246
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21220
21247
  }, "strip", z.ZodTypeAny, {
21221
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
21248
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
21222
21249
  direction: "incoming" | "outgoing" | "system";
21223
21250
  id?: string | undefined;
21224
21251
  message?: string | null | undefined;
@@ -21249,7 +21276,7 @@ export declare const facebookFeedContract: {
21249
21276
  parentMessageId?: string | null | undefined;
21250
21277
  feedPostId?: string | null | undefined;
21251
21278
  }, {
21252
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
21279
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
21253
21280
  direction: "incoming" | "outgoing" | "system";
21254
21281
  id?: string | undefined;
21255
21282
  message?: string | null | undefined;
@@ -21282,7 +21309,7 @@ export declare const facebookFeedContract: {
21282
21309
  }>;
21283
21310
  }, "strip", z.ZodTypeAny, {
21284
21311
  message: {
21285
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
21312
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
21286
21313
  direction: "incoming" | "outgoing" | "system";
21287
21314
  id?: string | undefined;
21288
21315
  message?: string | null | undefined;
@@ -21349,7 +21376,7 @@ export declare const facebookFeedContract: {
21349
21376
  };
21350
21377
  }, {
21351
21378
  message: {
21352
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
21379
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
21353
21380
  direction: "incoming" | "outgoing" | "system";
21354
21381
  id?: string | undefined;
21355
21382
  message?: string | null | undefined;