@kl1/contracts 1.0.21 → 1.0.22

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.
@@ -108,20 +108,20 @@ export declare const cxLogContract: {
108
108
  pageSize: z.ZodNumber;
109
109
  cxLogs: z.ZodArray<z.ZodObject<{
110
110
  id: z.ZodString;
111
- channel: z.ZodNullable<z.ZodString>;
112
- disposition: z.ZodNullable<z.ZodString>;
113
- direction: z.ZodNullable<z.ZodString>;
114
111
  createdAt: z.ZodDate;
115
112
  updatedAt: z.ZodDate;
116
113
  deletedAt: z.ZodNullable<z.ZodDate>;
117
- entityId: z.ZodString;
118
114
  caseId: z.ZodNumber;
115
+ entityId: z.ZodString;
119
116
  entityName: z.ZodString;
120
117
  channelType: z.ZodNullable<z.ZodString>;
121
- startedDate: z.ZodNullable<z.ZodDate>;
122
- handledTime: z.ZodNullable<z.ZodNumber>;
118
+ channel: z.ZodNullable<z.ZodString>;
119
+ direction: z.ZodNullable<z.ZodString>;
120
+ startedDate: z.ZodNullable<z.ZodString>;
121
+ handledTime: z.ZodNullable<z.ZodString>;
123
122
  firstResponseTime: z.ZodNullable<z.ZodString>;
124
- slaMeet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
123
+ disposition: z.ZodNullable<z.ZodString>;
124
+ slaMeet: z.ZodNullable<z.ZodString>;
125
125
  evaluateForm: z.ZodNullable<z.ZodObject<{
126
126
  id: z.ZodString;
127
127
  createdAt: z.ZodDate;
@@ -208,7 +208,7 @@ export declare const cxLogContract: {
208
208
  callTo: string | null;
209
209
  note: string | null;
210
210
  }>>;
211
- room: z.ZodObject<{
211
+ room: z.ZodNullable<z.ZodObject<{
212
212
  id: z.ZodString;
213
213
  createdAt: z.ZodDate;
214
214
  updatedAt: z.ZodDate;
@@ -1977,14 +1977,76 @@ export declare const cxLogContract: {
1977
1977
  caseId: z.ZodNumber;
1978
1978
  entityId: z.ZodString;
1979
1979
  entityName: z.ZodString;
1980
- channelType: z.ZodNullable<z.ZodString>;
1980
+ contactId: z.ZodNullable<z.ZodString>;
1981
1981
  channel: z.ZodNullable<z.ZodString>;
1982
+ queueId: z.ZodNullable<z.ZodString>;
1983
+ agentId: z.ZodNullable<z.ZodString>;
1982
1984
  direction: z.ZodNullable<z.ZodString>;
1983
1985
  startedDate: z.ZodNullable<z.ZodDate>;
1984
1986
  handledTime: z.ZodNullable<z.ZodNumber>;
1985
- firstResponseTime: z.ZodNullable<z.ZodString>;
1987
+ firstResponseTime: z.ZodNullable<z.ZodNumber>;
1986
1988
  disposition: z.ZodNullable<z.ZodString>;
1987
- slaMeet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1989
+ wrapUpForm: z.ZodNullable<z.ZodObject<{
1990
+ id: z.ZodString;
1991
+ createdAt: z.ZodDate;
1992
+ updatedAt: z.ZodDate;
1993
+ deletedAt: z.ZodNullable<z.ZodDate>;
1994
+ note: z.ZodNullable<z.ZodString>;
1995
+ disposition: z.ZodNullable<z.ZodString>;
1996
+ callFrom: z.ZodNullable<z.ZodString>;
1997
+ callTo: z.ZodNullable<z.ZodString>;
1998
+ tags: z.ZodArray<z.ZodObject<{
1999
+ id: z.ZodString;
2000
+ createdAt: z.ZodDate;
2001
+ updatedAt: z.ZodDate;
2002
+ deletedAt: z.ZodNullable<z.ZodDate>;
2003
+ name: z.ZodString;
2004
+ }, "strip", z.ZodTypeAny, {
2005
+ id: string;
2006
+ name: string;
2007
+ createdAt: Date;
2008
+ updatedAt: Date;
2009
+ deletedAt: Date | null;
2010
+ }, {
2011
+ id: string;
2012
+ name: string;
2013
+ createdAt: Date;
2014
+ updatedAt: Date;
2015
+ deletedAt: Date | null;
2016
+ }>, "many">;
2017
+ }, "strip", z.ZodTypeAny, {
2018
+ id: string;
2019
+ disposition: string | null;
2020
+ createdAt: Date;
2021
+ updatedAt: Date;
2022
+ deletedAt: Date | null;
2023
+ tags: {
2024
+ id: string;
2025
+ name: string;
2026
+ createdAt: Date;
2027
+ updatedAt: Date;
2028
+ deletedAt: Date | null;
2029
+ }[];
2030
+ callFrom: string | null;
2031
+ callTo: string | null;
2032
+ note: string | null;
2033
+ }, {
2034
+ id: string;
2035
+ disposition: string | null;
2036
+ createdAt: Date;
2037
+ updatedAt: Date;
2038
+ deletedAt: Date | null;
2039
+ tags: {
2040
+ id: string;
2041
+ name: string;
2042
+ createdAt: Date;
2043
+ updatedAt: Date;
2044
+ deletedAt: Date | null;
2045
+ }[];
2046
+ callFrom: string | null;
2047
+ callTo: string | null;
2048
+ note: string | null;
2049
+ }>>;
1988
2050
  }, "strip", z.ZodTypeAny, {
1989
2051
  id: string;
1990
2052
  channel: string | null;
@@ -1994,13 +2056,31 @@ export declare const cxLogContract: {
1994
2056
  updatedAt: Date;
1995
2057
  deletedAt: Date | null;
1996
2058
  entityId: string;
2059
+ contactId: string | null;
1997
2060
  caseId: number;
1998
2061
  entityName: string;
1999
- channelType: string | null;
2062
+ queueId: string | null;
2063
+ agentId: string | null;
2000
2064
  startedDate: Date | null;
2001
2065
  handledTime: number | null;
2002
- firstResponseTime: string | null;
2003
- slaMeet?: string | null | undefined;
2066
+ firstResponseTime: number | null;
2067
+ wrapUpForm: {
2068
+ id: string;
2069
+ disposition: string | null;
2070
+ createdAt: Date;
2071
+ updatedAt: Date;
2072
+ deletedAt: Date | null;
2073
+ tags: {
2074
+ id: string;
2075
+ name: string;
2076
+ createdAt: Date;
2077
+ updatedAt: Date;
2078
+ deletedAt: Date | null;
2079
+ }[];
2080
+ callFrom: string | null;
2081
+ callTo: string | null;
2082
+ note: string | null;
2083
+ } | null;
2004
2084
  }, {
2005
2085
  id: string;
2006
2086
  channel: string | null;
@@ -2010,13 +2090,31 @@ export declare const cxLogContract: {
2010
2090
  updatedAt: Date;
2011
2091
  deletedAt: Date | null;
2012
2092
  entityId: string;
2093
+ contactId: string | null;
2013
2094
  caseId: number;
2014
2095
  entityName: string;
2015
- channelType: string | null;
2096
+ queueId: string | null;
2097
+ agentId: string | null;
2016
2098
  startedDate: Date | null;
2017
2099
  handledTime: number | null;
2018
- firstResponseTime: string | null;
2019
- slaMeet?: string | null | undefined;
2100
+ firstResponseTime: number | null;
2101
+ wrapUpForm: {
2102
+ id: string;
2103
+ disposition: string | null;
2104
+ createdAt: Date;
2105
+ updatedAt: Date;
2106
+ deletedAt: Date | null;
2107
+ tags: {
2108
+ id: string;
2109
+ name: string;
2110
+ createdAt: Date;
2111
+ updatedAt: Date;
2112
+ deletedAt: Date | null;
2113
+ }[];
2114
+ callFrom: string | null;
2115
+ callTo: string | null;
2116
+ note: string | null;
2117
+ } | null;
2020
2118
  }>;
2021
2119
  }, "strip", z.ZodTypeAny, {
2022
2120
  id: string;
@@ -2243,13 +2341,31 @@ export declare const cxLogContract: {
2243
2341
  updatedAt: Date;
2244
2342
  deletedAt: Date | null;
2245
2343
  entityId: string;
2344
+ contactId: string | null;
2246
2345
  caseId: number;
2247
2346
  entityName: string;
2248
- channelType: string | null;
2347
+ queueId: string | null;
2348
+ agentId: string | null;
2249
2349
  startedDate: Date | null;
2250
2350
  handledTime: number | null;
2251
- firstResponseTime: string | null;
2252
- slaMeet?: string | null | undefined;
2351
+ firstResponseTime: number | null;
2352
+ wrapUpForm: {
2353
+ id: string;
2354
+ disposition: string | null;
2355
+ createdAt: Date;
2356
+ updatedAt: Date;
2357
+ deletedAt: Date | null;
2358
+ tags: {
2359
+ id: string;
2360
+ name: string;
2361
+ createdAt: Date;
2362
+ updatedAt: Date;
2363
+ deletedAt: Date | null;
2364
+ }[];
2365
+ callFrom: string | null;
2366
+ callTo: string | null;
2367
+ note: string | null;
2368
+ } | null;
2253
2369
  };
2254
2370
  channel?: {
2255
2371
  id?: string | undefined;
@@ -2539,13 +2655,31 @@ export declare const cxLogContract: {
2539
2655
  updatedAt: Date;
2540
2656
  deletedAt: Date | null;
2541
2657
  entityId: string;
2658
+ contactId: string | null;
2542
2659
  caseId: number;
2543
2660
  entityName: string;
2544
- channelType: string | null;
2661
+ queueId: string | null;
2662
+ agentId: string | null;
2545
2663
  startedDate: Date | null;
2546
2664
  handledTime: number | null;
2547
- firstResponseTime: string | null;
2548
- slaMeet?: string | null | undefined;
2665
+ firstResponseTime: number | null;
2666
+ wrapUpForm: {
2667
+ id: string;
2668
+ disposition: string | null;
2669
+ createdAt: Date;
2670
+ updatedAt: Date;
2671
+ deletedAt: Date | null;
2672
+ tags: {
2673
+ id: string;
2674
+ name: string;
2675
+ createdAt: Date;
2676
+ updatedAt: Date;
2677
+ deletedAt: Date | null;
2678
+ }[];
2679
+ callFrom: string | null;
2680
+ callTo: string | null;
2681
+ note: string | null;
2682
+ } | null;
2549
2683
  };
2550
2684
  channel?: {
2551
2685
  id?: string | undefined;
@@ -2610,7 +2744,7 @@ export declare const cxLogContract: {
2610
2744
  } | undefined;
2611
2745
  } | undefined;
2612
2746
  } | undefined;
2613
- }>;
2747
+ }>>;
2614
2748
  telephonyCdr: z.ZodNullable<z.ZodObject<{
2615
2749
  id: z.ZodString;
2616
2750
  createdAt: z.ZodDate;
@@ -2684,6 +2818,13 @@ export declare const cxLogContract: {
2684
2818
  telephonyQueueId: string | null;
2685
2819
  contactId: string | null;
2686
2820
  }>>;
2821
+ queue: z.ZodNullable<z.ZodObject<{
2822
+ queueName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2823
+ }, "strip", z.ZodTypeAny, {
2824
+ queueName?: string | null | undefined;
2825
+ }, {
2826
+ queueName?: string | null | undefined;
2827
+ }>>;
2687
2828
  contact: z.ZodNullable<z.ZodObject<{
2688
2829
  id: z.ZodString;
2689
2830
  createdAt: z.ZodDate;
@@ -3736,19 +3877,9 @@ export declare const cxLogContract: {
3736
3877
  entityId: string;
3737
3878
  caseId: number;
3738
3879
  entityName: string;
3739
- channelType: string | null;
3740
- startedDate: Date | null;
3741
- handledTime: number | null;
3880
+ startedDate: string | null;
3881
+ handledTime: string | null;
3742
3882
  firstResponseTime: string | null;
3743
- evaluateForm: {
3744
- id: string;
3745
- createdAt: Date;
3746
- updatedAt: Date;
3747
- deletedAt: Date | null;
3748
- cxLogId: string;
3749
- sentimentScore: string | null;
3750
- csatScore: string | null;
3751
- } | null;
3752
3883
  wrapUpForm: {
3753
3884
  id: string;
3754
3885
  disposition: string | null;
@@ -3766,6 +3897,17 @@ export declare const cxLogContract: {
3766
3897
  callTo: string | null;
3767
3898
  note: string | null;
3768
3899
  } | null;
3900
+ channelType: string | null;
3901
+ slaMeet: string | null;
3902
+ evaluateForm: {
3903
+ id: string;
3904
+ createdAt: Date;
3905
+ updatedAt: Date;
3906
+ deletedAt: Date | null;
3907
+ cxLogId: string;
3908
+ sentimentScore: string | null;
3909
+ csatScore: string | null;
3910
+ } | null;
3769
3911
  room: {
3770
3912
  id: string;
3771
3913
  direction: "incoming" | "outgoing" | "system";
@@ -3991,13 +4133,31 @@ export declare const cxLogContract: {
3991
4133
  updatedAt: Date;
3992
4134
  deletedAt: Date | null;
3993
4135
  entityId: string;
4136
+ contactId: string | null;
3994
4137
  caseId: number;
3995
4138
  entityName: string;
3996
- channelType: string | null;
4139
+ queueId: string | null;
4140
+ agentId: string | null;
3997
4141
  startedDate: Date | null;
3998
4142
  handledTime: number | null;
3999
- firstResponseTime: string | null;
4000
- slaMeet?: string | null | undefined;
4143
+ firstResponseTime: number | null;
4144
+ wrapUpForm: {
4145
+ id: string;
4146
+ disposition: string | null;
4147
+ createdAt: Date;
4148
+ updatedAt: Date;
4149
+ deletedAt: Date | null;
4150
+ tags: {
4151
+ id: string;
4152
+ name: string;
4153
+ createdAt: Date;
4154
+ updatedAt: Date;
4155
+ deletedAt: Date | null;
4156
+ }[];
4157
+ callFrom: string | null;
4158
+ callTo: string | null;
4159
+ note: string | null;
4160
+ } | null;
4001
4161
  };
4002
4162
  channel?: {
4003
4163
  id?: string | undefined;
@@ -4062,7 +4222,7 @@ export declare const cxLogContract: {
4062
4222
  } | undefined;
4063
4223
  } | undefined;
4064
4224
  } | undefined;
4065
- };
4225
+ } | null;
4066
4226
  telephonyCdr: {
4067
4227
  type: string;
4068
4228
  id: string;
@@ -4088,6 +4248,9 @@ export declare const cxLogContract: {
4088
4248
  telephonyQueueId: string | null;
4089
4249
  contactId: string | null;
4090
4250
  } | null;
4251
+ queue: {
4252
+ queueName?: string | null | undefined;
4253
+ } | null;
4091
4254
  agent: {
4092
4255
  id: string;
4093
4256
  address: string | null;
@@ -4131,7 +4294,6 @@ export declare const cxLogContract: {
4131
4294
  telephonySignature: string | null;
4132
4295
  } | undefined;
4133
4296
  } | null;
4134
- slaMeet?: string | null | undefined;
4135
4297
  }, {
4136
4298
  id: string;
4137
4299
  channel: string | null;
@@ -4245,19 +4407,9 @@ export declare const cxLogContract: {
4245
4407
  entityId: string;
4246
4408
  caseId: number;
4247
4409
  entityName: string;
4248
- channelType: string | null;
4249
- startedDate: Date | null;
4250
- handledTime: number | null;
4410
+ startedDate: string | null;
4411
+ handledTime: string | null;
4251
4412
  firstResponseTime: string | null;
4252
- evaluateForm: {
4253
- id: string;
4254
- createdAt: Date;
4255
- updatedAt: Date;
4256
- deletedAt: Date | null;
4257
- cxLogId: string;
4258
- sentimentScore: string | null;
4259
- csatScore: string | null;
4260
- } | null;
4261
4413
  wrapUpForm: {
4262
4414
  id: string;
4263
4415
  disposition: string | null;
@@ -4275,6 +4427,17 @@ export declare const cxLogContract: {
4275
4427
  callTo: string | null;
4276
4428
  note: string | null;
4277
4429
  } | null;
4430
+ channelType: string | null;
4431
+ slaMeet: string | null;
4432
+ evaluateForm: {
4433
+ id: string;
4434
+ createdAt: Date;
4435
+ updatedAt: Date;
4436
+ deletedAt: Date | null;
4437
+ cxLogId: string;
4438
+ sentimentScore: string | null;
4439
+ csatScore: string | null;
4440
+ } | null;
4278
4441
  room: {
4279
4442
  id: string;
4280
4443
  direction: "incoming" | "outgoing" | "system";
@@ -4500,13 +4663,31 @@ export declare const cxLogContract: {
4500
4663
  updatedAt: Date;
4501
4664
  deletedAt: Date | null;
4502
4665
  entityId: string;
4666
+ contactId: string | null;
4503
4667
  caseId: number;
4504
4668
  entityName: string;
4505
- channelType: string | null;
4669
+ queueId: string | null;
4670
+ agentId: string | null;
4506
4671
  startedDate: Date | null;
4507
4672
  handledTime: number | null;
4508
- firstResponseTime: string | null;
4509
- slaMeet?: string | null | undefined;
4673
+ firstResponseTime: number | null;
4674
+ wrapUpForm: {
4675
+ id: string;
4676
+ disposition: string | null;
4677
+ createdAt: Date;
4678
+ updatedAt: Date;
4679
+ deletedAt: Date | null;
4680
+ tags: {
4681
+ id: string;
4682
+ name: string;
4683
+ createdAt: Date;
4684
+ updatedAt: Date;
4685
+ deletedAt: Date | null;
4686
+ }[];
4687
+ callFrom: string | null;
4688
+ callTo: string | null;
4689
+ note: string | null;
4690
+ } | null;
4510
4691
  };
4511
4692
  channel?: {
4512
4693
  id?: string | undefined;
@@ -4571,7 +4752,7 @@ export declare const cxLogContract: {
4571
4752
  } | undefined;
4572
4753
  } | undefined;
4573
4754
  } | undefined;
4574
- };
4755
+ } | null;
4575
4756
  telephonyCdr: {
4576
4757
  type: string;
4577
4758
  id: string;
@@ -4597,6 +4778,9 @@ export declare const cxLogContract: {
4597
4778
  telephonyQueueId: string | null;
4598
4779
  contactId: string | null;
4599
4780
  } | null;
4781
+ queue: {
4782
+ queueName?: string | null | undefined;
4783
+ } | null;
4600
4784
  agent: {
4601
4785
  id: string;
4602
4786
  address: string | null;
@@ -4640,7 +4824,6 @@ export declare const cxLogContract: {
4640
4824
  telephonySignature: string | null;
4641
4825
  } | undefined;
4642
4826
  } | null;
4643
- slaMeet?: string | null | undefined;
4644
4827
  }>, "many">;
4645
4828
  }, "strip", z.ZodTypeAny, {
4646
4829
  total: number;
@@ -4760,19 +4943,9 @@ export declare const cxLogContract: {
4760
4943
  entityId: string;
4761
4944
  caseId: number;
4762
4945
  entityName: string;
4763
- channelType: string | null;
4764
- startedDate: Date | null;
4765
- handledTime: number | null;
4946
+ startedDate: string | null;
4947
+ handledTime: string | null;
4766
4948
  firstResponseTime: string | null;
4767
- evaluateForm: {
4768
- id: string;
4769
- createdAt: Date;
4770
- updatedAt: Date;
4771
- deletedAt: Date | null;
4772
- cxLogId: string;
4773
- sentimentScore: string | null;
4774
- csatScore: string | null;
4775
- } | null;
4776
4949
  wrapUpForm: {
4777
4950
  id: string;
4778
4951
  disposition: string | null;
@@ -4790,6 +4963,17 @@ export declare const cxLogContract: {
4790
4963
  callTo: string | null;
4791
4964
  note: string | null;
4792
4965
  } | null;
4966
+ channelType: string | null;
4967
+ slaMeet: string | null;
4968
+ evaluateForm: {
4969
+ id: string;
4970
+ createdAt: Date;
4971
+ updatedAt: Date;
4972
+ deletedAt: Date | null;
4973
+ cxLogId: string;
4974
+ sentimentScore: string | null;
4975
+ csatScore: string | null;
4976
+ } | null;
4793
4977
  room: {
4794
4978
  id: string;
4795
4979
  direction: "incoming" | "outgoing" | "system";
@@ -5015,13 +5199,31 @@ export declare const cxLogContract: {
5015
5199
  updatedAt: Date;
5016
5200
  deletedAt: Date | null;
5017
5201
  entityId: string;
5202
+ contactId: string | null;
5018
5203
  caseId: number;
5019
5204
  entityName: string;
5020
- channelType: string | null;
5205
+ queueId: string | null;
5206
+ agentId: string | null;
5021
5207
  startedDate: Date | null;
5022
5208
  handledTime: number | null;
5023
- firstResponseTime: string | null;
5024
- slaMeet?: string | null | undefined;
5209
+ firstResponseTime: number | null;
5210
+ wrapUpForm: {
5211
+ id: string;
5212
+ disposition: string | null;
5213
+ createdAt: Date;
5214
+ updatedAt: Date;
5215
+ deletedAt: Date | null;
5216
+ tags: {
5217
+ id: string;
5218
+ name: string;
5219
+ createdAt: Date;
5220
+ updatedAt: Date;
5221
+ deletedAt: Date | null;
5222
+ }[];
5223
+ callFrom: string | null;
5224
+ callTo: string | null;
5225
+ note: string | null;
5226
+ } | null;
5025
5227
  };
5026
5228
  channel?: {
5027
5229
  id?: string | undefined;
@@ -5086,7 +5288,7 @@ export declare const cxLogContract: {
5086
5288
  } | undefined;
5087
5289
  } | undefined;
5088
5290
  } | undefined;
5089
- };
5291
+ } | null;
5090
5292
  telephonyCdr: {
5091
5293
  type: string;
5092
5294
  id: string;
@@ -5112,6 +5314,9 @@ export declare const cxLogContract: {
5112
5314
  telephonyQueueId: string | null;
5113
5315
  contactId: string | null;
5114
5316
  } | null;
5317
+ queue: {
5318
+ queueName?: string | null | undefined;
5319
+ } | null;
5115
5320
  agent: {
5116
5321
  id: string;
5117
5322
  address: string | null;
@@ -5155,7 +5360,6 @@ export declare const cxLogContract: {
5155
5360
  telephonySignature: string | null;
5156
5361
  } | undefined;
5157
5362
  } | null;
5158
- slaMeet?: string | null | undefined;
5159
5363
  }[];
5160
5364
  }, {
5161
5365
  total: number;
@@ -5275,19 +5479,9 @@ export declare const cxLogContract: {
5275
5479
  entityId: string;
5276
5480
  caseId: number;
5277
5481
  entityName: string;
5278
- channelType: string | null;
5279
- startedDate: Date | null;
5280
- handledTime: number | null;
5482
+ startedDate: string | null;
5483
+ handledTime: string | null;
5281
5484
  firstResponseTime: string | null;
5282
- evaluateForm: {
5283
- id: string;
5284
- createdAt: Date;
5285
- updatedAt: Date;
5286
- deletedAt: Date | null;
5287
- cxLogId: string;
5288
- sentimentScore: string | null;
5289
- csatScore: string | null;
5290
- } | null;
5291
5485
  wrapUpForm: {
5292
5486
  id: string;
5293
5487
  disposition: string | null;
@@ -5305,6 +5499,17 @@ export declare const cxLogContract: {
5305
5499
  callTo: string | null;
5306
5500
  note: string | null;
5307
5501
  } | null;
5502
+ channelType: string | null;
5503
+ slaMeet: string | null;
5504
+ evaluateForm: {
5505
+ id: string;
5506
+ createdAt: Date;
5507
+ updatedAt: Date;
5508
+ deletedAt: Date | null;
5509
+ cxLogId: string;
5510
+ sentimentScore: string | null;
5511
+ csatScore: string | null;
5512
+ } | null;
5308
5513
  room: {
5309
5514
  id: string;
5310
5515
  direction: "incoming" | "outgoing" | "system";
@@ -5530,13 +5735,31 @@ export declare const cxLogContract: {
5530
5735
  updatedAt: Date;
5531
5736
  deletedAt: Date | null;
5532
5737
  entityId: string;
5738
+ contactId: string | null;
5533
5739
  caseId: number;
5534
5740
  entityName: string;
5535
- channelType: string | null;
5741
+ queueId: string | null;
5742
+ agentId: string | null;
5536
5743
  startedDate: Date | null;
5537
5744
  handledTime: number | null;
5538
- firstResponseTime: string | null;
5539
- slaMeet?: string | null | undefined;
5745
+ firstResponseTime: number | null;
5746
+ wrapUpForm: {
5747
+ id: string;
5748
+ disposition: string | null;
5749
+ createdAt: Date;
5750
+ updatedAt: Date;
5751
+ deletedAt: Date | null;
5752
+ tags: {
5753
+ id: string;
5754
+ name: string;
5755
+ createdAt: Date;
5756
+ updatedAt: Date;
5757
+ deletedAt: Date | null;
5758
+ }[];
5759
+ callFrom: string | null;
5760
+ callTo: string | null;
5761
+ note: string | null;
5762
+ } | null;
5540
5763
  };
5541
5764
  channel?: {
5542
5765
  id?: string | undefined;
@@ -5601,7 +5824,7 @@ export declare const cxLogContract: {
5601
5824
  } | undefined;
5602
5825
  } | undefined;
5603
5826
  } | undefined;
5604
- };
5827
+ } | null;
5605
5828
  telephonyCdr: {
5606
5829
  type: string;
5607
5830
  id: string;
@@ -5627,6 +5850,9 @@ export declare const cxLogContract: {
5627
5850
  telephonyQueueId: string | null;
5628
5851
  contactId: string | null;
5629
5852
  } | null;
5853
+ queue: {
5854
+ queueName?: string | null | undefined;
5855
+ } | null;
5630
5856
  agent: {
5631
5857
  id: string;
5632
5858
  address: string | null;
@@ -5670,7 +5896,6 @@ export declare const cxLogContract: {
5670
5896
  telephonySignature: string | null;
5671
5897
  } | undefined;
5672
5898
  } | null;
5673
- slaMeet?: string | null | undefined;
5674
5899
  }[];
5675
5900
  }>;
5676
5901
  401: z.ZodObject<{