@kl1/contracts 1.2.60-uat → 1.2.61-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/channel/index.d.ts +144 -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 +872 -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 +37 -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 +29 -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
|
@@ -94,6 +94,7 @@ export declare const channelContract: {
|
|
|
94
94
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
95
95
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
96
96
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
97
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
97
98
|
}, "strip", z.ZodTypeAny, {
|
|
98
99
|
name: string;
|
|
99
100
|
id: string;
|
|
@@ -123,6 +124,7 @@ export declare const channelContract: {
|
|
|
123
124
|
lineRichMenuId?: string | null | undefined;
|
|
124
125
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
125
126
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
127
|
+
isCSATEnabled?: boolean | undefined;
|
|
126
128
|
}, {
|
|
127
129
|
name: string;
|
|
128
130
|
id: string;
|
|
@@ -152,6 +154,7 @@ export declare const channelContract: {
|
|
|
152
154
|
lineRichMenuId?: string | null | undefined;
|
|
153
155
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
154
156
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
157
|
+
isCSATEnabled?: boolean | undefined;
|
|
155
158
|
}>;
|
|
156
159
|
brandName: z.ZodString;
|
|
157
160
|
platformId: z.ZodString;
|
|
@@ -415,6 +418,7 @@ export declare const channelContract: {
|
|
|
415
418
|
lineRichMenuId?: string | null | undefined;
|
|
416
419
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
417
420
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
421
|
+
isCSATEnabled?: boolean | undefined;
|
|
418
422
|
};
|
|
419
423
|
status: boolean;
|
|
420
424
|
createdAt: Date;
|
|
@@ -509,6 +513,7 @@ export declare const channelContract: {
|
|
|
509
513
|
lineRichMenuId?: string | null | undefined;
|
|
510
514
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
511
515
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
516
|
+
isCSATEnabled?: boolean | undefined;
|
|
512
517
|
};
|
|
513
518
|
status: boolean;
|
|
514
519
|
createdAt: Date;
|
|
@@ -605,6 +610,7 @@ export declare const channelContract: {
|
|
|
605
610
|
lineRichMenuId?: string | null | undefined;
|
|
606
611
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
607
612
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
613
|
+
isCSATEnabled?: boolean | undefined;
|
|
608
614
|
};
|
|
609
615
|
status: boolean;
|
|
610
616
|
createdAt: Date;
|
|
@@ -702,6 +708,7 @@ export declare const channelContract: {
|
|
|
702
708
|
lineRichMenuId?: string | null | undefined;
|
|
703
709
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
704
710
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
711
|
+
isCSATEnabled?: boolean | undefined;
|
|
705
712
|
};
|
|
706
713
|
status: boolean;
|
|
707
714
|
createdAt: Date;
|
|
@@ -865,6 +872,7 @@ export declare const channelContract: {
|
|
|
865
872
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
866
873
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
867
874
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
875
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
868
876
|
}, "strip", z.ZodTypeAny, {
|
|
869
877
|
name: string;
|
|
870
878
|
id: string;
|
|
@@ -894,6 +902,7 @@ export declare const channelContract: {
|
|
|
894
902
|
lineRichMenuId?: string | null | undefined;
|
|
895
903
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
896
904
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
905
|
+
isCSATEnabled?: boolean | undefined;
|
|
897
906
|
}, {
|
|
898
907
|
name: string;
|
|
899
908
|
id: string;
|
|
@@ -923,6 +932,7 @@ export declare const channelContract: {
|
|
|
923
932
|
lineRichMenuId?: string | null | undefined;
|
|
924
933
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
925
934
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
935
|
+
isCSATEnabled?: boolean | undefined;
|
|
926
936
|
}>;
|
|
927
937
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
|
928
938
|
actor: z.ZodOptional<z.ZodObject<{
|
|
@@ -987,6 +997,7 @@ export declare const channelContract: {
|
|
|
987
997
|
lineRichMenuId?: string | null | undefined;
|
|
988
998
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
989
999
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1000
|
+
isCSATEnabled?: boolean | undefined;
|
|
990
1001
|
};
|
|
991
1002
|
status: boolean;
|
|
992
1003
|
createdAt: string;
|
|
@@ -1038,6 +1049,7 @@ export declare const channelContract: {
|
|
|
1038
1049
|
lineRichMenuId?: string | null | undefined;
|
|
1039
1050
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1040
1051
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1052
|
+
isCSATEnabled?: boolean | undefined;
|
|
1041
1053
|
};
|
|
1042
1054
|
status: boolean;
|
|
1043
1055
|
createdAt: string;
|
|
@@ -1091,6 +1103,7 @@ export declare const channelContract: {
|
|
|
1091
1103
|
lineRichMenuId?: string | null | undefined;
|
|
1092
1104
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1093
1105
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1106
|
+
isCSATEnabled?: boolean | undefined;
|
|
1094
1107
|
};
|
|
1095
1108
|
status: boolean;
|
|
1096
1109
|
createdAt: string;
|
|
@@ -1145,6 +1158,7 @@ export declare const channelContract: {
|
|
|
1145
1158
|
lineRichMenuId?: string | null | undefined;
|
|
1146
1159
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1147
1160
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1161
|
+
isCSATEnabled?: boolean | undefined;
|
|
1148
1162
|
};
|
|
1149
1163
|
status: boolean;
|
|
1150
1164
|
createdAt: string;
|
|
@@ -1279,6 +1293,7 @@ export declare const channelContract: {
|
|
|
1279
1293
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1280
1294
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
1281
1295
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
1296
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1282
1297
|
}, "strip", z.ZodTypeAny, {
|
|
1283
1298
|
name: string;
|
|
1284
1299
|
id: string;
|
|
@@ -1308,6 +1323,7 @@ export declare const channelContract: {
|
|
|
1308
1323
|
lineRichMenuId?: string | null | undefined;
|
|
1309
1324
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1310
1325
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1326
|
+
isCSATEnabled?: boolean | undefined;
|
|
1311
1327
|
}, {
|
|
1312
1328
|
name: string;
|
|
1313
1329
|
id: string;
|
|
@@ -1337,6 +1353,7 @@ export declare const channelContract: {
|
|
|
1337
1353
|
lineRichMenuId?: string | null | undefined;
|
|
1338
1354
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1339
1355
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1356
|
+
isCSATEnabled?: boolean | undefined;
|
|
1340
1357
|
}>;
|
|
1341
1358
|
brandName: z.ZodString;
|
|
1342
1359
|
platformId: z.ZodString;
|
|
@@ -1600,6 +1617,7 @@ export declare const channelContract: {
|
|
|
1600
1617
|
lineRichMenuId?: string | null | undefined;
|
|
1601
1618
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1602
1619
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1620
|
+
isCSATEnabled?: boolean | undefined;
|
|
1603
1621
|
};
|
|
1604
1622
|
status: boolean;
|
|
1605
1623
|
createdAt: Date;
|
|
@@ -1694,6 +1712,7 @@ export declare const channelContract: {
|
|
|
1694
1712
|
lineRichMenuId?: string | null | undefined;
|
|
1695
1713
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1696
1714
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1715
|
+
isCSATEnabled?: boolean | undefined;
|
|
1697
1716
|
};
|
|
1698
1717
|
status: boolean;
|
|
1699
1718
|
createdAt: Date;
|
|
@@ -1790,6 +1809,7 @@ export declare const channelContract: {
|
|
|
1790
1809
|
lineRichMenuId?: string | null | undefined;
|
|
1791
1810
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1792
1811
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1812
|
+
isCSATEnabled?: boolean | undefined;
|
|
1793
1813
|
};
|
|
1794
1814
|
status: boolean;
|
|
1795
1815
|
createdAt: Date;
|
|
@@ -1887,6 +1907,7 @@ export declare const channelContract: {
|
|
|
1887
1907
|
lineRichMenuId?: string | null | undefined;
|
|
1888
1908
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1889
1909
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1910
|
+
isCSATEnabled?: boolean | undefined;
|
|
1890
1911
|
};
|
|
1891
1912
|
status: boolean;
|
|
1892
1913
|
createdAt: Date;
|
|
@@ -2070,6 +2091,7 @@ export declare const channelContract: {
|
|
|
2070
2091
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2071
2092
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
2072
2093
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
2094
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2073
2095
|
}, "strip", z.ZodTypeAny, {
|
|
2074
2096
|
name: string;
|
|
2075
2097
|
id: string;
|
|
@@ -2099,6 +2121,7 @@ export declare const channelContract: {
|
|
|
2099
2121
|
lineRichMenuId?: string | null | undefined;
|
|
2100
2122
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2101
2123
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2124
|
+
isCSATEnabled?: boolean | undefined;
|
|
2102
2125
|
}, {
|
|
2103
2126
|
name: string;
|
|
2104
2127
|
id: string;
|
|
@@ -2128,6 +2151,7 @@ export declare const channelContract: {
|
|
|
2128
2151
|
lineRichMenuId?: string | null | undefined;
|
|
2129
2152
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2130
2153
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2154
|
+
isCSATEnabled?: boolean | undefined;
|
|
2131
2155
|
}>;
|
|
2132
2156
|
brandName: z.ZodString;
|
|
2133
2157
|
platformId: z.ZodString;
|
|
@@ -2391,6 +2415,7 @@ export declare const channelContract: {
|
|
|
2391
2415
|
lineRichMenuId?: string | null | undefined;
|
|
2392
2416
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2393
2417
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2418
|
+
isCSATEnabled?: boolean | undefined;
|
|
2394
2419
|
};
|
|
2395
2420
|
status: boolean;
|
|
2396
2421
|
createdAt: Date;
|
|
@@ -2485,6 +2510,7 @@ export declare const channelContract: {
|
|
|
2485
2510
|
lineRichMenuId?: string | null | undefined;
|
|
2486
2511
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2487
2512
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2513
|
+
isCSATEnabled?: boolean | undefined;
|
|
2488
2514
|
};
|
|
2489
2515
|
status: boolean;
|
|
2490
2516
|
createdAt: Date;
|
|
@@ -2581,6 +2607,7 @@ export declare const channelContract: {
|
|
|
2581
2607
|
lineRichMenuId?: string | null | undefined;
|
|
2582
2608
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2583
2609
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2610
|
+
isCSATEnabled?: boolean | undefined;
|
|
2584
2611
|
};
|
|
2585
2612
|
status: boolean;
|
|
2586
2613
|
createdAt: Date;
|
|
@@ -2678,6 +2705,7 @@ export declare const channelContract: {
|
|
|
2678
2705
|
lineRichMenuId?: string | null | undefined;
|
|
2679
2706
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2680
2707
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2708
|
+
isCSATEnabled?: boolean | undefined;
|
|
2681
2709
|
};
|
|
2682
2710
|
status: boolean;
|
|
2683
2711
|
createdAt: Date;
|
|
@@ -2855,6 +2883,7 @@ export declare const channelContract: {
|
|
|
2855
2883
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2856
2884
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
2857
2885
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
2886
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2858
2887
|
}, "strip", z.ZodTypeAny, {
|
|
2859
2888
|
name: string;
|
|
2860
2889
|
id: string;
|
|
@@ -2884,6 +2913,7 @@ export declare const channelContract: {
|
|
|
2884
2913
|
lineRichMenuId?: string | null | undefined;
|
|
2885
2914
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2886
2915
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2916
|
+
isCSATEnabled?: boolean | undefined;
|
|
2887
2917
|
}, {
|
|
2888
2918
|
name: string;
|
|
2889
2919
|
id: string;
|
|
@@ -2913,6 +2943,7 @@ export declare const channelContract: {
|
|
|
2913
2943
|
lineRichMenuId?: string | null | undefined;
|
|
2914
2944
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2915
2945
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2946
|
+
isCSATEnabled?: boolean | undefined;
|
|
2916
2947
|
}>;
|
|
2917
2948
|
brandName: z.ZodString;
|
|
2918
2949
|
platformId: z.ZodString;
|
|
@@ -3176,6 +3207,7 @@ export declare const channelContract: {
|
|
|
3176
3207
|
lineRichMenuId?: string | null | undefined;
|
|
3177
3208
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3178
3209
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3210
|
+
isCSATEnabled?: boolean | undefined;
|
|
3179
3211
|
};
|
|
3180
3212
|
status: boolean;
|
|
3181
3213
|
createdAt: Date;
|
|
@@ -3270,6 +3302,7 @@ export declare const channelContract: {
|
|
|
3270
3302
|
lineRichMenuId?: string | null | undefined;
|
|
3271
3303
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3272
3304
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3305
|
+
isCSATEnabled?: boolean | undefined;
|
|
3273
3306
|
};
|
|
3274
3307
|
status: boolean;
|
|
3275
3308
|
createdAt: Date;
|
|
@@ -3366,6 +3399,7 @@ export declare const channelContract: {
|
|
|
3366
3399
|
lineRichMenuId?: string | null | undefined;
|
|
3367
3400
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3368
3401
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3402
|
+
isCSATEnabled?: boolean | undefined;
|
|
3369
3403
|
};
|
|
3370
3404
|
status: boolean;
|
|
3371
3405
|
createdAt: Date;
|
|
@@ -3463,6 +3497,7 @@ export declare const channelContract: {
|
|
|
3463
3497
|
lineRichMenuId?: string | null | undefined;
|
|
3464
3498
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3465
3499
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3500
|
+
isCSATEnabled?: boolean | undefined;
|
|
3466
3501
|
};
|
|
3467
3502
|
status: boolean;
|
|
3468
3503
|
createdAt: Date;
|
|
@@ -3623,6 +3658,7 @@ export declare const channelContract: {
|
|
|
3623
3658
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3624
3659
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
3625
3660
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
3661
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3626
3662
|
}, "strip", z.ZodTypeAny, {
|
|
3627
3663
|
name: string;
|
|
3628
3664
|
id: string;
|
|
@@ -3652,6 +3688,7 @@ export declare const channelContract: {
|
|
|
3652
3688
|
lineRichMenuId?: string | null | undefined;
|
|
3653
3689
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3654
3690
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3691
|
+
isCSATEnabled?: boolean | undefined;
|
|
3655
3692
|
}, {
|
|
3656
3693
|
name: string;
|
|
3657
3694
|
id: string;
|
|
@@ -3681,6 +3718,7 @@ export declare const channelContract: {
|
|
|
3681
3718
|
lineRichMenuId?: string | null | undefined;
|
|
3682
3719
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3683
3720
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3721
|
+
isCSATEnabled?: boolean | undefined;
|
|
3684
3722
|
}>;
|
|
3685
3723
|
platformId: z.ZodString;
|
|
3686
3724
|
connectedUserId: z.ZodString;
|
|
@@ -3717,6 +3755,7 @@ export declare const channelContract: {
|
|
|
3717
3755
|
lineRichMenuId?: string | null | undefined;
|
|
3718
3756
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3719
3757
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3758
|
+
isCSATEnabled?: boolean | undefined;
|
|
3720
3759
|
};
|
|
3721
3760
|
platformId: string;
|
|
3722
3761
|
connectedUserId: string;
|
|
@@ -3753,6 +3792,7 @@ export declare const channelContract: {
|
|
|
3753
3792
|
lineRichMenuId?: string | null | undefined;
|
|
3754
3793
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3755
3794
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3795
|
+
isCSATEnabled?: boolean | undefined;
|
|
3756
3796
|
};
|
|
3757
3797
|
platformId: string;
|
|
3758
3798
|
connectedUserId: string;
|
|
@@ -3833,6 +3873,7 @@ export declare const channelContract: {
|
|
|
3833
3873
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3834
3874
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
3835
3875
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
3876
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3836
3877
|
}, "strip", z.ZodTypeAny, {
|
|
3837
3878
|
name: string;
|
|
3838
3879
|
id: string;
|
|
@@ -3862,6 +3903,7 @@ export declare const channelContract: {
|
|
|
3862
3903
|
lineRichMenuId?: string | null | undefined;
|
|
3863
3904
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3864
3905
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3906
|
+
isCSATEnabled?: boolean | undefined;
|
|
3865
3907
|
}, {
|
|
3866
3908
|
name: string;
|
|
3867
3909
|
id: string;
|
|
@@ -3891,6 +3933,7 @@ export declare const channelContract: {
|
|
|
3891
3933
|
lineRichMenuId?: string | null | undefined;
|
|
3892
3934
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3893
3935
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3936
|
+
isCSATEnabled?: boolean | undefined;
|
|
3894
3937
|
}>;
|
|
3895
3938
|
brandName: z.ZodString;
|
|
3896
3939
|
platformId: z.ZodString;
|
|
@@ -4154,6 +4197,7 @@ export declare const channelContract: {
|
|
|
4154
4197
|
lineRichMenuId?: string | null | undefined;
|
|
4155
4198
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4156
4199
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4200
|
+
isCSATEnabled?: boolean | undefined;
|
|
4157
4201
|
};
|
|
4158
4202
|
status: boolean;
|
|
4159
4203
|
createdAt: Date;
|
|
@@ -4248,6 +4292,7 @@ export declare const channelContract: {
|
|
|
4248
4292
|
lineRichMenuId?: string | null | undefined;
|
|
4249
4293
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4250
4294
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4295
|
+
isCSATEnabled?: boolean | undefined;
|
|
4251
4296
|
};
|
|
4252
4297
|
status: boolean;
|
|
4253
4298
|
createdAt: Date;
|
|
@@ -4344,6 +4389,7 @@ export declare const channelContract: {
|
|
|
4344
4389
|
lineRichMenuId?: string | null | undefined;
|
|
4345
4390
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4346
4391
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4392
|
+
isCSATEnabled?: boolean | undefined;
|
|
4347
4393
|
};
|
|
4348
4394
|
status: boolean;
|
|
4349
4395
|
createdAt: Date;
|
|
@@ -4441,6 +4487,7 @@ export declare const channelContract: {
|
|
|
4441
4487
|
lineRichMenuId?: string | null | undefined;
|
|
4442
4488
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4443
4489
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4490
|
+
isCSATEnabled?: boolean | undefined;
|
|
4444
4491
|
};
|
|
4445
4492
|
status: boolean;
|
|
4446
4493
|
createdAt: Date;
|
|
@@ -4735,6 +4782,7 @@ export declare const channelContract: {
|
|
|
4735
4782
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4736
4783
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
4737
4784
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
4785
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4738
4786
|
}, "strip", z.ZodTypeAny, {
|
|
4739
4787
|
name: string;
|
|
4740
4788
|
id: string;
|
|
@@ -4764,6 +4812,7 @@ export declare const channelContract: {
|
|
|
4764
4812
|
lineRichMenuId?: string | null | undefined;
|
|
4765
4813
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4766
4814
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4815
|
+
isCSATEnabled?: boolean | undefined;
|
|
4767
4816
|
}, {
|
|
4768
4817
|
name: string;
|
|
4769
4818
|
id: string;
|
|
@@ -4793,6 +4842,7 @@ export declare const channelContract: {
|
|
|
4793
4842
|
lineRichMenuId?: string | null | undefined;
|
|
4794
4843
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4795
4844
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4845
|
+
isCSATEnabled?: boolean | undefined;
|
|
4796
4846
|
}>;
|
|
4797
4847
|
brandName: z.ZodString;
|
|
4798
4848
|
platformId: z.ZodString;
|
|
@@ -5056,6 +5106,7 @@ export declare const channelContract: {
|
|
|
5056
5106
|
lineRichMenuId?: string | null | undefined;
|
|
5057
5107
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5058
5108
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5109
|
+
isCSATEnabled?: boolean | undefined;
|
|
5059
5110
|
};
|
|
5060
5111
|
status: boolean;
|
|
5061
5112
|
createdAt: Date;
|
|
@@ -5150,6 +5201,7 @@ export declare const channelContract: {
|
|
|
5150
5201
|
lineRichMenuId?: string | null | undefined;
|
|
5151
5202
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5152
5203
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5204
|
+
isCSATEnabled?: boolean | undefined;
|
|
5153
5205
|
};
|
|
5154
5206
|
status: boolean;
|
|
5155
5207
|
createdAt: Date;
|
|
@@ -5246,6 +5298,7 @@ export declare const channelContract: {
|
|
|
5246
5298
|
lineRichMenuId?: string | null | undefined;
|
|
5247
5299
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5248
5300
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5301
|
+
isCSATEnabled?: boolean | undefined;
|
|
5249
5302
|
};
|
|
5250
5303
|
status: boolean;
|
|
5251
5304
|
createdAt: Date;
|
|
@@ -5343,6 +5396,7 @@ export declare const channelContract: {
|
|
|
5343
5396
|
lineRichMenuId?: string | null | undefined;
|
|
5344
5397
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5345
5398
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5399
|
+
isCSATEnabled?: boolean | undefined;
|
|
5346
5400
|
};
|
|
5347
5401
|
status: boolean;
|
|
5348
5402
|
createdAt: Date;
|
|
@@ -6327,6 +6381,7 @@ export declare const channelContract: {
|
|
|
6327
6381
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6328
6382
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6329
6383
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6384
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6330
6385
|
}, "strip", z.ZodTypeAny, {
|
|
6331
6386
|
name: string;
|
|
6332
6387
|
id: string;
|
|
@@ -6356,6 +6411,7 @@ export declare const channelContract: {
|
|
|
6356
6411
|
lineRichMenuId?: string | null | undefined;
|
|
6357
6412
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6358
6413
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6414
|
+
isCSATEnabled?: boolean | undefined;
|
|
6359
6415
|
}, {
|
|
6360
6416
|
name: string;
|
|
6361
6417
|
id: string;
|
|
@@ -6385,6 +6441,7 @@ export declare const channelContract: {
|
|
|
6385
6441
|
lineRichMenuId?: string | null | undefined;
|
|
6386
6442
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6387
6443
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6444
|
+
isCSATEnabled?: boolean | undefined;
|
|
6388
6445
|
}>;
|
|
6389
6446
|
platformId: z.ZodString;
|
|
6390
6447
|
connectedUserId: z.ZodString;
|
|
@@ -6421,6 +6478,7 @@ export declare const channelContract: {
|
|
|
6421
6478
|
lineRichMenuId?: string | null | undefined;
|
|
6422
6479
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6423
6480
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6481
|
+
isCSATEnabled?: boolean | undefined;
|
|
6424
6482
|
};
|
|
6425
6483
|
platformId: string;
|
|
6426
6484
|
connectedUserId: string;
|
|
@@ -6457,6 +6515,7 @@ export declare const channelContract: {
|
|
|
6457
6515
|
lineRichMenuId?: string | null | undefined;
|
|
6458
6516
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6459
6517
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6518
|
+
isCSATEnabled?: boolean | undefined;
|
|
6460
6519
|
};
|
|
6461
6520
|
platformId: string;
|
|
6462
6521
|
connectedUserId: string;
|
|
@@ -6537,6 +6596,7 @@ export declare const channelContract: {
|
|
|
6537
6596
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6538
6597
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6539
6598
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6599
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6540
6600
|
}, "strip", z.ZodTypeAny, {
|
|
6541
6601
|
name: string;
|
|
6542
6602
|
id: string;
|
|
@@ -6566,6 +6626,7 @@ export declare const channelContract: {
|
|
|
6566
6626
|
lineRichMenuId?: string | null | undefined;
|
|
6567
6627
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6568
6628
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6629
|
+
isCSATEnabled?: boolean | undefined;
|
|
6569
6630
|
}, {
|
|
6570
6631
|
name: string;
|
|
6571
6632
|
id: string;
|
|
@@ -6595,6 +6656,7 @@ export declare const channelContract: {
|
|
|
6595
6656
|
lineRichMenuId?: string | null | undefined;
|
|
6596
6657
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6597
6658
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6659
|
+
isCSATEnabled?: boolean | undefined;
|
|
6598
6660
|
}>;
|
|
6599
6661
|
brandName: z.ZodString;
|
|
6600
6662
|
platformId: z.ZodString;
|
|
@@ -6858,6 +6920,7 @@ export declare const channelContract: {
|
|
|
6858
6920
|
lineRichMenuId?: string | null | undefined;
|
|
6859
6921
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6860
6922
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6923
|
+
isCSATEnabled?: boolean | undefined;
|
|
6861
6924
|
};
|
|
6862
6925
|
status: boolean;
|
|
6863
6926
|
createdAt: Date;
|
|
@@ -6952,6 +7015,7 @@ export declare const channelContract: {
|
|
|
6952
7015
|
lineRichMenuId?: string | null | undefined;
|
|
6953
7016
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6954
7017
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7018
|
+
isCSATEnabled?: boolean | undefined;
|
|
6955
7019
|
};
|
|
6956
7020
|
status: boolean;
|
|
6957
7021
|
createdAt: Date;
|
|
@@ -7048,6 +7112,7 @@ export declare const channelContract: {
|
|
|
7048
7112
|
lineRichMenuId?: string | null | undefined;
|
|
7049
7113
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7050
7114
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7115
|
+
isCSATEnabled?: boolean | undefined;
|
|
7051
7116
|
};
|
|
7052
7117
|
status: boolean;
|
|
7053
7118
|
createdAt: Date;
|
|
@@ -7145,6 +7210,7 @@ export declare const channelContract: {
|
|
|
7145
7210
|
lineRichMenuId?: string | null | undefined;
|
|
7146
7211
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7147
7212
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7213
|
+
isCSATEnabled?: boolean | undefined;
|
|
7148
7214
|
};
|
|
7149
7215
|
status: boolean;
|
|
7150
7216
|
createdAt: Date;
|
|
@@ -7556,6 +7622,7 @@ export declare const channelContract: {
|
|
|
7556
7622
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7557
7623
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7558
7624
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7625
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
7559
7626
|
}, "strip", z.ZodTypeAny, {
|
|
7560
7627
|
name: string;
|
|
7561
7628
|
id: string;
|
|
@@ -7585,6 +7652,7 @@ export declare const channelContract: {
|
|
|
7585
7652
|
lineRichMenuId?: string | null | undefined;
|
|
7586
7653
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7587
7654
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7655
|
+
isCSATEnabled?: boolean | undefined;
|
|
7588
7656
|
}, {
|
|
7589
7657
|
name: string;
|
|
7590
7658
|
id: string;
|
|
@@ -7614,6 +7682,7 @@ export declare const channelContract: {
|
|
|
7614
7682
|
lineRichMenuId?: string | null | undefined;
|
|
7615
7683
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7616
7684
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7685
|
+
isCSATEnabled?: boolean | undefined;
|
|
7617
7686
|
}>;
|
|
7618
7687
|
platformId: z.ZodString;
|
|
7619
7688
|
connectedUserId: z.ZodString;
|
|
@@ -7650,6 +7719,7 @@ export declare const channelContract: {
|
|
|
7650
7719
|
lineRichMenuId?: string | null | undefined;
|
|
7651
7720
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7652
7721
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7722
|
+
isCSATEnabled?: boolean | undefined;
|
|
7653
7723
|
};
|
|
7654
7724
|
platformId: string;
|
|
7655
7725
|
connectedUserId: string;
|
|
@@ -7686,6 +7756,7 @@ export declare const channelContract: {
|
|
|
7686
7756
|
lineRichMenuId?: string | null | undefined;
|
|
7687
7757
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7688
7758
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7759
|
+
isCSATEnabled?: boolean | undefined;
|
|
7689
7760
|
};
|
|
7690
7761
|
platformId: string;
|
|
7691
7762
|
connectedUserId: string;
|
|
@@ -7766,6 +7837,7 @@ export declare const channelContract: {
|
|
|
7766
7837
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7767
7838
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7768
7839
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7840
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
7769
7841
|
}, "strip", z.ZodTypeAny, {
|
|
7770
7842
|
name: string;
|
|
7771
7843
|
id: string;
|
|
@@ -7795,6 +7867,7 @@ export declare const channelContract: {
|
|
|
7795
7867
|
lineRichMenuId?: string | null | undefined;
|
|
7796
7868
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7797
7869
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7870
|
+
isCSATEnabled?: boolean | undefined;
|
|
7798
7871
|
}, {
|
|
7799
7872
|
name: string;
|
|
7800
7873
|
id: string;
|
|
@@ -7824,6 +7897,7 @@ export declare const channelContract: {
|
|
|
7824
7897
|
lineRichMenuId?: string | null | undefined;
|
|
7825
7898
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7826
7899
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7900
|
+
isCSATEnabled?: boolean | undefined;
|
|
7827
7901
|
}>;
|
|
7828
7902
|
brandName: z.ZodString;
|
|
7829
7903
|
platformId: z.ZodString;
|
|
@@ -8087,6 +8161,7 @@ export declare const channelContract: {
|
|
|
8087
8161
|
lineRichMenuId?: string | null | undefined;
|
|
8088
8162
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8089
8163
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8164
|
+
isCSATEnabled?: boolean | undefined;
|
|
8090
8165
|
};
|
|
8091
8166
|
status: boolean;
|
|
8092
8167
|
createdAt: Date;
|
|
@@ -8181,6 +8256,7 @@ export declare const channelContract: {
|
|
|
8181
8256
|
lineRichMenuId?: string | null | undefined;
|
|
8182
8257
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8183
8258
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8259
|
+
isCSATEnabled?: boolean | undefined;
|
|
8184
8260
|
};
|
|
8185
8261
|
status: boolean;
|
|
8186
8262
|
createdAt: Date;
|
|
@@ -8277,6 +8353,7 @@ export declare const channelContract: {
|
|
|
8277
8353
|
lineRichMenuId?: string | null | undefined;
|
|
8278
8354
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8279
8355
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8356
|
+
isCSATEnabled?: boolean | undefined;
|
|
8280
8357
|
};
|
|
8281
8358
|
status: boolean;
|
|
8282
8359
|
createdAt: Date;
|
|
@@ -8374,6 +8451,7 @@ export declare const channelContract: {
|
|
|
8374
8451
|
lineRichMenuId?: string | null | undefined;
|
|
8375
8452
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8376
8453
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8454
|
+
isCSATEnabled?: boolean | undefined;
|
|
8377
8455
|
};
|
|
8378
8456
|
status: boolean;
|
|
8379
8457
|
createdAt: Date;
|
|
@@ -8555,6 +8633,7 @@ export declare const channelContract: {
|
|
|
8555
8633
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8556
8634
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
8557
8635
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
8636
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8558
8637
|
}, "strip", z.ZodTypeAny, {
|
|
8559
8638
|
name: string;
|
|
8560
8639
|
id: string;
|
|
@@ -8584,6 +8663,7 @@ export declare const channelContract: {
|
|
|
8584
8663
|
lineRichMenuId?: string | null | undefined;
|
|
8585
8664
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8586
8665
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8666
|
+
isCSATEnabled?: boolean | undefined;
|
|
8587
8667
|
}, {
|
|
8588
8668
|
name: string;
|
|
8589
8669
|
id: string;
|
|
@@ -8613,6 +8693,7 @@ export declare const channelContract: {
|
|
|
8613
8693
|
lineRichMenuId?: string | null | undefined;
|
|
8614
8694
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8615
8695
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8696
|
+
isCSATEnabled?: boolean | undefined;
|
|
8616
8697
|
}>;
|
|
8617
8698
|
brandName: z.ZodString;
|
|
8618
8699
|
platformId: z.ZodString;
|
|
@@ -8876,6 +8957,7 @@ export declare const channelContract: {
|
|
|
8876
8957
|
lineRichMenuId?: string | null | undefined;
|
|
8877
8958
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8878
8959
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8960
|
+
isCSATEnabled?: boolean | undefined;
|
|
8879
8961
|
};
|
|
8880
8962
|
status: boolean;
|
|
8881
8963
|
createdAt: Date;
|
|
@@ -8970,6 +9052,7 @@ export declare const channelContract: {
|
|
|
8970
9052
|
lineRichMenuId?: string | null | undefined;
|
|
8971
9053
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8972
9054
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9055
|
+
isCSATEnabled?: boolean | undefined;
|
|
8973
9056
|
};
|
|
8974
9057
|
status: boolean;
|
|
8975
9058
|
createdAt: Date;
|
|
@@ -9066,6 +9149,7 @@ export declare const channelContract: {
|
|
|
9066
9149
|
lineRichMenuId?: string | null | undefined;
|
|
9067
9150
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9068
9151
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9152
|
+
isCSATEnabled?: boolean | undefined;
|
|
9069
9153
|
};
|
|
9070
9154
|
status: boolean;
|
|
9071
9155
|
createdAt: Date;
|
|
@@ -9163,6 +9247,7 @@ export declare const channelContract: {
|
|
|
9163
9247
|
lineRichMenuId?: string | null | undefined;
|
|
9164
9248
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9165
9249
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9250
|
+
isCSATEnabled?: boolean | undefined;
|
|
9166
9251
|
};
|
|
9167
9252
|
status: boolean;
|
|
9168
9253
|
createdAt: Date;
|
|
@@ -9354,6 +9439,7 @@ export declare const channelContract: {
|
|
|
9354
9439
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9355
9440
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9356
9441
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9442
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9357
9443
|
}, "strip", z.ZodTypeAny, {
|
|
9358
9444
|
name: string;
|
|
9359
9445
|
id: string;
|
|
@@ -9383,6 +9469,7 @@ export declare const channelContract: {
|
|
|
9383
9469
|
lineRichMenuId?: string | null | undefined;
|
|
9384
9470
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9385
9471
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9472
|
+
isCSATEnabled?: boolean | undefined;
|
|
9386
9473
|
}, {
|
|
9387
9474
|
name: string;
|
|
9388
9475
|
id: string;
|
|
@@ -9412,6 +9499,7 @@ export declare const channelContract: {
|
|
|
9412
9499
|
lineRichMenuId?: string | null | undefined;
|
|
9413
9500
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9414
9501
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9502
|
+
isCSATEnabled?: boolean | undefined;
|
|
9415
9503
|
}>;
|
|
9416
9504
|
brandName: z.ZodString;
|
|
9417
9505
|
platformId: z.ZodString;
|
|
@@ -9675,6 +9763,7 @@ export declare const channelContract: {
|
|
|
9675
9763
|
lineRichMenuId?: string | null | undefined;
|
|
9676
9764
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9677
9765
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9766
|
+
isCSATEnabled?: boolean | undefined;
|
|
9678
9767
|
};
|
|
9679
9768
|
status: boolean;
|
|
9680
9769
|
createdAt: Date;
|
|
@@ -9769,6 +9858,7 @@ export declare const channelContract: {
|
|
|
9769
9858
|
lineRichMenuId?: string | null | undefined;
|
|
9770
9859
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9771
9860
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9861
|
+
isCSATEnabled?: boolean | undefined;
|
|
9772
9862
|
};
|
|
9773
9863
|
status: boolean;
|
|
9774
9864
|
createdAt: Date;
|
|
@@ -9865,6 +9955,7 @@ export declare const channelContract: {
|
|
|
9865
9955
|
lineRichMenuId?: string | null | undefined;
|
|
9866
9956
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9867
9957
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9958
|
+
isCSATEnabled?: boolean | undefined;
|
|
9868
9959
|
};
|
|
9869
9960
|
status: boolean;
|
|
9870
9961
|
createdAt: Date;
|
|
@@ -9962,6 +10053,7 @@ export declare const channelContract: {
|
|
|
9962
10053
|
lineRichMenuId?: string | null | undefined;
|
|
9963
10054
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9964
10055
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10056
|
+
isCSATEnabled?: boolean | undefined;
|
|
9965
10057
|
};
|
|
9966
10058
|
status: boolean;
|
|
9967
10059
|
createdAt: Date;
|
|
@@ -10203,6 +10295,7 @@ export declare const channelContract: {
|
|
|
10203
10295
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10204
10296
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
10205
10297
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
10298
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10206
10299
|
}, "strip", z.ZodTypeAny, {
|
|
10207
10300
|
name: string;
|
|
10208
10301
|
id: string;
|
|
@@ -10232,6 +10325,7 @@ export declare const channelContract: {
|
|
|
10232
10325
|
lineRichMenuId?: string | null | undefined;
|
|
10233
10326
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10234
10327
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10328
|
+
isCSATEnabled?: boolean | undefined;
|
|
10235
10329
|
}, {
|
|
10236
10330
|
name: string;
|
|
10237
10331
|
id: string;
|
|
@@ -10261,6 +10355,7 @@ export declare const channelContract: {
|
|
|
10261
10355
|
lineRichMenuId?: string | null | undefined;
|
|
10262
10356
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10263
10357
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10358
|
+
isCSATEnabled?: boolean | undefined;
|
|
10264
10359
|
}>;
|
|
10265
10360
|
brandName: z.ZodString;
|
|
10266
10361
|
platformId: z.ZodString;
|
|
@@ -10524,6 +10619,7 @@ export declare const channelContract: {
|
|
|
10524
10619
|
lineRichMenuId?: string | null | undefined;
|
|
10525
10620
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10526
10621
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10622
|
+
isCSATEnabled?: boolean | undefined;
|
|
10527
10623
|
};
|
|
10528
10624
|
status: boolean;
|
|
10529
10625
|
createdAt: Date;
|
|
@@ -10618,6 +10714,7 @@ export declare const channelContract: {
|
|
|
10618
10714
|
lineRichMenuId?: string | null | undefined;
|
|
10619
10715
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10620
10716
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10717
|
+
isCSATEnabled?: boolean | undefined;
|
|
10621
10718
|
};
|
|
10622
10719
|
status: boolean;
|
|
10623
10720
|
createdAt: Date;
|
|
@@ -10714,6 +10811,7 @@ export declare const channelContract: {
|
|
|
10714
10811
|
lineRichMenuId?: string | null | undefined;
|
|
10715
10812
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10716
10813
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10814
|
+
isCSATEnabled?: boolean | undefined;
|
|
10717
10815
|
};
|
|
10718
10816
|
status: boolean;
|
|
10719
10817
|
createdAt: Date;
|
|
@@ -10811,6 +10909,7 @@ export declare const channelContract: {
|
|
|
10811
10909
|
lineRichMenuId?: string | null | undefined;
|
|
10812
10910
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10813
10911
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10912
|
+
isCSATEnabled?: boolean | undefined;
|
|
10814
10913
|
};
|
|
10815
10914
|
status: boolean;
|
|
10816
10915
|
createdAt: Date;
|
|
@@ -10983,6 +11082,7 @@ export declare const channelContract: {
|
|
|
10983
11082
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10984
11083
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
10985
11084
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11085
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10986
11086
|
}, "strip", z.ZodTypeAny, {
|
|
10987
11087
|
name: string;
|
|
10988
11088
|
id: string;
|
|
@@ -11012,6 +11112,7 @@ export declare const channelContract: {
|
|
|
11012
11112
|
lineRichMenuId?: string | null | undefined;
|
|
11013
11113
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11014
11114
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11115
|
+
isCSATEnabled?: boolean | undefined;
|
|
11015
11116
|
}, {
|
|
11016
11117
|
name: string;
|
|
11017
11118
|
id: string;
|
|
@@ -11041,6 +11142,7 @@ export declare const channelContract: {
|
|
|
11041
11142
|
lineRichMenuId?: string | null | undefined;
|
|
11042
11143
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11043
11144
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11145
|
+
isCSATEnabled?: boolean | undefined;
|
|
11044
11146
|
}>;
|
|
11045
11147
|
platformId: z.ZodString;
|
|
11046
11148
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11075,6 +11177,7 @@ export declare const channelContract: {
|
|
|
11075
11177
|
lineRichMenuId?: string | null | undefined;
|
|
11076
11178
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11077
11179
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11180
|
+
isCSATEnabled?: boolean | undefined;
|
|
11078
11181
|
};
|
|
11079
11182
|
platformId: string;
|
|
11080
11183
|
}, {
|
|
@@ -11109,6 +11212,7 @@ export declare const channelContract: {
|
|
|
11109
11212
|
lineRichMenuId?: string | null | undefined;
|
|
11110
11213
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11111
11214
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11215
|
+
isCSATEnabled?: boolean | undefined;
|
|
11112
11216
|
};
|
|
11113
11217
|
platformId: string;
|
|
11114
11218
|
}>;
|
|
@@ -11187,6 +11291,7 @@ export declare const channelContract: {
|
|
|
11187
11291
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11188
11292
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11189
11293
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11294
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11190
11295
|
}, "strip", z.ZodTypeAny, {
|
|
11191
11296
|
name: string;
|
|
11192
11297
|
id: string;
|
|
@@ -11216,6 +11321,7 @@ export declare const channelContract: {
|
|
|
11216
11321
|
lineRichMenuId?: string | null | undefined;
|
|
11217
11322
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11218
11323
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11324
|
+
isCSATEnabled?: boolean | undefined;
|
|
11219
11325
|
}, {
|
|
11220
11326
|
name: string;
|
|
11221
11327
|
id: string;
|
|
@@ -11245,6 +11351,7 @@ export declare const channelContract: {
|
|
|
11245
11351
|
lineRichMenuId?: string | null | undefined;
|
|
11246
11352
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11247
11353
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11354
|
+
isCSATEnabled?: boolean | undefined;
|
|
11248
11355
|
}>;
|
|
11249
11356
|
brandName: z.ZodString;
|
|
11250
11357
|
platformId: z.ZodString;
|
|
@@ -11508,6 +11615,7 @@ export declare const channelContract: {
|
|
|
11508
11615
|
lineRichMenuId?: string | null | undefined;
|
|
11509
11616
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11510
11617
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11618
|
+
isCSATEnabled?: boolean | undefined;
|
|
11511
11619
|
};
|
|
11512
11620
|
status: boolean;
|
|
11513
11621
|
createdAt: Date;
|
|
@@ -11602,6 +11710,7 @@ export declare const channelContract: {
|
|
|
11602
11710
|
lineRichMenuId?: string | null | undefined;
|
|
11603
11711
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11604
11712
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11713
|
+
isCSATEnabled?: boolean | undefined;
|
|
11605
11714
|
};
|
|
11606
11715
|
status: boolean;
|
|
11607
11716
|
createdAt: Date;
|
|
@@ -11698,6 +11807,7 @@ export declare const channelContract: {
|
|
|
11698
11807
|
lineRichMenuId?: string | null | undefined;
|
|
11699
11808
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11700
11809
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11810
|
+
isCSATEnabled?: boolean | undefined;
|
|
11701
11811
|
};
|
|
11702
11812
|
status: boolean;
|
|
11703
11813
|
createdAt: Date;
|
|
@@ -11795,6 +11905,7 @@ export declare const channelContract: {
|
|
|
11795
11905
|
lineRichMenuId?: string | null | undefined;
|
|
11796
11906
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11797
11907
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11908
|
+
isCSATEnabled?: boolean | undefined;
|
|
11798
11909
|
};
|
|
11799
11910
|
status: boolean;
|
|
11800
11911
|
createdAt: Date;
|
|
@@ -12451,6 +12562,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12451
12562
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12452
12563
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12453
12564
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12565
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
12454
12566
|
}, "strip", z.ZodTypeAny, {
|
|
12455
12567
|
name: string;
|
|
12456
12568
|
id: string;
|
|
@@ -12480,6 +12592,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12480
12592
|
lineRichMenuId?: string | null | undefined;
|
|
12481
12593
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12482
12594
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12595
|
+
isCSATEnabled?: boolean | undefined;
|
|
12483
12596
|
}, {
|
|
12484
12597
|
name: string;
|
|
12485
12598
|
id: string;
|
|
@@ -12509,6 +12622,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12509
12622
|
lineRichMenuId?: string | null | undefined;
|
|
12510
12623
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12511
12624
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12625
|
+
isCSATEnabled?: boolean | undefined;
|
|
12512
12626
|
}>;
|
|
12513
12627
|
platformId: z.ZodString;
|
|
12514
12628
|
connectedUserId: z.ZodString;
|
|
@@ -12545,6 +12659,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12545
12659
|
lineRichMenuId?: string | null | undefined;
|
|
12546
12660
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12547
12661
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12662
|
+
isCSATEnabled?: boolean | undefined;
|
|
12548
12663
|
};
|
|
12549
12664
|
platformId: string;
|
|
12550
12665
|
connectedUserId: string;
|
|
@@ -12581,6 +12696,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12581
12696
|
lineRichMenuId?: string | null | undefined;
|
|
12582
12697
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12583
12698
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12699
|
+
isCSATEnabled?: boolean | undefined;
|
|
12584
12700
|
};
|
|
12585
12701
|
platformId: string;
|
|
12586
12702
|
connectedUserId: string;
|
|
@@ -12661,6 +12777,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12661
12777
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12662
12778
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12663
12779
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12780
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
12664
12781
|
}, "strip", z.ZodTypeAny, {
|
|
12665
12782
|
name: string;
|
|
12666
12783
|
id: string;
|
|
@@ -12690,6 +12807,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12690
12807
|
lineRichMenuId?: string | null | undefined;
|
|
12691
12808
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12692
12809
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12810
|
+
isCSATEnabled?: boolean | undefined;
|
|
12693
12811
|
}, {
|
|
12694
12812
|
name: string;
|
|
12695
12813
|
id: string;
|
|
@@ -12719,6 +12837,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12719
12837
|
lineRichMenuId?: string | null | undefined;
|
|
12720
12838
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12721
12839
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12840
|
+
isCSATEnabled?: boolean | undefined;
|
|
12722
12841
|
}>;
|
|
12723
12842
|
brandName: z.ZodString;
|
|
12724
12843
|
platformId: z.ZodString;
|
|
@@ -12982,6 +13101,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12982
13101
|
lineRichMenuId?: string | null | undefined;
|
|
12983
13102
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12984
13103
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13104
|
+
isCSATEnabled?: boolean | undefined;
|
|
12985
13105
|
};
|
|
12986
13106
|
status: boolean;
|
|
12987
13107
|
createdAt: Date;
|
|
@@ -13076,6 +13196,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
13076
13196
|
lineRichMenuId?: string | null | undefined;
|
|
13077
13197
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13078
13198
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13199
|
+
isCSATEnabled?: boolean | undefined;
|
|
13079
13200
|
};
|
|
13080
13201
|
status: boolean;
|
|
13081
13202
|
createdAt: Date;
|
|
@@ -13172,6 +13293,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
13172
13293
|
lineRichMenuId?: string | null | undefined;
|
|
13173
13294
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13174
13295
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13296
|
+
isCSATEnabled?: boolean | undefined;
|
|
13175
13297
|
};
|
|
13176
13298
|
status: boolean;
|
|
13177
13299
|
createdAt: Date;
|
|
@@ -13269,6 +13391,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
13269
13391
|
lineRichMenuId?: string | null | undefined;
|
|
13270
13392
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13271
13393
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13394
|
+
isCSATEnabled?: boolean | undefined;
|
|
13272
13395
|
};
|
|
13273
13396
|
status: boolean;
|
|
13274
13397
|
createdAt: Date;
|
|
@@ -13430,6 +13553,7 @@ export declare const channelBotContract: {
|
|
|
13430
13553
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13431
13554
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
13432
13555
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
13556
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
13433
13557
|
}, "strip", z.ZodTypeAny, {
|
|
13434
13558
|
name: string;
|
|
13435
13559
|
id: string;
|
|
@@ -13459,6 +13583,7 @@ export declare const channelBotContract: {
|
|
|
13459
13583
|
lineRichMenuId?: string | null | undefined;
|
|
13460
13584
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13461
13585
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13586
|
+
isCSATEnabled?: boolean | undefined;
|
|
13462
13587
|
}, {
|
|
13463
13588
|
name: string;
|
|
13464
13589
|
id: string;
|
|
@@ -13488,6 +13613,7 @@ export declare const channelBotContract: {
|
|
|
13488
13613
|
lineRichMenuId?: string | null | undefined;
|
|
13489
13614
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13490
13615
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13616
|
+
isCSATEnabled?: boolean | undefined;
|
|
13491
13617
|
}>;
|
|
13492
13618
|
brandName: z.ZodString;
|
|
13493
13619
|
platformId: z.ZodString;
|
|
@@ -13751,6 +13877,7 @@ export declare const channelBotContract: {
|
|
|
13751
13877
|
lineRichMenuId?: string | null | undefined;
|
|
13752
13878
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13753
13879
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13880
|
+
isCSATEnabled?: boolean | undefined;
|
|
13754
13881
|
};
|
|
13755
13882
|
status: boolean;
|
|
13756
13883
|
createdAt: Date;
|
|
@@ -13845,6 +13972,7 @@ export declare const channelBotContract: {
|
|
|
13845
13972
|
lineRichMenuId?: string | null | undefined;
|
|
13846
13973
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13847
13974
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13975
|
+
isCSATEnabled?: boolean | undefined;
|
|
13848
13976
|
};
|
|
13849
13977
|
status: boolean;
|
|
13850
13978
|
createdAt: Date;
|
|
@@ -13941,6 +14069,7 @@ export declare const channelBotContract: {
|
|
|
13941
14069
|
lineRichMenuId?: string | null | undefined;
|
|
13942
14070
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13943
14071
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14072
|
+
isCSATEnabled?: boolean | undefined;
|
|
13944
14073
|
};
|
|
13945
14074
|
status: boolean;
|
|
13946
14075
|
createdAt: Date;
|
|
@@ -14038,6 +14167,7 @@ export declare const channelBotContract: {
|
|
|
14038
14167
|
lineRichMenuId?: string | null | undefined;
|
|
14039
14168
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14040
14169
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14170
|
+
isCSATEnabled?: boolean | undefined;
|
|
14041
14171
|
};
|
|
14042
14172
|
status: boolean;
|
|
14043
14173
|
createdAt: Date;
|
|
@@ -14201,6 +14331,7 @@ export declare const channelBotContract: {
|
|
|
14201
14331
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14202
14332
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
14203
14333
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
14334
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
14204
14335
|
}, "strip", z.ZodTypeAny, {
|
|
14205
14336
|
name: string;
|
|
14206
14337
|
id: string;
|
|
@@ -14230,6 +14361,7 @@ export declare const channelBotContract: {
|
|
|
14230
14361
|
lineRichMenuId?: string | null | undefined;
|
|
14231
14362
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14232
14363
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14364
|
+
isCSATEnabled?: boolean | undefined;
|
|
14233
14365
|
}, {
|
|
14234
14366
|
name: string;
|
|
14235
14367
|
id: string;
|
|
@@ -14259,6 +14391,7 @@ export declare const channelBotContract: {
|
|
|
14259
14391
|
lineRichMenuId?: string | null | undefined;
|
|
14260
14392
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14261
14393
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14394
|
+
isCSATEnabled?: boolean | undefined;
|
|
14262
14395
|
}>;
|
|
14263
14396
|
brandName: z.ZodString;
|
|
14264
14397
|
platformId: z.ZodString;
|
|
@@ -14522,6 +14655,7 @@ export declare const channelBotContract: {
|
|
|
14522
14655
|
lineRichMenuId?: string | null | undefined;
|
|
14523
14656
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14524
14657
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14658
|
+
isCSATEnabled?: boolean | undefined;
|
|
14525
14659
|
};
|
|
14526
14660
|
status: boolean;
|
|
14527
14661
|
createdAt: Date;
|
|
@@ -14616,6 +14750,7 @@ export declare const channelBotContract: {
|
|
|
14616
14750
|
lineRichMenuId?: string | null | undefined;
|
|
14617
14751
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14618
14752
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14753
|
+
isCSATEnabled?: boolean | undefined;
|
|
14619
14754
|
};
|
|
14620
14755
|
status: boolean;
|
|
14621
14756
|
createdAt: Date;
|
|
@@ -14712,6 +14847,7 @@ export declare const channelBotContract: {
|
|
|
14712
14847
|
lineRichMenuId?: string | null | undefined;
|
|
14713
14848
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14714
14849
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14850
|
+
isCSATEnabled?: boolean | undefined;
|
|
14715
14851
|
};
|
|
14716
14852
|
status: boolean;
|
|
14717
14853
|
createdAt: Date;
|
|
@@ -14809,6 +14945,7 @@ export declare const channelBotContract: {
|
|
|
14809
14945
|
lineRichMenuId?: string | null | undefined;
|
|
14810
14946
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14811
14947
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14948
|
+
isCSATEnabled?: boolean | undefined;
|
|
14812
14949
|
};
|
|
14813
14950
|
status: boolean;
|
|
14814
14951
|
createdAt: Date;
|
|
@@ -15010,6 +15147,7 @@ export declare const channelSMSContract: {
|
|
|
15010
15147
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15011
15148
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
15012
15149
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
15150
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
15013
15151
|
}, "strip", z.ZodTypeAny, {
|
|
15014
15152
|
name: string;
|
|
15015
15153
|
id: string;
|
|
@@ -15039,6 +15177,7 @@ export declare const channelSMSContract: {
|
|
|
15039
15177
|
lineRichMenuId?: string | null | undefined;
|
|
15040
15178
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15041
15179
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15180
|
+
isCSATEnabled?: boolean | undefined;
|
|
15042
15181
|
}, {
|
|
15043
15182
|
name: string;
|
|
15044
15183
|
id: string;
|
|
@@ -15068,6 +15207,7 @@ export declare const channelSMSContract: {
|
|
|
15068
15207
|
lineRichMenuId?: string | null | undefined;
|
|
15069
15208
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15070
15209
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15210
|
+
isCSATEnabled?: boolean | undefined;
|
|
15071
15211
|
}>;
|
|
15072
15212
|
brandName: z.ZodString;
|
|
15073
15213
|
platformId: z.ZodString;
|
|
@@ -15331,6 +15471,7 @@ export declare const channelSMSContract: {
|
|
|
15331
15471
|
lineRichMenuId?: string | null | undefined;
|
|
15332
15472
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15333
15473
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15474
|
+
isCSATEnabled?: boolean | undefined;
|
|
15334
15475
|
};
|
|
15335
15476
|
status: boolean;
|
|
15336
15477
|
createdAt: Date;
|
|
@@ -15425,6 +15566,7 @@ export declare const channelSMSContract: {
|
|
|
15425
15566
|
lineRichMenuId?: string | null | undefined;
|
|
15426
15567
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15427
15568
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15569
|
+
isCSATEnabled?: boolean | undefined;
|
|
15428
15570
|
};
|
|
15429
15571
|
status: boolean;
|
|
15430
15572
|
createdAt: Date;
|
|
@@ -15521,6 +15663,7 @@ export declare const channelSMSContract: {
|
|
|
15521
15663
|
lineRichMenuId?: string | null | undefined;
|
|
15522
15664
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15523
15665
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15666
|
+
isCSATEnabled?: boolean | undefined;
|
|
15524
15667
|
};
|
|
15525
15668
|
status: boolean;
|
|
15526
15669
|
createdAt: Date;
|
|
@@ -15618,6 +15761,7 @@ export declare const channelSMSContract: {
|
|
|
15618
15761
|
lineRichMenuId?: string | null | undefined;
|
|
15619
15762
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15620
15763
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15764
|
+
isCSATEnabled?: boolean | undefined;
|
|
15621
15765
|
};
|
|
15622
15766
|
status: boolean;
|
|
15623
15767
|
createdAt: Date;
|