@kl1/contracts 1.3.62 → 1.3.64

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 (41) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +64 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/validation.d.ts +64 -0
  4. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/index.d.ts +96 -0
  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 +20 -0
  9. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  10. package/dist/api-contracts/src/contract.d.ts +303 -553
  11. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  12. package/dist/api-contracts/src/cx-log/index.d.ts +57 -109
  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 +18 -0
  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 +26 -3
  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 +2 -0
  21. package/dist/api-contracts/src/index.d.ts.map +1 -1
  22. package/dist/api-contracts/src/invoice/index.d.ts +108 -0
  23. package/dist/api-contracts/src/invoice/index.d.ts.map +1 -0
  24. package/dist/api-contracts/src/invoice/schema.d.ts +48 -0
  25. package/dist/api-contracts/src/invoice/schema.d.ts.map +1 -0
  26. package/dist/api-contracts/src/mail/mail-contract.d.ts +6 -6
  27. package/dist/api-contracts/src/mail/mail-server-contract.d.ts +6 -6
  28. package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +2 -2
  29. package/dist/api-contracts/src/presence-status/index.d.ts +1 -1
  30. package/dist/api-contracts/src/presence-status/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +0 -430
  32. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +0 -3
  34. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
  35. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +0 -3
  36. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
  37. package/dist/index.js +1739 -1673
  38. package/dist/index.js.map +1 -1
  39. package/dist/index.mjs +1737 -1673
  40. package/dist/index.mjs.map +1 -1
  41. 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";
@@ -14037,7 +14101,20 @@ export declare const apiContract: {
14037
14101
  notes: import("zod").ZodOptional<import("zod").ZodString>;
14038
14102
  address: import("zod").ZodOptional<import("zod").ZodString>;
14039
14103
  company: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
14040
- customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
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<{
14041
14118
  attributeId: import("zod").ZodString;
14042
14119
  value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
14043
14120
  type: import("zod").ZodOptional<import("zod").ZodString>;
@@ -14075,7 +14152,12 @@ export declare const apiContract: {
14075
14152
  notes?: string | undefined;
14076
14153
  address?: string | undefined;
14077
14154
  company?: string[] | undefined;
14078
- customFields?: {
14155
+ contactCustomFields?: {
14156
+ value: (string | string[]) & (string | string[] | undefined);
14157
+ attributeId: string;
14158
+ type?: string | undefined;
14159
+ }[] | undefined;
14160
+ wrapUpFormCustomFields?: {
14079
14161
  value: (string | string[]) & (string | string[] | undefined);
14080
14162
  attributeId: string;
14081
14163
  type?: string | undefined;
@@ -14105,7 +14187,12 @@ export declare const apiContract: {
14105
14187
  notes?: string | undefined;
14106
14188
  address?: string | undefined;
14107
14189
  company?: string[] | undefined;
14108
- customFields?: {
14190
+ contactCustomFields?: {
14191
+ value: (string | string[]) & (string | string[] | undefined);
14192
+ attributeId: string;
14193
+ type?: string | undefined;
14194
+ }[] | undefined;
14195
+ wrapUpFormCustomFields?: {
14109
14196
  value: (string | string[]) & (string | string[] | undefined);
14110
14197
  attributeId: string;
14111
14198
  type?: string | undefined;
@@ -19388,6 +19475,16 @@ export declare const apiContract: {
19388
19475
  }, {
19389
19476
  queueName?: string | null | undefined;
19390
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
+ }>>;
19391
19488
  contact: import("zod").ZodNullable<import("zod").ZodObject<{
19392
19489
  id: import("zod").ZodString;
19393
19490
  createdAt: import("zod").ZodDate;
@@ -21599,6 +21696,10 @@ export declare const apiContract: {
21599
21696
  queue: {
21600
21697
  queueName?: string | null | undefined;
21601
21698
  } | null;
21699
+ automationQueue: {
21700
+ name: string;
21701
+ id: string;
21702
+ } | null;
21602
21703
  firstAssignee: {
21603
21704
  name: string;
21604
21705
  id: string;
@@ -22542,6 +22643,10 @@ export declare const apiContract: {
22542
22643
  queue: {
22543
22644
  queueName?: string | null | undefined;
22544
22645
  } | null;
22646
+ automationQueue: {
22647
+ name: string;
22648
+ id: string;
22649
+ } | null;
22545
22650
  firstAssignee: {
22546
22651
  name: string;
22547
22652
  id: string;
@@ -23491,6 +23596,10 @@ export declare const apiContract: {
23491
23596
  queue: {
23492
23597
  queueName?: string | null | undefined;
23493
23598
  } | null;
23599
+ automationQueue: {
23600
+ name: string;
23601
+ id: string;
23602
+ } | null;
23494
23603
  firstAssignee: {
23495
23604
  name: string;
23496
23605
  id: string;
@@ -24440,6 +24549,10 @@ export declare const apiContract: {
24440
24549
  queue: {
24441
24550
  queueName?: string | null | undefined;
24442
24551
  } | null;
24552
+ automationQueue: {
24553
+ name: string;
24554
+ id: string;
24555
+ } | null;
24443
24556
  firstAssignee: {
24444
24557
  name: string;
24445
24558
  id: string;
@@ -24597,7 +24710,7 @@ export declare const apiContract: {
24597
24710
  error?: any;
24598
24711
  }>;
24599
24712
  };
24600
- path: "ms/cx-logs";
24713
+ path: "/cxs/cx-logs";
24601
24714
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24602
24715
  'x-tenant': import("zod").ZodString;
24603
24716
  'x-service-token': import("zod").ZodString;
@@ -24618,108 +24731,7 @@ export declare const apiContract: {
24618
24731
  export: {
24619
24732
  summary: "Export cx-logs";
24620
24733
  method: "GET";
24621
- query: import("zod").ZodObject<{
24622
- name: import("zod").ZodOptional<import("zod").ZodString>;
24623
- channel: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24624
- address: import("zod").ZodOptional<import("zod").ZodString>;
24625
- disposition: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24626
- direction: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"inbound">, import("zod").ZodLiteral<"outbound">]>, "many">>;
24627
- page: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
24628
- email: import("zod").ZodOptional<import("zod").ZodString>;
24629
- pageSize: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
24630
- phone: import("zod").ZodOptional<import("zod").ZodString>;
24631
- customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
24632
- attributeId: import("zod").ZodString;
24633
- value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
24634
- type: import("zod").ZodOptional<import("zod").ZodString>;
24635
- }, "strip", import("zod").ZodTypeAny, {
24636
- value: (string | string[]) & (string | string[] | undefined);
24637
- attributeId: string;
24638
- type?: string | undefined;
24639
- }, {
24640
- value: (string | string[]) & (string | string[] | undefined);
24641
- attributeId: string;
24642
- type?: string | undefined;
24643
- }>, "many">>;
24644
- company: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24645
- notes: import("zod").ZodOptional<import("zod").ZodString>;
24646
- tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24647
- sentimentScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"positive">, import("zod").ZodLiteral<"neutral">, import("zod").ZodLiteral<"negative">]>, "many">>;
24648
- csatScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24649
- queueId: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24650
- contactId: import("zod").ZodOptional<import("zod").ZodString>;
24651
- trunks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24652
- caseId: import("zod").ZodOptional<import("zod").ZodString>;
24653
- uid: import("zod").ZodOptional<import("zod").ZodString>;
24654
- selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
24655
- channelIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24656
- 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>>>;
24657
- sla: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"meet">, import("zod").ZodLiteral<"unmeet">]>>;
24658
- contactLabels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24659
- fileExtension: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"csv">, import("zod").ZodLiteral<"xlsx">]>>>;
24660
- }, "strip", import("zod").ZodTypeAny, {
24661
- name?: string | undefined;
24662
- channel?: string[] | undefined;
24663
- address?: string | undefined;
24664
- disposition?: string[] | undefined;
24665
- direction?: ("inbound" | "outbound")[] | undefined;
24666
- page?: number | undefined;
24667
- email?: string | undefined;
24668
- pageSize?: number | undefined;
24669
- phone?: string | undefined;
24670
- customFields?: {
24671
- value: (string | string[]) & (string | string[] | undefined);
24672
- attributeId: string;
24673
- type?: string | undefined;
24674
- }[] | undefined;
24675
- company?: string[] | undefined;
24676
- notes?: string | undefined;
24677
- tags?: string[] | undefined;
24678
- sentimentScore?: ("negative" | "positive" | "neutral")[] | undefined;
24679
- csatScore?: string[] | undefined;
24680
- queueId?: string[] | undefined;
24681
- contactId?: string | undefined;
24682
- trunks?: string[] | undefined;
24683
- caseId?: string | undefined;
24684
- uid?: string | undefined;
24685
- selectedDate?: string | undefined;
24686
- channelIds?: string[] | undefined;
24687
- agentIds?: string[] | undefined;
24688
- sla?: "meet" | "unmeet" | undefined;
24689
- contactLabels?: string[] | undefined;
24690
- fileExtension?: "csv" | "xlsx" | undefined;
24691
- }, {
24692
- name?: string | undefined;
24693
- channel?: string[] | undefined;
24694
- address?: string | undefined;
24695
- disposition?: string[] | undefined;
24696
- direction?: ("inbound" | "outbound")[] | undefined;
24697
- page?: number | undefined;
24698
- email?: string | undefined;
24699
- pageSize?: number | undefined;
24700
- phone?: string | undefined;
24701
- customFields?: {
24702
- value: (string | string[]) & (string | string[] | undefined);
24703
- attributeId: string;
24704
- type?: string | undefined;
24705
- }[] | undefined;
24706
- company?: string[] | undefined;
24707
- notes?: string | undefined;
24708
- tags?: string[] | undefined;
24709
- sentimentScore?: ("negative" | "positive" | "neutral")[] | undefined;
24710
- csatScore?: string[] | undefined;
24711
- queueId?: string[] | undefined;
24712
- contactId?: string | undefined;
24713
- trunks?: string[] | undefined;
24714
- caseId?: string | undefined;
24715
- uid?: string | undefined;
24716
- selectedDate?: string | undefined;
24717
- channelIds?: string[] | undefined;
24718
- agentIds?: string[] | Record<string, string> | undefined;
24719
- sla?: "meet" | "unmeet" | undefined;
24720
- contactLabels?: string[] | undefined;
24721
- fileExtension?: "csv" | "xlsx" | undefined;
24722
- }>;
24734
+ query: import("zod").ZodAny;
24723
24735
  responses: {
24724
24736
  200: null;
24725
24737
  401: import("zod").ZodObject<{
@@ -24733,7 +24745,7 @@ export declare const apiContract: {
24733
24745
  error?: any;
24734
24746
  }>;
24735
24747
  };
24736
- path: "ms/cx-logs/export";
24748
+ path: "/ms/cx-logs/export";
24737
24749
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24738
24750
  'x-tenant': import("zod").ZodString;
24739
24751
  'x-service-token': import("zod").ZodString;
@@ -24778,7 +24790,7 @@ export declare const apiContract: {
24778
24790
  error?: any;
24779
24791
  }>;
24780
24792
  };
24781
- path: "ms/cx-logs/sync-sla";
24793
+ path: "/ms/cx-logs/sync-sla";
24782
24794
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24783
24795
  'x-tenant': import("zod").ZodString;
24784
24796
  'x-service-token': import("zod").ZodString;
@@ -24841,7 +24853,7 @@ export declare const apiContract: {
24841
24853
  error?: any;
24842
24854
  }>;
24843
24855
  };
24844
- path: "ms/cx-logs";
24856
+ path: "/ms/cx-logs";
24845
24857
  headers: import("zod").ZodObject<{
24846
24858
  'x-tenant': import("zod").ZodString;
24847
24859
  'x-code': import("zod").ZodOptional<import("zod").ZodString>;
@@ -27102,6 +27114,7 @@ export declare const apiContract: {
27102
27114
  }, "strip", import("zod").ZodTypeAny, {
27103
27115
  name: string;
27104
27116
  id: string | null;
27117
+ holdRoomCount: number;
27105
27118
  sla: number;
27106
27119
  newContactCount: number;
27107
27120
  existingContactCount: number;
@@ -27109,10 +27122,10 @@ export declare const apiContract: {
27109
27122
  closedRoomCount: number;
27110
27123
  unassignedRoomCount: number;
27111
27124
  assignedRoomCount: number;
27112
- holdRoomCount: number;
27113
27125
  }, {
27114
27126
  name: string;
27115
27127
  id: string | null;
27128
+ holdRoomCount: number;
27116
27129
  sla: number;
27117
27130
  newContactCount: number;
27118
27131
  existingContactCount: number;
@@ -27120,7 +27133,6 @@ export declare const apiContract: {
27120
27133
  closedRoomCount: number;
27121
27134
  unassignedRoomCount: number;
27122
27135
  assignedRoomCount: number;
27123
- holdRoomCount: number;
27124
27136
  }>, "many">;
27125
27137
  page: import("zod").ZodNumber;
27126
27138
  pageSize: import("zod").ZodNumber;
@@ -27133,6 +27145,7 @@ export declare const apiContract: {
27133
27145
  allMessageQueueData: {
27134
27146
  name: string;
27135
27147
  id: string | null;
27148
+ holdRoomCount: number;
27136
27149
  sla: number;
27137
27150
  newContactCount: number;
27138
27151
  existingContactCount: number;
@@ -27140,7 +27153,6 @@ export declare const apiContract: {
27140
27153
  closedRoomCount: number;
27141
27154
  unassignedRoomCount: number;
27142
27155
  assignedRoomCount: number;
27143
- holdRoomCount: number;
27144
27156
  }[];
27145
27157
  }, {
27146
27158
  total: number;
@@ -27150,6 +27162,7 @@ export declare const apiContract: {
27150
27162
  allMessageQueueData: {
27151
27163
  name: string;
27152
27164
  id: string | null;
27165
+ holdRoomCount: number;
27153
27166
  sla: number;
27154
27167
  newContactCount: number;
27155
27168
  existingContactCount: number;
@@ -27157,7 +27170,6 @@ export declare const apiContract: {
27157
27170
  closedRoomCount: number;
27158
27171
  unassignedRoomCount: number;
27159
27172
  assignedRoomCount: number;
27160
- holdRoomCount: number;
27161
27173
  }[];
27162
27174
  }>;
27163
27175
  };
@@ -27195,6 +27207,7 @@ export declare const apiContract: {
27195
27207
  }, "strip", import("zod").ZodTypeAny, {
27196
27208
  name: string;
27197
27209
  id: string | null;
27210
+ holdRoomCount: number;
27198
27211
  sla: number;
27199
27212
  newContactCount: number;
27200
27213
  existingContactCount: number;
@@ -27202,10 +27215,10 @@ export declare const apiContract: {
27202
27215
  closedRoomCount: number;
27203
27216
  unassignedRoomCount: number;
27204
27217
  assignedRoomCount: number;
27205
- holdRoomCount: number;
27206
27218
  }, {
27207
27219
  name: string;
27208
27220
  id: string | null;
27221
+ holdRoomCount: number;
27209
27222
  sla: number;
27210
27223
  newContactCount: number;
27211
27224
  existingContactCount: number;
@@ -27213,13 +27226,13 @@ export declare const apiContract: {
27213
27226
  closedRoomCount: number;
27214
27227
  unassignedRoomCount: number;
27215
27228
  assignedRoomCount: number;
27216
- holdRoomCount: number;
27217
27229
  }>;
27218
27230
  }, "strip", import("zod").ZodTypeAny, {
27219
27231
  requestId: string;
27220
27232
  messageQueueData: {
27221
27233
  name: string;
27222
27234
  id: string | null;
27235
+ holdRoomCount: number;
27223
27236
  sla: number;
27224
27237
  newContactCount: number;
27225
27238
  existingContactCount: number;
@@ -27227,13 +27240,13 @@ export declare const apiContract: {
27227
27240
  closedRoomCount: number;
27228
27241
  unassignedRoomCount: number;
27229
27242
  assignedRoomCount: number;
27230
- holdRoomCount: number;
27231
27243
  };
27232
27244
  }, {
27233
27245
  requestId: string;
27234
27246
  messageQueueData: {
27235
27247
  name: string;
27236
27248
  id: string | null;
27249
+ holdRoomCount: number;
27237
27250
  sla: number;
27238
27251
  newContactCount: number;
27239
27252
  existingContactCount: number;
@@ -27241,7 +27254,6 @@ export declare const apiContract: {
27241
27254
  closedRoomCount: number;
27242
27255
  unassignedRoomCount: number;
27243
27256
  assignedRoomCount: number;
27244
- holdRoomCount: number;
27245
27257
  };
27246
27258
  }>;
27247
27259
  };
@@ -27287,18 +27299,18 @@ export declare const apiContract: {
27287
27299
  }, "strip", import("zod").ZodTypeAny, {
27288
27300
  name: string;
27289
27301
  id: string;
27302
+ holdRoomCount: number;
27290
27303
  closedRoomCount: number;
27291
27304
  assignedRoomCount: number;
27292
- holdRoomCount: number;
27293
27305
  averageFirstResponseTime: string;
27294
27306
  averageResolutionTime: string;
27295
27307
  totalHandledTime: string;
27296
27308
  }, {
27297
27309
  name: string;
27298
27310
  id: string;
27311
+ holdRoomCount: number;
27299
27312
  closedRoomCount: number;
27300
27313
  assignedRoomCount: number;
27301
- holdRoomCount: number;
27302
27314
  averageFirstResponseTime: string;
27303
27315
  averageResolutionTime: string;
27304
27316
  totalHandledTime: string;
@@ -27312,9 +27324,9 @@ export declare const apiContract: {
27312
27324
  agentMessageStatistics: {
27313
27325
  name: string;
27314
27326
  id: string;
27327
+ holdRoomCount: number;
27315
27328
  closedRoomCount: number;
27316
27329
  assignedRoomCount: number;
27317
- holdRoomCount: number;
27318
27330
  averageFirstResponseTime: string;
27319
27331
  averageResolutionTime: string;
27320
27332
  totalHandledTime: string;
@@ -27328,9 +27340,9 @@ export declare const apiContract: {
27328
27340
  agentMessageStatistics: {
27329
27341
  name: string;
27330
27342
  id: string;
27343
+ holdRoomCount: number;
27331
27344
  closedRoomCount: number;
27332
27345
  assignedRoomCount: number;
27333
- holdRoomCount: number;
27334
27346
  averageFirstResponseTime: string;
27335
27347
  averageResolutionTime: string;
27336
27348
  totalHandledTime: string;
@@ -27540,14 +27552,14 @@ export declare const apiContract: {
27540
27552
  closedRoomCount: import("zod").ZodNumber;
27541
27553
  }, "strip", import("zod").ZodTypeAny, {
27542
27554
  requestId: string;
27555
+ holdRoomCount: number;
27543
27556
  closedRoomCount: number;
27544
27557
  assignedRoomCount: number;
27545
- holdRoomCount: number;
27546
27558
  }, {
27547
27559
  requestId: string;
27560
+ holdRoomCount: number;
27548
27561
  closedRoomCount: number;
27549
27562
  assignedRoomCount: number;
27550
- holdRoomCount: number;
27551
27563
  }>;
27552
27564
  };
27553
27565
  path: "ms/dashboard/room-status-counts-by-user-id";
@@ -36578,425 +36590,6 @@ export declare const apiContract: {
36578
36590
  };
36579
36591
  };
36580
36592
  agentPresenceStatus: {
36581
- getAllAgentStatus: {
36582
- summary: "Get all user presence status list.";
36583
- method: "GET";
36584
- responses: {
36585
- 200: import("zod").ZodArray<import("zod").ZodObject<{
36586
- id: import("zod").ZodString;
36587
- createdAt: import("zod").ZodDate;
36588
- updatedAt: import("zod").ZodDate;
36589
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36590
- user: import("zod").ZodObject<{
36591
- name: import("zod").ZodString;
36592
- id: import("zod").ZodString;
36593
- address: import("zod").ZodNullable<import("zod").ZodString>;
36594
- email: import("zod").ZodString;
36595
- createdAt: import("zod").ZodDate;
36596
- updatedAt: import("zod").ZodDate;
36597
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36598
- emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36599
- password: import("zod").ZodString;
36600
- phone: import("zod").ZodNullable<import("zod").ZodString>;
36601
- notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
36602
- roles: import("zod").ZodArray<import("zod").ZodObject<{
36603
- id: import("zod").ZodString;
36604
- createdAt: import("zod").ZodDate;
36605
- updatedAt: import("zod").ZodDate;
36606
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36607
- systemName: import("zod").ZodString;
36608
- displayName: import("zod").ZodString;
36609
- description: import("zod").ZodNullable<import("zod").ZodString>;
36610
- permissions: import("zod").ZodArray<import("zod").ZodObject<{
36611
- id: import("zod").ZodString;
36612
- createdAt: import("zod").ZodDate;
36613
- updatedAt: import("zod").ZodDate;
36614
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36615
- systemName: import("zod").ZodString;
36616
- displayName: import("zod").ZodString;
36617
- description: import("zod").ZodNullable<import("zod").ZodString>;
36618
- }, "strip", import("zod").ZodTypeAny, {
36619
- id: string;
36620
- description: string | null;
36621
- createdAt: Date;
36622
- updatedAt: Date;
36623
- deletedAt: Date | null;
36624
- systemName: string;
36625
- displayName: string;
36626
- }, {
36627
- id: string;
36628
- description: string | null;
36629
- createdAt: Date;
36630
- updatedAt: Date;
36631
- deletedAt: Date | null;
36632
- systemName: string;
36633
- displayName: string;
36634
- }>, "many">;
36635
- }, "strip", import("zod").ZodTypeAny, {
36636
- id: string;
36637
- description: string | null;
36638
- createdAt: Date;
36639
- updatedAt: Date;
36640
- deletedAt: Date | null;
36641
- systemName: string;
36642
- displayName: string;
36643
- permissions: {
36644
- id: string;
36645
- description: string | null;
36646
- createdAt: Date;
36647
- updatedAt: Date;
36648
- deletedAt: Date | null;
36649
- systemName: string;
36650
- displayName: string;
36651
- }[];
36652
- }, {
36653
- id: string;
36654
- description: string | null;
36655
- createdAt: Date;
36656
- updatedAt: Date;
36657
- deletedAt: Date | null;
36658
- systemName: string;
36659
- displayName: string;
36660
- permissions: {
36661
- id: string;
36662
- description: string | null;
36663
- createdAt: Date;
36664
- updatedAt: Date;
36665
- deletedAt: Date | null;
36666
- systemName: string;
36667
- displayName: string;
36668
- }[];
36669
- }>, "many">;
36670
- extension: import("zod").ZodObject<{
36671
- id: import("zod").ZodString;
36672
- createdAt: import("zod").ZodDate;
36673
- updatedAt: import("zod").ZodDate;
36674
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36675
- userId: import("zod").ZodNullable<import("zod").ZodString>;
36676
- sipServerUrl: import("zod").ZodString;
36677
- sipUserName: import("zod").ZodString;
36678
- webphoneLoginUser: import("zod").ZodString;
36679
- extensionId: import("zod").ZodNullable<import("zod").ZodString>;
36680
- extensionName: import("zod").ZodString;
36681
- telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
36682
- }, "strip", import("zod").ZodTypeAny, {
36683
- id: string;
36684
- createdAt: Date;
36685
- updatedAt: Date;
36686
- deletedAt: Date | null;
36687
- userId: string | null;
36688
- sipServerUrl: string;
36689
- sipUserName: string;
36690
- webphoneLoginUser: string;
36691
- extensionId: string | null;
36692
- extensionName: string;
36693
- telephonySignature: string | null;
36694
- }, {
36695
- id: string;
36696
- createdAt: Date;
36697
- updatedAt: Date;
36698
- deletedAt: Date | null;
36699
- userId: string | null;
36700
- sipServerUrl: string;
36701
- sipUserName: string;
36702
- webphoneLoginUser: string;
36703
- extensionId: string | null;
36704
- extensionName: string;
36705
- telephonySignature: string | null;
36706
- }>;
36707
- }, "strip", import("zod").ZodTypeAny, {
36708
- name: string;
36709
- id: string;
36710
- address: string | null;
36711
- email: string;
36712
- createdAt: Date;
36713
- updatedAt: Date;
36714
- deletedAt: Date | null;
36715
- emailVerifiedAt: Date | null;
36716
- password: string;
36717
- phone: string | null;
36718
- notificationCount: number | null;
36719
- roles: {
36720
- id: string;
36721
- description: string | null;
36722
- createdAt: Date;
36723
- updatedAt: Date;
36724
- deletedAt: Date | null;
36725
- systemName: string;
36726
- displayName: string;
36727
- permissions: {
36728
- id: string;
36729
- description: string | null;
36730
- createdAt: Date;
36731
- updatedAt: Date;
36732
- deletedAt: Date | null;
36733
- systemName: string;
36734
- displayName: string;
36735
- }[];
36736
- }[];
36737
- extension: {
36738
- id: string;
36739
- createdAt: Date;
36740
- updatedAt: Date;
36741
- deletedAt: Date | null;
36742
- userId: string | null;
36743
- sipServerUrl: string;
36744
- sipUserName: string;
36745
- webphoneLoginUser: string;
36746
- extensionId: string | null;
36747
- extensionName: string;
36748
- telephonySignature: string | null;
36749
- };
36750
- }, {
36751
- name: string;
36752
- id: string;
36753
- address: string | null;
36754
- email: string;
36755
- createdAt: Date;
36756
- updatedAt: Date;
36757
- deletedAt: Date | null;
36758
- emailVerifiedAt: Date | null;
36759
- password: string;
36760
- phone: string | null;
36761
- notificationCount: number | null;
36762
- roles: {
36763
- id: string;
36764
- description: string | null;
36765
- createdAt: Date;
36766
- updatedAt: Date;
36767
- deletedAt: Date | null;
36768
- systemName: string;
36769
- displayName: string;
36770
- permissions: {
36771
- id: string;
36772
- description: string | null;
36773
- createdAt: Date;
36774
- updatedAt: Date;
36775
- deletedAt: Date | null;
36776
- systemName: string;
36777
- displayName: string;
36778
- }[];
36779
- }[];
36780
- extension: {
36781
- id: string;
36782
- createdAt: Date;
36783
- updatedAt: Date;
36784
- deletedAt: Date | null;
36785
- userId: string | null;
36786
- sipServerUrl: string;
36787
- sipUserName: string;
36788
- webphoneLoginUser: string;
36789
- extensionId: string | null;
36790
- extensionName: string;
36791
- telephonySignature: string | null;
36792
- };
36793
- }>;
36794
- presenceStatus: import("zod").ZodObject<{
36795
- id: import("zod").ZodString;
36796
- createdAt: import("zod").ZodDate;
36797
- updatedAt: import("zod").ZodDate;
36798
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36799
- systemName: import("zod").ZodString;
36800
- displayName: import("zod").ZodString;
36801
- description: import("zod").ZodNullable<import("zod").ZodString>;
36802
- position: import("zod").ZodNumber;
36803
- emoji: import("zod").ZodNullable<import("zod").ZodString>;
36804
- 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">;
36805
- }, "strip", import("zod").ZodTypeAny, {
36806
- emoji: string | null;
36807
- id: string;
36808
- position: number;
36809
- description: string | null;
36810
- createdAt: Date;
36811
- updatedAt: Date;
36812
- deletedAt: Date | null;
36813
- systemName: string;
36814
- displayName: string;
36815
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36816
- }, {
36817
- emoji: string | null;
36818
- id: string;
36819
- position: number;
36820
- description: string | null;
36821
- createdAt: Date;
36822
- updatedAt: Date;
36823
- deletedAt: Date | null;
36824
- systemName: string;
36825
- displayName: string;
36826
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36827
- }>;
36828
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
36829
- }, "strip", import("zod").ZodTypeAny, {
36830
- id: string;
36831
- user: {
36832
- name: string;
36833
- id: string;
36834
- address: string | null;
36835
- email: string;
36836
- createdAt: Date;
36837
- updatedAt: Date;
36838
- deletedAt: Date | null;
36839
- emailVerifiedAt: Date | null;
36840
- password: string;
36841
- phone: string | null;
36842
- notificationCount: number | null;
36843
- roles: {
36844
- id: string;
36845
- description: string | null;
36846
- createdAt: Date;
36847
- updatedAt: Date;
36848
- deletedAt: Date | null;
36849
- systemName: string;
36850
- displayName: string;
36851
- permissions: {
36852
- id: string;
36853
- description: string | null;
36854
- createdAt: Date;
36855
- updatedAt: Date;
36856
- deletedAt: Date | null;
36857
- systemName: string;
36858
- displayName: string;
36859
- }[];
36860
- }[];
36861
- extension: {
36862
- id: string;
36863
- createdAt: Date;
36864
- updatedAt: Date;
36865
- deletedAt: Date | null;
36866
- userId: string | null;
36867
- sipServerUrl: string;
36868
- sipUserName: string;
36869
- webphoneLoginUser: string;
36870
- extensionId: string | null;
36871
- extensionName: string;
36872
- telephonySignature: string | null;
36873
- };
36874
- };
36875
- createdAt: Date;
36876
- updatedAt: Date;
36877
- deletedAt: Date | null;
36878
- presenceStatus: {
36879
- emoji: string | null;
36880
- id: string;
36881
- position: number;
36882
- description: string | null;
36883
- createdAt: Date;
36884
- updatedAt: Date;
36885
- deletedAt: Date | null;
36886
- systemName: string;
36887
- displayName: string;
36888
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36889
- };
36890
- customPresenceStatus?: string | null | undefined;
36891
- }, {
36892
- id: string;
36893
- user: {
36894
- name: string;
36895
- id: string;
36896
- address: string | null;
36897
- email: string;
36898
- createdAt: Date;
36899
- updatedAt: Date;
36900
- deletedAt: Date | null;
36901
- emailVerifiedAt: Date | null;
36902
- password: string;
36903
- phone: string | null;
36904
- notificationCount: number | null;
36905
- roles: {
36906
- id: string;
36907
- description: string | null;
36908
- createdAt: Date;
36909
- updatedAt: Date;
36910
- deletedAt: Date | null;
36911
- systemName: string;
36912
- displayName: string;
36913
- permissions: {
36914
- id: string;
36915
- description: string | null;
36916
- createdAt: Date;
36917
- updatedAt: Date;
36918
- deletedAt: Date | null;
36919
- systemName: string;
36920
- displayName: string;
36921
- }[];
36922
- }[];
36923
- extension: {
36924
- id: string;
36925
- createdAt: Date;
36926
- updatedAt: Date;
36927
- deletedAt: Date | null;
36928
- userId: string | null;
36929
- sipServerUrl: string;
36930
- sipUserName: string;
36931
- webphoneLoginUser: string;
36932
- extensionId: string | null;
36933
- extensionName: string;
36934
- telephonySignature: string | null;
36935
- };
36936
- };
36937
- createdAt: Date;
36938
- updatedAt: Date;
36939
- deletedAt: Date | null;
36940
- presenceStatus: {
36941
- emoji: string | null;
36942
- id: string;
36943
- position: number;
36944
- description: string | null;
36945
- createdAt: Date;
36946
- updatedAt: Date;
36947
- deletedAt: Date | null;
36948
- systemName: string;
36949
- displayName: string;
36950
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36951
- };
36952
- customPresenceStatus?: string | null | undefined;
36953
- }>, "many">;
36954
- 400: import("zod").ZodObject<{
36955
- message: import("zod").ZodString;
36956
- }, "strip", import("zod").ZodTypeAny, {
36957
- message: string;
36958
- }, {
36959
- message: string;
36960
- }>;
36961
- 401: import("zod").ZodObject<{
36962
- message: import("zod").ZodString;
36963
- error: import("zod").ZodAny;
36964
- }, "strip", import("zod").ZodTypeAny, {
36965
- message: string;
36966
- error?: any;
36967
- }, {
36968
- message: string;
36969
- error?: any;
36970
- }>;
36971
- 500: import("zod").ZodObject<{
36972
- message: import("zod").ZodString;
36973
- error: import("zod").ZodAny;
36974
- }, "strip", import("zod").ZodTypeAny, {
36975
- message: string;
36976
- error?: any;
36977
- }, {
36978
- message: string;
36979
- error?: any;
36980
- }>;
36981
- };
36982
- path: "ms/telephony/agents/presence_status";
36983
- headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
36984
- 'x-tenant': import("zod").ZodString;
36985
- 'x-service-token': import("zod").ZodString;
36986
- 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
36987
- 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
36988
- }, "strip", import("zod").ZodTypeAny, {
36989
- 'x-tenant': string;
36990
- 'x-service-token': string;
36991
- 'x-client-timezone': string;
36992
- 'x-code'?: string | undefined;
36993
- }, {
36994
- 'x-tenant': string;
36995
- 'x-service-token': string;
36996
- 'x-code'?: string | undefined;
36997
- 'x-client-timezone'?: string | undefined;
36998
- }>>>;
36999
- };
37000
36593
  getAgentStatus: {
37001
36594
  summary: "Check and update user agent status before getting from telephony server.";
37002
36595
  method: "GET";
@@ -37251,7 +36844,6 @@ export declare const apiContract: {
37251
36844
  displayName: string;
37252
36845
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37253
36846
  }>;
37254
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37255
36847
  }, "strip", import("zod").ZodTypeAny, {
37256
36848
  id: string;
37257
36849
  user: {
@@ -37313,7 +36905,6 @@ export declare const apiContract: {
37313
36905
  displayName: string;
37314
36906
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37315
36907
  };
37316
- customPresenceStatus?: string | null | undefined;
37317
36908
  }, {
37318
36909
  id: string;
37319
36910
  user: {
@@ -37375,7 +36966,6 @@ export declare const apiContract: {
37375
36966
  displayName: string;
37376
36967
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37377
36968
  };
37378
- customPresenceStatus?: string | null | undefined;
37379
36969
  }>;
37380
36970
  400: import("zod").ZodObject<{
37381
36971
  message: import("zod").ZodString;
@@ -37427,18 +37017,15 @@ export declare const apiContract: {
37427
37017
  body: import("zod").ZodObject<{
37428
37018
  userId: import("zod").ZodString;
37429
37019
  presenceStatusId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37430
- customPreseneStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37431
37020
  reason: import("zod").ZodString;
37432
37021
  }, "strip", import("zod").ZodTypeAny, {
37433
37022
  reason: string;
37434
37023
  userId: string;
37435
37024
  presenceStatusId?: string | null | undefined;
37436
- customPreseneStatus?: string | null | undefined;
37437
37025
  }, {
37438
37026
  reason: string;
37439
37027
  userId: string;
37440
37028
  presenceStatusId?: string | null | undefined;
37441
- customPreseneStatus?: string | null | undefined;
37442
37029
  }>;
37443
37030
  summary: "Update presence status";
37444
37031
  method: "POST";
@@ -37688,7 +37275,6 @@ export declare const apiContract: {
37688
37275
  displayName: string;
37689
37276
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37690
37277
  }>;
37691
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37692
37278
  }, "strip", import("zod").ZodTypeAny, {
37693
37279
  id: string;
37694
37280
  user: {
@@ -37750,7 +37336,6 @@ export declare const apiContract: {
37750
37336
  displayName: string;
37751
37337
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37752
37338
  };
37753
- customPresenceStatus?: string | null | undefined;
37754
37339
  }, {
37755
37340
  id: string;
37756
37341
  user: {
@@ -37812,7 +37397,6 @@ export declare const apiContract: {
37812
37397
  displayName: string;
37813
37398
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37814
37399
  };
37815
- customPresenceStatus?: string | null | undefined;
37816
37400
  }>;
37817
37401
  }, "strip", import("zod").ZodTypeAny, {
37818
37402
  requestId: string;
@@ -37877,7 +37461,6 @@ export declare const apiContract: {
37877
37461
  displayName: string;
37878
37462
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37879
37463
  };
37880
- customPresenceStatus?: string | null | undefined;
37881
37464
  };
37882
37465
  }, {
37883
37466
  requestId: string;
@@ -37942,7 +37525,6 @@ export declare const apiContract: {
37942
37525
  displayName: string;
37943
37526
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37944
37527
  };
37945
- customPresenceStatus?: string | null | undefined;
37946
37528
  };
37947
37529
  }>;
37948
37530
  400: import("zod").ZodObject<{
@@ -41696,6 +41278,110 @@ export declare const apiContract: {
41696
41278
  path: "ms/bots/";
41697
41279
  };
41698
41280
  };
41281
+ invoice: {
41282
+ getInvoices: {
41283
+ method: "GET";
41284
+ query: null;
41285
+ responses: {
41286
+ 200: import("zod").ZodObject<{
41287
+ requestId: import("zod").ZodString;
41288
+ invoices: import("zod").ZodArray<import("zod").ZodObject<{
41289
+ id: import("zod").ZodString;
41290
+ createdAt: import("zod").ZodDate;
41291
+ updatedAt: import("zod").ZodDate;
41292
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
41293
+ invoiceId: import("zod").ZodString;
41294
+ amountPaid: import("zod").ZodNumber;
41295
+ billingReason: import("zod").ZodString;
41296
+ collectionMethod: import("zod").ZodString;
41297
+ created: import("zod").ZodNumber;
41298
+ currency: import("zod").ZodString;
41299
+ hostedInvoiceUrl: import("zod").ZodString;
41300
+ invoicePdf: import("zod").ZodString;
41301
+ number: import("zod").ZodString;
41302
+ paid: import("zod").ZodBoolean;
41303
+ }, "strip", import("zod").ZodTypeAny, {
41304
+ number: string;
41305
+ currency: string;
41306
+ id: string;
41307
+ createdAt: Date;
41308
+ updatedAt: Date;
41309
+ deletedAt: Date | null;
41310
+ invoiceId: string;
41311
+ amountPaid: number;
41312
+ billingReason: string;
41313
+ collectionMethod: string;
41314
+ created: number;
41315
+ hostedInvoiceUrl: string;
41316
+ invoicePdf: string;
41317
+ paid: boolean;
41318
+ }, {
41319
+ number: string;
41320
+ currency: string;
41321
+ id: string;
41322
+ createdAt: Date;
41323
+ updatedAt: Date;
41324
+ deletedAt: Date | null;
41325
+ invoiceId: string;
41326
+ amountPaid: number;
41327
+ billingReason: string;
41328
+ collectionMethod: string;
41329
+ created: number;
41330
+ hostedInvoiceUrl: string;
41331
+ invoicePdf: string;
41332
+ paid: boolean;
41333
+ }>, "many">;
41334
+ }, "strip", import("zod").ZodTypeAny, {
41335
+ requestId: string;
41336
+ invoices: {
41337
+ number: string;
41338
+ currency: string;
41339
+ id: string;
41340
+ createdAt: Date;
41341
+ updatedAt: Date;
41342
+ deletedAt: Date | null;
41343
+ invoiceId: string;
41344
+ amountPaid: number;
41345
+ billingReason: string;
41346
+ collectionMethod: string;
41347
+ created: number;
41348
+ hostedInvoiceUrl: string;
41349
+ invoicePdf: string;
41350
+ paid: boolean;
41351
+ }[];
41352
+ }, {
41353
+ requestId: string;
41354
+ invoices: {
41355
+ number: string;
41356
+ currency: string;
41357
+ id: string;
41358
+ createdAt: Date;
41359
+ updatedAt: Date;
41360
+ deletedAt: Date | null;
41361
+ invoiceId: string;
41362
+ amountPaid: number;
41363
+ billingReason: string;
41364
+ collectionMethod: string;
41365
+ created: number;
41366
+ hostedInvoiceUrl: string;
41367
+ invoicePdf: string;
41368
+ paid: boolean;
41369
+ }[];
41370
+ }>;
41371
+ 500: import("zod").ZodObject<{
41372
+ message: import("zod").ZodString;
41373
+ error: import("zod").ZodAny;
41374
+ }, "strip", import("zod").ZodTypeAny, {
41375
+ message: string;
41376
+ error?: any;
41377
+ }, {
41378
+ message: string;
41379
+ error?: any;
41380
+ }>;
41381
+ };
41382
+ path: "ms/invoices/";
41383
+ };
41384
+ };
41699
41385
  };
41700
41386
  export declare const contactContract: {
41701
41387
  contact: {
@@ -321105,12 +320791,76 @@ export declare const channelSettingContract: {
321105
320791
  updateChannelCsatPreference: {
321106
320792
  body: import("zod").ZodObject<{
321107
320793
  isCSATEnabled: import("zod").ZodBoolean;
320794
+ headline: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320795
+ image: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
320796
+ bucketName: import("zod").ZodString;
320797
+ fileName: import("zod").ZodString;
320798
+ fileSize: import("zod").ZodNumber;
320799
+ fileKey: import("zod").ZodString;
320800
+ originalUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320801
+ }, "strip", import("zod").ZodTypeAny, {
320802
+ fileName: string;
320803
+ fileKey: string;
320804
+ bucketName: string;
320805
+ fileSize: number;
320806
+ originalUrl?: string | null | undefined;
320807
+ }, {
320808
+ fileName: string;
320809
+ fileKey: string;
320810
+ bucketName: string;
320811
+ fileSize: number;
320812
+ originalUrl?: string | null | undefined;
320813
+ }>>>;
320814
+ scaleOptions: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
320815
+ value: import("zod").ZodString;
320816
+ label: import("zod").ZodString;
320817
+ color: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320818
+ style: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320819
+ }, "strip", import("zod").ZodTypeAny, {
320820
+ value: string;
320821
+ label: string;
320822
+ color?: string | null | undefined;
320823
+ style?: string | null | undefined;
320824
+ }, {
320825
+ value: string;
320826
+ label: string;
320827
+ color?: string | null | undefined;
320828
+ style?: string | null | undefined;
320829
+ }>, "many">>>;
321108
320830
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
321109
320831
  }, "strip", import("zod").ZodTypeAny, {
321110
320832
  isCSATEnabled: boolean;
320833
+ headline?: string | null | undefined;
320834
+ image?: {
320835
+ fileName: string;
320836
+ fileKey: string;
320837
+ bucketName: string;
320838
+ fileSize: number;
320839
+ originalUrl?: string | null | undefined;
320840
+ } | null | undefined;
320841
+ scaleOptions?: {
320842
+ value: string;
320843
+ label: string;
320844
+ color?: string | null | undefined;
320845
+ style?: string | null | undefined;
320846
+ }[] | null | undefined;
321111
320847
  dispositions?: string[] | undefined;
321112
320848
  }, {
321113
320849
  isCSATEnabled: boolean;
320850
+ headline?: string | null | undefined;
320851
+ image?: {
320852
+ fileName: string;
320853
+ fileKey: string;
320854
+ bucketName: string;
320855
+ fileSize: number;
320856
+ originalUrl?: string | null | undefined;
320857
+ } | null | undefined;
320858
+ scaleOptions?: {
320859
+ value: string;
320860
+ label: string;
320861
+ color?: string | null | undefined;
320862
+ style?: string | null | undefined;
320863
+ }[] | null | undefined;
321114
320864
  dispositions?: string[] | undefined;
321115
320865
  }>;
321116
320866
  summary: "Enable or Disable CSAT for channel";