@kl1/contracts 1.1.43-uat → 1.1.45-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.
Files changed (60) hide show
  1. package/dist/index.js +128 -27
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +128 -27
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/botpress/index.d.ts +23 -14
  6. package/dist/src/botpress/index.d.ts.map +1 -1
  7. package/dist/src/botpress/validation.d.ts +23 -14
  8. package/dist/src/botpress/validation.d.ts.map +1 -1
  9. package/dist/src/channel/index.d.ts +105 -7
  10. package/dist/src/channel/index.d.ts.map +1 -1
  11. package/dist/src/channel/schema.d.ts +8 -0
  12. package/dist/src/channel/schema.d.ts.map +1 -1
  13. package/dist/src/channel/validation.d.ts +6 -1
  14. package/dist/src/channel/validation.d.ts.map +1 -1
  15. package/dist/src/chat/index.d.ts +116 -0
  16. package/dist/src/chat/index.d.ts.map +1 -1
  17. package/dist/src/chat/schema.d.ts +16 -0
  18. package/dist/src/chat/schema.d.ts.map +1 -1
  19. package/dist/src/chat/validation.d.ts +75 -0
  20. package/dist/src/chat/validation.d.ts.map +1 -1
  21. package/dist/src/contract.d.ts +1005 -166
  22. package/dist/src/contract.d.ts.map +1 -1
  23. package/dist/src/cx-log/index.d.ts +11 -0
  24. package/dist/src/cx-log/index.d.ts.map +1 -1
  25. package/dist/src/cx-log/schema.d.ts +9 -0
  26. package/dist/src/cx-log/schema.d.ts.map +1 -1
  27. package/dist/src/dashboard/index.d.ts +156 -146
  28. package/dist/src/dashboard/index.d.ts.map +1 -1
  29. package/dist/src/dashboard/schema.d.ts +207 -207
  30. package/dist/src/dashboard/validation.d.ts +10 -0
  31. package/dist/src/dashboard/validation.d.ts.map +1 -1
  32. package/dist/src/export/index.d.ts +43 -0
  33. package/dist/src/export/index.d.ts.map +1 -0
  34. package/dist/src/instagram/index.d.ts +141 -0
  35. package/dist/src/instagram/index.d.ts.map +1 -1
  36. package/dist/src/instagram/validation.d.ts +7 -0
  37. package/dist/src/instagram/validation.d.ts.map +1 -1
  38. package/dist/src/line/index.d.ts +132 -0
  39. package/dist/src/line/index.d.ts.map +1 -1
  40. package/dist/src/line/validation.d.ts +26 -0
  41. package/dist/src/line/validation.d.ts.map +1 -1
  42. package/dist/src/messenger/index.d.ts +111 -0
  43. package/dist/src/messenger/index.d.ts.map +1 -1
  44. package/dist/src/messenger/validation.d.ts +5 -0
  45. package/dist/src/messenger/validation.d.ts.map +1 -1
  46. package/dist/src/telephony-cdr/index.d.ts +125 -0
  47. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  48. package/dist/src/telephony-cdr/schema.d.ts +7 -0
  49. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  50. package/dist/src/ticket/index.d.ts +125 -0
  51. package/dist/src/ticket/index.d.ts.map +1 -1
  52. package/dist/src/ticket/schema.d.ts +7 -0
  53. package/dist/src/ticket/schema.d.ts.map +1 -1
  54. package/dist/src/viber/index.d.ts +60 -0
  55. package/dist/src/viber/index.d.ts.map +1 -1
  56. package/dist/src/webchat/index.d.ts +34 -0
  57. package/dist/src/webchat/index.d.ts.map +1 -1
  58. package/dist/src/workflow-rule/index.d.ts +18 -0
  59. package/dist/src/workflow-rule/index.d.ts.map +1 -1
  60. package/package.json +10 -4
@@ -1403,24 +1403,28 @@ export declare const receiveMessageContract: {
1403
1403
  accessToken: z.ZodOptional<z.ZodString>;
1404
1404
  channelSecret: z.ZodOptional<z.ZodString>;
1405
1405
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1406
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1406
1407
  }, "strip", z.ZodTypeAny, {
1407
1408
  id: string;
1408
1409
  name: string;
1409
1410
  accessToken?: string | undefined;
1410
1411
  channelSecret?: string | undefined;
1411
1412
  additionalCredentials?: any;
1413
+ lineRichMenuId?: string | null | undefined;
1412
1414
  }, {
1413
1415
  id: string;
1414
1416
  name: string;
1415
1417
  accessToken?: string | undefined;
1416
1418
  channelSecret?: string | undefined;
1417
1419
  additionalCredentials?: any;
1420
+ lineRichMenuId?: string | null | undefined;
1418
1421
  }>;
1419
1422
  platformId: z.ZodString;
1420
1423
  brandName: z.ZodString;
1421
1424
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
1422
1425
  connectedUserName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1423
1426
  connectedUserId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1427
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1424
1428
  actor: z.ZodOptional<z.ZodObject<{
1425
1429
  id: z.ZodString;
1426
1430
  name: z.ZodString;
@@ -1450,12 +1454,14 @@ export declare const receiveMessageContract: {
1450
1454
  accessToken?: string | undefined;
1451
1455
  channelSecret?: string | undefined;
1452
1456
  additionalCredentials?: any;
1457
+ lineRichMenuId?: string | null | undefined;
1453
1458
  };
1454
1459
  status: boolean;
1455
1460
  brandName: string;
1456
1461
  platformId: string;
1457
1462
  connectedUserName?: string | null | undefined;
1458
1463
  connectedUserId?: string | null | undefined;
1464
+ lineRichMenuId?: string | null | undefined;
1459
1465
  actor?: {
1460
1466
  id: string;
1461
1467
  address: string | null;
@@ -1473,12 +1479,14 @@ export declare const receiveMessageContract: {
1473
1479
  accessToken?: string | undefined;
1474
1480
  channelSecret?: string | undefined;
1475
1481
  additionalCredentials?: any;
1482
+ lineRichMenuId?: string | null | undefined;
1476
1483
  };
1477
1484
  status: boolean;
1478
1485
  brandName: string;
1479
1486
  platformId: string;
1480
1487
  connectedUserName?: string | null | undefined;
1481
1488
  connectedUserId?: string | null | undefined;
1489
+ lineRichMenuId?: string | null | undefined;
1482
1490
  actor?: {
1483
1491
  id: string;
1484
1492
  address: string | null;
@@ -2129,12 +2137,14 @@ export declare const receiveMessageContract: {
2129
2137
  accessToken?: string | undefined;
2130
2138
  channelSecret?: string | undefined;
2131
2139
  additionalCredentials?: any;
2140
+ lineRichMenuId?: string | null | undefined;
2132
2141
  };
2133
2142
  status: boolean;
2134
2143
  brandName: string;
2135
2144
  platformId: string;
2136
2145
  connectedUserName?: string | null | undefined;
2137
2146
  connectedUserId?: string | null | undefined;
2147
+ lineRichMenuId?: string | null | undefined;
2138
2148
  actor?: {
2139
2149
  id: string;
2140
2150
  address: string | null;
@@ -2435,12 +2445,14 @@ export declare const receiveMessageContract: {
2435
2445
  accessToken?: string | undefined;
2436
2446
  channelSecret?: string | undefined;
2437
2447
  additionalCredentials?: any;
2448
+ lineRichMenuId?: string | null | undefined;
2438
2449
  };
2439
2450
  status: boolean;
2440
2451
  brandName: string;
2441
2452
  platformId: string;
2442
2453
  connectedUserName?: string | null | undefined;
2443
2454
  connectedUserId?: string | null | undefined;
2455
+ lineRichMenuId?: string | null | undefined;
2444
2456
  actor?: {
2445
2457
  id: string;
2446
2458
  address: string | null;
@@ -3396,12 +3408,14 @@ export declare const receiveMessageContract: {
3396
3408
  accessToken?: string | undefined;
3397
3409
  channelSecret?: string | undefined;
3398
3410
  additionalCredentials?: any;
3411
+ lineRichMenuId?: string | null | undefined;
3399
3412
  };
3400
3413
  status: boolean;
3401
3414
  brandName: string;
3402
3415
  platformId: string;
3403
3416
  connectedUserName?: string | null | undefined;
3404
3417
  connectedUserId?: string | null | undefined;
3418
+ lineRichMenuId?: string | null | undefined;
3405
3419
  actor?: {
3406
3420
  id: string;
3407
3421
  address: string | null;
@@ -3864,12 +3878,14 @@ export declare const receiveMessageContract: {
3864
3878
  accessToken?: string | undefined;
3865
3879
  channelSecret?: string | undefined;
3866
3880
  additionalCredentials?: any;
3881
+ lineRichMenuId?: string | null | undefined;
3867
3882
  };
3868
3883
  status: boolean;
3869
3884
  brandName: string;
3870
3885
  platformId: string;
3871
3886
  connectedUserName?: string | null | undefined;
3872
3887
  connectedUserId?: string | null | undefined;
3888
+ lineRichMenuId?: string | null | undefined;
3873
3889
  actor?: {
3874
3890
  id: string;
3875
3891
  address: string | null;
@@ -4334,12 +4350,14 @@ export declare const receiveMessageContract: {
4334
4350
  accessToken?: string | undefined;
4335
4351
  channelSecret?: string | undefined;
4336
4352
  additionalCredentials?: any;
4353
+ lineRichMenuId?: string | null | undefined;
4337
4354
  };
4338
4355
  status: boolean;
4339
4356
  brandName: string;
4340
4357
  platformId: string;
4341
4358
  connectedUserName?: string | null | undefined;
4342
4359
  connectedUserId?: string | null | undefined;
4360
+ lineRichMenuId?: string | null | undefined;
4343
4361
  actor?: {
4344
4362
  id: string;
4345
4363
  address: string | null;
@@ -4804,12 +4822,14 @@ export declare const receiveMessageContract: {
4804
4822
  accessToken?: string | undefined;
4805
4823
  channelSecret?: string | undefined;
4806
4824
  additionalCredentials?: any;
4825
+ lineRichMenuId?: string | null | undefined;
4807
4826
  };
4808
4827
  status: boolean;
4809
4828
  brandName: string;
4810
4829
  platformId: string;
4811
4830
  connectedUserName?: string | null | undefined;
4812
4831
  connectedUserId?: string | null | undefined;
4832
+ lineRichMenuId?: string | null | undefined;
4813
4833
  actor?: {
4814
4834
  id: string;
4815
4835
  address: string | null;
@@ -6581,18 +6601,21 @@ export declare const chatContract: {
6581
6601
  accessToken: z.ZodOptional<z.ZodString>;
6582
6602
  channelSecret: z.ZodOptional<z.ZodString>;
6583
6603
  additionalCredentials: z.ZodOptional<z.ZodAny>;
6604
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6584
6605
  }, "strip", z.ZodTypeAny, {
6585
6606
  id: string;
6586
6607
  name: string;
6587
6608
  accessToken?: string | undefined;
6588
6609
  channelSecret?: string | undefined;
6589
6610
  additionalCredentials?: any;
6611
+ lineRichMenuId?: string | null | undefined;
6590
6612
  }, {
6591
6613
  id: string;
6592
6614
  name: string;
6593
6615
  accessToken?: string | undefined;
6594
6616
  channelSecret?: string | undefined;
6595
6617
  additionalCredentials?: any;
6618
+ lineRichMenuId?: string | null | undefined;
6596
6619
  }>;
6597
6620
  brandName: z.ZodString;
6598
6621
  platformId: z.ZodString;
@@ -6833,6 +6856,7 @@ export declare const chatContract: {
6833
6856
  accessToken?: string | undefined;
6834
6857
  channelSecret?: string | undefined;
6835
6858
  additionalCredentials?: any;
6859
+ lineRichMenuId?: string | null | undefined;
6836
6860
  };
6837
6861
  status: boolean;
6838
6862
  createdAt: Date;
@@ -6904,6 +6928,7 @@ export declare const chatContract: {
6904
6928
  accessToken?: string | undefined;
6905
6929
  channelSecret?: string | undefined;
6906
6930
  additionalCredentials?: any;
6931
+ lineRichMenuId?: string | null | undefined;
6907
6932
  };
6908
6933
  status: boolean;
6909
6934
  createdAt: Date;
@@ -7422,6 +7447,7 @@ export declare const chatContract: {
7422
7447
  accessToken?: string | undefined;
7423
7448
  channelSecret?: string | undefined;
7424
7449
  additionalCredentials?: any;
7450
+ lineRichMenuId?: string | null | undefined;
7425
7451
  };
7426
7452
  status: boolean;
7427
7453
  createdAt: Date;
@@ -7788,6 +7814,7 @@ export declare const chatContract: {
7788
7814
  accessToken?: string | undefined;
7789
7815
  channelSecret?: string | undefined;
7790
7816
  additionalCredentials?: any;
7817
+ lineRichMenuId?: string | null | undefined;
7791
7818
  };
7792
7819
  status: boolean;
7793
7820
  createdAt: Date;
@@ -8166,6 +8193,7 @@ export declare const chatContract: {
8166
8193
  accessToken?: string | undefined;
8167
8194
  channelSecret?: string | undefined;
8168
8195
  additionalCredentials?: any;
8196
+ lineRichMenuId?: string | null | undefined;
8169
8197
  };
8170
8198
  status: boolean;
8171
8199
  createdAt: Date;
@@ -8542,6 +8570,7 @@ export declare const chatContract: {
8542
8570
  accessToken?: string | undefined;
8543
8571
  channelSecret?: string | undefined;
8544
8572
  additionalCredentials?: any;
8573
+ lineRichMenuId?: string | null | undefined;
8545
8574
  };
8546
8575
  status: boolean;
8547
8576
  createdAt: Date;
@@ -11273,18 +11302,21 @@ export declare const chatContract: {
11273
11302
  accessToken: z.ZodOptional<z.ZodString>;
11274
11303
  channelSecret: z.ZodOptional<z.ZodString>;
11275
11304
  additionalCredentials: z.ZodOptional<z.ZodAny>;
11305
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11276
11306
  }, "strip", z.ZodTypeAny, {
11277
11307
  id: string;
11278
11308
  name: string;
11279
11309
  accessToken?: string | undefined;
11280
11310
  channelSecret?: string | undefined;
11281
11311
  additionalCredentials?: any;
11312
+ lineRichMenuId?: string | null | undefined;
11282
11313
  }, {
11283
11314
  id: string;
11284
11315
  name: string;
11285
11316
  accessToken?: string | undefined;
11286
11317
  channelSecret?: string | undefined;
11287
11318
  additionalCredentials?: any;
11319
+ lineRichMenuId?: string | null | undefined;
11288
11320
  }>;
11289
11321
  brandName: z.ZodString;
11290
11322
  platformId: z.ZodString;
@@ -11525,6 +11557,7 @@ export declare const chatContract: {
11525
11557
  accessToken?: string | undefined;
11526
11558
  channelSecret?: string | undefined;
11527
11559
  additionalCredentials?: any;
11560
+ lineRichMenuId?: string | null | undefined;
11528
11561
  };
11529
11562
  status: boolean;
11530
11563
  createdAt: Date;
@@ -11596,6 +11629,7 @@ export declare const chatContract: {
11596
11629
  accessToken?: string | undefined;
11597
11630
  channelSecret?: string | undefined;
11598
11631
  additionalCredentials?: any;
11632
+ lineRichMenuId?: string | null | undefined;
11599
11633
  };
11600
11634
  status: boolean;
11601
11635
  createdAt: Date;
@@ -12114,6 +12148,7 @@ export declare const chatContract: {
12114
12148
  accessToken?: string | undefined;
12115
12149
  channelSecret?: string | undefined;
12116
12150
  additionalCredentials?: any;
12151
+ lineRichMenuId?: string | null | undefined;
12117
12152
  };
12118
12153
  status: boolean;
12119
12154
  createdAt: Date;
@@ -12480,6 +12515,7 @@ export declare const chatContract: {
12480
12515
  accessToken?: string | undefined;
12481
12516
  channelSecret?: string | undefined;
12482
12517
  additionalCredentials?: any;
12518
+ lineRichMenuId?: string | null | undefined;
12483
12519
  };
12484
12520
  status: boolean;
12485
12521
  createdAt: Date;
@@ -12848,6 +12884,7 @@ export declare const chatContract: {
12848
12884
  accessToken?: string | undefined;
12849
12885
  channelSecret?: string | undefined;
12850
12886
  additionalCredentials?: any;
12887
+ lineRichMenuId?: string | null | undefined;
12851
12888
  };
12852
12889
  status: boolean;
12853
12890
  createdAt: Date;
@@ -13217,6 +13254,7 @@ export declare const chatContract: {
13217
13254
  accessToken?: string | undefined;
13218
13255
  channelSecret?: string | undefined;
13219
13256
  additionalCredentials?: any;
13257
+ lineRichMenuId?: string | null | undefined;
13220
13258
  };
13221
13259
  status: boolean;
13222
13260
  createdAt: Date;
@@ -15360,18 +15398,21 @@ export declare const chatContract: {
15360
15398
  accessToken: z.ZodOptional<z.ZodString>;
15361
15399
  channelSecret: z.ZodOptional<z.ZodString>;
15362
15400
  additionalCredentials: z.ZodOptional<z.ZodAny>;
15401
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
15363
15402
  }, "strip", z.ZodTypeAny, {
15364
15403
  id: string;
15365
15404
  name: string;
15366
15405
  accessToken?: string | undefined;
15367
15406
  channelSecret?: string | undefined;
15368
15407
  additionalCredentials?: any;
15408
+ lineRichMenuId?: string | null | undefined;
15369
15409
  }, {
15370
15410
  id: string;
15371
15411
  name: string;
15372
15412
  accessToken?: string | undefined;
15373
15413
  channelSecret?: string | undefined;
15374
15414
  additionalCredentials?: any;
15415
+ lineRichMenuId?: string | null | undefined;
15375
15416
  }>;
15376
15417
  brandName: z.ZodString;
15377
15418
  platformId: z.ZodString;
@@ -15612,6 +15653,7 @@ export declare const chatContract: {
15612
15653
  accessToken?: string | undefined;
15613
15654
  channelSecret?: string | undefined;
15614
15655
  additionalCredentials?: any;
15656
+ lineRichMenuId?: string | null | undefined;
15615
15657
  };
15616
15658
  status: boolean;
15617
15659
  createdAt: Date;
@@ -15683,6 +15725,7 @@ export declare const chatContract: {
15683
15725
  accessToken?: string | undefined;
15684
15726
  channelSecret?: string | undefined;
15685
15727
  additionalCredentials?: any;
15728
+ lineRichMenuId?: string | null | undefined;
15686
15729
  };
15687
15730
  status: boolean;
15688
15731
  createdAt: Date;
@@ -16201,6 +16244,7 @@ export declare const chatContract: {
16201
16244
  accessToken?: string | undefined;
16202
16245
  channelSecret?: string | undefined;
16203
16246
  additionalCredentials?: any;
16247
+ lineRichMenuId?: string | null | undefined;
16204
16248
  };
16205
16249
  status: boolean;
16206
16250
  createdAt: Date;
@@ -16567,6 +16611,7 @@ export declare const chatContract: {
16567
16611
  accessToken?: string | undefined;
16568
16612
  channelSecret?: string | undefined;
16569
16613
  additionalCredentials?: any;
16614
+ lineRichMenuId?: string | null | undefined;
16570
16615
  };
16571
16616
  status: boolean;
16572
16617
  createdAt: Date;
@@ -18704,6 +18749,7 @@ export declare const chatContract: {
18704
18749
  accessToken?: string | undefined;
18705
18750
  channelSecret?: string | undefined;
18706
18751
  additionalCredentials?: any;
18752
+ lineRichMenuId?: string | null | undefined;
18707
18753
  };
18708
18754
  status: boolean;
18709
18755
  createdAt: Date;
@@ -19405,6 +19451,7 @@ export declare const chatContract: {
19405
19451
  accessToken?: string | undefined;
19406
19452
  channelSecret?: string | undefined;
19407
19453
  additionalCredentials?: any;
19454
+ lineRichMenuId?: string | null | undefined;
19408
19455
  };
19409
19456
  status: boolean;
19410
19457
  createdAt: Date;
@@ -20108,6 +20155,7 @@ export declare const chatContract: {
20108
20155
  accessToken?: string | undefined;
20109
20156
  channelSecret?: string | undefined;
20110
20157
  additionalCredentials?: any;
20158
+ lineRichMenuId?: string | null | undefined;
20111
20159
  };
20112
20160
  status: boolean;
20113
20161
  createdAt: Date;
@@ -20812,6 +20860,7 @@ export declare const chatContract: {
20812
20860
  accessToken?: string | undefined;
20813
20861
  channelSecret?: string | undefined;
20814
20862
  additionalCredentials?: any;
20863
+ lineRichMenuId?: string | null | undefined;
20815
20864
  };
20816
20865
  status: boolean;
20817
20866
  createdAt: Date;
@@ -22910,18 +22959,21 @@ export declare const chatContract: {
22910
22959
  accessToken: z.ZodOptional<z.ZodString>;
22911
22960
  channelSecret: z.ZodOptional<z.ZodString>;
22912
22961
  additionalCredentials: z.ZodOptional<z.ZodAny>;
22962
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
22913
22963
  }, "strip", z.ZodTypeAny, {
22914
22964
  id: string;
22915
22965
  name: string;
22916
22966
  accessToken?: string | undefined;
22917
22967
  channelSecret?: string | undefined;
22918
22968
  additionalCredentials?: any;
22969
+ lineRichMenuId?: string | null | undefined;
22919
22970
  }, {
22920
22971
  id: string;
22921
22972
  name: string;
22922
22973
  accessToken?: string | undefined;
22923
22974
  channelSecret?: string | undefined;
22924
22975
  additionalCredentials?: any;
22976
+ lineRichMenuId?: string | null | undefined;
22925
22977
  }>;
22926
22978
  brandName: z.ZodString;
22927
22979
  platformId: z.ZodString;
@@ -23162,6 +23214,7 @@ export declare const chatContract: {
23162
23214
  accessToken?: string | undefined;
23163
23215
  channelSecret?: string | undefined;
23164
23216
  additionalCredentials?: any;
23217
+ lineRichMenuId?: string | null | undefined;
23165
23218
  };
23166
23219
  status: boolean;
23167
23220
  createdAt: Date;
@@ -23233,6 +23286,7 @@ export declare const chatContract: {
23233
23286
  accessToken?: string | undefined;
23234
23287
  channelSecret?: string | undefined;
23235
23288
  additionalCredentials?: any;
23289
+ lineRichMenuId?: string | null | undefined;
23236
23290
  };
23237
23291
  status: boolean;
23238
23292
  createdAt: Date;
@@ -23751,6 +23805,7 @@ export declare const chatContract: {
23751
23805
  accessToken?: string | undefined;
23752
23806
  channelSecret?: string | undefined;
23753
23807
  additionalCredentials?: any;
23808
+ lineRichMenuId?: string | null | undefined;
23754
23809
  };
23755
23810
  status: boolean;
23756
23811
  createdAt: Date;
@@ -24117,6 +24172,7 @@ export declare const chatContract: {
24117
24172
  accessToken?: string | undefined;
24118
24173
  channelSecret?: string | undefined;
24119
24174
  additionalCredentials?: any;
24175
+ lineRichMenuId?: string | null | undefined;
24120
24176
  };
24121
24177
  status: boolean;
24122
24178
  createdAt: Date;
@@ -26254,6 +26310,7 @@ export declare const chatContract: {
26254
26310
  accessToken?: string | undefined;
26255
26311
  channelSecret?: string | undefined;
26256
26312
  additionalCredentials?: any;
26313
+ lineRichMenuId?: string | null | undefined;
26257
26314
  };
26258
26315
  status: boolean;
26259
26316
  createdAt: Date;
@@ -26955,6 +27012,7 @@ export declare const chatContract: {
26955
27012
  accessToken?: string | undefined;
26956
27013
  channelSecret?: string | undefined;
26957
27014
  additionalCredentials?: any;
27015
+ lineRichMenuId?: string | null | undefined;
26958
27016
  };
26959
27017
  status: boolean;
26960
27018
  createdAt: Date;
@@ -27658,6 +27716,7 @@ export declare const chatContract: {
27658
27716
  accessToken?: string | undefined;
27659
27717
  channelSecret?: string | undefined;
27660
27718
  additionalCredentials?: any;
27719
+ lineRichMenuId?: string | null | undefined;
27661
27720
  };
27662
27721
  status: boolean;
27663
27722
  createdAt: Date;
@@ -28365,6 +28424,7 @@ export declare const chatContract: {
28365
28424
  accessToken?: string | undefined;
28366
28425
  channelSecret?: string | undefined;
28367
28426
  additionalCredentials?: any;
28427
+ lineRichMenuId?: string | null | undefined;
28368
28428
  };
28369
28429
  status: boolean;
28370
28430
  createdAt: Date;
@@ -29000,18 +29060,21 @@ export declare const chatContract: {
29000
29060
  accessToken: z.ZodOptional<z.ZodString>;
29001
29061
  channelSecret: z.ZodOptional<z.ZodString>;
29002
29062
  additionalCredentials: z.ZodOptional<z.ZodAny>;
29063
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
29003
29064
  }, "strip", z.ZodTypeAny, {
29004
29065
  id: string;
29005
29066
  name: string;
29006
29067
  accessToken?: string | undefined;
29007
29068
  channelSecret?: string | undefined;
29008
29069
  additionalCredentials?: any;
29070
+ lineRichMenuId?: string | null | undefined;
29009
29071
  }, {
29010
29072
  id: string;
29011
29073
  name: string;
29012
29074
  accessToken?: string | undefined;
29013
29075
  channelSecret?: string | undefined;
29014
29076
  additionalCredentials?: any;
29077
+ lineRichMenuId?: string | null | undefined;
29015
29078
  }>;
29016
29079
  brandName: z.ZodString;
29017
29080
  platformId: z.ZodString;
@@ -29252,6 +29315,7 @@ export declare const chatContract: {
29252
29315
  accessToken?: string | undefined;
29253
29316
  channelSecret?: string | undefined;
29254
29317
  additionalCredentials?: any;
29318
+ lineRichMenuId?: string | null | undefined;
29255
29319
  };
29256
29320
  status: boolean;
29257
29321
  createdAt: Date;
@@ -29323,6 +29387,7 @@ export declare const chatContract: {
29323
29387
  accessToken?: string | undefined;
29324
29388
  channelSecret?: string | undefined;
29325
29389
  additionalCredentials?: any;
29390
+ lineRichMenuId?: string | null | undefined;
29326
29391
  };
29327
29392
  status: boolean;
29328
29393
  createdAt: Date;
@@ -31198,6 +31263,7 @@ export declare const chatContract: {
31198
31263
  accessToken?: string | undefined;
31199
31264
  channelSecret?: string | undefined;
31200
31265
  additionalCredentials?: any;
31266
+ lineRichMenuId?: string | null | undefined;
31201
31267
  };
31202
31268
  status: boolean;
31203
31269
  createdAt: Date;
@@ -31565,6 +31631,7 @@ export declare const chatContract: {
31565
31631
  accessToken?: string | undefined;
31566
31632
  channelSecret?: string | undefined;
31567
31633
  additionalCredentials?: any;
31634
+ lineRichMenuId?: string | null | undefined;
31568
31635
  };
31569
31636
  status: boolean;
31570
31637
  createdAt: Date;
@@ -31934,6 +32001,7 @@ export declare const chatContract: {
31934
32001
  accessToken?: string | undefined;
31935
32002
  channelSecret?: string | undefined;
31936
32003
  additionalCredentials?: any;
32004
+ lineRichMenuId?: string | null | undefined;
31937
32005
  };
31938
32006
  status: boolean;
31939
32007
  createdAt: Date;
@@ -32304,6 +32372,7 @@ export declare const chatContract: {
32304
32372
  accessToken?: string | undefined;
32305
32373
  channelSecret?: string | undefined;
32306
32374
  additionalCredentials?: any;
32375
+ lineRichMenuId?: string | null | undefined;
32307
32376
  };
32308
32377
  status: boolean;
32309
32378
  createdAt: Date;
@@ -34078,18 +34147,21 @@ export declare const chatContract: {
34078
34147
  accessToken: z.ZodOptional<z.ZodString>;
34079
34148
  channelSecret: z.ZodOptional<z.ZodString>;
34080
34149
  additionalCredentials: z.ZodOptional<z.ZodAny>;
34150
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
34081
34151
  }, "strip", z.ZodTypeAny, {
34082
34152
  id: string;
34083
34153
  name: string;
34084
34154
  accessToken?: string | undefined;
34085
34155
  channelSecret?: string | undefined;
34086
34156
  additionalCredentials?: any;
34157
+ lineRichMenuId?: string | null | undefined;
34087
34158
  }, {
34088
34159
  id: string;
34089
34160
  name: string;
34090
34161
  accessToken?: string | undefined;
34091
34162
  channelSecret?: string | undefined;
34092
34163
  additionalCredentials?: any;
34164
+ lineRichMenuId?: string | null | undefined;
34093
34165
  }>;
34094
34166
  brandName: z.ZodString;
34095
34167
  platformId: z.ZodString;
@@ -34330,6 +34402,7 @@ export declare const chatContract: {
34330
34402
  accessToken?: string | undefined;
34331
34403
  channelSecret?: string | undefined;
34332
34404
  additionalCredentials?: any;
34405
+ lineRichMenuId?: string | null | undefined;
34333
34406
  };
34334
34407
  status: boolean;
34335
34408
  createdAt: Date;
@@ -34401,6 +34474,7 @@ export declare const chatContract: {
34401
34474
  accessToken?: string | undefined;
34402
34475
  channelSecret?: string | undefined;
34403
34476
  additionalCredentials?: any;
34477
+ lineRichMenuId?: string | null | undefined;
34404
34478
  };
34405
34479
  status: boolean;
34406
34480
  createdAt: Date;
@@ -34919,6 +34993,7 @@ export declare const chatContract: {
34919
34993
  accessToken?: string | undefined;
34920
34994
  channelSecret?: string | undefined;
34921
34995
  additionalCredentials?: any;
34996
+ lineRichMenuId?: string | null | undefined;
34922
34997
  };
34923
34998
  status: boolean;
34924
34999
  createdAt: Date;
@@ -35285,6 +35360,7 @@ export declare const chatContract: {
35285
35360
  accessToken?: string | undefined;
35286
35361
  channelSecret?: string | undefined;
35287
35362
  additionalCredentials?: any;
35363
+ lineRichMenuId?: string | null | undefined;
35288
35364
  };
35289
35365
  status: boolean;
35290
35366
  createdAt: Date;
@@ -35653,6 +35729,7 @@ export declare const chatContract: {
35653
35729
  accessToken?: string | undefined;
35654
35730
  channelSecret?: string | undefined;
35655
35731
  additionalCredentials?: any;
35732
+ lineRichMenuId?: string | null | undefined;
35656
35733
  };
35657
35734
  status: boolean;
35658
35735
  createdAt: Date;
@@ -36022,6 +36099,7 @@ export declare const chatContract: {
36022
36099
  accessToken?: string | undefined;
36023
36100
  channelSecret?: string | undefined;
36024
36101
  additionalCredentials?: any;
36102
+ lineRichMenuId?: string | null | undefined;
36025
36103
  };
36026
36104
  status: boolean;
36027
36105
  createdAt: Date;
@@ -37793,18 +37871,21 @@ export declare const chatContract: {
37793
37871
  accessToken: z.ZodOptional<z.ZodString>;
37794
37872
  channelSecret: z.ZodOptional<z.ZodString>;
37795
37873
  additionalCredentials: z.ZodOptional<z.ZodAny>;
37874
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
37796
37875
  }, "strip", z.ZodTypeAny, {
37797
37876
  id: string;
37798
37877
  name: string;
37799
37878
  accessToken?: string | undefined;
37800
37879
  channelSecret?: string | undefined;
37801
37880
  additionalCredentials?: any;
37881
+ lineRichMenuId?: string | null | undefined;
37802
37882
  }, {
37803
37883
  id: string;
37804
37884
  name: string;
37805
37885
  accessToken?: string | undefined;
37806
37886
  channelSecret?: string | undefined;
37807
37887
  additionalCredentials?: any;
37888
+ lineRichMenuId?: string | null | undefined;
37808
37889
  }>;
37809
37890
  brandName: z.ZodString;
37810
37891
  platformId: z.ZodString;
@@ -38045,6 +38126,7 @@ export declare const chatContract: {
38045
38126
  accessToken?: string | undefined;
38046
38127
  channelSecret?: string | undefined;
38047
38128
  additionalCredentials?: any;
38129
+ lineRichMenuId?: string | null | undefined;
38048
38130
  };
38049
38131
  status: boolean;
38050
38132
  createdAt: Date;
@@ -38116,6 +38198,7 @@ export declare const chatContract: {
38116
38198
  accessToken?: string | undefined;
38117
38199
  channelSecret?: string | undefined;
38118
38200
  additionalCredentials?: any;
38201
+ lineRichMenuId?: string | null | undefined;
38119
38202
  };
38120
38203
  status: boolean;
38121
38204
  createdAt: Date;
@@ -38634,6 +38717,7 @@ export declare const chatContract: {
38634
38717
  accessToken?: string | undefined;
38635
38718
  channelSecret?: string | undefined;
38636
38719
  additionalCredentials?: any;
38720
+ lineRichMenuId?: string | null | undefined;
38637
38721
  };
38638
38722
  status: boolean;
38639
38723
  createdAt: Date;
@@ -39000,6 +39084,7 @@ export declare const chatContract: {
39000
39084
  accessToken?: string | undefined;
39001
39085
  channelSecret?: string | undefined;
39002
39086
  additionalCredentials?: any;
39087
+ lineRichMenuId?: string | null | undefined;
39003
39088
  };
39004
39089
  status: boolean;
39005
39090
  createdAt: Date;
@@ -39411,6 +39496,7 @@ export declare const chatContract: {
39411
39496
  accessToken?: string | undefined;
39412
39497
  channelSecret?: string | undefined;
39413
39498
  additionalCredentials?: any;
39499
+ lineRichMenuId?: string | null | undefined;
39414
39500
  };
39415
39501
  status: boolean;
39416
39502
  createdAt: Date;
@@ -39794,6 +39880,7 @@ export declare const chatContract: {
39794
39880
  accessToken?: string | undefined;
39795
39881
  channelSecret?: string | undefined;
39796
39882
  additionalCredentials?: any;
39883
+ lineRichMenuId?: string | null | undefined;
39797
39884
  };
39798
39885
  status: boolean;
39799
39886
  createdAt: Date;
@@ -40179,6 +40266,7 @@ export declare const chatContract: {
40179
40266
  accessToken?: string | undefined;
40180
40267
  channelSecret?: string | undefined;
40181
40268
  additionalCredentials?: any;
40269
+ lineRichMenuId?: string | null | undefined;
40182
40270
  };
40183
40271
  status: boolean;
40184
40272
  createdAt: Date;
@@ -40565,6 +40653,7 @@ export declare const chatContract: {
40565
40653
  accessToken?: string | undefined;
40566
40654
  channelSecret?: string | undefined;
40567
40655
  additionalCredentials?: any;
40656
+ lineRichMenuId?: string | null | undefined;
40568
40657
  };
40569
40658
  status: boolean;
40570
40659
  createdAt: Date;
@@ -40996,18 +41085,21 @@ export declare const chatContract: {
40996
41085
  accessToken: z.ZodOptional<z.ZodString>;
40997
41086
  channelSecret: z.ZodOptional<z.ZodString>;
40998
41087
  additionalCredentials: z.ZodOptional<z.ZodAny>;
41088
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
40999
41089
  }, "strip", z.ZodTypeAny, {
41000
41090
  id: string;
41001
41091
  name: string;
41002
41092
  accessToken?: string | undefined;
41003
41093
  channelSecret?: string | undefined;
41004
41094
  additionalCredentials?: any;
41095
+ lineRichMenuId?: string | null | undefined;
41005
41096
  }, {
41006
41097
  id: string;
41007
41098
  name: string;
41008
41099
  accessToken?: string | undefined;
41009
41100
  channelSecret?: string | undefined;
41010
41101
  additionalCredentials?: any;
41102
+ lineRichMenuId?: string | null | undefined;
41011
41103
  }>;
41012
41104
  brandName: z.ZodString;
41013
41105
  platformId: z.ZodString;
@@ -41248,6 +41340,7 @@ export declare const chatContract: {
41248
41340
  accessToken?: string | undefined;
41249
41341
  channelSecret?: string | undefined;
41250
41342
  additionalCredentials?: any;
41343
+ lineRichMenuId?: string | null | undefined;
41251
41344
  };
41252
41345
  status: boolean;
41253
41346
  createdAt: Date;
@@ -41319,6 +41412,7 @@ export declare const chatContract: {
41319
41412
  accessToken?: string | undefined;
41320
41413
  channelSecret?: string | undefined;
41321
41414
  additionalCredentials?: any;
41415
+ lineRichMenuId?: string | null | undefined;
41322
41416
  };
41323
41417
  status: boolean;
41324
41418
  createdAt: Date;
@@ -43881,6 +43975,7 @@ export declare const chatContract: {
43881
43975
  accessToken?: string | undefined;
43882
43976
  channelSecret?: string | undefined;
43883
43977
  additionalCredentials?: any;
43978
+ lineRichMenuId?: string | null | undefined;
43884
43979
  };
43885
43980
  status: boolean;
43886
43981
  createdAt: Date;
@@ -44345,6 +44440,7 @@ export declare const chatContract: {
44345
44440
  accessToken?: string | undefined;
44346
44441
  channelSecret?: string | undefined;
44347
44442
  additionalCredentials?: any;
44443
+ lineRichMenuId?: string | null | undefined;
44348
44444
  };
44349
44445
  status: boolean;
44350
44446
  createdAt: Date;
@@ -44811,6 +44907,7 @@ export declare const chatContract: {
44811
44907
  accessToken?: string | undefined;
44812
44908
  channelSecret?: string | undefined;
44813
44909
  additionalCredentials?: any;
44910
+ lineRichMenuId?: string | null | undefined;
44814
44911
  };
44815
44912
  status: boolean;
44816
44913
  createdAt: Date;
@@ -45278,6 +45375,7 @@ export declare const chatContract: {
45278
45375
  accessToken?: string | undefined;
45279
45376
  channelSecret?: string | undefined;
45280
45377
  additionalCredentials?: any;
45378
+ lineRichMenuId?: string | null | undefined;
45281
45379
  };
45282
45380
  status: boolean;
45283
45381
  createdAt: Date;
@@ -45781,18 +45879,21 @@ export declare const chatContract: {
45781
45879
  accessToken: z.ZodOptional<z.ZodString>;
45782
45880
  channelSecret: z.ZodOptional<z.ZodString>;
45783
45881
  additionalCredentials: z.ZodOptional<z.ZodAny>;
45882
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
45784
45883
  }, "strip", z.ZodTypeAny, {
45785
45884
  id: string;
45786
45885
  name: string;
45787
45886
  accessToken?: string | undefined;
45788
45887
  channelSecret?: string | undefined;
45789
45888
  additionalCredentials?: any;
45889
+ lineRichMenuId?: string | null | undefined;
45790
45890
  }, {
45791
45891
  id: string;
45792
45892
  name: string;
45793
45893
  accessToken?: string | undefined;
45794
45894
  channelSecret?: string | undefined;
45795
45895
  additionalCredentials?: any;
45896
+ lineRichMenuId?: string | null | undefined;
45796
45897
  }>;
45797
45898
  brandName: z.ZodString;
45798
45899
  platformId: z.ZodString;
@@ -46033,6 +46134,7 @@ export declare const chatContract: {
46033
46134
  accessToken?: string | undefined;
46034
46135
  channelSecret?: string | undefined;
46035
46136
  additionalCredentials?: any;
46137
+ lineRichMenuId?: string | null | undefined;
46036
46138
  };
46037
46139
  status: boolean;
46038
46140
  createdAt: Date;
@@ -46104,6 +46206,7 @@ export declare const chatContract: {
46104
46206
  accessToken?: string | undefined;
46105
46207
  channelSecret?: string | undefined;
46106
46208
  additionalCredentials?: any;
46209
+ lineRichMenuId?: string | null | undefined;
46107
46210
  };
46108
46211
  status: boolean;
46109
46212
  createdAt: Date;
@@ -47979,6 +48082,7 @@ export declare const chatContract: {
47979
48082
  accessToken?: string | undefined;
47980
48083
  channelSecret?: string | undefined;
47981
48084
  additionalCredentials?: any;
48085
+ lineRichMenuId?: string | null | undefined;
47982
48086
  };
47983
48087
  status: boolean;
47984
48088
  createdAt: Date;
@@ -48346,6 +48450,7 @@ export declare const chatContract: {
48346
48450
  accessToken?: string | undefined;
48347
48451
  channelSecret?: string | undefined;
48348
48452
  additionalCredentials?: any;
48453
+ lineRichMenuId?: string | null | undefined;
48349
48454
  };
48350
48455
  status: boolean;
48351
48456
  createdAt: Date;
@@ -48715,6 +48820,7 @@ export declare const chatContract: {
48715
48820
  accessToken?: string | undefined;
48716
48821
  channelSecret?: string | undefined;
48717
48822
  additionalCredentials?: any;
48823
+ lineRichMenuId?: string | null | undefined;
48718
48824
  };
48719
48825
  status: boolean;
48720
48826
  createdAt: Date;
@@ -49085,6 +49191,7 @@ export declare const chatContract: {
49085
49191
  accessToken?: string | undefined;
49086
49192
  channelSecret?: string | undefined;
49087
49193
  additionalCredentials?: any;
49194
+ lineRichMenuId?: string | null | undefined;
49088
49195
  };
49089
49196
  status: boolean;
49090
49197
  createdAt: Date;
@@ -50858,18 +50965,21 @@ export declare const chatContract: {
50858
50965
  accessToken: z.ZodOptional<z.ZodString>;
50859
50966
  channelSecret: z.ZodOptional<z.ZodString>;
50860
50967
  additionalCredentials: z.ZodOptional<z.ZodAny>;
50968
+ lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
50861
50969
  }, "strip", z.ZodTypeAny, {
50862
50970
  id: string;
50863
50971
  name: string;
50864
50972
  accessToken?: string | undefined;
50865
50973
  channelSecret?: string | undefined;
50866
50974
  additionalCredentials?: any;
50975
+ lineRichMenuId?: string | null | undefined;
50867
50976
  }, {
50868
50977
  id: string;
50869
50978
  name: string;
50870
50979
  accessToken?: string | undefined;
50871
50980
  channelSecret?: string | undefined;
50872
50981
  additionalCredentials?: any;
50982
+ lineRichMenuId?: string | null | undefined;
50873
50983
  }>;
50874
50984
  brandName: z.ZodString;
50875
50985
  platformId: z.ZodString;
@@ -51110,6 +51220,7 @@ export declare const chatContract: {
51110
51220
  accessToken?: string | undefined;
51111
51221
  channelSecret?: string | undefined;
51112
51222
  additionalCredentials?: any;
51223
+ lineRichMenuId?: string | null | undefined;
51113
51224
  };
51114
51225
  status: boolean;
51115
51226
  createdAt: Date;
@@ -51181,6 +51292,7 @@ export declare const chatContract: {
51181
51292
  accessToken?: string | undefined;
51182
51293
  channelSecret?: string | undefined;
51183
51294
  additionalCredentials?: any;
51295
+ lineRichMenuId?: string | null | undefined;
51184
51296
  };
51185
51297
  status: boolean;
51186
51298
  createdAt: Date;
@@ -51699,6 +51811,7 @@ export declare const chatContract: {
51699
51811
  accessToken?: string | undefined;
51700
51812
  channelSecret?: string | undefined;
51701
51813
  additionalCredentials?: any;
51814
+ lineRichMenuId?: string | null | undefined;
51702
51815
  };
51703
51816
  status: boolean;
51704
51817
  createdAt: Date;
@@ -52065,6 +52178,7 @@ export declare const chatContract: {
52065
52178
  accessToken?: string | undefined;
52066
52179
  channelSecret?: string | undefined;
52067
52180
  additionalCredentials?: any;
52181
+ lineRichMenuId?: string | null | undefined;
52068
52182
  };
52069
52183
  status: boolean;
52070
52184
  createdAt: Date;
@@ -52433,6 +52547,7 @@ export declare const chatContract: {
52433
52547
  accessToken?: string | undefined;
52434
52548
  channelSecret?: string | undefined;
52435
52549
  additionalCredentials?: any;
52550
+ lineRichMenuId?: string | null | undefined;
52436
52551
  };
52437
52552
  status: boolean;
52438
52553
  createdAt: Date;
@@ -52805,6 +52920,7 @@ export declare const chatContract: {
52805
52920
  accessToken?: string | undefined;
52806
52921
  channelSecret?: string | undefined;
52807
52922
  additionalCredentials?: any;
52923
+ lineRichMenuId?: string | null | undefined;
52808
52924
  };
52809
52925
  status: boolean;
52810
52926
  createdAt: Date;