@kl1/contracts 1.2.59-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 +935 -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 +515 -169
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +124 -45
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +151 -56
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +3238 -639
- 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 +165 -43
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +10 -3
- 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 +132 -33
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +129 -38
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +14 -5
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +132 -33
- 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 +42 -5
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +110 -33
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +110 -33
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +110 -33
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +120 -33
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +58 -12
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +12 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +21 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -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;
|
|
@@ -4645,6 +4692,804 @@ export declare const channelContract: {
|
|
|
4645
4692
|
'x-client-timezone'?: string | undefined;
|
|
4646
4693
|
}>>>;
|
|
4647
4694
|
};
|
|
4695
|
+
updateChannelCsatPreference: {
|
|
4696
|
+
body: z.ZodObject<{
|
|
4697
|
+
isCSATEnabled: z.ZodBoolean;
|
|
4698
|
+
}, "strip", z.ZodTypeAny, {
|
|
4699
|
+
isCSATEnabled: boolean;
|
|
4700
|
+
}, {
|
|
4701
|
+
isCSATEnabled: boolean;
|
|
4702
|
+
}>;
|
|
4703
|
+
summary: "Enable or Disable CSAT for channel";
|
|
4704
|
+
method: "POST";
|
|
4705
|
+
pathParams: z.ZodObject<{
|
|
4706
|
+
channelId: z.ZodString;
|
|
4707
|
+
}, "strip", z.ZodTypeAny, {
|
|
4708
|
+
channelId: string;
|
|
4709
|
+
}, {
|
|
4710
|
+
channelId: string;
|
|
4711
|
+
}>;
|
|
4712
|
+
responses: {
|
|
4713
|
+
200: z.ZodObject<{
|
|
4714
|
+
requestId: z.ZodString;
|
|
4715
|
+
channel: z.ZodObject<{
|
|
4716
|
+
id: z.ZodString;
|
|
4717
|
+
createdAt: z.ZodDate;
|
|
4718
|
+
updatedAt: z.ZodDate;
|
|
4719
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4720
|
+
name: z.ZodString;
|
|
4721
|
+
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada", "webchat", "facebook_feed", "sms_vonage"]>;
|
|
4722
|
+
metadata: z.ZodObject<{
|
|
4723
|
+
id: z.ZodString;
|
|
4724
|
+
name: z.ZodString;
|
|
4725
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
|
4726
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
|
4727
|
+
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
4728
|
+
senderId: z.ZodOptional<z.ZodString>;
|
|
4729
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
4730
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4731
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4732
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4733
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4734
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4735
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4736
|
+
waapiInstanceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4737
|
+
qr: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4738
|
+
status: z.ZodOptional<z.ZodEnum<["waapi-qr", "pending", "active"]>>;
|
|
4739
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
4740
|
+
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
4741
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">, z.ZodLiteral<"waapi">]>>;
|
|
4742
|
+
}, "strip", z.ZodTypeAny, {
|
|
4743
|
+
wabaBusinessId?: string | null | undefined;
|
|
4744
|
+
wabaExternalId?: string | null | undefined;
|
|
4745
|
+
phoneNumberId?: string | null | undefined;
|
|
4746
|
+
email?: string | null | undefined;
|
|
4747
|
+
clientId?: string | null | undefined;
|
|
4748
|
+
channelId?: string | null | undefined;
|
|
4749
|
+
waapiInstanceId?: string | null | undefined;
|
|
4750
|
+
qr?: string | null | undefined;
|
|
4751
|
+
status?: "active" | "pending" | "waapi-qr" | undefined;
|
|
4752
|
+
apiKey?: string | undefined;
|
|
4753
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4754
|
+
integrationType?: "meta" | "360dialog" | "waapi" | undefined;
|
|
4755
|
+
}, {
|
|
4756
|
+
wabaBusinessId?: string | null | undefined;
|
|
4757
|
+
wabaExternalId?: string | null | undefined;
|
|
4758
|
+
phoneNumberId?: string | null | undefined;
|
|
4759
|
+
email?: string | null | undefined;
|
|
4760
|
+
clientId?: string | null | undefined;
|
|
4761
|
+
channelId?: string | null | undefined;
|
|
4762
|
+
waapiInstanceId?: string | null | undefined;
|
|
4763
|
+
qr?: string | null | undefined;
|
|
4764
|
+
status?: "active" | "pending" | "waapi-qr" | undefined;
|
|
4765
|
+
apiKey?: string | undefined;
|
|
4766
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4767
|
+
integrationType?: "meta" | "360dialog" | "waapi" | undefined;
|
|
4768
|
+
}>>;
|
|
4769
|
+
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
4770
|
+
mobileNumber: z.ZodString;
|
|
4771
|
+
apiKey: z.ZodString;
|
|
4772
|
+
apiSecret: z.ZodString;
|
|
4773
|
+
}, "strip", z.ZodTypeAny, {
|
|
4774
|
+
apiKey: string;
|
|
4775
|
+
mobileNumber: string;
|
|
4776
|
+
apiSecret: string;
|
|
4777
|
+
}, {
|
|
4778
|
+
apiKey: string;
|
|
4779
|
+
mobileNumber: string;
|
|
4780
|
+
apiSecret: string;
|
|
4781
|
+
}>>;
|
|
4782
|
+
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4783
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
4784
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
4785
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4786
|
+
}, "strip", z.ZodTypeAny, {
|
|
4787
|
+
name: string;
|
|
4788
|
+
id: string;
|
|
4789
|
+
accessToken?: string | undefined;
|
|
4790
|
+
channelSecret?: string | undefined;
|
|
4791
|
+
additionalCredentials?: any;
|
|
4792
|
+
senderId?: string | undefined;
|
|
4793
|
+
whatsapp?: {
|
|
4794
|
+
wabaBusinessId?: string | null | undefined;
|
|
4795
|
+
wabaExternalId?: string | null | undefined;
|
|
4796
|
+
phoneNumberId?: string | null | undefined;
|
|
4797
|
+
email?: string | null | undefined;
|
|
4798
|
+
clientId?: string | null | undefined;
|
|
4799
|
+
channelId?: string | null | undefined;
|
|
4800
|
+
waapiInstanceId?: string | null | undefined;
|
|
4801
|
+
qr?: string | null | undefined;
|
|
4802
|
+
status?: "active" | "pending" | "waapi-qr" | undefined;
|
|
4803
|
+
apiKey?: string | undefined;
|
|
4804
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4805
|
+
integrationType?: "meta" | "360dialog" | "waapi" | undefined;
|
|
4806
|
+
} | undefined;
|
|
4807
|
+
vonageCredentials?: {
|
|
4808
|
+
apiKey: string;
|
|
4809
|
+
mobileNumber: string;
|
|
4810
|
+
apiSecret: string;
|
|
4811
|
+
} | undefined;
|
|
4812
|
+
lineRichMenuId?: string | null | undefined;
|
|
4813
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4814
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4815
|
+
isCSATEnabled?: boolean | undefined;
|
|
4816
|
+
}, {
|
|
4817
|
+
name: string;
|
|
4818
|
+
id: string;
|
|
4819
|
+
accessToken?: string | undefined;
|
|
4820
|
+
channelSecret?: string | undefined;
|
|
4821
|
+
additionalCredentials?: any;
|
|
4822
|
+
senderId?: string | undefined;
|
|
4823
|
+
whatsapp?: {
|
|
4824
|
+
wabaBusinessId?: string | null | undefined;
|
|
4825
|
+
wabaExternalId?: string | null | undefined;
|
|
4826
|
+
phoneNumberId?: string | null | undefined;
|
|
4827
|
+
email?: string | null | undefined;
|
|
4828
|
+
clientId?: string | null | undefined;
|
|
4829
|
+
channelId?: string | null | undefined;
|
|
4830
|
+
waapiInstanceId?: string | null | undefined;
|
|
4831
|
+
qr?: string | null | undefined;
|
|
4832
|
+
status?: "active" | "pending" | "waapi-qr" | undefined;
|
|
4833
|
+
apiKey?: string | undefined;
|
|
4834
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4835
|
+
integrationType?: "meta" | "360dialog" | "waapi" | undefined;
|
|
4836
|
+
} | undefined;
|
|
4837
|
+
vonageCredentials?: {
|
|
4838
|
+
apiKey: string;
|
|
4839
|
+
mobileNumber: string;
|
|
4840
|
+
apiSecret: string;
|
|
4841
|
+
} | undefined;
|
|
4842
|
+
lineRichMenuId?: string | null | undefined;
|
|
4843
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4844
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4845
|
+
isCSATEnabled?: boolean | undefined;
|
|
4846
|
+
}>;
|
|
4847
|
+
brandName: z.ZodString;
|
|
4848
|
+
platformId: z.ZodString;
|
|
4849
|
+
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
|
4850
|
+
isReloginRequired: z.ZodBoolean;
|
|
4851
|
+
connectedUserName: z.ZodString;
|
|
4852
|
+
connectedUserId: z.ZodString;
|
|
4853
|
+
botpressBot: z.ZodNullable<z.ZodObject<{
|
|
4854
|
+
id: z.ZodString;
|
|
4855
|
+
name: z.ZodString;
|
|
4856
|
+
botId: z.ZodString;
|
|
4857
|
+
integrationId: z.ZodString;
|
|
4858
|
+
accessToken: z.ZodString;
|
|
4859
|
+
}, "strip", z.ZodTypeAny, {
|
|
4860
|
+
name: string;
|
|
4861
|
+
id: string;
|
|
4862
|
+
accessToken: string;
|
|
4863
|
+
botId: string;
|
|
4864
|
+
integrationId: string;
|
|
4865
|
+
}, {
|
|
4866
|
+
name: string;
|
|
4867
|
+
id: string;
|
|
4868
|
+
accessToken: string;
|
|
4869
|
+
botId: string;
|
|
4870
|
+
integrationId: string;
|
|
4871
|
+
}>>;
|
|
4872
|
+
actor: z.ZodObject<{
|
|
4873
|
+
id: z.ZodString;
|
|
4874
|
+
createdAt: z.ZodDate;
|
|
4875
|
+
updatedAt: z.ZodDate;
|
|
4876
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4877
|
+
name: z.ZodString;
|
|
4878
|
+
email: z.ZodString;
|
|
4879
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
4880
|
+
password: z.ZodString;
|
|
4881
|
+
address: z.ZodNullable<z.ZodString>;
|
|
4882
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
4883
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
4884
|
+
roles: z.ZodArray<z.ZodObject<{
|
|
4885
|
+
id: z.ZodString;
|
|
4886
|
+
createdAt: z.ZodDate;
|
|
4887
|
+
updatedAt: z.ZodDate;
|
|
4888
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4889
|
+
systemName: z.ZodString;
|
|
4890
|
+
displayName: z.ZodString;
|
|
4891
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4892
|
+
permissions: z.ZodArray<z.ZodObject<{
|
|
4893
|
+
id: z.ZodString;
|
|
4894
|
+
createdAt: z.ZodDate;
|
|
4895
|
+
updatedAt: z.ZodDate;
|
|
4896
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4897
|
+
systemName: z.ZodString;
|
|
4898
|
+
displayName: z.ZodString;
|
|
4899
|
+
description: z.ZodNullable<z.ZodString>;
|
|
4900
|
+
}, "strip", z.ZodTypeAny, {
|
|
4901
|
+
id: string;
|
|
4902
|
+
description: string | null;
|
|
4903
|
+
createdAt: Date;
|
|
4904
|
+
updatedAt: Date;
|
|
4905
|
+
deletedAt: Date | null;
|
|
4906
|
+
systemName: string;
|
|
4907
|
+
displayName: string;
|
|
4908
|
+
}, {
|
|
4909
|
+
id: string;
|
|
4910
|
+
description: string | null;
|
|
4911
|
+
createdAt: Date;
|
|
4912
|
+
updatedAt: Date;
|
|
4913
|
+
deletedAt: Date | null;
|
|
4914
|
+
systemName: string;
|
|
4915
|
+
displayName: string;
|
|
4916
|
+
}>, "many">;
|
|
4917
|
+
}, "strip", z.ZodTypeAny, {
|
|
4918
|
+
id: string;
|
|
4919
|
+
description: string | null;
|
|
4920
|
+
createdAt: Date;
|
|
4921
|
+
updatedAt: Date;
|
|
4922
|
+
deletedAt: Date | null;
|
|
4923
|
+
systemName: string;
|
|
4924
|
+
displayName: string;
|
|
4925
|
+
permissions: {
|
|
4926
|
+
id: string;
|
|
4927
|
+
description: string | null;
|
|
4928
|
+
createdAt: Date;
|
|
4929
|
+
updatedAt: Date;
|
|
4930
|
+
deletedAt: Date | null;
|
|
4931
|
+
systemName: string;
|
|
4932
|
+
displayName: string;
|
|
4933
|
+
}[];
|
|
4934
|
+
}, {
|
|
4935
|
+
id: string;
|
|
4936
|
+
description: string | null;
|
|
4937
|
+
createdAt: Date;
|
|
4938
|
+
updatedAt: Date;
|
|
4939
|
+
deletedAt: Date | null;
|
|
4940
|
+
systemName: string;
|
|
4941
|
+
displayName: string;
|
|
4942
|
+
permissions: {
|
|
4943
|
+
id: string;
|
|
4944
|
+
description: string | null;
|
|
4945
|
+
createdAt: Date;
|
|
4946
|
+
updatedAt: Date;
|
|
4947
|
+
deletedAt: Date | null;
|
|
4948
|
+
systemName: string;
|
|
4949
|
+
displayName: string;
|
|
4950
|
+
}[];
|
|
4951
|
+
}>, "many">;
|
|
4952
|
+
extension: z.ZodObject<{
|
|
4953
|
+
id: z.ZodString;
|
|
4954
|
+
createdAt: z.ZodDate;
|
|
4955
|
+
updatedAt: z.ZodDate;
|
|
4956
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4957
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
4958
|
+
sipServerUrl: z.ZodString;
|
|
4959
|
+
sipUserName: z.ZodString;
|
|
4960
|
+
webphoneLoginUser: z.ZodString;
|
|
4961
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
|
4962
|
+
extensionName: z.ZodString;
|
|
4963
|
+
telephonySignature: z.ZodNullable<z.ZodString>;
|
|
4964
|
+
}, "strip", z.ZodTypeAny, {
|
|
4965
|
+
id: string;
|
|
4966
|
+
createdAt: Date;
|
|
4967
|
+
updatedAt: Date;
|
|
4968
|
+
deletedAt: Date | null;
|
|
4969
|
+
userId: string | null;
|
|
4970
|
+
sipServerUrl: string;
|
|
4971
|
+
sipUserName: string;
|
|
4972
|
+
webphoneLoginUser: string;
|
|
4973
|
+
extensionId: string | null;
|
|
4974
|
+
extensionName: string;
|
|
4975
|
+
telephonySignature: string | null;
|
|
4976
|
+
}, {
|
|
4977
|
+
id: string;
|
|
4978
|
+
createdAt: Date;
|
|
4979
|
+
updatedAt: Date;
|
|
4980
|
+
deletedAt: Date | null;
|
|
4981
|
+
userId: string | null;
|
|
4982
|
+
sipServerUrl: string;
|
|
4983
|
+
sipUserName: string;
|
|
4984
|
+
webphoneLoginUser: string;
|
|
4985
|
+
extensionId: string | null;
|
|
4986
|
+
extensionName: string;
|
|
4987
|
+
telephonySignature: string | null;
|
|
4988
|
+
}>;
|
|
4989
|
+
}, "strip", z.ZodTypeAny, {
|
|
4990
|
+
name: string;
|
|
4991
|
+
id: string;
|
|
4992
|
+
address: string | null;
|
|
4993
|
+
email: string;
|
|
4994
|
+
createdAt: Date;
|
|
4995
|
+
updatedAt: Date;
|
|
4996
|
+
deletedAt: Date | null;
|
|
4997
|
+
emailVerifiedAt: Date | null;
|
|
4998
|
+
password: string;
|
|
4999
|
+
phone: string | null;
|
|
5000
|
+
notificationCount: number | null;
|
|
5001
|
+
roles: {
|
|
5002
|
+
id: string;
|
|
5003
|
+
description: string | null;
|
|
5004
|
+
createdAt: Date;
|
|
5005
|
+
updatedAt: Date;
|
|
5006
|
+
deletedAt: Date | null;
|
|
5007
|
+
systemName: string;
|
|
5008
|
+
displayName: string;
|
|
5009
|
+
permissions: {
|
|
5010
|
+
id: string;
|
|
5011
|
+
description: string | null;
|
|
5012
|
+
createdAt: Date;
|
|
5013
|
+
updatedAt: Date;
|
|
5014
|
+
deletedAt: Date | null;
|
|
5015
|
+
systemName: string;
|
|
5016
|
+
displayName: string;
|
|
5017
|
+
}[];
|
|
5018
|
+
}[];
|
|
5019
|
+
extension: {
|
|
5020
|
+
id: string;
|
|
5021
|
+
createdAt: Date;
|
|
5022
|
+
updatedAt: Date;
|
|
5023
|
+
deletedAt: Date | null;
|
|
5024
|
+
userId: string | null;
|
|
5025
|
+
sipServerUrl: string;
|
|
5026
|
+
sipUserName: string;
|
|
5027
|
+
webphoneLoginUser: string;
|
|
5028
|
+
extensionId: string | null;
|
|
5029
|
+
extensionName: string;
|
|
5030
|
+
telephonySignature: string | null;
|
|
5031
|
+
};
|
|
5032
|
+
}, {
|
|
5033
|
+
name: string;
|
|
5034
|
+
id: string;
|
|
5035
|
+
address: string | null;
|
|
5036
|
+
email: string;
|
|
5037
|
+
createdAt: Date;
|
|
5038
|
+
updatedAt: Date;
|
|
5039
|
+
deletedAt: Date | null;
|
|
5040
|
+
emailVerifiedAt: Date | null;
|
|
5041
|
+
password: string;
|
|
5042
|
+
phone: string | null;
|
|
5043
|
+
notificationCount: number | null;
|
|
5044
|
+
roles: {
|
|
5045
|
+
id: string;
|
|
5046
|
+
description: string | null;
|
|
5047
|
+
createdAt: Date;
|
|
5048
|
+
updatedAt: Date;
|
|
5049
|
+
deletedAt: Date | null;
|
|
5050
|
+
systemName: string;
|
|
5051
|
+
displayName: string;
|
|
5052
|
+
permissions: {
|
|
5053
|
+
id: string;
|
|
5054
|
+
description: string | null;
|
|
5055
|
+
createdAt: Date;
|
|
5056
|
+
updatedAt: Date;
|
|
5057
|
+
deletedAt: Date | null;
|
|
5058
|
+
systemName: string;
|
|
5059
|
+
displayName: string;
|
|
5060
|
+
}[];
|
|
5061
|
+
}[];
|
|
5062
|
+
extension: {
|
|
5063
|
+
id: string;
|
|
5064
|
+
createdAt: Date;
|
|
5065
|
+
updatedAt: Date;
|
|
5066
|
+
deletedAt: Date | null;
|
|
5067
|
+
userId: string | null;
|
|
5068
|
+
sipServerUrl: string;
|
|
5069
|
+
sipUserName: string;
|
|
5070
|
+
webphoneLoginUser: string;
|
|
5071
|
+
extensionId: string | null;
|
|
5072
|
+
extensionName: string;
|
|
5073
|
+
telephonySignature: string | null;
|
|
5074
|
+
};
|
|
5075
|
+
}>;
|
|
5076
|
+
}, "strip", z.ZodTypeAny, {
|
|
5077
|
+
name: string;
|
|
5078
|
+
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat" | "facebook_feed" | "sms_vonage";
|
|
5079
|
+
id: string;
|
|
5080
|
+
metadata: {
|
|
5081
|
+
name: string;
|
|
5082
|
+
id: string;
|
|
5083
|
+
accessToken?: string | undefined;
|
|
5084
|
+
channelSecret?: string | undefined;
|
|
5085
|
+
additionalCredentials?: any;
|
|
5086
|
+
senderId?: string | undefined;
|
|
5087
|
+
whatsapp?: {
|
|
5088
|
+
wabaBusinessId?: string | null | undefined;
|
|
5089
|
+
wabaExternalId?: string | null | undefined;
|
|
5090
|
+
phoneNumberId?: string | null | undefined;
|
|
5091
|
+
email?: string | null | undefined;
|
|
5092
|
+
clientId?: string | null | undefined;
|
|
5093
|
+
channelId?: string | null | undefined;
|
|
5094
|
+
waapiInstanceId?: string | null | undefined;
|
|
5095
|
+
qr?: string | null | undefined;
|
|
5096
|
+
status?: "active" | "pending" | "waapi-qr" | undefined;
|
|
5097
|
+
apiKey?: string | undefined;
|
|
5098
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5099
|
+
integrationType?: "meta" | "360dialog" | "waapi" | undefined;
|
|
5100
|
+
} | undefined;
|
|
5101
|
+
vonageCredentials?: {
|
|
5102
|
+
apiKey: string;
|
|
5103
|
+
mobileNumber: string;
|
|
5104
|
+
apiSecret: string;
|
|
5105
|
+
} | undefined;
|
|
5106
|
+
lineRichMenuId?: string | null | undefined;
|
|
5107
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5108
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5109
|
+
isCSATEnabled?: boolean | undefined;
|
|
5110
|
+
};
|
|
5111
|
+
status: boolean;
|
|
5112
|
+
createdAt: Date;
|
|
5113
|
+
updatedAt: Date;
|
|
5114
|
+
deletedAt: Date | null;
|
|
5115
|
+
actor: {
|
|
5116
|
+
name: string;
|
|
5117
|
+
id: string;
|
|
5118
|
+
address: string | null;
|
|
5119
|
+
email: string;
|
|
5120
|
+
createdAt: Date;
|
|
5121
|
+
updatedAt: Date;
|
|
5122
|
+
deletedAt: Date | null;
|
|
5123
|
+
emailVerifiedAt: Date | null;
|
|
5124
|
+
password: string;
|
|
5125
|
+
phone: string | null;
|
|
5126
|
+
notificationCount: number | null;
|
|
5127
|
+
roles: {
|
|
5128
|
+
id: string;
|
|
5129
|
+
description: string | null;
|
|
5130
|
+
createdAt: Date;
|
|
5131
|
+
updatedAt: Date;
|
|
5132
|
+
deletedAt: Date | null;
|
|
5133
|
+
systemName: string;
|
|
5134
|
+
displayName: string;
|
|
5135
|
+
permissions: {
|
|
5136
|
+
id: string;
|
|
5137
|
+
description: string | null;
|
|
5138
|
+
createdAt: Date;
|
|
5139
|
+
updatedAt: Date;
|
|
5140
|
+
deletedAt: Date | null;
|
|
5141
|
+
systemName: string;
|
|
5142
|
+
displayName: string;
|
|
5143
|
+
}[];
|
|
5144
|
+
}[];
|
|
5145
|
+
extension: {
|
|
5146
|
+
id: string;
|
|
5147
|
+
createdAt: Date;
|
|
5148
|
+
updatedAt: Date;
|
|
5149
|
+
deletedAt: Date | null;
|
|
5150
|
+
userId: string | null;
|
|
5151
|
+
sipServerUrl: string;
|
|
5152
|
+
sipUserName: string;
|
|
5153
|
+
webphoneLoginUser: string;
|
|
5154
|
+
extensionId: string | null;
|
|
5155
|
+
extensionName: string;
|
|
5156
|
+
telephonySignature: string | null;
|
|
5157
|
+
};
|
|
5158
|
+
};
|
|
5159
|
+
brandName: string;
|
|
5160
|
+
platformId: string;
|
|
5161
|
+
isReloginRequired: boolean;
|
|
5162
|
+
connectedUserName: string;
|
|
5163
|
+
connectedUserId: string;
|
|
5164
|
+
botpressBot: {
|
|
5165
|
+
name: string;
|
|
5166
|
+
id: string;
|
|
5167
|
+
accessToken: string;
|
|
5168
|
+
botId: string;
|
|
5169
|
+
integrationId: string;
|
|
5170
|
+
} | null;
|
|
5171
|
+
}, {
|
|
5172
|
+
name: string;
|
|
5173
|
+
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat" | "facebook_feed" | "sms_vonage";
|
|
5174
|
+
id: string;
|
|
5175
|
+
metadata: {
|
|
5176
|
+
name: string;
|
|
5177
|
+
id: string;
|
|
5178
|
+
accessToken?: string | undefined;
|
|
5179
|
+
channelSecret?: string | undefined;
|
|
5180
|
+
additionalCredentials?: any;
|
|
5181
|
+
senderId?: string | undefined;
|
|
5182
|
+
whatsapp?: {
|
|
5183
|
+
wabaBusinessId?: string | null | undefined;
|
|
5184
|
+
wabaExternalId?: string | null | undefined;
|
|
5185
|
+
phoneNumberId?: string | null | undefined;
|
|
5186
|
+
email?: string | null | undefined;
|
|
5187
|
+
clientId?: string | null | undefined;
|
|
5188
|
+
channelId?: string | null | undefined;
|
|
5189
|
+
waapiInstanceId?: string | null | undefined;
|
|
5190
|
+
qr?: string | null | undefined;
|
|
5191
|
+
status?: "active" | "pending" | "waapi-qr" | undefined;
|
|
5192
|
+
apiKey?: string | undefined;
|
|
5193
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5194
|
+
integrationType?: "meta" | "360dialog" | "waapi" | undefined;
|
|
5195
|
+
} | undefined;
|
|
5196
|
+
vonageCredentials?: {
|
|
5197
|
+
apiKey: string;
|
|
5198
|
+
mobileNumber: string;
|
|
5199
|
+
apiSecret: string;
|
|
5200
|
+
} | undefined;
|
|
5201
|
+
lineRichMenuId?: string | null | undefined;
|
|
5202
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5203
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5204
|
+
isCSATEnabled?: boolean | undefined;
|
|
5205
|
+
};
|
|
5206
|
+
status: boolean;
|
|
5207
|
+
createdAt: Date;
|
|
5208
|
+
updatedAt: Date;
|
|
5209
|
+
deletedAt: Date | null;
|
|
5210
|
+
actor: {
|
|
5211
|
+
name: string;
|
|
5212
|
+
id: string;
|
|
5213
|
+
address: string | null;
|
|
5214
|
+
email: string;
|
|
5215
|
+
createdAt: Date;
|
|
5216
|
+
updatedAt: Date;
|
|
5217
|
+
deletedAt: Date | null;
|
|
5218
|
+
emailVerifiedAt: Date | null;
|
|
5219
|
+
password: string;
|
|
5220
|
+
phone: string | null;
|
|
5221
|
+
notificationCount: number | null;
|
|
5222
|
+
roles: {
|
|
5223
|
+
id: string;
|
|
5224
|
+
description: string | null;
|
|
5225
|
+
createdAt: Date;
|
|
5226
|
+
updatedAt: Date;
|
|
5227
|
+
deletedAt: Date | null;
|
|
5228
|
+
systemName: string;
|
|
5229
|
+
displayName: string;
|
|
5230
|
+
permissions: {
|
|
5231
|
+
id: string;
|
|
5232
|
+
description: string | null;
|
|
5233
|
+
createdAt: Date;
|
|
5234
|
+
updatedAt: Date;
|
|
5235
|
+
deletedAt: Date | null;
|
|
5236
|
+
systemName: string;
|
|
5237
|
+
displayName: string;
|
|
5238
|
+
}[];
|
|
5239
|
+
}[];
|
|
5240
|
+
extension: {
|
|
5241
|
+
id: string;
|
|
5242
|
+
createdAt: Date;
|
|
5243
|
+
updatedAt: Date;
|
|
5244
|
+
deletedAt: Date | null;
|
|
5245
|
+
userId: string | null;
|
|
5246
|
+
sipServerUrl: string;
|
|
5247
|
+
sipUserName: string;
|
|
5248
|
+
webphoneLoginUser: string;
|
|
5249
|
+
extensionId: string | null;
|
|
5250
|
+
extensionName: string;
|
|
5251
|
+
telephonySignature: string | null;
|
|
5252
|
+
};
|
|
5253
|
+
};
|
|
5254
|
+
brandName: string;
|
|
5255
|
+
platformId: string;
|
|
5256
|
+
isReloginRequired: boolean;
|
|
5257
|
+
connectedUserName: string;
|
|
5258
|
+
connectedUserId: string;
|
|
5259
|
+
botpressBot: {
|
|
5260
|
+
name: string;
|
|
5261
|
+
id: string;
|
|
5262
|
+
accessToken: string;
|
|
5263
|
+
botId: string;
|
|
5264
|
+
integrationId: string;
|
|
5265
|
+
} | null;
|
|
5266
|
+
}>;
|
|
5267
|
+
}, "strip", z.ZodTypeAny, {
|
|
5268
|
+
channel: {
|
|
5269
|
+
name: string;
|
|
5270
|
+
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat" | "facebook_feed" | "sms_vonage";
|
|
5271
|
+
id: string;
|
|
5272
|
+
metadata: {
|
|
5273
|
+
name: string;
|
|
5274
|
+
id: string;
|
|
5275
|
+
accessToken?: string | undefined;
|
|
5276
|
+
channelSecret?: string | undefined;
|
|
5277
|
+
additionalCredentials?: any;
|
|
5278
|
+
senderId?: string | undefined;
|
|
5279
|
+
whatsapp?: {
|
|
5280
|
+
wabaBusinessId?: string | null | undefined;
|
|
5281
|
+
wabaExternalId?: string | null | undefined;
|
|
5282
|
+
phoneNumberId?: string | null | undefined;
|
|
5283
|
+
email?: string | null | undefined;
|
|
5284
|
+
clientId?: string | null | undefined;
|
|
5285
|
+
channelId?: string | null | undefined;
|
|
5286
|
+
waapiInstanceId?: string | null | undefined;
|
|
5287
|
+
qr?: string | null | undefined;
|
|
5288
|
+
status?: "active" | "pending" | "waapi-qr" | undefined;
|
|
5289
|
+
apiKey?: string | undefined;
|
|
5290
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5291
|
+
integrationType?: "meta" | "360dialog" | "waapi" | undefined;
|
|
5292
|
+
} | undefined;
|
|
5293
|
+
vonageCredentials?: {
|
|
5294
|
+
apiKey: string;
|
|
5295
|
+
mobileNumber: string;
|
|
5296
|
+
apiSecret: string;
|
|
5297
|
+
} | undefined;
|
|
5298
|
+
lineRichMenuId?: string | null | undefined;
|
|
5299
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5300
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5301
|
+
isCSATEnabled?: boolean | undefined;
|
|
5302
|
+
};
|
|
5303
|
+
status: boolean;
|
|
5304
|
+
createdAt: Date;
|
|
5305
|
+
updatedAt: Date;
|
|
5306
|
+
deletedAt: Date | null;
|
|
5307
|
+
actor: {
|
|
5308
|
+
name: string;
|
|
5309
|
+
id: string;
|
|
5310
|
+
address: string | null;
|
|
5311
|
+
email: string;
|
|
5312
|
+
createdAt: Date;
|
|
5313
|
+
updatedAt: Date;
|
|
5314
|
+
deletedAt: Date | null;
|
|
5315
|
+
emailVerifiedAt: Date | null;
|
|
5316
|
+
password: string;
|
|
5317
|
+
phone: string | null;
|
|
5318
|
+
notificationCount: number | null;
|
|
5319
|
+
roles: {
|
|
5320
|
+
id: string;
|
|
5321
|
+
description: string | null;
|
|
5322
|
+
createdAt: Date;
|
|
5323
|
+
updatedAt: Date;
|
|
5324
|
+
deletedAt: Date | null;
|
|
5325
|
+
systemName: string;
|
|
5326
|
+
displayName: string;
|
|
5327
|
+
permissions: {
|
|
5328
|
+
id: string;
|
|
5329
|
+
description: string | null;
|
|
5330
|
+
createdAt: Date;
|
|
5331
|
+
updatedAt: Date;
|
|
5332
|
+
deletedAt: Date | null;
|
|
5333
|
+
systemName: string;
|
|
5334
|
+
displayName: string;
|
|
5335
|
+
}[];
|
|
5336
|
+
}[];
|
|
5337
|
+
extension: {
|
|
5338
|
+
id: string;
|
|
5339
|
+
createdAt: Date;
|
|
5340
|
+
updatedAt: Date;
|
|
5341
|
+
deletedAt: Date | null;
|
|
5342
|
+
userId: string | null;
|
|
5343
|
+
sipServerUrl: string;
|
|
5344
|
+
sipUserName: string;
|
|
5345
|
+
webphoneLoginUser: string;
|
|
5346
|
+
extensionId: string | null;
|
|
5347
|
+
extensionName: string;
|
|
5348
|
+
telephonySignature: string | null;
|
|
5349
|
+
};
|
|
5350
|
+
};
|
|
5351
|
+
brandName: string;
|
|
5352
|
+
platformId: string;
|
|
5353
|
+
isReloginRequired: boolean;
|
|
5354
|
+
connectedUserName: string;
|
|
5355
|
+
connectedUserId: string;
|
|
5356
|
+
botpressBot: {
|
|
5357
|
+
name: string;
|
|
5358
|
+
id: string;
|
|
5359
|
+
accessToken: string;
|
|
5360
|
+
botId: string;
|
|
5361
|
+
integrationId: string;
|
|
5362
|
+
} | null;
|
|
5363
|
+
};
|
|
5364
|
+
requestId: string;
|
|
5365
|
+
}, {
|
|
5366
|
+
channel: {
|
|
5367
|
+
name: string;
|
|
5368
|
+
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat" | "facebook_feed" | "sms_vonage";
|
|
5369
|
+
id: string;
|
|
5370
|
+
metadata: {
|
|
5371
|
+
name: string;
|
|
5372
|
+
id: string;
|
|
5373
|
+
accessToken?: string | undefined;
|
|
5374
|
+
channelSecret?: string | undefined;
|
|
5375
|
+
additionalCredentials?: any;
|
|
5376
|
+
senderId?: string | undefined;
|
|
5377
|
+
whatsapp?: {
|
|
5378
|
+
wabaBusinessId?: string | null | undefined;
|
|
5379
|
+
wabaExternalId?: string | null | undefined;
|
|
5380
|
+
phoneNumberId?: string | null | undefined;
|
|
5381
|
+
email?: string | null | undefined;
|
|
5382
|
+
clientId?: string | null | undefined;
|
|
5383
|
+
channelId?: string | null | undefined;
|
|
5384
|
+
waapiInstanceId?: string | null | undefined;
|
|
5385
|
+
qr?: string | null | undefined;
|
|
5386
|
+
status?: "active" | "pending" | "waapi-qr" | undefined;
|
|
5387
|
+
apiKey?: string | undefined;
|
|
5388
|
+
tier?: "basic" | "regular" | "premium" | undefined;
|
|
5389
|
+
integrationType?: "meta" | "360dialog" | "waapi" | undefined;
|
|
5390
|
+
} | undefined;
|
|
5391
|
+
vonageCredentials?: {
|
|
5392
|
+
apiKey: string;
|
|
5393
|
+
mobileNumber: string;
|
|
5394
|
+
apiSecret: string;
|
|
5395
|
+
} | undefined;
|
|
5396
|
+
lineRichMenuId?: string | null | undefined;
|
|
5397
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5398
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5399
|
+
isCSATEnabled?: boolean | undefined;
|
|
5400
|
+
};
|
|
5401
|
+
status: boolean;
|
|
5402
|
+
createdAt: Date;
|
|
5403
|
+
updatedAt: Date;
|
|
5404
|
+
deletedAt: Date | null;
|
|
5405
|
+
actor: {
|
|
5406
|
+
name: string;
|
|
5407
|
+
id: string;
|
|
5408
|
+
address: string | null;
|
|
5409
|
+
email: string;
|
|
5410
|
+
createdAt: Date;
|
|
5411
|
+
updatedAt: Date;
|
|
5412
|
+
deletedAt: Date | null;
|
|
5413
|
+
emailVerifiedAt: Date | null;
|
|
5414
|
+
password: string;
|
|
5415
|
+
phone: string | null;
|
|
5416
|
+
notificationCount: number | null;
|
|
5417
|
+
roles: {
|
|
5418
|
+
id: string;
|
|
5419
|
+
description: string | null;
|
|
5420
|
+
createdAt: Date;
|
|
5421
|
+
updatedAt: Date;
|
|
5422
|
+
deletedAt: Date | null;
|
|
5423
|
+
systemName: string;
|
|
5424
|
+
displayName: string;
|
|
5425
|
+
permissions: {
|
|
5426
|
+
id: string;
|
|
5427
|
+
description: string | null;
|
|
5428
|
+
createdAt: Date;
|
|
5429
|
+
updatedAt: Date;
|
|
5430
|
+
deletedAt: Date | null;
|
|
5431
|
+
systemName: string;
|
|
5432
|
+
displayName: string;
|
|
5433
|
+
}[];
|
|
5434
|
+
}[];
|
|
5435
|
+
extension: {
|
|
5436
|
+
id: string;
|
|
5437
|
+
createdAt: Date;
|
|
5438
|
+
updatedAt: Date;
|
|
5439
|
+
deletedAt: Date | null;
|
|
5440
|
+
userId: string | null;
|
|
5441
|
+
sipServerUrl: string;
|
|
5442
|
+
sipUserName: string;
|
|
5443
|
+
webphoneLoginUser: string;
|
|
5444
|
+
extensionId: string | null;
|
|
5445
|
+
extensionName: string;
|
|
5446
|
+
telephonySignature: string | null;
|
|
5447
|
+
};
|
|
5448
|
+
};
|
|
5449
|
+
brandName: string;
|
|
5450
|
+
platformId: string;
|
|
5451
|
+
isReloginRequired: boolean;
|
|
5452
|
+
connectedUserName: string;
|
|
5453
|
+
connectedUserId: string;
|
|
5454
|
+
botpressBot: {
|
|
5455
|
+
name: string;
|
|
5456
|
+
id: string;
|
|
5457
|
+
accessToken: string;
|
|
5458
|
+
botId: string;
|
|
5459
|
+
integrationId: string;
|
|
5460
|
+
} | null;
|
|
5461
|
+
};
|
|
5462
|
+
requestId: string;
|
|
5463
|
+
}>;
|
|
5464
|
+
408: z.ZodObject<{
|
|
5465
|
+
message: z.ZodString;
|
|
5466
|
+
error: z.ZodAny;
|
|
5467
|
+
}, "strip", z.ZodTypeAny, {
|
|
5468
|
+
message: string;
|
|
5469
|
+
error?: any;
|
|
5470
|
+
}, {
|
|
5471
|
+
message: string;
|
|
5472
|
+
error?: any;
|
|
5473
|
+
}>;
|
|
5474
|
+
};
|
|
5475
|
+
path: "channel/csat/:channelId";
|
|
5476
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5477
|
+
'x-tenant': z.ZodString;
|
|
5478
|
+
'x-service-token': z.ZodString;
|
|
5479
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
|
5480
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
|
5481
|
+
}, "strip", z.ZodTypeAny, {
|
|
5482
|
+
'x-tenant': string;
|
|
5483
|
+
'x-service-token': string;
|
|
5484
|
+
'x-client-timezone': string;
|
|
5485
|
+
'x-code'?: string | undefined;
|
|
5486
|
+
}, {
|
|
5487
|
+
'x-tenant': string;
|
|
5488
|
+
'x-service-token': string;
|
|
5489
|
+
'x-code'?: string | undefined;
|
|
5490
|
+
'x-client-timezone'?: string | undefined;
|
|
5491
|
+
}>>>;
|
|
5492
|
+
};
|
|
4648
5493
|
messenger: {
|
|
4649
5494
|
getPages: {
|
|
4650
5495
|
method: "GET";
|
|
@@ -5536,6 +6381,7 @@ export declare const channelContract: {
|
|
|
5536
6381
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5537
6382
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
5538
6383
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6384
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5539
6385
|
}, "strip", z.ZodTypeAny, {
|
|
5540
6386
|
name: string;
|
|
5541
6387
|
id: string;
|
|
@@ -5565,6 +6411,7 @@ export declare const channelContract: {
|
|
|
5565
6411
|
lineRichMenuId?: string | null | undefined;
|
|
5566
6412
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5567
6413
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6414
|
+
isCSATEnabled?: boolean | undefined;
|
|
5568
6415
|
}, {
|
|
5569
6416
|
name: string;
|
|
5570
6417
|
id: string;
|
|
@@ -5594,6 +6441,7 @@ export declare const channelContract: {
|
|
|
5594
6441
|
lineRichMenuId?: string | null | undefined;
|
|
5595
6442
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5596
6443
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6444
|
+
isCSATEnabled?: boolean | undefined;
|
|
5597
6445
|
}>;
|
|
5598
6446
|
platformId: z.ZodString;
|
|
5599
6447
|
connectedUserId: z.ZodString;
|
|
@@ -5630,6 +6478,7 @@ export declare const channelContract: {
|
|
|
5630
6478
|
lineRichMenuId?: string | null | undefined;
|
|
5631
6479
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5632
6480
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6481
|
+
isCSATEnabled?: boolean | undefined;
|
|
5633
6482
|
};
|
|
5634
6483
|
platformId: string;
|
|
5635
6484
|
connectedUserId: string;
|
|
@@ -5666,6 +6515,7 @@ export declare const channelContract: {
|
|
|
5666
6515
|
lineRichMenuId?: string | null | undefined;
|
|
5667
6516
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5668
6517
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6518
|
+
isCSATEnabled?: boolean | undefined;
|
|
5669
6519
|
};
|
|
5670
6520
|
platformId: string;
|
|
5671
6521
|
connectedUserId: string;
|
|
@@ -5746,6 +6596,7 @@ export declare const channelContract: {
|
|
|
5746
6596
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5747
6597
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
5748
6598
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6599
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5749
6600
|
}, "strip", z.ZodTypeAny, {
|
|
5750
6601
|
name: string;
|
|
5751
6602
|
id: string;
|
|
@@ -5775,6 +6626,7 @@ export declare const channelContract: {
|
|
|
5775
6626
|
lineRichMenuId?: string | null | undefined;
|
|
5776
6627
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5777
6628
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6629
|
+
isCSATEnabled?: boolean | undefined;
|
|
5778
6630
|
}, {
|
|
5779
6631
|
name: string;
|
|
5780
6632
|
id: string;
|
|
@@ -5804,6 +6656,7 @@ export declare const channelContract: {
|
|
|
5804
6656
|
lineRichMenuId?: string | null | undefined;
|
|
5805
6657
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5806
6658
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6659
|
+
isCSATEnabled?: boolean | undefined;
|
|
5807
6660
|
}>;
|
|
5808
6661
|
brandName: z.ZodString;
|
|
5809
6662
|
platformId: z.ZodString;
|
|
@@ -6067,6 +6920,7 @@ export declare const channelContract: {
|
|
|
6067
6920
|
lineRichMenuId?: string | null | undefined;
|
|
6068
6921
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6069
6922
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6923
|
+
isCSATEnabled?: boolean | undefined;
|
|
6070
6924
|
};
|
|
6071
6925
|
status: boolean;
|
|
6072
6926
|
createdAt: Date;
|
|
@@ -6161,6 +7015,7 @@ export declare const channelContract: {
|
|
|
6161
7015
|
lineRichMenuId?: string | null | undefined;
|
|
6162
7016
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6163
7017
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7018
|
+
isCSATEnabled?: boolean | undefined;
|
|
6164
7019
|
};
|
|
6165
7020
|
status: boolean;
|
|
6166
7021
|
createdAt: Date;
|
|
@@ -6257,6 +7112,7 @@ export declare const channelContract: {
|
|
|
6257
7112
|
lineRichMenuId?: string | null | undefined;
|
|
6258
7113
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6259
7114
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7115
|
+
isCSATEnabled?: boolean | undefined;
|
|
6260
7116
|
};
|
|
6261
7117
|
status: boolean;
|
|
6262
7118
|
createdAt: Date;
|
|
@@ -6354,6 +7210,7 @@ export declare const channelContract: {
|
|
|
6354
7210
|
lineRichMenuId?: string | null | undefined;
|
|
6355
7211
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6356
7212
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7213
|
+
isCSATEnabled?: boolean | undefined;
|
|
6357
7214
|
};
|
|
6358
7215
|
status: boolean;
|
|
6359
7216
|
createdAt: Date;
|
|
@@ -6765,6 +7622,7 @@ export declare const channelContract: {
|
|
|
6765
7622
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6766
7623
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6767
7624
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7625
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6768
7626
|
}, "strip", z.ZodTypeAny, {
|
|
6769
7627
|
name: string;
|
|
6770
7628
|
id: string;
|
|
@@ -6794,6 +7652,7 @@ export declare const channelContract: {
|
|
|
6794
7652
|
lineRichMenuId?: string | null | undefined;
|
|
6795
7653
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6796
7654
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7655
|
+
isCSATEnabled?: boolean | undefined;
|
|
6797
7656
|
}, {
|
|
6798
7657
|
name: string;
|
|
6799
7658
|
id: string;
|
|
@@ -6823,6 +7682,7 @@ export declare const channelContract: {
|
|
|
6823
7682
|
lineRichMenuId?: string | null | undefined;
|
|
6824
7683
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6825
7684
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7685
|
+
isCSATEnabled?: boolean | undefined;
|
|
6826
7686
|
}>;
|
|
6827
7687
|
platformId: z.ZodString;
|
|
6828
7688
|
connectedUserId: z.ZodString;
|
|
@@ -6859,6 +7719,7 @@ export declare const channelContract: {
|
|
|
6859
7719
|
lineRichMenuId?: string | null | undefined;
|
|
6860
7720
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6861
7721
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7722
|
+
isCSATEnabled?: boolean | undefined;
|
|
6862
7723
|
};
|
|
6863
7724
|
platformId: string;
|
|
6864
7725
|
connectedUserId: string;
|
|
@@ -6895,6 +7756,7 @@ export declare const channelContract: {
|
|
|
6895
7756
|
lineRichMenuId?: string | null | undefined;
|
|
6896
7757
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6897
7758
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7759
|
+
isCSATEnabled?: boolean | undefined;
|
|
6898
7760
|
};
|
|
6899
7761
|
platformId: string;
|
|
6900
7762
|
connectedUserId: string;
|
|
@@ -6975,6 +7837,7 @@ export declare const channelContract: {
|
|
|
6975
7837
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6976
7838
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6977
7839
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7840
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6978
7841
|
}, "strip", z.ZodTypeAny, {
|
|
6979
7842
|
name: string;
|
|
6980
7843
|
id: string;
|
|
@@ -7004,6 +7867,7 @@ export declare const channelContract: {
|
|
|
7004
7867
|
lineRichMenuId?: string | null | undefined;
|
|
7005
7868
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7006
7869
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7870
|
+
isCSATEnabled?: boolean | undefined;
|
|
7007
7871
|
}, {
|
|
7008
7872
|
name: string;
|
|
7009
7873
|
id: string;
|
|
@@ -7033,6 +7897,7 @@ export declare const channelContract: {
|
|
|
7033
7897
|
lineRichMenuId?: string | null | undefined;
|
|
7034
7898
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7035
7899
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7900
|
+
isCSATEnabled?: boolean | undefined;
|
|
7036
7901
|
}>;
|
|
7037
7902
|
brandName: z.ZodString;
|
|
7038
7903
|
platformId: z.ZodString;
|
|
@@ -7296,6 +8161,7 @@ export declare const channelContract: {
|
|
|
7296
8161
|
lineRichMenuId?: string | null | undefined;
|
|
7297
8162
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7298
8163
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8164
|
+
isCSATEnabled?: boolean | undefined;
|
|
7299
8165
|
};
|
|
7300
8166
|
status: boolean;
|
|
7301
8167
|
createdAt: Date;
|
|
@@ -7390,6 +8256,7 @@ export declare const channelContract: {
|
|
|
7390
8256
|
lineRichMenuId?: string | null | undefined;
|
|
7391
8257
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7392
8258
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8259
|
+
isCSATEnabled?: boolean | undefined;
|
|
7393
8260
|
};
|
|
7394
8261
|
status: boolean;
|
|
7395
8262
|
createdAt: Date;
|
|
@@ -7486,6 +8353,7 @@ export declare const channelContract: {
|
|
|
7486
8353
|
lineRichMenuId?: string | null | undefined;
|
|
7487
8354
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7488
8355
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8356
|
+
isCSATEnabled?: boolean | undefined;
|
|
7489
8357
|
};
|
|
7490
8358
|
status: boolean;
|
|
7491
8359
|
createdAt: Date;
|
|
@@ -7583,6 +8451,7 @@ export declare const channelContract: {
|
|
|
7583
8451
|
lineRichMenuId?: string | null | undefined;
|
|
7584
8452
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7585
8453
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8454
|
+
isCSATEnabled?: boolean | undefined;
|
|
7586
8455
|
};
|
|
7587
8456
|
status: boolean;
|
|
7588
8457
|
createdAt: Date;
|
|
@@ -7764,6 +8633,7 @@ export declare const channelContract: {
|
|
|
7764
8633
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7765
8634
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7766
8635
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
8636
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
7767
8637
|
}, "strip", z.ZodTypeAny, {
|
|
7768
8638
|
name: string;
|
|
7769
8639
|
id: string;
|
|
@@ -7793,6 +8663,7 @@ export declare const channelContract: {
|
|
|
7793
8663
|
lineRichMenuId?: string | null | undefined;
|
|
7794
8664
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7795
8665
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8666
|
+
isCSATEnabled?: boolean | undefined;
|
|
7796
8667
|
}, {
|
|
7797
8668
|
name: string;
|
|
7798
8669
|
id: string;
|
|
@@ -7822,6 +8693,7 @@ export declare const channelContract: {
|
|
|
7822
8693
|
lineRichMenuId?: string | null | undefined;
|
|
7823
8694
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7824
8695
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8696
|
+
isCSATEnabled?: boolean | undefined;
|
|
7825
8697
|
}>;
|
|
7826
8698
|
brandName: z.ZodString;
|
|
7827
8699
|
platformId: z.ZodString;
|
|
@@ -8085,6 +8957,7 @@ export declare const channelContract: {
|
|
|
8085
8957
|
lineRichMenuId?: string | null | undefined;
|
|
8086
8958
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8087
8959
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8960
|
+
isCSATEnabled?: boolean | undefined;
|
|
8088
8961
|
};
|
|
8089
8962
|
status: boolean;
|
|
8090
8963
|
createdAt: Date;
|
|
@@ -8179,6 +9052,7 @@ export declare const channelContract: {
|
|
|
8179
9052
|
lineRichMenuId?: string | null | undefined;
|
|
8180
9053
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8181
9054
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9055
|
+
isCSATEnabled?: boolean | undefined;
|
|
8182
9056
|
};
|
|
8183
9057
|
status: boolean;
|
|
8184
9058
|
createdAt: Date;
|
|
@@ -8275,6 +9149,7 @@ export declare const channelContract: {
|
|
|
8275
9149
|
lineRichMenuId?: string | null | undefined;
|
|
8276
9150
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8277
9151
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9152
|
+
isCSATEnabled?: boolean | undefined;
|
|
8278
9153
|
};
|
|
8279
9154
|
status: boolean;
|
|
8280
9155
|
createdAt: Date;
|
|
@@ -8372,6 +9247,7 @@ export declare const channelContract: {
|
|
|
8372
9247
|
lineRichMenuId?: string | null | undefined;
|
|
8373
9248
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8374
9249
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9250
|
+
isCSATEnabled?: boolean | undefined;
|
|
8375
9251
|
};
|
|
8376
9252
|
status: boolean;
|
|
8377
9253
|
createdAt: Date;
|
|
@@ -8563,6 +9439,7 @@ export declare const channelContract: {
|
|
|
8563
9439
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8564
9440
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
8565
9441
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9442
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8566
9443
|
}, "strip", z.ZodTypeAny, {
|
|
8567
9444
|
name: string;
|
|
8568
9445
|
id: string;
|
|
@@ -8592,6 +9469,7 @@ export declare const channelContract: {
|
|
|
8592
9469
|
lineRichMenuId?: string | null | undefined;
|
|
8593
9470
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8594
9471
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9472
|
+
isCSATEnabled?: boolean | undefined;
|
|
8595
9473
|
}, {
|
|
8596
9474
|
name: string;
|
|
8597
9475
|
id: string;
|
|
@@ -8621,6 +9499,7 @@ export declare const channelContract: {
|
|
|
8621
9499
|
lineRichMenuId?: string | null | undefined;
|
|
8622
9500
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8623
9501
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9502
|
+
isCSATEnabled?: boolean | undefined;
|
|
8624
9503
|
}>;
|
|
8625
9504
|
brandName: z.ZodString;
|
|
8626
9505
|
platformId: z.ZodString;
|
|
@@ -8884,6 +9763,7 @@ export declare const channelContract: {
|
|
|
8884
9763
|
lineRichMenuId?: string | null | undefined;
|
|
8885
9764
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8886
9765
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9766
|
+
isCSATEnabled?: boolean | undefined;
|
|
8887
9767
|
};
|
|
8888
9768
|
status: boolean;
|
|
8889
9769
|
createdAt: Date;
|
|
@@ -8978,6 +9858,7 @@ export declare const channelContract: {
|
|
|
8978
9858
|
lineRichMenuId?: string | null | undefined;
|
|
8979
9859
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8980
9860
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9861
|
+
isCSATEnabled?: boolean | undefined;
|
|
8981
9862
|
};
|
|
8982
9863
|
status: boolean;
|
|
8983
9864
|
createdAt: Date;
|
|
@@ -9074,6 +9955,7 @@ export declare const channelContract: {
|
|
|
9074
9955
|
lineRichMenuId?: string | null | undefined;
|
|
9075
9956
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9076
9957
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9958
|
+
isCSATEnabled?: boolean | undefined;
|
|
9077
9959
|
};
|
|
9078
9960
|
status: boolean;
|
|
9079
9961
|
createdAt: Date;
|
|
@@ -9171,6 +10053,7 @@ export declare const channelContract: {
|
|
|
9171
10053
|
lineRichMenuId?: string | null | undefined;
|
|
9172
10054
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9173
10055
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10056
|
+
isCSATEnabled?: boolean | undefined;
|
|
9174
10057
|
};
|
|
9175
10058
|
status: boolean;
|
|
9176
10059
|
createdAt: Date;
|
|
@@ -9412,6 +10295,7 @@ export declare const channelContract: {
|
|
|
9412
10295
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9413
10296
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9414
10297
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
10298
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9415
10299
|
}, "strip", z.ZodTypeAny, {
|
|
9416
10300
|
name: string;
|
|
9417
10301
|
id: string;
|
|
@@ -9441,6 +10325,7 @@ export declare const channelContract: {
|
|
|
9441
10325
|
lineRichMenuId?: string | null | undefined;
|
|
9442
10326
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9443
10327
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10328
|
+
isCSATEnabled?: boolean | undefined;
|
|
9444
10329
|
}, {
|
|
9445
10330
|
name: string;
|
|
9446
10331
|
id: string;
|
|
@@ -9470,6 +10355,7 @@ export declare const channelContract: {
|
|
|
9470
10355
|
lineRichMenuId?: string | null | undefined;
|
|
9471
10356
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9472
10357
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10358
|
+
isCSATEnabled?: boolean | undefined;
|
|
9473
10359
|
}>;
|
|
9474
10360
|
brandName: z.ZodString;
|
|
9475
10361
|
platformId: z.ZodString;
|
|
@@ -9733,6 +10619,7 @@ export declare const channelContract: {
|
|
|
9733
10619
|
lineRichMenuId?: string | null | undefined;
|
|
9734
10620
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9735
10621
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10622
|
+
isCSATEnabled?: boolean | undefined;
|
|
9736
10623
|
};
|
|
9737
10624
|
status: boolean;
|
|
9738
10625
|
createdAt: Date;
|
|
@@ -9827,6 +10714,7 @@ export declare const channelContract: {
|
|
|
9827
10714
|
lineRichMenuId?: string | null | undefined;
|
|
9828
10715
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9829
10716
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10717
|
+
isCSATEnabled?: boolean | undefined;
|
|
9830
10718
|
};
|
|
9831
10719
|
status: boolean;
|
|
9832
10720
|
createdAt: Date;
|
|
@@ -9923,6 +10811,7 @@ export declare const channelContract: {
|
|
|
9923
10811
|
lineRichMenuId?: string | null | undefined;
|
|
9924
10812
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9925
10813
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10814
|
+
isCSATEnabled?: boolean | undefined;
|
|
9926
10815
|
};
|
|
9927
10816
|
status: boolean;
|
|
9928
10817
|
createdAt: Date;
|
|
@@ -10020,6 +10909,7 @@ export declare const channelContract: {
|
|
|
10020
10909
|
lineRichMenuId?: string | null | undefined;
|
|
10021
10910
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10022
10911
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10912
|
+
isCSATEnabled?: boolean | undefined;
|
|
10023
10913
|
};
|
|
10024
10914
|
status: boolean;
|
|
10025
10915
|
createdAt: Date;
|
|
@@ -10192,6 +11082,7 @@ export declare const channelContract: {
|
|
|
10192
11082
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10193
11083
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
10194
11084
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11085
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10195
11086
|
}, "strip", z.ZodTypeAny, {
|
|
10196
11087
|
name: string;
|
|
10197
11088
|
id: string;
|
|
@@ -10221,6 +11112,7 @@ export declare const channelContract: {
|
|
|
10221
11112
|
lineRichMenuId?: string | null | undefined;
|
|
10222
11113
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10223
11114
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11115
|
+
isCSATEnabled?: boolean | undefined;
|
|
10224
11116
|
}, {
|
|
10225
11117
|
name: string;
|
|
10226
11118
|
id: string;
|
|
@@ -10250,6 +11142,7 @@ export declare const channelContract: {
|
|
|
10250
11142
|
lineRichMenuId?: string | null | undefined;
|
|
10251
11143
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10252
11144
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11145
|
+
isCSATEnabled?: boolean | undefined;
|
|
10253
11146
|
}>;
|
|
10254
11147
|
platformId: z.ZodString;
|
|
10255
11148
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10284,6 +11177,7 @@ export declare const channelContract: {
|
|
|
10284
11177
|
lineRichMenuId?: string | null | undefined;
|
|
10285
11178
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10286
11179
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11180
|
+
isCSATEnabled?: boolean | undefined;
|
|
10287
11181
|
};
|
|
10288
11182
|
platformId: string;
|
|
10289
11183
|
}, {
|
|
@@ -10318,6 +11212,7 @@ export declare const channelContract: {
|
|
|
10318
11212
|
lineRichMenuId?: string | null | undefined;
|
|
10319
11213
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10320
11214
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11215
|
+
isCSATEnabled?: boolean | undefined;
|
|
10321
11216
|
};
|
|
10322
11217
|
platformId: string;
|
|
10323
11218
|
}>;
|
|
@@ -10396,6 +11291,7 @@ export declare const channelContract: {
|
|
|
10396
11291
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10397
11292
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
10398
11293
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11294
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10399
11295
|
}, "strip", z.ZodTypeAny, {
|
|
10400
11296
|
name: string;
|
|
10401
11297
|
id: string;
|
|
@@ -10425,6 +11321,7 @@ export declare const channelContract: {
|
|
|
10425
11321
|
lineRichMenuId?: string | null | undefined;
|
|
10426
11322
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10427
11323
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11324
|
+
isCSATEnabled?: boolean | undefined;
|
|
10428
11325
|
}, {
|
|
10429
11326
|
name: string;
|
|
10430
11327
|
id: string;
|
|
@@ -10454,6 +11351,7 @@ export declare const channelContract: {
|
|
|
10454
11351
|
lineRichMenuId?: string | null | undefined;
|
|
10455
11352
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10456
11353
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11354
|
+
isCSATEnabled?: boolean | undefined;
|
|
10457
11355
|
}>;
|
|
10458
11356
|
brandName: z.ZodString;
|
|
10459
11357
|
platformId: z.ZodString;
|
|
@@ -10717,6 +11615,7 @@ export declare const channelContract: {
|
|
|
10717
11615
|
lineRichMenuId?: string | null | undefined;
|
|
10718
11616
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10719
11617
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11618
|
+
isCSATEnabled?: boolean | undefined;
|
|
10720
11619
|
};
|
|
10721
11620
|
status: boolean;
|
|
10722
11621
|
createdAt: Date;
|
|
@@ -10811,6 +11710,7 @@ export declare const channelContract: {
|
|
|
10811
11710
|
lineRichMenuId?: string | null | undefined;
|
|
10812
11711
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10813
11712
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11713
|
+
isCSATEnabled?: boolean | undefined;
|
|
10814
11714
|
};
|
|
10815
11715
|
status: boolean;
|
|
10816
11716
|
createdAt: Date;
|
|
@@ -10907,6 +11807,7 @@ export declare const channelContract: {
|
|
|
10907
11807
|
lineRichMenuId?: string | null | undefined;
|
|
10908
11808
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10909
11809
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11810
|
+
isCSATEnabled?: boolean | undefined;
|
|
10910
11811
|
};
|
|
10911
11812
|
status: boolean;
|
|
10912
11813
|
createdAt: Date;
|
|
@@ -11004,6 +11905,7 @@ export declare const channelContract: {
|
|
|
11004
11905
|
lineRichMenuId?: string | null | undefined;
|
|
11005
11906
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11006
11907
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11908
|
+
isCSATEnabled?: boolean | undefined;
|
|
11007
11909
|
};
|
|
11008
11910
|
status: boolean;
|
|
11009
11911
|
createdAt: Date;
|
|
@@ -11660,6 +12562,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11660
12562
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11661
12563
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11662
12564
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12565
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11663
12566
|
}, "strip", z.ZodTypeAny, {
|
|
11664
12567
|
name: string;
|
|
11665
12568
|
id: string;
|
|
@@ -11689,6 +12592,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11689
12592
|
lineRichMenuId?: string | null | undefined;
|
|
11690
12593
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11691
12594
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12595
|
+
isCSATEnabled?: boolean | undefined;
|
|
11692
12596
|
}, {
|
|
11693
12597
|
name: string;
|
|
11694
12598
|
id: string;
|
|
@@ -11718,6 +12622,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11718
12622
|
lineRichMenuId?: string | null | undefined;
|
|
11719
12623
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11720
12624
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12625
|
+
isCSATEnabled?: boolean | undefined;
|
|
11721
12626
|
}>;
|
|
11722
12627
|
platformId: z.ZodString;
|
|
11723
12628
|
connectedUserId: z.ZodString;
|
|
@@ -11754,6 +12659,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11754
12659
|
lineRichMenuId?: string | null | undefined;
|
|
11755
12660
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11756
12661
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12662
|
+
isCSATEnabled?: boolean | undefined;
|
|
11757
12663
|
};
|
|
11758
12664
|
platformId: string;
|
|
11759
12665
|
connectedUserId: string;
|
|
@@ -11790,6 +12696,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11790
12696
|
lineRichMenuId?: string | null | undefined;
|
|
11791
12697
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11792
12698
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12699
|
+
isCSATEnabled?: boolean | undefined;
|
|
11793
12700
|
};
|
|
11794
12701
|
platformId: string;
|
|
11795
12702
|
connectedUserId: string;
|
|
@@ -11870,6 +12777,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11870
12777
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11871
12778
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11872
12779
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12780
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11873
12781
|
}, "strip", z.ZodTypeAny, {
|
|
11874
12782
|
name: string;
|
|
11875
12783
|
id: string;
|
|
@@ -11899,6 +12807,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11899
12807
|
lineRichMenuId?: string | null | undefined;
|
|
11900
12808
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11901
12809
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12810
|
+
isCSATEnabled?: boolean | undefined;
|
|
11902
12811
|
}, {
|
|
11903
12812
|
name: string;
|
|
11904
12813
|
id: string;
|
|
@@ -11928,6 +12837,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11928
12837
|
lineRichMenuId?: string | null | undefined;
|
|
11929
12838
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11930
12839
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12840
|
+
isCSATEnabled?: boolean | undefined;
|
|
11931
12841
|
}>;
|
|
11932
12842
|
brandName: z.ZodString;
|
|
11933
12843
|
platformId: z.ZodString;
|
|
@@ -12191,6 +13101,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12191
13101
|
lineRichMenuId?: string | null | undefined;
|
|
12192
13102
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12193
13103
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13104
|
+
isCSATEnabled?: boolean | undefined;
|
|
12194
13105
|
};
|
|
12195
13106
|
status: boolean;
|
|
12196
13107
|
createdAt: Date;
|
|
@@ -12285,6 +13196,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12285
13196
|
lineRichMenuId?: string | null | undefined;
|
|
12286
13197
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12287
13198
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13199
|
+
isCSATEnabled?: boolean | undefined;
|
|
12288
13200
|
};
|
|
12289
13201
|
status: boolean;
|
|
12290
13202
|
createdAt: Date;
|
|
@@ -12381,6 +13293,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12381
13293
|
lineRichMenuId?: string | null | undefined;
|
|
12382
13294
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12383
13295
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13296
|
+
isCSATEnabled?: boolean | undefined;
|
|
12384
13297
|
};
|
|
12385
13298
|
status: boolean;
|
|
12386
13299
|
createdAt: Date;
|
|
@@ -12478,6 +13391,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
12478
13391
|
lineRichMenuId?: string | null | undefined;
|
|
12479
13392
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12480
13393
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13394
|
+
isCSATEnabled?: boolean | undefined;
|
|
12481
13395
|
};
|
|
12482
13396
|
status: boolean;
|
|
12483
13397
|
createdAt: Date;
|
|
@@ -12639,6 +13553,7 @@ export declare const channelBotContract: {
|
|
|
12639
13553
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12640
13554
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12641
13555
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
13556
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
12642
13557
|
}, "strip", z.ZodTypeAny, {
|
|
12643
13558
|
name: string;
|
|
12644
13559
|
id: string;
|
|
@@ -12668,6 +13583,7 @@ export declare const channelBotContract: {
|
|
|
12668
13583
|
lineRichMenuId?: string | null | undefined;
|
|
12669
13584
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12670
13585
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13586
|
+
isCSATEnabled?: boolean | undefined;
|
|
12671
13587
|
}, {
|
|
12672
13588
|
name: string;
|
|
12673
13589
|
id: string;
|
|
@@ -12697,6 +13613,7 @@ export declare const channelBotContract: {
|
|
|
12697
13613
|
lineRichMenuId?: string | null | undefined;
|
|
12698
13614
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12699
13615
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13616
|
+
isCSATEnabled?: boolean | undefined;
|
|
12700
13617
|
}>;
|
|
12701
13618
|
brandName: z.ZodString;
|
|
12702
13619
|
platformId: z.ZodString;
|
|
@@ -12960,6 +13877,7 @@ export declare const channelBotContract: {
|
|
|
12960
13877
|
lineRichMenuId?: string | null | undefined;
|
|
12961
13878
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12962
13879
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13880
|
+
isCSATEnabled?: boolean | undefined;
|
|
12963
13881
|
};
|
|
12964
13882
|
status: boolean;
|
|
12965
13883
|
createdAt: Date;
|
|
@@ -13054,6 +13972,7 @@ export declare const channelBotContract: {
|
|
|
13054
13972
|
lineRichMenuId?: string | null | undefined;
|
|
13055
13973
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13056
13974
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13975
|
+
isCSATEnabled?: boolean | undefined;
|
|
13057
13976
|
};
|
|
13058
13977
|
status: boolean;
|
|
13059
13978
|
createdAt: Date;
|
|
@@ -13150,6 +14069,7 @@ export declare const channelBotContract: {
|
|
|
13150
14069
|
lineRichMenuId?: string | null | undefined;
|
|
13151
14070
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13152
14071
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14072
|
+
isCSATEnabled?: boolean | undefined;
|
|
13153
14073
|
};
|
|
13154
14074
|
status: boolean;
|
|
13155
14075
|
createdAt: Date;
|
|
@@ -13247,6 +14167,7 @@ export declare const channelBotContract: {
|
|
|
13247
14167
|
lineRichMenuId?: string | null | undefined;
|
|
13248
14168
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13249
14169
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14170
|
+
isCSATEnabled?: boolean | undefined;
|
|
13250
14171
|
};
|
|
13251
14172
|
status: boolean;
|
|
13252
14173
|
createdAt: Date;
|
|
@@ -13410,6 +14331,7 @@ export declare const channelBotContract: {
|
|
|
13410
14331
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13411
14332
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
13412
14333
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
14334
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
13413
14335
|
}, "strip", z.ZodTypeAny, {
|
|
13414
14336
|
name: string;
|
|
13415
14337
|
id: string;
|
|
@@ -13439,6 +14361,7 @@ export declare const channelBotContract: {
|
|
|
13439
14361
|
lineRichMenuId?: string | null | undefined;
|
|
13440
14362
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13441
14363
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14364
|
+
isCSATEnabled?: boolean | undefined;
|
|
13442
14365
|
}, {
|
|
13443
14366
|
name: string;
|
|
13444
14367
|
id: string;
|
|
@@ -13468,6 +14391,7 @@ export declare const channelBotContract: {
|
|
|
13468
14391
|
lineRichMenuId?: string | null | undefined;
|
|
13469
14392
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13470
14393
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14394
|
+
isCSATEnabled?: boolean | undefined;
|
|
13471
14395
|
}>;
|
|
13472
14396
|
brandName: z.ZodString;
|
|
13473
14397
|
platformId: z.ZodString;
|
|
@@ -13731,6 +14655,7 @@ export declare const channelBotContract: {
|
|
|
13731
14655
|
lineRichMenuId?: string | null | undefined;
|
|
13732
14656
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13733
14657
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14658
|
+
isCSATEnabled?: boolean | undefined;
|
|
13734
14659
|
};
|
|
13735
14660
|
status: boolean;
|
|
13736
14661
|
createdAt: Date;
|
|
@@ -13825,6 +14750,7 @@ export declare const channelBotContract: {
|
|
|
13825
14750
|
lineRichMenuId?: string | null | undefined;
|
|
13826
14751
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13827
14752
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14753
|
+
isCSATEnabled?: boolean | undefined;
|
|
13828
14754
|
};
|
|
13829
14755
|
status: boolean;
|
|
13830
14756
|
createdAt: Date;
|
|
@@ -13921,6 +14847,7 @@ export declare const channelBotContract: {
|
|
|
13921
14847
|
lineRichMenuId?: string | null | undefined;
|
|
13922
14848
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13923
14849
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14850
|
+
isCSATEnabled?: boolean | undefined;
|
|
13924
14851
|
};
|
|
13925
14852
|
status: boolean;
|
|
13926
14853
|
createdAt: Date;
|
|
@@ -14018,6 +14945,7 @@ export declare const channelBotContract: {
|
|
|
14018
14945
|
lineRichMenuId?: string | null | undefined;
|
|
14019
14946
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14020
14947
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14948
|
+
isCSATEnabled?: boolean | undefined;
|
|
14021
14949
|
};
|
|
14022
14950
|
status: boolean;
|
|
14023
14951
|
createdAt: Date;
|
|
@@ -14219,6 +15147,7 @@ export declare const channelSMSContract: {
|
|
|
14219
15147
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
14220
15148
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
14221
15149
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
15150
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
14222
15151
|
}, "strip", z.ZodTypeAny, {
|
|
14223
15152
|
name: string;
|
|
14224
15153
|
id: string;
|
|
@@ -14248,6 +15177,7 @@ export declare const channelSMSContract: {
|
|
|
14248
15177
|
lineRichMenuId?: string | null | undefined;
|
|
14249
15178
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14250
15179
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15180
|
+
isCSATEnabled?: boolean | undefined;
|
|
14251
15181
|
}, {
|
|
14252
15182
|
name: string;
|
|
14253
15183
|
id: string;
|
|
@@ -14277,6 +15207,7 @@ export declare const channelSMSContract: {
|
|
|
14277
15207
|
lineRichMenuId?: string | null | undefined;
|
|
14278
15208
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14279
15209
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15210
|
+
isCSATEnabled?: boolean | undefined;
|
|
14280
15211
|
}>;
|
|
14281
15212
|
brandName: z.ZodString;
|
|
14282
15213
|
platformId: z.ZodString;
|
|
@@ -14540,6 +15471,7 @@ export declare const channelSMSContract: {
|
|
|
14540
15471
|
lineRichMenuId?: string | null | undefined;
|
|
14541
15472
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14542
15473
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15474
|
+
isCSATEnabled?: boolean | undefined;
|
|
14543
15475
|
};
|
|
14544
15476
|
status: boolean;
|
|
14545
15477
|
createdAt: Date;
|
|
@@ -14634,6 +15566,7 @@ export declare const channelSMSContract: {
|
|
|
14634
15566
|
lineRichMenuId?: string | null | undefined;
|
|
14635
15567
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14636
15568
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15569
|
+
isCSATEnabled?: boolean | undefined;
|
|
14637
15570
|
};
|
|
14638
15571
|
status: boolean;
|
|
14639
15572
|
createdAt: Date;
|
|
@@ -14730,6 +15663,7 @@ export declare const channelSMSContract: {
|
|
|
14730
15663
|
lineRichMenuId?: string | null | undefined;
|
|
14731
15664
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14732
15665
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15666
|
+
isCSATEnabled?: boolean | undefined;
|
|
14733
15667
|
};
|
|
14734
15668
|
status: boolean;
|
|
14735
15669
|
createdAt: Date;
|
|
@@ -14827,6 +15761,7 @@ export declare const channelSMSContract: {
|
|
|
14827
15761
|
lineRichMenuId?: string | null | undefined;
|
|
14828
15762
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14829
15763
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
15764
|
+
isCSATEnabled?: boolean | undefined;
|
|
14830
15765
|
};
|
|
14831
15766
|
status: boolean;
|
|
14832
15767
|
createdAt: Date;
|