@kl1/contracts 1.3.74 → 1.3.75

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 (42) hide show
  1. package/dist/api-contracts/src/automation-queue/index.d.ts +43 -12
  2. package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/automation-queue/schema.d.ts +3 -0
  4. package/dist/api-contracts/src/automation-queue/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/automation-queue/validation.d.ts +18 -12
  6. package/dist/api-contracts/src/automation-queue/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/channel/index.d.ts +64 -0
  8. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/channel/validation.d.ts +64 -0
  10. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/index.d.ts +3 -0
  12. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  13. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  14. package/dist/api-contracts/src/chat/validation.d.ts +3 -0
  15. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  16. package/dist/api-contracts/src/contract.d.ts +213 -430
  17. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  18. package/dist/api-contracts/src/cx-log/index.d.ts +26 -0
  19. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  20. package/dist/api-contracts/src/cx-log/schema.d.ts +18 -0
  21. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  22. package/dist/api-contracts/src/dashboard/index.d.ts +5 -0
  23. package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
  24. package/dist/api-contracts/src/dashboard/schema.d.ts +3 -0
  25. package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
  26. package/dist/api-contracts/src/index.d.ts +1 -0
  27. package/dist/api-contracts/src/index.d.ts.map +1 -1
  28. package/dist/api-contracts/src/subscription/index.d.ts +438 -0
  29. package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
  30. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +0 -430
  31. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  32. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +0 -3
  33. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
  34. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +0 -3
  35. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
  36. package/dist/api-contracts/src/workflow-rule/index.d.ts +54 -0
  37. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  38. package/dist/index.js +1595 -1567
  39. package/dist/index.js.map +1 -1
  40. package/dist/index.mjs +1594 -1567
  41. package/dist/index.mjs.map +1 -1
  42. package/package.json +1 -1
@@ -4923,12 +4923,76 @@ export declare const apiContract: {
4923
4923
  updateChannelCsatPreference: {
4924
4924
  body: import("zod").ZodObject<{
4925
4925
  isCSATEnabled: import("zod").ZodBoolean;
4926
+ headline: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
4927
+ image: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
4928
+ bucketName: import("zod").ZodString;
4929
+ fileName: import("zod").ZodString;
4930
+ fileSize: import("zod").ZodNumber;
4931
+ fileKey: import("zod").ZodString;
4932
+ originalUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
4933
+ }, "strip", import("zod").ZodTypeAny, {
4934
+ fileName: string;
4935
+ fileKey: string;
4936
+ bucketName: string;
4937
+ fileSize: number;
4938
+ originalUrl?: string | null | undefined;
4939
+ }, {
4940
+ fileName: string;
4941
+ fileKey: string;
4942
+ bucketName: string;
4943
+ fileSize: number;
4944
+ originalUrl?: string | null | undefined;
4945
+ }>>>;
4946
+ scaleOptions: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
4947
+ value: import("zod").ZodString;
4948
+ label: import("zod").ZodString;
4949
+ color: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
4950
+ style: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
4951
+ }, "strip", import("zod").ZodTypeAny, {
4952
+ value: string;
4953
+ label: string;
4954
+ color?: string | null | undefined;
4955
+ style?: string | null | undefined;
4956
+ }, {
4957
+ value: string;
4958
+ label: string;
4959
+ color?: string | null | undefined;
4960
+ style?: string | null | undefined;
4961
+ }>, "many">>>;
4926
4962
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
4927
4963
  }, "strip", import("zod").ZodTypeAny, {
4928
4964
  isCSATEnabled: boolean;
4965
+ headline?: string | null | undefined;
4966
+ image?: {
4967
+ fileName: string;
4968
+ fileKey: string;
4969
+ bucketName: string;
4970
+ fileSize: number;
4971
+ originalUrl?: string | null | undefined;
4972
+ } | null | undefined;
4973
+ scaleOptions?: {
4974
+ value: string;
4975
+ label: string;
4976
+ color?: string | null | undefined;
4977
+ style?: string | null | undefined;
4978
+ }[] | null | undefined;
4929
4979
  dispositions?: string[] | undefined;
4930
4980
  }, {
4931
4981
  isCSATEnabled: boolean;
4982
+ headline?: string | null | undefined;
4983
+ image?: {
4984
+ fileName: string;
4985
+ fileKey: string;
4986
+ bucketName: string;
4987
+ fileSize: number;
4988
+ originalUrl?: string | null | undefined;
4989
+ } | null | undefined;
4990
+ scaleOptions?: {
4991
+ value: string;
4992
+ label: string;
4993
+ color?: string | null | undefined;
4994
+ style?: string | null | undefined;
4995
+ }[] | null | undefined;
4932
4996
  dispositions?: string[] | undefined;
4933
4997
  }>;
4934
4998
  summary: "Enable or Disable CSAT for channel";
@@ -19411,6 +19475,16 @@ export declare const apiContract: {
19411
19475
  }, {
19412
19476
  queueName?: string | null | undefined;
19413
19477
  }>>;
19478
+ automationQueue: import("zod").ZodNullable<import("zod").ZodObject<{
19479
+ id: import("zod").ZodString;
19480
+ name: import("zod").ZodString;
19481
+ }, "strip", import("zod").ZodTypeAny, {
19482
+ name: string;
19483
+ id: string;
19484
+ }, {
19485
+ name: string;
19486
+ id: string;
19487
+ }>>;
19414
19488
  contact: import("zod").ZodNullable<import("zod").ZodObject<{
19415
19489
  id: import("zod").ZodString;
19416
19490
  createdAt: import("zod").ZodDate;
@@ -21622,6 +21696,10 @@ export declare const apiContract: {
21622
21696
  queue: {
21623
21697
  queueName?: string | null | undefined;
21624
21698
  } | null;
21699
+ automationQueue: {
21700
+ name: string;
21701
+ id: string;
21702
+ } | null;
21625
21703
  firstAssignee: {
21626
21704
  name: string;
21627
21705
  id: string;
@@ -22565,6 +22643,10 @@ export declare const apiContract: {
22565
22643
  queue: {
22566
22644
  queueName?: string | null | undefined;
22567
22645
  } | null;
22646
+ automationQueue: {
22647
+ name: string;
22648
+ id: string;
22649
+ } | null;
22568
22650
  firstAssignee: {
22569
22651
  name: string;
22570
22652
  id: string;
@@ -23514,6 +23596,10 @@ export declare const apiContract: {
23514
23596
  queue: {
23515
23597
  queueName?: string | null | undefined;
23516
23598
  } | null;
23599
+ automationQueue: {
23600
+ name: string;
23601
+ id: string;
23602
+ } | null;
23517
23603
  firstAssignee: {
23518
23604
  name: string;
23519
23605
  id: string;
@@ -24463,6 +24549,10 @@ export declare const apiContract: {
24463
24549
  queue: {
24464
24550
  queueName?: string | null | undefined;
24465
24551
  } | null;
24552
+ automationQueue: {
24553
+ name: string;
24554
+ id: string;
24555
+ } | null;
24466
24556
  firstAssignee: {
24467
24557
  name: string;
24468
24558
  id: string;
@@ -26256,6 +26346,7 @@ export declare const apiContract: {
26256
26346
  closed: import("zod").ZodNullable<import("zod").ZodNumber>;
26257
26347
  unassignedOpen: import("zod").ZodNullable<import("zod").ZodNumber>;
26258
26348
  assignedOpen: import("zod").ZodNullable<import("zod").ZodNumber>;
26349
+ botRoom: import("zod").ZodNullable<import("zod").ZodNumber>;
26259
26350
  hold: import("zod").ZodNumber;
26260
26351
  }, "strip", import("zod").ZodTypeAny, {
26261
26352
  total: number | null;
@@ -26263,12 +26354,14 @@ export declare const apiContract: {
26263
26354
  hold: number;
26264
26355
  unassignedOpen: number | null;
26265
26356
  assignedOpen: number | null;
26357
+ botRoom: number | null;
26266
26358
  }, {
26267
26359
  total: number | null;
26268
26360
  closed: number | null;
26269
26361
  hold: number;
26270
26362
  unassignedOpen: number | null;
26271
26363
  assignedOpen: number | null;
26364
+ botRoom: number | null;
26272
26365
  }>;
26273
26366
  }, "strip", import("zod").ZodTypeAny, {
26274
26367
  requestId: string;
@@ -26278,6 +26371,7 @@ export declare const apiContract: {
26278
26371
  hold: number;
26279
26372
  unassignedOpen: number | null;
26280
26373
  assignedOpen: number | null;
26374
+ botRoom: number | null;
26281
26375
  };
26282
26376
  }, {
26283
26377
  requestId: string;
@@ -26287,6 +26381,7 @@ export declare const apiContract: {
26287
26381
  hold: number;
26288
26382
  unassignedOpen: number | null;
26289
26383
  assignedOpen: number | null;
26384
+ botRoom: number | null;
26290
26385
  };
26291
26386
  }>;
26292
26387
  401: import("zod").ZodObject<{
@@ -36500,425 +36595,6 @@ export declare const apiContract: {
36500
36595
  };
36501
36596
  };
36502
36597
  agentPresenceStatus: {
36503
- getAllAgentStatus: {
36504
- summary: "Get all user presence status list.";
36505
- method: "GET";
36506
- responses: {
36507
- 200: import("zod").ZodArray<import("zod").ZodObject<{
36508
- id: import("zod").ZodString;
36509
- createdAt: import("zod").ZodDate;
36510
- updatedAt: import("zod").ZodDate;
36511
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36512
- user: import("zod").ZodObject<{
36513
- name: import("zod").ZodString;
36514
- id: import("zod").ZodString;
36515
- address: import("zod").ZodNullable<import("zod").ZodString>;
36516
- email: import("zod").ZodString;
36517
- createdAt: import("zod").ZodDate;
36518
- updatedAt: import("zod").ZodDate;
36519
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36520
- emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36521
- password: import("zod").ZodString;
36522
- phone: import("zod").ZodNullable<import("zod").ZodString>;
36523
- notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
36524
- roles: import("zod").ZodArray<import("zod").ZodObject<{
36525
- id: import("zod").ZodString;
36526
- createdAt: import("zod").ZodDate;
36527
- updatedAt: import("zod").ZodDate;
36528
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36529
- systemName: import("zod").ZodString;
36530
- displayName: import("zod").ZodString;
36531
- description: import("zod").ZodNullable<import("zod").ZodString>;
36532
- permissions: import("zod").ZodArray<import("zod").ZodObject<{
36533
- id: import("zod").ZodString;
36534
- createdAt: import("zod").ZodDate;
36535
- updatedAt: import("zod").ZodDate;
36536
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36537
- systemName: import("zod").ZodString;
36538
- displayName: import("zod").ZodString;
36539
- description: import("zod").ZodNullable<import("zod").ZodString>;
36540
- }, "strip", import("zod").ZodTypeAny, {
36541
- id: string;
36542
- description: string | null;
36543
- createdAt: Date;
36544
- updatedAt: Date;
36545
- deletedAt: Date | null;
36546
- systemName: string;
36547
- displayName: string;
36548
- }, {
36549
- id: string;
36550
- description: string | null;
36551
- createdAt: Date;
36552
- updatedAt: Date;
36553
- deletedAt: Date | null;
36554
- systemName: string;
36555
- displayName: string;
36556
- }>, "many">;
36557
- }, "strip", import("zod").ZodTypeAny, {
36558
- id: string;
36559
- description: string | null;
36560
- createdAt: Date;
36561
- updatedAt: Date;
36562
- deletedAt: Date | null;
36563
- systemName: string;
36564
- displayName: string;
36565
- permissions: {
36566
- id: string;
36567
- description: string | null;
36568
- createdAt: Date;
36569
- updatedAt: Date;
36570
- deletedAt: Date | null;
36571
- systemName: string;
36572
- displayName: string;
36573
- }[];
36574
- }, {
36575
- id: string;
36576
- description: string | null;
36577
- createdAt: Date;
36578
- updatedAt: Date;
36579
- deletedAt: Date | null;
36580
- systemName: string;
36581
- displayName: string;
36582
- permissions: {
36583
- id: string;
36584
- description: string | null;
36585
- createdAt: Date;
36586
- updatedAt: Date;
36587
- deletedAt: Date | null;
36588
- systemName: string;
36589
- displayName: string;
36590
- }[];
36591
- }>, "many">;
36592
- extension: import("zod").ZodObject<{
36593
- id: import("zod").ZodString;
36594
- createdAt: import("zod").ZodDate;
36595
- updatedAt: import("zod").ZodDate;
36596
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36597
- userId: import("zod").ZodNullable<import("zod").ZodString>;
36598
- sipServerUrl: import("zod").ZodString;
36599
- sipUserName: import("zod").ZodString;
36600
- webphoneLoginUser: import("zod").ZodString;
36601
- extensionId: import("zod").ZodNullable<import("zod").ZodString>;
36602
- extensionName: import("zod").ZodString;
36603
- telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
36604
- }, "strip", import("zod").ZodTypeAny, {
36605
- id: string;
36606
- createdAt: Date;
36607
- updatedAt: Date;
36608
- deletedAt: Date | null;
36609
- userId: string | null;
36610
- sipServerUrl: string;
36611
- sipUserName: string;
36612
- webphoneLoginUser: string;
36613
- extensionId: string | null;
36614
- extensionName: string;
36615
- telephonySignature: string | null;
36616
- }, {
36617
- id: string;
36618
- createdAt: Date;
36619
- updatedAt: Date;
36620
- deletedAt: Date | null;
36621
- userId: string | null;
36622
- sipServerUrl: string;
36623
- sipUserName: string;
36624
- webphoneLoginUser: string;
36625
- extensionId: string | null;
36626
- extensionName: string;
36627
- telephonySignature: string | null;
36628
- }>;
36629
- }, "strip", import("zod").ZodTypeAny, {
36630
- name: string;
36631
- id: string;
36632
- address: string | null;
36633
- email: string;
36634
- createdAt: Date;
36635
- updatedAt: Date;
36636
- deletedAt: Date | null;
36637
- emailVerifiedAt: Date | null;
36638
- password: string;
36639
- phone: string | null;
36640
- notificationCount: number | null;
36641
- roles: {
36642
- id: string;
36643
- description: string | null;
36644
- createdAt: Date;
36645
- updatedAt: Date;
36646
- deletedAt: Date | null;
36647
- systemName: string;
36648
- displayName: string;
36649
- permissions: {
36650
- id: string;
36651
- description: string | null;
36652
- createdAt: Date;
36653
- updatedAt: Date;
36654
- deletedAt: Date | null;
36655
- systemName: string;
36656
- displayName: string;
36657
- }[];
36658
- }[];
36659
- extension: {
36660
- id: string;
36661
- createdAt: Date;
36662
- updatedAt: Date;
36663
- deletedAt: Date | null;
36664
- userId: string | null;
36665
- sipServerUrl: string;
36666
- sipUserName: string;
36667
- webphoneLoginUser: string;
36668
- extensionId: string | null;
36669
- extensionName: string;
36670
- telephonySignature: string | null;
36671
- };
36672
- }, {
36673
- name: string;
36674
- id: string;
36675
- address: string | null;
36676
- email: string;
36677
- createdAt: Date;
36678
- updatedAt: Date;
36679
- deletedAt: Date | null;
36680
- emailVerifiedAt: Date | null;
36681
- password: string;
36682
- phone: string | null;
36683
- notificationCount: number | null;
36684
- roles: {
36685
- id: string;
36686
- description: string | null;
36687
- createdAt: Date;
36688
- updatedAt: Date;
36689
- deletedAt: Date | null;
36690
- systemName: string;
36691
- displayName: string;
36692
- permissions: {
36693
- id: string;
36694
- description: string | null;
36695
- createdAt: Date;
36696
- updatedAt: Date;
36697
- deletedAt: Date | null;
36698
- systemName: string;
36699
- displayName: string;
36700
- }[];
36701
- }[];
36702
- extension: {
36703
- id: string;
36704
- createdAt: Date;
36705
- updatedAt: Date;
36706
- deletedAt: Date | null;
36707
- userId: string | null;
36708
- sipServerUrl: string;
36709
- sipUserName: string;
36710
- webphoneLoginUser: string;
36711
- extensionId: string | null;
36712
- extensionName: string;
36713
- telephonySignature: string | null;
36714
- };
36715
- }>;
36716
- presenceStatus: import("zod").ZodObject<{
36717
- id: import("zod").ZodString;
36718
- createdAt: import("zod").ZodDate;
36719
- updatedAt: import("zod").ZodDate;
36720
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36721
- systemName: import("zod").ZodString;
36722
- displayName: import("zod").ZodString;
36723
- description: import("zod").ZodNullable<import("zod").ZodString>;
36724
- position: import("zod").ZodNumber;
36725
- emoji: import("zod").ZodNullable<import("zod").ZodString>;
36726
- presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
36727
- }, "strip", import("zod").ZodTypeAny, {
36728
- emoji: string | null;
36729
- id: string;
36730
- position: number;
36731
- description: string | null;
36732
- createdAt: Date;
36733
- updatedAt: Date;
36734
- deletedAt: Date | null;
36735
- systemName: string;
36736
- displayName: string;
36737
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36738
- }, {
36739
- emoji: string | null;
36740
- id: string;
36741
- position: number;
36742
- description: string | null;
36743
- createdAt: Date;
36744
- updatedAt: Date;
36745
- deletedAt: Date | null;
36746
- systemName: string;
36747
- displayName: string;
36748
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36749
- }>;
36750
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
36751
- }, "strip", import("zod").ZodTypeAny, {
36752
- id: string;
36753
- user: {
36754
- name: string;
36755
- id: string;
36756
- address: string | null;
36757
- email: string;
36758
- createdAt: Date;
36759
- updatedAt: Date;
36760
- deletedAt: Date | null;
36761
- emailVerifiedAt: Date | null;
36762
- password: string;
36763
- phone: string | null;
36764
- notificationCount: number | null;
36765
- roles: {
36766
- id: string;
36767
- description: string | null;
36768
- createdAt: Date;
36769
- updatedAt: Date;
36770
- deletedAt: Date | null;
36771
- systemName: string;
36772
- displayName: string;
36773
- permissions: {
36774
- id: string;
36775
- description: string | null;
36776
- createdAt: Date;
36777
- updatedAt: Date;
36778
- deletedAt: Date | null;
36779
- systemName: string;
36780
- displayName: string;
36781
- }[];
36782
- }[];
36783
- extension: {
36784
- id: string;
36785
- createdAt: Date;
36786
- updatedAt: Date;
36787
- deletedAt: Date | null;
36788
- userId: string | null;
36789
- sipServerUrl: string;
36790
- sipUserName: string;
36791
- webphoneLoginUser: string;
36792
- extensionId: string | null;
36793
- extensionName: string;
36794
- telephonySignature: string | null;
36795
- };
36796
- };
36797
- createdAt: Date;
36798
- updatedAt: Date;
36799
- deletedAt: Date | null;
36800
- presenceStatus: {
36801
- emoji: string | null;
36802
- id: string;
36803
- position: number;
36804
- description: string | null;
36805
- createdAt: Date;
36806
- updatedAt: Date;
36807
- deletedAt: Date | null;
36808
- systemName: string;
36809
- displayName: string;
36810
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36811
- };
36812
- customPresenceStatus?: string | null | undefined;
36813
- }, {
36814
- id: string;
36815
- user: {
36816
- name: string;
36817
- id: string;
36818
- address: string | null;
36819
- email: string;
36820
- createdAt: Date;
36821
- updatedAt: Date;
36822
- deletedAt: Date | null;
36823
- emailVerifiedAt: Date | null;
36824
- password: string;
36825
- phone: string | null;
36826
- notificationCount: number | null;
36827
- roles: {
36828
- id: string;
36829
- description: string | null;
36830
- createdAt: Date;
36831
- updatedAt: Date;
36832
- deletedAt: Date | null;
36833
- systemName: string;
36834
- displayName: string;
36835
- permissions: {
36836
- id: string;
36837
- description: string | null;
36838
- createdAt: Date;
36839
- updatedAt: Date;
36840
- deletedAt: Date | null;
36841
- systemName: string;
36842
- displayName: string;
36843
- }[];
36844
- }[];
36845
- extension: {
36846
- id: string;
36847
- createdAt: Date;
36848
- updatedAt: Date;
36849
- deletedAt: Date | null;
36850
- userId: string | null;
36851
- sipServerUrl: string;
36852
- sipUserName: string;
36853
- webphoneLoginUser: string;
36854
- extensionId: string | null;
36855
- extensionName: string;
36856
- telephonySignature: string | null;
36857
- };
36858
- };
36859
- createdAt: Date;
36860
- updatedAt: Date;
36861
- deletedAt: Date | null;
36862
- presenceStatus: {
36863
- emoji: string | null;
36864
- id: string;
36865
- position: number;
36866
- description: string | null;
36867
- createdAt: Date;
36868
- updatedAt: Date;
36869
- deletedAt: Date | null;
36870
- systemName: string;
36871
- displayName: string;
36872
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36873
- };
36874
- customPresenceStatus?: string | null | undefined;
36875
- }>, "many">;
36876
- 400: import("zod").ZodObject<{
36877
- message: import("zod").ZodString;
36878
- }, "strip", import("zod").ZodTypeAny, {
36879
- message: string;
36880
- }, {
36881
- message: string;
36882
- }>;
36883
- 401: import("zod").ZodObject<{
36884
- message: import("zod").ZodString;
36885
- error: import("zod").ZodAny;
36886
- }, "strip", import("zod").ZodTypeAny, {
36887
- message: string;
36888
- error?: any;
36889
- }, {
36890
- message: string;
36891
- error?: any;
36892
- }>;
36893
- 500: import("zod").ZodObject<{
36894
- message: import("zod").ZodString;
36895
- error: import("zod").ZodAny;
36896
- }, "strip", import("zod").ZodTypeAny, {
36897
- message: string;
36898
- error?: any;
36899
- }, {
36900
- message: string;
36901
- error?: any;
36902
- }>;
36903
- };
36904
- path: "ms/telephony/agents/presence_status";
36905
- headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
36906
- 'x-tenant': import("zod").ZodString;
36907
- 'x-service-token': import("zod").ZodString;
36908
- 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
36909
- 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
36910
- }, "strip", import("zod").ZodTypeAny, {
36911
- 'x-tenant': string;
36912
- 'x-service-token': string;
36913
- 'x-client-timezone': string;
36914
- 'x-code'?: string | undefined;
36915
- }, {
36916
- 'x-tenant': string;
36917
- 'x-service-token': string;
36918
- 'x-code'?: string | undefined;
36919
- 'x-client-timezone'?: string | undefined;
36920
- }>>>;
36921
- };
36922
36598
  getAgentStatus: {
36923
36599
  summary: "Check and update user agent status before getting from telephony server.";
36924
36600
  method: "GET";
@@ -37173,7 +36849,6 @@ export declare const apiContract: {
37173
36849
  displayName: string;
37174
36850
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37175
36851
  }>;
37176
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37177
36852
  }, "strip", import("zod").ZodTypeAny, {
37178
36853
  id: string;
37179
36854
  user: {
@@ -37235,7 +36910,6 @@ export declare const apiContract: {
37235
36910
  displayName: string;
37236
36911
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37237
36912
  };
37238
- customPresenceStatus?: string | null | undefined;
37239
36913
  }, {
37240
36914
  id: string;
37241
36915
  user: {
@@ -37297,7 +36971,6 @@ export declare const apiContract: {
37297
36971
  displayName: string;
37298
36972
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37299
36973
  };
37300
- customPresenceStatus?: string | null | undefined;
37301
36974
  }>;
37302
36975
  400: import("zod").ZodObject<{
37303
36976
  message: import("zod").ZodString;
@@ -37349,18 +37022,15 @@ export declare const apiContract: {
37349
37022
  body: import("zod").ZodObject<{
37350
37023
  userId: import("zod").ZodString;
37351
37024
  presenceStatusId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37352
- customPreseneStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37353
37025
  reason: import("zod").ZodString;
37354
37026
  }, "strip", import("zod").ZodTypeAny, {
37355
37027
  reason: string;
37356
37028
  userId: string;
37357
37029
  presenceStatusId?: string | null | undefined;
37358
- customPreseneStatus?: string | null | undefined;
37359
37030
  }, {
37360
37031
  reason: string;
37361
37032
  userId: string;
37362
37033
  presenceStatusId?: string | null | undefined;
37363
- customPreseneStatus?: string | null | undefined;
37364
37034
  }>;
37365
37035
  summary: "Update presence status";
37366
37036
  method: "POST";
@@ -37610,7 +37280,6 @@ export declare const apiContract: {
37610
37280
  displayName: string;
37611
37281
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37612
37282
  }>;
37613
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37614
37283
  }, "strip", import("zod").ZodTypeAny, {
37615
37284
  id: string;
37616
37285
  user: {
@@ -37672,7 +37341,6 @@ export declare const apiContract: {
37672
37341
  displayName: string;
37673
37342
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37674
37343
  };
37675
- customPresenceStatus?: string | null | undefined;
37676
37344
  }, {
37677
37345
  id: string;
37678
37346
  user: {
@@ -37734,7 +37402,6 @@ export declare const apiContract: {
37734
37402
  displayName: string;
37735
37403
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37736
37404
  };
37737
- customPresenceStatus?: string | null | undefined;
37738
37405
  }>;
37739
37406
  }, "strip", import("zod").ZodTypeAny, {
37740
37407
  requestId: string;
@@ -37799,7 +37466,6 @@ export declare const apiContract: {
37799
37466
  displayName: string;
37800
37467
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37801
37468
  };
37802
- customPresenceStatus?: string | null | undefined;
37803
37469
  };
37804
37470
  }, {
37805
37471
  requestId: string;
@@ -37864,7 +37530,6 @@ export declare const apiContract: {
37864
37530
  displayName: string;
37865
37531
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37866
37532
  };
37867
- customPresenceStatus?: string | null | undefined;
37868
37533
  };
37869
37534
  }>;
37870
37535
  400: import("zod").ZodObject<{
@@ -308976,6 +308641,60 @@ export declare const workflowContract: {
308976
308641
  'x-code'?: string | undefined;
308977
308642
  }>;
308978
308643
  };
308644
+ tagContact: {
308645
+ body: import("zod").ZodObject<{
308646
+ contactId: import("zod").ZodString;
308647
+ tagId: import("zod").ZodString;
308648
+ }, "strip", import("zod").ZodTypeAny, {
308649
+ contactId: string;
308650
+ tagId: string;
308651
+ }, {
308652
+ contactId: string;
308653
+ tagId: string;
308654
+ }>;
308655
+ summary: "Attach Tag to Contact";
308656
+ method: "POST";
308657
+ responses: {
308658
+ 200: import("zod").ZodObject<{
308659
+ requestId: import("zod").ZodString;
308660
+ }, "strip", import("zod").ZodTypeAny, {
308661
+ requestId: string;
308662
+ }, {
308663
+ requestId: string;
308664
+ }>;
308665
+ 403: import("zod").ZodObject<{
308666
+ message: import("zod").ZodString;
308667
+ error: import("zod").ZodAny;
308668
+ }, "strip", import("zod").ZodTypeAny, {
308669
+ message: string;
308670
+ error?: any;
308671
+ }, {
308672
+ message: string;
308673
+ error?: any;
308674
+ }>;
308675
+ 404: import("zod").ZodObject<{
308676
+ message: import("zod").ZodString;
308677
+ error: import("zod").ZodAny;
308678
+ }, "strip", import("zod").ZodTypeAny, {
308679
+ message: string;
308680
+ error?: any;
308681
+ }, {
308682
+ message: string;
308683
+ error?: any;
308684
+ }>;
308685
+ };
308686
+ path: "ms/workflow/chat/contact/tag";
308687
+ headers: import("zod").ZodObject<{
308688
+ 'x-tenant': import("zod").ZodString;
308689
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
308690
+ }, "strip", import("zod").ZodTypeAny, {
308691
+ 'x-tenant': string;
308692
+ 'x-code'?: string | undefined;
308693
+ }, {
308694
+ 'x-tenant': string;
308695
+ 'x-code'?: string | undefined;
308696
+ }>;
308697
+ };
308979
308698
  };
308980
308699
  };
308981
308700
  export declare const ticketSettingContract: {
@@ -321131,12 +320850,76 @@ export declare const channelSettingContract: {
321131
320850
  updateChannelCsatPreference: {
321132
320851
  body: import("zod").ZodObject<{
321133
320852
  isCSATEnabled: import("zod").ZodBoolean;
320853
+ headline: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320854
+ image: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
320855
+ bucketName: import("zod").ZodString;
320856
+ fileName: import("zod").ZodString;
320857
+ fileSize: import("zod").ZodNumber;
320858
+ fileKey: import("zod").ZodString;
320859
+ originalUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320860
+ }, "strip", import("zod").ZodTypeAny, {
320861
+ fileName: string;
320862
+ fileKey: string;
320863
+ bucketName: string;
320864
+ fileSize: number;
320865
+ originalUrl?: string | null | undefined;
320866
+ }, {
320867
+ fileName: string;
320868
+ fileKey: string;
320869
+ bucketName: string;
320870
+ fileSize: number;
320871
+ originalUrl?: string | null | undefined;
320872
+ }>>>;
320873
+ scaleOptions: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
320874
+ value: import("zod").ZodString;
320875
+ label: import("zod").ZodString;
320876
+ color: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320877
+ style: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320878
+ }, "strip", import("zod").ZodTypeAny, {
320879
+ value: string;
320880
+ label: string;
320881
+ color?: string | null | undefined;
320882
+ style?: string | null | undefined;
320883
+ }, {
320884
+ value: string;
320885
+ label: string;
320886
+ color?: string | null | undefined;
320887
+ style?: string | null | undefined;
320888
+ }>, "many">>>;
321134
320889
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
321135
320890
  }, "strip", import("zod").ZodTypeAny, {
321136
320891
  isCSATEnabled: boolean;
320892
+ headline?: string | null | undefined;
320893
+ image?: {
320894
+ fileName: string;
320895
+ fileKey: string;
320896
+ bucketName: string;
320897
+ fileSize: number;
320898
+ originalUrl?: string | null | undefined;
320899
+ } | null | undefined;
320900
+ scaleOptions?: {
320901
+ value: string;
320902
+ label: string;
320903
+ color?: string | null | undefined;
320904
+ style?: string | null | undefined;
320905
+ }[] | null | undefined;
321137
320906
  dispositions?: string[] | undefined;
321138
320907
  }, {
321139
320908
  isCSATEnabled: boolean;
320909
+ headline?: string | null | undefined;
320910
+ image?: {
320911
+ fileName: string;
320912
+ fileKey: string;
320913
+ bucketName: string;
320914
+ fileSize: number;
320915
+ originalUrl?: string | null | undefined;
320916
+ } | null | undefined;
320917
+ scaleOptions?: {
320918
+ value: string;
320919
+ label: string;
320920
+ color?: string | null | undefined;
320921
+ style?: string | null | undefined;
320922
+ }[] | null | undefined;
321140
320923
  dispositions?: string[] | undefined;
321141
320924
  }>;
321142
320925
  summary: "Enable or Disable CSAT for channel";