@kl1/contracts 1.0.83 → 1.0.85

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.
@@ -13488,7 +13488,7 @@ export declare const apiContract: {
13488
13488
  agentIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
13489
13489
  direction: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"inbound">, import("zod").ZodLiteral<"outbound">]>, "many">>;
13490
13490
  disposition: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
13491
- sentimentScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"positive">, import("zod").ZodLiteral<"negative">]>, "many">>;
13491
+ sentimentScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"positive">, import("zod").ZodLiteral<"neutral">, import("zod").ZodLiteral<"negative">]>, "many">>;
13492
13492
  csatScore: import("zod").ZodOptional<import("zod").ZodString>;
13493
13493
  sla: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"meet">, import("zod").ZodLiteral<"unmeet">]>, "many">>;
13494
13494
  tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
@@ -13525,7 +13525,7 @@ export declare const apiContract: {
13525
13525
  agentIds?: string[] | undefined;
13526
13526
  direction?: ("inbound" | "outbound")[] | undefined;
13527
13527
  disposition?: string[] | undefined;
13528
- sentimentScore?: ("positive" | "negative")[] | undefined;
13528
+ sentimentScore?: ("positive" | "neutral" | "negative")[] | undefined;
13529
13529
  csatScore?: string | undefined;
13530
13530
  sla?: ("meet" | "unmeet")[] | undefined;
13531
13531
  tags?: string[] | undefined;
@@ -13554,7 +13554,7 @@ export declare const apiContract: {
13554
13554
  agentIds?: string[] | undefined;
13555
13555
  direction?: ("inbound" | "outbound")[] | undefined;
13556
13556
  disposition?: string[] | undefined;
13557
- sentimentScore?: ("positive" | "negative")[] | undefined;
13557
+ sentimentScore?: ("positive" | "neutral" | "negative")[] | undefined;
13558
13558
  csatScore?: string | undefined;
13559
13559
  sla?: ("meet" | "unmeet")[] | undefined;
13560
13560
  tags?: string[] | undefined;
@@ -21939,7 +21939,7 @@ export declare const apiContract: {
21939
21939
  agentIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
21940
21940
  direction: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"inbound">, import("zod").ZodLiteral<"outbound">]>, "many">>;
21941
21941
  disposition: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
21942
- sentimentScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"positive">, import("zod").ZodLiteral<"negative">]>, "many">>;
21942
+ sentimentScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"positive">, import("zod").ZodLiteral<"neutral">, import("zod").ZodLiteral<"negative">]>, "many">>;
21943
21943
  csatScore: import("zod").ZodOptional<import("zod").ZodString>;
21944
21944
  sla: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"meet">, import("zod").ZodLiteral<"unmeet">]>, "many">>;
21945
21945
  tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
@@ -21976,7 +21976,7 @@ export declare const apiContract: {
21976
21976
  agentIds?: string[] | undefined;
21977
21977
  direction?: ("inbound" | "outbound")[] | undefined;
21978
21978
  disposition?: string[] | undefined;
21979
- sentimentScore?: ("positive" | "negative")[] | undefined;
21979
+ sentimentScore?: ("positive" | "neutral" | "negative")[] | undefined;
21980
21980
  csatScore?: string | undefined;
21981
21981
  sla?: ("meet" | "unmeet")[] | undefined;
21982
21982
  tags?: string[] | undefined;
@@ -22005,7 +22005,7 @@ export declare const apiContract: {
22005
22005
  agentIds?: string[] | undefined;
22006
22006
  direction?: ("inbound" | "outbound")[] | undefined;
22007
22007
  disposition?: string[] | undefined;
22008
- sentimentScore?: ("positive" | "negative")[] | undefined;
22008
+ sentimentScore?: ("positive" | "neutral" | "negative")[] | undefined;
22009
22009
  csatScore?: string | undefined;
22010
22010
  sla?: ("meet" | "unmeet")[] | undefined;
22011
22011
  tags?: string[] | undefined;
@@ -81679,8 +81679,8 @@ export declare const platformContract: {
81679
81679
  line: {
81680
81680
  sendSticker: {
81681
81681
  body: import("zod").ZodObject<{
81682
- packageId: import("zod").ZodString;
81683
- stickerId: import("zod").ZodString;
81682
+ packageId: import("zod").ZodNumber;
81683
+ stickerId: import("zod").ZodNumber;
81684
81684
  room: import("zod").ZodObject<{
81685
81685
  id: import("zod").ZodString;
81686
81686
  lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
@@ -81783,6 +81783,7 @@ export declare const platformContract: {
81783
81783
  phone: string | null;
81784
81784
  }>>;
81785
81785
  channel: import("zod").ZodObject<{
81786
+ id: import("zod").ZodString;
81786
81787
  name: import("zod").ZodString;
81787
81788
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
81788
81789
  metadata: import("zod").ZodObject<{
@@ -81830,6 +81831,7 @@ export declare const platformContract: {
81830
81831
  }>>;
81831
81832
  }, "strip", import("zod").ZodTypeAny, {
81832
81833
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81834
+ id: string;
81833
81835
  name: string;
81834
81836
  metadata: {
81835
81837
  id: string;
@@ -81852,6 +81854,7 @@ export declare const platformContract: {
81852
81854
  } | undefined;
81853
81855
  }, {
81854
81856
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81857
+ id: string;
81855
81858
  name: string;
81856
81859
  metadata: {
81857
81860
  id: string;
@@ -81877,6 +81880,7 @@ export declare const platformContract: {
81877
81880
  id: string;
81878
81881
  channel: {
81879
81882
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81883
+ id: string;
81880
81884
  name: string;
81881
81885
  metadata: {
81882
81886
  id: string;
@@ -81931,6 +81935,7 @@ export declare const platformContract: {
81931
81935
  id: string;
81932
81936
  channel: {
81933
81937
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81938
+ id: string;
81934
81939
  name: string;
81935
81940
  metadata: {
81936
81941
  id: string;
@@ -82113,6 +82118,7 @@ export declare const platformContract: {
82113
82118
  id: string;
82114
82119
  channel: {
82115
82120
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82121
+ id: string;
82116
82122
  name: string;
82117
82123
  metadata: {
82118
82124
  id: string;
@@ -82164,8 +82170,8 @@ export declare const platformContract: {
82164
82170
  lastMessage?: string | undefined;
82165
82171
  handleTime?: number | undefined;
82166
82172
  };
82167
- packageId: string;
82168
- stickerId: string;
82173
+ packageId: number;
82174
+ stickerId: number;
82169
82175
  }, {
82170
82176
  message: {
82171
82177
  type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
@@ -82198,6 +82204,7 @@ export declare const platformContract: {
82198
82204
  id: string;
82199
82205
  channel: {
82200
82206
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82207
+ id: string;
82201
82208
  name: string;
82202
82209
  metadata: {
82203
82210
  id: string;
@@ -82249,8 +82256,8 @@ export declare const platformContract: {
82249
82256
  lastMessage?: string | undefined;
82250
82257
  handleTime?: number | undefined;
82251
82258
  };
82252
- packageId: string;
82253
- stickerId: string;
82259
+ packageId: number;
82260
+ stickerId: number;
82254
82261
  }>;
82255
82262
  summary: "Send sticker to LINE";
82256
82263
  method: "POST";
@@ -82336,13 +82343,152 @@ export declare const platformContract: {
82336
82343
  responses: {
82337
82344
  200: import("zod").ZodObject<{
82338
82345
  requestId: import("zod").ZodString;
82339
- data: import("zod").ZodAny;
82346
+ data: import("zod").ZodObject<{
82347
+ id: import("zod").ZodString;
82348
+ name: import("zod").ZodString;
82349
+ type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
82350
+ metadata: import("zod").ZodObject<{
82351
+ id: import("zod").ZodString;
82352
+ name: import("zod").ZodString;
82353
+ accessToken: import("zod").ZodString;
82354
+ channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
82355
+ additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
82356
+ }, "strip", import("zod").ZodTypeAny, {
82357
+ id: string;
82358
+ name: string;
82359
+ accessToken: string;
82360
+ channelSecret?: string | undefined;
82361
+ additionalCredentials?: any;
82362
+ }, {
82363
+ id: string;
82364
+ name: string;
82365
+ accessToken: string;
82366
+ channelSecret?: string | undefined;
82367
+ additionalCredentials?: any;
82368
+ }>;
82369
+ platformId: import("zod").ZodString;
82370
+ brandName: import("zod").ZodString;
82371
+ status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
82372
+ connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
82373
+ connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
82374
+ actor: import("zod").ZodOptional<import("zod").ZodObject<{
82375
+ id: import("zod").ZodString;
82376
+ name: import("zod").ZodString;
82377
+ email: import("zod").ZodString;
82378
+ address: import("zod").ZodNullable<import("zod").ZodString>;
82379
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
82380
+ }, "strip", import("zod").ZodTypeAny, {
82381
+ id: string;
82382
+ address: string | null;
82383
+ name: string;
82384
+ email: string;
82385
+ phone: string | null;
82386
+ }, {
82387
+ id: string;
82388
+ address: string | null;
82389
+ name: string;
82390
+ email: string;
82391
+ phone: string | null;
82392
+ }>>;
82393
+ }, "strip", import("zod").ZodTypeAny, {
82394
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82395
+ id: string;
82396
+ name: string;
82397
+ metadata: {
82398
+ id: string;
82399
+ name: string;
82400
+ accessToken: string;
82401
+ channelSecret?: string | undefined;
82402
+ additionalCredentials?: any;
82403
+ };
82404
+ status: boolean;
82405
+ brandName: string;
82406
+ platformId: string;
82407
+ connectedUserName?: string | null | undefined;
82408
+ connectedUserId?: string | null | undefined;
82409
+ actor?: {
82410
+ id: string;
82411
+ address: string | null;
82412
+ name: string;
82413
+ email: string;
82414
+ phone: string | null;
82415
+ } | undefined;
82416
+ }, {
82417
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82418
+ id: string;
82419
+ name: string;
82420
+ metadata: {
82421
+ id: string;
82422
+ name: string;
82423
+ accessToken: string;
82424
+ channelSecret?: string | undefined;
82425
+ additionalCredentials?: any;
82426
+ };
82427
+ status: boolean;
82428
+ brandName: string;
82429
+ platformId: string;
82430
+ connectedUserName?: string | null | undefined;
82431
+ connectedUserId?: string | null | undefined;
82432
+ actor?: {
82433
+ id: string;
82434
+ address: string | null;
82435
+ name: string;
82436
+ email: string;
82437
+ phone: string | null;
82438
+ } | undefined;
82439
+ }>;
82340
82440
  }, "strip", import("zod").ZodTypeAny, {
82441
+ data: {
82442
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82443
+ id: string;
82444
+ name: string;
82445
+ metadata: {
82446
+ id: string;
82447
+ name: string;
82448
+ accessToken: string;
82449
+ channelSecret?: string | undefined;
82450
+ additionalCredentials?: any;
82451
+ };
82452
+ status: boolean;
82453
+ brandName: string;
82454
+ platformId: string;
82455
+ connectedUserName?: string | null | undefined;
82456
+ connectedUserId?: string | null | undefined;
82457
+ actor?: {
82458
+ id: string;
82459
+ address: string | null;
82460
+ name: string;
82461
+ email: string;
82462
+ phone: string | null;
82463
+ } | undefined;
82464
+ };
82341
82465
  requestId: string;
82342
- data?: any;
82343
82466
  }, {
82467
+ data: {
82468
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82469
+ id: string;
82470
+ name: string;
82471
+ metadata: {
82472
+ id: string;
82473
+ name: string;
82474
+ accessToken: string;
82475
+ channelSecret?: string | undefined;
82476
+ additionalCredentials?: any;
82477
+ };
82478
+ status: boolean;
82479
+ brandName: string;
82480
+ platformId: string;
82481
+ connectedUserName?: string | null | undefined;
82482
+ connectedUserId?: string | null | undefined;
82483
+ actor?: {
82484
+ id: string;
82485
+ address: string | null;
82486
+ name: string;
82487
+ email: string;
82488
+ phone: string | null;
82489
+ } | undefined;
82490
+ };
82344
82491
  requestId: string;
82345
- data?: any;
82346
82492
  }>;
82347
82493
  500: import("zod").ZodObject<{
82348
82494
  message: import("zod").ZodString;
@@ -82354,6 +82500,16 @@ export declare const platformContract: {
82354
82500
  message: string;
82355
82501
  error?: any;
82356
82502
  }>;
82503
+ 400: import("zod").ZodObject<{
82504
+ message: import("zod").ZodString;
82505
+ error: import("zod").ZodAny;
82506
+ }, "strip", import("zod").ZodTypeAny, {
82507
+ message: string;
82508
+ error?: any;
82509
+ }, {
82510
+ message: string;
82511
+ error?: any;
82512
+ }>;
82357
82513
  };
82358
82514
  path: "/connect";
82359
82515
  };
@@ -82461,6 +82617,7 @@ export declare const platformContract: {
82461
82617
  phone: string | null;
82462
82618
  }>>;
82463
82619
  channel: import("zod").ZodObject<{
82620
+ id: import("zod").ZodString;
82464
82621
  name: import("zod").ZodString;
82465
82622
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
82466
82623
  metadata: import("zod").ZodObject<{
@@ -82508,6 +82665,7 @@ export declare const platformContract: {
82508
82665
  }>>;
82509
82666
  }, "strip", import("zod").ZodTypeAny, {
82510
82667
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82668
+ id: string;
82511
82669
  name: string;
82512
82670
  metadata: {
82513
82671
  id: string;
@@ -82530,6 +82688,7 @@ export declare const platformContract: {
82530
82688
  } | undefined;
82531
82689
  }, {
82532
82690
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82691
+ id: string;
82533
82692
  name: string;
82534
82693
  metadata: {
82535
82694
  id: string;
@@ -82555,6 +82714,7 @@ export declare const platformContract: {
82555
82714
  id: string;
82556
82715
  channel: {
82557
82716
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82717
+ id: string;
82558
82718
  name: string;
82559
82719
  metadata: {
82560
82720
  id: string;
@@ -82609,6 +82769,7 @@ export declare const platformContract: {
82609
82769
  id: string;
82610
82770
  channel: {
82611
82771
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82772
+ id: string;
82612
82773
  name: string;
82613
82774
  metadata: {
82614
82775
  id: string;
@@ -82791,6 +82952,7 @@ export declare const platformContract: {
82791
82952
  id: string;
82792
82953
  channel: {
82793
82954
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82955
+ id: string;
82794
82956
  name: string;
82795
82957
  metadata: {
82796
82958
  id: string;
@@ -82874,6 +83036,7 @@ export declare const platformContract: {
82874
83036
  id: string;
82875
83037
  channel: {
82876
83038
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
83039
+ id: string;
82877
83040
  name: string;
82878
83041
  metadata: {
82879
83042
  id: string;
@@ -89647,6 +89810,7 @@ export declare const platformContract: {
89647
89810
  };
89648
89811
  disconnect: {
89649
89812
  body: import("zod").ZodObject<{
89813
+ id: import("zod").ZodOptional<import("zod").ZodString>;
89650
89814
  name: import("zod").ZodOptional<import("zod").ZodString>;
89651
89815
  type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
89652
89816
  metadata: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -89693,6 +89857,7 @@ export declare const platformContract: {
89693
89857
  phone: string | null;
89694
89858
  }>>>;
89695
89859
  }, "strip", import("zod").ZodTypeAny, {
89860
+ id?: string | undefined;
89696
89861
  name?: string | undefined;
89697
89862
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
89698
89863
  metadata?: {
@@ -89715,6 +89880,7 @@ export declare const platformContract: {
89715
89880
  phone: string | null;
89716
89881
  } | undefined;
89717
89882
  }, {
89883
+ id?: string | undefined;
89718
89884
  name?: string | undefined;
89719
89885
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
89720
89886
  metadata?: {
@@ -89742,6 +89908,7 @@ export declare const platformContract: {
89742
89908
  200: import("zod").ZodObject<{
89743
89909
  requestId: import("zod").ZodString;
89744
89910
  data: import("zod").ZodObject<{
89911
+ id: import("zod").ZodString;
89745
89912
  name: import("zod").ZodString;
89746
89913
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
89747
89914
  metadata: import("zod").ZodObject<{
@@ -89789,6 +89956,7 @@ export declare const platformContract: {
89789
89956
  }>>;
89790
89957
  }, "strip", import("zod").ZodTypeAny, {
89791
89958
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
89959
+ id: string;
89792
89960
  name: string;
89793
89961
  metadata: {
89794
89962
  id: string;
@@ -89811,6 +89979,7 @@ export declare const platformContract: {
89811
89979
  } | undefined;
89812
89980
  }, {
89813
89981
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
89982
+ id: string;
89814
89983
  name: string;
89815
89984
  metadata: {
89816
89985
  id: string;
@@ -89835,6 +90004,7 @@ export declare const platformContract: {
89835
90004
  }, "strip", import("zod").ZodTypeAny, {
89836
90005
  data: {
89837
90006
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90007
+ id: string;
89838
90008
  name: string;
89839
90009
  metadata: {
89840
90010
  id: string;
@@ -89860,6 +90030,7 @@ export declare const platformContract: {
89860
90030
  }, {
89861
90031
  data: {
89862
90032
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90033
+ id: string;
89863
90034
  name: string;
89864
90035
  metadata: {
89865
90036
  id: string;
@@ -89920,6 +90091,7 @@ export declare const platformContract: {
89920
90091
  200: import("zod").ZodObject<{
89921
90092
  requestId: import("zod").ZodString;
89922
90093
  data: import("zod").ZodObject<{
90094
+ id: import("zod").ZodString;
89923
90095
  name: import("zod").ZodString;
89924
90096
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
89925
90097
  metadata: import("zod").ZodObject<{
@@ -89967,6 +90139,7 @@ export declare const platformContract: {
89967
90139
  }>>;
89968
90140
  }, "strip", import("zod").ZodTypeAny, {
89969
90141
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90142
+ id: string;
89970
90143
  name: string;
89971
90144
  metadata: {
89972
90145
  id: string;
@@ -89989,6 +90162,7 @@ export declare const platformContract: {
89989
90162
  } | undefined;
89990
90163
  }, {
89991
90164
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90165
+ id: string;
89992
90166
  name: string;
89993
90167
  metadata: {
89994
90168
  id: string;
@@ -90013,6 +90187,7 @@ export declare const platformContract: {
90013
90187
  }, "strip", import("zod").ZodTypeAny, {
90014
90188
  data: {
90015
90189
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90190
+ id: string;
90016
90191
  name: string;
90017
90192
  metadata: {
90018
90193
  id: string;
@@ -90038,6 +90213,7 @@ export declare const platformContract: {
90038
90213
  }, {
90039
90214
  data: {
90040
90215
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90216
+ id: string;
90041
90217
  name: string;
90042
90218
  metadata: {
90043
90219
  id: string;
@@ -90098,6 +90274,7 @@ export declare const platformContract: {
90098
90274
  200: import("zod").ZodObject<{
90099
90275
  requestId: import("zod").ZodString;
90100
90276
  data: import("zod").ZodObject<{
90277
+ id: import("zod").ZodString;
90101
90278
  name: import("zod").ZodString;
90102
90279
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
90103
90280
  metadata: import("zod").ZodObject<{
@@ -90145,6 +90322,7 @@ export declare const platformContract: {
90145
90322
  }>>;
90146
90323
  }, "strip", import("zod").ZodTypeAny, {
90147
90324
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90325
+ id: string;
90148
90326
  name: string;
90149
90327
  metadata: {
90150
90328
  id: string;
@@ -90167,6 +90345,7 @@ export declare const platformContract: {
90167
90345
  } | undefined;
90168
90346
  }, {
90169
90347
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90348
+ id: string;
90170
90349
  name: string;
90171
90350
  metadata: {
90172
90351
  id: string;
@@ -90191,6 +90370,7 @@ export declare const platformContract: {
90191
90370
  }, "strip", import("zod").ZodTypeAny, {
90192
90371
  data: {
90193
90372
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90373
+ id: string;
90194
90374
  name: string;
90195
90375
  metadata: {
90196
90376
  id: string;
@@ -90216,6 +90396,7 @@ export declare const platformContract: {
90216
90396
  }, {
90217
90397
  data: {
90218
90398
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90399
+ id: string;
90219
90400
  name: string;
90220
90401
  metadata: {
90221
90402
  id: string;
@@ -90368,6 +90549,7 @@ export declare const platformContract: {
90368
90549
  phone: string | null;
90369
90550
  }>>;
90370
90551
  channel: import("zod").ZodObject<{
90552
+ id: import("zod").ZodString;
90371
90553
  name: import("zod").ZodString;
90372
90554
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
90373
90555
  metadata: import("zod").ZodObject<{
@@ -90415,6 +90597,7 @@ export declare const platformContract: {
90415
90597
  }>>;
90416
90598
  }, "strip", import("zod").ZodTypeAny, {
90417
90599
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90600
+ id: string;
90418
90601
  name: string;
90419
90602
  metadata: {
90420
90603
  id: string;
@@ -90437,6 +90620,7 @@ export declare const platformContract: {
90437
90620
  } | undefined;
90438
90621
  }, {
90439
90622
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90623
+ id: string;
90440
90624
  name: string;
90441
90625
  metadata: {
90442
90626
  id: string;
@@ -90462,6 +90646,7 @@ export declare const platformContract: {
90462
90646
  id: string;
90463
90647
  channel: {
90464
90648
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90649
+ id: string;
90465
90650
  name: string;
90466
90651
  metadata: {
90467
90652
  id: string;
@@ -90516,6 +90701,7 @@ export declare const platformContract: {
90516
90701
  id: string;
90517
90702
  channel: {
90518
90703
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90704
+ id: string;
90519
90705
  name: string;
90520
90706
  metadata: {
90521
90707
  id: string;
@@ -90698,6 +90884,7 @@ export declare const platformContract: {
90698
90884
  id: string;
90699
90885
  channel: {
90700
90886
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90887
+ id: string;
90701
90888
  name: string;
90702
90889
  metadata: {
90703
90890
  id: string;
@@ -90781,6 +90968,7 @@ export declare const platformContract: {
90781
90968
  id: string;
90782
90969
  channel: {
90783
90970
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90971
+ id: string;
90784
90972
  name: string;
90785
90973
  metadata: {
90786
90974
  id: string;
@@ -97554,6 +97742,7 @@ export declare const platformContract: {
97554
97742
  };
97555
97743
  connectToService: {
97556
97744
  body: import("zod").ZodObject<{
97745
+ id: import("zod").ZodOptional<import("zod").ZodString>;
97557
97746
  name: import("zod").ZodOptional<import("zod").ZodString>;
97558
97747
  type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
97559
97748
  metadata: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -97600,6 +97789,7 @@ export declare const platformContract: {
97600
97789
  phone: string | null;
97601
97790
  }>>>;
97602
97791
  }, "strip", import("zod").ZodTypeAny, {
97792
+ id?: string | undefined;
97603
97793
  name?: string | undefined;
97604
97794
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
97605
97795
  metadata?: {
@@ -97622,6 +97812,7 @@ export declare const platformContract: {
97622
97812
  phone: string | null;
97623
97813
  } | undefined;
97624
97814
  }, {
97815
+ id?: string | undefined;
97625
97816
  name?: string | undefined;
97626
97817
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
97627
97818
  metadata?: {
@@ -97649,6 +97840,7 @@ export declare const platformContract: {
97649
97840
  200: import("zod").ZodObject<{
97650
97841
  requestId: import("zod").ZodString;
97651
97842
  data: import("zod").ZodObject<{
97843
+ id: import("zod").ZodString;
97652
97844
  name: import("zod").ZodString;
97653
97845
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
97654
97846
  metadata: import("zod").ZodObject<{
@@ -97696,6 +97888,7 @@ export declare const platformContract: {
97696
97888
  }>>;
97697
97889
  }, "strip", import("zod").ZodTypeAny, {
97698
97890
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
97891
+ id: string;
97699
97892
  name: string;
97700
97893
  metadata: {
97701
97894
  id: string;
@@ -97718,6 +97911,7 @@ export declare const platformContract: {
97718
97911
  } | undefined;
97719
97912
  }, {
97720
97913
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
97914
+ id: string;
97721
97915
  name: string;
97722
97916
  metadata: {
97723
97917
  id: string;
@@ -97742,6 +97936,7 @@ export declare const platformContract: {
97742
97936
  }, "strip", import("zod").ZodTypeAny, {
97743
97937
  data: {
97744
97938
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
97939
+ id: string;
97745
97940
  name: string;
97746
97941
  metadata: {
97747
97942
  id: string;
@@ -97767,6 +97962,7 @@ export declare const platformContract: {
97767
97962
  }, {
97768
97963
  data: {
97769
97964
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
97965
+ id: string;
97770
97966
  name: string;
97771
97967
  metadata: {
97772
97968
  id: string;
@@ -97815,6 +98011,7 @@ export declare const platformContract: {
97815
98011
  };
97816
98012
  disconnectToService: {
97817
98013
  body: import("zod").ZodObject<{
98014
+ id: import("zod").ZodOptional<import("zod").ZodString>;
97818
98015
  name: import("zod").ZodOptional<import("zod").ZodString>;
97819
98016
  type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
97820
98017
  metadata: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -97861,6 +98058,7 @@ export declare const platformContract: {
97861
98058
  phone: string | null;
97862
98059
  }>>>;
97863
98060
  }, "strip", import("zod").ZodTypeAny, {
98061
+ id?: string | undefined;
97864
98062
  name?: string | undefined;
97865
98063
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
97866
98064
  metadata?: {
@@ -97883,6 +98081,7 @@ export declare const platformContract: {
97883
98081
  phone: string | null;
97884
98082
  } | undefined;
97885
98083
  }, {
98084
+ id?: string | undefined;
97886
98085
  name?: string | undefined;
97887
98086
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
97888
98087
  metadata?: {
@@ -97910,6 +98109,7 @@ export declare const platformContract: {
97910
98109
  200: import("zod").ZodObject<{
97911
98110
  requestId: import("zod").ZodString;
97912
98111
  data: import("zod").ZodObject<{
98112
+ id: import("zod").ZodString;
97913
98113
  name: import("zod").ZodString;
97914
98114
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
97915
98115
  metadata: import("zod").ZodObject<{
@@ -97957,6 +98157,7 @@ export declare const platformContract: {
97957
98157
  }>>;
97958
98158
  }, "strip", import("zod").ZodTypeAny, {
97959
98159
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98160
+ id: string;
97960
98161
  name: string;
97961
98162
  metadata: {
97962
98163
  id: string;
@@ -97979,6 +98180,7 @@ export declare const platformContract: {
97979
98180
  } | undefined;
97980
98181
  }, {
97981
98182
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98183
+ id: string;
97982
98184
  name: string;
97983
98185
  metadata: {
97984
98186
  id: string;
@@ -98003,6 +98205,7 @@ export declare const platformContract: {
98003
98205
  }, "strip", import("zod").ZodTypeAny, {
98004
98206
  data: {
98005
98207
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98208
+ id: string;
98006
98209
  name: string;
98007
98210
  metadata: {
98008
98211
  id: string;
@@ -98028,6 +98231,7 @@ export declare const platformContract: {
98028
98231
  }, {
98029
98232
  data: {
98030
98233
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98234
+ id: string;
98031
98235
  name: string;
98032
98236
  metadata: {
98033
98237
  id: string;
@@ -98088,6 +98292,7 @@ export declare const platformContract: {
98088
98292
  200: import("zod").ZodObject<{
98089
98293
  requestId: import("zod").ZodString;
98090
98294
  data: import("zod").ZodObject<{
98295
+ id: import("zod").ZodString;
98091
98296
  name: import("zod").ZodString;
98092
98297
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
98093
98298
  metadata: import("zod").ZodObject<{
@@ -98135,6 +98340,7 @@ export declare const platformContract: {
98135
98340
  }>>;
98136
98341
  }, "strip", import("zod").ZodTypeAny, {
98137
98342
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98343
+ id: string;
98138
98344
  name: string;
98139
98345
  metadata: {
98140
98346
  id: string;
@@ -98157,6 +98363,7 @@ export declare const platformContract: {
98157
98363
  } | undefined;
98158
98364
  }, {
98159
98365
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98366
+ id: string;
98160
98367
  name: string;
98161
98368
  metadata: {
98162
98369
  id: string;
@@ -98181,6 +98388,7 @@ export declare const platformContract: {
98181
98388
  }, "strip", import("zod").ZodTypeAny, {
98182
98389
  data: {
98183
98390
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98391
+ id: string;
98184
98392
  name: string;
98185
98393
  metadata: {
98186
98394
  id: string;
@@ -98206,6 +98414,7 @@ export declare const platformContract: {
98206
98414
  }, {
98207
98415
  data: {
98208
98416
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98417
+ id: string;
98209
98418
  name: string;
98210
98419
  metadata: {
98211
98420
  id: string;
@@ -98266,6 +98475,7 @@ export declare const platformContract: {
98266
98475
  200: import("zod").ZodObject<{
98267
98476
  requestId: import("zod").ZodString;
98268
98477
  data: import("zod").ZodObject<{
98478
+ id: import("zod").ZodString;
98269
98479
  name: import("zod").ZodString;
98270
98480
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
98271
98481
  metadata: import("zod").ZodObject<{
@@ -98313,6 +98523,7 @@ export declare const platformContract: {
98313
98523
  }>>;
98314
98524
  }, "strip", import("zod").ZodTypeAny, {
98315
98525
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98526
+ id: string;
98316
98527
  name: string;
98317
98528
  metadata: {
98318
98529
  id: string;
@@ -98335,6 +98546,7 @@ export declare const platformContract: {
98335
98546
  } | undefined;
98336
98547
  }, {
98337
98548
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98549
+ id: string;
98338
98550
  name: string;
98339
98551
  metadata: {
98340
98552
  id: string;
@@ -98359,6 +98571,7 @@ export declare const platformContract: {
98359
98571
  }, "strip", import("zod").ZodTypeAny, {
98360
98572
  data: {
98361
98573
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98574
+ id: string;
98362
98575
  name: string;
98363
98576
  metadata: {
98364
98577
  id: string;
@@ -98384,6 +98597,7 @@ export declare const platformContract: {
98384
98597
  }, {
98385
98598
  data: {
98386
98599
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98600
+ id: string;
98387
98601
  name: string;
98388
98602
  metadata: {
98389
98603
  id: string;
@@ -98533,6 +98747,7 @@ export declare const platformContract: {
98533
98747
  200: import("zod").ZodObject<{
98534
98748
  requestId: import("zod").ZodString;
98535
98749
  data: import("zod").ZodObject<{
98750
+ id: import("zod").ZodString;
98536
98751
  name: import("zod").ZodString;
98537
98752
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
98538
98753
  metadata: import("zod").ZodObject<{
@@ -98580,6 +98795,7 @@ export declare const platformContract: {
98580
98795
  }>>;
98581
98796
  }, "strip", import("zod").ZodTypeAny, {
98582
98797
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98798
+ id: string;
98583
98799
  name: string;
98584
98800
  metadata: {
98585
98801
  id: string;
@@ -98602,6 +98818,7 @@ export declare const platformContract: {
98602
98818
  } | undefined;
98603
98819
  }, {
98604
98820
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98821
+ id: string;
98605
98822
  name: string;
98606
98823
  metadata: {
98607
98824
  id: string;
@@ -98626,6 +98843,7 @@ export declare const platformContract: {
98626
98843
  }, "strip", import("zod").ZodTypeAny, {
98627
98844
  data: {
98628
98845
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98846
+ id: string;
98629
98847
  name: string;
98630
98848
  metadata: {
98631
98849
  id: string;
@@ -98651,6 +98869,7 @@ export declare const platformContract: {
98651
98869
  }, {
98652
98870
  data: {
98653
98871
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
98872
+ id: string;
98654
98873
  name: string;
98655
98874
  metadata: {
98656
98875
  id: string;
@@ -98929,6 +99148,7 @@ export declare const platformContract: {
98929
99148
  phone: string | null;
98930
99149
  }>>;
98931
99150
  channel: import("zod").ZodObject<{
99151
+ id: import("zod").ZodString;
98932
99152
  name: import("zod").ZodString;
98933
99153
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
98934
99154
  metadata: import("zod").ZodObject<{
@@ -98976,6 +99196,7 @@ export declare const platformContract: {
98976
99196
  }>>;
98977
99197
  }, "strip", import("zod").ZodTypeAny, {
98978
99198
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
99199
+ id: string;
98979
99200
  name: string;
98980
99201
  metadata: {
98981
99202
  id: string;
@@ -98998,6 +99219,7 @@ export declare const platformContract: {
98998
99219
  } | undefined;
98999
99220
  }, {
99000
99221
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
99222
+ id: string;
99001
99223
  name: string;
99002
99224
  metadata: {
99003
99225
  id: string;
@@ -99023,6 +99245,7 @@ export declare const platformContract: {
99023
99245
  id: string;
99024
99246
  channel: {
99025
99247
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
99248
+ id: string;
99026
99249
  name: string;
99027
99250
  metadata: {
99028
99251
  id: string;
@@ -99077,6 +99300,7 @@ export declare const platformContract: {
99077
99300
  id: string;
99078
99301
  channel: {
99079
99302
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
99303
+ id: string;
99080
99304
  name: string;
99081
99305
  metadata: {
99082
99306
  id: string;
@@ -99259,6 +99483,7 @@ export declare const platformContract: {
99259
99483
  id: string;
99260
99484
  channel: {
99261
99485
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
99486
+ id: string;
99262
99487
  name: string;
99263
99488
  metadata: {
99264
99489
  id: string;
@@ -99342,6 +99567,7 @@ export declare const platformContract: {
99342
99567
  id: string;
99343
99568
  channel: {
99344
99569
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
99570
+ id: string;
99345
99571
  name: string;
99346
99572
  metadata: {
99347
99573
  id: string;
@@ -106115,9 +106341,10 @@ export declare const platformContract: {
106115
106341
  };
106116
106342
  connectToService: {
106117
106343
  body: import("zod").ZodObject<{
106118
- name: import("zod").ZodString;
106119
- type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
106120
- metadata: import("zod").ZodObject<{
106344
+ id: import("zod").ZodOptional<import("zod").ZodString>;
106345
+ name: import("zod").ZodOptional<import("zod").ZodString>;
106346
+ type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
106347
+ metadata: import("zod").ZodOptional<import("zod").ZodObject<{
106121
106348
  id: import("zod").ZodString;
106122
106349
  name: import("zod").ZodString;
106123
106350
  accessToken: import("zod").ZodString;
@@ -106135,13 +106362,13 @@ export declare const platformContract: {
106135
106362
  accessToken: string;
106136
106363
  channelSecret?: string | undefined;
106137
106364
  additionalCredentials?: any;
106138
- }>;
106139
- platformId: import("zod").ZodString;
106140
- brandName: import("zod").ZodString;
106141
- status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
106142
- connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
106143
- connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
106144
- actor: import("zod").ZodOptional<import("zod").ZodObject<{
106365
+ }>>;
106366
+ platformId: import("zod").ZodOptional<import("zod").ZodString>;
106367
+ brandName: import("zod").ZodOptional<import("zod").ZodString>;
106368
+ status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
106369
+ connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
106370
+ connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
106371
+ actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
106145
106372
  id: import("zod").ZodString;
106146
106373
  name: import("zod").ZodString;
106147
106374
  email: import("zod").ZodString;
@@ -106159,20 +106386,21 @@ export declare const platformContract: {
106159
106386
  name: string;
106160
106387
  email: string;
106161
106388
  phone: string | null;
106162
- }>>;
106389
+ }>>>;
106163
106390
  }, "strip", import("zod").ZodTypeAny, {
106164
- type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106165
- name: string;
106166
- metadata: {
106391
+ id?: string | undefined;
106392
+ name?: string | undefined;
106393
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
106394
+ metadata?: {
106167
106395
  id: string;
106168
106396
  name: string;
106169
106397
  accessToken: string;
106170
106398
  channelSecret?: string | undefined;
106171
106399
  additionalCredentials?: any;
106172
- };
106173
- status: boolean;
106174
- brandName: string;
106175
- platformId: string;
106400
+ } | undefined;
106401
+ platformId?: string | undefined;
106402
+ brandName?: string | undefined;
106403
+ status?: boolean | undefined;
106176
106404
  connectedUserName?: string | null | undefined;
106177
106405
  connectedUserId?: string | null | undefined;
106178
106406
  actor?: {
@@ -106183,18 +106411,19 @@ export declare const platformContract: {
106183
106411
  phone: string | null;
106184
106412
  } | undefined;
106185
106413
  }, {
106186
- type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106187
- name: string;
106188
- metadata: {
106414
+ id?: string | undefined;
106415
+ name?: string | undefined;
106416
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
106417
+ metadata?: {
106189
106418
  id: string;
106190
106419
  name: string;
106191
106420
  accessToken: string;
106192
106421
  channelSecret?: string | undefined;
106193
106422
  additionalCredentials?: any;
106194
- };
106195
- status: boolean;
106196
- brandName: string;
106197
- platformId: string;
106423
+ } | undefined;
106424
+ platformId?: string | undefined;
106425
+ brandName?: string | undefined;
106426
+ status?: boolean | undefined;
106198
106427
  connectedUserName?: string | null | undefined;
106199
106428
  connectedUserId?: string | null | undefined;
106200
106429
  actor?: {
@@ -106210,6 +106439,7 @@ export declare const platformContract: {
106210
106439
  200: import("zod").ZodObject<{
106211
106440
  requestId: import("zod").ZodString;
106212
106441
  data: import("zod").ZodObject<{
106442
+ id: import("zod").ZodString;
106213
106443
  name: import("zod").ZodString;
106214
106444
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
106215
106445
  metadata: import("zod").ZodObject<{
@@ -106257,6 +106487,7 @@ export declare const platformContract: {
106257
106487
  }>>;
106258
106488
  }, "strip", import("zod").ZodTypeAny, {
106259
106489
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106490
+ id: string;
106260
106491
  name: string;
106261
106492
  metadata: {
106262
106493
  id: string;
@@ -106279,6 +106510,7 @@ export declare const platformContract: {
106279
106510
  } | undefined;
106280
106511
  }, {
106281
106512
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106513
+ id: string;
106282
106514
  name: string;
106283
106515
  metadata: {
106284
106516
  id: string;
@@ -106303,6 +106535,7 @@ export declare const platformContract: {
106303
106535
  }, "strip", import("zod").ZodTypeAny, {
106304
106536
  data: {
106305
106537
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106538
+ id: string;
106306
106539
  name: string;
106307
106540
  metadata: {
106308
106541
  id: string;
@@ -106328,6 +106561,7 @@ export declare const platformContract: {
106328
106561
  }, {
106329
106562
  data: {
106330
106563
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106564
+ id: string;
106331
106565
  name: string;
106332
106566
  metadata: {
106333
106567
  id: string;
@@ -106376,6 +106610,7 @@ export declare const platformContract: {
106376
106610
  };
106377
106611
  disconnectToService: {
106378
106612
  body: import("zod").ZodObject<{
106613
+ id: import("zod").ZodOptional<import("zod").ZodString>;
106379
106614
  name: import("zod").ZodOptional<import("zod").ZodString>;
106380
106615
  type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
106381
106616
  metadata: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -106422,6 +106657,7 @@ export declare const platformContract: {
106422
106657
  phone: string | null;
106423
106658
  }>>>;
106424
106659
  }, "strip", import("zod").ZodTypeAny, {
106660
+ id?: string | undefined;
106425
106661
  name?: string | undefined;
106426
106662
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
106427
106663
  metadata?: {
@@ -106444,6 +106680,7 @@ export declare const platformContract: {
106444
106680
  phone: string | null;
106445
106681
  } | undefined;
106446
106682
  }, {
106683
+ id?: string | undefined;
106447
106684
  name?: string | undefined;
106448
106685
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
106449
106686
  metadata?: {
@@ -106471,6 +106708,7 @@ export declare const platformContract: {
106471
106708
  200: import("zod").ZodObject<{
106472
106709
  requestId: import("zod").ZodString;
106473
106710
  data: import("zod").ZodObject<{
106711
+ id: import("zod").ZodString;
106474
106712
  name: import("zod").ZodString;
106475
106713
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
106476
106714
  metadata: import("zod").ZodObject<{
@@ -106518,6 +106756,7 @@ export declare const platformContract: {
106518
106756
  }>>;
106519
106757
  }, "strip", import("zod").ZodTypeAny, {
106520
106758
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106759
+ id: string;
106521
106760
  name: string;
106522
106761
  metadata: {
106523
106762
  id: string;
@@ -106540,6 +106779,7 @@ export declare const platformContract: {
106540
106779
  } | undefined;
106541
106780
  }, {
106542
106781
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106782
+ id: string;
106543
106783
  name: string;
106544
106784
  metadata: {
106545
106785
  id: string;
@@ -106564,6 +106804,7 @@ export declare const platformContract: {
106564
106804
  }, "strip", import("zod").ZodTypeAny, {
106565
106805
  data: {
106566
106806
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106807
+ id: string;
106567
106808
  name: string;
106568
106809
  metadata: {
106569
106810
  id: string;
@@ -106589,6 +106830,7 @@ export declare const platformContract: {
106589
106830
  }, {
106590
106831
  data: {
106591
106832
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106833
+ id: string;
106592
106834
  name: string;
106593
106835
  metadata: {
106594
106836
  id: string;
@@ -106649,6 +106891,7 @@ export declare const platformContract: {
106649
106891
  200: import("zod").ZodObject<{
106650
106892
  requestId: import("zod").ZodString;
106651
106893
  data: import("zod").ZodObject<{
106894
+ id: import("zod").ZodString;
106652
106895
  name: import("zod").ZodString;
106653
106896
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
106654
106897
  metadata: import("zod").ZodObject<{
@@ -106696,6 +106939,7 @@ export declare const platformContract: {
106696
106939
  }>>;
106697
106940
  }, "strip", import("zod").ZodTypeAny, {
106698
106941
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106942
+ id: string;
106699
106943
  name: string;
106700
106944
  metadata: {
106701
106945
  id: string;
@@ -106718,6 +106962,7 @@ export declare const platformContract: {
106718
106962
  } | undefined;
106719
106963
  }, {
106720
106964
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106965
+ id: string;
106721
106966
  name: string;
106722
106967
  metadata: {
106723
106968
  id: string;
@@ -106742,6 +106987,7 @@ export declare const platformContract: {
106742
106987
  }, "strip", import("zod").ZodTypeAny, {
106743
106988
  data: {
106744
106989
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
106990
+ id: string;
106745
106991
  name: string;
106746
106992
  metadata: {
106747
106993
  id: string;
@@ -106767,6 +107013,7 @@ export declare const platformContract: {
106767
107013
  }, {
106768
107014
  data: {
106769
107015
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107016
+ id: string;
106770
107017
  name: string;
106771
107018
  metadata: {
106772
107019
  id: string;
@@ -106827,6 +107074,7 @@ export declare const platformContract: {
106827
107074
  200: import("zod").ZodObject<{
106828
107075
  requestId: import("zod").ZodString;
106829
107076
  data: import("zod").ZodObject<{
107077
+ id: import("zod").ZodString;
106830
107078
  name: import("zod").ZodString;
106831
107079
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
106832
107080
  metadata: import("zod").ZodObject<{
@@ -106874,6 +107122,7 @@ export declare const platformContract: {
106874
107122
  }>>;
106875
107123
  }, "strip", import("zod").ZodTypeAny, {
106876
107124
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107125
+ id: string;
106877
107126
  name: string;
106878
107127
  metadata: {
106879
107128
  id: string;
@@ -106896,6 +107145,7 @@ export declare const platformContract: {
106896
107145
  } | undefined;
106897
107146
  }, {
106898
107147
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107148
+ id: string;
106899
107149
  name: string;
106900
107150
  metadata: {
106901
107151
  id: string;
@@ -106920,6 +107170,7 @@ export declare const platformContract: {
106920
107170
  }, "strip", import("zod").ZodTypeAny, {
106921
107171
  data: {
106922
107172
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107173
+ id: string;
106923
107174
  name: string;
106924
107175
  metadata: {
106925
107176
  id: string;
@@ -106945,6 +107196,7 @@ export declare const platformContract: {
106945
107196
  }, {
106946
107197
  data: {
106947
107198
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107199
+ id: string;
106948
107200
  name: string;
106949
107201
  metadata: {
106950
107202
  id: string;
@@ -106993,6 +107245,7 @@ export declare const platformContract: {
106993
107245
  };
106994
107246
  relogin: {
106995
107247
  body: import("zod").ZodObject<{
107248
+ id: import("zod").ZodOptional<import("zod").ZodString>;
106996
107249
  name: import("zod").ZodOptional<import("zod").ZodString>;
106997
107250
  type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
106998
107251
  metadata: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -107039,6 +107292,7 @@ export declare const platformContract: {
107039
107292
  phone: string | null;
107040
107293
  }>>>;
107041
107294
  }, "strip", import("zod").ZodTypeAny, {
107295
+ id?: string | undefined;
107042
107296
  name?: string | undefined;
107043
107297
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
107044
107298
  metadata?: {
@@ -107061,6 +107315,7 @@ export declare const platformContract: {
107061
107315
  phone: string | null;
107062
107316
  } | undefined;
107063
107317
  }, {
107318
+ id?: string | undefined;
107064
107319
  name?: string | undefined;
107065
107320
  type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
107066
107321
  metadata?: {
@@ -107088,6 +107343,7 @@ export declare const platformContract: {
107088
107343
  200: import("zod").ZodObject<{
107089
107344
  requestId: import("zod").ZodString;
107090
107345
  data: import("zod").ZodObject<{
107346
+ id: import("zod").ZodString;
107091
107347
  name: import("zod").ZodString;
107092
107348
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
107093
107349
  metadata: import("zod").ZodObject<{
@@ -107135,6 +107391,7 @@ export declare const platformContract: {
107135
107391
  }>>;
107136
107392
  }, "strip", import("zod").ZodTypeAny, {
107137
107393
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107394
+ id: string;
107138
107395
  name: string;
107139
107396
  metadata: {
107140
107397
  id: string;
@@ -107157,6 +107414,7 @@ export declare const platformContract: {
107157
107414
  } | undefined;
107158
107415
  }, {
107159
107416
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107417
+ id: string;
107160
107418
  name: string;
107161
107419
  metadata: {
107162
107420
  id: string;
@@ -107181,6 +107439,7 @@ export declare const platformContract: {
107181
107439
  }, "strip", import("zod").ZodTypeAny, {
107182
107440
  data: {
107183
107441
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107442
+ id: string;
107184
107443
  name: string;
107185
107444
  metadata: {
107186
107445
  id: string;
@@ -107206,6 +107465,7 @@ export declare const platformContract: {
107206
107465
  }, {
107207
107466
  data: {
107208
107467
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107468
+ id: string;
107209
107469
  name: string;
107210
107470
  metadata: {
107211
107471
  id: string;
@@ -108586,6 +108846,7 @@ export declare const platformContract: {
108586
108846
  phone: string | null;
108587
108847
  }>>;
108588
108848
  channel: import("zod").ZodObject<{
108849
+ id: import("zod").ZodString;
108589
108850
  name: import("zod").ZodString;
108590
108851
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
108591
108852
  metadata: import("zod").ZodObject<{
@@ -108633,6 +108894,7 @@ export declare const platformContract: {
108633
108894
  }>>;
108634
108895
  }, "strip", import("zod").ZodTypeAny, {
108635
108896
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
108897
+ id: string;
108636
108898
  name: string;
108637
108899
  metadata: {
108638
108900
  id: string;
@@ -108655,6 +108917,7 @@ export declare const platformContract: {
108655
108917
  } | undefined;
108656
108918
  }, {
108657
108919
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
108920
+ id: string;
108658
108921
  name: string;
108659
108922
  metadata: {
108660
108923
  id: string;
@@ -108680,6 +108943,7 @@ export declare const platformContract: {
108680
108943
  id: string;
108681
108944
  channel: {
108682
108945
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
108946
+ id: string;
108683
108947
  name: string;
108684
108948
  metadata: {
108685
108949
  id: string;
@@ -108734,6 +108998,7 @@ export declare const platformContract: {
108734
108998
  id: string;
108735
108999
  channel: {
108736
109000
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
109001
+ id: string;
108737
109002
  name: string;
108738
109003
  metadata: {
108739
109004
  id: string;
@@ -108916,6 +109181,7 @@ export declare const platformContract: {
108916
109181
  id: string;
108917
109182
  channel: {
108918
109183
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
109184
+ id: string;
108919
109185
  name: string;
108920
109186
  metadata: {
108921
109187
  id: string;
@@ -108999,6 +109265,7 @@ export declare const platformContract: {
108999
109265
  id: string;
109000
109266
  channel: {
109001
109267
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
109268
+ id: string;
109002
109269
  name: string;
109003
109270
  metadata: {
109004
109271
  id: string;
@@ -116321,6 +116588,7 @@ export declare const platformContract: {
116321
116588
  200: import("zod").ZodObject<{
116322
116589
  requestId: import("zod").ZodString;
116323
116590
  data: import("zod").ZodObject<{
116591
+ id: import("zod").ZodString;
116324
116592
  name: import("zod").ZodString;
116325
116593
  type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
116326
116594
  metadata: import("zod").ZodObject<{
@@ -116368,6 +116636,7 @@ export declare const platformContract: {
116368
116636
  }>>;
116369
116637
  }, "strip", import("zod").ZodTypeAny, {
116370
116638
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
116639
+ id: string;
116371
116640
  name: string;
116372
116641
  metadata: {
116373
116642
  id: string;
@@ -116390,6 +116659,7 @@ export declare const platformContract: {
116390
116659
  } | undefined;
116391
116660
  }, {
116392
116661
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
116662
+ id: string;
116393
116663
  name: string;
116394
116664
  metadata: {
116395
116665
  id: string;
@@ -116414,6 +116684,7 @@ export declare const platformContract: {
116414
116684
  }, "strip", import("zod").ZodTypeAny, {
116415
116685
  data: {
116416
116686
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
116687
+ id: string;
116417
116688
  name: string;
116418
116689
  metadata: {
116419
116690
  id: string;
@@ -116439,6 +116710,7 @@ export declare const platformContract: {
116439
116710
  }, {
116440
116711
  data: {
116441
116712
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
116713
+ id: string;
116442
116714
  name: string;
116443
116715
  metadata: {
116444
116716
  id: string;
@@ -124134,14 +124406,14 @@ export declare const chatContract: {
124134
124406
  };
124135
124407
  }>>;
124136
124408
  sticker: import("zod").ZodOptional<import("zod").ZodObject<{
124137
- packageId: import("zod").ZodOptional<import("zod").ZodNumber>;
124138
- stickerId: import("zod").ZodOptional<import("zod").ZodNumber>;
124409
+ packageId: import("zod").ZodNumber;
124410
+ stickerId: import("zod").ZodNumber;
124139
124411
  }, "strip", import("zod").ZodTypeAny, {
124140
- packageId?: number | undefined;
124141
- stickerId?: number | undefined;
124412
+ packageId: number;
124413
+ stickerId: number;
124142
124414
  }, {
124143
- packageId?: number | undefined;
124144
- stickerId?: number | undefined;
124415
+ packageId: number;
124416
+ stickerId: number;
124145
124417
  }>>;
124146
124418
  file: import("zod").ZodOptional<import("zod").ZodType<File, import("zod").ZodTypeDef, File>>;
124147
124419
  }, "strip", import("zod").ZodTypeAny, {
@@ -124202,8 +124474,8 @@ export declare const chatContract: {
124202
124474
  };
124203
124475
  } | undefined;
124204
124476
  sticker?: {
124205
- packageId?: number | undefined;
124206
- stickerId?: number | undefined;
124477
+ packageId: number;
124478
+ stickerId: number;
124207
124479
  } | undefined;
124208
124480
  file?: File | undefined;
124209
124481
  }, {
@@ -124264,8 +124536,8 @@ export declare const chatContract: {
124264
124536
  };
124265
124537
  } | undefined;
124266
124538
  sticker?: {
124267
- packageId?: number | undefined;
124268
- stickerId?: number | undefined;
124539
+ packageId: number;
124540
+ stickerId: number;
124269
124541
  } | undefined;
124270
124542
  file?: File | undefined;
124271
124543
  }>;
@@ -131015,68 +131287,6 @@ export declare const chatContract: {
131015
131287
  'x-client-timezone'?: string | undefined;
131016
131288
  }>>>;
131017
131289
  };
131018
- sendLineSticker: {
131019
- body: import("zod").ZodObject<{
131020
- roomId: import("zod").ZodString;
131021
- packageId: import("zod").ZodString;
131022
- stickerId: import("zod").ZodString;
131023
- }, "strip", import("zod").ZodTypeAny, {
131024
- roomId: string;
131025
- packageId: string;
131026
- stickerId: string;
131027
- }, {
131028
- roomId: string;
131029
- packageId: string;
131030
- stickerId: string;
131031
- }>;
131032
- method: "POST";
131033
- responses: {
131034
- 200: import("zod").ZodOptional<import("zod").ZodObject<{
131035
- message: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
131036
- }, "strip", import("zod").ZodTypeAny, {
131037
- message?: string | null | undefined;
131038
- }, {
131039
- message?: string | null | undefined;
131040
- }>>;
131041
- 422: import("zod").ZodObject<{
131042
- message: import("zod").ZodString;
131043
- error: import("zod").ZodAny;
131044
- }, "strip", import("zod").ZodTypeAny, {
131045
- message: string;
131046
- error?: any;
131047
- }, {
131048
- message: string;
131049
- error?: any;
131050
- }>;
131051
- 500: import("zod").ZodObject<{
131052
- message: import("zod").ZodString;
131053
- error: import("zod").ZodAny;
131054
- }, "strip", import("zod").ZodTypeAny, {
131055
- message: string;
131056
- error?: any;
131057
- }, {
131058
- message: string;
131059
- error?: any;
131060
- }>;
131061
- };
131062
- path: "chat/line/sticker";
131063
- headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
131064
- 'x-tenant': import("zod").ZodString;
131065
- authorization: import("zod").ZodString;
131066
- 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
131067
- 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
131068
- }, "strip", import("zod").ZodTypeAny, {
131069
- 'x-tenant': string;
131070
- authorization: string;
131071
- 'x-client-timezone': string;
131072
- 'x-code'?: string | undefined;
131073
- }, {
131074
- 'x-tenant': string;
131075
- authorization: string;
131076
- 'x-code'?: string | undefined;
131077
- 'x-client-timezone'?: string | undefined;
131078
- }>>>;
131079
- };
131080
131290
  getRoomsByPlatformContactId: {
131081
131291
  method: "GET";
131082
131292
  pathParams: import("zod").ZodObject<{
@@ -168603,14 +168813,76 @@ export declare const notificationContract: {
168603
168813
  };
168604
168814
  path: "notification";
168605
168815
  };
168816
+ getNewNotificationsCount: {
168817
+ summary: "Get user's unread notifications count";
168818
+ method: "GET";
168819
+ responses: {
168820
+ 200: import("zod").ZodObject<{
168821
+ requestId: import("zod").ZodString;
168822
+ total: import("zod").ZodNumber;
168823
+ }, "strip", import("zod").ZodTypeAny, {
168824
+ total: number;
168825
+ requestId: string;
168826
+ }, {
168827
+ total: number;
168828
+ requestId: string;
168829
+ }>;
168830
+ 400: import("zod").ZodObject<{
168831
+ message: import("zod").ZodString;
168832
+ }, "strip", import("zod").ZodTypeAny, {
168833
+ message: string;
168834
+ }, {
168835
+ message: string;
168836
+ }>;
168837
+ 409: import("zod").ZodObject<{
168838
+ message: import("zod").ZodString;
168839
+ }, "strip", import("zod").ZodTypeAny, {
168840
+ message: string;
168841
+ }, {
168842
+ message: string;
168843
+ }>;
168844
+ 500: import("zod").ZodObject<{
168845
+ message: import("zod").ZodString;
168846
+ }, "strip", import("zod").ZodTypeAny, {
168847
+ message: string;
168848
+ }, {
168849
+ message: string;
168850
+ }>;
168851
+ 401: import("zod").ZodObject<{
168852
+ message: import("zod").ZodString;
168853
+ error: import("zod").ZodAny;
168854
+ }, "strip", import("zod").ZodTypeAny, {
168855
+ message: string;
168856
+ error?: any;
168857
+ }, {
168858
+ message: string;
168859
+ error?: any;
168860
+ }>;
168861
+ 404: import("zod").ZodObject<{
168862
+ message: import("zod").ZodString;
168863
+ error: import("zod").ZodAny;
168864
+ }, "strip", import("zod").ZodTypeAny, {
168865
+ message: string;
168866
+ error?: any;
168867
+ }, {
168868
+ message: string;
168869
+ error?: any;
168870
+ }>;
168871
+ 422: import("zod").ZodObject<{
168872
+ message: import("zod").ZodString;
168873
+ error: import("zod").ZodAny;
168874
+ }, "strip", import("zod").ZodTypeAny, {
168875
+ message: string;
168876
+ error?: any;
168877
+ }, {
168878
+ message: string;
168879
+ error?: any;
168880
+ }>;
168881
+ };
168882
+ path: "notification/new_notifications_count";
168883
+ };
168606
168884
  resetNotifications: {
168607
- body: import("zod").ZodObject<{
168608
- userId: import("zod").ZodString;
168609
- }, "strip", import("zod").ZodTypeAny, {
168610
- userId: string;
168611
- }, {
168612
- userId: string;
168613
- }>;
168885
+ body: null;
168614
168886
  summary: "Reset notification count to zero";
168615
168887
  method: "POST";
168616
168888
  responses: {