@kl1/contracts 1.2.41-uat → 1.2.42-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/channel/index.d.ts +137 -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 +10 -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 +54 -0
- 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 +826 -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 +83 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +5 -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 +61 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +71 -0
- package/dist/api-contracts/src/whatsapp/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 +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -189,6 +189,7 @@ export declare const instagramContract: {
|
|
189
189
|
}>>;
|
190
190
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
191
191
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
192
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
192
193
|
}, "strip", z.ZodTypeAny, {
|
193
194
|
id: string;
|
194
195
|
name: string;
|
@@ -215,6 +216,7 @@ export declare const instagramContract: {
|
|
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;
|
@@ -241,6 +243,7 @@ export declare const instagramContract: {
|
|
241
243
|
} | undefined;
|
242
244
|
lineRichMenuId?: string | null | undefined;
|
243
245
|
messengerIntegrationType?: "own" | "business" | undefined;
|
246
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
244
247
|
}>;
|
245
248
|
platformId: z.ZodString;
|
246
249
|
brandName: z.ZodString;
|
@@ -297,6 +300,7 @@ export declare const instagramContract: {
|
|
297
300
|
} | undefined;
|
298
301
|
lineRichMenuId?: string | null | undefined;
|
299
302
|
messengerIntegrationType?: "own" | "business" | undefined;
|
303
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
300
304
|
};
|
301
305
|
status: boolean;
|
302
306
|
brandName: string;
|
@@ -341,6 +345,7 @@ export declare const instagramContract: {
|
|
341
345
|
} | undefined;
|
342
346
|
lineRichMenuId?: string | null | undefined;
|
343
347
|
messengerIntegrationType?: "own" | "business" | undefined;
|
348
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
344
349
|
};
|
345
350
|
status: boolean;
|
346
351
|
brandName: string;
|
@@ -390,6 +395,7 @@ export declare const instagramContract: {
|
|
390
395
|
} | undefined;
|
391
396
|
lineRichMenuId?: string | null | undefined;
|
392
397
|
messengerIntegrationType?: "own" | "business" | undefined;
|
398
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
393
399
|
};
|
394
400
|
status: boolean;
|
395
401
|
brandName: string;
|
@@ -478,6 +484,7 @@ export declare const instagramContract: {
|
|
478
484
|
} | undefined;
|
479
485
|
lineRichMenuId?: string | null | undefined;
|
480
486
|
messengerIntegrationType?: "own" | "business" | undefined;
|
487
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
481
488
|
};
|
482
489
|
status: boolean;
|
483
490
|
brandName: string;
|
@@ -734,6 +741,7 @@ export declare const instagramContract: {
|
|
734
741
|
} | undefined;
|
735
742
|
lineRichMenuId?: string | null | undefined;
|
736
743
|
messengerIntegrationType?: "own" | "business" | undefined;
|
744
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
737
745
|
};
|
738
746
|
status: boolean;
|
739
747
|
brandName: string;
|
@@ -861,6 +869,7 @@ export declare const instagramContract: {
|
|
861
869
|
} | undefined;
|
862
870
|
lineRichMenuId?: string | null | undefined;
|
863
871
|
messengerIntegrationType?: "own" | "business" | undefined;
|
872
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
864
873
|
};
|
865
874
|
status: boolean;
|
866
875
|
brandName: string;
|
@@ -2913,6 +2922,7 @@ export declare const instagramContract: {
|
|
2913
2922
|
}>>;
|
2914
2923
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2915
2924
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2925
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2916
2926
|
}, "strip", z.ZodTypeAny, {
|
2917
2927
|
id: string;
|
2918
2928
|
name: string;
|
@@ -2939,6 +2949,7 @@ export declare const instagramContract: {
|
|
2939
2949
|
} | undefined;
|
2940
2950
|
lineRichMenuId?: string | null | undefined;
|
2941
2951
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2952
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2942
2953
|
}, {
|
2943
2954
|
id: string;
|
2944
2955
|
name: string;
|
@@ -2965,6 +2976,7 @@ export declare const instagramContract: {
|
|
2965
2976
|
} | undefined;
|
2966
2977
|
lineRichMenuId?: string | null | undefined;
|
2967
2978
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2979
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2968
2980
|
}>;
|
2969
2981
|
brandName: z.ZodString;
|
2970
2982
|
platformId: z.ZodString;
|
@@ -3225,6 +3237,7 @@ export declare const instagramContract: {
|
|
3225
3237
|
} | undefined;
|
3226
3238
|
lineRichMenuId?: string | null | undefined;
|
3227
3239
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3240
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3228
3241
|
};
|
3229
3242
|
status: boolean;
|
3230
3243
|
createdAt: Date;
|
@@ -3316,6 +3329,7 @@ export declare const instagramContract: {
|
|
3316
3329
|
} | undefined;
|
3317
3330
|
lineRichMenuId?: string | null | undefined;
|
3318
3331
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3332
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3319
3333
|
};
|
3320
3334
|
status: boolean;
|
3321
3335
|
createdAt: Date;
|
@@ -3971,6 +3985,7 @@ export declare const instagramContract: {
|
|
3971
3985
|
} | undefined;
|
3972
3986
|
lineRichMenuId?: string | null | undefined;
|
3973
3987
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3988
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3974
3989
|
};
|
3975
3990
|
status: boolean;
|
3976
3991
|
createdAt: Date;
|
@@ -4395,6 +4410,7 @@ export declare const instagramContract: {
|
|
4395
4410
|
} | undefined;
|
4396
4411
|
lineRichMenuId?: string | null | undefined;
|
4397
4412
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4413
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
4398
4414
|
};
|
4399
4415
|
status: boolean;
|
4400
4416
|
createdAt: Date;
|
@@ -7565,6 +7581,7 @@ export declare const instagramContract: {
|
|
7565
7581
|
}>>;
|
7566
7582
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7567
7583
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
7584
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
7568
7585
|
}, "strip", z.ZodTypeAny, {
|
7569
7586
|
id: string;
|
7570
7587
|
name: string;
|
@@ -7591,6 +7608,7 @@ export declare const instagramContract: {
|
|
7591
7608
|
} | undefined;
|
7592
7609
|
lineRichMenuId?: string | null | undefined;
|
7593
7610
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7611
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7594
7612
|
}, {
|
7595
7613
|
id: string;
|
7596
7614
|
name: string;
|
@@ -7617,6 +7635,7 @@ export declare const instagramContract: {
|
|
7617
7635
|
} | undefined;
|
7618
7636
|
lineRichMenuId?: string | null | undefined;
|
7619
7637
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7638
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7620
7639
|
}>;
|
7621
7640
|
brandName: z.ZodString;
|
7622
7641
|
platformId: z.ZodString;
|
@@ -7877,6 +7896,7 @@ export declare const instagramContract: {
|
|
7877
7896
|
} | undefined;
|
7878
7897
|
lineRichMenuId?: string | null | undefined;
|
7879
7898
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7899
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7880
7900
|
};
|
7881
7901
|
status: boolean;
|
7882
7902
|
createdAt: Date;
|
@@ -7968,6 +7988,7 @@ export declare const instagramContract: {
|
|
7968
7988
|
} | undefined;
|
7969
7989
|
lineRichMenuId?: string | null | undefined;
|
7970
7990
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7991
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7971
7992
|
};
|
7972
7993
|
status: boolean;
|
7973
7994
|
createdAt: Date;
|
@@ -8623,6 +8644,7 @@ export declare const instagramContract: {
|
|
8623
8644
|
} | undefined;
|
8624
8645
|
lineRichMenuId?: string | null | undefined;
|
8625
8646
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8647
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
8626
8648
|
};
|
8627
8649
|
status: boolean;
|
8628
8650
|
createdAt: Date;
|
@@ -9047,6 +9069,7 @@ export declare const instagramContract: {
|
|
9047
9069
|
} | undefined;
|
9048
9070
|
lineRichMenuId?: string | null | undefined;
|
9049
9071
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9072
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
9050
9073
|
};
|
9051
9074
|
status: boolean;
|
9052
9075
|
createdAt: Date;
|
@@ -11244,6 +11267,7 @@ export declare const instagramContract: {
|
|
11244
11267
|
} | undefined;
|
11245
11268
|
lineRichMenuId?: string | null | undefined;
|
11246
11269
|
messengerIntegrationType?: "own" | "business" | undefined;
|
11270
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
11247
11271
|
};
|
11248
11272
|
status: boolean;
|
11249
11273
|
createdAt: Date;
|
@@ -12005,6 +12029,7 @@ export declare const instagramContract: {
|
|
12005
12029
|
} | undefined;
|
12006
12030
|
lineRichMenuId?: string | null | undefined;
|
12007
12031
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12032
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
12008
12033
|
};
|
12009
12034
|
status: boolean;
|
12010
12035
|
createdAt: Date;
|
@@ -12767,6 +12792,7 @@ export declare const instagramContract: {
|
|
12767
12792
|
} | undefined;
|
12768
12793
|
lineRichMenuId?: string | null | undefined;
|
12769
12794
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12795
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
12770
12796
|
};
|
12771
12797
|
status: boolean;
|
12772
12798
|
createdAt: Date;
|
@@ -13528,6 +13554,7 @@ export declare const instagramContract: {
|
|
13528
13554
|
} | undefined;
|
13529
13555
|
lineRichMenuId?: string | null | undefined;
|
13530
13556
|
messengerIntegrationType?: "own" | "business" | undefined;
|
13557
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
13531
13558
|
};
|
13532
13559
|
status: boolean;
|
13533
13560
|
createdAt: Date;
|
@@ -14290,6 +14317,7 @@ export declare const instagramContract: {
|
|
14290
14317
|
} | undefined;
|
14291
14318
|
lineRichMenuId?: string | null | undefined;
|
14292
14319
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14320
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
14293
14321
|
};
|
14294
14322
|
status: boolean;
|
14295
14323
|
createdAt: Date;
|
@@ -15051,6 +15079,7 @@ export declare const instagramContract: {
|
|
15051
15079
|
} | undefined;
|
15052
15080
|
lineRichMenuId?: string | null | undefined;
|
15053
15081
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15082
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
15054
15083
|
};
|
15055
15084
|
status: boolean;
|
15056
15085
|
createdAt: Date;
|
@@ -15815,6 +15844,7 @@ export declare const instagramContract: {
|
|
15815
15844
|
} | undefined;
|
15816
15845
|
lineRichMenuId?: string | null | undefined;
|
15817
15846
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15847
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
15818
15848
|
};
|
15819
15849
|
status: boolean;
|
15820
15850
|
createdAt: Date;
|
@@ -16576,6 +16606,7 @@ export declare const instagramContract: {
|
|
16576
16606
|
} | undefined;
|
16577
16607
|
lineRichMenuId?: string | null | undefined;
|
16578
16608
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16609
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
16579
16610
|
};
|
16580
16611
|
status: boolean;
|
16581
16612
|
createdAt: Date;
|
@@ -17341,6 +17372,7 @@ export declare const instagramContract: {
|
|
17341
17372
|
} | undefined;
|
17342
17373
|
lineRichMenuId?: string | null | undefined;
|
17343
17374
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17375
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
17344
17376
|
};
|
17345
17377
|
status: boolean;
|
17346
17378
|
createdAt: Date;
|
@@ -18102,6 +18134,7 @@ export declare const instagramContract: {
|
|
18102
18134
|
} | undefined;
|
18103
18135
|
lineRichMenuId?: string | null | undefined;
|
18104
18136
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18137
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18105
18138
|
};
|
18106
18139
|
status: boolean;
|
18107
18140
|
createdAt: Date;
|
@@ -18799,6 +18832,7 @@ export declare const instagramContract: {
|
|
18799
18832
|
}>>;
|
18800
18833
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
18801
18834
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
18835
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
18802
18836
|
}, "strip", z.ZodTypeAny, {
|
18803
18837
|
id: string;
|
18804
18838
|
name: string;
|
@@ -18825,6 +18859,7 @@ export declare const instagramContract: {
|
|
18825
18859
|
} | undefined;
|
18826
18860
|
lineRichMenuId?: string | null | undefined;
|
18827
18861
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18862
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18828
18863
|
}, {
|
18829
18864
|
id: string;
|
18830
18865
|
name: string;
|
@@ -18851,6 +18886,7 @@ export declare const instagramContract: {
|
|
18851
18886
|
} | undefined;
|
18852
18887
|
lineRichMenuId?: string | null | undefined;
|
18853
18888
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18889
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18854
18890
|
}>>;
|
18855
18891
|
platformId: z.ZodOptional<z.ZodString>;
|
18856
18892
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -18907,6 +18943,7 @@ export declare const instagramContract: {
|
|
18907
18943
|
} | undefined;
|
18908
18944
|
lineRichMenuId?: string | null | undefined;
|
18909
18945
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18946
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18910
18947
|
} | undefined;
|
18911
18948
|
platformId?: string | undefined;
|
18912
18949
|
brandName?: string | undefined;
|
@@ -18951,6 +18988,7 @@ export declare const instagramContract: {
|
|
18951
18988
|
} | undefined;
|
18952
18989
|
lineRichMenuId?: string | null | undefined;
|
18953
18990
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18991
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18954
18992
|
} | undefined;
|
18955
18993
|
platformId?: string | undefined;
|
18956
18994
|
brandName?: string | undefined;
|
@@ -19030,6 +19068,7 @@ export declare const instagramContract: {
|
|
19030
19068
|
}>>;
|
19031
19069
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19032
19070
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19071
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19033
19072
|
}, "strip", z.ZodTypeAny, {
|
19034
19073
|
id: string;
|
19035
19074
|
name: string;
|
@@ -19056,6 +19095,7 @@ export declare const instagramContract: {
|
|
19056
19095
|
} | undefined;
|
19057
19096
|
lineRichMenuId?: string | null | undefined;
|
19058
19097
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19098
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19059
19099
|
}, {
|
19060
19100
|
id: string;
|
19061
19101
|
name: string;
|
@@ -19082,6 +19122,7 @@ export declare const instagramContract: {
|
|
19082
19122
|
} | undefined;
|
19083
19123
|
lineRichMenuId?: string | null | undefined;
|
19084
19124
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19125
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19085
19126
|
}>;
|
19086
19127
|
platformId: z.ZodString;
|
19087
19128
|
brandName: z.ZodString;
|
@@ -19138,6 +19179,7 @@ export declare const instagramContract: {
|
|
19138
19179
|
} | undefined;
|
19139
19180
|
lineRichMenuId?: string | null | undefined;
|
19140
19181
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19182
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19141
19183
|
};
|
19142
19184
|
status: boolean;
|
19143
19185
|
brandName: string;
|
@@ -19182,6 +19224,7 @@ export declare const instagramContract: {
|
|
19182
19224
|
} | undefined;
|
19183
19225
|
lineRichMenuId?: string | null | undefined;
|
19184
19226
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19227
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19185
19228
|
};
|
19186
19229
|
status: boolean;
|
19187
19230
|
brandName: string;
|
@@ -19228,6 +19271,7 @@ export declare const instagramContract: {
|
|
19228
19271
|
} | undefined;
|
19229
19272
|
lineRichMenuId?: string | null | undefined;
|
19230
19273
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19274
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19231
19275
|
};
|
19232
19276
|
status: boolean;
|
19233
19277
|
brandName: string;
|
@@ -19275,6 +19319,7 @@ export declare const instagramContract: {
|
|
19275
19319
|
} | undefined;
|
19276
19320
|
lineRichMenuId?: string | null | undefined;
|
19277
19321
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19322
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19278
19323
|
};
|
19279
19324
|
status: boolean;
|
19280
19325
|
brandName: string;
|
@@ -19376,6 +19421,7 @@ export declare const instagramContract: {
|
|
19376
19421
|
}>>;
|
19377
19422
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19378
19423
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19424
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19379
19425
|
}, "strip", z.ZodTypeAny, {
|
19380
19426
|
id: string;
|
19381
19427
|
name: string;
|
@@ -19402,6 +19448,7 @@ export declare const instagramContract: {
|
|
19402
19448
|
} | undefined;
|
19403
19449
|
lineRichMenuId?: string | null | undefined;
|
19404
19450
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19451
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19405
19452
|
}, {
|
19406
19453
|
id: string;
|
19407
19454
|
name: string;
|
@@ -19428,6 +19475,7 @@ export declare const instagramContract: {
|
|
19428
19475
|
} | undefined;
|
19429
19476
|
lineRichMenuId?: string | null | undefined;
|
19430
19477
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19478
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19431
19479
|
}>>;
|
19432
19480
|
platformId: z.ZodOptional<z.ZodString>;
|
19433
19481
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -19484,6 +19532,7 @@ export declare const instagramContract: {
|
|
19484
19532
|
} | undefined;
|
19485
19533
|
lineRichMenuId?: string | null | undefined;
|
19486
19534
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19535
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19487
19536
|
} | undefined;
|
19488
19537
|
platformId?: string | undefined;
|
19489
19538
|
brandName?: string | undefined;
|
@@ -19528,6 +19577,7 @@ export declare const instagramContract: {
|
|
19528
19577
|
} | undefined;
|
19529
19578
|
lineRichMenuId?: string | null | undefined;
|
19530
19579
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19580
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19531
19581
|
} | undefined;
|
19532
19582
|
platformId?: string | undefined;
|
19533
19583
|
brandName?: string | undefined;
|
@@ -19607,6 +19657,7 @@ export declare const instagramContract: {
|
|
19607
19657
|
}>>;
|
19608
19658
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19609
19659
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19660
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19610
19661
|
}, "strip", z.ZodTypeAny, {
|
19611
19662
|
id: string;
|
19612
19663
|
name: string;
|
@@ -19633,6 +19684,7 @@ export declare const instagramContract: {
|
|
19633
19684
|
} | undefined;
|
19634
19685
|
lineRichMenuId?: string | null | undefined;
|
19635
19686
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19687
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19636
19688
|
}, {
|
19637
19689
|
id: string;
|
19638
19690
|
name: string;
|
@@ -19659,6 +19711,7 @@ export declare const instagramContract: {
|
|
19659
19711
|
} | undefined;
|
19660
19712
|
lineRichMenuId?: string | null | undefined;
|
19661
19713
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19714
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19662
19715
|
}>;
|
19663
19716
|
platformId: z.ZodString;
|
19664
19717
|
brandName: z.ZodString;
|
@@ -19715,6 +19768,7 @@ export declare const instagramContract: {
|
|
19715
19768
|
} | undefined;
|
19716
19769
|
lineRichMenuId?: string | null | undefined;
|
19717
19770
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19771
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19718
19772
|
};
|
19719
19773
|
status: boolean;
|
19720
19774
|
brandName: string;
|
@@ -19759,6 +19813,7 @@ export declare const instagramContract: {
|
|
19759
19813
|
} | undefined;
|
19760
19814
|
lineRichMenuId?: string | null | undefined;
|
19761
19815
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19816
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19762
19817
|
};
|
19763
19818
|
status: boolean;
|
19764
19819
|
brandName: string;
|
@@ -19805,6 +19860,7 @@ export declare const instagramContract: {
|
|
19805
19860
|
} | undefined;
|
19806
19861
|
lineRichMenuId?: string | null | undefined;
|
19807
19862
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19863
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19808
19864
|
};
|
19809
19865
|
status: boolean;
|
19810
19866
|
brandName: string;
|
@@ -19852,6 +19908,7 @@ export declare const instagramContract: {
|
|
19852
19908
|
} | undefined;
|
19853
19909
|
lineRichMenuId?: string | null | undefined;
|
19854
19910
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19911
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19855
19912
|
};
|
19856
19913
|
status: boolean;
|
19857
19914
|
brandName: string;
|
@@ -19965,6 +20022,7 @@ export declare const instagramContract: {
|
|
19965
20022
|
}>>;
|
19966
20023
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19967
20024
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20025
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19968
20026
|
}, "strip", z.ZodTypeAny, {
|
19969
20027
|
id: string;
|
19970
20028
|
name: string;
|
@@ -19991,6 +20049,7 @@ export declare const instagramContract: {
|
|
19991
20049
|
} | undefined;
|
19992
20050
|
lineRichMenuId?: string | null | undefined;
|
19993
20051
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20052
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19994
20053
|
}, {
|
19995
20054
|
id: string;
|
19996
20055
|
name: string;
|
@@ -20017,6 +20076,7 @@ export declare const instagramContract: {
|
|
20017
20076
|
} | undefined;
|
20018
20077
|
lineRichMenuId?: string | null | undefined;
|
20019
20078
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20079
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20020
20080
|
}>;
|
20021
20081
|
platformId: z.ZodString;
|
20022
20082
|
brandName: z.ZodString;
|
@@ -20073,6 +20133,7 @@ export declare const instagramContract: {
|
|
20073
20133
|
} | undefined;
|
20074
20134
|
lineRichMenuId?: string | null | undefined;
|
20075
20135
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20136
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20076
20137
|
};
|
20077
20138
|
status: boolean;
|
20078
20139
|
brandName: string;
|
@@ -20117,6 +20178,7 @@ export declare const instagramContract: {
|
|
20117
20178
|
} | undefined;
|
20118
20179
|
lineRichMenuId?: string | null | undefined;
|
20119
20180
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20181
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20120
20182
|
};
|
20121
20183
|
status: boolean;
|
20122
20184
|
brandName: string;
|
@@ -20163,6 +20225,7 @@ export declare const instagramContract: {
|
|
20163
20225
|
} | undefined;
|
20164
20226
|
lineRichMenuId?: string | null | undefined;
|
20165
20227
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20228
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20166
20229
|
};
|
20167
20230
|
status: boolean;
|
20168
20231
|
brandName: string;
|
@@ -20210,6 +20273,7 @@ export declare const instagramContract: {
|
|
20210
20273
|
} | undefined;
|
20211
20274
|
lineRichMenuId?: string | null | undefined;
|
20212
20275
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20276
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20213
20277
|
};
|
20214
20278
|
status: boolean;
|
20215
20279
|
brandName: string;
|
@@ -20323,6 +20387,7 @@ export declare const instagramContract: {
|
|
20323
20387
|
}>>;
|
20324
20388
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20325
20389
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20390
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20326
20391
|
}, "strip", z.ZodTypeAny, {
|
20327
20392
|
id: string;
|
20328
20393
|
name: string;
|
@@ -20349,6 +20414,7 @@ export declare const instagramContract: {
|
|
20349
20414
|
} | undefined;
|
20350
20415
|
lineRichMenuId?: string | null | undefined;
|
20351
20416
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20417
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20352
20418
|
}, {
|
20353
20419
|
id: string;
|
20354
20420
|
name: string;
|
@@ -20375,6 +20441,7 @@ export declare const instagramContract: {
|
|
20375
20441
|
} | undefined;
|
20376
20442
|
lineRichMenuId?: string | null | undefined;
|
20377
20443
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20444
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20378
20445
|
}>;
|
20379
20446
|
platformId: z.ZodString;
|
20380
20447
|
brandName: z.ZodString;
|
@@ -20431,6 +20498,7 @@ export declare const instagramContract: {
|
|
20431
20498
|
} | undefined;
|
20432
20499
|
lineRichMenuId?: string | null | undefined;
|
20433
20500
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20501
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20434
20502
|
};
|
20435
20503
|
status: boolean;
|
20436
20504
|
brandName: string;
|
@@ -20475,6 +20543,7 @@ export declare const instagramContract: {
|
|
20475
20543
|
} | undefined;
|
20476
20544
|
lineRichMenuId?: string | null | undefined;
|
20477
20545
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20546
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20478
20547
|
};
|
20479
20548
|
status: boolean;
|
20480
20549
|
brandName: string;
|
@@ -20521,6 +20590,7 @@ export declare const instagramContract: {
|
|
20521
20590
|
} | undefined;
|
20522
20591
|
lineRichMenuId?: string | null | undefined;
|
20523
20592
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20593
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20524
20594
|
};
|
20525
20595
|
status: boolean;
|
20526
20596
|
brandName: string;
|
@@ -20568,6 +20638,7 @@ export declare const instagramContract: {
|
|
20568
20638
|
} | undefined;
|
20569
20639
|
lineRichMenuId?: string | null | undefined;
|
20570
20640
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20641
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20571
20642
|
};
|
20572
20643
|
status: boolean;
|
20573
20644
|
brandName: string;
|
@@ -20669,6 +20740,7 @@ export declare const instagramContract: {
|
|
20669
20740
|
}>>;
|
20670
20741
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20671
20742
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20743
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20672
20744
|
}, "strip", z.ZodTypeAny, {
|
20673
20745
|
id: string;
|
20674
20746
|
name: string;
|
@@ -20695,6 +20767,7 @@ export declare const instagramContract: {
|
|
20695
20767
|
} | undefined;
|
20696
20768
|
lineRichMenuId?: string | null | undefined;
|
20697
20769
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20770
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20698
20771
|
}, {
|
20699
20772
|
id: string;
|
20700
20773
|
name: string;
|
@@ -20721,6 +20794,7 @@ export declare const instagramContract: {
|
|
20721
20794
|
} | undefined;
|
20722
20795
|
lineRichMenuId?: string | null | undefined;
|
20723
20796
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20797
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20724
20798
|
}>>;
|
20725
20799
|
platformId: z.ZodOptional<z.ZodString>;
|
20726
20800
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -20777,6 +20851,7 @@ export declare const instagramContract: {
|
|
20777
20851
|
} | undefined;
|
20778
20852
|
lineRichMenuId?: string | null | undefined;
|
20779
20853
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20854
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20780
20855
|
} | undefined;
|
20781
20856
|
platformId?: string | undefined;
|
20782
20857
|
brandName?: string | undefined;
|
@@ -20821,6 +20896,7 @@ export declare const instagramContract: {
|
|
20821
20896
|
} | undefined;
|
20822
20897
|
lineRichMenuId?: string | null | undefined;
|
20823
20898
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20899
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20824
20900
|
} | undefined;
|
20825
20901
|
platformId?: string | undefined;
|
20826
20902
|
brandName?: string | undefined;
|
@@ -20900,6 +20976,7 @@ export declare const instagramContract: {
|
|
20900
20976
|
}>>;
|
20901
20977
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20902
20978
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20979
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20903
20980
|
}, "strip", z.ZodTypeAny, {
|
20904
20981
|
id: string;
|
20905
20982
|
name: string;
|
@@ -20926,6 +21003,7 @@ export declare const instagramContract: {
|
|
20926
21003
|
} | undefined;
|
20927
21004
|
lineRichMenuId?: string | null | undefined;
|
20928
21005
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21006
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20929
21007
|
}, {
|
20930
21008
|
id: string;
|
20931
21009
|
name: string;
|
@@ -20952,6 +21030,7 @@ export declare const instagramContract: {
|
|
20952
21030
|
} | undefined;
|
20953
21031
|
lineRichMenuId?: string | null | undefined;
|
20954
21032
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21033
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20955
21034
|
}>;
|
20956
21035
|
platformId: z.ZodString;
|
20957
21036
|
brandName: z.ZodString;
|
@@ -21008,6 +21087,7 @@ export declare const instagramContract: {
|
|
21008
21087
|
} | undefined;
|
21009
21088
|
lineRichMenuId?: string | null | undefined;
|
21010
21089
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21090
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21011
21091
|
};
|
21012
21092
|
status: boolean;
|
21013
21093
|
brandName: string;
|
@@ -21052,6 +21132,7 @@ export declare const instagramContract: {
|
|
21052
21132
|
} | undefined;
|
21053
21133
|
lineRichMenuId?: string | null | undefined;
|
21054
21134
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21135
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21055
21136
|
};
|
21056
21137
|
status: boolean;
|
21057
21138
|
brandName: string;
|
@@ -21098,6 +21179,7 @@ export declare const instagramContract: {
|
|
21098
21179
|
} | undefined;
|
21099
21180
|
lineRichMenuId?: string | null | undefined;
|
21100
21181
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21182
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21101
21183
|
};
|
21102
21184
|
status: boolean;
|
21103
21185
|
brandName: string;
|
@@ -21145,6 +21227,7 @@ export declare const instagramContract: {
|
|
21145
21227
|
} | undefined;
|
21146
21228
|
lineRichMenuId?: string | null | undefined;
|
21147
21229
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21230
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21148
21231
|
};
|
21149
21232
|
status: boolean;
|
21150
21233
|
brandName: string;
|