@kl1/contracts 1.3.61 → 1.3.63

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +0 -64
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/validation.d.ts +0 -64
  4. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/index.d.ts +0 -96
  6. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  8. package/dist/api-contracts/src/chat/validation.d.ts +0 -20
  9. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  10. package/dist/api-contracts/src/contract.d.ts +452 -427
  11. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  12. package/dist/api-contracts/src/cx-log/index.d.ts +8 -181
  13. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  14. package/dist/api-contracts/src/cx-log/schema.d.ts +0 -18
  15. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  16. package/dist/api-contracts/src/cx-log/validation.d.ts +3 -26
  17. package/dist/api-contracts/src/cx-log/validation.d.ts.map +1 -1
  18. package/dist/api-contracts/src/dashboard/index.d.ts +14 -14
  19. package/dist/api-contracts/src/dashboard/schema.d.ts +4 -4
  20. package/dist/api-contracts/src/index.d.ts +0 -2
  21. package/dist/api-contracts/src/index.d.ts.map +1 -1
  22. package/dist/api-contracts/src/mail/mail-contract.d.ts +6 -6
  23. package/dist/api-contracts/src/mail/mail-server-contract.d.ts +6 -6
  24. package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +2 -2
  25. package/dist/api-contracts/src/presence-status/index.d.ts +1 -1
  26. package/dist/api-contracts/src/presence-status/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +430 -0
  28. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +3 -0
  30. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
  31. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +3 -0
  32. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
  33. package/dist/index.js +1671 -1741
  34. package/dist/index.js.map +1 -1
  35. package/dist/index.mjs +1671 -1739
  36. package/dist/index.mjs.map +1 -1
  37. package/package.json +1 -1
  38. package/dist/api-contracts/src/invoice/index.d.ts +0 -106
  39. package/dist/api-contracts/src/invoice/index.d.ts.map +0 -1
  40. package/dist/api-contracts/src/invoice/schema.d.ts +0 -48
  41. package/dist/api-contracts/src/invoice/schema.d.ts.map +0 -1
@@ -4923,76 +4923,12 @@ 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">>>;
4962
4926
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
4963
4927
  }, "strip", import("zod").ZodTypeAny, {
4964
4928
  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;
4979
4929
  dispositions?: string[] | undefined;
4980
4930
  }, {
4981
4931
  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;
4996
4932
  dispositions?: string[] | undefined;
4997
4933
  }>;
4998
4934
  summary: "Enable or Disable CSAT for channel";
@@ -14101,20 +14037,7 @@ export declare const apiContract: {
14101
14037
  notes: import("zod").ZodOptional<import("zod").ZodString>;
14102
14038
  address: import("zod").ZodOptional<import("zod").ZodString>;
14103
14039
  company: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
14104
- contactCustomFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
14105
- attributeId: import("zod").ZodString;
14106
- value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
14107
- type: import("zod").ZodOptional<import("zod").ZodString>;
14108
- }, "strip", import("zod").ZodTypeAny, {
14109
- value: (string | string[]) & (string | string[] | undefined);
14110
- attributeId: string;
14111
- type?: string | undefined;
14112
- }, {
14113
- value: (string | string[]) & (string | string[] | undefined);
14114
- attributeId: string;
14115
- type?: string | undefined;
14116
- }>, "many">>;
14117
- wrapUpFormCustomFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
14040
+ customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
14118
14041
  attributeId: import("zod").ZodString;
14119
14042
  value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
14120
14043
  type: import("zod").ZodOptional<import("zod").ZodString>;
@@ -14152,12 +14075,7 @@ export declare const apiContract: {
14152
14075
  notes?: string | undefined;
14153
14076
  address?: string | undefined;
14154
14077
  company?: string[] | undefined;
14155
- contactCustomFields?: {
14156
- value: (string | string[]) & (string | string[] | undefined);
14157
- attributeId: string;
14158
- type?: string | undefined;
14159
- }[] | undefined;
14160
- wrapUpFormCustomFields?: {
14078
+ customFields?: {
14161
14079
  value: (string | string[]) & (string | string[] | undefined);
14162
14080
  attributeId: string;
14163
14081
  type?: string | undefined;
@@ -14187,12 +14105,7 @@ export declare const apiContract: {
14187
14105
  notes?: string | undefined;
14188
14106
  address?: string | undefined;
14189
14107
  company?: string[] | undefined;
14190
- contactCustomFields?: {
14191
- value: (string | string[]) & (string | string[] | undefined);
14192
- attributeId: string;
14193
- type?: string | undefined;
14194
- }[] | undefined;
14195
- wrapUpFormCustomFields?: {
14108
+ customFields?: {
14196
14109
  value: (string | string[]) & (string | string[] | undefined);
14197
14110
  attributeId: string;
14198
14111
  type?: string | undefined;
@@ -19475,16 +19388,6 @@ export declare const apiContract: {
19475
19388
  }, {
19476
19389
  queueName?: string | null | undefined;
19477
19390
  }>>;
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
- }>>;
19488
19391
  contact: import("zod").ZodNullable<import("zod").ZodObject<{
19489
19392
  id: import("zod").ZodString;
19490
19393
  createdAt: import("zod").ZodDate;
@@ -21696,10 +21599,6 @@ export declare const apiContract: {
21696
21599
  queue: {
21697
21600
  queueName?: string | null | undefined;
21698
21601
  } | null;
21699
- automationQueue: {
21700
- name: string;
21701
- id: string;
21702
- } | null;
21703
21602
  firstAssignee: {
21704
21603
  name: string;
21705
21604
  id: string;
@@ -22643,10 +22542,6 @@ export declare const apiContract: {
22643
22542
  queue: {
22644
22543
  queueName?: string | null | undefined;
22645
22544
  } | null;
22646
- automationQueue: {
22647
- name: string;
22648
- id: string;
22649
- } | null;
22650
22545
  firstAssignee: {
22651
22546
  name: string;
22652
22547
  id: string;
@@ -23596,10 +23491,6 @@ export declare const apiContract: {
23596
23491
  queue: {
23597
23492
  queueName?: string | null | undefined;
23598
23493
  } | null;
23599
- automationQueue: {
23600
- name: string;
23601
- id: string;
23602
- } | null;
23603
23494
  firstAssignee: {
23604
23495
  name: string;
23605
23496
  id: string;
@@ -24549,10 +24440,6 @@ export declare const apiContract: {
24549
24440
  queue: {
24550
24441
  queueName?: string | null | undefined;
24551
24442
  } | null;
24552
- automationQueue: {
24553
- name: string;
24554
- id: string;
24555
- } | null;
24556
24443
  firstAssignee: {
24557
24444
  name: string;
24558
24445
  id: string;
@@ -24710,7 +24597,7 @@ export declare const apiContract: {
24710
24597
  error?: any;
24711
24598
  }>;
24712
24599
  };
24713
- path: "/cxs/cx-logs";
24600
+ path: "ms/cx-logs";
24714
24601
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24715
24602
  'x-tenant': import("zod").ZodString;
24716
24603
  'x-service-token': import("zod").ZodString;
@@ -24731,131 +24618,7 @@ export declare const apiContract: {
24731
24618
  export: {
24732
24619
  summary: "Export cx-logs";
24733
24620
  method: "GET";
24734
- query: import("zod").ZodObject<{
24735
- name: import("zod").ZodOptional<import("zod").ZodString>;
24736
- channel: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24737
- address: import("zod").ZodOptional<import("zod").ZodString>;
24738
- disposition: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24739
- direction: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"inbound">, import("zod").ZodLiteral<"outbound">]>, "many">>;
24740
- page: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
24741
- email: import("zod").ZodOptional<import("zod").ZodString>;
24742
- pageSize: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
24743
- phone: import("zod").ZodOptional<import("zod").ZodString>;
24744
- company: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24745
- notes: import("zod").ZodOptional<import("zod").ZodString>;
24746
- tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24747
- sentimentScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"positive">, import("zod").ZodLiteral<"neutral">, import("zod").ZodLiteral<"negative">]>, "many">>;
24748
- csatScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24749
- queueId: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24750
- contactId: import("zod").ZodOptional<import("zod").ZodString>;
24751
- trunks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24752
- caseId: import("zod").ZodOptional<import("zod").ZodString>;
24753
- uid: import("zod").ZodOptional<import("zod").ZodString>;
24754
- selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
24755
- channelIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24756
- agentIds: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>]>, string[], string[] | Record<string, string>>>;
24757
- sla: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"meet">, import("zod").ZodLiteral<"unmeet">]>>;
24758
- contactLabels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24759
- contactCustomFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
24760
- attributeId: import("zod").ZodString;
24761
- value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
24762
- type: import("zod").ZodOptional<import("zod").ZodString>;
24763
- }, "strip", import("zod").ZodTypeAny, {
24764
- value: (string | string[]) & (string | string[] | undefined);
24765
- attributeId: string;
24766
- type?: string | undefined;
24767
- }, {
24768
- value: (string | string[]) & (string | string[] | undefined);
24769
- attributeId: string;
24770
- type?: string | undefined;
24771
- }>, "many">>;
24772
- wrapUpFormCustomFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
24773
- attributeId: import("zod").ZodString;
24774
- value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
24775
- type: import("zod").ZodOptional<import("zod").ZodString>;
24776
- }, "strip", import("zod").ZodTypeAny, {
24777
- value: (string | string[]) & (string | string[] | undefined);
24778
- attributeId: string;
24779
- type?: string | undefined;
24780
- }, {
24781
- value: (string | string[]) & (string | string[] | undefined);
24782
- attributeId: string;
24783
- type?: string | undefined;
24784
- }>, "many">>;
24785
- fileExtension: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"csv">, import("zod").ZodLiteral<"xlsx">]>>>;
24786
- }, "strip", import("zod").ZodTypeAny, {
24787
- name?: string | undefined;
24788
- channel?: string[] | undefined;
24789
- address?: string | undefined;
24790
- disposition?: string[] | undefined;
24791
- direction?: ("inbound" | "outbound")[] | undefined;
24792
- page?: number | undefined;
24793
- email?: string | undefined;
24794
- pageSize?: number | undefined;
24795
- phone?: string | undefined;
24796
- company?: string[] | undefined;
24797
- notes?: string | undefined;
24798
- tags?: string[] | undefined;
24799
- sentimentScore?: ("negative" | "positive" | "neutral")[] | undefined;
24800
- csatScore?: string[] | undefined;
24801
- queueId?: string[] | undefined;
24802
- contactId?: string | undefined;
24803
- trunks?: string[] | undefined;
24804
- caseId?: string | undefined;
24805
- uid?: string | undefined;
24806
- selectedDate?: string | undefined;
24807
- channelIds?: string[] | undefined;
24808
- agentIds?: string[] | undefined;
24809
- sla?: "meet" | "unmeet" | undefined;
24810
- contactLabels?: string[] | undefined;
24811
- contactCustomFields?: {
24812
- value: (string | string[]) & (string | string[] | undefined);
24813
- attributeId: string;
24814
- type?: string | undefined;
24815
- }[] | undefined;
24816
- wrapUpFormCustomFields?: {
24817
- value: (string | string[]) & (string | string[] | undefined);
24818
- attributeId: string;
24819
- type?: string | undefined;
24820
- }[] | undefined;
24821
- fileExtension?: "csv" | "xlsx" | undefined;
24822
- }, {
24823
- name?: string | undefined;
24824
- channel?: string[] | undefined;
24825
- address?: string | undefined;
24826
- disposition?: string[] | undefined;
24827
- direction?: ("inbound" | "outbound")[] | undefined;
24828
- page?: number | undefined;
24829
- email?: string | undefined;
24830
- pageSize?: number | undefined;
24831
- phone?: string | undefined;
24832
- company?: string[] | undefined;
24833
- notes?: string | undefined;
24834
- tags?: string[] | undefined;
24835
- sentimentScore?: ("negative" | "positive" | "neutral")[] | undefined;
24836
- csatScore?: string[] | undefined;
24837
- queueId?: string[] | undefined;
24838
- contactId?: string | undefined;
24839
- trunks?: string[] | undefined;
24840
- caseId?: string | undefined;
24841
- uid?: string | undefined;
24842
- selectedDate?: string | undefined;
24843
- channelIds?: string[] | undefined;
24844
- agentIds?: string[] | Record<string, string> | undefined;
24845
- sla?: "meet" | "unmeet" | undefined;
24846
- contactLabels?: string[] | undefined;
24847
- contactCustomFields?: {
24848
- value: (string | string[]) & (string | string[] | undefined);
24849
- attributeId: string;
24850
- type?: string | undefined;
24851
- }[] | undefined;
24852
- wrapUpFormCustomFields?: {
24853
- value: (string | string[]) & (string | string[] | undefined);
24854
- attributeId: string;
24855
- type?: string | undefined;
24856
- }[] | undefined;
24857
- fileExtension?: "csv" | "xlsx" | undefined;
24858
- }>;
24621
+ query: import("zod").ZodAny;
24859
24622
  responses: {
24860
24623
  200: null;
24861
24624
  401: import("zod").ZodObject<{
@@ -24869,7 +24632,7 @@ export declare const apiContract: {
24869
24632
  error?: any;
24870
24633
  }>;
24871
24634
  };
24872
- path: "/ms/cx-logs/export";
24635
+ path: "ms/cx-logs/export";
24873
24636
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24874
24637
  'x-tenant': import("zod").ZodString;
24875
24638
  'x-service-token': import("zod").ZodString;
@@ -24914,7 +24677,7 @@ export declare const apiContract: {
24914
24677
  error?: any;
24915
24678
  }>;
24916
24679
  };
24917
- path: "/ms/cx-logs/sync-sla";
24680
+ path: "ms/cx-logs/sync-sla";
24918
24681
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24919
24682
  'x-tenant': import("zod").ZodString;
24920
24683
  'x-service-token': import("zod").ZodString;
@@ -24977,7 +24740,7 @@ export declare const apiContract: {
24977
24740
  error?: any;
24978
24741
  }>;
24979
24742
  };
24980
- path: "/ms/cx-logs";
24743
+ path: "ms/cx-logs";
24981
24744
  headers: import("zod").ZodObject<{
24982
24745
  'x-tenant': import("zod").ZodString;
24983
24746
  'x-code': import("zod").ZodOptional<import("zod").ZodString>;
@@ -27238,7 +27001,6 @@ export declare const apiContract: {
27238
27001
  }, "strip", import("zod").ZodTypeAny, {
27239
27002
  name: string;
27240
27003
  id: string | null;
27241
- holdRoomCount: number;
27242
27004
  sla: number;
27243
27005
  newContactCount: number;
27244
27006
  existingContactCount: number;
@@ -27246,10 +27008,10 @@ export declare const apiContract: {
27246
27008
  closedRoomCount: number;
27247
27009
  unassignedRoomCount: number;
27248
27010
  assignedRoomCount: number;
27011
+ holdRoomCount: number;
27249
27012
  }, {
27250
27013
  name: string;
27251
27014
  id: string | null;
27252
- holdRoomCount: number;
27253
27015
  sla: number;
27254
27016
  newContactCount: number;
27255
27017
  existingContactCount: number;
@@ -27257,6 +27019,7 @@ export declare const apiContract: {
27257
27019
  closedRoomCount: number;
27258
27020
  unassignedRoomCount: number;
27259
27021
  assignedRoomCount: number;
27022
+ holdRoomCount: number;
27260
27023
  }>, "many">;
27261
27024
  page: import("zod").ZodNumber;
27262
27025
  pageSize: import("zod").ZodNumber;
@@ -27269,7 +27032,6 @@ export declare const apiContract: {
27269
27032
  allMessageQueueData: {
27270
27033
  name: string;
27271
27034
  id: string | null;
27272
- holdRoomCount: number;
27273
27035
  sla: number;
27274
27036
  newContactCount: number;
27275
27037
  existingContactCount: number;
@@ -27277,6 +27039,7 @@ export declare const apiContract: {
27277
27039
  closedRoomCount: number;
27278
27040
  unassignedRoomCount: number;
27279
27041
  assignedRoomCount: number;
27042
+ holdRoomCount: number;
27280
27043
  }[];
27281
27044
  }, {
27282
27045
  total: number;
@@ -27286,7 +27049,6 @@ export declare const apiContract: {
27286
27049
  allMessageQueueData: {
27287
27050
  name: string;
27288
27051
  id: string | null;
27289
- holdRoomCount: number;
27290
27052
  sla: number;
27291
27053
  newContactCount: number;
27292
27054
  existingContactCount: number;
@@ -27294,6 +27056,7 @@ export declare const apiContract: {
27294
27056
  closedRoomCount: number;
27295
27057
  unassignedRoomCount: number;
27296
27058
  assignedRoomCount: number;
27059
+ holdRoomCount: number;
27297
27060
  }[];
27298
27061
  }>;
27299
27062
  };
@@ -27331,7 +27094,6 @@ export declare const apiContract: {
27331
27094
  }, "strip", import("zod").ZodTypeAny, {
27332
27095
  name: string;
27333
27096
  id: string | null;
27334
- holdRoomCount: number;
27335
27097
  sla: number;
27336
27098
  newContactCount: number;
27337
27099
  existingContactCount: number;
@@ -27339,10 +27101,10 @@ export declare const apiContract: {
27339
27101
  closedRoomCount: number;
27340
27102
  unassignedRoomCount: number;
27341
27103
  assignedRoomCount: number;
27104
+ holdRoomCount: number;
27342
27105
  }, {
27343
27106
  name: string;
27344
27107
  id: string | null;
27345
- holdRoomCount: number;
27346
27108
  sla: number;
27347
27109
  newContactCount: number;
27348
27110
  existingContactCount: number;
@@ -27350,13 +27112,13 @@ export declare const apiContract: {
27350
27112
  closedRoomCount: number;
27351
27113
  unassignedRoomCount: number;
27352
27114
  assignedRoomCount: number;
27115
+ holdRoomCount: number;
27353
27116
  }>;
27354
27117
  }, "strip", import("zod").ZodTypeAny, {
27355
27118
  requestId: string;
27356
27119
  messageQueueData: {
27357
27120
  name: string;
27358
27121
  id: string | null;
27359
- holdRoomCount: number;
27360
27122
  sla: number;
27361
27123
  newContactCount: number;
27362
27124
  existingContactCount: number;
@@ -27364,13 +27126,13 @@ export declare const apiContract: {
27364
27126
  closedRoomCount: number;
27365
27127
  unassignedRoomCount: number;
27366
27128
  assignedRoomCount: number;
27129
+ holdRoomCount: number;
27367
27130
  };
27368
27131
  }, {
27369
27132
  requestId: string;
27370
27133
  messageQueueData: {
27371
27134
  name: string;
27372
27135
  id: string | null;
27373
- holdRoomCount: number;
27374
27136
  sla: number;
27375
27137
  newContactCount: number;
27376
27138
  existingContactCount: number;
@@ -27378,6 +27140,7 @@ export declare const apiContract: {
27378
27140
  closedRoomCount: number;
27379
27141
  unassignedRoomCount: number;
27380
27142
  assignedRoomCount: number;
27143
+ holdRoomCount: number;
27381
27144
  };
27382
27145
  }>;
27383
27146
  };
@@ -27423,18 +27186,18 @@ export declare const apiContract: {
27423
27186
  }, "strip", import("zod").ZodTypeAny, {
27424
27187
  name: string;
27425
27188
  id: string;
27426
- holdRoomCount: number;
27427
27189
  closedRoomCount: number;
27428
27190
  assignedRoomCount: number;
27191
+ holdRoomCount: number;
27429
27192
  averageFirstResponseTime: string;
27430
27193
  averageResolutionTime: string;
27431
27194
  totalHandledTime: string;
27432
27195
  }, {
27433
27196
  name: string;
27434
27197
  id: string;
27435
- holdRoomCount: number;
27436
27198
  closedRoomCount: number;
27437
27199
  assignedRoomCount: number;
27200
+ holdRoomCount: number;
27438
27201
  averageFirstResponseTime: string;
27439
27202
  averageResolutionTime: string;
27440
27203
  totalHandledTime: string;
@@ -27448,9 +27211,9 @@ export declare const apiContract: {
27448
27211
  agentMessageStatistics: {
27449
27212
  name: string;
27450
27213
  id: string;
27451
- holdRoomCount: number;
27452
27214
  closedRoomCount: number;
27453
27215
  assignedRoomCount: number;
27216
+ holdRoomCount: number;
27454
27217
  averageFirstResponseTime: string;
27455
27218
  averageResolutionTime: string;
27456
27219
  totalHandledTime: string;
@@ -27464,9 +27227,9 @@ export declare const apiContract: {
27464
27227
  agentMessageStatistics: {
27465
27228
  name: string;
27466
27229
  id: string;
27467
- holdRoomCount: number;
27468
27230
  closedRoomCount: number;
27469
27231
  assignedRoomCount: number;
27232
+ holdRoomCount: number;
27470
27233
  averageFirstResponseTime: string;
27471
27234
  averageResolutionTime: string;
27472
27235
  totalHandledTime: string;
@@ -27676,14 +27439,14 @@ export declare const apiContract: {
27676
27439
  closedRoomCount: import("zod").ZodNumber;
27677
27440
  }, "strip", import("zod").ZodTypeAny, {
27678
27441
  requestId: string;
27679
- holdRoomCount: number;
27680
27442
  closedRoomCount: number;
27681
27443
  assignedRoomCount: number;
27444
+ holdRoomCount: number;
27682
27445
  }, {
27683
27446
  requestId: string;
27684
- holdRoomCount: number;
27685
27447
  closedRoomCount: number;
27686
27448
  assignedRoomCount: number;
27449
+ holdRoomCount: number;
27687
27450
  }>;
27688
27451
  };
27689
27452
  path: "ms/dashboard/room-status-counts-by-user-id";
@@ -36714,6 +36477,425 @@ export declare const apiContract: {
36714
36477
  };
36715
36478
  };
36716
36479
  agentPresenceStatus: {
36480
+ getAllAgentStatus: {
36481
+ summary: "Get all user presence status list.";
36482
+ method: "GET";
36483
+ responses: {
36484
+ 200: import("zod").ZodArray<import("zod").ZodObject<{
36485
+ id: import("zod").ZodString;
36486
+ createdAt: import("zod").ZodDate;
36487
+ updatedAt: import("zod").ZodDate;
36488
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36489
+ user: import("zod").ZodObject<{
36490
+ name: import("zod").ZodString;
36491
+ id: import("zod").ZodString;
36492
+ address: import("zod").ZodNullable<import("zod").ZodString>;
36493
+ email: import("zod").ZodString;
36494
+ createdAt: import("zod").ZodDate;
36495
+ updatedAt: import("zod").ZodDate;
36496
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36497
+ emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36498
+ password: import("zod").ZodString;
36499
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
36500
+ notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
36501
+ roles: import("zod").ZodArray<import("zod").ZodObject<{
36502
+ id: import("zod").ZodString;
36503
+ createdAt: import("zod").ZodDate;
36504
+ updatedAt: import("zod").ZodDate;
36505
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36506
+ systemName: import("zod").ZodString;
36507
+ displayName: import("zod").ZodString;
36508
+ description: import("zod").ZodNullable<import("zod").ZodString>;
36509
+ permissions: import("zod").ZodArray<import("zod").ZodObject<{
36510
+ id: import("zod").ZodString;
36511
+ createdAt: import("zod").ZodDate;
36512
+ updatedAt: import("zod").ZodDate;
36513
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36514
+ systemName: import("zod").ZodString;
36515
+ displayName: import("zod").ZodString;
36516
+ description: import("zod").ZodNullable<import("zod").ZodString>;
36517
+ }, "strip", import("zod").ZodTypeAny, {
36518
+ id: string;
36519
+ description: string | null;
36520
+ createdAt: Date;
36521
+ updatedAt: Date;
36522
+ deletedAt: Date | null;
36523
+ systemName: string;
36524
+ displayName: string;
36525
+ }, {
36526
+ id: string;
36527
+ description: string | null;
36528
+ createdAt: Date;
36529
+ updatedAt: Date;
36530
+ deletedAt: Date | null;
36531
+ systemName: string;
36532
+ displayName: string;
36533
+ }>, "many">;
36534
+ }, "strip", import("zod").ZodTypeAny, {
36535
+ id: string;
36536
+ description: string | null;
36537
+ createdAt: Date;
36538
+ updatedAt: Date;
36539
+ deletedAt: Date | null;
36540
+ systemName: string;
36541
+ displayName: string;
36542
+ permissions: {
36543
+ id: string;
36544
+ description: string | null;
36545
+ createdAt: Date;
36546
+ updatedAt: Date;
36547
+ deletedAt: Date | null;
36548
+ systemName: string;
36549
+ displayName: string;
36550
+ }[];
36551
+ }, {
36552
+ id: string;
36553
+ description: string | null;
36554
+ createdAt: Date;
36555
+ updatedAt: Date;
36556
+ deletedAt: Date | null;
36557
+ systemName: string;
36558
+ displayName: string;
36559
+ permissions: {
36560
+ id: string;
36561
+ description: string | null;
36562
+ createdAt: Date;
36563
+ updatedAt: Date;
36564
+ deletedAt: Date | null;
36565
+ systemName: string;
36566
+ displayName: string;
36567
+ }[];
36568
+ }>, "many">;
36569
+ extension: import("zod").ZodObject<{
36570
+ id: import("zod").ZodString;
36571
+ createdAt: import("zod").ZodDate;
36572
+ updatedAt: import("zod").ZodDate;
36573
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36574
+ userId: import("zod").ZodNullable<import("zod").ZodString>;
36575
+ sipServerUrl: import("zod").ZodString;
36576
+ sipUserName: import("zod").ZodString;
36577
+ webphoneLoginUser: import("zod").ZodString;
36578
+ extensionId: import("zod").ZodNullable<import("zod").ZodString>;
36579
+ extensionName: import("zod").ZodString;
36580
+ telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
36581
+ }, "strip", import("zod").ZodTypeAny, {
36582
+ id: string;
36583
+ createdAt: Date;
36584
+ updatedAt: Date;
36585
+ deletedAt: Date | null;
36586
+ userId: string | null;
36587
+ sipServerUrl: string;
36588
+ sipUserName: string;
36589
+ webphoneLoginUser: string;
36590
+ extensionId: string | null;
36591
+ extensionName: string;
36592
+ telephonySignature: string | null;
36593
+ }, {
36594
+ id: string;
36595
+ createdAt: Date;
36596
+ updatedAt: Date;
36597
+ deletedAt: Date | null;
36598
+ userId: string | null;
36599
+ sipServerUrl: string;
36600
+ sipUserName: string;
36601
+ webphoneLoginUser: string;
36602
+ extensionId: string | null;
36603
+ extensionName: string;
36604
+ telephonySignature: string | null;
36605
+ }>;
36606
+ }, "strip", import("zod").ZodTypeAny, {
36607
+ name: string;
36608
+ id: string;
36609
+ address: string | null;
36610
+ email: string;
36611
+ createdAt: Date;
36612
+ updatedAt: Date;
36613
+ deletedAt: Date | null;
36614
+ emailVerifiedAt: Date | null;
36615
+ password: string;
36616
+ phone: string | null;
36617
+ notificationCount: number | null;
36618
+ roles: {
36619
+ id: string;
36620
+ description: string | null;
36621
+ createdAt: Date;
36622
+ updatedAt: Date;
36623
+ deletedAt: Date | null;
36624
+ systemName: string;
36625
+ displayName: string;
36626
+ permissions: {
36627
+ id: string;
36628
+ description: string | null;
36629
+ createdAt: Date;
36630
+ updatedAt: Date;
36631
+ deletedAt: Date | null;
36632
+ systemName: string;
36633
+ displayName: string;
36634
+ }[];
36635
+ }[];
36636
+ extension: {
36637
+ id: string;
36638
+ createdAt: Date;
36639
+ updatedAt: Date;
36640
+ deletedAt: Date | null;
36641
+ userId: string | null;
36642
+ sipServerUrl: string;
36643
+ sipUserName: string;
36644
+ webphoneLoginUser: string;
36645
+ extensionId: string | null;
36646
+ extensionName: string;
36647
+ telephonySignature: string | null;
36648
+ };
36649
+ }, {
36650
+ name: string;
36651
+ id: string;
36652
+ address: string | null;
36653
+ email: string;
36654
+ createdAt: Date;
36655
+ updatedAt: Date;
36656
+ deletedAt: Date | null;
36657
+ emailVerifiedAt: Date | null;
36658
+ password: string;
36659
+ phone: string | null;
36660
+ notificationCount: number | null;
36661
+ roles: {
36662
+ id: string;
36663
+ description: string | null;
36664
+ createdAt: Date;
36665
+ updatedAt: Date;
36666
+ deletedAt: Date | null;
36667
+ systemName: string;
36668
+ displayName: string;
36669
+ permissions: {
36670
+ id: string;
36671
+ description: string | null;
36672
+ createdAt: Date;
36673
+ updatedAt: Date;
36674
+ deletedAt: Date | null;
36675
+ systemName: string;
36676
+ displayName: string;
36677
+ }[];
36678
+ }[];
36679
+ extension: {
36680
+ id: string;
36681
+ createdAt: Date;
36682
+ updatedAt: Date;
36683
+ deletedAt: Date | null;
36684
+ userId: string | null;
36685
+ sipServerUrl: string;
36686
+ sipUserName: string;
36687
+ webphoneLoginUser: string;
36688
+ extensionId: string | null;
36689
+ extensionName: string;
36690
+ telephonySignature: string | null;
36691
+ };
36692
+ }>;
36693
+ presenceStatus: import("zod").ZodObject<{
36694
+ id: import("zod").ZodString;
36695
+ createdAt: import("zod").ZodDate;
36696
+ updatedAt: import("zod").ZodDate;
36697
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36698
+ systemName: import("zod").ZodString;
36699
+ displayName: import("zod").ZodString;
36700
+ description: import("zod").ZodNullable<import("zod").ZodString>;
36701
+ position: import("zod").ZodNumber;
36702
+ emoji: import("zod").ZodNullable<import("zod").ZodString>;
36703
+ 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">;
36704
+ }, "strip", import("zod").ZodTypeAny, {
36705
+ emoji: string | null;
36706
+ id: string;
36707
+ position: number;
36708
+ description: string | null;
36709
+ createdAt: Date;
36710
+ updatedAt: Date;
36711
+ deletedAt: Date | null;
36712
+ systemName: string;
36713
+ displayName: string;
36714
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36715
+ }, {
36716
+ emoji: string | null;
36717
+ id: string;
36718
+ position: number;
36719
+ description: string | null;
36720
+ createdAt: Date;
36721
+ updatedAt: Date;
36722
+ deletedAt: Date | null;
36723
+ systemName: string;
36724
+ displayName: string;
36725
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36726
+ }>;
36727
+ customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
36728
+ }, "strip", import("zod").ZodTypeAny, {
36729
+ id: string;
36730
+ user: {
36731
+ name: string;
36732
+ id: string;
36733
+ address: string | null;
36734
+ email: string;
36735
+ createdAt: Date;
36736
+ updatedAt: Date;
36737
+ deletedAt: Date | null;
36738
+ emailVerifiedAt: Date | null;
36739
+ password: string;
36740
+ phone: string | null;
36741
+ notificationCount: number | null;
36742
+ roles: {
36743
+ id: string;
36744
+ description: string | null;
36745
+ createdAt: Date;
36746
+ updatedAt: Date;
36747
+ deletedAt: Date | null;
36748
+ systemName: string;
36749
+ displayName: string;
36750
+ permissions: {
36751
+ id: string;
36752
+ description: string | null;
36753
+ createdAt: Date;
36754
+ updatedAt: Date;
36755
+ deletedAt: Date | null;
36756
+ systemName: string;
36757
+ displayName: string;
36758
+ }[];
36759
+ }[];
36760
+ extension: {
36761
+ id: string;
36762
+ createdAt: Date;
36763
+ updatedAt: Date;
36764
+ deletedAt: Date | null;
36765
+ userId: string | null;
36766
+ sipServerUrl: string;
36767
+ sipUserName: string;
36768
+ webphoneLoginUser: string;
36769
+ extensionId: string | null;
36770
+ extensionName: string;
36771
+ telephonySignature: string | null;
36772
+ };
36773
+ };
36774
+ createdAt: Date;
36775
+ updatedAt: Date;
36776
+ deletedAt: Date | null;
36777
+ presenceStatus: {
36778
+ emoji: string | null;
36779
+ id: string;
36780
+ position: number;
36781
+ description: string | null;
36782
+ createdAt: Date;
36783
+ updatedAt: Date;
36784
+ deletedAt: Date | null;
36785
+ systemName: string;
36786
+ displayName: string;
36787
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36788
+ };
36789
+ customPresenceStatus?: string | null | undefined;
36790
+ }, {
36791
+ id: string;
36792
+ user: {
36793
+ name: string;
36794
+ id: string;
36795
+ address: string | null;
36796
+ email: string;
36797
+ createdAt: Date;
36798
+ updatedAt: Date;
36799
+ deletedAt: Date | null;
36800
+ emailVerifiedAt: Date | null;
36801
+ password: string;
36802
+ phone: string | null;
36803
+ notificationCount: number | null;
36804
+ roles: {
36805
+ id: string;
36806
+ description: string | null;
36807
+ createdAt: Date;
36808
+ updatedAt: Date;
36809
+ deletedAt: Date | null;
36810
+ systemName: string;
36811
+ displayName: string;
36812
+ permissions: {
36813
+ id: string;
36814
+ description: string | null;
36815
+ createdAt: Date;
36816
+ updatedAt: Date;
36817
+ deletedAt: Date | null;
36818
+ systemName: string;
36819
+ displayName: string;
36820
+ }[];
36821
+ }[];
36822
+ extension: {
36823
+ id: string;
36824
+ createdAt: Date;
36825
+ updatedAt: Date;
36826
+ deletedAt: Date | null;
36827
+ userId: string | null;
36828
+ sipServerUrl: string;
36829
+ sipUserName: string;
36830
+ webphoneLoginUser: string;
36831
+ extensionId: string | null;
36832
+ extensionName: string;
36833
+ telephonySignature: string | null;
36834
+ };
36835
+ };
36836
+ createdAt: Date;
36837
+ updatedAt: Date;
36838
+ deletedAt: Date | null;
36839
+ presenceStatus: {
36840
+ emoji: string | null;
36841
+ id: string;
36842
+ position: number;
36843
+ description: string | null;
36844
+ createdAt: Date;
36845
+ updatedAt: Date;
36846
+ deletedAt: Date | null;
36847
+ systemName: string;
36848
+ displayName: string;
36849
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36850
+ };
36851
+ customPresenceStatus?: string | null | undefined;
36852
+ }>, "many">;
36853
+ 400: import("zod").ZodObject<{
36854
+ message: import("zod").ZodString;
36855
+ }, "strip", import("zod").ZodTypeAny, {
36856
+ message: string;
36857
+ }, {
36858
+ message: string;
36859
+ }>;
36860
+ 401: import("zod").ZodObject<{
36861
+ message: import("zod").ZodString;
36862
+ error: import("zod").ZodAny;
36863
+ }, "strip", import("zod").ZodTypeAny, {
36864
+ message: string;
36865
+ error?: any;
36866
+ }, {
36867
+ message: string;
36868
+ error?: any;
36869
+ }>;
36870
+ 500: import("zod").ZodObject<{
36871
+ message: import("zod").ZodString;
36872
+ error: import("zod").ZodAny;
36873
+ }, "strip", import("zod").ZodTypeAny, {
36874
+ message: string;
36875
+ error?: any;
36876
+ }, {
36877
+ message: string;
36878
+ error?: any;
36879
+ }>;
36880
+ };
36881
+ path: "ms/telephony/agents/presence_status";
36882
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
36883
+ 'x-tenant': import("zod").ZodString;
36884
+ 'x-service-token': import("zod").ZodString;
36885
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
36886
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
36887
+ }, "strip", import("zod").ZodTypeAny, {
36888
+ 'x-tenant': string;
36889
+ 'x-service-token': string;
36890
+ 'x-client-timezone': string;
36891
+ 'x-code'?: string | undefined;
36892
+ }, {
36893
+ 'x-tenant': string;
36894
+ 'x-service-token': string;
36895
+ 'x-code'?: string | undefined;
36896
+ 'x-client-timezone'?: string | undefined;
36897
+ }>>>;
36898
+ };
36717
36899
  getAgentStatus: {
36718
36900
  summary: "Check and update user agent status before getting from telephony server.";
36719
36901
  method: "GET";
@@ -36968,6 +37150,7 @@ export declare const apiContract: {
36968
37150
  displayName: string;
36969
37151
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36970
37152
  }>;
37153
+ customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
36971
37154
  }, "strip", import("zod").ZodTypeAny, {
36972
37155
  id: string;
36973
37156
  user: {
@@ -37029,6 +37212,7 @@ export declare const apiContract: {
37029
37212
  displayName: string;
37030
37213
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37031
37214
  };
37215
+ customPresenceStatus?: string | null | undefined;
37032
37216
  }, {
37033
37217
  id: string;
37034
37218
  user: {
@@ -37090,6 +37274,7 @@ export declare const apiContract: {
37090
37274
  displayName: string;
37091
37275
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37092
37276
  };
37277
+ customPresenceStatus?: string | null | undefined;
37093
37278
  }>;
37094
37279
  400: import("zod").ZodObject<{
37095
37280
  message: import("zod").ZodString;
@@ -37141,15 +37326,18 @@ export declare const apiContract: {
37141
37326
  body: import("zod").ZodObject<{
37142
37327
  userId: import("zod").ZodString;
37143
37328
  presenceStatusId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37329
+ customPreseneStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37144
37330
  reason: import("zod").ZodString;
37145
37331
  }, "strip", import("zod").ZodTypeAny, {
37146
37332
  reason: string;
37147
37333
  userId: string;
37148
37334
  presenceStatusId?: string | null | undefined;
37335
+ customPreseneStatus?: string | null | undefined;
37149
37336
  }, {
37150
37337
  reason: string;
37151
37338
  userId: string;
37152
37339
  presenceStatusId?: string | null | undefined;
37340
+ customPreseneStatus?: string | null | undefined;
37153
37341
  }>;
37154
37342
  summary: "Update presence status";
37155
37343
  method: "POST";
@@ -37399,6 +37587,7 @@ export declare const apiContract: {
37399
37587
  displayName: string;
37400
37588
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37401
37589
  }>;
37590
+ customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37402
37591
  }, "strip", import("zod").ZodTypeAny, {
37403
37592
  id: string;
37404
37593
  user: {
@@ -37460,6 +37649,7 @@ export declare const apiContract: {
37460
37649
  displayName: string;
37461
37650
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37462
37651
  };
37652
+ customPresenceStatus?: string | null | undefined;
37463
37653
  }, {
37464
37654
  id: string;
37465
37655
  user: {
@@ -37521,6 +37711,7 @@ export declare const apiContract: {
37521
37711
  displayName: string;
37522
37712
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37523
37713
  };
37714
+ customPresenceStatus?: string | null | undefined;
37524
37715
  }>;
37525
37716
  }, "strip", import("zod").ZodTypeAny, {
37526
37717
  requestId: string;
@@ -37585,6 +37776,7 @@ export declare const apiContract: {
37585
37776
  displayName: string;
37586
37777
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37587
37778
  };
37779
+ customPresenceStatus?: string | null | undefined;
37588
37780
  };
37589
37781
  }, {
37590
37782
  requestId: string;
@@ -37649,6 +37841,7 @@ export declare const apiContract: {
37649
37841
  displayName: string;
37650
37842
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37651
37843
  };
37844
+ customPresenceStatus?: string | null | undefined;
37652
37845
  };
37653
37846
  }>;
37654
37847
  400: import("zod").ZodObject<{
@@ -41402,110 +41595,6 @@ export declare const apiContract: {
41402
41595
  path: "ms/bots/";
41403
41596
  };
41404
41597
  };
41405
- invoice: {
41406
- getInvoices: {
41407
- method: "GET";
41408
- query: null;
41409
- responses: {
41410
- 200: import("zod").ZodObject<{
41411
- requestId: import("zod").ZodString;
41412
- invoices: import("zod").ZodArray<import("zod").ZodObject<{
41413
- id: import("zod").ZodString;
41414
- createdAt: import("zod").ZodDate;
41415
- updatedAt: import("zod").ZodDate;
41416
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
41417
- invoiceId: import("zod").ZodString;
41418
- amountPaid: import("zod").ZodNumber;
41419
- billingReason: import("zod").ZodString;
41420
- collectionMethod: import("zod").ZodString;
41421
- created: import("zod").ZodNumber;
41422
- currency: import("zod").ZodString;
41423
- hostedInvoiceUrl: import("zod").ZodString;
41424
- invoicePdf: import("zod").ZodString;
41425
- number: import("zod").ZodString;
41426
- paid: import("zod").ZodBoolean;
41427
- }, "strip", import("zod").ZodTypeAny, {
41428
- number: string;
41429
- currency: string;
41430
- id: string;
41431
- createdAt: Date;
41432
- updatedAt: Date;
41433
- deletedAt: Date | null;
41434
- invoiceId: string;
41435
- amountPaid: number;
41436
- billingReason: string;
41437
- collectionMethod: string;
41438
- created: number;
41439
- hostedInvoiceUrl: string;
41440
- invoicePdf: string;
41441
- paid: boolean;
41442
- }, {
41443
- number: string;
41444
- currency: string;
41445
- id: string;
41446
- createdAt: Date;
41447
- updatedAt: Date;
41448
- deletedAt: Date | null;
41449
- invoiceId: string;
41450
- amountPaid: number;
41451
- billingReason: string;
41452
- collectionMethod: string;
41453
- created: number;
41454
- hostedInvoiceUrl: string;
41455
- invoicePdf: string;
41456
- paid: boolean;
41457
- }>, "many">;
41458
- }, "strip", import("zod").ZodTypeAny, {
41459
- requestId: string;
41460
- invoices: {
41461
- number: string;
41462
- currency: string;
41463
- id: string;
41464
- createdAt: Date;
41465
- updatedAt: Date;
41466
- deletedAt: Date | null;
41467
- invoiceId: string;
41468
- amountPaid: number;
41469
- billingReason: string;
41470
- collectionMethod: string;
41471
- created: number;
41472
- hostedInvoiceUrl: string;
41473
- invoicePdf: string;
41474
- paid: boolean;
41475
- }[];
41476
- }, {
41477
- requestId: string;
41478
- invoices: {
41479
- number: string;
41480
- currency: string;
41481
- id: string;
41482
- createdAt: Date;
41483
- updatedAt: Date;
41484
- deletedAt: Date | null;
41485
- invoiceId: string;
41486
- amountPaid: number;
41487
- billingReason: string;
41488
- collectionMethod: string;
41489
- created: number;
41490
- hostedInvoiceUrl: string;
41491
- invoicePdf: string;
41492
- paid: boolean;
41493
- }[];
41494
- }>;
41495
- 500: import("zod").ZodObject<{
41496
- message: import("zod").ZodString;
41497
- error: import("zod").ZodAny;
41498
- }, "strip", import("zod").ZodTypeAny, {
41499
- message: string;
41500
- error?: any;
41501
- }, {
41502
- message: string;
41503
- error?: any;
41504
- }>;
41505
- };
41506
- path: "ms/invoices/";
41507
- };
41508
- };
41509
41598
  };
41510
41599
  export declare const contactContract: {
41511
41600
  contact: {
@@ -320915,76 +321004,12 @@ export declare const channelSettingContract: {
320915
321004
  updateChannelCsatPreference: {
320916
321005
  body: import("zod").ZodObject<{
320917
321006
  isCSATEnabled: import("zod").ZodBoolean;
320918
- headline: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320919
- image: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
320920
- bucketName: import("zod").ZodString;
320921
- fileName: import("zod").ZodString;
320922
- fileSize: import("zod").ZodNumber;
320923
- fileKey: import("zod").ZodString;
320924
- originalUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320925
- }, "strip", import("zod").ZodTypeAny, {
320926
- fileName: string;
320927
- fileKey: string;
320928
- bucketName: string;
320929
- fileSize: number;
320930
- originalUrl?: string | null | undefined;
320931
- }, {
320932
- fileName: string;
320933
- fileKey: string;
320934
- bucketName: string;
320935
- fileSize: number;
320936
- originalUrl?: string | null | undefined;
320937
- }>>>;
320938
- scaleOptions: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
320939
- value: import("zod").ZodString;
320940
- label: import("zod").ZodString;
320941
- color: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320942
- style: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320943
- }, "strip", import("zod").ZodTypeAny, {
320944
- value: string;
320945
- label: string;
320946
- color?: string | null | undefined;
320947
- style?: string | null | undefined;
320948
- }, {
320949
- value: string;
320950
- label: string;
320951
- color?: string | null | undefined;
320952
- style?: string | null | undefined;
320953
- }>, "many">>>;
320954
321007
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
320955
321008
  }, "strip", import("zod").ZodTypeAny, {
320956
321009
  isCSATEnabled: boolean;
320957
- headline?: string | null | undefined;
320958
- image?: {
320959
- fileName: string;
320960
- fileKey: string;
320961
- bucketName: string;
320962
- fileSize: number;
320963
- originalUrl?: string | null | undefined;
320964
- } | null | undefined;
320965
- scaleOptions?: {
320966
- value: string;
320967
- label: string;
320968
- color?: string | null | undefined;
320969
- style?: string | null | undefined;
320970
- }[] | null | undefined;
320971
321010
  dispositions?: string[] | undefined;
320972
321011
  }, {
320973
321012
  isCSATEnabled: boolean;
320974
- headline?: string | null | undefined;
320975
- image?: {
320976
- fileName: string;
320977
- fileKey: string;
320978
- bucketName: string;
320979
- fileSize: number;
320980
- originalUrl?: string | null | undefined;
320981
- } | null | undefined;
320982
- scaleOptions?: {
320983
- value: string;
320984
- label: string;
320985
- color?: string | null | undefined;
320986
- style?: string | null | undefined;
320987
- }[] | null | undefined;
320988
321013
  dispositions?: string[] | undefined;
320989
321014
  }>;
320990
321015
  summary: "Enable or Disable CSAT for channel";