@kl1/contracts 1.2.18-uat → 1.2.19-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 +125 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +8 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +5 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +230 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +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 +736 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +83 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +75 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +9 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +83 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +16 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +66 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +61 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +40 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +18 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +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
|
@@ -1430,6 +1430,7 @@ export declare const receiveMessageContract: {
|
|
|
1430
1430
|
apiSecret: string;
|
|
1431
1431
|
}>>;
|
|
1432
1432
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1433
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
1433
1434
|
}, "strip", z.ZodTypeAny, {
|
|
1434
1435
|
id: string;
|
|
1435
1436
|
name: string;
|
|
@@ -1443,6 +1444,7 @@ export declare const receiveMessageContract: {
|
|
|
1443
1444
|
apiSecret: string;
|
|
1444
1445
|
} | undefined;
|
|
1445
1446
|
lineRichMenuId?: string | null | undefined;
|
|
1447
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1446
1448
|
}, {
|
|
1447
1449
|
id: string;
|
|
1448
1450
|
name: string;
|
|
@@ -1456,6 +1458,7 @@ export declare const receiveMessageContract: {
|
|
|
1456
1458
|
apiSecret: string;
|
|
1457
1459
|
} | undefined;
|
|
1458
1460
|
lineRichMenuId?: string | null | undefined;
|
|
1461
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1459
1462
|
}>;
|
|
1460
1463
|
platformId: z.ZodString;
|
|
1461
1464
|
brandName: z.ZodString;
|
|
@@ -1499,6 +1502,7 @@ export declare const receiveMessageContract: {
|
|
|
1499
1502
|
apiSecret: string;
|
|
1500
1503
|
} | undefined;
|
|
1501
1504
|
lineRichMenuId?: string | null | undefined;
|
|
1505
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1502
1506
|
};
|
|
1503
1507
|
status: boolean;
|
|
1504
1508
|
brandName: string;
|
|
@@ -1530,6 +1534,7 @@ export declare const receiveMessageContract: {
|
|
|
1530
1534
|
apiSecret: string;
|
|
1531
1535
|
} | undefined;
|
|
1532
1536
|
lineRichMenuId?: string | null | undefined;
|
|
1537
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1533
1538
|
};
|
|
1534
1539
|
status: boolean;
|
|
1535
1540
|
brandName: string;
|
|
@@ -2194,6 +2199,7 @@ export declare const receiveMessageContract: {
|
|
|
2194
2199
|
apiSecret: string;
|
|
2195
2200
|
} | undefined;
|
|
2196
2201
|
lineRichMenuId?: string | null | undefined;
|
|
2202
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2197
2203
|
};
|
|
2198
2204
|
status: boolean;
|
|
2199
2205
|
brandName: string;
|
|
@@ -2508,6 +2514,7 @@ export declare const receiveMessageContract: {
|
|
|
2508
2514
|
apiSecret: string;
|
|
2509
2515
|
} | undefined;
|
|
2510
2516
|
lineRichMenuId?: string | null | undefined;
|
|
2517
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2511
2518
|
};
|
|
2512
2519
|
status: boolean;
|
|
2513
2520
|
brandName: string;
|
|
@@ -3478,6 +3485,7 @@ export declare const receiveMessageContract: {
|
|
|
3478
3485
|
apiSecret: string;
|
|
3479
3486
|
} | undefined;
|
|
3480
3487
|
lineRichMenuId?: string | null | undefined;
|
|
3488
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3481
3489
|
};
|
|
3482
3490
|
status: boolean;
|
|
3483
3491
|
brandName: string;
|
|
@@ -3955,6 +3963,7 @@ export declare const receiveMessageContract: {
|
|
|
3955
3963
|
apiSecret: string;
|
|
3956
3964
|
} | undefined;
|
|
3957
3965
|
lineRichMenuId?: string | null | undefined;
|
|
3966
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3958
3967
|
};
|
|
3959
3968
|
status: boolean;
|
|
3960
3969
|
brandName: string;
|
|
@@ -4434,6 +4443,7 @@ export declare const receiveMessageContract: {
|
|
|
4434
4443
|
apiSecret: string;
|
|
4435
4444
|
} | undefined;
|
|
4436
4445
|
lineRichMenuId?: string | null | undefined;
|
|
4446
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4437
4447
|
};
|
|
4438
4448
|
status: boolean;
|
|
4439
4449
|
brandName: string;
|
|
@@ -4913,6 +4923,7 @@ export declare const receiveMessageContract: {
|
|
|
4913
4923
|
apiSecret: string;
|
|
4914
4924
|
} | undefined;
|
|
4915
4925
|
lineRichMenuId?: string | null | undefined;
|
|
4926
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4916
4927
|
};
|
|
4917
4928
|
status: boolean;
|
|
4918
4929
|
brandName: string;
|
|
@@ -5238,6 +5249,7 @@ export declare const mainFeedContract: {
|
|
|
5238
5249
|
apiSecret: string;
|
|
5239
5250
|
}>>;
|
|
5240
5251
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5252
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
5241
5253
|
}, "strip", z.ZodTypeAny, {
|
|
5242
5254
|
id: string;
|
|
5243
5255
|
name: string;
|
|
@@ -5251,6 +5263,7 @@ export declare const mainFeedContract: {
|
|
|
5251
5263
|
apiSecret: string;
|
|
5252
5264
|
} | undefined;
|
|
5253
5265
|
lineRichMenuId?: string | null | undefined;
|
|
5266
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5254
5267
|
}, {
|
|
5255
5268
|
id: string;
|
|
5256
5269
|
name: string;
|
|
@@ -5264,6 +5277,7 @@ export declare const mainFeedContract: {
|
|
|
5264
5277
|
apiSecret: string;
|
|
5265
5278
|
} | undefined;
|
|
5266
5279
|
lineRichMenuId?: string | null | undefined;
|
|
5280
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5267
5281
|
}>;
|
|
5268
5282
|
brandName: z.ZodString;
|
|
5269
5283
|
platformId: z.ZodString;
|
|
@@ -5511,6 +5525,7 @@ export declare const mainFeedContract: {
|
|
|
5511
5525
|
apiSecret: string;
|
|
5512
5526
|
} | undefined;
|
|
5513
5527
|
lineRichMenuId?: string | null | undefined;
|
|
5528
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5514
5529
|
};
|
|
5515
5530
|
status: boolean;
|
|
5516
5531
|
createdAt: Date;
|
|
@@ -5589,6 +5604,7 @@ export declare const mainFeedContract: {
|
|
|
5589
5604
|
apiSecret: string;
|
|
5590
5605
|
} | undefined;
|
|
5591
5606
|
lineRichMenuId?: string | null | undefined;
|
|
5607
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5592
5608
|
};
|
|
5593
5609
|
status: boolean;
|
|
5594
5610
|
createdAt: Date;
|
|
@@ -6924,6 +6940,7 @@ export declare const mainFeedContract: {
|
|
|
6924
6940
|
apiSecret: string;
|
|
6925
6941
|
} | undefined;
|
|
6926
6942
|
lineRichMenuId?: string | null | undefined;
|
|
6943
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6927
6944
|
};
|
|
6928
6945
|
status: boolean;
|
|
6929
6946
|
createdAt: Date;
|
|
@@ -7189,6 +7206,7 @@ export declare const mainFeedContract: {
|
|
|
7189
7206
|
apiSecret: string;
|
|
7190
7207
|
} | undefined;
|
|
7191
7208
|
lineRichMenuId?: string | null | undefined;
|
|
7209
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7192
7210
|
};
|
|
7193
7211
|
status: boolean;
|
|
7194
7212
|
createdAt: Date;
|
|
@@ -7456,6 +7474,7 @@ export declare const mainFeedContract: {
|
|
|
7456
7474
|
apiSecret: string;
|
|
7457
7475
|
} | undefined;
|
|
7458
7476
|
lineRichMenuId?: string | null | undefined;
|
|
7477
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7459
7478
|
};
|
|
7460
7479
|
status: boolean;
|
|
7461
7480
|
createdAt: Date;
|
|
@@ -7724,6 +7743,7 @@ export declare const mainFeedContract: {
|
|
|
7724
7743
|
apiSecret: string;
|
|
7725
7744
|
} | undefined;
|
|
7726
7745
|
lineRichMenuId?: string | null | undefined;
|
|
7746
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7727
7747
|
};
|
|
7728
7748
|
status: boolean;
|
|
7729
7749
|
createdAt: Date;
|
|
@@ -9970,6 +9990,7 @@ export declare const mainFeedContract: {
|
|
|
9970
9990
|
apiSecret: string;
|
|
9971
9991
|
}>>;
|
|
9972
9992
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9993
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9973
9994
|
}, "strip", z.ZodTypeAny, {
|
|
9974
9995
|
id: string;
|
|
9975
9996
|
name: string;
|
|
@@ -9983,6 +10004,7 @@ export declare const mainFeedContract: {
|
|
|
9983
10004
|
apiSecret: string;
|
|
9984
10005
|
} | undefined;
|
|
9985
10006
|
lineRichMenuId?: string | null | undefined;
|
|
10007
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9986
10008
|
}, {
|
|
9987
10009
|
id: string;
|
|
9988
10010
|
name: string;
|
|
@@ -9996,6 +10018,7 @@ export declare const mainFeedContract: {
|
|
|
9996
10018
|
apiSecret: string;
|
|
9997
10019
|
} | undefined;
|
|
9998
10020
|
lineRichMenuId?: string | null | undefined;
|
|
10021
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9999
10022
|
}>;
|
|
10000
10023
|
brandName: z.ZodString;
|
|
10001
10024
|
platformId: z.ZodString;
|
|
@@ -10243,6 +10266,7 @@ export declare const mainFeedContract: {
|
|
|
10243
10266
|
apiSecret: string;
|
|
10244
10267
|
} | undefined;
|
|
10245
10268
|
lineRichMenuId?: string | null | undefined;
|
|
10269
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10246
10270
|
};
|
|
10247
10271
|
status: boolean;
|
|
10248
10272
|
createdAt: Date;
|
|
@@ -10321,6 +10345,7 @@ export declare const mainFeedContract: {
|
|
|
10321
10345
|
apiSecret: string;
|
|
10322
10346
|
} | undefined;
|
|
10323
10347
|
lineRichMenuId?: string | null | undefined;
|
|
10348
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10324
10349
|
};
|
|
10325
10350
|
status: boolean;
|
|
10326
10351
|
createdAt: Date;
|
|
@@ -10847,6 +10872,7 @@ export declare const mainFeedContract: {
|
|
|
10847
10872
|
apiSecret: string;
|
|
10848
10873
|
} | undefined;
|
|
10849
10874
|
lineRichMenuId?: string | null | undefined;
|
|
10875
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10850
10876
|
};
|
|
10851
10877
|
status: boolean;
|
|
10852
10878
|
createdAt: Date;
|
|
@@ -11236,6 +11262,7 @@ export declare const mainFeedContract: {
|
|
|
11236
11262
|
apiSecret: string;
|
|
11237
11263
|
} | undefined;
|
|
11238
11264
|
lineRichMenuId?: string | null | undefined;
|
|
11265
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11239
11266
|
};
|
|
11240
11267
|
status: boolean;
|
|
11241
11268
|
createdAt: Date;
|
|
@@ -15396,6 +15423,7 @@ export declare const mainFeedContract: {
|
|
|
15396
15423
|
apiSecret: string;
|
|
15397
15424
|
}>>;
|
|
15398
15425
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15426
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
15399
15427
|
}, "strip", z.ZodTypeAny, {
|
|
15400
15428
|
id: string;
|
|
15401
15429
|
name: string;
|
|
@@ -15409,6 +15437,7 @@ export declare const mainFeedContract: {
|
|
|
15409
15437
|
apiSecret: string;
|
|
15410
15438
|
} | undefined;
|
|
15411
15439
|
lineRichMenuId?: string | null | undefined;
|
|
15440
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15412
15441
|
}, {
|
|
15413
15442
|
id: string;
|
|
15414
15443
|
name: string;
|
|
@@ -15422,6 +15451,7 @@ export declare const mainFeedContract: {
|
|
|
15422
15451
|
apiSecret: string;
|
|
15423
15452
|
} | undefined;
|
|
15424
15453
|
lineRichMenuId?: string | null | undefined;
|
|
15454
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15425
15455
|
}>;
|
|
15426
15456
|
brandName: z.ZodString;
|
|
15427
15457
|
platformId: z.ZodString;
|
|
@@ -15669,6 +15699,7 @@ export declare const mainFeedContract: {
|
|
|
15669
15699
|
apiSecret: string;
|
|
15670
15700
|
} | undefined;
|
|
15671
15701
|
lineRichMenuId?: string | null | undefined;
|
|
15702
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15672
15703
|
};
|
|
15673
15704
|
status: boolean;
|
|
15674
15705
|
createdAt: Date;
|
|
@@ -15747,6 +15778,7 @@ export declare const mainFeedContract: {
|
|
|
15747
15778
|
apiSecret: string;
|
|
15748
15779
|
} | undefined;
|
|
15749
15780
|
lineRichMenuId?: string | null | undefined;
|
|
15781
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
15750
15782
|
};
|
|
15751
15783
|
status: boolean;
|
|
15752
15784
|
createdAt: Date;
|
|
@@ -16273,6 +16305,7 @@ export declare const mainFeedContract: {
|
|
|
16273
16305
|
apiSecret: string;
|
|
16274
16306
|
} | undefined;
|
|
16275
16307
|
lineRichMenuId?: string | null | undefined;
|
|
16308
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
16276
16309
|
};
|
|
16277
16310
|
status: boolean;
|
|
16278
16311
|
createdAt: Date;
|
|
@@ -16662,6 +16695,7 @@ export declare const mainFeedContract: {
|
|
|
16662
16695
|
apiSecret: string;
|
|
16663
16696
|
} | undefined;
|
|
16664
16697
|
lineRichMenuId?: string | null | undefined;
|
|
16698
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
16665
16699
|
};
|
|
16666
16700
|
status: boolean;
|
|
16667
16701
|
createdAt: Date;
|
|
@@ -18824,6 +18858,7 @@ export declare const mainFeedContract: {
|
|
|
18824
18858
|
apiSecret: string;
|
|
18825
18859
|
} | undefined;
|
|
18826
18860
|
lineRichMenuId?: string | null | undefined;
|
|
18861
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
18827
18862
|
};
|
|
18828
18863
|
status: boolean;
|
|
18829
18864
|
createdAt: Date;
|
|
@@ -19550,6 +19585,7 @@ export declare const mainFeedContract: {
|
|
|
19550
19585
|
apiSecret: string;
|
|
19551
19586
|
} | undefined;
|
|
19552
19587
|
lineRichMenuId?: string | null | undefined;
|
|
19588
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
19553
19589
|
};
|
|
19554
19590
|
status: boolean;
|
|
19555
19591
|
createdAt: Date;
|
|
@@ -20283,6 +20319,7 @@ export declare const mainFeedContract: {
|
|
|
20283
20319
|
apiSecret: string;
|
|
20284
20320
|
} | undefined;
|
|
20285
20321
|
lineRichMenuId?: string | null | undefined;
|
|
20322
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
20286
20323
|
};
|
|
20287
20324
|
status: boolean;
|
|
20288
20325
|
createdAt: Date;
|
|
@@ -21004,6 +21041,7 @@ export declare const mainFeedContract: {
|
|
|
21004
21041
|
apiSecret: string;
|
|
21005
21042
|
} | undefined;
|
|
21006
21043
|
lineRichMenuId?: string | null | undefined;
|
|
21044
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
21007
21045
|
};
|
|
21008
21046
|
status: boolean;
|
|
21009
21047
|
createdAt: Date;
|
|
@@ -21863,6 +21901,7 @@ export declare const mainFeedContract: {
|
|
|
21863
21901
|
apiSecret: string;
|
|
21864
21902
|
} | undefined;
|
|
21865
21903
|
lineRichMenuId?: string | null | undefined;
|
|
21904
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
21866
21905
|
};
|
|
21867
21906
|
status: boolean;
|
|
21868
21907
|
createdAt: Date;
|
|
@@ -22584,6 +22623,7 @@ export declare const mainFeedContract: {
|
|
|
22584
22623
|
apiSecret: string;
|
|
22585
22624
|
} | undefined;
|
|
22586
22625
|
lineRichMenuId?: string | null | undefined;
|
|
22626
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
22587
22627
|
};
|
|
22588
22628
|
status: boolean;
|
|
22589
22629
|
createdAt: Date;
|
|
@@ -23445,6 +23485,7 @@ export declare const mainFeedContract: {
|
|
|
23445
23485
|
apiSecret: string;
|
|
23446
23486
|
} | undefined;
|
|
23447
23487
|
lineRichMenuId?: string | null | undefined;
|
|
23488
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
23448
23489
|
};
|
|
23449
23490
|
status: boolean;
|
|
23450
23491
|
createdAt: Date;
|
|
@@ -24166,6 +24207,7 @@ export declare const mainFeedContract: {
|
|
|
24166
24207
|
apiSecret: string;
|
|
24167
24208
|
} | undefined;
|
|
24168
24209
|
lineRichMenuId?: string | null | undefined;
|
|
24210
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
24169
24211
|
};
|
|
24170
24212
|
status: boolean;
|
|
24171
24213
|
createdAt: Date;
|
|
@@ -25031,6 +25073,7 @@ export declare const mainFeedContract: {
|
|
|
25031
25073
|
apiSecret: string;
|
|
25032
25074
|
} | undefined;
|
|
25033
25075
|
lineRichMenuId?: string | null | undefined;
|
|
25076
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
25034
25077
|
};
|
|
25035
25078
|
status: boolean;
|
|
25036
25079
|
createdAt: Date;
|
|
@@ -25752,6 +25795,7 @@ export declare const mainFeedContract: {
|
|
|
25752
25795
|
apiSecret: string;
|
|
25753
25796
|
} | undefined;
|
|
25754
25797
|
lineRichMenuId?: string | null | undefined;
|
|
25798
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
25755
25799
|
};
|
|
25756
25800
|
status: boolean;
|
|
25757
25801
|
createdAt: Date;
|
|
@@ -28142,6 +28186,7 @@ export declare const mainChatRoomContract: {
|
|
|
28142
28186
|
apiSecret: string;
|
|
28143
28187
|
}>>;
|
|
28144
28188
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
28189
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
28145
28190
|
}, "strip", z.ZodTypeAny, {
|
|
28146
28191
|
id: string;
|
|
28147
28192
|
name: string;
|
|
@@ -28155,6 +28200,7 @@ export declare const mainChatRoomContract: {
|
|
|
28155
28200
|
apiSecret: string;
|
|
28156
28201
|
} | undefined;
|
|
28157
28202
|
lineRichMenuId?: string | null | undefined;
|
|
28203
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
28158
28204
|
}, {
|
|
28159
28205
|
id: string;
|
|
28160
28206
|
name: string;
|
|
@@ -28168,6 +28214,7 @@ export declare const mainChatRoomContract: {
|
|
|
28168
28214
|
apiSecret: string;
|
|
28169
28215
|
} | undefined;
|
|
28170
28216
|
lineRichMenuId?: string | null | undefined;
|
|
28217
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
28171
28218
|
}>;
|
|
28172
28219
|
brandName: z.ZodString;
|
|
28173
28220
|
platformId: z.ZodString;
|
|
@@ -28415,6 +28462,7 @@ export declare const mainChatRoomContract: {
|
|
|
28415
28462
|
apiSecret: string;
|
|
28416
28463
|
} | undefined;
|
|
28417
28464
|
lineRichMenuId?: string | null | undefined;
|
|
28465
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
28418
28466
|
};
|
|
28419
28467
|
status: boolean;
|
|
28420
28468
|
createdAt: Date;
|
|
@@ -28493,6 +28541,7 @@ export declare const mainChatRoomContract: {
|
|
|
28493
28541
|
apiSecret: string;
|
|
28494
28542
|
} | undefined;
|
|
28495
28543
|
lineRichMenuId?: string | null | undefined;
|
|
28544
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
28496
28545
|
};
|
|
28497
28546
|
status: boolean;
|
|
28498
28547
|
createdAt: Date;
|
|
@@ -29019,6 +29068,7 @@ export declare const mainChatRoomContract: {
|
|
|
29019
29068
|
apiSecret: string;
|
|
29020
29069
|
} | undefined;
|
|
29021
29070
|
lineRichMenuId?: string | null | undefined;
|
|
29071
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
29022
29072
|
};
|
|
29023
29073
|
status: boolean;
|
|
29024
29074
|
createdAt: Date;
|
|
@@ -29408,6 +29458,7 @@ export declare const mainChatRoomContract: {
|
|
|
29408
29458
|
apiSecret: string;
|
|
29409
29459
|
} | undefined;
|
|
29410
29460
|
lineRichMenuId?: string | null | undefined;
|
|
29461
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
29411
29462
|
};
|
|
29412
29463
|
status: boolean;
|
|
29413
29464
|
createdAt: Date;
|
|
@@ -29809,6 +29860,7 @@ export declare const mainChatRoomContract: {
|
|
|
29809
29860
|
apiSecret: string;
|
|
29810
29861
|
} | undefined;
|
|
29811
29862
|
lineRichMenuId?: string | null | undefined;
|
|
29863
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
29812
29864
|
};
|
|
29813
29865
|
status: boolean;
|
|
29814
29866
|
createdAt: Date;
|
|
@@ -30208,6 +30260,7 @@ export declare const mainChatRoomContract: {
|
|
|
30208
30260
|
apiSecret: string;
|
|
30209
30261
|
} | undefined;
|
|
30210
30262
|
lineRichMenuId?: string | null | undefined;
|
|
30263
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
30211
30264
|
};
|
|
30212
30265
|
status: boolean;
|
|
30213
30266
|
createdAt: Date;
|
|
@@ -32130,6 +32183,7 @@ export declare const mainChatRoomContract: {
|
|
|
32130
32183
|
apiSecret: string;
|
|
32131
32184
|
}>>;
|
|
32132
32185
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
32186
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
32133
32187
|
}, "strip", z.ZodTypeAny, {
|
|
32134
32188
|
id: string;
|
|
32135
32189
|
name: string;
|
|
@@ -32143,6 +32197,7 @@ export declare const mainChatRoomContract: {
|
|
|
32143
32197
|
apiSecret: string;
|
|
32144
32198
|
} | undefined;
|
|
32145
32199
|
lineRichMenuId?: string | null | undefined;
|
|
32200
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
32146
32201
|
}, {
|
|
32147
32202
|
id: string;
|
|
32148
32203
|
name: string;
|
|
@@ -32156,6 +32211,7 @@ export declare const mainChatRoomContract: {
|
|
|
32156
32211
|
apiSecret: string;
|
|
32157
32212
|
} | undefined;
|
|
32158
32213
|
lineRichMenuId?: string | null | undefined;
|
|
32214
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
32159
32215
|
}>;
|
|
32160
32216
|
brandName: z.ZodString;
|
|
32161
32217
|
platformId: z.ZodString;
|
|
@@ -32403,6 +32459,7 @@ export declare const mainChatRoomContract: {
|
|
|
32403
32459
|
apiSecret: string;
|
|
32404
32460
|
} | undefined;
|
|
32405
32461
|
lineRichMenuId?: string | null | undefined;
|
|
32462
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
32406
32463
|
};
|
|
32407
32464
|
status: boolean;
|
|
32408
32465
|
createdAt: Date;
|
|
@@ -32481,6 +32538,7 @@ export declare const mainChatRoomContract: {
|
|
|
32481
32538
|
apiSecret: string;
|
|
32482
32539
|
} | undefined;
|
|
32483
32540
|
lineRichMenuId?: string | null | undefined;
|
|
32541
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
32484
32542
|
};
|
|
32485
32543
|
status: boolean;
|
|
32486
32544
|
createdAt: Date;
|
|
@@ -33007,6 +33065,7 @@ export declare const mainChatRoomContract: {
|
|
|
33007
33065
|
apiSecret: string;
|
|
33008
33066
|
} | undefined;
|
|
33009
33067
|
lineRichMenuId?: string | null | undefined;
|
|
33068
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
33010
33069
|
};
|
|
33011
33070
|
status: boolean;
|
|
33012
33071
|
createdAt: Date;
|
|
@@ -33396,6 +33455,7 @@ export declare const mainChatRoomContract: {
|
|
|
33396
33455
|
apiSecret: string;
|
|
33397
33456
|
} | undefined;
|
|
33398
33457
|
lineRichMenuId?: string | null | undefined;
|
|
33458
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
33399
33459
|
};
|
|
33400
33460
|
status: boolean;
|
|
33401
33461
|
createdAt: Date;
|
|
@@ -33830,6 +33890,7 @@ export declare const mainChatRoomContract: {
|
|
|
33830
33890
|
apiSecret: string;
|
|
33831
33891
|
} | undefined;
|
|
33832
33892
|
lineRichMenuId?: string | null | undefined;
|
|
33893
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
33833
33894
|
};
|
|
33834
33895
|
status: boolean;
|
|
33835
33896
|
createdAt: Date;
|
|
@@ -34236,6 +34297,7 @@ export declare const mainChatRoomContract: {
|
|
|
34236
34297
|
apiSecret: string;
|
|
34237
34298
|
} | undefined;
|
|
34238
34299
|
lineRichMenuId?: string | null | undefined;
|
|
34300
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
34239
34301
|
};
|
|
34240
34302
|
status: boolean;
|
|
34241
34303
|
createdAt: Date;
|
|
@@ -34644,6 +34706,7 @@ export declare const mainChatRoomContract: {
|
|
|
34644
34706
|
apiSecret: string;
|
|
34645
34707
|
} | undefined;
|
|
34646
34708
|
lineRichMenuId?: string | null | undefined;
|
|
34709
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
34647
34710
|
};
|
|
34648
34711
|
status: boolean;
|
|
34649
34712
|
createdAt: Date;
|
|
@@ -35053,6 +35116,7 @@ export declare const mainChatRoomContract: {
|
|
|
35053
35116
|
apiSecret: string;
|
|
35054
35117
|
} | undefined;
|
|
35055
35118
|
lineRichMenuId?: string | null | undefined;
|
|
35119
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
35056
35120
|
};
|
|
35057
35121
|
status: boolean;
|
|
35058
35122
|
createdAt: Date;
|
|
@@ -35517,6 +35581,7 @@ export declare const mainChatRoomContract: {
|
|
|
35517
35581
|
apiSecret: string;
|
|
35518
35582
|
}>>;
|
|
35519
35583
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
35584
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
35520
35585
|
}, "strip", z.ZodTypeAny, {
|
|
35521
35586
|
id: string;
|
|
35522
35587
|
name: string;
|
|
@@ -35530,6 +35595,7 @@ export declare const mainChatRoomContract: {
|
|
|
35530
35595
|
apiSecret: string;
|
|
35531
35596
|
} | undefined;
|
|
35532
35597
|
lineRichMenuId?: string | null | undefined;
|
|
35598
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
35533
35599
|
}, {
|
|
35534
35600
|
id: string;
|
|
35535
35601
|
name: string;
|
|
@@ -35543,6 +35609,7 @@ export declare const mainChatRoomContract: {
|
|
|
35543
35609
|
apiSecret: string;
|
|
35544
35610
|
} | undefined;
|
|
35545
35611
|
lineRichMenuId?: string | null | undefined;
|
|
35612
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
35546
35613
|
}>;
|
|
35547
35614
|
brandName: z.ZodString;
|
|
35548
35615
|
platformId: z.ZodString;
|
|
@@ -35790,6 +35857,7 @@ export declare const mainChatRoomContract: {
|
|
|
35790
35857
|
apiSecret: string;
|
|
35791
35858
|
} | undefined;
|
|
35792
35859
|
lineRichMenuId?: string | null | undefined;
|
|
35860
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
35793
35861
|
};
|
|
35794
35862
|
status: boolean;
|
|
35795
35863
|
createdAt: Date;
|
|
@@ -35868,6 +35936,7 @@ export declare const mainChatRoomContract: {
|
|
|
35868
35936
|
apiSecret: string;
|
|
35869
35937
|
} | undefined;
|
|
35870
35938
|
lineRichMenuId?: string | null | undefined;
|
|
35939
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
35871
35940
|
};
|
|
35872
35941
|
status: boolean;
|
|
35873
35942
|
createdAt: Date;
|
|
@@ -37864,6 +37933,7 @@ export declare const mainChatRoomContract: {
|
|
|
37864
37933
|
apiSecret: string;
|
|
37865
37934
|
} | undefined;
|
|
37866
37935
|
lineRichMenuId?: string | null | undefined;
|
|
37936
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
37867
37937
|
};
|
|
37868
37938
|
status: boolean;
|
|
37869
37939
|
createdAt: Date;
|
|
@@ -38254,6 +38324,7 @@ export declare const mainChatRoomContract: {
|
|
|
38254
38324
|
apiSecret: string;
|
|
38255
38325
|
} | undefined;
|
|
38256
38326
|
lineRichMenuId?: string | null | undefined;
|
|
38327
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
38257
38328
|
};
|
|
38258
38329
|
status: boolean;
|
|
38259
38330
|
createdAt: Date;
|
|
@@ -38646,6 +38717,7 @@ export declare const mainChatRoomContract: {
|
|
|
38646
38717
|
apiSecret: string;
|
|
38647
38718
|
} | undefined;
|
|
38648
38719
|
lineRichMenuId?: string | null | undefined;
|
|
38720
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
38649
38721
|
};
|
|
38650
38722
|
status: boolean;
|
|
38651
38723
|
createdAt: Date;
|
|
@@ -39039,6 +39111,7 @@ export declare const mainChatRoomContract: {
|
|
|
39039
39111
|
apiSecret: string;
|
|
39040
39112
|
} | undefined;
|
|
39041
39113
|
lineRichMenuId?: string | null | undefined;
|
|
39114
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
39042
39115
|
};
|
|
39043
39116
|
status: boolean;
|
|
39044
39117
|
createdAt: Date;
|
|
@@ -39486,6 +39559,7 @@ export declare const mainChatRoomContract: {
|
|
|
39486
39559
|
apiSecret: string;
|
|
39487
39560
|
}>>;
|
|
39488
39561
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
39562
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
39489
39563
|
}, "strip", z.ZodTypeAny, {
|
|
39490
39564
|
id: string;
|
|
39491
39565
|
name: string;
|
|
@@ -39499,6 +39573,7 @@ export declare const mainChatRoomContract: {
|
|
|
39499
39573
|
apiSecret: string;
|
|
39500
39574
|
} | undefined;
|
|
39501
39575
|
lineRichMenuId?: string | null | undefined;
|
|
39576
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
39502
39577
|
}, {
|
|
39503
39578
|
id: string;
|
|
39504
39579
|
name: string;
|
|
@@ -39512,6 +39587,7 @@ export declare const mainChatRoomContract: {
|
|
|
39512
39587
|
apiSecret: string;
|
|
39513
39588
|
} | undefined;
|
|
39514
39589
|
lineRichMenuId?: string | null | undefined;
|
|
39590
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
39515
39591
|
}>;
|
|
39516
39592
|
brandName: z.ZodString;
|
|
39517
39593
|
platformId: z.ZodString;
|
|
@@ -39759,6 +39835,7 @@ export declare const mainChatRoomContract: {
|
|
|
39759
39835
|
apiSecret: string;
|
|
39760
39836
|
} | undefined;
|
|
39761
39837
|
lineRichMenuId?: string | null | undefined;
|
|
39838
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
39762
39839
|
};
|
|
39763
39840
|
status: boolean;
|
|
39764
39841
|
createdAt: Date;
|
|
@@ -39837,6 +39914,7 @@ export declare const mainChatRoomContract: {
|
|
|
39837
39914
|
apiSecret: string;
|
|
39838
39915
|
} | undefined;
|
|
39839
39916
|
lineRichMenuId?: string | null | undefined;
|
|
39917
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
39840
39918
|
};
|
|
39841
39919
|
status: boolean;
|
|
39842
39920
|
createdAt: Date;
|
|
@@ -42603,6 +42681,7 @@ export declare const mainChatRoomContract: {
|
|
|
42603
42681
|
apiSecret: string;
|
|
42604
42682
|
} | undefined;
|
|
42605
42683
|
lineRichMenuId?: string | null | undefined;
|
|
42684
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
42606
42685
|
};
|
|
42607
42686
|
status: boolean;
|
|
42608
42687
|
createdAt: Date;
|
|
@@ -43105,6 +43184,7 @@ export declare const mainChatRoomContract: {
|
|
|
43105
43184
|
apiSecret: string;
|
|
43106
43185
|
} | undefined;
|
|
43107
43186
|
lineRichMenuId?: string | null | undefined;
|
|
43187
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
43108
43188
|
};
|
|
43109
43189
|
status: boolean;
|
|
43110
43190
|
createdAt: Date;
|
|
@@ -43609,6 +43689,7 @@ export declare const mainChatRoomContract: {
|
|
|
43609
43689
|
apiSecret: string;
|
|
43610
43690
|
} | undefined;
|
|
43611
43691
|
lineRichMenuId?: string | null | undefined;
|
|
43692
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
43612
43693
|
};
|
|
43613
43694
|
status: boolean;
|
|
43614
43695
|
createdAt: Date;
|
|
@@ -44114,6 +44195,7 @@ export declare const mainChatRoomContract: {
|
|
|
44114
44195
|
apiSecret: string;
|
|
44115
44196
|
} | undefined;
|
|
44116
44197
|
lineRichMenuId?: string | null | undefined;
|
|
44198
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
44117
44199
|
};
|
|
44118
44200
|
status: boolean;
|
|
44119
44201
|
createdAt: Date;
|
|
@@ -44663,6 +44745,7 @@ export declare const mainChatRoomContract: {
|
|
|
44663
44745
|
apiSecret: string;
|
|
44664
44746
|
}>>;
|
|
44665
44747
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44748
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
44666
44749
|
}, "strip", z.ZodTypeAny, {
|
|
44667
44750
|
id: string;
|
|
44668
44751
|
name: string;
|
|
@@ -44676,6 +44759,7 @@ export declare const mainChatRoomContract: {
|
|
|
44676
44759
|
apiSecret: string;
|
|
44677
44760
|
} | undefined;
|
|
44678
44761
|
lineRichMenuId?: string | null | undefined;
|
|
44762
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
44679
44763
|
}, {
|
|
44680
44764
|
id: string;
|
|
44681
44765
|
name: string;
|
|
@@ -44689,6 +44773,7 @@ export declare const mainChatRoomContract: {
|
|
|
44689
44773
|
apiSecret: string;
|
|
44690
44774
|
} | undefined;
|
|
44691
44775
|
lineRichMenuId?: string | null | undefined;
|
|
44776
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
44692
44777
|
}>;
|
|
44693
44778
|
brandName: z.ZodString;
|
|
44694
44779
|
platformId: z.ZodString;
|
|
@@ -44936,6 +45021,7 @@ export declare const mainChatRoomContract: {
|
|
|
44936
45021
|
apiSecret: string;
|
|
44937
45022
|
} | undefined;
|
|
44938
45023
|
lineRichMenuId?: string | null | undefined;
|
|
45024
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
44939
45025
|
};
|
|
44940
45026
|
status: boolean;
|
|
44941
45027
|
createdAt: Date;
|
|
@@ -45014,6 +45100,7 @@ export declare const mainChatRoomContract: {
|
|
|
45014
45100
|
apiSecret: string;
|
|
45015
45101
|
} | undefined;
|
|
45016
45102
|
lineRichMenuId?: string | null | undefined;
|
|
45103
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
45017
45104
|
};
|
|
45018
45105
|
status: boolean;
|
|
45019
45106
|
createdAt: Date;
|
|
@@ -47010,6 +47097,7 @@ export declare const mainChatRoomContract: {
|
|
|
47010
47097
|
apiSecret: string;
|
|
47011
47098
|
} | undefined;
|
|
47012
47099
|
lineRichMenuId?: string | null | undefined;
|
|
47100
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
47013
47101
|
};
|
|
47014
47102
|
status: boolean;
|
|
47015
47103
|
createdAt: Date;
|
|
@@ -47400,6 +47488,7 @@ export declare const mainChatRoomContract: {
|
|
|
47400
47488
|
apiSecret: string;
|
|
47401
47489
|
} | undefined;
|
|
47402
47490
|
lineRichMenuId?: string | null | undefined;
|
|
47491
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
47403
47492
|
};
|
|
47404
47493
|
status: boolean;
|
|
47405
47494
|
createdAt: Date;
|
|
@@ -47792,6 +47881,7 @@ export declare const mainChatRoomContract: {
|
|
|
47792
47881
|
apiSecret: string;
|
|
47793
47882
|
} | undefined;
|
|
47794
47883
|
lineRichMenuId?: string | null | undefined;
|
|
47884
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
47795
47885
|
};
|
|
47796
47886
|
status: boolean;
|
|
47797
47887
|
createdAt: Date;
|
|
@@ -48185,6 +48275,7 @@ export declare const mainChatRoomContract: {
|
|
|
48185
48275
|
apiSecret: string;
|
|
48186
48276
|
} | undefined;
|
|
48187
48277
|
lineRichMenuId?: string | null | undefined;
|
|
48278
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
48188
48279
|
};
|
|
48189
48280
|
status: boolean;
|
|
48190
48281
|
createdAt: Date;
|
|
@@ -48636,6 +48727,7 @@ export declare const mainChatRoomContract: {
|
|
|
48636
48727
|
apiSecret: string;
|
|
48637
48728
|
}>>;
|
|
48638
48729
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
48730
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
48639
48731
|
}, "strip", z.ZodTypeAny, {
|
|
48640
48732
|
id: string;
|
|
48641
48733
|
name: string;
|
|
@@ -48649,6 +48741,7 @@ export declare const mainChatRoomContract: {
|
|
|
48649
48741
|
apiSecret: string;
|
|
48650
48742
|
} | undefined;
|
|
48651
48743
|
lineRichMenuId?: string | null | undefined;
|
|
48744
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
48652
48745
|
}, {
|
|
48653
48746
|
id: string;
|
|
48654
48747
|
name: string;
|
|
@@ -48662,6 +48755,7 @@ export declare const mainChatRoomContract: {
|
|
|
48662
48755
|
apiSecret: string;
|
|
48663
48756
|
} | undefined;
|
|
48664
48757
|
lineRichMenuId?: string | null | undefined;
|
|
48758
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
48665
48759
|
}>;
|
|
48666
48760
|
brandName: z.ZodString;
|
|
48667
48761
|
platformId: z.ZodString;
|
|
@@ -48909,6 +49003,7 @@ export declare const mainChatRoomContract: {
|
|
|
48909
49003
|
apiSecret: string;
|
|
48910
49004
|
} | undefined;
|
|
48911
49005
|
lineRichMenuId?: string | null | undefined;
|
|
49006
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
48912
49007
|
};
|
|
48913
49008
|
status: boolean;
|
|
48914
49009
|
createdAt: Date;
|
|
@@ -48987,6 +49082,7 @@ export declare const mainChatRoomContract: {
|
|
|
48987
49082
|
apiSecret: string;
|
|
48988
49083
|
} | undefined;
|
|
48989
49084
|
lineRichMenuId?: string | null | undefined;
|
|
49085
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
48990
49086
|
};
|
|
48991
49087
|
status: boolean;
|
|
48992
49088
|
createdAt: Date;
|
|
@@ -50982,6 +51078,7 @@ export declare const mainChatRoomContract: {
|
|
|
50982
51078
|
apiSecret: string;
|
|
50983
51079
|
} | undefined;
|
|
50984
51080
|
lineRichMenuId?: string | null | undefined;
|
|
51081
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
50985
51082
|
};
|
|
50986
51083
|
status: boolean;
|
|
50987
51084
|
createdAt: Date;
|
|
@@ -51371,6 +51468,7 @@ export declare const mainChatRoomContract: {
|
|
|
51371
51468
|
apiSecret: string;
|
|
51372
51469
|
} | undefined;
|
|
51373
51470
|
lineRichMenuId?: string | null | undefined;
|
|
51471
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
51374
51472
|
};
|
|
51375
51473
|
status: boolean;
|
|
51376
51474
|
createdAt: Date;
|
|
@@ -51762,6 +51860,7 @@ export declare const mainChatRoomContract: {
|
|
|
51762
51860
|
apiSecret: string;
|
|
51763
51861
|
} | undefined;
|
|
51764
51862
|
lineRichMenuId?: string | null | undefined;
|
|
51863
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
51765
51864
|
};
|
|
51766
51865
|
status: boolean;
|
|
51767
51866
|
createdAt: Date;
|
|
@@ -52157,6 +52256,7 @@ export declare const mainChatRoomContract: {
|
|
|
52157
52256
|
apiSecret: string;
|
|
52158
52257
|
} | undefined;
|
|
52159
52258
|
lineRichMenuId?: string | null | undefined;
|
|
52259
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
52160
52260
|
};
|
|
52161
52261
|
status: boolean;
|
|
52162
52262
|
createdAt: Date;
|
|
@@ -54919,6 +55019,7 @@ export declare const mainChatContract: {
|
|
|
54919
55019
|
apiSecret: string;
|
|
54920
55020
|
}>>;
|
|
54921
55021
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
55022
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
54922
55023
|
}, "strip", z.ZodTypeAny, {
|
|
54923
55024
|
id: string;
|
|
54924
55025
|
name: string;
|
|
@@ -54932,6 +55033,7 @@ export declare const mainChatContract: {
|
|
|
54932
55033
|
apiSecret: string;
|
|
54933
55034
|
} | undefined;
|
|
54934
55035
|
lineRichMenuId?: string | null | undefined;
|
|
55036
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
54935
55037
|
}, {
|
|
54936
55038
|
id: string;
|
|
54937
55039
|
name: string;
|
|
@@ -54945,6 +55047,7 @@ export declare const mainChatContract: {
|
|
|
54945
55047
|
apiSecret: string;
|
|
54946
55048
|
} | undefined;
|
|
54947
55049
|
lineRichMenuId?: string | null | undefined;
|
|
55050
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
54948
55051
|
}>;
|
|
54949
55052
|
brandName: z.ZodString;
|
|
54950
55053
|
platformId: z.ZodString;
|
|
@@ -55192,6 +55295,7 @@ export declare const mainChatContract: {
|
|
|
55192
55295
|
apiSecret: string;
|
|
55193
55296
|
} | undefined;
|
|
55194
55297
|
lineRichMenuId?: string | null | undefined;
|
|
55298
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
55195
55299
|
};
|
|
55196
55300
|
status: boolean;
|
|
55197
55301
|
createdAt: Date;
|
|
@@ -55270,6 +55374,7 @@ export declare const mainChatContract: {
|
|
|
55270
55374
|
apiSecret: string;
|
|
55271
55375
|
} | undefined;
|
|
55272
55376
|
lineRichMenuId?: string | null | undefined;
|
|
55377
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
55273
55378
|
};
|
|
55274
55379
|
status: boolean;
|
|
55275
55380
|
createdAt: Date;
|
|
@@ -55796,6 +55901,7 @@ export declare const mainChatContract: {
|
|
|
55796
55901
|
apiSecret: string;
|
|
55797
55902
|
} | undefined;
|
|
55798
55903
|
lineRichMenuId?: string | null | undefined;
|
|
55904
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
55799
55905
|
};
|
|
55800
55906
|
status: boolean;
|
|
55801
55907
|
createdAt: Date;
|
|
@@ -56185,6 +56291,7 @@ export declare const mainChatContract: {
|
|
|
56185
56291
|
apiSecret: string;
|
|
56186
56292
|
} | undefined;
|
|
56187
56293
|
lineRichMenuId?: string | null | undefined;
|
|
56294
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
56188
56295
|
};
|
|
56189
56296
|
status: boolean;
|
|
56190
56297
|
createdAt: Date;
|
|
@@ -59298,6 +59405,7 @@ export declare const mainChatContract: {
|
|
|
59298
59405
|
apiSecret: string;
|
|
59299
59406
|
}>>;
|
|
59300
59407
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
59408
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
59301
59409
|
}, "strip", z.ZodTypeAny, {
|
|
59302
59410
|
id: string;
|
|
59303
59411
|
name: string;
|
|
@@ -59311,6 +59419,7 @@ export declare const mainChatContract: {
|
|
|
59311
59419
|
apiSecret: string;
|
|
59312
59420
|
} | undefined;
|
|
59313
59421
|
lineRichMenuId?: string | null | undefined;
|
|
59422
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
59314
59423
|
}, {
|
|
59315
59424
|
id: string;
|
|
59316
59425
|
name: string;
|
|
@@ -59324,6 +59433,7 @@ export declare const mainChatContract: {
|
|
|
59324
59433
|
apiSecret: string;
|
|
59325
59434
|
} | undefined;
|
|
59326
59435
|
lineRichMenuId?: string | null | undefined;
|
|
59436
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
59327
59437
|
}>;
|
|
59328
59438
|
brandName: z.ZodString;
|
|
59329
59439
|
platformId: z.ZodString;
|
|
@@ -59571,6 +59681,7 @@ export declare const mainChatContract: {
|
|
|
59571
59681
|
apiSecret: string;
|
|
59572
59682
|
} | undefined;
|
|
59573
59683
|
lineRichMenuId?: string | null | undefined;
|
|
59684
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
59574
59685
|
};
|
|
59575
59686
|
status: boolean;
|
|
59576
59687
|
createdAt: Date;
|
|
@@ -59649,6 +59760,7 @@ export declare const mainChatContract: {
|
|
|
59649
59760
|
apiSecret: string;
|
|
59650
59761
|
} | undefined;
|
|
59651
59762
|
lineRichMenuId?: string | null | undefined;
|
|
59763
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
59652
59764
|
};
|
|
59653
59765
|
status: boolean;
|
|
59654
59766
|
createdAt: Date;
|
|
@@ -60175,6 +60287,7 @@ export declare const mainChatContract: {
|
|
|
60175
60287
|
apiSecret: string;
|
|
60176
60288
|
} | undefined;
|
|
60177
60289
|
lineRichMenuId?: string | null | undefined;
|
|
60290
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
60178
60291
|
};
|
|
60179
60292
|
status: boolean;
|
|
60180
60293
|
createdAt: Date;
|
|
@@ -60564,6 +60677,7 @@ export declare const mainChatContract: {
|
|
|
60564
60677
|
apiSecret: string;
|
|
60565
60678
|
} | undefined;
|
|
60566
60679
|
lineRichMenuId?: string | null | undefined;
|
|
60680
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
60567
60681
|
};
|
|
60568
60682
|
status: boolean;
|
|
60569
60683
|
createdAt: Date;
|
|
@@ -62726,6 +62840,7 @@ export declare const mainChatContract: {
|
|
|
62726
62840
|
apiSecret: string;
|
|
62727
62841
|
} | undefined;
|
|
62728
62842
|
lineRichMenuId?: string | null | undefined;
|
|
62843
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
62729
62844
|
};
|
|
62730
62845
|
status: boolean;
|
|
62731
62846
|
createdAt: Date;
|
|
@@ -63452,6 +63567,7 @@ export declare const mainChatContract: {
|
|
|
63452
63567
|
apiSecret: string;
|
|
63453
63568
|
} | undefined;
|
|
63454
63569
|
lineRichMenuId?: string | null | undefined;
|
|
63570
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
63455
63571
|
};
|
|
63456
63572
|
status: boolean;
|
|
63457
63573
|
createdAt: Date;
|
|
@@ -64179,6 +64295,7 @@ export declare const mainChatContract: {
|
|
|
64179
64295
|
apiSecret: string;
|
|
64180
64296
|
} | undefined;
|
|
64181
64297
|
lineRichMenuId?: string | null | undefined;
|
|
64298
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
64182
64299
|
};
|
|
64183
64300
|
status: boolean;
|
|
64184
64301
|
createdAt: Date;
|
|
@@ -64905,6 +65022,7 @@ export declare const mainChatContract: {
|
|
|
64905
65022
|
apiSecret: string;
|
|
64906
65023
|
} | undefined;
|
|
64907
65024
|
lineRichMenuId?: string | null | undefined;
|
|
65025
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
64908
65026
|
};
|
|
64909
65027
|
status: boolean;
|
|
64910
65028
|
createdAt: Date;
|
|
@@ -65632,6 +65750,7 @@ export declare const mainChatContract: {
|
|
|
65632
65750
|
apiSecret: string;
|
|
65633
65751
|
} | undefined;
|
|
65634
65752
|
lineRichMenuId?: string | null | undefined;
|
|
65753
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
65635
65754
|
};
|
|
65636
65755
|
status: boolean;
|
|
65637
65756
|
createdAt: Date;
|
|
@@ -66358,6 +66477,7 @@ export declare const mainChatContract: {
|
|
|
66358
66477
|
apiSecret: string;
|
|
66359
66478
|
} | undefined;
|
|
66360
66479
|
lineRichMenuId?: string | null | undefined;
|
|
66480
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
66361
66481
|
};
|
|
66362
66482
|
status: boolean;
|
|
66363
66483
|
createdAt: Date;
|
|
@@ -67087,6 +67207,7 @@ export declare const mainChatContract: {
|
|
|
67087
67207
|
apiSecret: string;
|
|
67088
67208
|
} | undefined;
|
|
67089
67209
|
lineRichMenuId?: string | null | undefined;
|
|
67210
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
67090
67211
|
};
|
|
67091
67212
|
status: boolean;
|
|
67092
67213
|
createdAt: Date;
|
|
@@ -67813,6 +67934,7 @@ export declare const mainChatContract: {
|
|
|
67813
67934
|
apiSecret: string;
|
|
67814
67935
|
} | undefined;
|
|
67815
67936
|
lineRichMenuId?: string | null | undefined;
|
|
67937
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
67816
67938
|
};
|
|
67817
67939
|
status: boolean;
|
|
67818
67940
|
createdAt: Date;
|
|
@@ -68543,6 +68665,7 @@ export declare const mainChatContract: {
|
|
|
68543
68665
|
apiSecret: string;
|
|
68544
68666
|
} | undefined;
|
|
68545
68667
|
lineRichMenuId?: string | null | undefined;
|
|
68668
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
68546
68669
|
};
|
|
68547
68670
|
status: boolean;
|
|
68548
68671
|
createdAt: Date;
|
|
@@ -69269,6 +69392,7 @@ export declare const mainChatContract: {
|
|
|
69269
69392
|
apiSecret: string;
|
|
69270
69393
|
} | undefined;
|
|
69271
69394
|
lineRichMenuId?: string | null | undefined;
|
|
69395
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
69272
69396
|
};
|
|
69273
69397
|
status: boolean;
|
|
69274
69398
|
createdAt: Date;
|
|
@@ -71472,6 +71596,7 @@ export declare const mainChatContract: {
|
|
|
71472
71596
|
apiSecret: string;
|
|
71473
71597
|
}>>;
|
|
71474
71598
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
71599
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
71475
71600
|
}, "strip", z.ZodTypeAny, {
|
|
71476
71601
|
id: string;
|
|
71477
71602
|
name: string;
|
|
@@ -71485,6 +71610,7 @@ export declare const mainChatContract: {
|
|
|
71485
71610
|
apiSecret: string;
|
|
71486
71611
|
} | undefined;
|
|
71487
71612
|
lineRichMenuId?: string | null | undefined;
|
|
71613
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
71488
71614
|
}, {
|
|
71489
71615
|
id: string;
|
|
71490
71616
|
name: string;
|
|
@@ -71498,6 +71624,7 @@ export declare const mainChatContract: {
|
|
|
71498
71624
|
apiSecret: string;
|
|
71499
71625
|
} | undefined;
|
|
71500
71626
|
lineRichMenuId?: string | null | undefined;
|
|
71627
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
71501
71628
|
}>;
|
|
71502
71629
|
brandName: z.ZodString;
|
|
71503
71630
|
platformId: z.ZodString;
|
|
@@ -71745,6 +71872,7 @@ export declare const mainChatContract: {
|
|
|
71745
71872
|
apiSecret: string;
|
|
71746
71873
|
} | undefined;
|
|
71747
71874
|
lineRichMenuId?: string | null | undefined;
|
|
71875
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
71748
71876
|
};
|
|
71749
71877
|
status: boolean;
|
|
71750
71878
|
createdAt: Date;
|
|
@@ -71823,6 +71951,7 @@ export declare const mainChatContract: {
|
|
|
71823
71951
|
apiSecret: string;
|
|
71824
71952
|
} | undefined;
|
|
71825
71953
|
lineRichMenuId?: string | null | undefined;
|
|
71954
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
71826
71955
|
};
|
|
71827
71956
|
status: boolean;
|
|
71828
71957
|
createdAt: Date;
|
|
@@ -72349,6 +72478,7 @@ export declare const mainChatContract: {
|
|
|
72349
72478
|
apiSecret: string;
|
|
72350
72479
|
} | undefined;
|
|
72351
72480
|
lineRichMenuId?: string | null | undefined;
|
|
72481
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
72352
72482
|
};
|
|
72353
72483
|
status: boolean;
|
|
72354
72484
|
createdAt: Date;
|
|
@@ -72738,6 +72868,7 @@ export declare const mainChatContract: {
|
|
|
72738
72868
|
apiSecret: string;
|
|
72739
72869
|
} | undefined;
|
|
72740
72870
|
lineRichMenuId?: string | null | undefined;
|
|
72871
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
72741
72872
|
};
|
|
72742
72873
|
status: boolean;
|
|
72743
72874
|
createdAt: Date;
|
|
@@ -74900,6 +75031,7 @@ export declare const mainChatContract: {
|
|
|
74900
75031
|
apiSecret: string;
|
|
74901
75032
|
} | undefined;
|
|
74902
75033
|
lineRichMenuId?: string | null | undefined;
|
|
75034
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
74903
75035
|
};
|
|
74904
75036
|
status: boolean;
|
|
74905
75037
|
createdAt: Date;
|
|
@@ -75626,6 +75758,7 @@ export declare const mainChatContract: {
|
|
|
75626
75758
|
apiSecret: string;
|
|
75627
75759
|
} | undefined;
|
|
75628
75760
|
lineRichMenuId?: string | null | undefined;
|
|
75761
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
75629
75762
|
};
|
|
75630
75763
|
status: boolean;
|
|
75631
75764
|
createdAt: Date;
|
|
@@ -76354,6 +76487,7 @@ export declare const mainChatContract: {
|
|
|
76354
76487
|
apiSecret: string;
|
|
76355
76488
|
} | undefined;
|
|
76356
76489
|
lineRichMenuId?: string | null | undefined;
|
|
76490
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
76357
76491
|
};
|
|
76358
76492
|
status: boolean;
|
|
76359
76493
|
createdAt: Date;
|
|
@@ -77083,6 +77217,7 @@ export declare const mainChatContract: {
|
|
|
77083
77217
|
apiSecret: string;
|
|
77084
77218
|
} | undefined;
|
|
77085
77219
|
lineRichMenuId?: string | null | undefined;
|
|
77220
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
77086
77221
|
};
|
|
77087
77222
|
status: boolean;
|
|
77088
77223
|
createdAt: Date;
|
|
@@ -79804,6 +79939,7 @@ export declare const mainChatContract: {
|
|
|
79804
79939
|
apiSecret: string;
|
|
79805
79940
|
}>>;
|
|
79806
79941
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
79942
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
79807
79943
|
}, "strip", z.ZodTypeAny, {
|
|
79808
79944
|
id: string;
|
|
79809
79945
|
name: string;
|
|
@@ -79817,6 +79953,7 @@ export declare const mainChatContract: {
|
|
|
79817
79953
|
apiSecret: string;
|
|
79818
79954
|
} | undefined;
|
|
79819
79955
|
lineRichMenuId?: string | null | undefined;
|
|
79956
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
79820
79957
|
}, {
|
|
79821
79958
|
id: string;
|
|
79822
79959
|
name: string;
|
|
@@ -79830,6 +79967,7 @@ export declare const mainChatContract: {
|
|
|
79830
79967
|
apiSecret: string;
|
|
79831
79968
|
} | undefined;
|
|
79832
79969
|
lineRichMenuId?: string | null | undefined;
|
|
79970
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
79833
79971
|
}>;
|
|
79834
79972
|
brandName: z.ZodString;
|
|
79835
79973
|
platformId: z.ZodString;
|
|
@@ -80077,6 +80215,7 @@ export declare const mainChatContract: {
|
|
|
80077
80215
|
apiSecret: string;
|
|
80078
80216
|
} | undefined;
|
|
80079
80217
|
lineRichMenuId?: string | null | undefined;
|
|
80218
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
80080
80219
|
};
|
|
80081
80220
|
status: boolean;
|
|
80082
80221
|
createdAt: Date;
|
|
@@ -80155,6 +80294,7 @@ export declare const mainChatContract: {
|
|
|
80155
80294
|
apiSecret: string;
|
|
80156
80295
|
} | undefined;
|
|
80157
80296
|
lineRichMenuId?: string | null | undefined;
|
|
80297
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
80158
80298
|
};
|
|
80159
80299
|
status: boolean;
|
|
80160
80300
|
createdAt: Date;
|
|
@@ -80681,6 +80821,7 @@ export declare const mainChatContract: {
|
|
|
80681
80821
|
apiSecret: string;
|
|
80682
80822
|
} | undefined;
|
|
80683
80823
|
lineRichMenuId?: string | null | undefined;
|
|
80824
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
80684
80825
|
};
|
|
80685
80826
|
status: boolean;
|
|
80686
80827
|
createdAt: Date;
|
|
@@ -81070,6 +81211,7 @@ export declare const mainChatContract: {
|
|
|
81070
81211
|
apiSecret: string;
|
|
81071
81212
|
} | undefined;
|
|
81072
81213
|
lineRichMenuId?: string | null | undefined;
|
|
81214
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
81073
81215
|
};
|
|
81074
81216
|
status: boolean;
|
|
81075
81217
|
createdAt: Date;
|
|
@@ -82710,6 +82852,7 @@ export declare const mainChatContract: {
|
|
|
82710
82852
|
apiSecret: string;
|
|
82711
82853
|
}>>;
|
|
82712
82854
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
82855
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
82713
82856
|
}, "strip", z.ZodTypeAny, {
|
|
82714
82857
|
id: string;
|
|
82715
82858
|
name: string;
|
|
@@ -82723,6 +82866,7 @@ export declare const mainChatContract: {
|
|
|
82723
82866
|
apiSecret: string;
|
|
82724
82867
|
} | undefined;
|
|
82725
82868
|
lineRichMenuId?: string | null | undefined;
|
|
82869
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
82726
82870
|
}, {
|
|
82727
82871
|
id: string;
|
|
82728
82872
|
name: string;
|
|
@@ -82736,6 +82880,7 @@ export declare const mainChatContract: {
|
|
|
82736
82880
|
apiSecret: string;
|
|
82737
82881
|
} | undefined;
|
|
82738
82882
|
lineRichMenuId?: string | null | undefined;
|
|
82883
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
82739
82884
|
}>;
|
|
82740
82885
|
brandName: z.ZodString;
|
|
82741
82886
|
platformId: z.ZodString;
|
|
@@ -82983,6 +83128,7 @@ export declare const mainChatContract: {
|
|
|
82983
83128
|
apiSecret: string;
|
|
82984
83129
|
} | undefined;
|
|
82985
83130
|
lineRichMenuId?: string | null | undefined;
|
|
83131
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
82986
83132
|
};
|
|
82987
83133
|
status: boolean;
|
|
82988
83134
|
createdAt: Date;
|
|
@@ -83061,6 +83207,7 @@ export declare const mainChatContract: {
|
|
|
83061
83207
|
apiSecret: string;
|
|
83062
83208
|
} | undefined;
|
|
83063
83209
|
lineRichMenuId?: string | null | undefined;
|
|
83210
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
83064
83211
|
};
|
|
83065
83212
|
status: boolean;
|
|
83066
83213
|
createdAt: Date;
|
|
@@ -84396,6 +84543,7 @@ export declare const mainChatContract: {
|
|
|
84396
84543
|
apiSecret: string;
|
|
84397
84544
|
} | undefined;
|
|
84398
84545
|
lineRichMenuId?: string | null | undefined;
|
|
84546
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
84399
84547
|
};
|
|
84400
84548
|
status: boolean;
|
|
84401
84549
|
createdAt: Date;
|
|
@@ -84661,6 +84809,7 @@ export declare const mainChatContract: {
|
|
|
84661
84809
|
apiSecret: string;
|
|
84662
84810
|
} | undefined;
|
|
84663
84811
|
lineRichMenuId?: string | null | undefined;
|
|
84812
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
84664
84813
|
};
|
|
84665
84814
|
status: boolean;
|
|
84666
84815
|
createdAt: Date;
|
|
@@ -85036,6 +85185,7 @@ export declare const mainChatContract: {
|
|
|
85036
85185
|
apiSecret: string;
|
|
85037
85186
|
} | undefined;
|
|
85038
85187
|
lineRichMenuId?: string | null | undefined;
|
|
85188
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
85039
85189
|
};
|
|
85040
85190
|
status: boolean;
|
|
85041
85191
|
createdAt: Date;
|
|
@@ -85653,6 +85803,7 @@ export declare const mainChatContract: {
|
|
|
85653
85803
|
apiSecret: string;
|
|
85654
85804
|
} | undefined;
|
|
85655
85805
|
lineRichMenuId?: string | null | undefined;
|
|
85806
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
85656
85807
|
};
|
|
85657
85808
|
status: boolean;
|
|
85658
85809
|
createdAt: Date;
|
|
@@ -86031,6 +86182,7 @@ export declare const mainChatContract: {
|
|
|
86031
86182
|
apiSecret: string;
|
|
86032
86183
|
} | undefined;
|
|
86033
86184
|
lineRichMenuId?: string | null | undefined;
|
|
86185
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
86034
86186
|
};
|
|
86035
86187
|
status: boolean;
|
|
86036
86188
|
createdAt: Date;
|
|
@@ -86648,6 +86800,7 @@ export declare const mainChatContract: {
|
|
|
86648
86800
|
apiSecret: string;
|
|
86649
86801
|
} | undefined;
|
|
86650
86802
|
lineRichMenuId?: string | null | undefined;
|
|
86803
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
86651
86804
|
};
|
|
86652
86805
|
status: boolean;
|
|
86653
86806
|
createdAt: Date;
|
|
@@ -87028,6 +87181,7 @@ export declare const mainChatContract: {
|
|
|
87028
87181
|
apiSecret: string;
|
|
87029
87182
|
} | undefined;
|
|
87030
87183
|
lineRichMenuId?: string | null | undefined;
|
|
87184
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
87031
87185
|
};
|
|
87032
87186
|
status: boolean;
|
|
87033
87187
|
createdAt: Date;
|
|
@@ -87645,6 +87799,7 @@ export declare const mainChatContract: {
|
|
|
87645
87799
|
apiSecret: string;
|
|
87646
87800
|
} | undefined;
|
|
87647
87801
|
lineRichMenuId?: string | null | undefined;
|
|
87802
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
87648
87803
|
};
|
|
87649
87804
|
status: boolean;
|
|
87650
87805
|
createdAt: Date;
|
|
@@ -88029,6 +88184,7 @@ export declare const mainChatContract: {
|
|
|
88029
88184
|
apiSecret: string;
|
|
88030
88185
|
} | undefined;
|
|
88031
88186
|
lineRichMenuId?: string | null | undefined;
|
|
88187
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
88032
88188
|
};
|
|
88033
88189
|
status: boolean;
|
|
88034
88190
|
createdAt: Date;
|
|
@@ -88646,6 +88802,7 @@ export declare const mainChatContract: {
|
|
|
88646
88802
|
apiSecret: string;
|
|
88647
88803
|
} | undefined;
|
|
88648
88804
|
lineRichMenuId?: string | null | undefined;
|
|
88805
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
88649
88806
|
};
|
|
88650
88807
|
status: boolean;
|
|
88651
88808
|
createdAt: Date;
|
|
@@ -90438,6 +90595,7 @@ export declare const mainChatContract: {
|
|
|
90438
90595
|
apiSecret: string;
|
|
90439
90596
|
}>>;
|
|
90440
90597
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
90598
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
90441
90599
|
}, "strip", z.ZodTypeAny, {
|
|
90442
90600
|
id: string;
|
|
90443
90601
|
name: string;
|
|
@@ -90451,6 +90609,7 @@ export declare const mainChatContract: {
|
|
|
90451
90609
|
apiSecret: string;
|
|
90452
90610
|
} | undefined;
|
|
90453
90611
|
lineRichMenuId?: string | null | undefined;
|
|
90612
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
90454
90613
|
}, {
|
|
90455
90614
|
id: string;
|
|
90456
90615
|
name: string;
|
|
@@ -90464,6 +90623,7 @@ export declare const mainChatContract: {
|
|
|
90464
90623
|
apiSecret: string;
|
|
90465
90624
|
} | undefined;
|
|
90466
90625
|
lineRichMenuId?: string | null | undefined;
|
|
90626
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
90467
90627
|
}>;
|
|
90468
90628
|
brandName: z.ZodString;
|
|
90469
90629
|
platformId: z.ZodString;
|
|
@@ -90711,6 +90871,7 @@ export declare const mainChatContract: {
|
|
|
90711
90871
|
apiSecret: string;
|
|
90712
90872
|
} | undefined;
|
|
90713
90873
|
lineRichMenuId?: string | null | undefined;
|
|
90874
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
90714
90875
|
};
|
|
90715
90876
|
status: boolean;
|
|
90716
90877
|
createdAt: Date;
|
|
@@ -90789,6 +90950,7 @@ export declare const mainChatContract: {
|
|
|
90789
90950
|
apiSecret: string;
|
|
90790
90951
|
} | undefined;
|
|
90791
90952
|
lineRichMenuId?: string | null | undefined;
|
|
90953
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
90792
90954
|
};
|
|
90793
90955
|
status: boolean;
|
|
90794
90956
|
createdAt: Date;
|
|
@@ -91315,6 +91477,7 @@ export declare const mainChatContract: {
|
|
|
91315
91477
|
apiSecret: string;
|
|
91316
91478
|
} | undefined;
|
|
91317
91479
|
lineRichMenuId?: string | null | undefined;
|
|
91480
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
91318
91481
|
};
|
|
91319
91482
|
status: boolean;
|
|
91320
91483
|
createdAt: Date;
|
|
@@ -91704,6 +91867,7 @@ export declare const mainChatContract: {
|
|
|
91704
91867
|
apiSecret: string;
|
|
91705
91868
|
} | undefined;
|
|
91706
91869
|
lineRichMenuId?: string | null | undefined;
|
|
91870
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
91707
91871
|
};
|
|
91708
91872
|
status: boolean;
|
|
91709
91873
|
createdAt: Date;
|
|
@@ -92095,6 +92259,7 @@ export declare const mainChatContract: {
|
|
|
92095
92259
|
apiSecret: string;
|
|
92096
92260
|
} | undefined;
|
|
92097
92261
|
lineRichMenuId?: string | null | undefined;
|
|
92262
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
92098
92263
|
};
|
|
92099
92264
|
status: boolean;
|
|
92100
92265
|
createdAt: Date;
|
|
@@ -92487,6 +92652,7 @@ export declare const mainChatContract: {
|
|
|
92487
92652
|
apiSecret: string;
|
|
92488
92653
|
} | undefined;
|
|
92489
92654
|
lineRichMenuId?: string | null | undefined;
|
|
92655
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
92490
92656
|
};
|
|
92491
92657
|
status: boolean;
|
|
92492
92658
|
createdAt: Date;
|
|
@@ -94407,6 +94573,7 @@ export declare const mainChatContract: {
|
|
|
94407
94573
|
apiSecret: string;
|
|
94408
94574
|
}>>;
|
|
94409
94575
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
94576
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
94410
94577
|
}, "strip", z.ZodTypeAny, {
|
|
94411
94578
|
id: string;
|
|
94412
94579
|
name: string;
|
|
@@ -94420,6 +94587,7 @@ export declare const mainChatContract: {
|
|
|
94420
94587
|
apiSecret: string;
|
|
94421
94588
|
} | undefined;
|
|
94422
94589
|
lineRichMenuId?: string | null | undefined;
|
|
94590
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
94423
94591
|
}, {
|
|
94424
94592
|
id: string;
|
|
94425
94593
|
name: string;
|
|
@@ -94433,6 +94601,7 @@ export declare const mainChatContract: {
|
|
|
94433
94601
|
apiSecret: string;
|
|
94434
94602
|
} | undefined;
|
|
94435
94603
|
lineRichMenuId?: string | null | undefined;
|
|
94604
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
94436
94605
|
}>;
|
|
94437
94606
|
brandName: z.ZodString;
|
|
94438
94607
|
platformId: z.ZodString;
|
|
@@ -94680,6 +94849,7 @@ export declare const mainChatContract: {
|
|
|
94680
94849
|
apiSecret: string;
|
|
94681
94850
|
} | undefined;
|
|
94682
94851
|
lineRichMenuId?: string | null | undefined;
|
|
94852
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
94683
94853
|
};
|
|
94684
94854
|
status: boolean;
|
|
94685
94855
|
createdAt: Date;
|
|
@@ -94758,6 +94928,7 @@ export declare const mainChatContract: {
|
|
|
94758
94928
|
apiSecret: string;
|
|
94759
94929
|
} | undefined;
|
|
94760
94930
|
lineRichMenuId?: string | null | undefined;
|
|
94931
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
94761
94932
|
};
|
|
94762
94933
|
status: boolean;
|
|
94763
94934
|
createdAt: Date;
|
|
@@ -95284,6 +95455,7 @@ export declare const mainChatContract: {
|
|
|
95284
95455
|
apiSecret: string;
|
|
95285
95456
|
} | undefined;
|
|
95286
95457
|
lineRichMenuId?: string | null | undefined;
|
|
95458
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
95287
95459
|
};
|
|
95288
95460
|
status: boolean;
|
|
95289
95461
|
createdAt: Date;
|
|
@@ -95673,6 +95845,7 @@ export declare const mainChatContract: {
|
|
|
95673
95845
|
apiSecret: string;
|
|
95674
95846
|
} | undefined;
|
|
95675
95847
|
lineRichMenuId?: string | null | undefined;
|
|
95848
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
95676
95849
|
};
|
|
95677
95850
|
status: boolean;
|
|
95678
95851
|
createdAt: Date;
|
|
@@ -96064,6 +96237,7 @@ export declare const mainChatContract: {
|
|
|
96064
96237
|
apiSecret: string;
|
|
96065
96238
|
} | undefined;
|
|
96066
96239
|
lineRichMenuId?: string | null | undefined;
|
|
96240
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
96067
96241
|
};
|
|
96068
96242
|
status: boolean;
|
|
96069
96243
|
createdAt: Date;
|
|
@@ -96456,6 +96630,7 @@ export declare const mainChatContract: {
|
|
|
96456
96630
|
apiSecret: string;
|
|
96457
96631
|
} | undefined;
|
|
96458
96632
|
lineRichMenuId?: string | null | undefined;
|
|
96633
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
96459
96634
|
};
|
|
96460
96635
|
status: boolean;
|
|
96461
96636
|
createdAt: Date;
|
|
@@ -99437,6 +99612,7 @@ export declare const mainChatContract: {
|
|
|
99437
99612
|
apiSecret: string;
|
|
99438
99613
|
}>>;
|
|
99439
99614
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
99615
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
99440
99616
|
}, "strip", z.ZodTypeAny, {
|
|
99441
99617
|
id: string;
|
|
99442
99618
|
name: string;
|
|
@@ -99450,6 +99626,7 @@ export declare const mainChatContract: {
|
|
|
99450
99626
|
apiSecret: string;
|
|
99451
99627
|
} | undefined;
|
|
99452
99628
|
lineRichMenuId?: string | null | undefined;
|
|
99629
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
99453
99630
|
}, {
|
|
99454
99631
|
id: string;
|
|
99455
99632
|
name: string;
|
|
@@ -99463,6 +99640,7 @@ export declare const mainChatContract: {
|
|
|
99463
99640
|
apiSecret: string;
|
|
99464
99641
|
} | undefined;
|
|
99465
99642
|
lineRichMenuId?: string | null | undefined;
|
|
99643
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
99466
99644
|
}>;
|
|
99467
99645
|
brandName: z.ZodString;
|
|
99468
99646
|
platformId: z.ZodString;
|
|
@@ -99710,6 +99888,7 @@ export declare const mainChatContract: {
|
|
|
99710
99888
|
apiSecret: string;
|
|
99711
99889
|
} | undefined;
|
|
99712
99890
|
lineRichMenuId?: string | null | undefined;
|
|
99891
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
99713
99892
|
};
|
|
99714
99893
|
status: boolean;
|
|
99715
99894
|
createdAt: Date;
|
|
@@ -99788,6 +99967,7 @@ export declare const mainChatContract: {
|
|
|
99788
99967
|
apiSecret: string;
|
|
99789
99968
|
} | undefined;
|
|
99790
99969
|
lineRichMenuId?: string | null | undefined;
|
|
99970
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
99791
99971
|
};
|
|
99792
99972
|
status: boolean;
|
|
99793
99973
|
createdAt: Date;
|
|
@@ -100314,6 +100494,7 @@ export declare const mainChatContract: {
|
|
|
100314
100494
|
apiSecret: string;
|
|
100315
100495
|
} | undefined;
|
|
100316
100496
|
lineRichMenuId?: string | null | undefined;
|
|
100497
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
100317
100498
|
};
|
|
100318
100499
|
status: boolean;
|
|
100319
100500
|
createdAt: Date;
|
|
@@ -100703,6 +100884,7 @@ export declare const mainChatContract: {
|
|
|
100703
100884
|
apiSecret: string;
|
|
100704
100885
|
} | undefined;
|
|
100705
100886
|
lineRichMenuId?: string | null | undefined;
|
|
100887
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
100706
100888
|
};
|
|
100707
100889
|
status: boolean;
|
|
100708
100890
|
createdAt: Date;
|
|
@@ -101094,6 +101276,7 @@ export declare const mainChatContract: {
|
|
|
101094
101276
|
apiSecret: string;
|
|
101095
101277
|
} | undefined;
|
|
101096
101278
|
lineRichMenuId?: string | null | undefined;
|
|
101279
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
101097
101280
|
};
|
|
101098
101281
|
status: boolean;
|
|
101099
101282
|
createdAt: Date;
|
|
@@ -101486,6 +101669,7 @@ export declare const mainChatContract: {
|
|
|
101486
101669
|
apiSecret: string;
|
|
101487
101670
|
} | undefined;
|
|
101488
101671
|
lineRichMenuId?: string | null | undefined;
|
|
101672
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
101489
101673
|
};
|
|
101490
101674
|
status: boolean;
|
|
101491
101675
|
createdAt: Date;
|
|
@@ -104245,6 +104429,7 @@ export declare const mainChatMessageContract: {
|
|
|
104245
104429
|
apiSecret: string;
|
|
104246
104430
|
}>>;
|
|
104247
104431
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
104432
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
104248
104433
|
}, "strip", z.ZodTypeAny, {
|
|
104249
104434
|
id: string;
|
|
104250
104435
|
name: string;
|
|
@@ -104258,6 +104443,7 @@ export declare const mainChatMessageContract: {
|
|
|
104258
104443
|
apiSecret: string;
|
|
104259
104444
|
} | undefined;
|
|
104260
104445
|
lineRichMenuId?: string | null | undefined;
|
|
104446
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
104261
104447
|
}, {
|
|
104262
104448
|
id: string;
|
|
104263
104449
|
name: string;
|
|
@@ -104271,6 +104457,7 @@ export declare const mainChatMessageContract: {
|
|
|
104271
104457
|
apiSecret: string;
|
|
104272
104458
|
} | undefined;
|
|
104273
104459
|
lineRichMenuId?: string | null | undefined;
|
|
104460
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
104274
104461
|
}>;
|
|
104275
104462
|
brandName: z.ZodString;
|
|
104276
104463
|
platformId: z.ZodString;
|
|
@@ -104518,6 +104705,7 @@ export declare const mainChatMessageContract: {
|
|
|
104518
104705
|
apiSecret: string;
|
|
104519
104706
|
} | undefined;
|
|
104520
104707
|
lineRichMenuId?: string | null | undefined;
|
|
104708
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
104521
104709
|
};
|
|
104522
104710
|
status: boolean;
|
|
104523
104711
|
createdAt: Date;
|
|
@@ -104596,6 +104784,7 @@ export declare const mainChatMessageContract: {
|
|
|
104596
104784
|
apiSecret: string;
|
|
104597
104785
|
} | undefined;
|
|
104598
104786
|
lineRichMenuId?: string | null | undefined;
|
|
104787
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
104599
104788
|
};
|
|
104600
104789
|
status: boolean;
|
|
104601
104790
|
createdAt: Date;
|
|
@@ -105122,6 +105311,7 @@ export declare const mainChatMessageContract: {
|
|
|
105122
105311
|
apiSecret: string;
|
|
105123
105312
|
} | undefined;
|
|
105124
105313
|
lineRichMenuId?: string | null | undefined;
|
|
105314
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
105125
105315
|
};
|
|
105126
105316
|
status: boolean;
|
|
105127
105317
|
createdAt: Date;
|
|
@@ -105511,6 +105701,7 @@ export declare const mainChatMessageContract: {
|
|
|
105511
105701
|
apiSecret: string;
|
|
105512
105702
|
} | undefined;
|
|
105513
105703
|
lineRichMenuId?: string | null | undefined;
|
|
105704
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
105514
105705
|
};
|
|
105515
105706
|
status: boolean;
|
|
105516
105707
|
createdAt: Date;
|
|
@@ -108624,6 +108815,7 @@ export declare const mainChatMessageContract: {
|
|
|
108624
108815
|
apiSecret: string;
|
|
108625
108816
|
}>>;
|
|
108626
108817
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
108818
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
108627
108819
|
}, "strip", z.ZodTypeAny, {
|
|
108628
108820
|
id: string;
|
|
108629
108821
|
name: string;
|
|
@@ -108637,6 +108829,7 @@ export declare const mainChatMessageContract: {
|
|
|
108637
108829
|
apiSecret: string;
|
|
108638
108830
|
} | undefined;
|
|
108639
108831
|
lineRichMenuId?: string | null | undefined;
|
|
108832
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
108640
108833
|
}, {
|
|
108641
108834
|
id: string;
|
|
108642
108835
|
name: string;
|
|
@@ -108650,6 +108843,7 @@ export declare const mainChatMessageContract: {
|
|
|
108650
108843
|
apiSecret: string;
|
|
108651
108844
|
} | undefined;
|
|
108652
108845
|
lineRichMenuId?: string | null | undefined;
|
|
108846
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
108653
108847
|
}>;
|
|
108654
108848
|
brandName: z.ZodString;
|
|
108655
108849
|
platformId: z.ZodString;
|
|
@@ -108897,6 +109091,7 @@ export declare const mainChatMessageContract: {
|
|
|
108897
109091
|
apiSecret: string;
|
|
108898
109092
|
} | undefined;
|
|
108899
109093
|
lineRichMenuId?: string | null | undefined;
|
|
109094
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
108900
109095
|
};
|
|
108901
109096
|
status: boolean;
|
|
108902
109097
|
createdAt: Date;
|
|
@@ -108975,6 +109170,7 @@ export declare const mainChatMessageContract: {
|
|
|
108975
109170
|
apiSecret: string;
|
|
108976
109171
|
} | undefined;
|
|
108977
109172
|
lineRichMenuId?: string | null | undefined;
|
|
109173
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
108978
109174
|
};
|
|
108979
109175
|
status: boolean;
|
|
108980
109176
|
createdAt: Date;
|
|
@@ -109501,6 +109697,7 @@ export declare const mainChatMessageContract: {
|
|
|
109501
109697
|
apiSecret: string;
|
|
109502
109698
|
} | undefined;
|
|
109503
109699
|
lineRichMenuId?: string | null | undefined;
|
|
109700
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
109504
109701
|
};
|
|
109505
109702
|
status: boolean;
|
|
109506
109703
|
createdAt: Date;
|
|
@@ -109890,6 +110087,7 @@ export declare const mainChatMessageContract: {
|
|
|
109890
110087
|
apiSecret: string;
|
|
109891
110088
|
} | undefined;
|
|
109892
110089
|
lineRichMenuId?: string | null | undefined;
|
|
110090
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
109893
110091
|
};
|
|
109894
110092
|
status: boolean;
|
|
109895
110093
|
createdAt: Date;
|
|
@@ -112052,6 +112250,7 @@ export declare const mainChatMessageContract: {
|
|
|
112052
112250
|
apiSecret: string;
|
|
112053
112251
|
} | undefined;
|
|
112054
112252
|
lineRichMenuId?: string | null | undefined;
|
|
112253
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
112055
112254
|
};
|
|
112056
112255
|
status: boolean;
|
|
112057
112256
|
createdAt: Date;
|
|
@@ -112778,6 +112977,7 @@ export declare const mainChatMessageContract: {
|
|
|
112778
112977
|
apiSecret: string;
|
|
112779
112978
|
} | undefined;
|
|
112780
112979
|
lineRichMenuId?: string | null | undefined;
|
|
112980
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
112781
112981
|
};
|
|
112782
112982
|
status: boolean;
|
|
112783
112983
|
createdAt: Date;
|
|
@@ -113505,6 +113705,7 @@ export declare const mainChatMessageContract: {
|
|
|
113505
113705
|
apiSecret: string;
|
|
113506
113706
|
} | undefined;
|
|
113507
113707
|
lineRichMenuId?: string | null | undefined;
|
|
113708
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
113508
113709
|
};
|
|
113509
113710
|
status: boolean;
|
|
113510
113711
|
createdAt: Date;
|
|
@@ -114231,6 +114432,7 @@ export declare const mainChatMessageContract: {
|
|
|
114231
114432
|
apiSecret: string;
|
|
114232
114433
|
} | undefined;
|
|
114233
114434
|
lineRichMenuId?: string | null | undefined;
|
|
114435
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
114234
114436
|
};
|
|
114235
114437
|
status: boolean;
|
|
114236
114438
|
createdAt: Date;
|
|
@@ -114958,6 +115160,7 @@ export declare const mainChatMessageContract: {
|
|
|
114958
115160
|
apiSecret: string;
|
|
114959
115161
|
} | undefined;
|
|
114960
115162
|
lineRichMenuId?: string | null | undefined;
|
|
115163
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
114961
115164
|
};
|
|
114962
115165
|
status: boolean;
|
|
114963
115166
|
createdAt: Date;
|
|
@@ -115684,6 +115887,7 @@ export declare const mainChatMessageContract: {
|
|
|
115684
115887
|
apiSecret: string;
|
|
115685
115888
|
} | undefined;
|
|
115686
115889
|
lineRichMenuId?: string | null | undefined;
|
|
115890
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
115687
115891
|
};
|
|
115688
115892
|
status: boolean;
|
|
115689
115893
|
createdAt: Date;
|
|
@@ -116413,6 +116617,7 @@ export declare const mainChatMessageContract: {
|
|
|
116413
116617
|
apiSecret: string;
|
|
116414
116618
|
} | undefined;
|
|
116415
116619
|
lineRichMenuId?: string | null | undefined;
|
|
116620
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
116416
116621
|
};
|
|
116417
116622
|
status: boolean;
|
|
116418
116623
|
createdAt: Date;
|
|
@@ -117139,6 +117344,7 @@ export declare const mainChatMessageContract: {
|
|
|
117139
117344
|
apiSecret: string;
|
|
117140
117345
|
} | undefined;
|
|
117141
117346
|
lineRichMenuId?: string | null | undefined;
|
|
117347
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
117142
117348
|
};
|
|
117143
117349
|
status: boolean;
|
|
117144
117350
|
createdAt: Date;
|
|
@@ -117869,6 +118075,7 @@ export declare const mainChatMessageContract: {
|
|
|
117869
118075
|
apiSecret: string;
|
|
117870
118076
|
} | undefined;
|
|
117871
118077
|
lineRichMenuId?: string | null | undefined;
|
|
118078
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
117872
118079
|
};
|
|
117873
118080
|
status: boolean;
|
|
117874
118081
|
createdAt: Date;
|
|
@@ -118595,6 +118802,7 @@ export declare const mainChatMessageContract: {
|
|
|
118595
118802
|
apiSecret: string;
|
|
118596
118803
|
} | undefined;
|
|
118597
118804
|
lineRichMenuId?: string | null | undefined;
|
|
118805
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
118598
118806
|
};
|
|
118599
118807
|
status: boolean;
|
|
118600
118808
|
createdAt: Date;
|
|
@@ -119289,6 +119497,7 @@ export declare const mainChatMessageContract: {
|
|
|
119289
119497
|
apiSecret: string;
|
|
119290
119498
|
}>>;
|
|
119291
119499
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
119500
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
119292
119501
|
}, "strip", z.ZodTypeAny, {
|
|
119293
119502
|
id: string;
|
|
119294
119503
|
name: string;
|
|
@@ -119302,6 +119511,7 @@ export declare const mainChatMessageContract: {
|
|
|
119302
119511
|
apiSecret: string;
|
|
119303
119512
|
} | undefined;
|
|
119304
119513
|
lineRichMenuId?: string | null | undefined;
|
|
119514
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119305
119515
|
}, {
|
|
119306
119516
|
id: string;
|
|
119307
119517
|
name: string;
|
|
@@ -119315,6 +119525,7 @@ export declare const mainChatMessageContract: {
|
|
|
119315
119525
|
apiSecret: string;
|
|
119316
119526
|
} | undefined;
|
|
119317
119527
|
lineRichMenuId?: string | null | undefined;
|
|
119528
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119318
119529
|
}>;
|
|
119319
119530
|
platformId: z.ZodString;
|
|
119320
119531
|
brandName: z.ZodString;
|
|
@@ -119358,6 +119569,7 @@ export declare const mainChatMessageContract: {
|
|
|
119358
119569
|
apiSecret: string;
|
|
119359
119570
|
} | undefined;
|
|
119360
119571
|
lineRichMenuId?: string | null | undefined;
|
|
119572
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119361
119573
|
};
|
|
119362
119574
|
status: boolean;
|
|
119363
119575
|
brandName: string;
|
|
@@ -119389,6 +119601,7 @@ export declare const mainChatMessageContract: {
|
|
|
119389
119601
|
apiSecret: string;
|
|
119390
119602
|
} | undefined;
|
|
119391
119603
|
lineRichMenuId?: string | null | undefined;
|
|
119604
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119392
119605
|
};
|
|
119393
119606
|
status: boolean;
|
|
119394
119607
|
brandName: string;
|
|
@@ -119423,6 +119636,7 @@ export declare const mainChatMessageContract: {
|
|
|
119423
119636
|
apiSecret: string;
|
|
119424
119637
|
} | undefined;
|
|
119425
119638
|
lineRichMenuId?: string | null | undefined;
|
|
119639
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119426
119640
|
};
|
|
119427
119641
|
status: boolean;
|
|
119428
119642
|
brandName: string;
|
|
@@ -119457,6 +119671,7 @@ export declare const mainChatMessageContract: {
|
|
|
119457
119671
|
apiSecret: string;
|
|
119458
119672
|
} | undefined;
|
|
119459
119673
|
lineRichMenuId?: string | null | undefined;
|
|
119674
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119460
119675
|
};
|
|
119461
119676
|
status: boolean;
|
|
119462
119677
|
brandName: string;
|
|
@@ -119643,6 +119858,7 @@ export declare const mainChatMessageContract: {
|
|
|
119643
119858
|
apiSecret: string;
|
|
119644
119859
|
} | undefined;
|
|
119645
119860
|
lineRichMenuId?: string | null | undefined;
|
|
119861
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119646
119862
|
};
|
|
119647
119863
|
status: boolean;
|
|
119648
119864
|
brandName: string;
|
|
@@ -119711,6 +119927,7 @@ export declare const mainChatMessageContract: {
|
|
|
119711
119927
|
apiSecret: string;
|
|
119712
119928
|
} | undefined;
|
|
119713
119929
|
lineRichMenuId?: string | null | undefined;
|
|
119930
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119714
119931
|
};
|
|
119715
119932
|
status: boolean;
|
|
119716
119933
|
brandName: string;
|
|
@@ -119781,6 +119998,7 @@ export declare const mainChatMessageContract: {
|
|
|
119781
119998
|
apiSecret: string;
|
|
119782
119999
|
} | undefined;
|
|
119783
120000
|
lineRichMenuId?: string | null | undefined;
|
|
120001
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119784
120002
|
};
|
|
119785
120003
|
status: boolean;
|
|
119786
120004
|
brandName: string;
|
|
@@ -119852,6 +120070,7 @@ export declare const mainChatMessageContract: {
|
|
|
119852
120070
|
apiSecret: string;
|
|
119853
120071
|
} | undefined;
|
|
119854
120072
|
lineRichMenuId?: string | null | undefined;
|
|
120073
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
119855
120074
|
};
|
|
119856
120075
|
status: boolean;
|
|
119857
120076
|
brandName: string;
|
|
@@ -121429,6 +121648,7 @@ export declare const mainChatMessageContract: {
|
|
|
121429
121648
|
apiSecret: string;
|
|
121430
121649
|
}>>;
|
|
121431
121650
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
121651
|
+
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
121432
121652
|
}, "strip", z.ZodTypeAny, {
|
|
121433
121653
|
id: string;
|
|
121434
121654
|
name: string;
|
|
@@ -121442,6 +121662,7 @@ export declare const mainChatMessageContract: {
|
|
|
121442
121662
|
apiSecret: string;
|
|
121443
121663
|
} | undefined;
|
|
121444
121664
|
lineRichMenuId?: string | null | undefined;
|
|
121665
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
121445
121666
|
}, {
|
|
121446
121667
|
id: string;
|
|
121447
121668
|
name: string;
|
|
@@ -121455,6 +121676,7 @@ export declare const mainChatMessageContract: {
|
|
|
121455
121676
|
apiSecret: string;
|
|
121456
121677
|
} | undefined;
|
|
121457
121678
|
lineRichMenuId?: string | null | undefined;
|
|
121679
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
121458
121680
|
}>;
|
|
121459
121681
|
brandName: z.ZodString;
|
|
121460
121682
|
platformId: z.ZodString;
|
|
@@ -121702,6 +121924,7 @@ export declare const mainChatMessageContract: {
|
|
|
121702
121924
|
apiSecret: string;
|
|
121703
121925
|
} | undefined;
|
|
121704
121926
|
lineRichMenuId?: string | null | undefined;
|
|
121927
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
121705
121928
|
};
|
|
121706
121929
|
status: boolean;
|
|
121707
121930
|
createdAt: Date;
|
|
@@ -121780,6 +122003,7 @@ export declare const mainChatMessageContract: {
|
|
|
121780
122003
|
apiSecret: string;
|
|
121781
122004
|
} | undefined;
|
|
121782
122005
|
lineRichMenuId?: string | null | undefined;
|
|
122006
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
121783
122007
|
};
|
|
121784
122008
|
status: boolean;
|
|
121785
122009
|
createdAt: Date;
|
|
@@ -122306,6 +122530,7 @@ export declare const mainChatMessageContract: {
|
|
|
122306
122530
|
apiSecret: string;
|
|
122307
122531
|
} | undefined;
|
|
122308
122532
|
lineRichMenuId?: string | null | undefined;
|
|
122533
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
122309
122534
|
};
|
|
122310
122535
|
status: boolean;
|
|
122311
122536
|
createdAt: Date;
|
|
@@ -122695,6 +122920,7 @@ export declare const mainChatMessageContract: {
|
|
|
122695
122920
|
apiSecret: string;
|
|
122696
122921
|
} | undefined;
|
|
122697
122922
|
lineRichMenuId?: string | null | undefined;
|
|
122923
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
122698
122924
|
};
|
|
122699
122925
|
status: boolean;
|
|
122700
122926
|
createdAt: Date;
|
|
@@ -124857,6 +125083,7 @@ export declare const mainChatMessageContract: {
|
|
|
124857
125083
|
apiSecret: string;
|
|
124858
125084
|
} | undefined;
|
|
124859
125085
|
lineRichMenuId?: string | null | undefined;
|
|
125086
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
124860
125087
|
};
|
|
124861
125088
|
status: boolean;
|
|
124862
125089
|
createdAt: Date;
|
|
@@ -125583,6 +125810,7 @@ export declare const mainChatMessageContract: {
|
|
|
125583
125810
|
apiSecret: string;
|
|
125584
125811
|
} | undefined;
|
|
125585
125812
|
lineRichMenuId?: string | null | undefined;
|
|
125813
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
125586
125814
|
};
|
|
125587
125815
|
status: boolean;
|
|
125588
125816
|
createdAt: Date;
|
|
@@ -126311,6 +126539,7 @@ export declare const mainChatMessageContract: {
|
|
|
126311
126539
|
apiSecret: string;
|
|
126312
126540
|
} | undefined;
|
|
126313
126541
|
lineRichMenuId?: string | null | undefined;
|
|
126542
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
126314
126543
|
};
|
|
126315
126544
|
status: boolean;
|
|
126316
126545
|
createdAt: Date;
|
|
@@ -127040,6 +127269,7 @@ export declare const mainChatMessageContract: {
|
|
|
127040
127269
|
apiSecret: string;
|
|
127041
127270
|
} | undefined;
|
|
127042
127271
|
lineRichMenuId?: string | null | undefined;
|
|
127272
|
+
messengerIntegrationType?: "own" | "business" | undefined;
|
|
127043
127273
|
};
|
|
127044
127274
|
status: boolean;
|
|
127045
127275
|
createdAt: Date;
|