@kl1/contracts 1.2.59-uat → 1.2.60-uat

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +791 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/chat/index.d.ts +285 -169
  4. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/schema.d.ts +70 -45
  6. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/validation.d.ts +72 -56
  8. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  9. package/dist/api-contracts/src/contract.d.ts +2366 -639
  10. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  11. package/dist/api-contracts/src/facebook-feed/index.d.ts +59 -43
  12. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  13. package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
  14. package/dist/api-contracts/src/instagram/index.d.ts +49 -33
  15. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  16. package/dist/api-contracts/src/line/index.d.ts +54 -38
  17. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  18. package/dist/api-contracts/src/line/validation.d.ts +5 -5
  19. package/dist/api-contracts/src/messenger/index.d.ts +49 -33
  20. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/sms/index.d.ts +5 -5
  22. package/dist/api-contracts/src/telegram/index.d.ts +49 -33
  23. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  24. package/dist/api-contracts/src/viber/index.d.ts +49 -33
  25. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  26. package/dist/api-contracts/src/webchat/index.d.ts +49 -33
  27. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  28. package/dist/api-contracts/src/whatsapp/index.d.ts +49 -33
  29. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  30. package/dist/api-contracts/src/workflow-rule/index.d.ts +29 -12
  31. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  32. package/dist/entities/src/enums/chat.d.ts +12 -0
  33. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  34. package/dist/index.js +19 -0
  35. package/dist/index.js.map +1 -1
  36. package/dist/index.mjs +19 -0
  37. package/dist/index.mjs.map +1 -1
  38. package/package.json +1 -1
@@ -4620,7 +4620,7 @@ export declare const facebookFeedContract: {
4620
4620
  id: z.ZodOptional<z.ZodString>;
4621
4621
  message: z.ZodOptional<z.ZodString>;
4622
4622
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
4623
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
4623
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
4624
4624
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
4625
4625
  metadata: z.ZodOptional<z.ZodAny>;
4626
4626
  platformId: z.ZodOptional<z.ZodString>;
@@ -4676,7 +4676,7 @@ export declare const facebookFeedContract: {
4676
4676
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
4677
4677
  label: z.ZodOptional<z.ZodString>;
4678
4678
  }, "strip", z.ZodTypeAny, {
4679
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
4679
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
4680
4680
  direction: "incoming" | "outgoing" | "system";
4681
4681
  id?: string | undefined;
4682
4682
  message?: string | undefined;
@@ -4711,7 +4711,7 @@ export declare const facebookFeedContract: {
4711
4711
  editedAt?: string | Date | null | undefined;
4712
4712
  label?: string | undefined;
4713
4713
  }, {
4714
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
4714
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
4715
4715
  direction: "incoming" | "outgoing" | "system";
4716
4716
  id?: string | undefined;
4717
4717
  message?: string | undefined;
@@ -5313,7 +5313,7 @@ export declare const facebookFeedContract: {
5313
5313
  }>>;
5314
5314
  }, "strip", z.ZodTypeAny, {
5315
5315
  message: {
5316
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
5316
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
5317
5317
  direction: "incoming" | "outgoing" | "system";
5318
5318
  id?: string | undefined;
5319
5319
  message?: string | undefined;
@@ -5447,7 +5447,7 @@ export declare const facebookFeedContract: {
5447
5447
  } | undefined;
5448
5448
  }, {
5449
5449
  message: {
5450
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
5450
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
5451
5451
  direction: "incoming" | "outgoing" | "system";
5452
5452
  id?: string | undefined;
5453
5453
  message?: string | undefined;
@@ -5585,7 +5585,7 @@ export declare const facebookFeedContract: {
5585
5585
  200: z.ZodObject<{
5586
5586
  requestId: z.ZodString;
5587
5587
  data: z.ZodObject<{
5588
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
5588
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
5589
5589
  message: z.ZodString;
5590
5590
  id: z.ZodString;
5591
5591
  url: z.ZodString;
@@ -7102,6 +7102,7 @@ export declare const facebookFeedContract: {
7102
7102
  channelId: string;
7103
7103
  socialPlatformId: string;
7104
7104
  }>;
7105
+ csatStatus: z.ZodNullable<z.ZodString>;
7105
7106
  actor: z.ZodObject<{
7106
7107
  id: z.ZodString;
7107
7108
  createdAt: z.ZodDate;
@@ -8944,6 +8945,7 @@ export declare const facebookFeedContract: {
8944
8945
  closedAt: Date;
8945
8946
  lastMessageAt: Date | null;
8946
8947
  isBotRoom: boolean;
8948
+ csatStatus: string | null;
8947
8949
  cxlog: {
8948
8950
  id: string;
8949
8951
  channel: string | null;
@@ -9371,6 +9373,7 @@ export declare const facebookFeedContract: {
9371
9373
  closedAt: Date;
9372
9374
  lastMessageAt: Date | null;
9373
9375
  isBotRoom: boolean;
9376
+ csatStatus: string | null;
9374
9377
  cxlog: {
9375
9378
  id: string;
9376
9379
  channel: string | null;
@@ -9511,7 +9514,7 @@ export declare const facebookFeedContract: {
9511
9514
  deletedAt: z.ZodNullable<z.ZodDate>;
9512
9515
  message: z.ZodString;
9513
9516
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
9514
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
9517
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
9515
9518
  readAt: z.ZodDate;
9516
9519
  metadata: z.ZodAny;
9517
9520
  platformId: z.ZodString;
@@ -10169,7 +10172,7 @@ export declare const facebookFeedContract: {
10169
10172
  };
10170
10173
  }>;
10171
10174
  }, "strip", z.ZodTypeAny, {
10172
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
10175
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
10173
10176
  message: string;
10174
10177
  id: string;
10175
10178
  url: string;
@@ -10331,7 +10334,7 @@ export declare const facebookFeedContract: {
10331
10334
  metadata?: any;
10332
10335
  template?: any;
10333
10336
  }, {
10334
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
10337
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
10335
10338
  message: string;
10336
10339
  id: string;
10337
10340
  url: string;
@@ -10705,7 +10708,7 @@ export declare const facebookFeedContract: {
10705
10708
  deletedAt: z.ZodNullable<z.ZodDate>;
10706
10709
  message: z.ZodString;
10707
10710
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
10708
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
10711
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
10709
10712
  readAt: z.ZodDate;
10710
10713
  metadata: z.ZodAny;
10711
10714
  platformId: z.ZodString;
@@ -11779,6 +11782,7 @@ export declare const facebookFeedContract: {
11779
11782
  channelId: string;
11780
11783
  socialPlatformId: string;
11781
11784
  }>;
11785
+ csatStatus: z.ZodNullable<z.ZodString>;
11782
11786
  actor: z.ZodObject<{
11783
11787
  id: z.ZodString;
11784
11788
  createdAt: z.ZodDate;
@@ -13621,6 +13625,7 @@ export declare const facebookFeedContract: {
13621
13625
  closedAt: Date;
13622
13626
  lastMessageAt: Date | null;
13623
13627
  isBotRoom: boolean;
13628
+ csatStatus: string | null;
13624
13629
  cxlog: {
13625
13630
  id: string;
13626
13631
  channel: string | null;
@@ -14048,6 +14053,7 @@ export declare const facebookFeedContract: {
14048
14053
  closedAt: Date;
14049
14054
  lastMessageAt: Date | null;
14050
14055
  isBotRoom: boolean;
14056
+ csatStatus: string | null;
14051
14057
  cxlog: {
14052
14058
  id: string;
14053
14059
  channel: string | null;
@@ -14191,7 +14197,7 @@ export declare const facebookFeedContract: {
14191
14197
  deletedAt: z.ZodNullable<z.ZodDate>;
14192
14198
  message: z.ZodString;
14193
14199
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
14194
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
14200
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
14195
14201
  readAt: z.ZodDate;
14196
14202
  metadata: z.ZodAny;
14197
14203
  platformId: z.ZodString;
@@ -14849,7 +14855,7 @@ export declare const facebookFeedContract: {
14849
14855
  };
14850
14856
  }>;
14851
14857
  }, "strip", z.ZodTypeAny, {
14852
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14858
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14853
14859
  message: string;
14854
14860
  id: string;
14855
14861
  url: string;
@@ -15011,7 +15017,7 @@ export declare const facebookFeedContract: {
15011
15017
  metadata?: any;
15012
15018
  template?: any;
15013
15019
  }, {
15014
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15020
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15015
15021
  message: string;
15016
15022
  id: string;
15017
15023
  url: string;
@@ -15813,7 +15819,7 @@ export declare const facebookFeedContract: {
15813
15819
  editedMessageid: z.ZodString;
15814
15820
  label: z.ZodOptional<z.ZodString>;
15815
15821
  }, "strip", z.ZodTypeAny, {
15816
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15822
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15817
15823
  message: string;
15818
15824
  id: string;
15819
15825
  url: string;
@@ -16248,6 +16254,7 @@ export declare const facebookFeedContract: {
16248
16254
  closedAt: Date;
16249
16255
  lastMessageAt: Date | null;
16250
16256
  isBotRoom: boolean;
16257
+ csatStatus: string | null;
16251
16258
  cxlog: {
16252
16259
  id: string;
16253
16260
  channel: string | null;
@@ -16366,7 +16373,7 @@ export declare const facebookFeedContract: {
16366
16373
  previewUrl: string;
16367
16374
  imageSetId: string;
16368
16375
  repliedMessage: {
16369
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16376
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16370
16377
  message: string;
16371
16378
  id: string;
16372
16379
  url: string;
@@ -16577,7 +16584,7 @@ export declare const facebookFeedContract: {
16577
16584
  template?: any;
16578
16585
  label?: string | undefined;
16579
16586
  }, {
16580
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16587
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16581
16588
  message: string;
16582
16589
  id: string;
16583
16590
  url: string;
@@ -17012,6 +17019,7 @@ export declare const facebookFeedContract: {
17012
17019
  closedAt: Date;
17013
17020
  lastMessageAt: Date | null;
17014
17021
  isBotRoom: boolean;
17022
+ csatStatus: string | null;
17015
17023
  cxlog: {
17016
17024
  id: string;
17017
17025
  channel: string | null;
@@ -17130,7 +17138,7 @@ export declare const facebookFeedContract: {
17130
17138
  previewUrl: string;
17131
17139
  imageSetId: string;
17132
17140
  repliedMessage: {
17133
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17141
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17134
17142
  message: string;
17135
17143
  id: string;
17136
17144
  url: string;
@@ -17342,7 +17350,7 @@ export declare const facebookFeedContract: {
17342
17350
  label?: string | undefined;
17343
17351
  }>>>;
17344
17352
  }, "strip", z.ZodTypeAny, {
17345
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17353
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17346
17354
  message: string;
17347
17355
  id: string;
17348
17356
  url: string;
@@ -17777,6 +17785,7 @@ export declare const facebookFeedContract: {
17777
17785
  closedAt: Date;
17778
17786
  lastMessageAt: Date | null;
17779
17787
  isBotRoom: boolean;
17788
+ csatStatus: string | null;
17780
17789
  cxlog: {
17781
17790
  id: string;
17782
17791
  channel: string | null;
@@ -17895,7 +17904,7 @@ export declare const facebookFeedContract: {
17895
17904
  previewUrl: string;
17896
17905
  imageSetId: string;
17897
17906
  repliedMessage: {
17898
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17907
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17899
17908
  message: string;
17900
17909
  id: string;
17901
17910
  url: string;
@@ -18106,7 +18115,7 @@ export declare const facebookFeedContract: {
18106
18115
  template?: any;
18107
18116
  metadata?: any;
18108
18117
  fromMessage?: {
18109
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18118
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18110
18119
  message: string;
18111
18120
  id: string;
18112
18121
  url: string;
@@ -18541,6 +18550,7 @@ export declare const facebookFeedContract: {
18541
18550
  closedAt: Date;
18542
18551
  lastMessageAt: Date | null;
18543
18552
  isBotRoom: boolean;
18553
+ csatStatus: string | null;
18544
18554
  cxlog: {
18545
18555
  id: string;
18546
18556
  channel: string | null;
@@ -18659,7 +18669,7 @@ export declare const facebookFeedContract: {
18659
18669
  previewUrl: string;
18660
18670
  imageSetId: string;
18661
18671
  repliedMessage: {
18662
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18672
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18663
18673
  message: string;
18664
18674
  id: string;
18665
18675
  url: string;
@@ -18871,7 +18881,7 @@ export declare const facebookFeedContract: {
18871
18881
  label?: string | undefined;
18872
18882
  } | null | undefined;
18873
18883
  }, {
18874
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18884
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18875
18885
  message: string;
18876
18886
  id: string;
18877
18887
  url: string;
@@ -19306,6 +19316,7 @@ export declare const facebookFeedContract: {
19306
19316
  closedAt: Date;
19307
19317
  lastMessageAt: Date | null;
19308
19318
  isBotRoom: boolean;
19319
+ csatStatus: string | null;
19309
19320
  cxlog: {
19310
19321
  id: string;
19311
19322
  channel: string | null;
@@ -19424,7 +19435,7 @@ export declare const facebookFeedContract: {
19424
19435
  previewUrl: string;
19425
19436
  imageSetId: string;
19426
19437
  repliedMessage: {
19427
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19438
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19428
19439
  message: string;
19429
19440
  id: string;
19430
19441
  url: string;
@@ -19635,7 +19646,7 @@ export declare const facebookFeedContract: {
19635
19646
  template?: any;
19636
19647
  metadata?: any;
19637
19648
  fromMessage?: {
19638
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19649
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19639
19650
  message: string;
19640
19651
  id: string;
19641
19652
  url: string;
@@ -20070,6 +20081,7 @@ export declare const facebookFeedContract: {
20070
20081
  closedAt: Date;
20071
20082
  lastMessageAt: Date | null;
20072
20083
  isBotRoom: boolean;
20084
+ csatStatus: string | null;
20073
20085
  cxlog: {
20074
20086
  id: string;
20075
20087
  channel: string | null;
@@ -20188,7 +20200,7 @@ export declare const facebookFeedContract: {
20188
20200
  previewUrl: string;
20189
20201
  imageSetId: string;
20190
20202
  repliedMessage: {
20191
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20203
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20192
20204
  message: string;
20193
20205
  id: string;
20194
20206
  url: string;
@@ -20402,7 +20414,7 @@ export declare const facebookFeedContract: {
20402
20414
  }>;
20403
20415
  }, "strip", z.ZodTypeAny, {
20404
20416
  data: {
20405
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20417
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20406
20418
  message: string;
20407
20419
  id: string;
20408
20420
  url: string;
@@ -20837,6 +20849,7 @@ export declare const facebookFeedContract: {
20837
20849
  closedAt: Date;
20838
20850
  lastMessageAt: Date | null;
20839
20851
  isBotRoom: boolean;
20852
+ csatStatus: string | null;
20840
20853
  cxlog: {
20841
20854
  id: string;
20842
20855
  channel: string | null;
@@ -20955,7 +20968,7 @@ export declare const facebookFeedContract: {
20955
20968
  previewUrl: string;
20956
20969
  imageSetId: string;
20957
20970
  repliedMessage: {
20958
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20971
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20959
20972
  message: string;
20960
20973
  id: string;
20961
20974
  url: string;
@@ -21166,7 +21179,7 @@ export declare const facebookFeedContract: {
21166
21179
  template?: any;
21167
21180
  metadata?: any;
21168
21181
  fromMessage?: {
21169
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
21182
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
21170
21183
  message: string;
21171
21184
  id: string;
21172
21185
  url: string;
@@ -21601,6 +21614,7 @@ export declare const facebookFeedContract: {
21601
21614
  closedAt: Date;
21602
21615
  lastMessageAt: Date | null;
21603
21616
  isBotRoom: boolean;
21617
+ csatStatus: string | null;
21604
21618
  cxlog: {
21605
21619
  id: string;
21606
21620
  channel: string | null;
@@ -21719,7 +21733,7 @@ export declare const facebookFeedContract: {
21719
21733
  previewUrl: string;
21720
21734
  imageSetId: string;
21721
21735
  repliedMessage: {
21722
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
21736
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
21723
21737
  message: string;
21724
21738
  id: string;
21725
21739
  url: string;
@@ -21934,7 +21948,7 @@ export declare const facebookFeedContract: {
21934
21948
  requestId: string;
21935
21949
  }, {
21936
21950
  data: {
21937
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
21951
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
21938
21952
  message: string;
21939
21953
  id: string;
21940
21954
  url: string;
@@ -22369,6 +22383,7 @@ export declare const facebookFeedContract: {
22369
22383
  closedAt: Date;
22370
22384
  lastMessageAt: Date | null;
22371
22385
  isBotRoom: boolean;
22386
+ csatStatus: string | null;
22372
22387
  cxlog: {
22373
22388
  id: string;
22374
22389
  channel: string | null;
@@ -22487,7 +22502,7 @@ export declare const facebookFeedContract: {
22487
22502
  previewUrl: string;
22488
22503
  imageSetId: string;
22489
22504
  repliedMessage: {
22490
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
22505
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
22491
22506
  message: string;
22492
22507
  id: string;
22493
22508
  url: string;
@@ -22698,7 +22713,7 @@ export declare const facebookFeedContract: {
22698
22713
  template?: any;
22699
22714
  metadata?: any;
22700
22715
  fromMessage?: {
22701
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
22716
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
22702
22717
  message: string;
22703
22718
  id: string;
22704
22719
  url: string;
@@ -23133,6 +23148,7 @@ export declare const facebookFeedContract: {
23133
23148
  closedAt: Date;
23134
23149
  lastMessageAt: Date | null;
23135
23150
  isBotRoom: boolean;
23151
+ csatStatus: string | null;
23136
23152
  cxlog: {
23137
23153
  id: string;
23138
23154
  channel: string | null;
@@ -23251,7 +23267,7 @@ export declare const facebookFeedContract: {
23251
23267
  previewUrl: string;
23252
23268
  imageSetId: string;
23253
23269
  repliedMessage: {
23254
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
23270
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
23255
23271
  message: string;
23256
23272
  id: string;
23257
23273
  url: string;
@@ -23843,7 +23859,7 @@ export declare const facebookFeedContract: {
23843
23859
  id: z.ZodOptional<z.ZodString>;
23844
23860
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23845
23861
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
23846
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
23862
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
23847
23863
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
23848
23864
  metadata: z.ZodOptional<z.ZodAny>;
23849
23865
  platformId: z.ZodOptional<z.ZodString>;
@@ -23895,7 +23911,7 @@ export declare const facebookFeedContract: {
23895
23911
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23896
23912
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23897
23913
  }, "strip", z.ZodTypeAny, {
23898
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
23914
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
23899
23915
  direction: "incoming" | "outgoing" | "system";
23900
23916
  id?: string | undefined;
23901
23917
  message?: string | null | undefined;
@@ -23926,7 +23942,7 @@ export declare const facebookFeedContract: {
23926
23942
  parentMessageId?: string | null | undefined;
23927
23943
  feedPostId?: string | null | undefined;
23928
23944
  }, {
23929
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
23945
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
23930
23946
  direction: "incoming" | "outgoing" | "system";
23931
23947
  id?: string | undefined;
23932
23948
  message?: string | null | undefined;
@@ -23959,7 +23975,7 @@ export declare const facebookFeedContract: {
23959
23975
  }>;
23960
23976
  }, "strip", z.ZodTypeAny, {
23961
23977
  message: {
23962
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
23978
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
23963
23979
  direction: "incoming" | "outgoing" | "system";
23964
23980
  id?: string | undefined;
23965
23981
  message?: string | null | undefined;
@@ -24043,7 +24059,7 @@ export declare const facebookFeedContract: {
24043
24059
  };
24044
24060
  }, {
24045
24061
  message: {
24046
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24062
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24047
24063
  direction: "incoming" | "outgoing" | "system";
24048
24064
  id?: string | undefined;
24049
24065
  message?: string | null | undefined;
@@ -24482,7 +24498,7 @@ export declare const facebookFeedContract: {
24482
24498
  id: z.ZodOptional<z.ZodString>;
24483
24499
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24484
24500
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
24485
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
24501
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
24486
24502
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
24487
24503
  metadata: z.ZodOptional<z.ZodAny>;
24488
24504
  platformId: z.ZodOptional<z.ZodString>;
@@ -24534,7 +24550,7 @@ export declare const facebookFeedContract: {
24534
24550
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24535
24551
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24536
24552
  }, "strip", z.ZodTypeAny, {
24537
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24553
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24538
24554
  direction: "incoming" | "outgoing" | "system";
24539
24555
  id?: string | undefined;
24540
24556
  message?: string | null | undefined;
@@ -24565,7 +24581,7 @@ export declare const facebookFeedContract: {
24565
24581
  parentMessageId?: string | null | undefined;
24566
24582
  feedPostId?: string | null | undefined;
24567
24583
  }, {
24568
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24584
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24569
24585
  direction: "incoming" | "outgoing" | "system";
24570
24586
  id?: string | undefined;
24571
24587
  message?: string | null | undefined;
@@ -24598,7 +24614,7 @@ export declare const facebookFeedContract: {
24598
24614
  }>;
24599
24615
  }, "strip", z.ZodTypeAny, {
24600
24616
  message: {
24601
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24617
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24602
24618
  direction: "incoming" | "outgoing" | "system";
24603
24619
  id?: string | undefined;
24604
24620
  message?: string | null | undefined;
@@ -24682,7 +24698,7 @@ export declare const facebookFeedContract: {
24682
24698
  };
24683
24699
  }, {
24684
24700
  message: {
24685
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24701
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
24686
24702
  direction: "incoming" | "outgoing" | "system";
24687
24703
  id?: string | undefined;
24688
24704
  message?: string | null | undefined;