@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
@@ -186,6 +186,7 @@ export declare const instagramContract: {
186
186
  }>>;
187
187
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
188
188
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
189
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
189
190
  }, "strip", z.ZodTypeAny, {
190
191
  id: string;
191
192
  name: string;
@@ -211,6 +212,7 @@ export declare const instagramContract: {
211
212
  } | undefined;
212
213
  lineRichMenuId?: string | null | undefined;
213
214
  messengerIntegrationType?: "own" | "business" | undefined;
215
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
214
216
  }, {
215
217
  id: string;
216
218
  name: string;
@@ -236,6 +238,7 @@ export declare const instagramContract: {
236
238
  } | undefined;
237
239
  lineRichMenuId?: string | null | undefined;
238
240
  messengerIntegrationType?: "own" | "business" | undefined;
241
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
239
242
  }>;
240
243
  platformId: z.ZodString;
241
244
  brandName: z.ZodString;
@@ -291,6 +294,7 @@ export declare const instagramContract: {
291
294
  } | undefined;
292
295
  lineRichMenuId?: string | null | undefined;
293
296
  messengerIntegrationType?: "own" | "business" | undefined;
297
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
294
298
  };
295
299
  status: boolean;
296
300
  brandName: string;
@@ -334,6 +338,7 @@ export declare const instagramContract: {
334
338
  } | undefined;
335
339
  lineRichMenuId?: string | null | undefined;
336
340
  messengerIntegrationType?: "own" | "business" | undefined;
341
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
337
342
  };
338
343
  status: boolean;
339
344
  brandName: string;
@@ -382,6 +387,7 @@ export declare const instagramContract: {
382
387
  } | undefined;
383
388
  lineRichMenuId?: string | null | undefined;
384
389
  messengerIntegrationType?: "own" | "business" | undefined;
390
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
385
391
  };
386
392
  status: boolean;
387
393
  brandName: string;
@@ -469,6 +475,7 @@ export declare const instagramContract: {
469
475
  } | undefined;
470
476
  lineRichMenuId?: string | null | undefined;
471
477
  messengerIntegrationType?: "own" | "business" | undefined;
478
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
472
479
  };
473
480
  status: boolean;
474
481
  brandName: string;
@@ -724,6 +731,7 @@ export declare const instagramContract: {
724
731
  } | undefined;
725
732
  lineRichMenuId?: string | null | undefined;
726
733
  messengerIntegrationType?: "own" | "business" | undefined;
734
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
727
735
  };
728
736
  status: boolean;
729
737
  brandName: string;
@@ -850,6 +858,7 @@ export declare const instagramContract: {
850
858
  } | undefined;
851
859
  lineRichMenuId?: string | null | undefined;
852
860
  messengerIntegrationType?: "own" | "business" | undefined;
861
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
853
862
  };
854
863
  status: boolean;
855
864
  brandName: string;
@@ -2899,6 +2908,7 @@ export declare const instagramContract: {
2899
2908
  }>>;
2900
2909
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2901
2910
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2911
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2902
2912
  }, "strip", z.ZodTypeAny, {
2903
2913
  id: string;
2904
2914
  name: string;
@@ -2924,6 +2934,7 @@ export declare const instagramContract: {
2924
2934
  } | undefined;
2925
2935
  lineRichMenuId?: string | null | undefined;
2926
2936
  messengerIntegrationType?: "own" | "business" | undefined;
2937
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2927
2938
  }, {
2928
2939
  id: string;
2929
2940
  name: string;
@@ -2949,6 +2960,7 @@ export declare const instagramContract: {
2949
2960
  } | undefined;
2950
2961
  lineRichMenuId?: string | null | undefined;
2951
2962
  messengerIntegrationType?: "own" | "business" | undefined;
2963
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2952
2964
  }>;
2953
2965
  brandName: z.ZodString;
2954
2966
  platformId: z.ZodString;
@@ -3208,6 +3220,7 @@ export declare const instagramContract: {
3208
3220
  } | undefined;
3209
3221
  lineRichMenuId?: string | null | undefined;
3210
3222
  messengerIntegrationType?: "own" | "business" | undefined;
3223
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3211
3224
  };
3212
3225
  status: boolean;
3213
3226
  createdAt: Date;
@@ -3298,6 +3311,7 @@ export declare const instagramContract: {
3298
3311
  } | undefined;
3299
3312
  lineRichMenuId?: string | null | undefined;
3300
3313
  messengerIntegrationType?: "own" | "business" | undefined;
3314
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3301
3315
  };
3302
3316
  status: boolean;
3303
3317
  createdAt: Date;
@@ -3952,6 +3966,7 @@ export declare const instagramContract: {
3952
3966
  } | undefined;
3953
3967
  lineRichMenuId?: string | null | undefined;
3954
3968
  messengerIntegrationType?: "own" | "business" | undefined;
3969
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3955
3970
  };
3956
3971
  status: boolean;
3957
3972
  createdAt: Date;
@@ -4375,6 +4390,7 @@ export declare const instagramContract: {
4375
4390
  } | undefined;
4376
4391
  lineRichMenuId?: string | null | undefined;
4377
4392
  messengerIntegrationType?: "own" | "business" | undefined;
4393
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
4378
4394
  };
4379
4395
  status: boolean;
4380
4396
  createdAt: Date;
@@ -7542,6 +7558,7 @@ export declare const instagramContract: {
7542
7558
  }>>;
7543
7559
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7544
7560
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7561
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7545
7562
  }, "strip", z.ZodTypeAny, {
7546
7563
  id: string;
7547
7564
  name: string;
@@ -7567,6 +7584,7 @@ export declare const instagramContract: {
7567
7584
  } | undefined;
7568
7585
  lineRichMenuId?: string | null | undefined;
7569
7586
  messengerIntegrationType?: "own" | "business" | undefined;
7587
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7570
7588
  }, {
7571
7589
  id: string;
7572
7590
  name: string;
@@ -7592,6 +7610,7 @@ export declare const instagramContract: {
7592
7610
  } | undefined;
7593
7611
  lineRichMenuId?: string | null | undefined;
7594
7612
  messengerIntegrationType?: "own" | "business" | undefined;
7613
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7595
7614
  }>;
7596
7615
  brandName: z.ZodString;
7597
7616
  platformId: z.ZodString;
@@ -7851,6 +7870,7 @@ export declare const instagramContract: {
7851
7870
  } | undefined;
7852
7871
  lineRichMenuId?: string | null | undefined;
7853
7872
  messengerIntegrationType?: "own" | "business" | undefined;
7873
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7854
7874
  };
7855
7875
  status: boolean;
7856
7876
  createdAt: Date;
@@ -7941,6 +7961,7 @@ export declare const instagramContract: {
7941
7961
  } | undefined;
7942
7962
  lineRichMenuId?: string | null | undefined;
7943
7963
  messengerIntegrationType?: "own" | "business" | undefined;
7964
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7944
7965
  };
7945
7966
  status: boolean;
7946
7967
  createdAt: Date;
@@ -8595,6 +8616,7 @@ export declare const instagramContract: {
8595
8616
  } | undefined;
8596
8617
  lineRichMenuId?: string | null | undefined;
8597
8618
  messengerIntegrationType?: "own" | "business" | undefined;
8619
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
8598
8620
  };
8599
8621
  status: boolean;
8600
8622
  createdAt: Date;
@@ -9018,6 +9040,7 @@ export declare const instagramContract: {
9018
9040
  } | undefined;
9019
9041
  lineRichMenuId?: string | null | undefined;
9020
9042
  messengerIntegrationType?: "own" | "business" | undefined;
9043
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
9021
9044
  };
9022
9045
  status: boolean;
9023
9046
  createdAt: Date;
@@ -11214,6 +11237,7 @@ export declare const instagramContract: {
11214
11237
  } | undefined;
11215
11238
  lineRichMenuId?: string | null | undefined;
11216
11239
  messengerIntegrationType?: "own" | "business" | undefined;
11240
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
11217
11241
  };
11218
11242
  status: boolean;
11219
11243
  createdAt: Date;
@@ -11974,6 +11998,7 @@ export declare const instagramContract: {
11974
11998
  } | undefined;
11975
11999
  lineRichMenuId?: string | null | undefined;
11976
12000
  messengerIntegrationType?: "own" | "business" | undefined;
12001
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
11977
12002
  };
11978
12003
  status: boolean;
11979
12004
  createdAt: Date;
@@ -12735,6 +12760,7 @@ export declare const instagramContract: {
12735
12760
  } | undefined;
12736
12761
  lineRichMenuId?: string | null | undefined;
12737
12762
  messengerIntegrationType?: "own" | "business" | undefined;
12763
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
12738
12764
  };
12739
12765
  status: boolean;
12740
12766
  createdAt: Date;
@@ -13495,6 +13521,7 @@ export declare const instagramContract: {
13495
13521
  } | undefined;
13496
13522
  lineRichMenuId?: string | null | undefined;
13497
13523
  messengerIntegrationType?: "own" | "business" | undefined;
13524
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
13498
13525
  };
13499
13526
  status: boolean;
13500
13527
  createdAt: Date;
@@ -14256,6 +14283,7 @@ export declare const instagramContract: {
14256
14283
  } | undefined;
14257
14284
  lineRichMenuId?: string | null | undefined;
14258
14285
  messengerIntegrationType?: "own" | "business" | undefined;
14286
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
14259
14287
  };
14260
14288
  status: boolean;
14261
14289
  createdAt: Date;
@@ -15016,6 +15044,7 @@ export declare const instagramContract: {
15016
15044
  } | undefined;
15017
15045
  lineRichMenuId?: string | null | undefined;
15018
15046
  messengerIntegrationType?: "own" | "business" | undefined;
15047
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
15019
15048
  };
15020
15049
  status: boolean;
15021
15050
  createdAt: Date;
@@ -15779,6 +15808,7 @@ export declare const instagramContract: {
15779
15808
  } | undefined;
15780
15809
  lineRichMenuId?: string | null | undefined;
15781
15810
  messengerIntegrationType?: "own" | "business" | undefined;
15811
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
15782
15812
  };
15783
15813
  status: boolean;
15784
15814
  createdAt: Date;
@@ -16539,6 +16569,7 @@ export declare const instagramContract: {
16539
16569
  } | undefined;
16540
16570
  lineRichMenuId?: string | null | undefined;
16541
16571
  messengerIntegrationType?: "own" | "business" | undefined;
16572
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
16542
16573
  };
16543
16574
  status: boolean;
16544
16575
  createdAt: Date;
@@ -17303,6 +17334,7 @@ export declare const instagramContract: {
17303
17334
  } | undefined;
17304
17335
  lineRichMenuId?: string | null | undefined;
17305
17336
  messengerIntegrationType?: "own" | "business" | undefined;
17337
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
17306
17338
  };
17307
17339
  status: boolean;
17308
17340
  createdAt: Date;
@@ -18063,6 +18095,7 @@ export declare const instagramContract: {
18063
18095
  } | undefined;
18064
18096
  lineRichMenuId?: string | null | undefined;
18065
18097
  messengerIntegrationType?: "own" | "business" | undefined;
18098
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18066
18099
  };
18067
18100
  status: boolean;
18068
18101
  createdAt: Date;
@@ -18757,6 +18790,7 @@ export declare const instagramContract: {
18757
18790
  }>>;
18758
18791
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18759
18792
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
18793
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
18760
18794
  }, "strip", z.ZodTypeAny, {
18761
18795
  id: string;
18762
18796
  name: string;
@@ -18782,6 +18816,7 @@ export declare const instagramContract: {
18782
18816
  } | undefined;
18783
18817
  lineRichMenuId?: string | null | undefined;
18784
18818
  messengerIntegrationType?: "own" | "business" | undefined;
18819
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18785
18820
  }, {
18786
18821
  id: string;
18787
18822
  name: string;
@@ -18807,6 +18842,7 @@ export declare const instagramContract: {
18807
18842
  } | undefined;
18808
18843
  lineRichMenuId?: string | null | undefined;
18809
18844
  messengerIntegrationType?: "own" | "business" | undefined;
18845
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18810
18846
  }>>;
18811
18847
  platformId: z.ZodOptional<z.ZodString>;
18812
18848
  brandName: z.ZodOptional<z.ZodString>;
@@ -18862,6 +18898,7 @@ export declare const instagramContract: {
18862
18898
  } | undefined;
18863
18899
  lineRichMenuId?: string | null | undefined;
18864
18900
  messengerIntegrationType?: "own" | "business" | undefined;
18901
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18865
18902
  } | undefined;
18866
18903
  platformId?: string | undefined;
18867
18904
  brandName?: string | undefined;
@@ -18905,6 +18942,7 @@ export declare const instagramContract: {
18905
18942
  } | undefined;
18906
18943
  lineRichMenuId?: string | null | undefined;
18907
18944
  messengerIntegrationType?: "own" | "business" | undefined;
18945
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18908
18946
  } | undefined;
18909
18947
  platformId?: string | undefined;
18910
18948
  brandName?: string | undefined;
@@ -18981,6 +19019,7 @@ export declare const instagramContract: {
18981
19019
  }>>;
18982
19020
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18983
19021
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19022
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
18984
19023
  }, "strip", z.ZodTypeAny, {
18985
19024
  id: string;
18986
19025
  name: string;
@@ -19006,6 +19045,7 @@ export declare const instagramContract: {
19006
19045
  } | undefined;
19007
19046
  lineRichMenuId?: string | null | undefined;
19008
19047
  messengerIntegrationType?: "own" | "business" | undefined;
19048
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19009
19049
  }, {
19010
19050
  id: string;
19011
19051
  name: string;
@@ -19031,6 +19071,7 @@ export declare const instagramContract: {
19031
19071
  } | undefined;
19032
19072
  lineRichMenuId?: string | null | undefined;
19033
19073
  messengerIntegrationType?: "own" | "business" | undefined;
19074
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19034
19075
  }>;
19035
19076
  platformId: z.ZodString;
19036
19077
  brandName: z.ZodString;
@@ -19086,6 +19127,7 @@ export declare const instagramContract: {
19086
19127
  } | undefined;
19087
19128
  lineRichMenuId?: string | null | undefined;
19088
19129
  messengerIntegrationType?: "own" | "business" | undefined;
19130
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19089
19131
  };
19090
19132
  status: boolean;
19091
19133
  brandName: string;
@@ -19129,6 +19171,7 @@ export declare const instagramContract: {
19129
19171
  } | undefined;
19130
19172
  lineRichMenuId?: string | null | undefined;
19131
19173
  messengerIntegrationType?: "own" | "business" | undefined;
19174
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19132
19175
  };
19133
19176
  status: boolean;
19134
19177
  brandName: string;
@@ -19174,6 +19217,7 @@ export declare const instagramContract: {
19174
19217
  } | undefined;
19175
19218
  lineRichMenuId?: string | null | undefined;
19176
19219
  messengerIntegrationType?: "own" | "business" | undefined;
19220
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19177
19221
  };
19178
19222
  status: boolean;
19179
19223
  brandName: string;
@@ -19220,6 +19264,7 @@ export declare const instagramContract: {
19220
19264
  } | undefined;
19221
19265
  lineRichMenuId?: string | null | undefined;
19222
19266
  messengerIntegrationType?: "own" | "business" | undefined;
19267
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19223
19268
  };
19224
19269
  status: boolean;
19225
19270
  brandName: string;
@@ -19318,6 +19363,7 @@ export declare const instagramContract: {
19318
19363
  }>>;
19319
19364
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19320
19365
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19366
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19321
19367
  }, "strip", z.ZodTypeAny, {
19322
19368
  id: string;
19323
19369
  name: string;
@@ -19343,6 +19389,7 @@ export declare const instagramContract: {
19343
19389
  } | undefined;
19344
19390
  lineRichMenuId?: string | null | undefined;
19345
19391
  messengerIntegrationType?: "own" | "business" | undefined;
19392
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19346
19393
  }, {
19347
19394
  id: string;
19348
19395
  name: string;
@@ -19368,6 +19415,7 @@ export declare const instagramContract: {
19368
19415
  } | undefined;
19369
19416
  lineRichMenuId?: string | null | undefined;
19370
19417
  messengerIntegrationType?: "own" | "business" | undefined;
19418
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19371
19419
  }>>;
19372
19420
  platformId: z.ZodOptional<z.ZodString>;
19373
19421
  brandName: z.ZodOptional<z.ZodString>;
@@ -19423,6 +19471,7 @@ export declare const instagramContract: {
19423
19471
  } | undefined;
19424
19472
  lineRichMenuId?: string | null | undefined;
19425
19473
  messengerIntegrationType?: "own" | "business" | undefined;
19474
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19426
19475
  } | undefined;
19427
19476
  platformId?: string | undefined;
19428
19477
  brandName?: string | undefined;
@@ -19466,6 +19515,7 @@ export declare const instagramContract: {
19466
19515
  } | undefined;
19467
19516
  lineRichMenuId?: string | null | undefined;
19468
19517
  messengerIntegrationType?: "own" | "business" | undefined;
19518
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19469
19519
  } | undefined;
19470
19520
  platformId?: string | undefined;
19471
19521
  brandName?: string | undefined;
@@ -19542,6 +19592,7 @@ export declare const instagramContract: {
19542
19592
  }>>;
19543
19593
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19544
19594
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19595
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19545
19596
  }, "strip", z.ZodTypeAny, {
19546
19597
  id: string;
19547
19598
  name: string;
@@ -19567,6 +19618,7 @@ export declare const instagramContract: {
19567
19618
  } | undefined;
19568
19619
  lineRichMenuId?: string | null | undefined;
19569
19620
  messengerIntegrationType?: "own" | "business" | undefined;
19621
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19570
19622
  }, {
19571
19623
  id: string;
19572
19624
  name: string;
@@ -19592,6 +19644,7 @@ export declare const instagramContract: {
19592
19644
  } | undefined;
19593
19645
  lineRichMenuId?: string | null | undefined;
19594
19646
  messengerIntegrationType?: "own" | "business" | undefined;
19647
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19595
19648
  }>;
19596
19649
  platformId: z.ZodString;
19597
19650
  brandName: z.ZodString;
@@ -19647,6 +19700,7 @@ export declare const instagramContract: {
19647
19700
  } | undefined;
19648
19701
  lineRichMenuId?: string | null | undefined;
19649
19702
  messengerIntegrationType?: "own" | "business" | undefined;
19703
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19650
19704
  };
19651
19705
  status: boolean;
19652
19706
  brandName: string;
@@ -19690,6 +19744,7 @@ export declare const instagramContract: {
19690
19744
  } | undefined;
19691
19745
  lineRichMenuId?: string | null | undefined;
19692
19746
  messengerIntegrationType?: "own" | "business" | undefined;
19747
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19693
19748
  };
19694
19749
  status: boolean;
19695
19750
  brandName: string;
@@ -19735,6 +19790,7 @@ export declare const instagramContract: {
19735
19790
  } | undefined;
19736
19791
  lineRichMenuId?: string | null | undefined;
19737
19792
  messengerIntegrationType?: "own" | "business" | undefined;
19793
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19738
19794
  };
19739
19795
  status: boolean;
19740
19796
  brandName: string;
@@ -19781,6 +19837,7 @@ export declare const instagramContract: {
19781
19837
  } | undefined;
19782
19838
  lineRichMenuId?: string | null | undefined;
19783
19839
  messengerIntegrationType?: "own" | "business" | undefined;
19840
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19784
19841
  };
19785
19842
  status: boolean;
19786
19843
  brandName: string;
@@ -19891,6 +19948,7 @@ export declare const instagramContract: {
19891
19948
  }>>;
19892
19949
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19893
19950
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19951
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19894
19952
  }, "strip", z.ZodTypeAny, {
19895
19953
  id: string;
19896
19954
  name: string;
@@ -19916,6 +19974,7 @@ export declare const instagramContract: {
19916
19974
  } | undefined;
19917
19975
  lineRichMenuId?: string | null | undefined;
19918
19976
  messengerIntegrationType?: "own" | "business" | undefined;
19977
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19919
19978
  }, {
19920
19979
  id: string;
19921
19980
  name: string;
@@ -19941,6 +20000,7 @@ export declare const instagramContract: {
19941
20000
  } | undefined;
19942
20001
  lineRichMenuId?: string | null | undefined;
19943
20002
  messengerIntegrationType?: "own" | "business" | undefined;
20003
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19944
20004
  }>;
19945
20005
  platformId: z.ZodString;
19946
20006
  brandName: z.ZodString;
@@ -19996,6 +20056,7 @@ export declare const instagramContract: {
19996
20056
  } | undefined;
19997
20057
  lineRichMenuId?: string | null | undefined;
19998
20058
  messengerIntegrationType?: "own" | "business" | undefined;
20059
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19999
20060
  };
20000
20061
  status: boolean;
20001
20062
  brandName: string;
@@ -20039,6 +20100,7 @@ export declare const instagramContract: {
20039
20100
  } | undefined;
20040
20101
  lineRichMenuId?: string | null | undefined;
20041
20102
  messengerIntegrationType?: "own" | "business" | undefined;
20103
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20042
20104
  };
20043
20105
  status: boolean;
20044
20106
  brandName: string;
@@ -20084,6 +20146,7 @@ export declare const instagramContract: {
20084
20146
  } | undefined;
20085
20147
  lineRichMenuId?: string | null | undefined;
20086
20148
  messengerIntegrationType?: "own" | "business" | undefined;
20149
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20087
20150
  };
20088
20151
  status: boolean;
20089
20152
  brandName: string;
@@ -20130,6 +20193,7 @@ export declare const instagramContract: {
20130
20193
  } | undefined;
20131
20194
  lineRichMenuId?: string | null | undefined;
20132
20195
  messengerIntegrationType?: "own" | "business" | undefined;
20196
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20133
20197
  };
20134
20198
  status: boolean;
20135
20199
  brandName: string;
@@ -20240,6 +20304,7 @@ export declare const instagramContract: {
20240
20304
  }>>;
20241
20305
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20242
20306
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20307
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20243
20308
  }, "strip", z.ZodTypeAny, {
20244
20309
  id: string;
20245
20310
  name: string;
@@ -20265,6 +20330,7 @@ export declare const instagramContract: {
20265
20330
  } | undefined;
20266
20331
  lineRichMenuId?: string | null | undefined;
20267
20332
  messengerIntegrationType?: "own" | "business" | undefined;
20333
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20268
20334
  }, {
20269
20335
  id: string;
20270
20336
  name: string;
@@ -20290,6 +20356,7 @@ export declare const instagramContract: {
20290
20356
  } | undefined;
20291
20357
  lineRichMenuId?: string | null | undefined;
20292
20358
  messengerIntegrationType?: "own" | "business" | undefined;
20359
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20293
20360
  }>;
20294
20361
  platformId: z.ZodString;
20295
20362
  brandName: z.ZodString;
@@ -20345,6 +20412,7 @@ export declare const instagramContract: {
20345
20412
  } | undefined;
20346
20413
  lineRichMenuId?: string | null | undefined;
20347
20414
  messengerIntegrationType?: "own" | "business" | undefined;
20415
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20348
20416
  };
20349
20417
  status: boolean;
20350
20418
  brandName: string;
@@ -20388,6 +20456,7 @@ export declare const instagramContract: {
20388
20456
  } | undefined;
20389
20457
  lineRichMenuId?: string | null | undefined;
20390
20458
  messengerIntegrationType?: "own" | "business" | undefined;
20459
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20391
20460
  };
20392
20461
  status: boolean;
20393
20462
  brandName: string;
@@ -20433,6 +20502,7 @@ export declare const instagramContract: {
20433
20502
  } | undefined;
20434
20503
  lineRichMenuId?: string | null | undefined;
20435
20504
  messengerIntegrationType?: "own" | "business" | undefined;
20505
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20436
20506
  };
20437
20507
  status: boolean;
20438
20508
  brandName: string;
@@ -20479,6 +20549,7 @@ export declare const instagramContract: {
20479
20549
  } | undefined;
20480
20550
  lineRichMenuId?: string | null | undefined;
20481
20551
  messengerIntegrationType?: "own" | "business" | undefined;
20552
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20482
20553
  };
20483
20554
  status: boolean;
20484
20555
  brandName: string;
@@ -20577,6 +20648,7 @@ export declare const instagramContract: {
20577
20648
  }>>;
20578
20649
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20579
20650
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20651
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20580
20652
  }, "strip", z.ZodTypeAny, {
20581
20653
  id: string;
20582
20654
  name: string;
@@ -20602,6 +20674,7 @@ export declare const instagramContract: {
20602
20674
  } | undefined;
20603
20675
  lineRichMenuId?: string | null | undefined;
20604
20676
  messengerIntegrationType?: "own" | "business" | undefined;
20677
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20605
20678
  }, {
20606
20679
  id: string;
20607
20680
  name: string;
@@ -20627,6 +20700,7 @@ export declare const instagramContract: {
20627
20700
  } | undefined;
20628
20701
  lineRichMenuId?: string | null | undefined;
20629
20702
  messengerIntegrationType?: "own" | "business" | undefined;
20703
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20630
20704
  }>>;
20631
20705
  platformId: z.ZodOptional<z.ZodString>;
20632
20706
  brandName: z.ZodOptional<z.ZodString>;
@@ -20682,6 +20756,7 @@ export declare const instagramContract: {
20682
20756
  } | undefined;
20683
20757
  lineRichMenuId?: string | null | undefined;
20684
20758
  messengerIntegrationType?: "own" | "business" | undefined;
20759
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20685
20760
  } | undefined;
20686
20761
  platformId?: string | undefined;
20687
20762
  brandName?: string | undefined;
@@ -20725,6 +20800,7 @@ export declare const instagramContract: {
20725
20800
  } | undefined;
20726
20801
  lineRichMenuId?: string | null | undefined;
20727
20802
  messengerIntegrationType?: "own" | "business" | undefined;
20803
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20728
20804
  } | undefined;
20729
20805
  platformId?: string | undefined;
20730
20806
  brandName?: string | undefined;
@@ -20801,6 +20877,7 @@ export declare const instagramContract: {
20801
20877
  }>>;
20802
20878
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20803
20879
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20880
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20804
20881
  }, "strip", z.ZodTypeAny, {
20805
20882
  id: string;
20806
20883
  name: string;
@@ -20826,6 +20903,7 @@ export declare const instagramContract: {
20826
20903
  } | undefined;
20827
20904
  lineRichMenuId?: string | null | undefined;
20828
20905
  messengerIntegrationType?: "own" | "business" | undefined;
20906
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20829
20907
  }, {
20830
20908
  id: string;
20831
20909
  name: string;
@@ -20851,6 +20929,7 @@ export declare const instagramContract: {
20851
20929
  } | undefined;
20852
20930
  lineRichMenuId?: string | null | undefined;
20853
20931
  messengerIntegrationType?: "own" | "business" | undefined;
20932
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20854
20933
  }>;
20855
20934
  platformId: z.ZodString;
20856
20935
  brandName: z.ZodString;
@@ -20906,6 +20985,7 @@ export declare const instagramContract: {
20906
20985
  } | undefined;
20907
20986
  lineRichMenuId?: string | null | undefined;
20908
20987
  messengerIntegrationType?: "own" | "business" | undefined;
20988
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20909
20989
  };
20910
20990
  status: boolean;
20911
20991
  brandName: string;
@@ -20949,6 +21029,7 @@ export declare const instagramContract: {
20949
21029
  } | undefined;
20950
21030
  lineRichMenuId?: string | null | undefined;
20951
21031
  messengerIntegrationType?: "own" | "business" | undefined;
21032
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20952
21033
  };
20953
21034
  status: boolean;
20954
21035
  brandName: string;
@@ -20994,6 +21075,7 @@ export declare const instagramContract: {
20994
21075
  } | undefined;
20995
21076
  lineRichMenuId?: string | null | undefined;
20996
21077
  messengerIntegrationType?: "own" | "business" | undefined;
21078
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20997
21079
  };
20998
21080
  status: boolean;
20999
21081
  brandName: string;
@@ -21040,6 +21122,7 @@ export declare const instagramContract: {
21040
21122
  } | undefined;
21041
21123
  lineRichMenuId?: string | null | undefined;
21042
21124
  messengerIntegrationType?: "own" | "business" | undefined;
21125
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21043
21126
  };
21044
21127
  status: boolean;
21045
21128
  brandName: string;