@kl1/contracts 1.1.57 → 1.1.58

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 (55) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +1180 -1075
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +8 -0
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +10 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +230 -0
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +54 -0
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +79 -0
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +1671 -3147
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-intelligence/index.d.ts +87 -0
  16. package/dist/api-contracts/src/cx-intelligence/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
  18. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
  20. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
  22. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
  24. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  25. package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
  26. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  27. package/dist/api-contracts/src/instagram/index.d.ts +83 -0
  28. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/index.d.ts +75 -0
  30. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/line/validation.d.ts +9 -0
  32. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/index.d.ts +83 -0
  34. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  35. package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
  36. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  37. package/dist/api-contracts/src/sms/index.d.ts +16 -0
  38. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/subscription/index.d.ts +6 -6
  40. package/dist/api-contracts/src/subscription/schema.d.ts +6 -6
  41. package/dist/api-contracts/src/telegram/index.d.ts +61 -0
  42. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/viber/index.d.ts +61 -0
  44. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/webchat/index.d.ts +61 -0
  46. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/whatsapp/index.d.ts +71 -0
  48. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  49. package/dist/api-contracts/src/workflow-rule/index.d.ts +18 -0
  50. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  51. package/dist/index.js +34 -32
  52. package/dist/index.js.map +1 -1
  53. package/dist/index.mjs +33 -32
  54. package/dist/index.mjs.map +1 -1
  55. package/package.json +1 -1
@@ -190,6 +190,7 @@ export declare const messengerContract: {
190
190
  }>>;
191
191
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
192
192
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
193
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
193
194
  }, "strip", z.ZodTypeAny, {
194
195
  id: string;
195
196
  name: string;
@@ -215,6 +216,7 @@ export declare const messengerContract: {
215
216
  } | undefined;
216
217
  lineRichMenuId?: string | null | undefined;
217
218
  messengerIntegrationType?: "own" | "business" | undefined;
219
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
218
220
  }, {
219
221
  id: string;
220
222
  name: string;
@@ -240,6 +242,7 @@ export declare const messengerContract: {
240
242
  } | undefined;
241
243
  lineRichMenuId?: string | null | undefined;
242
244
  messengerIntegrationType?: "own" | "business" | undefined;
245
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
243
246
  }>;
244
247
  platformId: z.ZodString;
245
248
  brandName: z.ZodString;
@@ -295,6 +298,7 @@ export declare const messengerContract: {
295
298
  } | undefined;
296
299
  lineRichMenuId?: string | null | undefined;
297
300
  messengerIntegrationType?: "own" | "business" | undefined;
301
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
298
302
  };
299
303
  status: boolean;
300
304
  brandName: string;
@@ -338,6 +342,7 @@ export declare const messengerContract: {
338
342
  } | undefined;
339
343
  lineRichMenuId?: string | null | undefined;
340
344
  messengerIntegrationType?: "own" | "business" | undefined;
345
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
341
346
  };
342
347
  status: boolean;
343
348
  brandName: string;
@@ -386,6 +391,7 @@ export declare const messengerContract: {
386
391
  } | undefined;
387
392
  lineRichMenuId?: string | null | undefined;
388
393
  messengerIntegrationType?: "own" | "business" | undefined;
394
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
389
395
  };
390
396
  status: boolean;
391
397
  brandName: string;
@@ -473,6 +479,7 @@ export declare const messengerContract: {
473
479
  } | undefined;
474
480
  lineRichMenuId?: string | null | undefined;
475
481
  messengerIntegrationType?: "own" | "business" | undefined;
482
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
476
483
  };
477
484
  status: boolean;
478
485
  brandName: string;
@@ -728,6 +735,7 @@ export declare const messengerContract: {
728
735
  } | undefined;
729
736
  lineRichMenuId?: string | null | undefined;
730
737
  messengerIntegrationType?: "own" | "business" | undefined;
738
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
731
739
  };
732
740
  status: boolean;
733
741
  brandName: string;
@@ -854,6 +862,7 @@ export declare const messengerContract: {
854
862
  } | undefined;
855
863
  lineRichMenuId?: string | null | undefined;
856
864
  messengerIntegrationType?: "own" | "business" | undefined;
865
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
857
866
  };
858
867
  status: boolean;
859
868
  brandName: string;
@@ -2903,6 +2912,7 @@ export declare const messengerContract: {
2903
2912
  }>>;
2904
2913
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2905
2914
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2915
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2906
2916
  }, "strip", z.ZodTypeAny, {
2907
2917
  id: string;
2908
2918
  name: string;
@@ -2928,6 +2938,7 @@ export declare const messengerContract: {
2928
2938
  } | undefined;
2929
2939
  lineRichMenuId?: string | null | undefined;
2930
2940
  messengerIntegrationType?: "own" | "business" | undefined;
2941
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2931
2942
  }, {
2932
2943
  id: string;
2933
2944
  name: string;
@@ -2953,6 +2964,7 @@ export declare const messengerContract: {
2953
2964
  } | undefined;
2954
2965
  lineRichMenuId?: string | null | undefined;
2955
2966
  messengerIntegrationType?: "own" | "business" | undefined;
2967
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2956
2968
  }>;
2957
2969
  brandName: z.ZodString;
2958
2970
  platformId: z.ZodString;
@@ -3212,6 +3224,7 @@ export declare const messengerContract: {
3212
3224
  } | undefined;
3213
3225
  lineRichMenuId?: string | null | undefined;
3214
3226
  messengerIntegrationType?: "own" | "business" | undefined;
3227
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3215
3228
  };
3216
3229
  status: boolean;
3217
3230
  createdAt: Date;
@@ -3302,6 +3315,7 @@ export declare const messengerContract: {
3302
3315
  } | undefined;
3303
3316
  lineRichMenuId?: string | null | undefined;
3304
3317
  messengerIntegrationType?: "own" | "business" | undefined;
3318
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3305
3319
  };
3306
3320
  status: boolean;
3307
3321
  createdAt: Date;
@@ -3956,6 +3970,7 @@ export declare const messengerContract: {
3956
3970
  } | undefined;
3957
3971
  lineRichMenuId?: string | null | undefined;
3958
3972
  messengerIntegrationType?: "own" | "business" | undefined;
3973
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3959
3974
  };
3960
3975
  status: boolean;
3961
3976
  createdAt: Date;
@@ -4379,6 +4394,7 @@ export declare const messengerContract: {
4379
4394
  } | undefined;
4380
4395
  lineRichMenuId?: string | null | undefined;
4381
4396
  messengerIntegrationType?: "own" | "business" | undefined;
4397
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
4382
4398
  };
4383
4399
  status: boolean;
4384
4400
  createdAt: Date;
@@ -7546,6 +7562,7 @@ export declare const messengerContract: {
7546
7562
  }>>;
7547
7563
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7548
7564
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7565
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7549
7566
  }, "strip", z.ZodTypeAny, {
7550
7567
  id: string;
7551
7568
  name: string;
@@ -7571,6 +7588,7 @@ export declare const messengerContract: {
7571
7588
  } | undefined;
7572
7589
  lineRichMenuId?: string | null | undefined;
7573
7590
  messengerIntegrationType?: "own" | "business" | undefined;
7591
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7574
7592
  }, {
7575
7593
  id: string;
7576
7594
  name: string;
@@ -7596,6 +7614,7 @@ export declare const messengerContract: {
7596
7614
  } | undefined;
7597
7615
  lineRichMenuId?: string | null | undefined;
7598
7616
  messengerIntegrationType?: "own" | "business" | undefined;
7617
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7599
7618
  }>;
7600
7619
  brandName: z.ZodString;
7601
7620
  platformId: z.ZodString;
@@ -7855,6 +7874,7 @@ export declare const messengerContract: {
7855
7874
  } | undefined;
7856
7875
  lineRichMenuId?: string | null | undefined;
7857
7876
  messengerIntegrationType?: "own" | "business" | undefined;
7877
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7858
7878
  };
7859
7879
  status: boolean;
7860
7880
  createdAt: Date;
@@ -7945,6 +7965,7 @@ export declare const messengerContract: {
7945
7965
  } | undefined;
7946
7966
  lineRichMenuId?: string | null | undefined;
7947
7967
  messengerIntegrationType?: "own" | "business" | undefined;
7968
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7948
7969
  };
7949
7970
  status: boolean;
7950
7971
  createdAt: Date;
@@ -8599,6 +8620,7 @@ export declare const messengerContract: {
8599
8620
  } | undefined;
8600
8621
  lineRichMenuId?: string | null | undefined;
8601
8622
  messengerIntegrationType?: "own" | "business" | undefined;
8623
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
8602
8624
  };
8603
8625
  status: boolean;
8604
8626
  createdAt: Date;
@@ -9022,6 +9044,7 @@ export declare const messengerContract: {
9022
9044
  } | undefined;
9023
9045
  lineRichMenuId?: string | null | undefined;
9024
9046
  messengerIntegrationType?: "own" | "business" | undefined;
9047
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
9025
9048
  };
9026
9049
  status: boolean;
9027
9050
  createdAt: Date;
@@ -11218,6 +11241,7 @@ export declare const messengerContract: {
11218
11241
  } | undefined;
11219
11242
  lineRichMenuId?: string | null | undefined;
11220
11243
  messengerIntegrationType?: "own" | "business" | undefined;
11244
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
11221
11245
  };
11222
11246
  status: boolean;
11223
11247
  createdAt: Date;
@@ -11978,6 +12002,7 @@ export declare const messengerContract: {
11978
12002
  } | undefined;
11979
12003
  lineRichMenuId?: string | null | undefined;
11980
12004
  messengerIntegrationType?: "own" | "business" | undefined;
12005
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
11981
12006
  };
11982
12007
  status: boolean;
11983
12008
  createdAt: Date;
@@ -12739,6 +12764,7 @@ export declare const messengerContract: {
12739
12764
  } | undefined;
12740
12765
  lineRichMenuId?: string | null | undefined;
12741
12766
  messengerIntegrationType?: "own" | "business" | undefined;
12767
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
12742
12768
  };
12743
12769
  status: boolean;
12744
12770
  createdAt: Date;
@@ -13499,6 +13525,7 @@ export declare const messengerContract: {
13499
13525
  } | undefined;
13500
13526
  lineRichMenuId?: string | null | undefined;
13501
13527
  messengerIntegrationType?: "own" | "business" | undefined;
13528
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
13502
13529
  };
13503
13530
  status: boolean;
13504
13531
  createdAt: Date;
@@ -14260,6 +14287,7 @@ export declare const messengerContract: {
14260
14287
  } | undefined;
14261
14288
  lineRichMenuId?: string | null | undefined;
14262
14289
  messengerIntegrationType?: "own" | "business" | undefined;
14290
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
14263
14291
  };
14264
14292
  status: boolean;
14265
14293
  createdAt: Date;
@@ -15020,6 +15048,7 @@ export declare const messengerContract: {
15020
15048
  } | undefined;
15021
15049
  lineRichMenuId?: string | null | undefined;
15022
15050
  messengerIntegrationType?: "own" | "business" | undefined;
15051
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
15023
15052
  };
15024
15053
  status: boolean;
15025
15054
  createdAt: Date;
@@ -15783,6 +15812,7 @@ export declare const messengerContract: {
15783
15812
  } | undefined;
15784
15813
  lineRichMenuId?: string | null | undefined;
15785
15814
  messengerIntegrationType?: "own" | "business" | undefined;
15815
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
15786
15816
  };
15787
15817
  status: boolean;
15788
15818
  createdAt: Date;
@@ -16543,6 +16573,7 @@ export declare const messengerContract: {
16543
16573
  } | undefined;
16544
16574
  lineRichMenuId?: string | null | undefined;
16545
16575
  messengerIntegrationType?: "own" | "business" | undefined;
16576
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
16546
16577
  };
16547
16578
  status: boolean;
16548
16579
  createdAt: Date;
@@ -17307,6 +17338,7 @@ export declare const messengerContract: {
17307
17338
  } | undefined;
17308
17339
  lineRichMenuId?: string | null | undefined;
17309
17340
  messengerIntegrationType?: "own" | "business" | undefined;
17341
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
17310
17342
  };
17311
17343
  status: boolean;
17312
17344
  createdAt: Date;
@@ -18067,6 +18099,7 @@ export declare const messengerContract: {
18067
18099
  } | undefined;
18068
18100
  lineRichMenuId?: string | null | undefined;
18069
18101
  messengerIntegrationType?: "own" | "business" | undefined;
18102
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18070
18103
  };
18071
18104
  status: boolean;
18072
18105
  createdAt: Date;
@@ -18771,6 +18804,7 @@ export declare const messengerContract: {
18771
18804
  }>>;
18772
18805
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18773
18806
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
18807
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
18774
18808
  }, "strip", z.ZodTypeAny, {
18775
18809
  id: string;
18776
18810
  name: string;
@@ -18796,6 +18830,7 @@ export declare const messengerContract: {
18796
18830
  } | undefined;
18797
18831
  lineRichMenuId?: string | null | undefined;
18798
18832
  messengerIntegrationType?: "own" | "business" | undefined;
18833
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18799
18834
  }, {
18800
18835
  id: string;
18801
18836
  name: string;
@@ -18821,6 +18856,7 @@ export declare const messengerContract: {
18821
18856
  } | undefined;
18822
18857
  lineRichMenuId?: string | null | undefined;
18823
18858
  messengerIntegrationType?: "own" | "business" | undefined;
18859
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18824
18860
  }>>;
18825
18861
  platformId: z.ZodOptional<z.ZodString>;
18826
18862
  brandName: z.ZodOptional<z.ZodString>;
@@ -18876,6 +18912,7 @@ export declare const messengerContract: {
18876
18912
  } | undefined;
18877
18913
  lineRichMenuId?: string | null | undefined;
18878
18914
  messengerIntegrationType?: "own" | "business" | undefined;
18915
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18879
18916
  } | undefined;
18880
18917
  platformId?: string | undefined;
18881
18918
  brandName?: string | undefined;
@@ -18919,6 +18956,7 @@ export declare const messengerContract: {
18919
18956
  } | undefined;
18920
18957
  lineRichMenuId?: string | null | undefined;
18921
18958
  messengerIntegrationType?: "own" | "business" | undefined;
18959
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18922
18960
  } | undefined;
18923
18961
  platformId?: string | undefined;
18924
18962
  brandName?: string | undefined;
@@ -18995,6 +19033,7 @@ export declare const messengerContract: {
18995
19033
  }>>;
18996
19034
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18997
19035
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19036
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
18998
19037
  }, "strip", z.ZodTypeAny, {
18999
19038
  id: string;
19000
19039
  name: string;
@@ -19020,6 +19059,7 @@ export declare const messengerContract: {
19020
19059
  } | undefined;
19021
19060
  lineRichMenuId?: string | null | undefined;
19022
19061
  messengerIntegrationType?: "own" | "business" | undefined;
19062
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19023
19063
  }, {
19024
19064
  id: string;
19025
19065
  name: string;
@@ -19045,6 +19085,7 @@ export declare const messengerContract: {
19045
19085
  } | undefined;
19046
19086
  lineRichMenuId?: string | null | undefined;
19047
19087
  messengerIntegrationType?: "own" | "business" | undefined;
19088
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19048
19089
  }>;
19049
19090
  platformId: z.ZodString;
19050
19091
  brandName: z.ZodString;
@@ -19100,6 +19141,7 @@ export declare const messengerContract: {
19100
19141
  } | undefined;
19101
19142
  lineRichMenuId?: string | null | undefined;
19102
19143
  messengerIntegrationType?: "own" | "business" | undefined;
19144
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19103
19145
  };
19104
19146
  status: boolean;
19105
19147
  brandName: string;
@@ -19143,6 +19185,7 @@ export declare const messengerContract: {
19143
19185
  } | undefined;
19144
19186
  lineRichMenuId?: string | null | undefined;
19145
19187
  messengerIntegrationType?: "own" | "business" | undefined;
19188
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19146
19189
  };
19147
19190
  status: boolean;
19148
19191
  brandName: string;
@@ -19188,6 +19231,7 @@ export declare const messengerContract: {
19188
19231
  } | undefined;
19189
19232
  lineRichMenuId?: string | null | undefined;
19190
19233
  messengerIntegrationType?: "own" | "business" | undefined;
19234
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19191
19235
  };
19192
19236
  status: boolean;
19193
19237
  brandName: string;
@@ -19234,6 +19278,7 @@ export declare const messengerContract: {
19234
19278
  } | undefined;
19235
19279
  lineRichMenuId?: string | null | undefined;
19236
19280
  messengerIntegrationType?: "own" | "business" | undefined;
19281
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19237
19282
  };
19238
19283
  status: boolean;
19239
19284
  brandName: string;
@@ -19332,6 +19377,7 @@ export declare const messengerContract: {
19332
19377
  }>>;
19333
19378
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19334
19379
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19380
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19335
19381
  }, "strip", z.ZodTypeAny, {
19336
19382
  id: string;
19337
19383
  name: string;
@@ -19357,6 +19403,7 @@ export declare const messengerContract: {
19357
19403
  } | undefined;
19358
19404
  lineRichMenuId?: string | null | undefined;
19359
19405
  messengerIntegrationType?: "own" | "business" | undefined;
19406
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19360
19407
  }, {
19361
19408
  id: string;
19362
19409
  name: string;
@@ -19382,6 +19429,7 @@ export declare const messengerContract: {
19382
19429
  } | undefined;
19383
19430
  lineRichMenuId?: string | null | undefined;
19384
19431
  messengerIntegrationType?: "own" | "business" | undefined;
19432
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19385
19433
  }>>;
19386
19434
  platformId: z.ZodOptional<z.ZodString>;
19387
19435
  brandName: z.ZodOptional<z.ZodString>;
@@ -19437,6 +19485,7 @@ export declare const messengerContract: {
19437
19485
  } | undefined;
19438
19486
  lineRichMenuId?: string | null | undefined;
19439
19487
  messengerIntegrationType?: "own" | "business" | undefined;
19488
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19440
19489
  } | undefined;
19441
19490
  platformId?: string | undefined;
19442
19491
  brandName?: string | undefined;
@@ -19480,6 +19529,7 @@ export declare const messengerContract: {
19480
19529
  } | undefined;
19481
19530
  lineRichMenuId?: string | null | undefined;
19482
19531
  messengerIntegrationType?: "own" | "business" | undefined;
19532
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19483
19533
  } | undefined;
19484
19534
  platformId?: string | undefined;
19485
19535
  brandName?: string | undefined;
@@ -19556,6 +19606,7 @@ export declare const messengerContract: {
19556
19606
  }>>;
19557
19607
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19558
19608
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19609
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19559
19610
  }, "strip", z.ZodTypeAny, {
19560
19611
  id: string;
19561
19612
  name: string;
@@ -19581,6 +19632,7 @@ export declare const messengerContract: {
19581
19632
  } | undefined;
19582
19633
  lineRichMenuId?: string | null | undefined;
19583
19634
  messengerIntegrationType?: "own" | "business" | undefined;
19635
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19584
19636
  }, {
19585
19637
  id: string;
19586
19638
  name: string;
@@ -19606,6 +19658,7 @@ export declare const messengerContract: {
19606
19658
  } | undefined;
19607
19659
  lineRichMenuId?: string | null | undefined;
19608
19660
  messengerIntegrationType?: "own" | "business" | undefined;
19661
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19609
19662
  }>;
19610
19663
  platformId: z.ZodString;
19611
19664
  brandName: z.ZodString;
@@ -19661,6 +19714,7 @@ export declare const messengerContract: {
19661
19714
  } | undefined;
19662
19715
  lineRichMenuId?: string | null | undefined;
19663
19716
  messengerIntegrationType?: "own" | "business" | undefined;
19717
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19664
19718
  };
19665
19719
  status: boolean;
19666
19720
  brandName: string;
@@ -19704,6 +19758,7 @@ export declare const messengerContract: {
19704
19758
  } | undefined;
19705
19759
  lineRichMenuId?: string | null | undefined;
19706
19760
  messengerIntegrationType?: "own" | "business" | undefined;
19761
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19707
19762
  };
19708
19763
  status: boolean;
19709
19764
  brandName: string;
@@ -19749,6 +19804,7 @@ export declare const messengerContract: {
19749
19804
  } | undefined;
19750
19805
  lineRichMenuId?: string | null | undefined;
19751
19806
  messengerIntegrationType?: "own" | "business" | undefined;
19807
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19752
19808
  };
19753
19809
  status: boolean;
19754
19810
  brandName: string;
@@ -19795,6 +19851,7 @@ export declare const messengerContract: {
19795
19851
  } | undefined;
19796
19852
  lineRichMenuId?: string | null | undefined;
19797
19853
  messengerIntegrationType?: "own" | "business" | undefined;
19854
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19798
19855
  };
19799
19856
  status: boolean;
19800
19857
  brandName: string;
@@ -19905,6 +19962,7 @@ export declare const messengerContract: {
19905
19962
  }>>;
19906
19963
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19907
19964
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19965
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19908
19966
  }, "strip", z.ZodTypeAny, {
19909
19967
  id: string;
19910
19968
  name: string;
@@ -19930,6 +19988,7 @@ export declare const messengerContract: {
19930
19988
  } | undefined;
19931
19989
  lineRichMenuId?: string | null | undefined;
19932
19990
  messengerIntegrationType?: "own" | "business" | undefined;
19991
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19933
19992
  }, {
19934
19993
  id: string;
19935
19994
  name: string;
@@ -19955,6 +20014,7 @@ export declare const messengerContract: {
19955
20014
  } | undefined;
19956
20015
  lineRichMenuId?: string | null | undefined;
19957
20016
  messengerIntegrationType?: "own" | "business" | undefined;
20017
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19958
20018
  }>;
19959
20019
  platformId: z.ZodString;
19960
20020
  brandName: z.ZodString;
@@ -20010,6 +20070,7 @@ export declare const messengerContract: {
20010
20070
  } | undefined;
20011
20071
  lineRichMenuId?: string | null | undefined;
20012
20072
  messengerIntegrationType?: "own" | "business" | undefined;
20073
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20013
20074
  };
20014
20075
  status: boolean;
20015
20076
  brandName: string;
@@ -20053,6 +20114,7 @@ export declare const messengerContract: {
20053
20114
  } | undefined;
20054
20115
  lineRichMenuId?: string | null | undefined;
20055
20116
  messengerIntegrationType?: "own" | "business" | undefined;
20117
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20056
20118
  };
20057
20119
  status: boolean;
20058
20120
  brandName: string;
@@ -20098,6 +20160,7 @@ export declare const messengerContract: {
20098
20160
  } | undefined;
20099
20161
  lineRichMenuId?: string | null | undefined;
20100
20162
  messengerIntegrationType?: "own" | "business" | undefined;
20163
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20101
20164
  };
20102
20165
  status: boolean;
20103
20166
  brandName: string;
@@ -20144,6 +20207,7 @@ export declare const messengerContract: {
20144
20207
  } | undefined;
20145
20208
  lineRichMenuId?: string | null | undefined;
20146
20209
  messengerIntegrationType?: "own" | "business" | undefined;
20210
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20147
20211
  };
20148
20212
  status: boolean;
20149
20213
  brandName: string;
@@ -20254,6 +20318,7 @@ export declare const messengerContract: {
20254
20318
  }>>;
20255
20319
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20256
20320
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20321
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20257
20322
  }, "strip", z.ZodTypeAny, {
20258
20323
  id: string;
20259
20324
  name: string;
@@ -20279,6 +20344,7 @@ export declare const messengerContract: {
20279
20344
  } | undefined;
20280
20345
  lineRichMenuId?: string | null | undefined;
20281
20346
  messengerIntegrationType?: "own" | "business" | undefined;
20347
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20282
20348
  }, {
20283
20349
  id: string;
20284
20350
  name: string;
@@ -20304,6 +20370,7 @@ export declare const messengerContract: {
20304
20370
  } | undefined;
20305
20371
  lineRichMenuId?: string | null | undefined;
20306
20372
  messengerIntegrationType?: "own" | "business" | undefined;
20373
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20307
20374
  }>;
20308
20375
  platformId: z.ZodString;
20309
20376
  brandName: z.ZodString;
@@ -20359,6 +20426,7 @@ export declare const messengerContract: {
20359
20426
  } | undefined;
20360
20427
  lineRichMenuId?: string | null | undefined;
20361
20428
  messengerIntegrationType?: "own" | "business" | undefined;
20429
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20362
20430
  };
20363
20431
  status: boolean;
20364
20432
  brandName: string;
@@ -20402,6 +20470,7 @@ export declare const messengerContract: {
20402
20470
  } | undefined;
20403
20471
  lineRichMenuId?: string | null | undefined;
20404
20472
  messengerIntegrationType?: "own" | "business" | undefined;
20473
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20405
20474
  };
20406
20475
  status: boolean;
20407
20476
  brandName: string;
@@ -20447,6 +20516,7 @@ export declare const messengerContract: {
20447
20516
  } | undefined;
20448
20517
  lineRichMenuId?: string | null | undefined;
20449
20518
  messengerIntegrationType?: "own" | "business" | undefined;
20519
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20450
20520
  };
20451
20521
  status: boolean;
20452
20522
  brandName: string;
@@ -20493,6 +20563,7 @@ export declare const messengerContract: {
20493
20563
  } | undefined;
20494
20564
  lineRichMenuId?: string | null | undefined;
20495
20565
  messengerIntegrationType?: "own" | "business" | undefined;
20566
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20496
20567
  };
20497
20568
  status: boolean;
20498
20569
  brandName: string;
@@ -20590,6 +20661,7 @@ export declare const messengerContract: {
20590
20661
  }>>;
20591
20662
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20592
20663
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20664
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20593
20665
  }, "strip", z.ZodTypeAny, {
20594
20666
  id: string;
20595
20667
  name: string;
@@ -20615,6 +20687,7 @@ export declare const messengerContract: {
20615
20687
  } | undefined;
20616
20688
  lineRichMenuId?: string | null | undefined;
20617
20689
  messengerIntegrationType?: "own" | "business" | undefined;
20690
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20618
20691
  }, {
20619
20692
  id: string;
20620
20693
  name: string;
@@ -20640,6 +20713,7 @@ export declare const messengerContract: {
20640
20713
  } | undefined;
20641
20714
  lineRichMenuId?: string | null | undefined;
20642
20715
  messengerIntegrationType?: "own" | "business" | undefined;
20716
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20643
20717
  }>;
20644
20718
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
20645
20719
  actor: z.ZodOptional<z.ZodObject<{
@@ -20700,6 +20774,7 @@ export declare const messengerContract: {
20700
20774
  } | undefined;
20701
20775
  lineRichMenuId?: string | null | undefined;
20702
20776
  messengerIntegrationType?: "own" | "business" | undefined;
20777
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20703
20778
  };
20704
20779
  status: boolean;
20705
20780
  createdAt: string;
@@ -20747,6 +20822,7 @@ export declare const messengerContract: {
20747
20822
  } | undefined;
20748
20823
  lineRichMenuId?: string | null | undefined;
20749
20824
  messengerIntegrationType?: "own" | "business" | undefined;
20825
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20750
20826
  };
20751
20827
  status: boolean;
20752
20828
  createdAt: string;
@@ -20827,6 +20903,7 @@ export declare const messengerContract: {
20827
20903
  }>>;
20828
20904
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20829
20905
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20906
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20830
20907
  }, "strip", z.ZodTypeAny, {
20831
20908
  id: string;
20832
20909
  name: string;
@@ -20852,6 +20929,7 @@ export declare const messengerContract: {
20852
20929
  } | undefined;
20853
20930
  lineRichMenuId?: string | null | undefined;
20854
20931
  messengerIntegrationType?: "own" | "business" | undefined;
20932
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20855
20933
  }, {
20856
20934
  id: string;
20857
20935
  name: string;
@@ -20877,6 +20955,7 @@ export declare const messengerContract: {
20877
20955
  } | undefined;
20878
20956
  lineRichMenuId?: string | null | undefined;
20879
20957
  messengerIntegrationType?: "own" | "business" | undefined;
20958
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20880
20959
  }>;
20881
20960
  platformId: z.ZodString;
20882
20961
  brandName: z.ZodString;
@@ -20932,6 +21011,7 @@ export declare const messengerContract: {
20932
21011
  } | undefined;
20933
21012
  lineRichMenuId?: string | null | undefined;
20934
21013
  messengerIntegrationType?: "own" | "business" | undefined;
21014
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20935
21015
  };
20936
21016
  status: boolean;
20937
21017
  brandName: string;
@@ -20975,6 +21055,7 @@ export declare const messengerContract: {
20975
21055
  } | undefined;
20976
21056
  lineRichMenuId?: string | null | undefined;
20977
21057
  messengerIntegrationType?: "own" | "business" | undefined;
21058
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20978
21059
  };
20979
21060
  status: boolean;
20980
21061
  brandName: string;
@@ -21020,6 +21101,7 @@ export declare const messengerContract: {
21020
21101
  } | undefined;
21021
21102
  lineRichMenuId?: string | null | undefined;
21022
21103
  messengerIntegrationType?: "own" | "business" | undefined;
21104
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21023
21105
  };
21024
21106
  status: boolean;
21025
21107
  brandName: string;
@@ -21066,6 +21148,7 @@ export declare const messengerContract: {
21066
21148
  } | undefined;
21067
21149
  lineRichMenuId?: string | null | undefined;
21068
21150
  messengerIntegrationType?: "own" | "business" | undefined;
21151
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21069
21152
  };
21070
21153
  status: boolean;
21071
21154
  brandName: string;