@kl1/contracts 1.2.60-uat → 1.2.61-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/channel/index.d.ts +144 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +8 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +10 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +230 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +54 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +79 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +872 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +83 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +75 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +9 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +83 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +37 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +61 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +61 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +61 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +71 -0
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +29 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -174,6 +174,7 @@ export declare const lineContract: {
|
|
174
174
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
175
175
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
176
176
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
177
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
177
178
|
}, "strip", z.ZodTypeAny, {
|
178
179
|
name: string;
|
179
180
|
id: string;
|
@@ -203,6 +204,7 @@ export declare const lineContract: {
|
|
203
204
|
lineRichMenuId?: string | null | undefined;
|
204
205
|
messengerIntegrationType?: "own" | "business" | undefined;
|
205
206
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
207
|
+
isCSATEnabled?: boolean | undefined;
|
206
208
|
}, {
|
207
209
|
name: string;
|
208
210
|
id: string;
|
@@ -232,6 +234,7 @@ export declare const lineContract: {
|
|
232
234
|
lineRichMenuId?: string | null | undefined;
|
233
235
|
messengerIntegrationType?: "own" | "business" | undefined;
|
234
236
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
237
|
+
isCSATEnabled?: boolean | undefined;
|
235
238
|
}>;
|
236
239
|
platformId: z.ZodString;
|
237
240
|
brandName: z.ZodString;
|
@@ -291,6 +294,7 @@ export declare const lineContract: {
|
|
291
294
|
lineRichMenuId?: string | null | undefined;
|
292
295
|
messengerIntegrationType?: "own" | "business" | undefined;
|
293
296
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
297
|
+
isCSATEnabled?: boolean | undefined;
|
294
298
|
};
|
295
299
|
status: boolean;
|
296
300
|
brandName: string;
|
@@ -338,6 +342,7 @@ export declare const lineContract: {
|
|
338
342
|
lineRichMenuId?: string | null | undefined;
|
339
343
|
messengerIntegrationType?: "own" | "business" | undefined;
|
340
344
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
345
|
+
isCSATEnabled?: boolean | undefined;
|
341
346
|
};
|
342
347
|
status: boolean;
|
343
348
|
brandName: string;
|
@@ -388,6 +393,7 @@ export declare const lineContract: {
|
|
388
393
|
lineRichMenuId?: string | null | undefined;
|
389
394
|
messengerIntegrationType?: "own" | "business" | undefined;
|
390
395
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
396
|
+
isCSATEnabled?: boolean | undefined;
|
391
397
|
};
|
392
398
|
status: boolean;
|
393
399
|
brandName: string;
|
@@ -467,6 +473,7 @@ export declare const lineContract: {
|
|
467
473
|
lineRichMenuId?: string | null | undefined;
|
468
474
|
messengerIntegrationType?: "own" | "business" | undefined;
|
469
475
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
476
|
+
isCSATEnabled?: boolean | undefined;
|
470
477
|
};
|
471
478
|
status: boolean;
|
472
479
|
brandName: string;
|
@@ -674,6 +681,7 @@ export declare const lineContract: {
|
|
674
681
|
lineRichMenuId?: string | null | undefined;
|
675
682
|
messengerIntegrationType?: "own" | "business" | undefined;
|
676
683
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
684
|
+
isCSATEnabled?: boolean | undefined;
|
677
685
|
};
|
678
686
|
status: boolean;
|
679
687
|
brandName: string;
|
@@ -784,6 +792,7 @@ export declare const lineContract: {
|
|
784
792
|
lineRichMenuId?: string | null | undefined;
|
785
793
|
messengerIntegrationType?: "own" | "business" | undefined;
|
786
794
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
795
|
+
isCSATEnabled?: boolean | undefined;
|
787
796
|
};
|
788
797
|
status: boolean;
|
789
798
|
brandName: string;
|
@@ -983,6 +992,7 @@ export declare const lineContract: {
|
|
983
992
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
984
993
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
985
994
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
995
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
986
996
|
}, "strip", z.ZodTypeAny, {
|
987
997
|
name: string;
|
988
998
|
id: string;
|
@@ -1012,6 +1022,7 @@ export declare const lineContract: {
|
|
1012
1022
|
lineRichMenuId?: string | null | undefined;
|
1013
1023
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1014
1024
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1025
|
+
isCSATEnabled?: boolean | undefined;
|
1015
1026
|
}, {
|
1016
1027
|
name: string;
|
1017
1028
|
id: string;
|
@@ -1041,6 +1052,7 @@ export declare const lineContract: {
|
|
1041
1052
|
lineRichMenuId?: string | null | undefined;
|
1042
1053
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1043
1054
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1055
|
+
isCSATEnabled?: boolean | undefined;
|
1044
1056
|
}>;
|
1045
1057
|
platformId: z.ZodString;
|
1046
1058
|
brandName: z.ZodString;
|
@@ -1100,6 +1112,7 @@ export declare const lineContract: {
|
|
1100
1112
|
lineRichMenuId?: string | null | undefined;
|
1101
1113
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1102
1114
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1115
|
+
isCSATEnabled?: boolean | undefined;
|
1103
1116
|
};
|
1104
1117
|
status: boolean;
|
1105
1118
|
brandName: string;
|
@@ -1147,6 +1160,7 @@ export declare const lineContract: {
|
|
1147
1160
|
lineRichMenuId?: string | null | undefined;
|
1148
1161
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1149
1162
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1163
|
+
isCSATEnabled?: boolean | undefined;
|
1150
1164
|
};
|
1151
1165
|
status: boolean;
|
1152
1166
|
brandName: string;
|
@@ -1196,6 +1210,7 @@ export declare const lineContract: {
|
|
1196
1210
|
lineRichMenuId?: string | null | undefined;
|
1197
1211
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1198
1212
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1213
|
+
isCSATEnabled?: boolean | undefined;
|
1199
1214
|
};
|
1200
1215
|
status: boolean;
|
1201
1216
|
brandName: string;
|
@@ -1246,6 +1261,7 @@ export declare const lineContract: {
|
|
1246
1261
|
lineRichMenuId?: string | null | undefined;
|
1247
1262
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1248
1263
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1264
|
+
isCSATEnabled?: boolean | undefined;
|
1249
1265
|
};
|
1250
1266
|
status: boolean;
|
1251
1267
|
brandName: string;
|
@@ -1479,6 +1495,7 @@ export declare const lineContract: {
|
|
1479
1495
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1480
1496
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1481
1497
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1498
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
1482
1499
|
}, "strip", z.ZodTypeAny, {
|
1483
1500
|
name: string;
|
1484
1501
|
id: string;
|
@@ -1508,6 +1525,7 @@ export declare const lineContract: {
|
|
1508
1525
|
lineRichMenuId?: string | null | undefined;
|
1509
1526
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1510
1527
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1528
|
+
isCSATEnabled?: boolean | undefined;
|
1511
1529
|
}, {
|
1512
1530
|
name: string;
|
1513
1531
|
id: string;
|
@@ -1537,6 +1555,7 @@ export declare const lineContract: {
|
|
1537
1555
|
lineRichMenuId?: string | null | undefined;
|
1538
1556
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1539
1557
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1558
|
+
isCSATEnabled?: boolean | undefined;
|
1540
1559
|
}>;
|
1541
1560
|
platformId: z.ZodString;
|
1542
1561
|
brandName: z.ZodString;
|
@@ -1596,6 +1615,7 @@ export declare const lineContract: {
|
|
1596
1615
|
lineRichMenuId?: string | null | undefined;
|
1597
1616
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1598
1617
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1618
|
+
isCSATEnabled?: boolean | undefined;
|
1599
1619
|
};
|
1600
1620
|
status: boolean;
|
1601
1621
|
brandName: string;
|
@@ -1643,6 +1663,7 @@ export declare const lineContract: {
|
|
1643
1663
|
lineRichMenuId?: string | null | undefined;
|
1644
1664
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1645
1665
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1666
|
+
isCSATEnabled?: boolean | undefined;
|
1646
1667
|
};
|
1647
1668
|
status: boolean;
|
1648
1669
|
brandName: string;
|
@@ -1695,6 +1716,7 @@ export declare const lineContract: {
|
|
1695
1716
|
lineRichMenuId?: string | null | undefined;
|
1696
1717
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1697
1718
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1719
|
+
isCSATEnabled?: boolean | undefined;
|
1698
1720
|
};
|
1699
1721
|
status: boolean;
|
1700
1722
|
brandName: string;
|
@@ -1786,6 +1808,7 @@ export declare const lineContract: {
|
|
1786
1808
|
lineRichMenuId?: string | null | undefined;
|
1787
1809
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1788
1810
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1811
|
+
isCSATEnabled?: boolean | undefined;
|
1789
1812
|
};
|
1790
1813
|
status: boolean;
|
1791
1814
|
brandName: string;
|
@@ -2045,6 +2068,7 @@ export declare const lineContract: {
|
|
2045
2068
|
lineRichMenuId?: string | null | undefined;
|
2046
2069
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2047
2070
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2071
|
+
isCSATEnabled?: boolean | undefined;
|
2048
2072
|
};
|
2049
2073
|
status: boolean;
|
2050
2074
|
brandName: string;
|
@@ -2175,6 +2199,7 @@ export declare const lineContract: {
|
|
2175
2199
|
lineRichMenuId?: string | null | undefined;
|
2176
2200
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2177
2201
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2202
|
+
isCSATEnabled?: boolean | undefined;
|
2178
2203
|
};
|
2179
2204
|
status: boolean;
|
2180
2205
|
brandName: string;
|
@@ -4235,6 +4260,7 @@ export declare const lineContract: {
|
|
4235
4260
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4236
4261
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
4237
4262
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
4263
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
4238
4264
|
}, "strip", z.ZodTypeAny, {
|
4239
4265
|
name: string;
|
4240
4266
|
id: string;
|
@@ -4264,6 +4290,7 @@ export declare const lineContract: {
|
|
4264
4290
|
lineRichMenuId?: string | null | undefined;
|
4265
4291
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4266
4292
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
4293
|
+
isCSATEnabled?: boolean | undefined;
|
4267
4294
|
}, {
|
4268
4295
|
name: string;
|
4269
4296
|
id: string;
|
@@ -4293,6 +4320,7 @@ export declare const lineContract: {
|
|
4293
4320
|
lineRichMenuId?: string | null | undefined;
|
4294
4321
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4295
4322
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
4323
|
+
isCSATEnabled?: boolean | undefined;
|
4296
4324
|
}>;
|
4297
4325
|
brandName: z.ZodString;
|
4298
4326
|
platformId: z.ZodString;
|
@@ -4556,6 +4584,7 @@ export declare const lineContract: {
|
|
4556
4584
|
lineRichMenuId?: string | null | undefined;
|
4557
4585
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4558
4586
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
4587
|
+
isCSATEnabled?: boolean | undefined;
|
4559
4588
|
};
|
4560
4589
|
status: boolean;
|
4561
4590
|
createdAt: Date;
|
@@ -4650,6 +4679,7 @@ export declare const lineContract: {
|
|
4650
4679
|
lineRichMenuId?: string | null | undefined;
|
4651
4680
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4652
4681
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
4682
|
+
isCSATEnabled?: boolean | undefined;
|
4653
4683
|
};
|
4654
4684
|
status: boolean;
|
4655
4685
|
createdAt: Date;
|
@@ -5308,6 +5338,7 @@ export declare const lineContract: {
|
|
5308
5338
|
lineRichMenuId?: string | null | undefined;
|
5309
5339
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5310
5340
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
5341
|
+
isCSATEnabled?: boolean | undefined;
|
5311
5342
|
};
|
5312
5343
|
status: boolean;
|
5313
5344
|
createdAt: Date;
|
@@ -5736,6 +5767,7 @@ export declare const lineContract: {
|
|
5736
5767
|
lineRichMenuId?: string | null | undefined;
|
5737
5768
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5738
5769
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
5770
|
+
isCSATEnabled?: boolean | undefined;
|
5739
5771
|
};
|
5740
5772
|
status: boolean;
|
5741
5773
|
createdAt: Date;
|
@@ -8915,6 +8947,7 @@ export declare const lineContract: {
|
|
8915
8947
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8916
8948
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
8917
8949
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
8950
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
8918
8951
|
}, "strip", z.ZodTypeAny, {
|
8919
8952
|
name: string;
|
8920
8953
|
id: string;
|
@@ -8944,6 +8977,7 @@ export declare const lineContract: {
|
|
8944
8977
|
lineRichMenuId?: string | null | undefined;
|
8945
8978
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8946
8979
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
8980
|
+
isCSATEnabled?: boolean | undefined;
|
8947
8981
|
}, {
|
8948
8982
|
name: string;
|
8949
8983
|
id: string;
|
@@ -8973,6 +9007,7 @@ export declare const lineContract: {
|
|
8973
9007
|
lineRichMenuId?: string | null | undefined;
|
8974
9008
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8975
9009
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
9010
|
+
isCSATEnabled?: boolean | undefined;
|
8976
9011
|
}>;
|
8977
9012
|
brandName: z.ZodString;
|
8978
9013
|
platformId: z.ZodString;
|
@@ -9236,6 +9271,7 @@ export declare const lineContract: {
|
|
9236
9271
|
lineRichMenuId?: string | null | undefined;
|
9237
9272
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9238
9273
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
9274
|
+
isCSATEnabled?: boolean | undefined;
|
9239
9275
|
};
|
9240
9276
|
status: boolean;
|
9241
9277
|
createdAt: Date;
|
@@ -9330,6 +9366,7 @@ export declare const lineContract: {
|
|
9330
9366
|
lineRichMenuId?: string | null | undefined;
|
9331
9367
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9332
9368
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
9369
|
+
isCSATEnabled?: boolean | undefined;
|
9333
9370
|
};
|
9334
9371
|
status: boolean;
|
9335
9372
|
createdAt: Date;
|
@@ -9988,6 +10025,7 @@ export declare const lineContract: {
|
|
9988
10025
|
lineRichMenuId?: string | null | undefined;
|
9989
10026
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9990
10027
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10028
|
+
isCSATEnabled?: boolean | undefined;
|
9991
10029
|
};
|
9992
10030
|
status: boolean;
|
9993
10031
|
createdAt: Date;
|
@@ -10416,6 +10454,7 @@ export declare const lineContract: {
|
|
10416
10454
|
lineRichMenuId?: string | null | undefined;
|
10417
10455
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10418
10456
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10457
|
+
isCSATEnabled?: boolean | undefined;
|
10419
10458
|
};
|
10420
10459
|
status: boolean;
|
10421
10460
|
createdAt: Date;
|
@@ -12617,6 +12656,7 @@ export declare const lineContract: {
|
|
12617
12656
|
lineRichMenuId?: string | null | undefined;
|
12618
12657
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12619
12658
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
12659
|
+
isCSATEnabled?: boolean | undefined;
|
12620
12660
|
};
|
12621
12661
|
status: boolean;
|
12622
12662
|
createdAt: Date;
|
@@ -13382,6 +13422,7 @@ export declare const lineContract: {
|
|
13382
13422
|
lineRichMenuId?: string | null | undefined;
|
13383
13423
|
messengerIntegrationType?: "own" | "business" | undefined;
|
13384
13424
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
13425
|
+
isCSATEnabled?: boolean | undefined;
|
13385
13426
|
};
|
13386
13427
|
status: boolean;
|
13387
13428
|
createdAt: Date;
|
@@ -14148,6 +14189,7 @@ export declare const lineContract: {
|
|
14148
14189
|
lineRichMenuId?: string | null | undefined;
|
14149
14190
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14150
14191
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
14192
|
+
isCSATEnabled?: boolean | undefined;
|
14151
14193
|
};
|
14152
14194
|
status: boolean;
|
14153
14195
|
createdAt: Date;
|
@@ -14913,6 +14955,7 @@ export declare const lineContract: {
|
|
14913
14955
|
lineRichMenuId?: string | null | undefined;
|
14914
14956
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14915
14957
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
14958
|
+
isCSATEnabled?: boolean | undefined;
|
14916
14959
|
};
|
14917
14960
|
status: boolean;
|
14918
14961
|
createdAt: Date;
|
@@ -15679,6 +15722,7 @@ export declare const lineContract: {
|
|
15679
15722
|
lineRichMenuId?: string | null | undefined;
|
15680
15723
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15681
15724
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
15725
|
+
isCSATEnabled?: boolean | undefined;
|
15682
15726
|
};
|
15683
15727
|
status: boolean;
|
15684
15728
|
createdAt: Date;
|
@@ -16444,6 +16488,7 @@ export declare const lineContract: {
|
|
16444
16488
|
lineRichMenuId?: string | null | undefined;
|
16445
16489
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16446
16490
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
16491
|
+
isCSATEnabled?: boolean | undefined;
|
16447
16492
|
};
|
16448
16493
|
status: boolean;
|
16449
16494
|
createdAt: Date;
|
@@ -17212,6 +17257,7 @@ export declare const lineContract: {
|
|
17212
17257
|
lineRichMenuId?: string | null | undefined;
|
17213
17258
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17214
17259
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
17260
|
+
isCSATEnabled?: boolean | undefined;
|
17215
17261
|
};
|
17216
17262
|
status: boolean;
|
17217
17263
|
createdAt: Date;
|
@@ -17977,6 +18023,7 @@ export declare const lineContract: {
|
|
17977
18023
|
lineRichMenuId?: string | null | undefined;
|
17978
18024
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17979
18025
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18026
|
+
isCSATEnabled?: boolean | undefined;
|
17980
18027
|
};
|
17981
18028
|
status: boolean;
|
17982
18029
|
createdAt: Date;
|
@@ -18746,6 +18793,7 @@ export declare const lineContract: {
|
|
18746
18793
|
lineRichMenuId?: string | null | undefined;
|
18747
18794
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18748
18795
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18796
|
+
isCSATEnabled?: boolean | undefined;
|
18749
18797
|
};
|
18750
18798
|
status: boolean;
|
18751
18799
|
createdAt: Date;
|
@@ -19511,6 +19559,7 @@ export declare const lineContract: {
|
|
19511
19559
|
lineRichMenuId?: string | null | undefined;
|
19512
19560
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19513
19561
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19562
|
+
isCSATEnabled?: boolean | undefined;
|
19514
19563
|
};
|
19515
19564
|
status: boolean;
|
19516
19565
|
createdAt: Date;
|
@@ -20216,6 +20265,7 @@ export declare const lineContract: {
|
|
20216
20265
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20217
20266
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20218
20267
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20268
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
20219
20269
|
}, "strip", z.ZodTypeAny, {
|
20220
20270
|
name: string;
|
20221
20271
|
id: string;
|
@@ -20245,6 +20295,7 @@ export declare const lineContract: {
|
|
20245
20295
|
lineRichMenuId?: string | null | undefined;
|
20246
20296
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20247
20297
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20298
|
+
isCSATEnabled?: boolean | undefined;
|
20248
20299
|
}, {
|
20249
20300
|
name: string;
|
20250
20301
|
id: string;
|
@@ -20274,6 +20325,7 @@ export declare const lineContract: {
|
|
20274
20325
|
lineRichMenuId?: string | null | undefined;
|
20275
20326
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20276
20327
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20328
|
+
isCSATEnabled?: boolean | undefined;
|
20277
20329
|
}>>;
|
20278
20330
|
platformId: z.ZodOptional<z.ZodString>;
|
20279
20331
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -20333,6 +20385,7 @@ export declare const lineContract: {
|
|
20333
20385
|
lineRichMenuId?: string | null | undefined;
|
20334
20386
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20335
20387
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20388
|
+
isCSATEnabled?: boolean | undefined;
|
20336
20389
|
} | undefined;
|
20337
20390
|
platformId?: string | undefined;
|
20338
20391
|
brandName?: string | undefined;
|
@@ -20380,6 +20433,7 @@ export declare const lineContract: {
|
|
20380
20433
|
lineRichMenuId?: string | null | undefined;
|
20381
20434
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20382
20435
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20436
|
+
isCSATEnabled?: boolean | undefined;
|
20383
20437
|
} | undefined;
|
20384
20438
|
platformId?: string | undefined;
|
20385
20439
|
brandName?: string | undefined;
|
@@ -20466,6 +20520,7 @@ export declare const lineContract: {
|
|
20466
20520
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20467
20521
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20468
20522
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20523
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
20469
20524
|
}, "strip", z.ZodTypeAny, {
|
20470
20525
|
name: string;
|
20471
20526
|
id: string;
|
@@ -20495,6 +20550,7 @@ export declare const lineContract: {
|
|
20495
20550
|
lineRichMenuId?: string | null | undefined;
|
20496
20551
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20497
20552
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20553
|
+
isCSATEnabled?: boolean | undefined;
|
20498
20554
|
}, {
|
20499
20555
|
name: string;
|
20500
20556
|
id: string;
|
@@ -20524,6 +20580,7 @@ export declare const lineContract: {
|
|
20524
20580
|
lineRichMenuId?: string | null | undefined;
|
20525
20581
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20526
20582
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20583
|
+
isCSATEnabled?: boolean | undefined;
|
20527
20584
|
}>;
|
20528
20585
|
platformId: z.ZodString;
|
20529
20586
|
brandName: z.ZodString;
|
@@ -20583,6 +20640,7 @@ export declare const lineContract: {
|
|
20583
20640
|
lineRichMenuId?: string | null | undefined;
|
20584
20641
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20585
20642
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20643
|
+
isCSATEnabled?: boolean | undefined;
|
20586
20644
|
};
|
20587
20645
|
status: boolean;
|
20588
20646
|
brandName: string;
|
@@ -20630,6 +20688,7 @@ export declare const lineContract: {
|
|
20630
20688
|
lineRichMenuId?: string | null | undefined;
|
20631
20689
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20632
20690
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20691
|
+
isCSATEnabled?: boolean | undefined;
|
20633
20692
|
};
|
20634
20693
|
status: boolean;
|
20635
20694
|
brandName: string;
|
@@ -20679,6 +20738,7 @@ export declare const lineContract: {
|
|
20679
20738
|
lineRichMenuId?: string | null | undefined;
|
20680
20739
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20681
20740
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20741
|
+
isCSATEnabled?: boolean | undefined;
|
20682
20742
|
};
|
20683
20743
|
status: boolean;
|
20684
20744
|
brandName: string;
|
@@ -20729,6 +20789,7 @@ export declare const lineContract: {
|
|
20729
20789
|
lineRichMenuId?: string | null | undefined;
|
20730
20790
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20731
20791
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20792
|
+
isCSATEnabled?: boolean | undefined;
|
20732
20793
|
};
|
20733
20794
|
status: boolean;
|
20734
20795
|
brandName: string;
|
@@ -20849,6 +20910,7 @@ export declare const lineContract: {
|
|
20849
20910
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20850
20911
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20851
20912
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20913
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
20852
20914
|
}, "strip", z.ZodTypeAny, {
|
20853
20915
|
name: string;
|
20854
20916
|
id: string;
|
@@ -20878,6 +20940,7 @@ export declare const lineContract: {
|
|
20878
20940
|
lineRichMenuId?: string | null | undefined;
|
20879
20941
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20880
20942
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20943
|
+
isCSATEnabled?: boolean | undefined;
|
20881
20944
|
}, {
|
20882
20945
|
name: string;
|
20883
20946
|
id: string;
|
@@ -20907,6 +20970,7 @@ export declare const lineContract: {
|
|
20907
20970
|
lineRichMenuId?: string | null | undefined;
|
20908
20971
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20909
20972
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20973
|
+
isCSATEnabled?: boolean | undefined;
|
20910
20974
|
}>;
|
20911
20975
|
platformId: z.ZodString;
|
20912
20976
|
brandName: z.ZodString;
|
@@ -20966,6 +21030,7 @@ export declare const lineContract: {
|
|
20966
21030
|
lineRichMenuId?: string | null | undefined;
|
20967
21031
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20968
21032
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21033
|
+
isCSATEnabled?: boolean | undefined;
|
20969
21034
|
};
|
20970
21035
|
status: boolean;
|
20971
21036
|
brandName: string;
|
@@ -21013,6 +21078,7 @@ export declare const lineContract: {
|
|
21013
21078
|
lineRichMenuId?: string | null | undefined;
|
21014
21079
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21015
21080
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21081
|
+
isCSATEnabled?: boolean | undefined;
|
21016
21082
|
};
|
21017
21083
|
status: boolean;
|
21018
21084
|
brandName: string;
|
@@ -21062,6 +21128,7 @@ export declare const lineContract: {
|
|
21062
21128
|
lineRichMenuId?: string | null | undefined;
|
21063
21129
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21064
21130
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21131
|
+
isCSATEnabled?: boolean | undefined;
|
21065
21132
|
};
|
21066
21133
|
status: boolean;
|
21067
21134
|
brandName: string;
|
@@ -21112,6 +21179,7 @@ export declare const lineContract: {
|
|
21112
21179
|
lineRichMenuId?: string | null | undefined;
|
21113
21180
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21114
21181
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21182
|
+
isCSATEnabled?: boolean | undefined;
|
21115
21183
|
};
|
21116
21184
|
status: boolean;
|
21117
21185
|
brandName: string;
|
@@ -21232,6 +21300,7 @@ export declare const lineContract: {
|
|
21232
21300
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21233
21301
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21234
21302
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21303
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
21235
21304
|
}, "strip", z.ZodTypeAny, {
|
21236
21305
|
name: string;
|
21237
21306
|
id: string;
|
@@ -21261,6 +21330,7 @@ export declare const lineContract: {
|
|
21261
21330
|
lineRichMenuId?: string | null | undefined;
|
21262
21331
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21263
21332
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21333
|
+
isCSATEnabled?: boolean | undefined;
|
21264
21334
|
}, {
|
21265
21335
|
name: string;
|
21266
21336
|
id: string;
|
@@ -21290,6 +21360,7 @@ export declare const lineContract: {
|
|
21290
21360
|
lineRichMenuId?: string | null | undefined;
|
21291
21361
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21292
21362
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21363
|
+
isCSATEnabled?: boolean | undefined;
|
21293
21364
|
}>;
|
21294
21365
|
platformId: z.ZodString;
|
21295
21366
|
brandName: z.ZodString;
|
@@ -21349,6 +21420,7 @@ export declare const lineContract: {
|
|
21349
21420
|
lineRichMenuId?: string | null | undefined;
|
21350
21421
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21351
21422
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21423
|
+
isCSATEnabled?: boolean | undefined;
|
21352
21424
|
};
|
21353
21425
|
status: boolean;
|
21354
21426
|
brandName: string;
|
@@ -21396,6 +21468,7 @@ export declare const lineContract: {
|
|
21396
21468
|
lineRichMenuId?: string | null | undefined;
|
21397
21469
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21398
21470
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21471
|
+
isCSATEnabled?: boolean | undefined;
|
21399
21472
|
};
|
21400
21473
|
status: boolean;
|
21401
21474
|
brandName: string;
|
@@ -21445,6 +21518,7 @@ export declare const lineContract: {
|
|
21445
21518
|
lineRichMenuId?: string | null | undefined;
|
21446
21519
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21447
21520
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21521
|
+
isCSATEnabled?: boolean | undefined;
|
21448
21522
|
};
|
21449
21523
|
status: boolean;
|
21450
21524
|
brandName: string;
|
@@ -21495,6 +21569,7 @@ export declare const lineContract: {
|
|
21495
21569
|
lineRichMenuId?: string | null | undefined;
|
21496
21570
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21497
21571
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21572
|
+
isCSATEnabled?: boolean | undefined;
|
21498
21573
|
};
|
21499
21574
|
status: boolean;
|
21500
21575
|
brandName: string;
|