@kl1/contracts 1.1.51 → 1.1.52
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.
- package/dist/api-contracts/src/channel/index.d.ts +811 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +8 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +5 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +230 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +60 -24
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +79 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +2230 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +83 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +75 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +9 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +186 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/schema.d.ts +230 -1
- package/dist/api-contracts/src/messenger/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +42 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +16 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +61 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +61 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +40 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +18 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +2224 -2154
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2224 -2154
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/api-contracts/src/hold-label/index.d.ts +0 -315
- package/dist/api-contracts/src/hold-label/index.d.ts.map +0 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +0 -24
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +0 -1
- package/dist/api-contracts/src/hold-label/validation.d.ts +0 -24
- package/dist/api-contracts/src/hold-label/validation.d.ts.map +0 -1
- package/dist/api-contracts/src/presence-status/index.d.ts +0 -556
- package/dist/api-contracts/src/presence-status/index.d.ts.map +0 -1
- package/dist/api-contracts/src/presence-status/schema.d.ts +0 -31
- package/dist/api-contracts/src/presence-status/schema.d.ts.map +0 -1
- package/dist/api-contracts/src/presence-status/validation.d.ts +0 -28
- package/dist/api-contracts/src/presence-status/validation.d.ts.map +0 -1
- package/dist/api-contracts/src/subscription/index.d.ts +0 -1900
- package/dist/api-contracts/src/subscription/index.d.ts.map +0 -1
- package/dist/api-contracts/src/subscription/schema.d.ts +0 -2059
- package/dist/api-contracts/src/subscription/schema.d.ts.map +0 -1
- package/dist/api-contracts/src/subscription/validation.d.ts +0 -37
- package/dist/api-contracts/src/subscription/validation.d.ts.map +0 -1
@@ -32,6 +32,7 @@ export declare const facebookFeedContract: {
|
|
32
32
|
apiSecret: string;
|
33
33
|
}>>;
|
34
34
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
35
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
35
36
|
}, "strip", z.ZodTypeAny, {
|
36
37
|
id: string;
|
37
38
|
name: string;
|
@@ -45,6 +46,7 @@ export declare const facebookFeedContract: {
|
|
45
46
|
apiSecret: string;
|
46
47
|
} | undefined;
|
47
48
|
lineRichMenuId?: string | null | undefined;
|
49
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
48
50
|
}, {
|
49
51
|
id: string;
|
50
52
|
name: string;
|
@@ -58,6 +60,7 @@ export declare const facebookFeedContract: {
|
|
58
60
|
apiSecret: string;
|
59
61
|
} | undefined;
|
60
62
|
lineRichMenuId?: string | null | undefined;
|
63
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
61
64
|
}>>;
|
62
65
|
platformId: z.ZodOptional<z.ZodString>;
|
63
66
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -101,6 +104,7 @@ export declare const facebookFeedContract: {
|
|
101
104
|
apiSecret: string;
|
102
105
|
} | undefined;
|
103
106
|
lineRichMenuId?: string | null | undefined;
|
107
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
104
108
|
} | undefined;
|
105
109
|
platformId?: string | undefined;
|
106
110
|
brandName?: string | undefined;
|
@@ -132,6 +136,7 @@ export declare const facebookFeedContract: {
|
|
132
136
|
apiSecret: string;
|
133
137
|
} | undefined;
|
134
138
|
lineRichMenuId?: string | null | undefined;
|
139
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
135
140
|
} | undefined;
|
136
141
|
platformId?: string | undefined;
|
137
142
|
brandName?: string | undefined;
|
@@ -176,6 +181,7 @@ export declare const facebookFeedContract: {
|
|
176
181
|
apiSecret: string;
|
177
182
|
}>>;
|
178
183
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
184
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
179
185
|
}, "strip", z.ZodTypeAny, {
|
180
186
|
id: string;
|
181
187
|
name: string;
|
@@ -189,6 +195,7 @@ export declare const facebookFeedContract: {
|
|
189
195
|
apiSecret: string;
|
190
196
|
} | undefined;
|
191
197
|
lineRichMenuId?: string | null | undefined;
|
198
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
192
199
|
}, {
|
193
200
|
id: string;
|
194
201
|
name: string;
|
@@ -202,6 +209,7 @@ export declare const facebookFeedContract: {
|
|
202
209
|
apiSecret: string;
|
203
210
|
} | undefined;
|
204
211
|
lineRichMenuId?: string | null | undefined;
|
212
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
205
213
|
}>;
|
206
214
|
platformId: z.ZodString;
|
207
215
|
brandName: z.ZodString;
|
@@ -245,6 +253,7 @@ export declare const facebookFeedContract: {
|
|
245
253
|
apiSecret: string;
|
246
254
|
} | undefined;
|
247
255
|
lineRichMenuId?: string | null | undefined;
|
256
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
248
257
|
};
|
249
258
|
status: boolean;
|
250
259
|
brandName: string;
|
@@ -276,6 +285,7 @@ export declare const facebookFeedContract: {
|
|
276
285
|
apiSecret: string;
|
277
286
|
} | undefined;
|
278
287
|
lineRichMenuId?: string | null | undefined;
|
288
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
279
289
|
};
|
280
290
|
status: boolean;
|
281
291
|
brandName: string;
|
@@ -309,6 +319,7 @@ export declare const facebookFeedContract: {
|
|
309
319
|
apiSecret: string;
|
310
320
|
} | undefined;
|
311
321
|
lineRichMenuId?: string | null | undefined;
|
322
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
312
323
|
};
|
313
324
|
status: boolean;
|
314
325
|
brandName: string;
|
@@ -343,6 +354,7 @@ export declare const facebookFeedContract: {
|
|
343
354
|
apiSecret: string;
|
344
355
|
} | undefined;
|
345
356
|
lineRichMenuId?: string | null | undefined;
|
357
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
346
358
|
};
|
347
359
|
status: boolean;
|
348
360
|
brandName: string;
|
@@ -409,6 +421,7 @@ export declare const facebookFeedContract: {
|
|
409
421
|
apiSecret: string;
|
410
422
|
}>>;
|
411
423
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
424
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
412
425
|
}, "strip", z.ZodTypeAny, {
|
413
426
|
id: string;
|
414
427
|
name: string;
|
@@ -422,6 +435,7 @@ export declare const facebookFeedContract: {
|
|
422
435
|
apiSecret: string;
|
423
436
|
} | undefined;
|
424
437
|
lineRichMenuId?: string | null | undefined;
|
438
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
425
439
|
}, {
|
426
440
|
id: string;
|
427
441
|
name: string;
|
@@ -435,6 +449,7 @@ export declare const facebookFeedContract: {
|
|
435
449
|
apiSecret: string;
|
436
450
|
} | undefined;
|
437
451
|
lineRichMenuId?: string | null | undefined;
|
452
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
438
453
|
}>>;
|
439
454
|
platformId: z.ZodOptional<z.ZodString>;
|
440
455
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -478,6 +493,7 @@ export declare const facebookFeedContract: {
|
|
478
493
|
apiSecret: string;
|
479
494
|
} | undefined;
|
480
495
|
lineRichMenuId?: string | null | undefined;
|
496
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
481
497
|
} | undefined;
|
482
498
|
platformId?: string | undefined;
|
483
499
|
brandName?: string | undefined;
|
@@ -509,6 +525,7 @@ export declare const facebookFeedContract: {
|
|
509
525
|
apiSecret: string;
|
510
526
|
} | undefined;
|
511
527
|
lineRichMenuId?: string | null | undefined;
|
528
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
512
529
|
} | undefined;
|
513
530
|
platformId?: string | undefined;
|
514
531
|
brandName?: string | undefined;
|
@@ -553,6 +570,7 @@ export declare const facebookFeedContract: {
|
|
553
570
|
apiSecret: string;
|
554
571
|
}>>;
|
555
572
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
573
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
556
574
|
}, "strip", z.ZodTypeAny, {
|
557
575
|
id: string;
|
558
576
|
name: string;
|
@@ -566,6 +584,7 @@ export declare const facebookFeedContract: {
|
|
566
584
|
apiSecret: string;
|
567
585
|
} | undefined;
|
568
586
|
lineRichMenuId?: string | null | undefined;
|
587
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
569
588
|
}, {
|
570
589
|
id: string;
|
571
590
|
name: string;
|
@@ -579,6 +598,7 @@ export declare const facebookFeedContract: {
|
|
579
598
|
apiSecret: string;
|
580
599
|
} | undefined;
|
581
600
|
lineRichMenuId?: string | null | undefined;
|
601
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
582
602
|
}>;
|
583
603
|
platformId: z.ZodString;
|
584
604
|
brandName: z.ZodString;
|
@@ -622,6 +642,7 @@ export declare const facebookFeedContract: {
|
|
622
642
|
apiSecret: string;
|
623
643
|
} | undefined;
|
624
644
|
lineRichMenuId?: string | null | undefined;
|
645
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
625
646
|
};
|
626
647
|
status: boolean;
|
627
648
|
brandName: string;
|
@@ -653,6 +674,7 @@ export declare const facebookFeedContract: {
|
|
653
674
|
apiSecret: string;
|
654
675
|
} | undefined;
|
655
676
|
lineRichMenuId?: string | null | undefined;
|
677
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
656
678
|
};
|
657
679
|
status: boolean;
|
658
680
|
brandName: string;
|
@@ -686,6 +708,7 @@ export declare const facebookFeedContract: {
|
|
686
708
|
apiSecret: string;
|
687
709
|
} | undefined;
|
688
710
|
lineRichMenuId?: string | null | undefined;
|
711
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
689
712
|
};
|
690
713
|
status: boolean;
|
691
714
|
brandName: string;
|
@@ -720,6 +743,7 @@ export declare const facebookFeedContract: {
|
|
720
743
|
apiSecret: string;
|
721
744
|
} | undefined;
|
722
745
|
lineRichMenuId?: string | null | undefined;
|
746
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
723
747
|
};
|
724
748
|
status: boolean;
|
725
749
|
brandName: string;
|
@@ -798,6 +822,7 @@ export declare const facebookFeedContract: {
|
|
798
822
|
apiSecret: string;
|
799
823
|
}>>;
|
800
824
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
825
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
801
826
|
}, "strip", z.ZodTypeAny, {
|
802
827
|
id: string;
|
803
828
|
name: string;
|
@@ -811,6 +836,7 @@ export declare const facebookFeedContract: {
|
|
811
836
|
apiSecret: string;
|
812
837
|
} | undefined;
|
813
838
|
lineRichMenuId?: string | null | undefined;
|
839
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
814
840
|
}, {
|
815
841
|
id: string;
|
816
842
|
name: string;
|
@@ -824,6 +850,7 @@ export declare const facebookFeedContract: {
|
|
824
850
|
apiSecret: string;
|
825
851
|
} | undefined;
|
826
852
|
lineRichMenuId?: string | null | undefined;
|
853
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
827
854
|
}>;
|
828
855
|
platformId: z.ZodString;
|
829
856
|
brandName: z.ZodString;
|
@@ -867,6 +894,7 @@ export declare const facebookFeedContract: {
|
|
867
894
|
apiSecret: string;
|
868
895
|
} | undefined;
|
869
896
|
lineRichMenuId?: string | null | undefined;
|
897
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
870
898
|
};
|
871
899
|
status: boolean;
|
872
900
|
brandName: string;
|
@@ -898,6 +926,7 @@ export declare const facebookFeedContract: {
|
|
898
926
|
apiSecret: string;
|
899
927
|
} | undefined;
|
900
928
|
lineRichMenuId?: string | null | undefined;
|
929
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
901
930
|
};
|
902
931
|
status: boolean;
|
903
932
|
brandName: string;
|
@@ -931,6 +960,7 @@ export declare const facebookFeedContract: {
|
|
931
960
|
apiSecret: string;
|
932
961
|
} | undefined;
|
933
962
|
lineRichMenuId?: string | null | undefined;
|
963
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
934
964
|
};
|
935
965
|
status: boolean;
|
936
966
|
brandName: string;
|
@@ -965,6 +995,7 @@ export declare const facebookFeedContract: {
|
|
965
995
|
apiSecret: string;
|
966
996
|
} | undefined;
|
967
997
|
lineRichMenuId?: string | null | undefined;
|
998
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
968
999
|
};
|
969
1000
|
status: boolean;
|
970
1001
|
brandName: string;
|
@@ -1043,6 +1074,7 @@ export declare const facebookFeedContract: {
|
|
1043
1074
|
apiSecret: string;
|
1044
1075
|
}>>;
|
1045
1076
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1077
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1046
1078
|
}, "strip", z.ZodTypeAny, {
|
1047
1079
|
id: string;
|
1048
1080
|
name: string;
|
@@ -1056,6 +1088,7 @@ export declare const facebookFeedContract: {
|
|
1056
1088
|
apiSecret: string;
|
1057
1089
|
} | undefined;
|
1058
1090
|
lineRichMenuId?: string | null | undefined;
|
1091
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1059
1092
|
}, {
|
1060
1093
|
id: string;
|
1061
1094
|
name: string;
|
@@ -1069,6 +1102,7 @@ export declare const facebookFeedContract: {
|
|
1069
1102
|
apiSecret: string;
|
1070
1103
|
} | undefined;
|
1071
1104
|
lineRichMenuId?: string | null | undefined;
|
1105
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1072
1106
|
}>;
|
1073
1107
|
platformId: z.ZodString;
|
1074
1108
|
brandName: z.ZodString;
|
@@ -1112,6 +1146,7 @@ export declare const facebookFeedContract: {
|
|
1112
1146
|
apiSecret: string;
|
1113
1147
|
} | undefined;
|
1114
1148
|
lineRichMenuId?: string | null | undefined;
|
1149
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1115
1150
|
};
|
1116
1151
|
status: boolean;
|
1117
1152
|
brandName: string;
|
@@ -1143,6 +1178,7 @@ export declare const facebookFeedContract: {
|
|
1143
1178
|
apiSecret: string;
|
1144
1179
|
} | undefined;
|
1145
1180
|
lineRichMenuId?: string | null | undefined;
|
1181
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1146
1182
|
};
|
1147
1183
|
status: boolean;
|
1148
1184
|
brandName: string;
|
@@ -1176,6 +1212,7 @@ export declare const facebookFeedContract: {
|
|
1176
1212
|
apiSecret: string;
|
1177
1213
|
} | undefined;
|
1178
1214
|
lineRichMenuId?: string | null | undefined;
|
1215
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1179
1216
|
};
|
1180
1217
|
status: boolean;
|
1181
1218
|
brandName: string;
|
@@ -1210,6 +1247,7 @@ export declare const facebookFeedContract: {
|
|
1210
1247
|
apiSecret: string;
|
1211
1248
|
} | undefined;
|
1212
1249
|
lineRichMenuId?: string | null | undefined;
|
1250
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1213
1251
|
};
|
1214
1252
|
status: boolean;
|
1215
1253
|
brandName: string;
|
@@ -1275,6 +1313,7 @@ export declare const facebookFeedContract: {
|
|
1275
1313
|
apiSecret: string;
|
1276
1314
|
}>>;
|
1277
1315
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1316
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1278
1317
|
}, "strip", z.ZodTypeAny, {
|
1279
1318
|
id: string;
|
1280
1319
|
name: string;
|
@@ -1288,6 +1327,7 @@ export declare const facebookFeedContract: {
|
|
1288
1327
|
apiSecret: string;
|
1289
1328
|
} | undefined;
|
1290
1329
|
lineRichMenuId?: string | null | undefined;
|
1330
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1291
1331
|
}, {
|
1292
1332
|
id: string;
|
1293
1333
|
name: string;
|
@@ -1301,6 +1341,7 @@ export declare const facebookFeedContract: {
|
|
1301
1341
|
apiSecret: string;
|
1302
1342
|
} | undefined;
|
1303
1343
|
lineRichMenuId?: string | null | undefined;
|
1344
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1304
1345
|
}>;
|
1305
1346
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
1306
1347
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -1349,6 +1390,7 @@ export declare const facebookFeedContract: {
|
|
1349
1390
|
apiSecret: string;
|
1350
1391
|
} | undefined;
|
1351
1392
|
lineRichMenuId?: string | null | undefined;
|
1393
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1352
1394
|
};
|
1353
1395
|
status: boolean;
|
1354
1396
|
createdAt: string;
|
@@ -1384,6 +1426,7 @@ export declare const facebookFeedContract: {
|
|
1384
1426
|
apiSecret: string;
|
1385
1427
|
} | undefined;
|
1386
1428
|
lineRichMenuId?: string | null | undefined;
|
1429
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1387
1430
|
};
|
1388
1431
|
status: boolean;
|
1389
1432
|
createdAt: string;
|
@@ -1432,6 +1475,7 @@ export declare const facebookFeedContract: {
|
|
1432
1475
|
apiSecret: string;
|
1433
1476
|
}>>;
|
1434
1477
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1478
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1435
1479
|
}, "strip", z.ZodTypeAny, {
|
1436
1480
|
id: string;
|
1437
1481
|
name: string;
|
@@ -1445,6 +1489,7 @@ export declare const facebookFeedContract: {
|
|
1445
1489
|
apiSecret: string;
|
1446
1490
|
} | undefined;
|
1447
1491
|
lineRichMenuId?: string | null | undefined;
|
1492
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1448
1493
|
}, {
|
1449
1494
|
id: string;
|
1450
1495
|
name: string;
|
@@ -1458,6 +1503,7 @@ export declare const facebookFeedContract: {
|
|
1458
1503
|
apiSecret: string;
|
1459
1504
|
} | undefined;
|
1460
1505
|
lineRichMenuId?: string | null | undefined;
|
1506
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1461
1507
|
}>;
|
1462
1508
|
platformId: z.ZodString;
|
1463
1509
|
brandName: z.ZodString;
|
@@ -1501,6 +1547,7 @@ export declare const facebookFeedContract: {
|
|
1501
1547
|
apiSecret: string;
|
1502
1548
|
} | undefined;
|
1503
1549
|
lineRichMenuId?: string | null | undefined;
|
1550
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1504
1551
|
};
|
1505
1552
|
status: boolean;
|
1506
1553
|
brandName: string;
|
@@ -1532,6 +1579,7 @@ export declare const facebookFeedContract: {
|
|
1532
1579
|
apiSecret: string;
|
1533
1580
|
} | undefined;
|
1534
1581
|
lineRichMenuId?: string | null | undefined;
|
1582
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1535
1583
|
};
|
1536
1584
|
status: boolean;
|
1537
1585
|
brandName: string;
|
@@ -1565,6 +1613,7 @@ export declare const facebookFeedContract: {
|
|
1565
1613
|
apiSecret: string;
|
1566
1614
|
} | undefined;
|
1567
1615
|
lineRichMenuId?: string | null | undefined;
|
1616
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1568
1617
|
};
|
1569
1618
|
status: boolean;
|
1570
1619
|
brandName: string;
|
@@ -1599,6 +1648,7 @@ export declare const facebookFeedContract: {
|
|
1599
1648
|
apiSecret: string;
|
1600
1649
|
} | undefined;
|
1601
1650
|
lineRichMenuId?: string | null | undefined;
|
1651
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1602
1652
|
};
|
1603
1653
|
status: boolean;
|
1604
1654
|
brandName: string;
|
@@ -1677,6 +1727,7 @@ export declare const facebookFeedContract: {
|
|
1677
1727
|
apiSecret: string;
|
1678
1728
|
}>>;
|
1679
1729
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1730
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1680
1731
|
}, "strip", z.ZodTypeAny, {
|
1681
1732
|
id: string;
|
1682
1733
|
name: string;
|
@@ -1690,6 +1741,7 @@ export declare const facebookFeedContract: {
|
|
1690
1741
|
apiSecret: string;
|
1691
1742
|
} | undefined;
|
1692
1743
|
lineRichMenuId?: string | null | undefined;
|
1744
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1693
1745
|
}, {
|
1694
1746
|
id: string;
|
1695
1747
|
name: string;
|
@@ -1703,6 +1755,7 @@ export declare const facebookFeedContract: {
|
|
1703
1755
|
apiSecret: string;
|
1704
1756
|
} | undefined;
|
1705
1757
|
lineRichMenuId?: string | null | undefined;
|
1758
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
1706
1759
|
}>;
|
1707
1760
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
1708
1761
|
createdAt: z.ZodDate;
|
@@ -3070,6 +3123,7 @@ export declare const facebookFeedContract: {
|
|
3070
3123
|
apiSecret: string;
|
3071
3124
|
} | undefined;
|
3072
3125
|
lineRichMenuId?: string | null | undefined;
|
3126
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3073
3127
|
};
|
3074
3128
|
status: boolean;
|
3075
3129
|
createdAt: Date;
|
@@ -3292,6 +3346,7 @@ export declare const facebookFeedContract: {
|
|
3292
3346
|
apiSecret: string;
|
3293
3347
|
} | undefined;
|
3294
3348
|
lineRichMenuId?: string | null | undefined;
|
3349
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3295
3350
|
};
|
3296
3351
|
status: boolean;
|
3297
3352
|
createdAt: Date;
|
@@ -3780,6 +3835,7 @@ export declare const facebookFeedContract: {
|
|
3780
3835
|
apiSecret: string;
|
3781
3836
|
}>>;
|
3782
3837
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3838
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
3783
3839
|
}, "strip", z.ZodTypeAny, {
|
3784
3840
|
id: string;
|
3785
3841
|
name: string;
|
@@ -3793,6 +3849,7 @@ export declare const facebookFeedContract: {
|
|
3793
3849
|
apiSecret: string;
|
3794
3850
|
} | undefined;
|
3795
3851
|
lineRichMenuId?: string | null | undefined;
|
3852
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3796
3853
|
}, {
|
3797
3854
|
id: string;
|
3798
3855
|
name: string;
|
@@ -3806,6 +3863,7 @@ export declare const facebookFeedContract: {
|
|
3806
3863
|
apiSecret: string;
|
3807
3864
|
} | undefined;
|
3808
3865
|
lineRichMenuId?: string | null | undefined;
|
3866
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3809
3867
|
}>;
|
3810
3868
|
platformId: z.ZodString;
|
3811
3869
|
brandName: z.ZodString;
|
@@ -3849,6 +3907,7 @@ export declare const facebookFeedContract: {
|
|
3849
3907
|
apiSecret: string;
|
3850
3908
|
} | undefined;
|
3851
3909
|
lineRichMenuId?: string | null | undefined;
|
3910
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3852
3911
|
};
|
3853
3912
|
status: boolean;
|
3854
3913
|
brandName: string;
|
@@ -3880,6 +3939,7 @@ export declare const facebookFeedContract: {
|
|
3880
3939
|
apiSecret: string;
|
3881
3940
|
} | undefined;
|
3882
3941
|
lineRichMenuId?: string | null | undefined;
|
3942
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3883
3943
|
};
|
3884
3944
|
status: boolean;
|
3885
3945
|
brandName: string;
|
@@ -3915,6 +3975,7 @@ export declare const facebookFeedContract: {
|
|
3915
3975
|
apiSecret: string;
|
3916
3976
|
} | undefined;
|
3917
3977
|
lineRichMenuId?: string | null | undefined;
|
3978
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3918
3979
|
};
|
3919
3980
|
status: boolean;
|
3920
3981
|
brandName: string;
|
@@ -3989,6 +4050,7 @@ export declare const facebookFeedContract: {
|
|
3989
4050
|
apiSecret: string;
|
3990
4051
|
} | undefined;
|
3991
4052
|
lineRichMenuId?: string | null | undefined;
|
4053
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
3992
4054
|
};
|
3993
4055
|
status: boolean;
|
3994
4056
|
brandName: string;
|
@@ -4112,6 +4174,7 @@ export declare const facebookFeedContract: {
|
|
4112
4174
|
apiSecret: string;
|
4113
4175
|
} | undefined;
|
4114
4176
|
lineRichMenuId?: string | null | undefined;
|
4177
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
4115
4178
|
};
|
4116
4179
|
status: boolean;
|
4117
4180
|
brandName: string;
|
@@ -4229,6 +4292,7 @@ export declare const facebookFeedContract: {
|
|
4229
4292
|
apiSecret: string;
|
4230
4293
|
} | undefined;
|
4231
4294
|
lineRichMenuId?: string | null | undefined;
|
4295
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
4232
4296
|
};
|
4233
4297
|
status: boolean;
|
4234
4298
|
brandName: string;
|
@@ -6249,6 +6313,7 @@ export declare const facebookFeedContract: {
|
|
6249
6313
|
apiSecret: string;
|
6250
6314
|
}>>;
|
6251
6315
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6316
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
6252
6317
|
}, "strip", z.ZodTypeAny, {
|
6253
6318
|
id: string;
|
6254
6319
|
name: string;
|
@@ -6262,6 +6327,7 @@ export declare const facebookFeedContract: {
|
|
6262
6327
|
apiSecret: string;
|
6263
6328
|
} | undefined;
|
6264
6329
|
lineRichMenuId?: string | null | undefined;
|
6330
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
6265
6331
|
}, {
|
6266
6332
|
id: string;
|
6267
6333
|
name: string;
|
@@ -6275,6 +6341,7 @@ export declare const facebookFeedContract: {
|
|
6275
6341
|
apiSecret: string;
|
6276
6342
|
} | undefined;
|
6277
6343
|
lineRichMenuId?: string | null | undefined;
|
6344
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
6278
6345
|
}>;
|
6279
6346
|
brandName: z.ZodString;
|
6280
6347
|
platformId: z.ZodString;
|
@@ -6522,6 +6589,7 @@ export declare const facebookFeedContract: {
|
|
6522
6589
|
apiSecret: string;
|
6523
6590
|
} | undefined;
|
6524
6591
|
lineRichMenuId?: string | null | undefined;
|
6592
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
6525
6593
|
};
|
6526
6594
|
status: boolean;
|
6527
6595
|
createdAt: Date;
|
@@ -6600,6 +6668,7 @@ export declare const facebookFeedContract: {
|
|
6600
6668
|
apiSecret: string;
|
6601
6669
|
} | undefined;
|
6602
6670
|
lineRichMenuId?: string | null | undefined;
|
6671
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
6603
6672
|
};
|
6604
6673
|
status: boolean;
|
6605
6674
|
createdAt: Date;
|
@@ -7126,6 +7195,7 @@ export declare const facebookFeedContract: {
|
|
7126
7195
|
apiSecret: string;
|
7127
7196
|
} | undefined;
|
7128
7197
|
lineRichMenuId?: string | null | undefined;
|
7198
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
7129
7199
|
};
|
7130
7200
|
status: boolean;
|
7131
7201
|
createdAt: Date;
|
@@ -7515,6 +7585,7 @@ export declare const facebookFeedContract: {
|
|
7515
7585
|
apiSecret: string;
|
7516
7586
|
} | undefined;
|
7517
7587
|
lineRichMenuId?: string | null | undefined;
|
7588
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
7518
7589
|
};
|
7519
7590
|
status: boolean;
|
7520
7591
|
createdAt: Date;
|
@@ -10628,6 +10699,7 @@ export declare const facebookFeedContract: {
|
|
10628
10699
|
apiSecret: string;
|
10629
10700
|
}>>;
|
10630
10701
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10702
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
10631
10703
|
}, "strip", z.ZodTypeAny, {
|
10632
10704
|
id: string;
|
10633
10705
|
name: string;
|
@@ -10641,6 +10713,7 @@ export declare const facebookFeedContract: {
|
|
10641
10713
|
apiSecret: string;
|
10642
10714
|
} | undefined;
|
10643
10715
|
lineRichMenuId?: string | null | undefined;
|
10716
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
10644
10717
|
}, {
|
10645
10718
|
id: string;
|
10646
10719
|
name: string;
|
@@ -10654,6 +10727,7 @@ export declare const facebookFeedContract: {
|
|
10654
10727
|
apiSecret: string;
|
10655
10728
|
} | undefined;
|
10656
10729
|
lineRichMenuId?: string | null | undefined;
|
10730
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
10657
10731
|
}>;
|
10658
10732
|
brandName: z.ZodString;
|
10659
10733
|
platformId: z.ZodString;
|
@@ -10901,6 +10975,7 @@ export declare const facebookFeedContract: {
|
|
10901
10975
|
apiSecret: string;
|
10902
10976
|
} | undefined;
|
10903
10977
|
lineRichMenuId?: string | null | undefined;
|
10978
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
10904
10979
|
};
|
10905
10980
|
status: boolean;
|
10906
10981
|
createdAt: Date;
|
@@ -10979,6 +11054,7 @@ export declare const facebookFeedContract: {
|
|
10979
11054
|
apiSecret: string;
|
10980
11055
|
} | undefined;
|
10981
11056
|
lineRichMenuId?: string | null | undefined;
|
11057
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
10982
11058
|
};
|
10983
11059
|
status: boolean;
|
10984
11060
|
createdAt: Date;
|
@@ -11505,6 +11581,7 @@ export declare const facebookFeedContract: {
|
|
11505
11581
|
apiSecret: string;
|
11506
11582
|
} | undefined;
|
11507
11583
|
lineRichMenuId?: string | null | undefined;
|
11584
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
11508
11585
|
};
|
11509
11586
|
status: boolean;
|
11510
11587
|
createdAt: Date;
|
@@ -11894,6 +11971,7 @@ export declare const facebookFeedContract: {
|
|
11894
11971
|
apiSecret: string;
|
11895
11972
|
} | undefined;
|
11896
11973
|
lineRichMenuId?: string | null | undefined;
|
11974
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
11897
11975
|
};
|
11898
11976
|
status: boolean;
|
11899
11977
|
createdAt: Date;
|
@@ -14056,6 +14134,7 @@ export declare const facebookFeedContract: {
|
|
14056
14134
|
apiSecret: string;
|
14057
14135
|
} | undefined;
|
14058
14136
|
lineRichMenuId?: string | null | undefined;
|
14137
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
14059
14138
|
};
|
14060
14139
|
status: boolean;
|
14061
14140
|
createdAt: Date;
|
@@ -14782,6 +14861,7 @@ export declare const facebookFeedContract: {
|
|
14782
14861
|
apiSecret: string;
|
14783
14862
|
} | undefined;
|
14784
14863
|
lineRichMenuId?: string | null | undefined;
|
14864
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
14785
14865
|
};
|
14786
14866
|
status: boolean;
|
14787
14867
|
createdAt: Date;
|
@@ -15509,6 +15589,7 @@ export declare const facebookFeedContract: {
|
|
15509
15589
|
apiSecret: string;
|
15510
15590
|
} | undefined;
|
15511
15591
|
lineRichMenuId?: string | null | undefined;
|
15592
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
15512
15593
|
};
|
15513
15594
|
status: boolean;
|
15514
15595
|
createdAt: Date;
|
@@ -16235,6 +16316,7 @@ export declare const facebookFeedContract: {
|
|
16235
16316
|
apiSecret: string;
|
16236
16317
|
} | undefined;
|
16237
16318
|
lineRichMenuId?: string | null | undefined;
|
16319
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
16238
16320
|
};
|
16239
16321
|
status: boolean;
|
16240
16322
|
createdAt: Date;
|
@@ -16962,6 +17044,7 @@ export declare const facebookFeedContract: {
|
|
16962
17044
|
apiSecret: string;
|
16963
17045
|
} | undefined;
|
16964
17046
|
lineRichMenuId?: string | null | undefined;
|
17047
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
16965
17048
|
};
|
16966
17049
|
status: boolean;
|
16967
17050
|
createdAt: Date;
|
@@ -17688,6 +17771,7 @@ export declare const facebookFeedContract: {
|
|
17688
17771
|
apiSecret: string;
|
17689
17772
|
} | undefined;
|
17690
17773
|
lineRichMenuId?: string | null | undefined;
|
17774
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
17691
17775
|
};
|
17692
17776
|
status: boolean;
|
17693
17777
|
createdAt: Date;
|
@@ -18417,6 +18501,7 @@ export declare const facebookFeedContract: {
|
|
18417
18501
|
apiSecret: string;
|
18418
18502
|
} | undefined;
|
18419
18503
|
lineRichMenuId?: string | null | undefined;
|
18504
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
18420
18505
|
};
|
18421
18506
|
status: boolean;
|
18422
18507
|
createdAt: Date;
|
@@ -19143,6 +19228,7 @@ export declare const facebookFeedContract: {
|
|
19143
19228
|
apiSecret: string;
|
19144
19229
|
} | undefined;
|
19145
19230
|
lineRichMenuId?: string | null | undefined;
|
19231
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
19146
19232
|
};
|
19147
19233
|
status: boolean;
|
19148
19234
|
createdAt: Date;
|
@@ -19873,6 +19959,7 @@ export declare const facebookFeedContract: {
|
|
19873
19959
|
apiSecret: string;
|
19874
19960
|
} | undefined;
|
19875
19961
|
lineRichMenuId?: string | null | undefined;
|
19962
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
19876
19963
|
};
|
19877
19964
|
status: boolean;
|
19878
19965
|
createdAt: Date;
|
@@ -20599,6 +20686,7 @@ export declare const facebookFeedContract: {
|
|
20599
20686
|
apiSecret: string;
|
20600
20687
|
} | undefined;
|
20601
20688
|
lineRichMenuId?: string | null | undefined;
|
20689
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
20602
20690
|
};
|
20603
20691
|
status: boolean;
|
20604
20692
|
createdAt: Date;
|
@@ -21252,6 +21340,7 @@ export declare const facebookFeedContract: {
|
|
21252
21340
|
apiSecret: string;
|
21253
21341
|
}>>;
|
21254
21342
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21343
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21255
21344
|
}, "strip", z.ZodTypeAny, {
|
21256
21345
|
id: string;
|
21257
21346
|
name: string;
|
@@ -21265,6 +21354,7 @@ export declare const facebookFeedContract: {
|
|
21265
21354
|
apiSecret: string;
|
21266
21355
|
} | undefined;
|
21267
21356
|
lineRichMenuId?: string | null | undefined;
|
21357
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21268
21358
|
}, {
|
21269
21359
|
id: string;
|
21270
21360
|
name: string;
|
@@ -21278,6 +21368,7 @@ export declare const facebookFeedContract: {
|
|
21278
21368
|
apiSecret: string;
|
21279
21369
|
} | undefined;
|
21280
21370
|
lineRichMenuId?: string | null | undefined;
|
21371
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21281
21372
|
}>;
|
21282
21373
|
platformId: z.ZodString;
|
21283
21374
|
brandName: z.ZodString;
|
@@ -21321,6 +21412,7 @@ export declare const facebookFeedContract: {
|
|
21321
21412
|
apiSecret: string;
|
21322
21413
|
} | undefined;
|
21323
21414
|
lineRichMenuId?: string | null | undefined;
|
21415
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21324
21416
|
};
|
21325
21417
|
status: boolean;
|
21326
21418
|
brandName: string;
|
@@ -21352,6 +21444,7 @@ export declare const facebookFeedContract: {
|
|
21352
21444
|
apiSecret: string;
|
21353
21445
|
} | undefined;
|
21354
21446
|
lineRichMenuId?: string | null | undefined;
|
21447
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21355
21448
|
};
|
21356
21449
|
status: boolean;
|
21357
21450
|
brandName: string;
|
@@ -21386,6 +21479,7 @@ export declare const facebookFeedContract: {
|
|
21386
21479
|
apiSecret: string;
|
21387
21480
|
} | undefined;
|
21388
21481
|
lineRichMenuId?: string | null | undefined;
|
21482
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21389
21483
|
};
|
21390
21484
|
status: boolean;
|
21391
21485
|
brandName: string;
|
@@ -21420,6 +21514,7 @@ export declare const facebookFeedContract: {
|
|
21420
21514
|
apiSecret: string;
|
21421
21515
|
} | undefined;
|
21422
21516
|
lineRichMenuId?: string | null | undefined;
|
21517
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21423
21518
|
};
|
21424
21519
|
status: boolean;
|
21425
21520
|
brandName: string;
|
@@ -21606,6 +21701,7 @@ export declare const facebookFeedContract: {
|
|
21606
21701
|
apiSecret: string;
|
21607
21702
|
} | undefined;
|
21608
21703
|
lineRichMenuId?: string | null | undefined;
|
21704
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21609
21705
|
};
|
21610
21706
|
status: boolean;
|
21611
21707
|
brandName: string;
|
@@ -21674,6 +21770,7 @@ export declare const facebookFeedContract: {
|
|
21674
21770
|
apiSecret: string;
|
21675
21771
|
} | undefined;
|
21676
21772
|
lineRichMenuId?: string | null | undefined;
|
21773
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21677
21774
|
};
|
21678
21775
|
status: boolean;
|
21679
21776
|
brandName: string;
|
@@ -21721,6 +21818,7 @@ export declare const facebookFeedContract: {
|
|
21721
21818
|
apiSecret: string;
|
21722
21819
|
}>>;
|
21723
21820
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21821
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21724
21822
|
}, "strip", z.ZodTypeAny, {
|
21725
21823
|
id: string;
|
21726
21824
|
name: string;
|
@@ -21734,6 +21832,7 @@ export declare const facebookFeedContract: {
|
|
21734
21832
|
apiSecret: string;
|
21735
21833
|
} | undefined;
|
21736
21834
|
lineRichMenuId?: string | null | undefined;
|
21835
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21737
21836
|
}, {
|
21738
21837
|
id: string;
|
21739
21838
|
name: string;
|
@@ -21747,6 +21846,7 @@ export declare const facebookFeedContract: {
|
|
21747
21846
|
apiSecret: string;
|
21748
21847
|
} | undefined;
|
21749
21848
|
lineRichMenuId?: string | null | undefined;
|
21849
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21750
21850
|
}>;
|
21751
21851
|
platformId: z.ZodString;
|
21752
21852
|
brandName: z.ZodString;
|
@@ -21790,6 +21890,7 @@ export declare const facebookFeedContract: {
|
|
21790
21890
|
apiSecret: string;
|
21791
21891
|
} | undefined;
|
21792
21892
|
lineRichMenuId?: string | null | undefined;
|
21893
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21793
21894
|
};
|
21794
21895
|
status: boolean;
|
21795
21896
|
brandName: string;
|
@@ -21821,6 +21922,7 @@ export declare const facebookFeedContract: {
|
|
21821
21922
|
apiSecret: string;
|
21822
21923
|
} | undefined;
|
21823
21924
|
lineRichMenuId?: string | null | undefined;
|
21925
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21824
21926
|
};
|
21825
21927
|
status: boolean;
|
21826
21928
|
brandName: string;
|
@@ -21855,6 +21957,7 @@ export declare const facebookFeedContract: {
|
|
21855
21957
|
apiSecret: string;
|
21856
21958
|
} | undefined;
|
21857
21959
|
lineRichMenuId?: string | null | undefined;
|
21960
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21858
21961
|
};
|
21859
21962
|
status: boolean;
|
21860
21963
|
brandName: string;
|
@@ -21889,6 +21992,7 @@ export declare const facebookFeedContract: {
|
|
21889
21992
|
apiSecret: string;
|
21890
21993
|
} | undefined;
|
21891
21994
|
lineRichMenuId?: string | null | undefined;
|
21995
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
21892
21996
|
};
|
21893
21997
|
status: boolean;
|
21894
21998
|
brandName: string;
|
@@ -22075,6 +22179,7 @@ export declare const facebookFeedContract: {
|
|
22075
22179
|
apiSecret: string;
|
22076
22180
|
} | undefined;
|
22077
22181
|
lineRichMenuId?: string | null | undefined;
|
22182
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
22078
22183
|
};
|
22079
22184
|
status: boolean;
|
22080
22185
|
brandName: string;
|
@@ -22143,6 +22248,7 @@ export declare const facebookFeedContract: {
|
|
22143
22248
|
apiSecret: string;
|
22144
22249
|
} | undefined;
|
22145
22250
|
lineRichMenuId?: string | null | undefined;
|
22251
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
22146
22252
|
};
|
22147
22253
|
status: boolean;
|
22148
22254
|
brandName: string;
|