@kl1/contracts 1.3.54 → 1.3.56

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 +102 -102
  6. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/schema.d.ts +20 -20
  8. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/validation.d.ts +14 -14
  10. package/dist/api-contracts/src/contract.d.ts +364 -594
  11. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  12. package/dist/api-contracts/src/cx-log/index.d.ts +109 -37
  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 +23 -5
  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/facebook-feed/index.d.ts +14 -14
  19. package/dist/api-contracts/src/index.d.ts +1 -0
  20. package/dist/api-contracts/src/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/instagram/index.d.ts +14 -14
  22. package/dist/api-contracts/src/line/index.d.ts +14 -14
  23. package/dist/api-contracts/src/messenger/index.d.ts +14 -14
  24. package/dist/api-contracts/src/presence-status/index.d.ts +1 -1
  25. package/dist/api-contracts/src/presence-status/index.d.ts.map +1 -1
  26. package/dist/api-contracts/src/telegram/index.d.ts +14 -14
  27. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +0 -430
  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 +0 -3
  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 +0 -3
  32. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
  33. package/dist/api-contracts/src/viber/index.d.ts +14 -14
  34. package/dist/api-contracts/src/webchat/index.d.ts +14 -14
  35. package/dist/api-contracts/src/whatsapp/index.d.ts +14 -14
  36. package/dist/api-contracts/src/workflow-rule/index.d.ts +15 -15
  37. package/dist/index.js +1608 -1610
  38. package/dist/index.js.map +1 -1
  39. package/dist/index.mjs +1607 -1610
  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;
@@ -14440,7 +14527,7 @@ export declare const apiContract: {
14440
14527
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
14441
14528
  lastMessage: import("zod").ZodString;
14442
14529
  handleTime: import("zod").ZodNumber;
14443
- closeAt: import("zod").ZodDate;
14530
+ closedAt: import("zod").ZodDate;
14444
14531
  unreadCount: import("zod").ZodNumber;
14445
14532
  firstResponseAt: import("zod").ZodDate;
14446
14533
  firstResponseTime: import("zod").ZodNumber;
@@ -16632,7 +16719,7 @@ export declare const apiContract: {
16632
16719
  firstResponseTime: number;
16633
16720
  lastMessage: string;
16634
16721
  handleTime: number;
16635
- closeAt: Date;
16722
+ closedAt: Date;
16636
16723
  unreadCount: number;
16637
16724
  firstResponseAt: Date;
16638
16725
  isLatest: boolean;
@@ -16960,7 +17047,7 @@ export declare const apiContract: {
16960
17047
  firstResponseTime: number;
16961
17048
  lastMessage: string;
16962
17049
  handleTime: number;
16963
- closeAt: Date;
17050
+ closedAt: Date;
16964
17051
  unreadCount: number;
16965
17052
  firstResponseAt: Date;
16966
17053
  isLatest: boolean;
@@ -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;
@@ -21149,7 +21246,7 @@ export declare const apiContract: {
21149
21246
  firstResponseTime: number;
21150
21247
  lastMessage: string;
21151
21248
  handleTime: number;
21152
- closeAt: Date;
21249
+ closedAt: Date;
21153
21250
  unreadCount: number;
21154
21251
  firstResponseAt: Date;
21155
21252
  isLatest: boolean;
@@ -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;
@@ -22092,7 +22193,7 @@ export declare const apiContract: {
22092
22193
  firstResponseTime: number;
22093
22194
  lastMessage: string;
22094
22195
  handleTime: number;
22095
- closeAt: Date;
22196
+ closedAt: Date;
22096
22197
  unreadCount: number;
22097
22198
  firstResponseAt: Date;
22098
22199
  isLatest: boolean;
@@ -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;
@@ -23041,7 +23146,7 @@ export declare const apiContract: {
23041
23146
  firstResponseTime: number;
23042
23147
  lastMessage: string;
23043
23148
  handleTime: number;
23044
- closeAt: Date;
23149
+ closedAt: Date;
23045
23150
  unreadCount: number;
23046
23151
  firstResponseAt: Date;
23047
23152
  isLatest: boolean;
@@ -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;
@@ -23990,7 +24099,7 @@ export declare const apiContract: {
23990
24099
  firstResponseTime: number;
23991
24100
  lastMessage: string;
23992
24101
  handleTime: number;
23993
- closeAt: Date;
24102
+ closedAt: Date;
23994
24103
  unreadCount: number;
23995
24104
  firstResponseAt: Date;
23996
24105
  isLatest: boolean;
@@ -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;
@@ -24628,19 +24741,6 @@ export declare const apiContract: {
24628
24741
  email: import("zod").ZodOptional<import("zod").ZodString>;
24629
24742
  pageSize: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
24630
24743
  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
24744
  company: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
24645
24745
  notes: import("zod").ZodOptional<import("zod").ZodString>;
24646
24746
  tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
@@ -24656,6 +24756,32 @@ export declare const apiContract: {
24656
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>>>;
24657
24757
  sla: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"meet">, import("zod").ZodLiteral<"unmeet">]>>;
24658
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">>;
24659
24785
  fileExtension: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"csv">, import("zod").ZodLiteral<"xlsx">]>>>;
24660
24786
  }, "strip", import("zod").ZodTypeAny, {
24661
24787
  name?: string | undefined;
@@ -24667,11 +24793,6 @@ export declare const apiContract: {
24667
24793
  email?: string | undefined;
24668
24794
  pageSize?: number | undefined;
24669
24795
  phone?: string | undefined;
24670
- customFields?: {
24671
- value: (string | string[]) & (string | string[] | undefined);
24672
- attributeId: string;
24673
- type?: string | undefined;
24674
- }[] | undefined;
24675
24796
  company?: string[] | undefined;
24676
24797
  notes?: string | undefined;
24677
24798
  tags?: string[] | undefined;
@@ -24687,6 +24808,16 @@ export declare const apiContract: {
24687
24808
  agentIds?: string[] | undefined;
24688
24809
  sla?: "meet" | "unmeet" | undefined;
24689
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;
24690
24821
  fileExtension?: "csv" | "xlsx" | undefined;
24691
24822
  }, {
24692
24823
  name?: string | undefined;
@@ -24698,11 +24829,6 @@ export declare const apiContract: {
24698
24829
  email?: string | undefined;
24699
24830
  pageSize?: number | undefined;
24700
24831
  phone?: string | undefined;
24701
- customFields?: {
24702
- value: (string | string[]) & (string | string[] | undefined);
24703
- attributeId: string;
24704
- type?: string | undefined;
24705
- }[] | undefined;
24706
24832
  company?: string[] | undefined;
24707
24833
  notes?: string | undefined;
24708
24834
  tags?: string[] | undefined;
@@ -24718,6 +24844,16 @@ export declare const apiContract: {
24718
24844
  agentIds?: string[] | Record<string, string> | undefined;
24719
24845
  sla?: "meet" | "unmeet" | undefined;
24720
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;
24721
24857
  fileExtension?: "csv" | "xlsx" | undefined;
24722
24858
  }>;
24723
24859
  responses: {
@@ -24733,7 +24869,7 @@ export declare const apiContract: {
24733
24869
  error?: any;
24734
24870
  }>;
24735
24871
  };
24736
- path: "ms/cx-logs/export";
24872
+ path: "/ms/cx-logs/export";
24737
24873
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24738
24874
  'x-tenant': import("zod").ZodString;
24739
24875
  'x-service-token': import("zod").ZodString;
@@ -24778,7 +24914,7 @@ export declare const apiContract: {
24778
24914
  error?: any;
24779
24915
  }>;
24780
24916
  };
24781
- path: "ms/cx-logs/sync-sla";
24917
+ path: "/ms/cx-logs/sync-sla";
24782
24918
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24783
24919
  'x-tenant': import("zod").ZodString;
24784
24920
  'x-service-token': import("zod").ZodString;
@@ -24841,7 +24977,7 @@ export declare const apiContract: {
24841
24977
  error?: any;
24842
24978
  }>;
24843
24979
  };
24844
- path: "ms/cx-logs";
24980
+ path: "/ms/cx-logs";
24845
24981
  headers: import("zod").ZodObject<{
24846
24982
  'x-tenant': import("zod").ZodString;
24847
24983
  'x-code': import("zod").ZodOptional<import("zod").ZodString>;
@@ -36578,425 +36714,6 @@ export declare const apiContract: {
36578
36714
  };
36579
36715
  };
36580
36716
  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
36717
  getAgentStatus: {
37001
36718
  summary: "Check and update user agent status before getting from telephony server.";
37002
36719
  method: "GET";
@@ -37251,7 +36968,6 @@ export declare const apiContract: {
37251
36968
  displayName: string;
37252
36969
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37253
36970
  }>;
37254
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37255
36971
  }, "strip", import("zod").ZodTypeAny, {
37256
36972
  id: string;
37257
36973
  user: {
@@ -37313,7 +37029,6 @@ export declare const apiContract: {
37313
37029
  displayName: string;
37314
37030
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37315
37031
  };
37316
- customPresenceStatus?: string | null | undefined;
37317
37032
  }, {
37318
37033
  id: string;
37319
37034
  user: {
@@ -37375,7 +37090,6 @@ export declare const apiContract: {
37375
37090
  displayName: string;
37376
37091
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37377
37092
  };
37378
- customPresenceStatus?: string | null | undefined;
37379
37093
  }>;
37380
37094
  400: import("zod").ZodObject<{
37381
37095
  message: import("zod").ZodString;
@@ -37427,18 +37141,15 @@ export declare const apiContract: {
37427
37141
  body: import("zod").ZodObject<{
37428
37142
  userId: import("zod").ZodString;
37429
37143
  presenceStatusId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37430
- customPreseneStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37431
37144
  reason: import("zod").ZodString;
37432
37145
  }, "strip", import("zod").ZodTypeAny, {
37433
37146
  reason: string;
37434
37147
  userId: string;
37435
37148
  presenceStatusId?: string | null | undefined;
37436
- customPreseneStatus?: string | null | undefined;
37437
37149
  }, {
37438
37150
  reason: string;
37439
37151
  userId: string;
37440
37152
  presenceStatusId?: string | null | undefined;
37441
- customPreseneStatus?: string | null | undefined;
37442
37153
  }>;
37443
37154
  summary: "Update presence status";
37444
37155
  method: "POST";
@@ -37688,7 +37399,6 @@ export declare const apiContract: {
37688
37399
  displayName: string;
37689
37400
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37690
37401
  }>;
37691
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37692
37402
  }, "strip", import("zod").ZodTypeAny, {
37693
37403
  id: string;
37694
37404
  user: {
@@ -37750,7 +37460,6 @@ export declare const apiContract: {
37750
37460
  displayName: string;
37751
37461
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37752
37462
  };
37753
- customPresenceStatus?: string | null | undefined;
37754
37463
  }, {
37755
37464
  id: string;
37756
37465
  user: {
@@ -37812,7 +37521,6 @@ export declare const apiContract: {
37812
37521
  displayName: string;
37813
37522
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37814
37523
  };
37815
- customPresenceStatus?: string | null | undefined;
37816
37524
  }>;
37817
37525
  }, "strip", import("zod").ZodTypeAny, {
37818
37526
  requestId: string;
@@ -37877,7 +37585,6 @@ export declare const apiContract: {
37877
37585
  displayName: string;
37878
37586
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37879
37587
  };
37880
- customPresenceStatus?: string | null | undefined;
37881
37588
  };
37882
37589
  }, {
37883
37590
  requestId: string;
@@ -37942,7 +37649,6 @@ export declare const apiContract: {
37942
37649
  displayName: string;
37943
37650
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37944
37651
  };
37945
- customPresenceStatus?: string | null | undefined;
37946
37652
  };
37947
37653
  }>;
37948
37654
  400: import("zod").ZodObject<{
@@ -94384,6 +94090,7 @@ export declare const platformContract: {
94384
94090
  firstResponseTime: number;
94385
94091
  lastMessage: string;
94386
94092
  handleTime: number;
94093
+ closedAt: Date;
94387
94094
  unreadCount: number;
94388
94095
  firstResponseAt: Date;
94389
94096
  isLatest: boolean;
@@ -94558,7 +94265,6 @@ export declare const platformContract: {
94558
94265
  telephonySignature: string | null;
94559
94266
  };
94560
94267
  };
94561
- closedAt: Date;
94562
94268
  lastMessageAt: Date | null;
94563
94269
  isBotRoom: boolean;
94564
94270
  csatStatus: string | null;
@@ -94820,6 +94526,7 @@ export declare const platformContract: {
94820
94526
  firstResponseTime: number;
94821
94527
  lastMessage: string;
94822
94528
  handleTime: number;
94529
+ closedAt: Date;
94823
94530
  unreadCount: number;
94824
94531
  firstResponseAt: Date;
94825
94532
  isLatest: boolean;
@@ -94994,7 +94701,6 @@ export declare const platformContract: {
94994
94701
  telephonySignature: string | null;
94995
94702
  };
94996
94703
  };
94997
- closedAt: Date;
94998
94704
  lastMessageAt: Date | null;
94999
94705
  isBotRoom: boolean;
95000
94706
  csatStatus: string | null;
@@ -99118,6 +98824,7 @@ export declare const platformContract: {
99118
98824
  firstResponseTime: number;
99119
98825
  lastMessage: string;
99120
98826
  handleTime: number;
98827
+ closedAt: Date;
99121
98828
  unreadCount: number;
99122
98829
  firstResponseAt: Date;
99123
98830
  isLatest: boolean;
@@ -99292,7 +98999,6 @@ export declare const platformContract: {
99292
98999
  telephonySignature: string | null;
99293
99000
  };
99294
99001
  };
99295
- closedAt: Date;
99296
99002
  lastMessageAt: Date | null;
99297
99003
  isBotRoom: boolean;
99298
99004
  csatStatus: string | null;
@@ -99554,6 +99260,7 @@ export declare const platformContract: {
99554
99260
  firstResponseTime: number;
99555
99261
  lastMessage: string;
99556
99262
  handleTime: number;
99263
+ closedAt: Date;
99557
99264
  unreadCount: number;
99558
99265
  firstResponseAt: Date;
99559
99266
  isLatest: boolean;
@@ -99728,7 +99435,6 @@ export declare const platformContract: {
99728
99435
  telephonySignature: string | null;
99729
99436
  };
99730
99437
  };
99731
- closedAt: Date;
99732
99438
  lastMessageAt: Date | null;
99733
99439
  isBotRoom: boolean;
99734
99440
  csatStatus: string | null;
@@ -101763,6 +101469,7 @@ export declare const platformContract: {
101763
101469
  firstResponseTime: number;
101764
101470
  lastMessage: string;
101765
101471
  handleTime: number;
101472
+ closedAt: Date;
101766
101473
  unreadCount: number;
101767
101474
  firstResponseAt: Date;
101768
101475
  isLatest: boolean;
@@ -101937,7 +101644,6 @@ export declare const platformContract: {
101937
101644
  telephonySignature: string | null;
101938
101645
  };
101939
101646
  };
101940
- closedAt: Date;
101941
101647
  lastMessageAt: Date | null;
101942
101648
  isBotRoom: boolean;
101943
101649
  csatStatus: string | null;
@@ -102536,6 +102242,7 @@ export declare const platformContract: {
102536
102242
  firstResponseTime: number;
102537
102243
  lastMessage: string;
102538
102244
  handleTime: number;
102245
+ closedAt: Date;
102539
102246
  unreadCount: number;
102540
102247
  firstResponseAt: Date;
102541
102248
  isLatest: boolean;
@@ -102710,7 +102417,6 @@ export declare const platformContract: {
102710
102417
  telephonySignature: string | null;
102711
102418
  };
102712
102419
  };
102713
- closedAt: Date;
102714
102420
  lastMessageAt: Date | null;
102715
102421
  isBotRoom: boolean;
102716
102422
  csatStatus: string | null;
@@ -103310,6 +103016,7 @@ export declare const platformContract: {
103310
103016
  firstResponseTime: number;
103311
103017
  lastMessage: string;
103312
103018
  handleTime: number;
103019
+ closedAt: Date;
103313
103020
  unreadCount: number;
103314
103021
  firstResponseAt: Date;
103315
103022
  isLatest: boolean;
@@ -103484,7 +103191,6 @@ export declare const platformContract: {
103484
103191
  telephonySignature: string | null;
103485
103192
  };
103486
103193
  };
103487
- closedAt: Date;
103488
103194
  lastMessageAt: Date | null;
103489
103195
  isBotRoom: boolean;
103490
103196
  csatStatus: string | null;
@@ -104083,6 +103789,7 @@ export declare const platformContract: {
104083
103789
  firstResponseTime: number;
104084
103790
  lastMessage: string;
104085
103791
  handleTime: number;
103792
+ closedAt: Date;
104086
103793
  unreadCount: number;
104087
103794
  firstResponseAt: Date;
104088
103795
  isLatest: boolean;
@@ -104257,7 +103964,6 @@ export declare const platformContract: {
104257
103964
  telephonySignature: string | null;
104258
103965
  };
104259
103966
  };
104260
- closedAt: Date;
104261
103967
  lastMessageAt: Date | null;
104262
103968
  isBotRoom: boolean;
104263
103969
  csatStatus: string | null;
@@ -104857,6 +104563,7 @@ export declare const platformContract: {
104857
104563
  firstResponseTime: number;
104858
104564
  lastMessage: string;
104859
104565
  handleTime: number;
104566
+ closedAt: Date;
104860
104567
  unreadCount: number;
104861
104568
  firstResponseAt: Date;
104862
104569
  isLatest: boolean;
@@ -105031,7 +104738,6 @@ export declare const platformContract: {
105031
104738
  telephonySignature: string | null;
105032
104739
  };
105033
104740
  };
105034
- closedAt: Date;
105035
104741
  lastMessageAt: Date | null;
105036
104742
  isBotRoom: boolean;
105037
104743
  csatStatus: string | null;
@@ -105630,6 +105336,7 @@ export declare const platformContract: {
105630
105336
  firstResponseTime: number;
105631
105337
  lastMessage: string;
105632
105338
  handleTime: number;
105339
+ closedAt: Date;
105633
105340
  unreadCount: number;
105634
105341
  firstResponseAt: Date;
105635
105342
  isLatest: boolean;
@@ -105804,7 +105511,6 @@ export declare const platformContract: {
105804
105511
  telephonySignature: string | null;
105805
105512
  };
105806
105513
  };
105807
- closedAt: Date;
105808
105514
  lastMessageAt: Date | null;
105809
105515
  isBotRoom: boolean;
105810
105516
  csatStatus: string | null;
@@ -106406,6 +106112,7 @@ export declare const platformContract: {
106406
106112
  firstResponseTime: number;
106407
106113
  lastMessage: string;
106408
106114
  handleTime: number;
106115
+ closedAt: Date;
106409
106116
  unreadCount: number;
106410
106117
  firstResponseAt: Date;
106411
106118
  isLatest: boolean;
@@ -106580,7 +106287,6 @@ export declare const platformContract: {
106580
106287
  telephonySignature: string | null;
106581
106288
  };
106582
106289
  };
106583
- closedAt: Date;
106584
106290
  lastMessageAt: Date | null;
106585
106291
  isBotRoom: boolean;
106586
106292
  csatStatus: string | null;
@@ -107179,6 +106885,7 @@ export declare const platformContract: {
107179
106885
  firstResponseTime: number;
107180
106886
  lastMessage: string;
107181
106887
  handleTime: number;
106888
+ closedAt: Date;
107182
106889
  unreadCount: number;
107183
106890
  firstResponseAt: Date;
107184
106891
  isLatest: boolean;
@@ -107353,7 +107060,6 @@ export declare const platformContract: {
107353
107060
  telephonySignature: string | null;
107354
107061
  };
107355
107062
  };
107356
- closedAt: Date;
107357
107063
  lastMessageAt: Date | null;
107358
107064
  isBotRoom: boolean;
107359
107065
  csatStatus: string | null;
@@ -107956,6 +107662,7 @@ export declare const platformContract: {
107956
107662
  firstResponseTime: number;
107957
107663
  lastMessage: string;
107958
107664
  handleTime: number;
107665
+ closedAt: Date;
107959
107666
  unreadCount: number;
107960
107667
  firstResponseAt: Date;
107961
107668
  isLatest: boolean;
@@ -108130,7 +107837,6 @@ export declare const platformContract: {
108130
107837
  telephonySignature: string | null;
108131
107838
  };
108132
107839
  };
108133
- closedAt: Date;
108134
107840
  lastMessageAt: Date | null;
108135
107841
  isBotRoom: boolean;
108136
107842
  csatStatus: string | null;
@@ -108729,6 +108435,7 @@ export declare const platformContract: {
108729
108435
  firstResponseTime: number;
108730
108436
  lastMessage: string;
108731
108437
  handleTime: number;
108438
+ closedAt: Date;
108732
108439
  unreadCount: number;
108733
108440
  firstResponseAt: Date;
108734
108441
  isLatest: boolean;
@@ -108903,7 +108610,6 @@ export declare const platformContract: {
108903
108610
  telephonySignature: string | null;
108904
108611
  };
108905
108612
  };
108906
- closedAt: Date;
108907
108613
  lastMessageAt: Date | null;
108908
108614
  isBotRoom: boolean;
108909
108615
  csatStatus: string | null;
@@ -116114,6 +115820,7 @@ export declare const platformLineContract: {
116114
115820
  firstResponseTime: number;
116115
115821
  lastMessage: string;
116116
115822
  handleTime: number;
115823
+ closedAt: Date;
116117
115824
  unreadCount: number;
116118
115825
  firstResponseAt: Date;
116119
115826
  isLatest: boolean;
@@ -116288,7 +115995,6 @@ export declare const platformLineContract: {
116288
115995
  telephonySignature: string | null;
116289
115996
  };
116290
115997
  };
116291
- closedAt: Date;
116292
115998
  lastMessageAt: Date | null;
116293
115999
  isBotRoom: boolean;
116294
116000
  csatStatus: string | null;
@@ -116550,6 +116256,7 @@ export declare const platformLineContract: {
116550
116256
  firstResponseTime: number;
116551
116257
  lastMessage: string;
116552
116258
  handleTime: number;
116259
+ closedAt: Date;
116553
116260
  unreadCount: number;
116554
116261
  firstResponseAt: Date;
116555
116262
  isLatest: boolean;
@@ -116724,7 +116431,6 @@ export declare const platformLineContract: {
116724
116431
  telephonySignature: string | null;
116725
116432
  };
116726
116433
  };
116727
- closedAt: Date;
116728
116434
  lastMessageAt: Date | null;
116729
116435
  isBotRoom: boolean;
116730
116436
  csatStatus: string | null;
@@ -120848,6 +120554,7 @@ export declare const platformLineContract: {
120848
120554
  firstResponseTime: number;
120849
120555
  lastMessage: string;
120850
120556
  handleTime: number;
120557
+ closedAt: Date;
120851
120558
  unreadCount: number;
120852
120559
  firstResponseAt: Date;
120853
120560
  isLatest: boolean;
@@ -121022,7 +120729,6 @@ export declare const platformLineContract: {
121022
120729
  telephonySignature: string | null;
121023
120730
  };
121024
120731
  };
121025
- closedAt: Date;
121026
120732
  lastMessageAt: Date | null;
121027
120733
  isBotRoom: boolean;
121028
120734
  csatStatus: string | null;
@@ -121284,6 +120990,7 @@ export declare const platformLineContract: {
121284
120990
  firstResponseTime: number;
121285
120991
  lastMessage: string;
121286
120992
  handleTime: number;
120993
+ closedAt: Date;
121287
120994
  unreadCount: number;
121288
120995
  firstResponseAt: Date;
121289
120996
  isLatest: boolean;
@@ -121458,7 +121165,6 @@ export declare const platformLineContract: {
121458
121165
  telephonySignature: string | null;
121459
121166
  };
121460
121167
  };
121461
- closedAt: Date;
121462
121168
  lastMessageAt: Date | null;
121463
121169
  isBotRoom: boolean;
121464
121170
  csatStatus: string | null;
@@ -123493,6 +123199,7 @@ export declare const platformLineContract: {
123493
123199
  firstResponseTime: number;
123494
123200
  lastMessage: string;
123495
123201
  handleTime: number;
123202
+ closedAt: Date;
123496
123203
  unreadCount: number;
123497
123204
  firstResponseAt: Date;
123498
123205
  isLatest: boolean;
@@ -123667,7 +123374,6 @@ export declare const platformLineContract: {
123667
123374
  telephonySignature: string | null;
123668
123375
  };
123669
123376
  };
123670
- closedAt: Date;
123671
123377
  lastMessageAt: Date | null;
123672
123378
  isBotRoom: boolean;
123673
123379
  csatStatus: string | null;
@@ -124266,6 +123972,7 @@ export declare const platformLineContract: {
124266
123972
  firstResponseTime: number;
124267
123973
  lastMessage: string;
124268
123974
  handleTime: number;
123975
+ closedAt: Date;
124269
123976
  unreadCount: number;
124270
123977
  firstResponseAt: Date;
124271
123978
  isLatest: boolean;
@@ -124440,7 +124147,6 @@ export declare const platformLineContract: {
124440
124147
  telephonySignature: string | null;
124441
124148
  };
124442
124149
  };
124443
- closedAt: Date;
124444
124150
  lastMessageAt: Date | null;
124445
124151
  isBotRoom: boolean;
124446
124152
  csatStatus: string | null;
@@ -125040,6 +124746,7 @@ export declare const platformLineContract: {
125040
124746
  firstResponseTime: number;
125041
124747
  lastMessage: string;
125042
124748
  handleTime: number;
124749
+ closedAt: Date;
125043
124750
  unreadCount: number;
125044
124751
  firstResponseAt: Date;
125045
124752
  isLatest: boolean;
@@ -125214,7 +124921,6 @@ export declare const platformLineContract: {
125214
124921
  telephonySignature: string | null;
125215
124922
  };
125216
124923
  };
125217
- closedAt: Date;
125218
124924
  lastMessageAt: Date | null;
125219
124925
  isBotRoom: boolean;
125220
124926
  csatStatus: string | null;
@@ -125813,6 +125519,7 @@ export declare const platformLineContract: {
125813
125519
  firstResponseTime: number;
125814
125520
  lastMessage: string;
125815
125521
  handleTime: number;
125522
+ closedAt: Date;
125816
125523
  unreadCount: number;
125817
125524
  firstResponseAt: Date;
125818
125525
  isLatest: boolean;
@@ -125987,7 +125694,6 @@ export declare const platformLineContract: {
125987
125694
  telephonySignature: string | null;
125988
125695
  };
125989
125696
  };
125990
- closedAt: Date;
125991
125697
  lastMessageAt: Date | null;
125992
125698
  isBotRoom: boolean;
125993
125699
  csatStatus: string | null;
@@ -126587,6 +126293,7 @@ export declare const platformLineContract: {
126587
126293
  firstResponseTime: number;
126588
126294
  lastMessage: string;
126589
126295
  handleTime: number;
126296
+ closedAt: Date;
126590
126297
  unreadCount: number;
126591
126298
  firstResponseAt: Date;
126592
126299
  isLatest: boolean;
@@ -126761,7 +126468,6 @@ export declare const platformLineContract: {
126761
126468
  telephonySignature: string | null;
126762
126469
  };
126763
126470
  };
126764
- closedAt: Date;
126765
126471
  lastMessageAt: Date | null;
126766
126472
  isBotRoom: boolean;
126767
126473
  csatStatus: string | null;
@@ -127360,6 +127066,7 @@ export declare const platformLineContract: {
127360
127066
  firstResponseTime: number;
127361
127067
  lastMessage: string;
127362
127068
  handleTime: number;
127069
+ closedAt: Date;
127363
127070
  unreadCount: number;
127364
127071
  firstResponseAt: Date;
127365
127072
  isLatest: boolean;
@@ -127534,7 +127241,6 @@ export declare const platformLineContract: {
127534
127241
  telephonySignature: string | null;
127535
127242
  };
127536
127243
  };
127537
- closedAt: Date;
127538
127244
  lastMessageAt: Date | null;
127539
127245
  isBotRoom: boolean;
127540
127246
  csatStatus: string | null;
@@ -128136,6 +127842,7 @@ export declare const platformLineContract: {
128136
127842
  firstResponseTime: number;
128137
127843
  lastMessage: string;
128138
127844
  handleTime: number;
127845
+ closedAt: Date;
128139
127846
  unreadCount: number;
128140
127847
  firstResponseAt: Date;
128141
127848
  isLatest: boolean;
@@ -128310,7 +128017,6 @@ export declare const platformLineContract: {
128310
128017
  telephonySignature: string | null;
128311
128018
  };
128312
128019
  };
128313
- closedAt: Date;
128314
128020
  lastMessageAt: Date | null;
128315
128021
  isBotRoom: boolean;
128316
128022
  csatStatus: string | null;
@@ -128909,6 +128615,7 @@ export declare const platformLineContract: {
128909
128615
  firstResponseTime: number;
128910
128616
  lastMessage: string;
128911
128617
  handleTime: number;
128618
+ closedAt: Date;
128912
128619
  unreadCount: number;
128913
128620
  firstResponseAt: Date;
128914
128621
  isLatest: boolean;
@@ -129083,7 +128790,6 @@ export declare const platformLineContract: {
129083
128790
  telephonySignature: string | null;
129084
128791
  };
129085
128792
  };
129086
- closedAt: Date;
129087
128793
  lastMessageAt: Date | null;
129088
128794
  isBotRoom: boolean;
129089
128795
  csatStatus: string | null;
@@ -129686,6 +129392,7 @@ export declare const platformLineContract: {
129686
129392
  firstResponseTime: number;
129687
129393
  lastMessage: string;
129688
129394
  handleTime: number;
129395
+ closedAt: Date;
129689
129396
  unreadCount: number;
129690
129397
  firstResponseAt: Date;
129691
129398
  isLatest: boolean;
@@ -129860,7 +129567,6 @@ export declare const platformLineContract: {
129860
129567
  telephonySignature: string | null;
129861
129568
  };
129862
129569
  };
129863
- closedAt: Date;
129864
129570
  lastMessageAt: Date | null;
129865
129571
  isBotRoom: boolean;
129866
129572
  csatStatus: string | null;
@@ -130459,6 +130165,7 @@ export declare const platformLineContract: {
130459
130165
  firstResponseTime: number;
130460
130166
  lastMessage: string;
130461
130167
  handleTime: number;
130168
+ closedAt: Date;
130462
130169
  unreadCount: number;
130463
130170
  firstResponseAt: Date;
130464
130171
  isLatest: boolean;
@@ -130633,7 +130340,6 @@ export declare const platformLineContract: {
130633
130340
  telephonySignature: string | null;
130634
130341
  };
130635
130342
  };
130636
- closedAt: Date;
130637
130343
  lastMessageAt: Date | null;
130638
130344
  isBotRoom: boolean;
130639
130345
  csatStatus: string | null;
@@ -138077,6 +137783,7 @@ export declare const platformTelegramContract: {
138077
137783
  firstResponseTime: number;
138078
137784
  lastMessage: string;
138079
137785
  handleTime: number;
137786
+ closedAt: Date;
138080
137787
  unreadCount: number;
138081
137788
  firstResponseAt: Date;
138082
137789
  isLatest: boolean;
@@ -138251,7 +137958,6 @@ export declare const platformTelegramContract: {
138251
137958
  telephonySignature: string | null;
138252
137959
  };
138253
137960
  };
138254
- closedAt: Date;
138255
137961
  lastMessageAt: Date | null;
138256
137962
  isBotRoom: boolean;
138257
137963
  csatStatus: string | null;
@@ -138513,6 +138219,7 @@ export declare const platformTelegramContract: {
138513
138219
  firstResponseTime: number;
138514
138220
  lastMessage: string;
138515
138221
  handleTime: number;
138222
+ closedAt: Date;
138516
138223
  unreadCount: number;
138517
138224
  firstResponseAt: Date;
138518
138225
  isLatest: boolean;
@@ -138687,7 +138394,6 @@ export declare const platformTelegramContract: {
138687
138394
  telephonySignature: string | null;
138688
138395
  };
138689
138396
  };
138690
- closedAt: Date;
138691
138397
  lastMessageAt: Date | null;
138692
138398
  isBotRoom: boolean;
138693
138399
  csatStatus: string | null;
@@ -142811,6 +142517,7 @@ export declare const platformTelegramContract: {
142811
142517
  firstResponseTime: number;
142812
142518
  lastMessage: string;
142813
142519
  handleTime: number;
142520
+ closedAt: Date;
142814
142521
  unreadCount: number;
142815
142522
  firstResponseAt: Date;
142816
142523
  isLatest: boolean;
@@ -142985,7 +142692,6 @@ export declare const platformTelegramContract: {
142985
142692
  telephonySignature: string | null;
142986
142693
  };
142987
142694
  };
142988
- closedAt: Date;
142989
142695
  lastMessageAt: Date | null;
142990
142696
  isBotRoom: boolean;
142991
142697
  csatStatus: string | null;
@@ -143247,6 +142953,7 @@ export declare const platformTelegramContract: {
143247
142953
  firstResponseTime: number;
143248
142954
  lastMessage: string;
143249
142955
  handleTime: number;
142956
+ closedAt: Date;
143250
142957
  unreadCount: number;
143251
142958
  firstResponseAt: Date;
143252
142959
  isLatest: boolean;
@@ -143421,7 +143128,6 @@ export declare const platformTelegramContract: {
143421
143128
  telephonySignature: string | null;
143422
143129
  };
143423
143130
  };
143424
- closedAt: Date;
143425
143131
  lastMessageAt: Date | null;
143426
143132
  isBotRoom: boolean;
143427
143133
  csatStatus: string | null;
@@ -145456,6 +145162,7 @@ export declare const platformTelegramContract: {
145456
145162
  firstResponseTime: number;
145457
145163
  lastMessage: string;
145458
145164
  handleTime: number;
145165
+ closedAt: Date;
145459
145166
  unreadCount: number;
145460
145167
  firstResponseAt: Date;
145461
145168
  isLatest: boolean;
@@ -145630,7 +145337,6 @@ export declare const platformTelegramContract: {
145630
145337
  telephonySignature: string | null;
145631
145338
  };
145632
145339
  };
145633
- closedAt: Date;
145634
145340
  lastMessageAt: Date | null;
145635
145341
  isBotRoom: boolean;
145636
145342
  csatStatus: string | null;
@@ -146229,6 +145935,7 @@ export declare const platformTelegramContract: {
146229
145935
  firstResponseTime: number;
146230
145936
  lastMessage: string;
146231
145937
  handleTime: number;
145938
+ closedAt: Date;
146232
145939
  unreadCount: number;
146233
145940
  firstResponseAt: Date;
146234
145941
  isLatest: boolean;
@@ -146403,7 +146110,6 @@ export declare const platformTelegramContract: {
146403
146110
  telephonySignature: string | null;
146404
146111
  };
146405
146112
  };
146406
- closedAt: Date;
146407
146113
  lastMessageAt: Date | null;
146408
146114
  isBotRoom: boolean;
146409
146115
  csatStatus: string | null;
@@ -147003,6 +146709,7 @@ export declare const platformTelegramContract: {
147003
146709
  firstResponseTime: number;
147004
146710
  lastMessage: string;
147005
146711
  handleTime: number;
146712
+ closedAt: Date;
147006
146713
  unreadCount: number;
147007
146714
  firstResponseAt: Date;
147008
146715
  isLatest: boolean;
@@ -147177,7 +146884,6 @@ export declare const platformTelegramContract: {
147177
146884
  telephonySignature: string | null;
147178
146885
  };
147179
146886
  };
147180
- closedAt: Date;
147181
146887
  lastMessageAt: Date | null;
147182
146888
  isBotRoom: boolean;
147183
146889
  csatStatus: string | null;
@@ -147776,6 +147482,7 @@ export declare const platformTelegramContract: {
147776
147482
  firstResponseTime: number;
147777
147483
  lastMessage: string;
147778
147484
  handleTime: number;
147485
+ closedAt: Date;
147779
147486
  unreadCount: number;
147780
147487
  firstResponseAt: Date;
147781
147488
  isLatest: boolean;
@@ -147950,7 +147657,6 @@ export declare const platformTelegramContract: {
147950
147657
  telephonySignature: string | null;
147951
147658
  };
147952
147659
  };
147953
- closedAt: Date;
147954
147660
  lastMessageAt: Date | null;
147955
147661
  isBotRoom: boolean;
147956
147662
  csatStatus: string | null;
@@ -148550,6 +148256,7 @@ export declare const platformTelegramContract: {
148550
148256
  firstResponseTime: number;
148551
148257
  lastMessage: string;
148552
148258
  handleTime: number;
148259
+ closedAt: Date;
148553
148260
  unreadCount: number;
148554
148261
  firstResponseAt: Date;
148555
148262
  isLatest: boolean;
@@ -148724,7 +148431,6 @@ export declare const platformTelegramContract: {
148724
148431
  telephonySignature: string | null;
148725
148432
  };
148726
148433
  };
148727
- closedAt: Date;
148728
148434
  lastMessageAt: Date | null;
148729
148435
  isBotRoom: boolean;
148730
148436
  csatStatus: string | null;
@@ -149323,6 +149029,7 @@ export declare const platformTelegramContract: {
149323
149029
  firstResponseTime: number;
149324
149030
  lastMessage: string;
149325
149031
  handleTime: number;
149032
+ closedAt: Date;
149326
149033
  unreadCount: number;
149327
149034
  firstResponseAt: Date;
149328
149035
  isLatest: boolean;
@@ -149497,7 +149204,6 @@ export declare const platformTelegramContract: {
149497
149204
  telephonySignature: string | null;
149498
149205
  };
149499
149206
  };
149500
- closedAt: Date;
149501
149207
  lastMessageAt: Date | null;
149502
149208
  isBotRoom: boolean;
149503
149209
  csatStatus: string | null;
@@ -150099,6 +149805,7 @@ export declare const platformTelegramContract: {
150099
149805
  firstResponseTime: number;
150100
149806
  lastMessage: string;
150101
149807
  handleTime: number;
149808
+ closedAt: Date;
150102
149809
  unreadCount: number;
150103
149810
  firstResponseAt: Date;
150104
149811
  isLatest: boolean;
@@ -150273,7 +149980,6 @@ export declare const platformTelegramContract: {
150273
149980
  telephonySignature: string | null;
150274
149981
  };
150275
149982
  };
150276
- closedAt: Date;
150277
149983
  lastMessageAt: Date | null;
150278
149984
  isBotRoom: boolean;
150279
149985
  csatStatus: string | null;
@@ -150872,6 +150578,7 @@ export declare const platformTelegramContract: {
150872
150578
  firstResponseTime: number;
150873
150579
  lastMessage: string;
150874
150580
  handleTime: number;
150581
+ closedAt: Date;
150875
150582
  unreadCount: number;
150876
150583
  firstResponseAt: Date;
150877
150584
  isLatest: boolean;
@@ -151046,7 +150753,6 @@ export declare const platformTelegramContract: {
151046
150753
  telephonySignature: string | null;
151047
150754
  };
151048
150755
  };
151049
- closedAt: Date;
151050
150756
  lastMessageAt: Date | null;
151051
150757
  isBotRoom: boolean;
151052
150758
  csatStatus: string | null;
@@ -151649,6 +151355,7 @@ export declare const platformTelegramContract: {
151649
151355
  firstResponseTime: number;
151650
151356
  lastMessage: string;
151651
151357
  handleTime: number;
151358
+ closedAt: Date;
151652
151359
  unreadCount: number;
151653
151360
  firstResponseAt: Date;
151654
151361
  isLatest: boolean;
@@ -151823,7 +151530,6 @@ export declare const platformTelegramContract: {
151823
151530
  telephonySignature: string | null;
151824
151531
  };
151825
151532
  };
151826
- closedAt: Date;
151827
151533
  lastMessageAt: Date | null;
151828
151534
  isBotRoom: boolean;
151829
151535
  csatStatus: string | null;
@@ -152422,6 +152128,7 @@ export declare const platformTelegramContract: {
152422
152128
  firstResponseTime: number;
152423
152129
  lastMessage: string;
152424
152130
  handleTime: number;
152131
+ closedAt: Date;
152425
152132
  unreadCount: number;
152426
152133
  firstResponseAt: Date;
152427
152134
  isLatest: boolean;
@@ -152596,7 +152303,6 @@ export declare const platformTelegramContract: {
152596
152303
  telephonySignature: string | null;
152597
152304
  };
152598
152305
  };
152599
- closedAt: Date;
152600
152306
  lastMessageAt: Date | null;
152601
152307
  isBotRoom: boolean;
152602
152308
  csatStatus: string | null;
@@ -158037,6 +157743,7 @@ export declare const platformMessengerContract: {
158037
157743
  firstResponseTime: number;
158038
157744
  lastMessage: string;
158039
157745
  handleTime: number;
157746
+ closedAt: Date;
158040
157747
  unreadCount: number;
158041
157748
  firstResponseAt: Date;
158042
157749
  isLatest: boolean;
@@ -158211,7 +157918,6 @@ export declare const platformMessengerContract: {
158211
157918
  telephonySignature: string | null;
158212
157919
  };
158213
157920
  };
158214
- closedAt: Date;
158215
157921
  lastMessageAt: Date | null;
158216
157922
  isBotRoom: boolean;
158217
157923
  csatStatus: string | null;
@@ -158473,6 +158179,7 @@ export declare const platformMessengerContract: {
158473
158179
  firstResponseTime: number;
158474
158180
  lastMessage: string;
158475
158181
  handleTime: number;
158182
+ closedAt: Date;
158476
158183
  unreadCount: number;
158477
158184
  firstResponseAt: Date;
158478
158185
  isLatest: boolean;
@@ -158647,7 +158354,6 @@ export declare const platformMessengerContract: {
158647
158354
  telephonySignature: string | null;
158648
158355
  };
158649
158356
  };
158650
- closedAt: Date;
158651
158357
  lastMessageAt: Date | null;
158652
158358
  isBotRoom: boolean;
158653
158359
  csatStatus: string | null;
@@ -162771,6 +162477,7 @@ export declare const platformMessengerContract: {
162771
162477
  firstResponseTime: number;
162772
162478
  lastMessage: string;
162773
162479
  handleTime: number;
162480
+ closedAt: Date;
162774
162481
  unreadCount: number;
162775
162482
  firstResponseAt: Date;
162776
162483
  isLatest: boolean;
@@ -162945,7 +162652,6 @@ export declare const platformMessengerContract: {
162945
162652
  telephonySignature: string | null;
162946
162653
  };
162947
162654
  };
162948
- closedAt: Date;
162949
162655
  lastMessageAt: Date | null;
162950
162656
  isBotRoom: boolean;
162951
162657
  csatStatus: string | null;
@@ -163207,6 +162913,7 @@ export declare const platformMessengerContract: {
163207
162913
  firstResponseTime: number;
163208
162914
  lastMessage: string;
163209
162915
  handleTime: number;
162916
+ closedAt: Date;
163210
162917
  unreadCount: number;
163211
162918
  firstResponseAt: Date;
163212
162919
  isLatest: boolean;
@@ -163381,7 +163088,6 @@ export declare const platformMessengerContract: {
163381
163088
  telephonySignature: string | null;
163382
163089
  };
163383
163090
  };
163384
- closedAt: Date;
163385
163091
  lastMessageAt: Date | null;
163386
163092
  isBotRoom: boolean;
163387
163093
  csatStatus: string | null;
@@ -165416,6 +165122,7 @@ export declare const platformMessengerContract: {
165416
165122
  firstResponseTime: number;
165417
165123
  lastMessage: string;
165418
165124
  handleTime: number;
165125
+ closedAt: Date;
165419
165126
  unreadCount: number;
165420
165127
  firstResponseAt: Date;
165421
165128
  isLatest: boolean;
@@ -165590,7 +165297,6 @@ export declare const platformMessengerContract: {
165590
165297
  telephonySignature: string | null;
165591
165298
  };
165592
165299
  };
165593
- closedAt: Date;
165594
165300
  lastMessageAt: Date | null;
165595
165301
  isBotRoom: boolean;
165596
165302
  csatStatus: string | null;
@@ -166189,6 +165895,7 @@ export declare const platformMessengerContract: {
166189
165895
  firstResponseTime: number;
166190
165896
  lastMessage: string;
166191
165897
  handleTime: number;
165898
+ closedAt: Date;
166192
165899
  unreadCount: number;
166193
165900
  firstResponseAt: Date;
166194
165901
  isLatest: boolean;
@@ -166363,7 +166070,6 @@ export declare const platformMessengerContract: {
166363
166070
  telephonySignature: string | null;
166364
166071
  };
166365
166072
  };
166366
- closedAt: Date;
166367
166073
  lastMessageAt: Date | null;
166368
166074
  isBotRoom: boolean;
166369
166075
  csatStatus: string | null;
@@ -166963,6 +166669,7 @@ export declare const platformMessengerContract: {
166963
166669
  firstResponseTime: number;
166964
166670
  lastMessage: string;
166965
166671
  handleTime: number;
166672
+ closedAt: Date;
166966
166673
  unreadCount: number;
166967
166674
  firstResponseAt: Date;
166968
166675
  isLatest: boolean;
@@ -167137,7 +166844,6 @@ export declare const platformMessengerContract: {
167137
166844
  telephonySignature: string | null;
167138
166845
  };
167139
166846
  };
167140
- closedAt: Date;
167141
166847
  lastMessageAt: Date | null;
167142
166848
  isBotRoom: boolean;
167143
166849
  csatStatus: string | null;
@@ -167736,6 +167442,7 @@ export declare const platformMessengerContract: {
167736
167442
  firstResponseTime: number;
167737
167443
  lastMessage: string;
167738
167444
  handleTime: number;
167445
+ closedAt: Date;
167739
167446
  unreadCount: number;
167740
167447
  firstResponseAt: Date;
167741
167448
  isLatest: boolean;
@@ -167910,7 +167617,6 @@ export declare const platformMessengerContract: {
167910
167617
  telephonySignature: string | null;
167911
167618
  };
167912
167619
  };
167913
- closedAt: Date;
167914
167620
  lastMessageAt: Date | null;
167915
167621
  isBotRoom: boolean;
167916
167622
  csatStatus: string | null;
@@ -168510,6 +168216,7 @@ export declare const platformMessengerContract: {
168510
168216
  firstResponseTime: number;
168511
168217
  lastMessage: string;
168512
168218
  handleTime: number;
168219
+ closedAt: Date;
168513
168220
  unreadCount: number;
168514
168221
  firstResponseAt: Date;
168515
168222
  isLatest: boolean;
@@ -168684,7 +168391,6 @@ export declare const platformMessengerContract: {
168684
168391
  telephonySignature: string | null;
168685
168392
  };
168686
168393
  };
168687
- closedAt: Date;
168688
168394
  lastMessageAt: Date | null;
168689
168395
  isBotRoom: boolean;
168690
168396
  csatStatus: string | null;
@@ -169283,6 +168989,7 @@ export declare const platformMessengerContract: {
169283
168989
  firstResponseTime: number;
169284
168990
  lastMessage: string;
169285
168991
  handleTime: number;
168992
+ closedAt: Date;
169286
168993
  unreadCount: number;
169287
168994
  firstResponseAt: Date;
169288
168995
  isLatest: boolean;
@@ -169457,7 +169164,6 @@ export declare const platformMessengerContract: {
169457
169164
  telephonySignature: string | null;
169458
169165
  };
169459
169166
  };
169460
- closedAt: Date;
169461
169167
  lastMessageAt: Date | null;
169462
169168
  isBotRoom: boolean;
169463
169169
  csatStatus: string | null;
@@ -170059,6 +169765,7 @@ export declare const platformMessengerContract: {
170059
169765
  firstResponseTime: number;
170060
169766
  lastMessage: string;
170061
169767
  handleTime: number;
169768
+ closedAt: Date;
170062
169769
  unreadCount: number;
170063
169770
  firstResponseAt: Date;
170064
169771
  isLatest: boolean;
@@ -170233,7 +169940,6 @@ export declare const platformMessengerContract: {
170233
169940
  telephonySignature: string | null;
170234
169941
  };
170235
169942
  };
170236
- closedAt: Date;
170237
169943
  lastMessageAt: Date | null;
170238
169944
  isBotRoom: boolean;
170239
169945
  csatStatus: string | null;
@@ -170832,6 +170538,7 @@ export declare const platformMessengerContract: {
170832
170538
  firstResponseTime: number;
170833
170539
  lastMessage: string;
170834
170540
  handleTime: number;
170541
+ closedAt: Date;
170835
170542
  unreadCount: number;
170836
170543
  firstResponseAt: Date;
170837
170544
  isLatest: boolean;
@@ -171006,7 +170713,6 @@ export declare const platformMessengerContract: {
171006
170713
  telephonySignature: string | null;
171007
170714
  };
171008
170715
  };
171009
- closedAt: Date;
171010
170716
  lastMessageAt: Date | null;
171011
170717
  isBotRoom: boolean;
171012
170718
  csatStatus: string | null;
@@ -171609,6 +171315,7 @@ export declare const platformMessengerContract: {
171609
171315
  firstResponseTime: number;
171610
171316
  lastMessage: string;
171611
171317
  handleTime: number;
171318
+ closedAt: Date;
171612
171319
  unreadCount: number;
171613
171320
  firstResponseAt: Date;
171614
171321
  isLatest: boolean;
@@ -171783,7 +171490,6 @@ export declare const platformMessengerContract: {
171783
171490
  telephonySignature: string | null;
171784
171491
  };
171785
171492
  };
171786
- closedAt: Date;
171787
171493
  lastMessageAt: Date | null;
171788
171494
  isBotRoom: boolean;
171789
171495
  csatStatus: string | null;
@@ -172382,6 +172088,7 @@ export declare const platformMessengerContract: {
172382
172088
  firstResponseTime: number;
172383
172089
  lastMessage: string;
172384
172090
  handleTime: number;
172091
+ closedAt: Date;
172385
172092
  unreadCount: number;
172386
172093
  firstResponseAt: Date;
172387
172094
  isLatest: boolean;
@@ -172556,7 +172263,6 @@ export declare const platformMessengerContract: {
172556
172263
  telephonySignature: string | null;
172557
172264
  };
172558
172265
  };
172559
- closedAt: Date;
172560
172266
  lastMessageAt: Date | null;
172561
172267
  isBotRoom: boolean;
172562
172268
  csatStatus: string | null;
@@ -180355,6 +180061,7 @@ export declare const platformInstagramContract: {
180355
180061
  firstResponseTime: number;
180356
180062
  lastMessage: string;
180357
180063
  handleTime: number;
180064
+ closedAt: Date;
180358
180065
  unreadCount: number;
180359
180066
  firstResponseAt: Date;
180360
180067
  isLatest: boolean;
@@ -180529,7 +180236,6 @@ export declare const platformInstagramContract: {
180529
180236
  telephonySignature: string | null;
180530
180237
  };
180531
180238
  };
180532
- closedAt: Date;
180533
180239
  lastMessageAt: Date | null;
180534
180240
  isBotRoom: boolean;
180535
180241
  csatStatus: string | null;
@@ -180791,6 +180497,7 @@ export declare const platformInstagramContract: {
180791
180497
  firstResponseTime: number;
180792
180498
  lastMessage: string;
180793
180499
  handleTime: number;
180500
+ closedAt: Date;
180794
180501
  unreadCount: number;
180795
180502
  firstResponseAt: Date;
180796
180503
  isLatest: boolean;
@@ -180965,7 +180672,6 @@ export declare const platformInstagramContract: {
180965
180672
  telephonySignature: string | null;
180966
180673
  };
180967
180674
  };
180968
- closedAt: Date;
180969
180675
  lastMessageAt: Date | null;
180970
180676
  isBotRoom: boolean;
180971
180677
  csatStatus: string | null;
@@ -185089,6 +184795,7 @@ export declare const platformInstagramContract: {
185089
184795
  firstResponseTime: number;
185090
184796
  lastMessage: string;
185091
184797
  handleTime: number;
184798
+ closedAt: Date;
185092
184799
  unreadCount: number;
185093
184800
  firstResponseAt: Date;
185094
184801
  isLatest: boolean;
@@ -185263,7 +184970,6 @@ export declare const platformInstagramContract: {
185263
184970
  telephonySignature: string | null;
185264
184971
  };
185265
184972
  };
185266
- closedAt: Date;
185267
184973
  lastMessageAt: Date | null;
185268
184974
  isBotRoom: boolean;
185269
184975
  csatStatus: string | null;
@@ -185525,6 +185231,7 @@ export declare const platformInstagramContract: {
185525
185231
  firstResponseTime: number;
185526
185232
  lastMessage: string;
185527
185233
  handleTime: number;
185234
+ closedAt: Date;
185528
185235
  unreadCount: number;
185529
185236
  firstResponseAt: Date;
185530
185237
  isLatest: boolean;
@@ -185699,7 +185406,6 @@ export declare const platformInstagramContract: {
185699
185406
  telephonySignature: string | null;
185700
185407
  };
185701
185408
  };
185702
- closedAt: Date;
185703
185409
  lastMessageAt: Date | null;
185704
185410
  isBotRoom: boolean;
185705
185411
  csatStatus: string | null;
@@ -187734,6 +187440,7 @@ export declare const platformInstagramContract: {
187734
187440
  firstResponseTime: number;
187735
187441
  lastMessage: string;
187736
187442
  handleTime: number;
187443
+ closedAt: Date;
187737
187444
  unreadCount: number;
187738
187445
  firstResponseAt: Date;
187739
187446
  isLatest: boolean;
@@ -187908,7 +187615,6 @@ export declare const platformInstagramContract: {
187908
187615
  telephonySignature: string | null;
187909
187616
  };
187910
187617
  };
187911
- closedAt: Date;
187912
187618
  lastMessageAt: Date | null;
187913
187619
  isBotRoom: boolean;
187914
187620
  csatStatus: string | null;
@@ -188507,6 +188213,7 @@ export declare const platformInstagramContract: {
188507
188213
  firstResponseTime: number;
188508
188214
  lastMessage: string;
188509
188215
  handleTime: number;
188216
+ closedAt: Date;
188510
188217
  unreadCount: number;
188511
188218
  firstResponseAt: Date;
188512
188219
  isLatest: boolean;
@@ -188681,7 +188388,6 @@ export declare const platformInstagramContract: {
188681
188388
  telephonySignature: string | null;
188682
188389
  };
188683
188390
  };
188684
- closedAt: Date;
188685
188391
  lastMessageAt: Date | null;
188686
188392
  isBotRoom: boolean;
188687
188393
  csatStatus: string | null;
@@ -189281,6 +188987,7 @@ export declare const platformInstagramContract: {
189281
188987
  firstResponseTime: number;
189282
188988
  lastMessage: string;
189283
188989
  handleTime: number;
188990
+ closedAt: Date;
189284
188991
  unreadCount: number;
189285
188992
  firstResponseAt: Date;
189286
188993
  isLatest: boolean;
@@ -189455,7 +189162,6 @@ export declare const platformInstagramContract: {
189455
189162
  telephonySignature: string | null;
189456
189163
  };
189457
189164
  };
189458
- closedAt: Date;
189459
189165
  lastMessageAt: Date | null;
189460
189166
  isBotRoom: boolean;
189461
189167
  csatStatus: string | null;
@@ -190054,6 +189760,7 @@ export declare const platformInstagramContract: {
190054
189760
  firstResponseTime: number;
190055
189761
  lastMessage: string;
190056
189762
  handleTime: number;
189763
+ closedAt: Date;
190057
189764
  unreadCount: number;
190058
189765
  firstResponseAt: Date;
190059
189766
  isLatest: boolean;
@@ -190228,7 +189935,6 @@ export declare const platformInstagramContract: {
190228
189935
  telephonySignature: string | null;
190229
189936
  };
190230
189937
  };
190231
- closedAt: Date;
190232
189938
  lastMessageAt: Date | null;
190233
189939
  isBotRoom: boolean;
190234
189940
  csatStatus: string | null;
@@ -190828,6 +190534,7 @@ export declare const platformInstagramContract: {
190828
190534
  firstResponseTime: number;
190829
190535
  lastMessage: string;
190830
190536
  handleTime: number;
190537
+ closedAt: Date;
190831
190538
  unreadCount: number;
190832
190539
  firstResponseAt: Date;
190833
190540
  isLatest: boolean;
@@ -191002,7 +190709,6 @@ export declare const platformInstagramContract: {
191002
190709
  telephonySignature: string | null;
191003
190710
  };
191004
190711
  };
191005
- closedAt: Date;
191006
190712
  lastMessageAt: Date | null;
191007
190713
  isBotRoom: boolean;
191008
190714
  csatStatus: string | null;
@@ -191601,6 +191307,7 @@ export declare const platformInstagramContract: {
191601
191307
  firstResponseTime: number;
191602
191308
  lastMessage: string;
191603
191309
  handleTime: number;
191310
+ closedAt: Date;
191604
191311
  unreadCount: number;
191605
191312
  firstResponseAt: Date;
191606
191313
  isLatest: boolean;
@@ -191775,7 +191482,6 @@ export declare const platformInstagramContract: {
191775
191482
  telephonySignature: string | null;
191776
191483
  };
191777
191484
  };
191778
- closedAt: Date;
191779
191485
  lastMessageAt: Date | null;
191780
191486
  isBotRoom: boolean;
191781
191487
  csatStatus: string | null;
@@ -192377,6 +192083,7 @@ export declare const platformInstagramContract: {
192377
192083
  firstResponseTime: number;
192378
192084
  lastMessage: string;
192379
192085
  handleTime: number;
192086
+ closedAt: Date;
192380
192087
  unreadCount: number;
192381
192088
  firstResponseAt: Date;
192382
192089
  isLatest: boolean;
@@ -192551,7 +192258,6 @@ export declare const platformInstagramContract: {
192551
192258
  telephonySignature: string | null;
192552
192259
  };
192553
192260
  };
192554
- closedAt: Date;
192555
192261
  lastMessageAt: Date | null;
192556
192262
  isBotRoom: boolean;
192557
192263
  csatStatus: string | null;
@@ -193150,6 +192856,7 @@ export declare const platformInstagramContract: {
193150
192856
  firstResponseTime: number;
193151
192857
  lastMessage: string;
193152
192858
  handleTime: number;
192859
+ closedAt: Date;
193153
192860
  unreadCount: number;
193154
192861
  firstResponseAt: Date;
193155
192862
  isLatest: boolean;
@@ -193324,7 +193031,6 @@ export declare const platformInstagramContract: {
193324
193031
  telephonySignature: string | null;
193325
193032
  };
193326
193033
  };
193327
- closedAt: Date;
193328
193034
  lastMessageAt: Date | null;
193329
193035
  isBotRoom: boolean;
193330
193036
  csatStatus: string | null;
@@ -193927,6 +193633,7 @@ export declare const platformInstagramContract: {
193927
193633
  firstResponseTime: number;
193928
193634
  lastMessage: string;
193929
193635
  handleTime: number;
193636
+ closedAt: Date;
193930
193637
  unreadCount: number;
193931
193638
  firstResponseAt: Date;
193932
193639
  isLatest: boolean;
@@ -194101,7 +193808,6 @@ export declare const platformInstagramContract: {
194101
193808
  telephonySignature: string | null;
194102
193809
  };
194103
193810
  };
194104
- closedAt: Date;
194105
193811
  lastMessageAt: Date | null;
194106
193812
  isBotRoom: boolean;
194107
193813
  csatStatus: string | null;
@@ -194700,6 +194406,7 @@ export declare const platformInstagramContract: {
194700
194406
  firstResponseTime: number;
194701
194407
  lastMessage: string;
194702
194408
  handleTime: number;
194409
+ closedAt: Date;
194703
194410
  unreadCount: number;
194704
194411
  firstResponseAt: Date;
194705
194412
  isLatest: boolean;
@@ -194874,7 +194581,6 @@ export declare const platformInstagramContract: {
194874
194581
  telephonySignature: string | null;
194875
194582
  };
194876
194583
  };
194877
- closedAt: Date;
194878
194584
  lastMessageAt: Date | null;
194879
194585
  isBotRoom: boolean;
194880
194586
  csatStatus: string | null;
@@ -207355,6 +207061,7 @@ export declare const platformWhatsappContract: {
207355
207061
  firstResponseTime: number;
207356
207062
  lastMessage: string;
207357
207063
  handleTime: number;
207064
+ closedAt: Date;
207358
207065
  unreadCount: number;
207359
207066
  firstResponseAt: Date;
207360
207067
  isLatest: boolean;
@@ -207529,7 +207236,6 @@ export declare const platformWhatsappContract: {
207529
207236
  telephonySignature: string | null;
207530
207237
  };
207531
207238
  };
207532
- closedAt: Date;
207533
207239
  lastMessageAt: Date | null;
207534
207240
  isBotRoom: boolean;
207535
207241
  csatStatus: string | null;
@@ -207791,6 +207497,7 @@ export declare const platformWhatsappContract: {
207791
207497
  firstResponseTime: number;
207792
207498
  lastMessage: string;
207793
207499
  handleTime: number;
207500
+ closedAt: Date;
207794
207501
  unreadCount: number;
207795
207502
  firstResponseAt: Date;
207796
207503
  isLatest: boolean;
@@ -207965,7 +207672,6 @@ export declare const platformWhatsappContract: {
207965
207672
  telephonySignature: string | null;
207966
207673
  };
207967
207674
  };
207968
- closedAt: Date;
207969
207675
  lastMessageAt: Date | null;
207970
207676
  isBotRoom: boolean;
207971
207677
  csatStatus: string | null;
@@ -212089,6 +211795,7 @@ export declare const platformWhatsappContract: {
212089
211795
  firstResponseTime: number;
212090
211796
  lastMessage: string;
212091
211797
  handleTime: number;
211798
+ closedAt: Date;
212092
211799
  unreadCount: number;
212093
211800
  firstResponseAt: Date;
212094
211801
  isLatest: boolean;
@@ -212263,7 +211970,6 @@ export declare const platformWhatsappContract: {
212263
211970
  telephonySignature: string | null;
212264
211971
  };
212265
211972
  };
212266
- closedAt: Date;
212267
211973
  lastMessageAt: Date | null;
212268
211974
  isBotRoom: boolean;
212269
211975
  csatStatus: string | null;
@@ -212525,6 +212231,7 @@ export declare const platformWhatsappContract: {
212525
212231
  firstResponseTime: number;
212526
212232
  lastMessage: string;
212527
212233
  handleTime: number;
212234
+ closedAt: Date;
212528
212235
  unreadCount: number;
212529
212236
  firstResponseAt: Date;
212530
212237
  isLatest: boolean;
@@ -212699,7 +212406,6 @@ export declare const platformWhatsappContract: {
212699
212406
  telephonySignature: string | null;
212700
212407
  };
212701
212408
  };
212702
- closedAt: Date;
212703
212409
  lastMessageAt: Date | null;
212704
212410
  isBotRoom: boolean;
212705
212411
  csatStatus: string | null;
@@ -214734,6 +214440,7 @@ export declare const platformWhatsappContract: {
214734
214440
  firstResponseTime: number;
214735
214441
  lastMessage: string;
214736
214442
  handleTime: number;
214443
+ closedAt: Date;
214737
214444
  unreadCount: number;
214738
214445
  firstResponseAt: Date;
214739
214446
  isLatest: boolean;
@@ -214908,7 +214615,6 @@ export declare const platformWhatsappContract: {
214908
214615
  telephonySignature: string | null;
214909
214616
  };
214910
214617
  };
214911
- closedAt: Date;
214912
214618
  lastMessageAt: Date | null;
214913
214619
  isBotRoom: boolean;
214914
214620
  csatStatus: string | null;
@@ -215507,6 +215213,7 @@ export declare const platformWhatsappContract: {
215507
215213
  firstResponseTime: number;
215508
215214
  lastMessage: string;
215509
215215
  handleTime: number;
215216
+ closedAt: Date;
215510
215217
  unreadCount: number;
215511
215218
  firstResponseAt: Date;
215512
215219
  isLatest: boolean;
@@ -215681,7 +215388,6 @@ export declare const platformWhatsappContract: {
215681
215388
  telephonySignature: string | null;
215682
215389
  };
215683
215390
  };
215684
- closedAt: Date;
215685
215391
  lastMessageAt: Date | null;
215686
215392
  isBotRoom: boolean;
215687
215393
  csatStatus: string | null;
@@ -216281,6 +215987,7 @@ export declare const platformWhatsappContract: {
216281
215987
  firstResponseTime: number;
216282
215988
  lastMessage: string;
216283
215989
  handleTime: number;
215990
+ closedAt: Date;
216284
215991
  unreadCount: number;
216285
215992
  firstResponseAt: Date;
216286
215993
  isLatest: boolean;
@@ -216455,7 +216162,6 @@ export declare const platformWhatsappContract: {
216455
216162
  telephonySignature: string | null;
216456
216163
  };
216457
216164
  };
216458
- closedAt: Date;
216459
216165
  lastMessageAt: Date | null;
216460
216166
  isBotRoom: boolean;
216461
216167
  csatStatus: string | null;
@@ -217054,6 +216760,7 @@ export declare const platformWhatsappContract: {
217054
216760
  firstResponseTime: number;
217055
216761
  lastMessage: string;
217056
216762
  handleTime: number;
216763
+ closedAt: Date;
217057
216764
  unreadCount: number;
217058
216765
  firstResponseAt: Date;
217059
216766
  isLatest: boolean;
@@ -217228,7 +216935,6 @@ export declare const platformWhatsappContract: {
217228
216935
  telephonySignature: string | null;
217229
216936
  };
217230
216937
  };
217231
- closedAt: Date;
217232
216938
  lastMessageAt: Date | null;
217233
216939
  isBotRoom: boolean;
217234
216940
  csatStatus: string | null;
@@ -217828,6 +217534,7 @@ export declare const platformWhatsappContract: {
217828
217534
  firstResponseTime: number;
217829
217535
  lastMessage: string;
217830
217536
  handleTime: number;
217537
+ closedAt: Date;
217831
217538
  unreadCount: number;
217832
217539
  firstResponseAt: Date;
217833
217540
  isLatest: boolean;
@@ -218002,7 +217709,6 @@ export declare const platformWhatsappContract: {
218002
217709
  telephonySignature: string | null;
218003
217710
  };
218004
217711
  };
218005
- closedAt: Date;
218006
217712
  lastMessageAt: Date | null;
218007
217713
  isBotRoom: boolean;
218008
217714
  csatStatus: string | null;
@@ -218601,6 +218307,7 @@ export declare const platformWhatsappContract: {
218601
218307
  firstResponseTime: number;
218602
218308
  lastMessage: string;
218603
218309
  handleTime: number;
218310
+ closedAt: Date;
218604
218311
  unreadCount: number;
218605
218312
  firstResponseAt: Date;
218606
218313
  isLatest: boolean;
@@ -218775,7 +218482,6 @@ export declare const platformWhatsappContract: {
218775
218482
  telephonySignature: string | null;
218776
218483
  };
218777
218484
  };
218778
- closedAt: Date;
218779
218485
  lastMessageAt: Date | null;
218780
218486
  isBotRoom: boolean;
218781
218487
  csatStatus: string | null;
@@ -219377,6 +219083,7 @@ export declare const platformWhatsappContract: {
219377
219083
  firstResponseTime: number;
219378
219084
  lastMessage: string;
219379
219085
  handleTime: number;
219086
+ closedAt: Date;
219380
219087
  unreadCount: number;
219381
219088
  firstResponseAt: Date;
219382
219089
  isLatest: boolean;
@@ -219551,7 +219258,6 @@ export declare const platformWhatsappContract: {
219551
219258
  telephonySignature: string | null;
219552
219259
  };
219553
219260
  };
219554
- closedAt: Date;
219555
219261
  lastMessageAt: Date | null;
219556
219262
  isBotRoom: boolean;
219557
219263
  csatStatus: string | null;
@@ -220150,6 +219856,7 @@ export declare const platformWhatsappContract: {
220150
219856
  firstResponseTime: number;
220151
219857
  lastMessage: string;
220152
219858
  handleTime: number;
219859
+ closedAt: Date;
220153
219860
  unreadCount: number;
220154
219861
  firstResponseAt: Date;
220155
219862
  isLatest: boolean;
@@ -220324,7 +220031,6 @@ export declare const platformWhatsappContract: {
220324
220031
  telephonySignature: string | null;
220325
220032
  };
220326
220033
  };
220327
- closedAt: Date;
220328
220034
  lastMessageAt: Date | null;
220329
220035
  isBotRoom: boolean;
220330
220036
  csatStatus: string | null;
@@ -220927,6 +220633,7 @@ export declare const platformWhatsappContract: {
220927
220633
  firstResponseTime: number;
220928
220634
  lastMessage: string;
220929
220635
  handleTime: number;
220636
+ closedAt: Date;
220930
220637
  unreadCount: number;
220931
220638
  firstResponseAt: Date;
220932
220639
  isLatest: boolean;
@@ -221101,7 +220808,6 @@ export declare const platformWhatsappContract: {
221101
220808
  telephonySignature: string | null;
221102
220809
  };
221103
220810
  };
221104
- closedAt: Date;
221105
220811
  lastMessageAt: Date | null;
221106
220812
  isBotRoom: boolean;
221107
220813
  csatStatus: string | null;
@@ -221700,6 +221406,7 @@ export declare const platformWhatsappContract: {
221700
221406
  firstResponseTime: number;
221701
221407
  lastMessage: string;
221702
221408
  handleTime: number;
221409
+ closedAt: Date;
221703
221410
  unreadCount: number;
221704
221411
  firstResponseAt: Date;
221705
221412
  isLatest: boolean;
@@ -221874,7 +221581,6 @@ export declare const platformWhatsappContract: {
221874
221581
  telephonySignature: string | null;
221875
221582
  };
221876
221583
  };
221877
- closedAt: Date;
221878
221584
  lastMessageAt: Date | null;
221879
221585
  isBotRoom: boolean;
221880
221586
  csatStatus: string | null;
@@ -233950,6 +233656,7 @@ export declare const facebookFeedContract: {
233950
233656
  firstResponseTime: number;
233951
233657
  lastMessage: string;
233952
233658
  handleTime: number;
233659
+ closedAt: Date;
233953
233660
  unreadCount: number;
233954
233661
  firstResponseAt: Date;
233955
233662
  isLatest: boolean;
@@ -234124,7 +233831,6 @@ export declare const facebookFeedContract: {
234124
233831
  telephonySignature: string | null;
234125
233832
  };
234126
233833
  };
234127
- closedAt: Date;
234128
233834
  lastMessageAt: Date | null;
234129
233835
  isBotRoom: boolean;
234130
233836
  csatStatus: string | null;
@@ -234386,6 +234092,7 @@ export declare const facebookFeedContract: {
234386
234092
  firstResponseTime: number;
234387
234093
  lastMessage: string;
234388
234094
  handleTime: number;
234095
+ closedAt: Date;
234389
234096
  unreadCount: number;
234390
234097
  firstResponseAt: Date;
234391
234098
  isLatest: boolean;
@@ -234560,7 +234267,6 @@ export declare const facebookFeedContract: {
234560
234267
  telephonySignature: string | null;
234561
234268
  };
234562
234269
  };
234563
- closedAt: Date;
234564
234270
  lastMessageAt: Date | null;
234565
234271
  isBotRoom: boolean;
234566
234272
  csatStatus: string | null;
@@ -238684,6 +238390,7 @@ export declare const facebookFeedContract: {
238684
238390
  firstResponseTime: number;
238685
238391
  lastMessage: string;
238686
238392
  handleTime: number;
238393
+ closedAt: Date;
238687
238394
  unreadCount: number;
238688
238395
  firstResponseAt: Date;
238689
238396
  isLatest: boolean;
@@ -238858,7 +238565,6 @@ export declare const facebookFeedContract: {
238858
238565
  telephonySignature: string | null;
238859
238566
  };
238860
238567
  };
238861
- closedAt: Date;
238862
238568
  lastMessageAt: Date | null;
238863
238569
  isBotRoom: boolean;
238864
238570
  csatStatus: string | null;
@@ -239120,6 +238826,7 @@ export declare const facebookFeedContract: {
239120
238826
  firstResponseTime: number;
239121
238827
  lastMessage: string;
239122
238828
  handleTime: number;
238829
+ closedAt: Date;
239123
238830
  unreadCount: number;
239124
238831
  firstResponseAt: Date;
239125
238832
  isLatest: boolean;
@@ -239294,7 +239001,6 @@ export declare const facebookFeedContract: {
239294
239001
  telephonySignature: string | null;
239295
239002
  };
239296
239003
  };
239297
- closedAt: Date;
239298
239004
  lastMessageAt: Date | null;
239299
239005
  isBotRoom: boolean;
239300
239006
  csatStatus: string | null;
@@ -241329,6 +241035,7 @@ export declare const facebookFeedContract: {
241329
241035
  firstResponseTime: number;
241330
241036
  lastMessage: string;
241331
241037
  handleTime: number;
241038
+ closedAt: Date;
241332
241039
  unreadCount: number;
241333
241040
  firstResponseAt: Date;
241334
241041
  isLatest: boolean;
@@ -241503,7 +241210,6 @@ export declare const facebookFeedContract: {
241503
241210
  telephonySignature: string | null;
241504
241211
  };
241505
241212
  };
241506
- closedAt: Date;
241507
241213
  lastMessageAt: Date | null;
241508
241214
  isBotRoom: boolean;
241509
241215
  csatStatus: string | null;
@@ -242102,6 +241808,7 @@ export declare const facebookFeedContract: {
242102
241808
  firstResponseTime: number;
242103
241809
  lastMessage: string;
242104
241810
  handleTime: number;
241811
+ closedAt: Date;
242105
241812
  unreadCount: number;
242106
241813
  firstResponseAt: Date;
242107
241814
  isLatest: boolean;
@@ -242276,7 +241983,6 @@ export declare const facebookFeedContract: {
242276
241983
  telephonySignature: string | null;
242277
241984
  };
242278
241985
  };
242279
- closedAt: Date;
242280
241986
  lastMessageAt: Date | null;
242281
241987
  isBotRoom: boolean;
242282
241988
  csatStatus: string | null;
@@ -242876,6 +242582,7 @@ export declare const facebookFeedContract: {
242876
242582
  firstResponseTime: number;
242877
242583
  lastMessage: string;
242878
242584
  handleTime: number;
242585
+ closedAt: Date;
242879
242586
  unreadCount: number;
242880
242587
  firstResponseAt: Date;
242881
242588
  isLatest: boolean;
@@ -243050,7 +242757,6 @@ export declare const facebookFeedContract: {
243050
242757
  telephonySignature: string | null;
243051
242758
  };
243052
242759
  };
243053
- closedAt: Date;
243054
242760
  lastMessageAt: Date | null;
243055
242761
  isBotRoom: boolean;
243056
242762
  csatStatus: string | null;
@@ -243649,6 +243355,7 @@ export declare const facebookFeedContract: {
243649
243355
  firstResponseTime: number;
243650
243356
  lastMessage: string;
243651
243357
  handleTime: number;
243358
+ closedAt: Date;
243652
243359
  unreadCount: number;
243653
243360
  firstResponseAt: Date;
243654
243361
  isLatest: boolean;
@@ -243823,7 +243530,6 @@ export declare const facebookFeedContract: {
243823
243530
  telephonySignature: string | null;
243824
243531
  };
243825
243532
  };
243826
- closedAt: Date;
243827
243533
  lastMessageAt: Date | null;
243828
243534
  isBotRoom: boolean;
243829
243535
  csatStatus: string | null;
@@ -244423,6 +244129,7 @@ export declare const facebookFeedContract: {
244423
244129
  firstResponseTime: number;
244424
244130
  lastMessage: string;
244425
244131
  handleTime: number;
244132
+ closedAt: Date;
244426
244133
  unreadCount: number;
244427
244134
  firstResponseAt: Date;
244428
244135
  isLatest: boolean;
@@ -244597,7 +244304,6 @@ export declare const facebookFeedContract: {
244597
244304
  telephonySignature: string | null;
244598
244305
  };
244599
244306
  };
244600
- closedAt: Date;
244601
244307
  lastMessageAt: Date | null;
244602
244308
  isBotRoom: boolean;
244603
244309
  csatStatus: string | null;
@@ -245196,6 +244902,7 @@ export declare const facebookFeedContract: {
245196
244902
  firstResponseTime: number;
245197
244903
  lastMessage: string;
245198
244904
  handleTime: number;
244905
+ closedAt: Date;
245199
244906
  unreadCount: number;
245200
244907
  firstResponseAt: Date;
245201
244908
  isLatest: boolean;
@@ -245370,7 +245077,6 @@ export declare const facebookFeedContract: {
245370
245077
  telephonySignature: string | null;
245371
245078
  };
245372
245079
  };
245373
- closedAt: Date;
245374
245080
  lastMessageAt: Date | null;
245375
245081
  isBotRoom: boolean;
245376
245082
  csatStatus: string | null;
@@ -245972,6 +245678,7 @@ export declare const facebookFeedContract: {
245972
245678
  firstResponseTime: number;
245973
245679
  lastMessage: string;
245974
245680
  handleTime: number;
245681
+ closedAt: Date;
245975
245682
  unreadCount: number;
245976
245683
  firstResponseAt: Date;
245977
245684
  isLatest: boolean;
@@ -246146,7 +245853,6 @@ export declare const facebookFeedContract: {
246146
245853
  telephonySignature: string | null;
246147
245854
  };
246148
245855
  };
246149
- closedAt: Date;
246150
245856
  lastMessageAt: Date | null;
246151
245857
  isBotRoom: boolean;
246152
245858
  csatStatus: string | null;
@@ -246745,6 +246451,7 @@ export declare const facebookFeedContract: {
246745
246451
  firstResponseTime: number;
246746
246452
  lastMessage: string;
246747
246453
  handleTime: number;
246454
+ closedAt: Date;
246748
246455
  unreadCount: number;
246749
246456
  firstResponseAt: Date;
246750
246457
  isLatest: boolean;
@@ -246919,7 +246626,6 @@ export declare const facebookFeedContract: {
246919
246626
  telephonySignature: string | null;
246920
246627
  };
246921
246628
  };
246922
- closedAt: Date;
246923
246629
  lastMessageAt: Date | null;
246924
246630
  isBotRoom: boolean;
246925
246631
  csatStatus: string | null;
@@ -247522,6 +247228,7 @@ export declare const facebookFeedContract: {
247522
247228
  firstResponseTime: number;
247523
247229
  lastMessage: string;
247524
247230
  handleTime: number;
247231
+ closedAt: Date;
247525
247232
  unreadCount: number;
247526
247233
  firstResponseAt: Date;
247527
247234
  isLatest: boolean;
@@ -247696,7 +247403,6 @@ export declare const facebookFeedContract: {
247696
247403
  telephonySignature: string | null;
247697
247404
  };
247698
247405
  };
247699
- closedAt: Date;
247700
247406
  lastMessageAt: Date | null;
247701
247407
  isBotRoom: boolean;
247702
247408
  csatStatus: string | null;
@@ -248295,6 +248001,7 @@ export declare const facebookFeedContract: {
248295
248001
  firstResponseTime: number;
248296
248002
  lastMessage: string;
248297
248003
  handleTime: number;
248004
+ closedAt: Date;
248298
248005
  unreadCount: number;
248299
248006
  firstResponseAt: Date;
248300
248007
  isLatest: boolean;
@@ -248469,7 +248176,6 @@ export declare const facebookFeedContract: {
248469
248176
  telephonySignature: string | null;
248470
248177
  };
248471
248178
  };
248472
- closedAt: Date;
248473
248179
  lastMessageAt: Date | null;
248474
248180
  isBotRoom: boolean;
248475
248181
  csatStatus: string | null;
@@ -256518,6 +256224,7 @@ export declare const feedPostContract: {
256518
256224
  firstResponseTime: number;
256519
256225
  lastMessage: string;
256520
256226
  handleTime: number;
256227
+ closedAt: Date;
256521
256228
  unreadCount: number;
256522
256229
  firstResponseAt: Date;
256523
256230
  isLatest: boolean;
@@ -256692,7 +256399,6 @@ export declare const feedPostContract: {
256692
256399
  telephonySignature: string | null;
256693
256400
  };
256694
256401
  };
256695
- closedAt: Date;
256696
256402
  lastMessageAt: Date | null;
256697
256403
  isBotRoom: boolean;
256698
256404
  csatStatus: string | null;
@@ -256954,6 +256660,7 @@ export declare const feedPostContract: {
256954
256660
  firstResponseTime: number;
256955
256661
  lastMessage: string;
256956
256662
  handleTime: number;
256663
+ closedAt: Date;
256957
256664
  unreadCount: number;
256958
256665
  firstResponseAt: Date;
256959
256666
  isLatest: boolean;
@@ -257128,7 +256835,6 @@ export declare const feedPostContract: {
257128
256835
  telephonySignature: string | null;
257129
256836
  };
257130
256837
  };
257131
- closedAt: Date;
257132
256838
  lastMessageAt: Date | null;
257133
256839
  isBotRoom: boolean;
257134
256840
  csatStatus: string | null;
@@ -262299,6 +262005,7 @@ export declare const feedPostContract: {
262299
262005
  firstResponseTime: number;
262300
262006
  lastMessage: string;
262301
262007
  handleTime: number;
262008
+ closedAt: Date;
262302
262009
  unreadCount: number;
262303
262010
  firstResponseAt: Date;
262304
262011
  isLatest: boolean;
@@ -262473,7 +262180,6 @@ export declare const feedPostContract: {
262473
262180
  telephonySignature: string | null;
262474
262181
  };
262475
262182
  };
262476
- closedAt: Date;
262477
262183
  lastMessageAt: Date | null;
262478
262184
  isBotRoom: boolean;
262479
262185
  csatStatus: string | null;
@@ -262735,6 +262441,7 @@ export declare const feedPostContract: {
262735
262441
  firstResponseTime: number;
262736
262442
  lastMessage: string;
262737
262443
  handleTime: number;
262444
+ closedAt: Date;
262738
262445
  unreadCount: number;
262739
262446
  firstResponseAt: Date;
262740
262447
  isLatest: boolean;
@@ -262909,7 +262616,6 @@ export declare const feedPostContract: {
262909
262616
  telephonySignature: string | null;
262910
262617
  };
262911
262618
  };
262912
- closedAt: Date;
262913
262619
  lastMessageAt: Date | null;
262914
262620
  isBotRoom: boolean;
262915
262621
  csatStatus: string | null;
@@ -264944,6 +264650,7 @@ export declare const feedPostContract: {
264944
264650
  firstResponseTime: number;
264945
264651
  lastMessage: string;
264946
264652
  handleTime: number;
264653
+ closedAt: Date;
264947
264654
  unreadCount: number;
264948
264655
  firstResponseAt: Date;
264949
264656
  isLatest: boolean;
@@ -265118,7 +264825,6 @@ export declare const feedPostContract: {
265118
264825
  telephonySignature: string | null;
265119
264826
  };
265120
264827
  };
265121
- closedAt: Date;
265122
264828
  lastMessageAt: Date | null;
265123
264829
  isBotRoom: boolean;
265124
264830
  csatStatus: string | null;
@@ -265717,6 +265423,7 @@ export declare const feedPostContract: {
265717
265423
  firstResponseTime: number;
265718
265424
  lastMessage: string;
265719
265425
  handleTime: number;
265426
+ closedAt: Date;
265720
265427
  unreadCount: number;
265721
265428
  firstResponseAt: Date;
265722
265429
  isLatest: boolean;
@@ -265891,7 +265598,6 @@ export declare const feedPostContract: {
265891
265598
  telephonySignature: string | null;
265892
265599
  };
265893
265600
  };
265894
- closedAt: Date;
265895
265601
  lastMessageAt: Date | null;
265896
265602
  isBotRoom: boolean;
265897
265603
  csatStatus: string | null;
@@ -266497,6 +266203,7 @@ export declare const feedPostContract: {
266497
266203
  firstResponseTime: number;
266498
266204
  lastMessage: string;
266499
266205
  handleTime: number;
266206
+ closedAt: Date;
266500
266207
  unreadCount: number;
266501
266208
  firstResponseAt: Date;
266502
266209
  isLatest: boolean;
@@ -266671,7 +266378,6 @@ export declare const feedPostContract: {
266671
266378
  telephonySignature: string | null;
266672
266379
  };
266673
266380
  };
266674
- closedAt: Date;
266675
266381
  lastMessageAt: Date | null;
266676
266382
  isBotRoom: boolean;
266677
266383
  csatStatus: string | null;
@@ -267265,6 +266971,7 @@ export declare const feedPostContract: {
267265
266971
  firstResponseTime: number;
267266
266972
  lastMessage: string;
267267
266973
  handleTime: number;
266974
+ closedAt: Date;
267268
266975
  unreadCount: number;
267269
266976
  firstResponseAt: Date;
267270
266977
  isLatest: boolean;
@@ -267439,7 +267146,6 @@ export declare const feedPostContract: {
267439
267146
  telephonySignature: string | null;
267440
267147
  };
267441
267148
  };
267442
- closedAt: Date;
267443
267149
  lastMessageAt: Date | null;
267444
267150
  isBotRoom: boolean;
267445
267151
  csatStatus: string | null;
@@ -268171,6 +267877,7 @@ export declare const feedPostContract: {
268171
267877
  firstResponseTime: number;
268172
267878
  lastMessage: string;
268173
267879
  handleTime: number;
267880
+ closedAt: Date;
268174
267881
  unreadCount: number;
268175
267882
  firstResponseAt: Date;
268176
267883
  isLatest: boolean;
@@ -268345,7 +268052,6 @@ export declare const feedPostContract: {
268345
268052
  telephonySignature: string | null;
268346
268053
  };
268347
268054
  };
268348
- closedAt: Date;
268349
268055
  lastMessageAt: Date | null;
268350
268056
  isBotRoom: boolean;
268351
268057
  csatStatus: string | null;
@@ -268939,6 +268645,7 @@ export declare const feedPostContract: {
268939
268645
  firstResponseTime: number;
268940
268646
  lastMessage: string;
268941
268647
  handleTime: number;
268648
+ closedAt: Date;
268942
268649
  unreadCount: number;
268943
268650
  firstResponseAt: Date;
268944
268651
  isLatest: boolean;
@@ -269113,7 +268820,6 @@ export declare const feedPostContract: {
269113
268820
  telephonySignature: string | null;
269114
268821
  };
269115
268822
  };
269116
- closedAt: Date;
269117
268823
  lastMessageAt: Date | null;
269118
268824
  isBotRoom: boolean;
269119
268825
  csatStatus: string | null;
@@ -269847,6 +269553,7 @@ export declare const feedPostContract: {
269847
269553
  firstResponseTime: number;
269848
269554
  lastMessage: string;
269849
269555
  handleTime: number;
269556
+ closedAt: Date;
269850
269557
  unreadCount: number;
269851
269558
  firstResponseAt: Date;
269852
269559
  isLatest: boolean;
@@ -270021,7 +269728,6 @@ export declare const feedPostContract: {
270021
269728
  telephonySignature: string | null;
270022
269729
  };
270023
269730
  };
270024
- closedAt: Date;
270025
269731
  lastMessageAt: Date | null;
270026
269732
  isBotRoom: boolean;
270027
269733
  csatStatus: string | null;
@@ -270615,6 +270321,7 @@ export declare const feedPostContract: {
270615
270321
  firstResponseTime: number;
270616
270322
  lastMessage: string;
270617
270323
  handleTime: number;
270324
+ closedAt: Date;
270618
270325
  unreadCount: number;
270619
270326
  firstResponseAt: Date;
270620
270327
  isLatest: boolean;
@@ -270789,7 +270496,6 @@ export declare const feedPostContract: {
270789
270496
  telephonySignature: string | null;
270790
270497
  };
270791
270498
  };
270792
- closedAt: Date;
270793
270499
  lastMessageAt: Date | null;
270794
270500
  isBotRoom: boolean;
270795
270501
  csatStatus: string | null;
@@ -271527,6 +271233,7 @@ export declare const feedPostContract: {
271527
271233
  firstResponseTime: number;
271528
271234
  lastMessage: string;
271529
271235
  handleTime: number;
271236
+ closedAt: Date;
271530
271237
  unreadCount: number;
271531
271238
  firstResponseAt: Date;
271532
271239
  isLatest: boolean;
@@ -271701,7 +271408,6 @@ export declare const feedPostContract: {
271701
271408
  telephonySignature: string | null;
271702
271409
  };
271703
271410
  };
271704
- closedAt: Date;
271705
271411
  lastMessageAt: Date | null;
271706
271412
  isBotRoom: boolean;
271707
271413
  csatStatus: string | null;
@@ -272295,6 +272001,7 @@ export declare const feedPostContract: {
272295
272001
  firstResponseTime: number;
272296
272002
  lastMessage: string;
272297
272003
  handleTime: number;
272004
+ closedAt: Date;
272298
272005
  unreadCount: number;
272299
272006
  firstResponseAt: Date;
272300
272007
  isLatest: boolean;
@@ -272469,7 +272176,6 @@ export declare const feedPostContract: {
272469
272176
  telephonySignature: string | null;
272470
272177
  };
272471
272178
  };
272472
- closedAt: Date;
272473
272179
  lastMessageAt: Date | null;
272474
272180
  isBotRoom: boolean;
272475
272181
  csatStatus: string | null;
@@ -294400,6 +294106,7 @@ export declare const workflowContract: {
294400
294106
  firstResponseTime: number;
294401
294107
  lastMessage: string;
294402
294108
  handleTime: number;
294109
+ closedAt: Date;
294403
294110
  unreadCount: number;
294404
294111
  firstResponseAt: Date;
294405
294112
  isLatest: boolean;
@@ -294574,7 +294281,6 @@ export declare const workflowContract: {
294574
294281
  telephonySignature: string | null;
294575
294282
  };
294576
294283
  };
294577
- closedAt: Date;
294578
294284
  lastMessageAt: Date | null;
294579
294285
  isBotRoom: boolean;
294580
294286
  csatStatus: string | null;
@@ -294836,6 +294542,7 @@ export declare const workflowContract: {
294836
294542
  firstResponseTime: number;
294837
294543
  lastMessage: string;
294838
294544
  handleTime: number;
294545
+ closedAt: Date;
294839
294546
  unreadCount: number;
294840
294547
  firstResponseAt: Date;
294841
294548
  isLatest: boolean;
@@ -295010,7 +294717,6 @@ export declare const workflowContract: {
295010
294717
  telephonySignature: string | null;
295011
294718
  };
295012
294719
  };
295013
- closedAt: Date;
295014
294720
  lastMessageAt: Date | null;
295015
294721
  isBotRoom: boolean;
295016
294722
  csatStatus: string | null;
@@ -295274,6 +294980,7 @@ export declare const workflowContract: {
295274
294980
  firstResponseTime: number;
295275
294981
  lastMessage: string;
295276
294982
  handleTime: number;
294983
+ closedAt: Date;
295277
294984
  unreadCount: number;
295278
294985
  firstResponseAt: Date;
295279
294986
  isLatest: boolean;
@@ -295448,7 +295155,6 @@ export declare const workflowContract: {
295448
295155
  telephonySignature: string | null;
295449
295156
  };
295450
295157
  };
295451
- closedAt: Date;
295452
295158
  lastMessageAt: Date | null;
295453
295159
  isBotRoom: boolean;
295454
295160
  csatStatus: string | null;
@@ -295713,6 +295419,7 @@ export declare const workflowContract: {
295713
295419
  firstResponseTime: number;
295714
295420
  lastMessage: string;
295715
295421
  handleTime: number;
295422
+ closedAt: Date;
295716
295423
  unreadCount: number;
295717
295424
  firstResponseAt: Date;
295718
295425
  isLatest: boolean;
@@ -295887,7 +295594,6 @@ export declare const workflowContract: {
295887
295594
  telephonySignature: string | null;
295888
295595
  };
295889
295596
  };
295890
- closedAt: Date;
295891
295597
  lastMessageAt: Date | null;
295892
295598
  isBotRoom: boolean;
295893
295599
  csatStatus: string | null;
@@ -298830,6 +298536,7 @@ export declare const workflowContract: {
298830
298536
  firstResponseTime: number;
298831
298537
  lastMessage: string;
298832
298538
  handleTime: number;
298539
+ closedAt: Date;
298833
298540
  unreadCount: number;
298834
298541
  firstResponseAt: Date;
298835
298542
  isLatest: boolean;
@@ -299004,7 +298711,6 @@ export declare const workflowContract: {
299004
298711
  telephonySignature: string | null;
299005
298712
  };
299006
298713
  };
299007
- closedAt: Date;
299008
298714
  lastMessageAt: Date | null;
299009
298715
  isBotRoom: boolean;
299010
298716
  csatStatus: string | null;
@@ -299266,6 +298972,7 @@ export declare const workflowContract: {
299266
298972
  firstResponseTime: number;
299267
298973
  lastMessage: string;
299268
298974
  handleTime: number;
298975
+ closedAt: Date;
299269
298976
  unreadCount: number;
299270
298977
  firstResponseAt: Date;
299271
298978
  isLatest: boolean;
@@ -299440,7 +299147,6 @@ export declare const workflowContract: {
299440
299147
  telephonySignature: string | null;
299441
299148
  };
299442
299149
  };
299443
- closedAt: Date;
299444
299150
  lastMessageAt: Date | null;
299445
299151
  isBotRoom: boolean;
299446
299152
  csatStatus: string | null;
@@ -301475,6 +301181,7 @@ export declare const workflowContract: {
301475
301181
  firstResponseTime: number;
301476
301182
  lastMessage: string;
301477
301183
  handleTime: number;
301184
+ closedAt: Date;
301478
301185
  unreadCount: number;
301479
301186
  firstResponseAt: Date;
301480
301187
  isLatest: boolean;
@@ -301649,7 +301356,6 @@ export declare const workflowContract: {
301649
301356
  telephonySignature: string | null;
301650
301357
  };
301651
301358
  };
301652
- closedAt: Date;
301653
301359
  lastMessageAt: Date | null;
301654
301360
  isBotRoom: boolean;
301655
301361
  csatStatus: string | null;
@@ -302248,6 +301954,7 @@ export declare const workflowContract: {
302248
301954
  firstResponseTime: number;
302249
301955
  lastMessage: string;
302250
301956
  handleTime: number;
301957
+ closedAt: Date;
302251
301958
  unreadCount: number;
302252
301959
  firstResponseAt: Date;
302253
301960
  isLatest: boolean;
@@ -302422,7 +302129,6 @@ export declare const workflowContract: {
302422
302129
  telephonySignature: string | null;
302423
302130
  };
302424
302131
  };
302425
- closedAt: Date;
302426
302132
  lastMessageAt: Date | null;
302427
302133
  isBotRoom: boolean;
302428
302134
  csatStatus: string | null;
@@ -303023,6 +302729,7 @@ export declare const workflowContract: {
303023
302729
  firstResponseTime: number;
303024
302730
  lastMessage: string;
303025
302731
  handleTime: number;
302732
+ closedAt: Date;
303026
302733
  unreadCount: number;
303027
302734
  firstResponseAt: Date;
303028
302735
  isLatest: boolean;
@@ -303197,7 +302904,6 @@ export declare const workflowContract: {
303197
302904
  telephonySignature: string | null;
303198
302905
  };
303199
302906
  };
303200
- closedAt: Date;
303201
302907
  lastMessageAt: Date | null;
303202
302908
  isBotRoom: boolean;
303203
302909
  csatStatus: string | null;
@@ -303799,6 +303505,7 @@ export declare const workflowContract: {
303799
303505
  firstResponseTime: number;
303800
303506
  lastMessage: string;
303801
303507
  handleTime: number;
303508
+ closedAt: Date;
303802
303509
  unreadCount: number;
303803
303510
  firstResponseAt: Date;
303804
303511
  isLatest: boolean;
@@ -303973,7 +303680,6 @@ export declare const workflowContract: {
303973
303680
  telephonySignature: string | null;
303974
303681
  };
303975
303682
  };
303976
- closedAt: Date;
303977
303683
  lastMessageAt: Date | null;
303978
303684
  isBotRoom: boolean;
303979
303685
  csatStatus: string | null;
@@ -305145,6 +304851,7 @@ export declare const workflowContract: {
305145
304851
  firstResponseTime: import("zod").ZodNumber;
305146
304852
  lastMessage: import("zod").ZodString;
305147
304853
  handleTime: import("zod").ZodNumber;
304854
+ closedAt: import("zod").ZodDate;
305148
304855
  unreadCount: import("zod").ZodNumber;
305149
304856
  firstResponseAt: import("zod").ZodDate;
305150
304857
  isLatest: import("zod").ZodBoolean;
@@ -306399,7 +306106,6 @@ export declare const workflowContract: {
306399
306106
  telephonySignature: string | null;
306400
306107
  };
306401
306108
  }>;
306402
- closedAt: import("zod").ZodDate;
306403
306109
  lastMessageAt: import("zod").ZodNullable<import("zod").ZodDate>;
306404
306110
  isBotRoom: import("zod").ZodBoolean;
306405
306111
  csatStatus: import("zod").ZodNullable<import("zod").ZodString>;
@@ -307126,6 +306832,7 @@ export declare const workflowContract: {
307126
306832
  firstResponseTime: number;
307127
306833
  lastMessage: string;
307128
306834
  handleTime: number;
306835
+ closedAt: Date;
307129
306836
  unreadCount: number;
307130
306837
  firstResponseAt: Date;
307131
306838
  isLatest: boolean;
@@ -307300,7 +307007,6 @@ export declare const workflowContract: {
307300
307007
  telephonySignature: string | null;
307301
307008
  };
307302
307009
  };
307303
- closedAt: Date;
307304
307010
  lastMessageAt: Date | null;
307305
307011
  isBotRoom: boolean;
307306
307012
  csatStatus: string | null;
@@ -307563,6 +307269,7 @@ export declare const workflowContract: {
307563
307269
  firstResponseTime: number;
307564
307270
  lastMessage: string;
307565
307271
  handleTime: number;
307272
+ closedAt: Date;
307566
307273
  unreadCount: number;
307567
307274
  firstResponseAt: Date;
307568
307275
  isLatest: boolean;
@@ -307737,7 +307444,6 @@ export declare const workflowContract: {
307737
307444
  telephonySignature: string | null;
307738
307445
  };
307739
307446
  };
307740
- closedAt: Date;
307741
307447
  lastMessageAt: Date | null;
307742
307448
  isBotRoom: boolean;
307743
307449
  csatStatus: string | null;
@@ -308002,6 +307708,7 @@ export declare const workflowContract: {
308002
307708
  firstResponseTime: number;
308003
307709
  lastMessage: string;
308004
307710
  handleTime: number;
307711
+ closedAt: Date;
308005
307712
  unreadCount: number;
308006
307713
  firstResponseAt: Date;
308007
307714
  isLatest: boolean;
@@ -308176,7 +307883,6 @@ export declare const workflowContract: {
308176
307883
  telephonySignature: string | null;
308177
307884
  };
308178
307885
  };
308179
- closedAt: Date;
308180
307886
  lastMessageAt: Date | null;
308181
307887
  isBotRoom: boolean;
308182
307888
  csatStatus: string | null;
@@ -308442,6 +308148,7 @@ export declare const workflowContract: {
308442
308148
  firstResponseTime: number;
308443
308149
  lastMessage: string;
308444
308150
  handleTime: number;
308151
+ closedAt: Date;
308445
308152
  unreadCount: number;
308446
308153
  firstResponseAt: Date;
308447
308154
  isLatest: boolean;
@@ -308616,7 +308323,6 @@ export declare const workflowContract: {
308616
308323
  telephonySignature: string | null;
308617
308324
  };
308618
308325
  };
308619
- closedAt: Date;
308620
308326
  lastMessageAt: Date | null;
308621
308327
  isBotRoom: boolean;
308622
308328
  csatStatus: string | null;
@@ -320960,12 +320666,76 @@ export declare const channelSettingContract: {
320960
320666
  updateChannelCsatPreference: {
320961
320667
  body: import("zod").ZodObject<{
320962
320668
  isCSATEnabled: import("zod").ZodBoolean;
320669
+ headline: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320670
+ image: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
320671
+ bucketName: import("zod").ZodString;
320672
+ fileName: import("zod").ZodString;
320673
+ fileSize: import("zod").ZodNumber;
320674
+ fileKey: import("zod").ZodString;
320675
+ originalUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320676
+ }, "strip", import("zod").ZodTypeAny, {
320677
+ fileName: string;
320678
+ fileKey: string;
320679
+ bucketName: string;
320680
+ fileSize: number;
320681
+ originalUrl?: string | null | undefined;
320682
+ }, {
320683
+ fileName: string;
320684
+ fileKey: string;
320685
+ bucketName: string;
320686
+ fileSize: number;
320687
+ originalUrl?: string | null | undefined;
320688
+ }>>>;
320689
+ scaleOptions: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
320690
+ value: import("zod").ZodString;
320691
+ label: import("zod").ZodString;
320692
+ color: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320693
+ style: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320694
+ }, "strip", import("zod").ZodTypeAny, {
320695
+ value: string;
320696
+ label: string;
320697
+ color?: string | null | undefined;
320698
+ style?: string | null | undefined;
320699
+ }, {
320700
+ value: string;
320701
+ label: string;
320702
+ color?: string | null | undefined;
320703
+ style?: string | null | undefined;
320704
+ }>, "many">>>;
320963
320705
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
320964
320706
  }, "strip", import("zod").ZodTypeAny, {
320965
320707
  isCSATEnabled: boolean;
320708
+ headline?: string | null | undefined;
320709
+ image?: {
320710
+ fileName: string;
320711
+ fileKey: string;
320712
+ bucketName: string;
320713
+ fileSize: number;
320714
+ originalUrl?: string | null | undefined;
320715
+ } | null | undefined;
320716
+ scaleOptions?: {
320717
+ value: string;
320718
+ label: string;
320719
+ color?: string | null | undefined;
320720
+ style?: string | null | undefined;
320721
+ }[] | null | undefined;
320966
320722
  dispositions?: string[] | undefined;
320967
320723
  }, {
320968
320724
  isCSATEnabled: boolean;
320725
+ headline?: string | null | undefined;
320726
+ image?: {
320727
+ fileName: string;
320728
+ fileKey: string;
320729
+ bucketName: string;
320730
+ fileSize: number;
320731
+ originalUrl?: string | null | undefined;
320732
+ } | null | undefined;
320733
+ scaleOptions?: {
320734
+ value: string;
320735
+ label: string;
320736
+ color?: string | null | undefined;
320737
+ style?: string | null | undefined;
320738
+ }[] | null | undefined;
320969
320739
  dispositions?: string[] | undefined;
320970
320740
  }>;
320971
320741
  summary: "Enable or Disable CSAT for channel";