@kl1/contracts 1.0.21 → 1.0.23
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.
- package/dist/index.js +44 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -8
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +2227 -249
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +340 -36
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +466 -54
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +2787 -378
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +317 -92
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +348 -67
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +6 -6
- package/dist/src/dashboard/schema.d.ts +4 -4
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +233 -27
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +4 -4
- package/dist/src/ticket/validation.d.ts +4 -4
- package/dist/src/user-presence-status-log/index.d.ts +2 -0
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -13485,20 +13485,20 @@ export declare const apiContract: {
|
|
13485
13485
|
pageSize: import("zod").ZodNumber;
|
13486
13486
|
cxLogs: import("zod").ZodArray<import("zod").ZodObject<{
|
13487
13487
|
id: import("zod").ZodString;
|
13488
|
-
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
13489
|
-
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
13490
|
-
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
13491
13488
|
createdAt: import("zod").ZodDate;
|
13492
13489
|
updatedAt: import("zod").ZodDate;
|
13493
13490
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13494
|
-
entityId: import("zod").ZodString;
|
13495
13491
|
caseId: import("zod").ZodNumber;
|
13492
|
+
entityId: import("zod").ZodString;
|
13496
13493
|
entityName: import("zod").ZodString;
|
13497
13494
|
channelType: import("zod").ZodNullable<import("zod").ZodString>;
|
13498
|
-
|
13499
|
-
|
13495
|
+
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
13496
|
+
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
13497
|
+
startedDate: import("zod").ZodNullable<import("zod").ZodString>;
|
13498
|
+
handledTime: import("zod").ZodNullable<import("zod").ZodString>;
|
13500
13499
|
firstResponseTime: import("zod").ZodNullable<import("zod").ZodString>;
|
13501
|
-
|
13500
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
13501
|
+
slaMeet: import("zod").ZodNullable<import("zod").ZodString>;
|
13502
13502
|
evaluateForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
13503
13503
|
id: import("zod").ZodString;
|
13504
13504
|
createdAt: import("zod").ZodDate;
|
@@ -13585,7 +13585,7 @@ export declare const apiContract: {
|
|
13585
13585
|
callTo: string | null;
|
13586
13586
|
note: string | null;
|
13587
13587
|
}>>;
|
13588
|
-
room: import("zod").ZodObject<{
|
13588
|
+
room: import("zod").ZodNullable<import("zod").ZodObject<{
|
13589
13589
|
id: import("zod").ZodString;
|
13590
13590
|
createdAt: import("zod").ZodDate;
|
13591
13591
|
updatedAt: import("zod").ZodDate;
|
@@ -15354,14 +15354,76 @@ export declare const apiContract: {
|
|
15354
15354
|
caseId: import("zod").ZodNumber;
|
15355
15355
|
entityId: import("zod").ZodString;
|
15356
15356
|
entityName: import("zod").ZodString;
|
15357
|
-
|
15357
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
15358
15358
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
15359
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
15360
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
15359
15361
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
15360
15362
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
15361
15363
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
15362
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
15364
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
15363
15365
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
15364
|
-
|
15366
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
15367
|
+
id: import("zod").ZodString;
|
15368
|
+
createdAt: import("zod").ZodDate;
|
15369
|
+
updatedAt: import("zod").ZodDate;
|
15370
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15371
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
15372
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
15373
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
15374
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
15375
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
15376
|
+
id: import("zod").ZodString;
|
15377
|
+
createdAt: import("zod").ZodDate;
|
15378
|
+
updatedAt: import("zod").ZodDate;
|
15379
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15380
|
+
name: import("zod").ZodString;
|
15381
|
+
}, "strip", import("zod").ZodTypeAny, {
|
15382
|
+
id: string;
|
15383
|
+
name: string;
|
15384
|
+
createdAt: Date;
|
15385
|
+
updatedAt: Date;
|
15386
|
+
deletedAt: Date | null;
|
15387
|
+
}, {
|
15388
|
+
id: string;
|
15389
|
+
name: string;
|
15390
|
+
createdAt: Date;
|
15391
|
+
updatedAt: Date;
|
15392
|
+
deletedAt: Date | null;
|
15393
|
+
}>, "many">;
|
15394
|
+
}, "strip", import("zod").ZodTypeAny, {
|
15395
|
+
id: string;
|
15396
|
+
disposition: string | null;
|
15397
|
+
createdAt: Date;
|
15398
|
+
updatedAt: Date;
|
15399
|
+
deletedAt: Date | null;
|
15400
|
+
tags: {
|
15401
|
+
id: string;
|
15402
|
+
name: string;
|
15403
|
+
createdAt: Date;
|
15404
|
+
updatedAt: Date;
|
15405
|
+
deletedAt: Date | null;
|
15406
|
+
}[];
|
15407
|
+
callFrom: string | null;
|
15408
|
+
callTo: string | null;
|
15409
|
+
note: string | null;
|
15410
|
+
}, {
|
15411
|
+
id: string;
|
15412
|
+
disposition: string | null;
|
15413
|
+
createdAt: Date;
|
15414
|
+
updatedAt: Date;
|
15415
|
+
deletedAt: Date | null;
|
15416
|
+
tags: {
|
15417
|
+
id: string;
|
15418
|
+
name: string;
|
15419
|
+
createdAt: Date;
|
15420
|
+
updatedAt: Date;
|
15421
|
+
deletedAt: Date | null;
|
15422
|
+
}[];
|
15423
|
+
callFrom: string | null;
|
15424
|
+
callTo: string | null;
|
15425
|
+
note: string | null;
|
15426
|
+
}>>;
|
15365
15427
|
}, "strip", import("zod").ZodTypeAny, {
|
15366
15428
|
id: string;
|
15367
15429
|
channel: string | null;
|
@@ -15371,13 +15433,31 @@ export declare const apiContract: {
|
|
15371
15433
|
updatedAt: Date;
|
15372
15434
|
deletedAt: Date | null;
|
15373
15435
|
entityId: string;
|
15436
|
+
contactId: string | null;
|
15374
15437
|
caseId: number;
|
15375
15438
|
entityName: string;
|
15376
|
-
|
15439
|
+
queueId: string | null;
|
15440
|
+
agentId: string | null;
|
15377
15441
|
startedDate: Date | null;
|
15378
15442
|
handledTime: number | null;
|
15379
|
-
firstResponseTime:
|
15380
|
-
|
15443
|
+
firstResponseTime: number | null;
|
15444
|
+
wrapUpForm: {
|
15445
|
+
id: string;
|
15446
|
+
disposition: string | null;
|
15447
|
+
createdAt: Date;
|
15448
|
+
updatedAt: Date;
|
15449
|
+
deletedAt: Date | null;
|
15450
|
+
tags: {
|
15451
|
+
id: string;
|
15452
|
+
name: string;
|
15453
|
+
createdAt: Date;
|
15454
|
+
updatedAt: Date;
|
15455
|
+
deletedAt: Date | null;
|
15456
|
+
}[];
|
15457
|
+
callFrom: string | null;
|
15458
|
+
callTo: string | null;
|
15459
|
+
note: string | null;
|
15460
|
+
} | null;
|
15381
15461
|
}, {
|
15382
15462
|
id: string;
|
15383
15463
|
channel: string | null;
|
@@ -15387,13 +15467,31 @@ export declare const apiContract: {
|
|
15387
15467
|
updatedAt: Date;
|
15388
15468
|
deletedAt: Date | null;
|
15389
15469
|
entityId: string;
|
15470
|
+
contactId: string | null;
|
15390
15471
|
caseId: number;
|
15391
15472
|
entityName: string;
|
15392
|
-
|
15473
|
+
queueId: string | null;
|
15474
|
+
agentId: string | null;
|
15393
15475
|
startedDate: Date | null;
|
15394
15476
|
handledTime: number | null;
|
15395
|
-
firstResponseTime:
|
15396
|
-
|
15477
|
+
firstResponseTime: number | null;
|
15478
|
+
wrapUpForm: {
|
15479
|
+
id: string;
|
15480
|
+
disposition: string | null;
|
15481
|
+
createdAt: Date;
|
15482
|
+
updatedAt: Date;
|
15483
|
+
deletedAt: Date | null;
|
15484
|
+
tags: {
|
15485
|
+
id: string;
|
15486
|
+
name: string;
|
15487
|
+
createdAt: Date;
|
15488
|
+
updatedAt: Date;
|
15489
|
+
deletedAt: Date | null;
|
15490
|
+
}[];
|
15491
|
+
callFrom: string | null;
|
15492
|
+
callTo: string | null;
|
15493
|
+
note: string | null;
|
15494
|
+
} | null;
|
15397
15495
|
}>;
|
15398
15496
|
}, "strip", import("zod").ZodTypeAny, {
|
15399
15497
|
id: string;
|
@@ -15620,13 +15718,31 @@ export declare const apiContract: {
|
|
15620
15718
|
updatedAt: Date;
|
15621
15719
|
deletedAt: Date | null;
|
15622
15720
|
entityId: string;
|
15721
|
+
contactId: string | null;
|
15623
15722
|
caseId: number;
|
15624
15723
|
entityName: string;
|
15625
|
-
|
15724
|
+
queueId: string | null;
|
15725
|
+
agentId: string | null;
|
15626
15726
|
startedDate: Date | null;
|
15627
15727
|
handledTime: number | null;
|
15628
|
-
firstResponseTime:
|
15629
|
-
|
15728
|
+
firstResponseTime: number | null;
|
15729
|
+
wrapUpForm: {
|
15730
|
+
id: string;
|
15731
|
+
disposition: string | null;
|
15732
|
+
createdAt: Date;
|
15733
|
+
updatedAt: Date;
|
15734
|
+
deletedAt: Date | null;
|
15735
|
+
tags: {
|
15736
|
+
id: string;
|
15737
|
+
name: string;
|
15738
|
+
createdAt: Date;
|
15739
|
+
updatedAt: Date;
|
15740
|
+
deletedAt: Date | null;
|
15741
|
+
}[];
|
15742
|
+
callFrom: string | null;
|
15743
|
+
callTo: string | null;
|
15744
|
+
note: string | null;
|
15745
|
+
} | null;
|
15630
15746
|
};
|
15631
15747
|
channel?: {
|
15632
15748
|
id?: string | undefined;
|
@@ -15916,13 +16032,31 @@ export declare const apiContract: {
|
|
15916
16032
|
updatedAt: Date;
|
15917
16033
|
deletedAt: Date | null;
|
15918
16034
|
entityId: string;
|
16035
|
+
contactId: string | null;
|
15919
16036
|
caseId: number;
|
15920
16037
|
entityName: string;
|
15921
|
-
|
16038
|
+
queueId: string | null;
|
16039
|
+
agentId: string | null;
|
15922
16040
|
startedDate: Date | null;
|
15923
16041
|
handledTime: number | null;
|
15924
|
-
firstResponseTime:
|
15925
|
-
|
16042
|
+
firstResponseTime: number | null;
|
16043
|
+
wrapUpForm: {
|
16044
|
+
id: string;
|
16045
|
+
disposition: string | null;
|
16046
|
+
createdAt: Date;
|
16047
|
+
updatedAt: Date;
|
16048
|
+
deletedAt: Date | null;
|
16049
|
+
tags: {
|
16050
|
+
id: string;
|
16051
|
+
name: string;
|
16052
|
+
createdAt: Date;
|
16053
|
+
updatedAt: Date;
|
16054
|
+
deletedAt: Date | null;
|
16055
|
+
}[];
|
16056
|
+
callFrom: string | null;
|
16057
|
+
callTo: string | null;
|
16058
|
+
note: string | null;
|
16059
|
+
} | null;
|
15926
16060
|
};
|
15927
16061
|
channel?: {
|
15928
16062
|
id?: string | undefined;
|
@@ -15987,7 +16121,7 @@ export declare const apiContract: {
|
|
15987
16121
|
} | undefined;
|
15988
16122
|
} | undefined;
|
15989
16123
|
} | undefined;
|
15990
|
-
}
|
16124
|
+
}>>;
|
15991
16125
|
telephonyCdr: import("zod").ZodNullable<import("zod").ZodObject<{
|
15992
16126
|
id: import("zod").ZodString;
|
15993
16127
|
createdAt: import("zod").ZodDate;
|
@@ -16061,6 +16195,13 @@ export declare const apiContract: {
|
|
16061
16195
|
telephonyQueueId: string | null;
|
16062
16196
|
contactId: string | null;
|
16063
16197
|
}>>;
|
16198
|
+
queue: import("zod").ZodNullable<import("zod").ZodObject<{
|
16199
|
+
queueName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
16200
|
+
}, "strip", import("zod").ZodTypeAny, {
|
16201
|
+
queueName?: string | null | undefined;
|
16202
|
+
}, {
|
16203
|
+
queueName?: string | null | undefined;
|
16204
|
+
}>>;
|
16064
16205
|
contact: import("zod").ZodNullable<import("zod").ZodObject<{
|
16065
16206
|
id: import("zod").ZodString;
|
16066
16207
|
createdAt: import("zod").ZodDate;
|
@@ -17113,19 +17254,9 @@ export declare const apiContract: {
|
|
17113
17254
|
entityId: string;
|
17114
17255
|
caseId: number;
|
17115
17256
|
entityName: string;
|
17116
|
-
|
17117
|
-
|
17118
|
-
handledTime: number | null;
|
17257
|
+
startedDate: string | null;
|
17258
|
+
handledTime: string | null;
|
17119
17259
|
firstResponseTime: string | null;
|
17120
|
-
evaluateForm: {
|
17121
|
-
id: string;
|
17122
|
-
createdAt: Date;
|
17123
|
-
updatedAt: Date;
|
17124
|
-
deletedAt: Date | null;
|
17125
|
-
cxLogId: string;
|
17126
|
-
sentimentScore: string | null;
|
17127
|
-
csatScore: string | null;
|
17128
|
-
} | null;
|
17129
17260
|
wrapUpForm: {
|
17130
17261
|
id: string;
|
17131
17262
|
disposition: string | null;
|
@@ -17143,6 +17274,17 @@ export declare const apiContract: {
|
|
17143
17274
|
callTo: string | null;
|
17144
17275
|
note: string | null;
|
17145
17276
|
} | null;
|
17277
|
+
channelType: string | null;
|
17278
|
+
slaMeet: string | null;
|
17279
|
+
evaluateForm: {
|
17280
|
+
id: string;
|
17281
|
+
createdAt: Date;
|
17282
|
+
updatedAt: Date;
|
17283
|
+
deletedAt: Date | null;
|
17284
|
+
cxLogId: string;
|
17285
|
+
sentimentScore: string | null;
|
17286
|
+
csatScore: string | null;
|
17287
|
+
} | null;
|
17146
17288
|
room: {
|
17147
17289
|
id: string;
|
17148
17290
|
direction: "incoming" | "outgoing" | "system";
|
@@ -17368,13 +17510,31 @@ export declare const apiContract: {
|
|
17368
17510
|
updatedAt: Date;
|
17369
17511
|
deletedAt: Date | null;
|
17370
17512
|
entityId: string;
|
17513
|
+
contactId: string | null;
|
17371
17514
|
caseId: number;
|
17372
17515
|
entityName: string;
|
17373
|
-
|
17516
|
+
queueId: string | null;
|
17517
|
+
agentId: string | null;
|
17374
17518
|
startedDate: Date | null;
|
17375
17519
|
handledTime: number | null;
|
17376
|
-
firstResponseTime:
|
17377
|
-
|
17520
|
+
firstResponseTime: number | null;
|
17521
|
+
wrapUpForm: {
|
17522
|
+
id: string;
|
17523
|
+
disposition: string | null;
|
17524
|
+
createdAt: Date;
|
17525
|
+
updatedAt: Date;
|
17526
|
+
deletedAt: Date | null;
|
17527
|
+
tags: {
|
17528
|
+
id: string;
|
17529
|
+
name: string;
|
17530
|
+
createdAt: Date;
|
17531
|
+
updatedAt: Date;
|
17532
|
+
deletedAt: Date | null;
|
17533
|
+
}[];
|
17534
|
+
callFrom: string | null;
|
17535
|
+
callTo: string | null;
|
17536
|
+
note: string | null;
|
17537
|
+
} | null;
|
17378
17538
|
};
|
17379
17539
|
channel?: {
|
17380
17540
|
id?: string | undefined;
|
@@ -17439,7 +17599,7 @@ export declare const apiContract: {
|
|
17439
17599
|
} | undefined;
|
17440
17600
|
} | undefined;
|
17441
17601
|
} | undefined;
|
17442
|
-
};
|
17602
|
+
} | null;
|
17443
17603
|
telephonyCdr: {
|
17444
17604
|
type: string;
|
17445
17605
|
id: string;
|
@@ -17465,6 +17625,9 @@ export declare const apiContract: {
|
|
17465
17625
|
telephonyQueueId: string | null;
|
17466
17626
|
contactId: string | null;
|
17467
17627
|
} | null;
|
17628
|
+
queue: {
|
17629
|
+
queueName?: string | null | undefined;
|
17630
|
+
} | null;
|
17468
17631
|
agent: {
|
17469
17632
|
id: string;
|
17470
17633
|
address: string | null;
|
@@ -17508,7 +17671,6 @@ export declare const apiContract: {
|
|
17508
17671
|
telephonySignature: string | null;
|
17509
17672
|
} | undefined;
|
17510
17673
|
} | null;
|
17511
|
-
slaMeet?: string | null | undefined;
|
17512
17674
|
}, {
|
17513
17675
|
id: string;
|
17514
17676
|
channel: string | null;
|
@@ -17622,19 +17784,9 @@ export declare const apiContract: {
|
|
17622
17784
|
entityId: string;
|
17623
17785
|
caseId: number;
|
17624
17786
|
entityName: string;
|
17625
|
-
|
17626
|
-
|
17627
|
-
handledTime: number | null;
|
17787
|
+
startedDate: string | null;
|
17788
|
+
handledTime: string | null;
|
17628
17789
|
firstResponseTime: string | null;
|
17629
|
-
evaluateForm: {
|
17630
|
-
id: string;
|
17631
|
-
createdAt: Date;
|
17632
|
-
updatedAt: Date;
|
17633
|
-
deletedAt: Date | null;
|
17634
|
-
cxLogId: string;
|
17635
|
-
sentimentScore: string | null;
|
17636
|
-
csatScore: string | null;
|
17637
|
-
} | null;
|
17638
17790
|
wrapUpForm: {
|
17639
17791
|
id: string;
|
17640
17792
|
disposition: string | null;
|
@@ -17652,6 +17804,17 @@ export declare const apiContract: {
|
|
17652
17804
|
callTo: string | null;
|
17653
17805
|
note: string | null;
|
17654
17806
|
} | null;
|
17807
|
+
channelType: string | null;
|
17808
|
+
slaMeet: string | null;
|
17809
|
+
evaluateForm: {
|
17810
|
+
id: string;
|
17811
|
+
createdAt: Date;
|
17812
|
+
updatedAt: Date;
|
17813
|
+
deletedAt: Date | null;
|
17814
|
+
cxLogId: string;
|
17815
|
+
sentimentScore: string | null;
|
17816
|
+
csatScore: string | null;
|
17817
|
+
} | null;
|
17655
17818
|
room: {
|
17656
17819
|
id: string;
|
17657
17820
|
direction: "incoming" | "outgoing" | "system";
|
@@ -17877,13 +18040,31 @@ export declare const apiContract: {
|
|
17877
18040
|
updatedAt: Date;
|
17878
18041
|
deletedAt: Date | null;
|
17879
18042
|
entityId: string;
|
18043
|
+
contactId: string | null;
|
17880
18044
|
caseId: number;
|
17881
18045
|
entityName: string;
|
17882
|
-
|
18046
|
+
queueId: string | null;
|
18047
|
+
agentId: string | null;
|
17883
18048
|
startedDate: Date | null;
|
17884
18049
|
handledTime: number | null;
|
17885
|
-
firstResponseTime:
|
17886
|
-
|
18050
|
+
firstResponseTime: number | null;
|
18051
|
+
wrapUpForm: {
|
18052
|
+
id: string;
|
18053
|
+
disposition: string | null;
|
18054
|
+
createdAt: Date;
|
18055
|
+
updatedAt: Date;
|
18056
|
+
deletedAt: Date | null;
|
18057
|
+
tags: {
|
18058
|
+
id: string;
|
18059
|
+
name: string;
|
18060
|
+
createdAt: Date;
|
18061
|
+
updatedAt: Date;
|
18062
|
+
deletedAt: Date | null;
|
18063
|
+
}[];
|
18064
|
+
callFrom: string | null;
|
18065
|
+
callTo: string | null;
|
18066
|
+
note: string | null;
|
18067
|
+
} | null;
|
17887
18068
|
};
|
17888
18069
|
channel?: {
|
17889
18070
|
id?: string | undefined;
|
@@ -17948,7 +18129,7 @@ export declare const apiContract: {
|
|
17948
18129
|
} | undefined;
|
17949
18130
|
} | undefined;
|
17950
18131
|
} | undefined;
|
17951
|
-
};
|
18132
|
+
} | null;
|
17952
18133
|
telephonyCdr: {
|
17953
18134
|
type: string;
|
17954
18135
|
id: string;
|
@@ -17974,6 +18155,9 @@ export declare const apiContract: {
|
|
17974
18155
|
telephonyQueueId: string | null;
|
17975
18156
|
contactId: string | null;
|
17976
18157
|
} | null;
|
18158
|
+
queue: {
|
18159
|
+
queueName?: string | null | undefined;
|
18160
|
+
} | null;
|
17977
18161
|
agent: {
|
17978
18162
|
id: string;
|
17979
18163
|
address: string | null;
|
@@ -18017,7 +18201,6 @@ export declare const apiContract: {
|
|
18017
18201
|
telephonySignature: string | null;
|
18018
18202
|
} | undefined;
|
18019
18203
|
} | null;
|
18020
|
-
slaMeet?: string | null | undefined;
|
18021
18204
|
}>, "many">;
|
18022
18205
|
}, "strip", import("zod").ZodTypeAny, {
|
18023
18206
|
total: number;
|
@@ -18137,19 +18320,9 @@ export declare const apiContract: {
|
|
18137
18320
|
entityId: string;
|
18138
18321
|
caseId: number;
|
18139
18322
|
entityName: string;
|
18140
|
-
|
18141
|
-
|
18142
|
-
handledTime: number | null;
|
18323
|
+
startedDate: string | null;
|
18324
|
+
handledTime: string | null;
|
18143
18325
|
firstResponseTime: string | null;
|
18144
|
-
evaluateForm: {
|
18145
|
-
id: string;
|
18146
|
-
createdAt: Date;
|
18147
|
-
updatedAt: Date;
|
18148
|
-
deletedAt: Date | null;
|
18149
|
-
cxLogId: string;
|
18150
|
-
sentimentScore: string | null;
|
18151
|
-
csatScore: string | null;
|
18152
|
-
} | null;
|
18153
18326
|
wrapUpForm: {
|
18154
18327
|
id: string;
|
18155
18328
|
disposition: string | null;
|
@@ -18167,6 +18340,17 @@ export declare const apiContract: {
|
|
18167
18340
|
callTo: string | null;
|
18168
18341
|
note: string | null;
|
18169
18342
|
} | null;
|
18343
|
+
channelType: string | null;
|
18344
|
+
slaMeet: string | null;
|
18345
|
+
evaluateForm: {
|
18346
|
+
id: string;
|
18347
|
+
createdAt: Date;
|
18348
|
+
updatedAt: Date;
|
18349
|
+
deletedAt: Date | null;
|
18350
|
+
cxLogId: string;
|
18351
|
+
sentimentScore: string | null;
|
18352
|
+
csatScore: string | null;
|
18353
|
+
} | null;
|
18170
18354
|
room: {
|
18171
18355
|
id: string;
|
18172
18356
|
direction: "incoming" | "outgoing" | "system";
|
@@ -18392,13 +18576,31 @@ export declare const apiContract: {
|
|
18392
18576
|
updatedAt: Date;
|
18393
18577
|
deletedAt: Date | null;
|
18394
18578
|
entityId: string;
|
18579
|
+
contactId: string | null;
|
18395
18580
|
caseId: number;
|
18396
18581
|
entityName: string;
|
18397
|
-
|
18582
|
+
queueId: string | null;
|
18583
|
+
agentId: string | null;
|
18398
18584
|
startedDate: Date | null;
|
18399
18585
|
handledTime: number | null;
|
18400
|
-
firstResponseTime:
|
18401
|
-
|
18586
|
+
firstResponseTime: number | null;
|
18587
|
+
wrapUpForm: {
|
18588
|
+
id: string;
|
18589
|
+
disposition: string | null;
|
18590
|
+
createdAt: Date;
|
18591
|
+
updatedAt: Date;
|
18592
|
+
deletedAt: Date | null;
|
18593
|
+
tags: {
|
18594
|
+
id: string;
|
18595
|
+
name: string;
|
18596
|
+
createdAt: Date;
|
18597
|
+
updatedAt: Date;
|
18598
|
+
deletedAt: Date | null;
|
18599
|
+
}[];
|
18600
|
+
callFrom: string | null;
|
18601
|
+
callTo: string | null;
|
18602
|
+
note: string | null;
|
18603
|
+
} | null;
|
18402
18604
|
};
|
18403
18605
|
channel?: {
|
18404
18606
|
id?: string | undefined;
|
@@ -18463,7 +18665,7 @@ export declare const apiContract: {
|
|
18463
18665
|
} | undefined;
|
18464
18666
|
} | undefined;
|
18465
18667
|
} | undefined;
|
18466
|
-
};
|
18668
|
+
} | null;
|
18467
18669
|
telephonyCdr: {
|
18468
18670
|
type: string;
|
18469
18671
|
id: string;
|
@@ -18489,6 +18691,9 @@ export declare const apiContract: {
|
|
18489
18691
|
telephonyQueueId: string | null;
|
18490
18692
|
contactId: string | null;
|
18491
18693
|
} | null;
|
18694
|
+
queue: {
|
18695
|
+
queueName?: string | null | undefined;
|
18696
|
+
} | null;
|
18492
18697
|
agent: {
|
18493
18698
|
id: string;
|
18494
18699
|
address: string | null;
|
@@ -18532,7 +18737,6 @@ export declare const apiContract: {
|
|
18532
18737
|
telephonySignature: string | null;
|
18533
18738
|
} | undefined;
|
18534
18739
|
} | null;
|
18535
|
-
slaMeet?: string | null | undefined;
|
18536
18740
|
}[];
|
18537
18741
|
}, {
|
18538
18742
|
total: number;
|
@@ -18652,19 +18856,9 @@ export declare const apiContract: {
|
|
18652
18856
|
entityId: string;
|
18653
18857
|
caseId: number;
|
18654
18858
|
entityName: string;
|
18655
|
-
|
18656
|
-
|
18657
|
-
handledTime: number | null;
|
18859
|
+
startedDate: string | null;
|
18860
|
+
handledTime: string | null;
|
18658
18861
|
firstResponseTime: string | null;
|
18659
|
-
evaluateForm: {
|
18660
|
-
id: string;
|
18661
|
-
createdAt: Date;
|
18662
|
-
updatedAt: Date;
|
18663
|
-
deletedAt: Date | null;
|
18664
|
-
cxLogId: string;
|
18665
|
-
sentimentScore: string | null;
|
18666
|
-
csatScore: string | null;
|
18667
|
-
} | null;
|
18668
18862
|
wrapUpForm: {
|
18669
18863
|
id: string;
|
18670
18864
|
disposition: string | null;
|
@@ -18682,6 +18876,17 @@ export declare const apiContract: {
|
|
18682
18876
|
callTo: string | null;
|
18683
18877
|
note: string | null;
|
18684
18878
|
} | null;
|
18879
|
+
channelType: string | null;
|
18880
|
+
slaMeet: string | null;
|
18881
|
+
evaluateForm: {
|
18882
|
+
id: string;
|
18883
|
+
createdAt: Date;
|
18884
|
+
updatedAt: Date;
|
18885
|
+
deletedAt: Date | null;
|
18886
|
+
cxLogId: string;
|
18887
|
+
sentimentScore: string | null;
|
18888
|
+
csatScore: string | null;
|
18889
|
+
} | null;
|
18685
18890
|
room: {
|
18686
18891
|
id: string;
|
18687
18892
|
direction: "incoming" | "outgoing" | "system";
|
@@ -18907,13 +19112,31 @@ export declare const apiContract: {
|
|
18907
19112
|
updatedAt: Date;
|
18908
19113
|
deletedAt: Date | null;
|
18909
19114
|
entityId: string;
|
19115
|
+
contactId: string | null;
|
18910
19116
|
caseId: number;
|
18911
19117
|
entityName: string;
|
18912
|
-
|
19118
|
+
queueId: string | null;
|
19119
|
+
agentId: string | null;
|
18913
19120
|
startedDate: Date | null;
|
18914
19121
|
handledTime: number | null;
|
18915
|
-
firstResponseTime:
|
18916
|
-
|
19122
|
+
firstResponseTime: number | null;
|
19123
|
+
wrapUpForm: {
|
19124
|
+
id: string;
|
19125
|
+
disposition: string | null;
|
19126
|
+
createdAt: Date;
|
19127
|
+
updatedAt: Date;
|
19128
|
+
deletedAt: Date | null;
|
19129
|
+
tags: {
|
19130
|
+
id: string;
|
19131
|
+
name: string;
|
19132
|
+
createdAt: Date;
|
19133
|
+
updatedAt: Date;
|
19134
|
+
deletedAt: Date | null;
|
19135
|
+
}[];
|
19136
|
+
callFrom: string | null;
|
19137
|
+
callTo: string | null;
|
19138
|
+
note: string | null;
|
19139
|
+
} | null;
|
18917
19140
|
};
|
18918
19141
|
channel?: {
|
18919
19142
|
id?: string | undefined;
|
@@ -18978,7 +19201,7 @@ export declare const apiContract: {
|
|
18978
19201
|
} | undefined;
|
18979
19202
|
} | undefined;
|
18980
19203
|
} | undefined;
|
18981
|
-
};
|
19204
|
+
} | null;
|
18982
19205
|
telephonyCdr: {
|
18983
19206
|
type: string;
|
18984
19207
|
id: string;
|
@@ -19004,6 +19227,9 @@ export declare const apiContract: {
|
|
19004
19227
|
telephonyQueueId: string | null;
|
19005
19228
|
contactId: string | null;
|
19006
19229
|
} | null;
|
19230
|
+
queue: {
|
19231
|
+
queueName?: string | null | undefined;
|
19232
|
+
} | null;
|
19007
19233
|
agent: {
|
19008
19234
|
id: string;
|
19009
19235
|
address: string | null;
|
@@ -19047,7 +19273,6 @@ export declare const apiContract: {
|
|
19047
19273
|
telephonySignature: string | null;
|
19048
19274
|
} | undefined;
|
19049
19275
|
} | null;
|
19050
|
-
slaMeet?: string | null | undefined;
|
19051
19276
|
}[];
|
19052
19277
|
}>;
|
19053
19278
|
401: import("zod").ZodObject<{
|
@@ -19361,8 +19586,8 @@ export declare const apiContract: {
|
|
19361
19586
|
totalMaximumRingDuration: string;
|
19362
19587
|
}>;
|
19363
19588
|
}, "strip", import("zod").ZodTypeAny, {
|
19364
|
-
queueNumber: number;
|
19365
19589
|
queueName: string;
|
19590
|
+
queueNumber: number;
|
19366
19591
|
yeastarQueueCallCountList: {
|
19367
19592
|
totalQueueCall: string;
|
19368
19593
|
totalMissedQueueCall: string;
|
@@ -19376,8 +19601,8 @@ export declare const apiContract: {
|
|
19376
19601
|
totalMaximumRingDuration: string;
|
19377
19602
|
};
|
19378
19603
|
}, {
|
19379
|
-
queueNumber: number;
|
19380
19604
|
queueName: string;
|
19605
|
+
queueNumber: number;
|
19381
19606
|
yeastarQueueCallCountList: {
|
19382
19607
|
totalQueueCall: string;
|
19383
19608
|
totalMissedQueueCall: string;
|
@@ -19405,8 +19630,8 @@ export declare const apiContract: {
|
|
19405
19630
|
totalMaximumRingDuration: string;
|
19406
19631
|
};
|
19407
19632
|
telephonyQueueCallCountListByQueueNumber: {
|
19408
|
-
queueNumber: number;
|
19409
19633
|
queueName: string;
|
19634
|
+
queueNumber: number;
|
19410
19635
|
yeastarQueueCallCountList: {
|
19411
19636
|
totalQueueCall: string;
|
19412
19637
|
totalMissedQueueCall: string;
|
@@ -19434,8 +19659,8 @@ export declare const apiContract: {
|
|
19434
19659
|
totalMaximumRingDuration: string;
|
19435
19660
|
};
|
19436
19661
|
telephonyQueueCallCountListByQueueNumber: {
|
19437
|
-
queueNumber: number;
|
19438
19662
|
queueName: string;
|
19663
|
+
queueNumber: number;
|
19439
19664
|
yeastarQueueCallCountList: {
|
19440
19665
|
totalQueueCall: string;
|
19441
19666
|
totalMissedQueueCall: string;
|
@@ -19466,8 +19691,8 @@ export declare const apiContract: {
|
|
19466
19691
|
totalMaximumRingDuration: string;
|
19467
19692
|
};
|
19468
19693
|
telephonyQueueCallCountListByQueueNumber: {
|
19469
|
-
queueNumber: number;
|
19470
19694
|
queueName: string;
|
19695
|
+
queueNumber: number;
|
19471
19696
|
yeastarQueueCallCountList: {
|
19472
19697
|
totalQueueCall: string;
|
19473
19698
|
totalMissedQueueCall: string;
|
@@ -19498,8 +19723,8 @@ export declare const apiContract: {
|
|
19498
19723
|
totalMaximumRingDuration: string;
|
19499
19724
|
};
|
19500
19725
|
telephonyQueueCallCountListByQueueNumber: {
|
19501
|
-
queueNumber: number;
|
19502
19726
|
queueName: string;
|
19727
|
+
queueNumber: number;
|
19503
19728
|
yeastarQueueCallCountList: {
|
19504
19729
|
totalQueueCall: string;
|
19505
19730
|
totalMissedQueueCall: string;
|
@@ -39509,8 +39734,8 @@ export declare const apiContract: {
|
|
39509
39734
|
summary: "Get all tickets";
|
39510
39735
|
method: "GET";
|
39511
39736
|
query: import("zod").ZodObject<{
|
39512
|
-
page: import("zod").ZodOptional<import("zod").
|
39513
|
-
pageSize: import("zod").ZodOptional<import("zod").
|
39737
|
+
page: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, number, string>>;
|
39738
|
+
pageSize: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, number, string>>;
|
39514
39739
|
agent: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
39515
39740
|
selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
|
39516
39741
|
keyword: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -39559,8 +39784,8 @@ export declare const apiContract: {
|
|
39559
39784
|
attributeId: string;
|
39560
39785
|
}[] | undefined;
|
39561
39786
|
}, {
|
39562
|
-
page?:
|
39563
|
-
pageSize?:
|
39787
|
+
page?: string | undefined;
|
39788
|
+
pageSize?: string | undefined;
|
39564
39789
|
agent?: string[] | undefined;
|
39565
39790
|
selectedDate?: string | undefined;
|
39566
39791
|
keyword?: string | undefined;
|
@@ -47521,14 +47746,76 @@ export declare const platformContract: {
|
|
47521
47746
|
caseId: import("zod").ZodNumber;
|
47522
47747
|
entityId: import("zod").ZodString;
|
47523
47748
|
entityName: import("zod").ZodString;
|
47524
|
-
|
47749
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
47525
47750
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
47751
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
47752
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
47526
47753
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
47527
47754
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
47528
47755
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
47529
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
47756
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
47530
47757
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
47531
|
-
|
47758
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
47759
|
+
id: import("zod").ZodString;
|
47760
|
+
createdAt: import("zod").ZodDate;
|
47761
|
+
updatedAt: import("zod").ZodDate;
|
47762
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
47763
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
47764
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
47765
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
47766
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
47767
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
47768
|
+
id: import("zod").ZodString;
|
47769
|
+
createdAt: import("zod").ZodDate;
|
47770
|
+
updatedAt: import("zod").ZodDate;
|
47771
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
47772
|
+
name: import("zod").ZodString;
|
47773
|
+
}, "strip", import("zod").ZodTypeAny, {
|
47774
|
+
id: string;
|
47775
|
+
name: string;
|
47776
|
+
createdAt: Date;
|
47777
|
+
updatedAt: Date;
|
47778
|
+
deletedAt: Date | null;
|
47779
|
+
}, {
|
47780
|
+
id: string;
|
47781
|
+
name: string;
|
47782
|
+
createdAt: Date;
|
47783
|
+
updatedAt: Date;
|
47784
|
+
deletedAt: Date | null;
|
47785
|
+
}>, "many">;
|
47786
|
+
}, "strip", import("zod").ZodTypeAny, {
|
47787
|
+
id: string;
|
47788
|
+
disposition: string | null;
|
47789
|
+
createdAt: Date;
|
47790
|
+
updatedAt: Date;
|
47791
|
+
deletedAt: Date | null;
|
47792
|
+
tags: {
|
47793
|
+
id: string;
|
47794
|
+
name: string;
|
47795
|
+
createdAt: Date;
|
47796
|
+
updatedAt: Date;
|
47797
|
+
deletedAt: Date | null;
|
47798
|
+
}[];
|
47799
|
+
callFrom: string | null;
|
47800
|
+
callTo: string | null;
|
47801
|
+
note: string | null;
|
47802
|
+
}, {
|
47803
|
+
id: string;
|
47804
|
+
disposition: string | null;
|
47805
|
+
createdAt: Date;
|
47806
|
+
updatedAt: Date;
|
47807
|
+
deletedAt: Date | null;
|
47808
|
+
tags: {
|
47809
|
+
id: string;
|
47810
|
+
name: string;
|
47811
|
+
createdAt: Date;
|
47812
|
+
updatedAt: Date;
|
47813
|
+
deletedAt: Date | null;
|
47814
|
+
}[];
|
47815
|
+
callFrom: string | null;
|
47816
|
+
callTo: string | null;
|
47817
|
+
note: string | null;
|
47818
|
+
}>>;
|
47532
47819
|
}, "strip", import("zod").ZodTypeAny, {
|
47533
47820
|
id: string;
|
47534
47821
|
channel: string | null;
|
@@ -47538,13 +47825,31 @@ export declare const platformContract: {
|
|
47538
47825
|
updatedAt: Date;
|
47539
47826
|
deletedAt: Date | null;
|
47540
47827
|
entityId: string;
|
47828
|
+
contactId: string | null;
|
47541
47829
|
caseId: number;
|
47542
47830
|
entityName: string;
|
47543
|
-
|
47831
|
+
queueId: string | null;
|
47832
|
+
agentId: string | null;
|
47544
47833
|
startedDate: Date | null;
|
47545
47834
|
handledTime: number | null;
|
47546
|
-
firstResponseTime:
|
47547
|
-
|
47835
|
+
firstResponseTime: number | null;
|
47836
|
+
wrapUpForm: {
|
47837
|
+
id: string;
|
47838
|
+
disposition: string | null;
|
47839
|
+
createdAt: Date;
|
47840
|
+
updatedAt: Date;
|
47841
|
+
deletedAt: Date | null;
|
47842
|
+
tags: {
|
47843
|
+
id: string;
|
47844
|
+
name: string;
|
47845
|
+
createdAt: Date;
|
47846
|
+
updatedAt: Date;
|
47847
|
+
deletedAt: Date | null;
|
47848
|
+
}[];
|
47849
|
+
callFrom: string | null;
|
47850
|
+
callTo: string | null;
|
47851
|
+
note: string | null;
|
47852
|
+
} | null;
|
47548
47853
|
}, {
|
47549
47854
|
id: string;
|
47550
47855
|
channel: string | null;
|
@@ -47554,13 +47859,31 @@ export declare const platformContract: {
|
|
47554
47859
|
updatedAt: Date;
|
47555
47860
|
deletedAt: Date | null;
|
47556
47861
|
entityId: string;
|
47862
|
+
contactId: string | null;
|
47557
47863
|
caseId: number;
|
47558
47864
|
entityName: string;
|
47559
|
-
|
47865
|
+
queueId: string | null;
|
47866
|
+
agentId: string | null;
|
47560
47867
|
startedDate: Date | null;
|
47561
47868
|
handledTime: number | null;
|
47562
|
-
firstResponseTime:
|
47563
|
-
|
47869
|
+
firstResponseTime: number | null;
|
47870
|
+
wrapUpForm: {
|
47871
|
+
id: string;
|
47872
|
+
disposition: string | null;
|
47873
|
+
createdAt: Date;
|
47874
|
+
updatedAt: Date;
|
47875
|
+
deletedAt: Date | null;
|
47876
|
+
tags: {
|
47877
|
+
id: string;
|
47878
|
+
name: string;
|
47879
|
+
createdAt: Date;
|
47880
|
+
updatedAt: Date;
|
47881
|
+
deletedAt: Date | null;
|
47882
|
+
}[];
|
47883
|
+
callFrom: string | null;
|
47884
|
+
callTo: string | null;
|
47885
|
+
note: string | null;
|
47886
|
+
} | null;
|
47564
47887
|
}>;
|
47565
47888
|
}, "strip", import("zod").ZodTypeAny, {
|
47566
47889
|
id: string;
|
@@ -47787,13 +48110,31 @@ export declare const platformContract: {
|
|
47787
48110
|
updatedAt: Date;
|
47788
48111
|
deletedAt: Date | null;
|
47789
48112
|
entityId: string;
|
48113
|
+
contactId: string | null;
|
47790
48114
|
caseId: number;
|
47791
48115
|
entityName: string;
|
47792
|
-
|
48116
|
+
queueId: string | null;
|
48117
|
+
agentId: string | null;
|
47793
48118
|
startedDate: Date | null;
|
47794
48119
|
handledTime: number | null;
|
47795
|
-
firstResponseTime:
|
47796
|
-
|
48120
|
+
firstResponseTime: number | null;
|
48121
|
+
wrapUpForm: {
|
48122
|
+
id: string;
|
48123
|
+
disposition: string | null;
|
48124
|
+
createdAt: Date;
|
48125
|
+
updatedAt: Date;
|
48126
|
+
deletedAt: Date | null;
|
48127
|
+
tags: {
|
48128
|
+
id: string;
|
48129
|
+
name: string;
|
48130
|
+
createdAt: Date;
|
48131
|
+
updatedAt: Date;
|
48132
|
+
deletedAt: Date | null;
|
48133
|
+
}[];
|
48134
|
+
callFrom: string | null;
|
48135
|
+
callTo: string | null;
|
48136
|
+
note: string | null;
|
48137
|
+
} | null;
|
47797
48138
|
};
|
47798
48139
|
channel?: {
|
47799
48140
|
id?: string | undefined;
|
@@ -48083,13 +48424,31 @@ export declare const platformContract: {
|
|
48083
48424
|
updatedAt: Date;
|
48084
48425
|
deletedAt: Date | null;
|
48085
48426
|
entityId: string;
|
48427
|
+
contactId: string | null;
|
48086
48428
|
caseId: number;
|
48087
48429
|
entityName: string;
|
48088
|
-
|
48430
|
+
queueId: string | null;
|
48431
|
+
agentId: string | null;
|
48089
48432
|
startedDate: Date | null;
|
48090
48433
|
handledTime: number | null;
|
48091
|
-
firstResponseTime:
|
48092
|
-
|
48434
|
+
firstResponseTime: number | null;
|
48435
|
+
wrapUpForm: {
|
48436
|
+
id: string;
|
48437
|
+
disposition: string | null;
|
48438
|
+
createdAt: Date;
|
48439
|
+
updatedAt: Date;
|
48440
|
+
deletedAt: Date | null;
|
48441
|
+
tags: {
|
48442
|
+
id: string;
|
48443
|
+
name: string;
|
48444
|
+
createdAt: Date;
|
48445
|
+
updatedAt: Date;
|
48446
|
+
deletedAt: Date | null;
|
48447
|
+
}[];
|
48448
|
+
callFrom: string | null;
|
48449
|
+
callTo: string | null;
|
48450
|
+
note: string | null;
|
48451
|
+
} | null;
|
48093
48452
|
};
|
48094
48453
|
channel?: {
|
48095
48454
|
id?: string | undefined;
|
@@ -49111,13 +49470,31 @@ export declare const platformContract: {
|
|
49111
49470
|
updatedAt: Date;
|
49112
49471
|
deletedAt: Date | null;
|
49113
49472
|
entityId: string;
|
49473
|
+
contactId: string | null;
|
49114
49474
|
caseId: number;
|
49115
49475
|
entityName: string;
|
49116
|
-
|
49476
|
+
queueId: string | null;
|
49477
|
+
agentId: string | null;
|
49117
49478
|
startedDate: Date | null;
|
49118
49479
|
handledTime: number | null;
|
49119
|
-
firstResponseTime:
|
49120
|
-
|
49480
|
+
firstResponseTime: number | null;
|
49481
|
+
wrapUpForm: {
|
49482
|
+
id: string;
|
49483
|
+
disposition: string | null;
|
49484
|
+
createdAt: Date;
|
49485
|
+
updatedAt: Date;
|
49486
|
+
deletedAt: Date | null;
|
49487
|
+
tags: {
|
49488
|
+
id: string;
|
49489
|
+
name: string;
|
49490
|
+
createdAt: Date;
|
49491
|
+
updatedAt: Date;
|
49492
|
+
deletedAt: Date | null;
|
49493
|
+
}[];
|
49494
|
+
callFrom: string | null;
|
49495
|
+
callTo: string | null;
|
49496
|
+
note: string | null;
|
49497
|
+
} | null;
|
49121
49498
|
};
|
49122
49499
|
channel?: {
|
49123
49500
|
id?: string | undefined;
|
@@ -49565,13 +49942,31 @@ export declare const platformContract: {
|
|
49565
49942
|
updatedAt: Date;
|
49566
49943
|
deletedAt: Date | null;
|
49567
49944
|
entityId: string;
|
49945
|
+
contactId: string | null;
|
49568
49946
|
caseId: number;
|
49569
49947
|
entityName: string;
|
49570
|
-
|
49948
|
+
queueId: string | null;
|
49949
|
+
agentId: string | null;
|
49571
49950
|
startedDate: Date | null;
|
49572
49951
|
handledTime: number | null;
|
49573
|
-
firstResponseTime:
|
49574
|
-
|
49952
|
+
firstResponseTime: number | null;
|
49953
|
+
wrapUpForm: {
|
49954
|
+
id: string;
|
49955
|
+
disposition: string | null;
|
49956
|
+
createdAt: Date;
|
49957
|
+
updatedAt: Date;
|
49958
|
+
deletedAt: Date | null;
|
49959
|
+
tags: {
|
49960
|
+
id: string;
|
49961
|
+
name: string;
|
49962
|
+
createdAt: Date;
|
49963
|
+
updatedAt: Date;
|
49964
|
+
deletedAt: Date | null;
|
49965
|
+
}[];
|
49966
|
+
callFrom: string | null;
|
49967
|
+
callTo: string | null;
|
49968
|
+
note: string | null;
|
49969
|
+
} | null;
|
49575
49970
|
};
|
49576
49971
|
channel?: {
|
49577
49972
|
id?: string | undefined;
|
@@ -50021,13 +50416,31 @@ export declare const platformContract: {
|
|
50021
50416
|
updatedAt: Date;
|
50022
50417
|
deletedAt: Date | null;
|
50023
50418
|
entityId: string;
|
50419
|
+
contactId: string | null;
|
50024
50420
|
caseId: number;
|
50025
50421
|
entityName: string;
|
50026
|
-
|
50422
|
+
queueId: string | null;
|
50423
|
+
agentId: string | null;
|
50027
50424
|
startedDate: Date | null;
|
50028
50425
|
handledTime: number | null;
|
50029
|
-
firstResponseTime:
|
50030
|
-
|
50426
|
+
firstResponseTime: number | null;
|
50427
|
+
wrapUpForm: {
|
50428
|
+
id: string;
|
50429
|
+
disposition: string | null;
|
50430
|
+
createdAt: Date;
|
50431
|
+
updatedAt: Date;
|
50432
|
+
deletedAt: Date | null;
|
50433
|
+
tags: {
|
50434
|
+
id: string;
|
50435
|
+
name: string;
|
50436
|
+
createdAt: Date;
|
50437
|
+
updatedAt: Date;
|
50438
|
+
deletedAt: Date | null;
|
50439
|
+
}[];
|
50440
|
+
callFrom: string | null;
|
50441
|
+
callTo: string | null;
|
50442
|
+
note: string | null;
|
50443
|
+
} | null;
|
50031
50444
|
};
|
50032
50445
|
channel?: {
|
50033
50446
|
id?: string | undefined;
|
@@ -50478,13 +50891,31 @@ export declare const platformContract: {
|
|
50478
50891
|
updatedAt: Date;
|
50479
50892
|
deletedAt: Date | null;
|
50480
50893
|
entityId: string;
|
50894
|
+
contactId: string | null;
|
50481
50895
|
caseId: number;
|
50482
50896
|
entityName: string;
|
50483
|
-
|
50897
|
+
queueId: string | null;
|
50898
|
+
agentId: string | null;
|
50484
50899
|
startedDate: Date | null;
|
50485
50900
|
handledTime: number | null;
|
50486
|
-
firstResponseTime:
|
50487
|
-
|
50901
|
+
firstResponseTime: number | null;
|
50902
|
+
wrapUpForm: {
|
50903
|
+
id: string;
|
50904
|
+
disposition: string | null;
|
50905
|
+
createdAt: Date;
|
50906
|
+
updatedAt: Date;
|
50907
|
+
deletedAt: Date | null;
|
50908
|
+
tags: {
|
50909
|
+
id: string;
|
50910
|
+
name: string;
|
50911
|
+
createdAt: Date;
|
50912
|
+
updatedAt: Date;
|
50913
|
+
deletedAt: Date | null;
|
50914
|
+
}[];
|
50915
|
+
callFrom: string | null;
|
50916
|
+
callTo: string | null;
|
50917
|
+
note: string | null;
|
50918
|
+
} | null;
|
50488
50919
|
};
|
50489
50920
|
channel?: {
|
50490
50921
|
id?: string | undefined;
|
@@ -52682,14 +53113,76 @@ export declare const chatContract: {
|
|
52682
53113
|
caseId: import("zod").ZodNumber;
|
52683
53114
|
entityId: import("zod").ZodString;
|
52684
53115
|
entityName: import("zod").ZodString;
|
52685
|
-
|
53116
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
52686
53117
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
53118
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
53119
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
52687
53120
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
52688
53121
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
52689
53122
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
52690
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
53123
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
52691
53124
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
52692
|
-
|
53125
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
53126
|
+
id: import("zod").ZodString;
|
53127
|
+
createdAt: import("zod").ZodDate;
|
53128
|
+
updatedAt: import("zod").ZodDate;
|
53129
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
53130
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
53131
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
53132
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
53133
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
53134
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
53135
|
+
id: import("zod").ZodString;
|
53136
|
+
createdAt: import("zod").ZodDate;
|
53137
|
+
updatedAt: import("zod").ZodDate;
|
53138
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
53139
|
+
name: import("zod").ZodString;
|
53140
|
+
}, "strip", import("zod").ZodTypeAny, {
|
53141
|
+
id: string;
|
53142
|
+
name: string;
|
53143
|
+
createdAt: Date;
|
53144
|
+
updatedAt: Date;
|
53145
|
+
deletedAt: Date | null;
|
53146
|
+
}, {
|
53147
|
+
id: string;
|
53148
|
+
name: string;
|
53149
|
+
createdAt: Date;
|
53150
|
+
updatedAt: Date;
|
53151
|
+
deletedAt: Date | null;
|
53152
|
+
}>, "many">;
|
53153
|
+
}, "strip", import("zod").ZodTypeAny, {
|
53154
|
+
id: string;
|
53155
|
+
disposition: string | null;
|
53156
|
+
createdAt: Date;
|
53157
|
+
updatedAt: Date;
|
53158
|
+
deletedAt: Date | null;
|
53159
|
+
tags: {
|
53160
|
+
id: string;
|
53161
|
+
name: string;
|
53162
|
+
createdAt: Date;
|
53163
|
+
updatedAt: Date;
|
53164
|
+
deletedAt: Date | null;
|
53165
|
+
}[];
|
53166
|
+
callFrom: string | null;
|
53167
|
+
callTo: string | null;
|
53168
|
+
note: string | null;
|
53169
|
+
}, {
|
53170
|
+
id: string;
|
53171
|
+
disposition: string | null;
|
53172
|
+
createdAt: Date;
|
53173
|
+
updatedAt: Date;
|
53174
|
+
deletedAt: Date | null;
|
53175
|
+
tags: {
|
53176
|
+
id: string;
|
53177
|
+
name: string;
|
53178
|
+
createdAt: Date;
|
53179
|
+
updatedAt: Date;
|
53180
|
+
deletedAt: Date | null;
|
53181
|
+
}[];
|
53182
|
+
callFrom: string | null;
|
53183
|
+
callTo: string | null;
|
53184
|
+
note: string | null;
|
53185
|
+
}>>;
|
52693
53186
|
}, "strip", import("zod").ZodTypeAny, {
|
52694
53187
|
id: string;
|
52695
53188
|
channel: string | null;
|
@@ -52699,13 +53192,31 @@ export declare const chatContract: {
|
|
52699
53192
|
updatedAt: Date;
|
52700
53193
|
deletedAt: Date | null;
|
52701
53194
|
entityId: string;
|
53195
|
+
contactId: string | null;
|
52702
53196
|
caseId: number;
|
52703
53197
|
entityName: string;
|
52704
|
-
|
53198
|
+
queueId: string | null;
|
53199
|
+
agentId: string | null;
|
52705
53200
|
startedDate: Date | null;
|
52706
53201
|
handledTime: number | null;
|
52707
|
-
firstResponseTime:
|
52708
|
-
|
53202
|
+
firstResponseTime: number | null;
|
53203
|
+
wrapUpForm: {
|
53204
|
+
id: string;
|
53205
|
+
disposition: string | null;
|
53206
|
+
createdAt: Date;
|
53207
|
+
updatedAt: Date;
|
53208
|
+
deletedAt: Date | null;
|
53209
|
+
tags: {
|
53210
|
+
id: string;
|
53211
|
+
name: string;
|
53212
|
+
createdAt: Date;
|
53213
|
+
updatedAt: Date;
|
53214
|
+
deletedAt: Date | null;
|
53215
|
+
}[];
|
53216
|
+
callFrom: string | null;
|
53217
|
+
callTo: string | null;
|
53218
|
+
note: string | null;
|
53219
|
+
} | null;
|
52709
53220
|
}, {
|
52710
53221
|
id: string;
|
52711
53222
|
channel: string | null;
|
@@ -52715,13 +53226,31 @@ export declare const chatContract: {
|
|
52715
53226
|
updatedAt: Date;
|
52716
53227
|
deletedAt: Date | null;
|
52717
53228
|
entityId: string;
|
53229
|
+
contactId: string | null;
|
52718
53230
|
caseId: number;
|
52719
53231
|
entityName: string;
|
52720
|
-
|
53232
|
+
queueId: string | null;
|
53233
|
+
agentId: string | null;
|
52721
53234
|
startedDate: Date | null;
|
52722
53235
|
handledTime: number | null;
|
52723
|
-
firstResponseTime:
|
52724
|
-
|
53236
|
+
firstResponseTime: number | null;
|
53237
|
+
wrapUpForm: {
|
53238
|
+
id: string;
|
53239
|
+
disposition: string | null;
|
53240
|
+
createdAt: Date;
|
53241
|
+
updatedAt: Date;
|
53242
|
+
deletedAt: Date | null;
|
53243
|
+
tags: {
|
53244
|
+
id: string;
|
53245
|
+
name: string;
|
53246
|
+
createdAt: Date;
|
53247
|
+
updatedAt: Date;
|
53248
|
+
deletedAt: Date | null;
|
53249
|
+
}[];
|
53250
|
+
callFrom: string | null;
|
53251
|
+
callTo: string | null;
|
53252
|
+
note: string | null;
|
53253
|
+
} | null;
|
52725
53254
|
}>;
|
52726
53255
|
}, "strip", import("zod").ZodTypeAny, {
|
52727
53256
|
id: string;
|
@@ -52948,13 +53477,31 @@ export declare const chatContract: {
|
|
52948
53477
|
updatedAt: Date;
|
52949
53478
|
deletedAt: Date | null;
|
52950
53479
|
entityId: string;
|
53480
|
+
contactId: string | null;
|
52951
53481
|
caseId: number;
|
52952
53482
|
entityName: string;
|
52953
|
-
|
53483
|
+
queueId: string | null;
|
53484
|
+
agentId: string | null;
|
52954
53485
|
startedDate: Date | null;
|
52955
53486
|
handledTime: number | null;
|
52956
|
-
firstResponseTime:
|
52957
|
-
|
53487
|
+
firstResponseTime: number | null;
|
53488
|
+
wrapUpForm: {
|
53489
|
+
id: string;
|
53490
|
+
disposition: string | null;
|
53491
|
+
createdAt: Date;
|
53492
|
+
updatedAt: Date;
|
53493
|
+
deletedAt: Date | null;
|
53494
|
+
tags: {
|
53495
|
+
id: string;
|
53496
|
+
name: string;
|
53497
|
+
createdAt: Date;
|
53498
|
+
updatedAt: Date;
|
53499
|
+
deletedAt: Date | null;
|
53500
|
+
}[];
|
53501
|
+
callFrom: string | null;
|
53502
|
+
callTo: string | null;
|
53503
|
+
note: string | null;
|
53504
|
+
} | null;
|
52958
53505
|
};
|
52959
53506
|
channel?: {
|
52960
53507
|
id?: string | undefined;
|
@@ -53244,13 +53791,31 @@ export declare const chatContract: {
|
|
53244
53791
|
updatedAt: Date;
|
53245
53792
|
deletedAt: Date | null;
|
53246
53793
|
entityId: string;
|
53794
|
+
contactId: string | null;
|
53247
53795
|
caseId: number;
|
53248
53796
|
entityName: string;
|
53249
|
-
|
53797
|
+
queueId: string | null;
|
53798
|
+
agentId: string | null;
|
53250
53799
|
startedDate: Date | null;
|
53251
53800
|
handledTime: number | null;
|
53252
|
-
firstResponseTime:
|
53253
|
-
|
53801
|
+
firstResponseTime: number | null;
|
53802
|
+
wrapUpForm: {
|
53803
|
+
id: string;
|
53804
|
+
disposition: string | null;
|
53805
|
+
createdAt: Date;
|
53806
|
+
updatedAt: Date;
|
53807
|
+
deletedAt: Date | null;
|
53808
|
+
tags: {
|
53809
|
+
id: string;
|
53810
|
+
name: string;
|
53811
|
+
createdAt: Date;
|
53812
|
+
updatedAt: Date;
|
53813
|
+
deletedAt: Date | null;
|
53814
|
+
}[];
|
53815
|
+
callFrom: string | null;
|
53816
|
+
callTo: string | null;
|
53817
|
+
note: string | null;
|
53818
|
+
} | null;
|
53254
53819
|
};
|
53255
53820
|
channel?: {
|
53256
53821
|
id?: string | undefined;
|
@@ -53552,13 +54117,31 @@ export declare const chatContract: {
|
|
53552
54117
|
updatedAt: Date;
|
53553
54118
|
deletedAt: Date | null;
|
53554
54119
|
entityId: string;
|
54120
|
+
contactId: string | null;
|
53555
54121
|
caseId: number;
|
53556
54122
|
entityName: string;
|
53557
|
-
|
54123
|
+
queueId: string | null;
|
54124
|
+
agentId: string | null;
|
53558
54125
|
startedDate: Date | null;
|
53559
54126
|
handledTime: number | null;
|
53560
|
-
firstResponseTime:
|
53561
|
-
|
54127
|
+
firstResponseTime: number | null;
|
54128
|
+
wrapUpForm: {
|
54129
|
+
id: string;
|
54130
|
+
disposition: string | null;
|
54131
|
+
createdAt: Date;
|
54132
|
+
updatedAt: Date;
|
54133
|
+
deletedAt: Date | null;
|
54134
|
+
tags: {
|
54135
|
+
id: string;
|
54136
|
+
name: string;
|
54137
|
+
createdAt: Date;
|
54138
|
+
updatedAt: Date;
|
54139
|
+
deletedAt: Date | null;
|
54140
|
+
}[];
|
54141
|
+
callFrom: string | null;
|
54142
|
+
callTo: string | null;
|
54143
|
+
note: string | null;
|
54144
|
+
} | null;
|
53562
54145
|
};
|
53563
54146
|
channel?: {
|
53564
54147
|
id?: string | undefined;
|
@@ -53858,13 +54441,31 @@ export declare const chatContract: {
|
|
53858
54441
|
updatedAt: Date;
|
53859
54442
|
deletedAt: Date | null;
|
53860
54443
|
entityId: string;
|
54444
|
+
contactId: string | null;
|
53861
54445
|
caseId: number;
|
53862
54446
|
entityName: string;
|
53863
|
-
|
54447
|
+
queueId: string | null;
|
54448
|
+
agentId: string | null;
|
53864
54449
|
startedDate: Date | null;
|
53865
54450
|
handledTime: number | null;
|
53866
|
-
firstResponseTime:
|
53867
|
-
|
54451
|
+
firstResponseTime: number | null;
|
54452
|
+
wrapUpForm: {
|
54453
|
+
id: string;
|
54454
|
+
disposition: string | null;
|
54455
|
+
createdAt: Date;
|
54456
|
+
updatedAt: Date;
|
54457
|
+
deletedAt: Date | null;
|
54458
|
+
tags: {
|
54459
|
+
id: string;
|
54460
|
+
name: string;
|
54461
|
+
createdAt: Date;
|
54462
|
+
updatedAt: Date;
|
54463
|
+
deletedAt: Date | null;
|
54464
|
+
}[];
|
54465
|
+
callFrom: string | null;
|
54466
|
+
callTo: string | null;
|
54467
|
+
note: string | null;
|
54468
|
+
} | null;
|
53868
54469
|
};
|
53869
54470
|
channel?: {
|
53870
54471
|
id?: string | undefined;
|
@@ -56755,14 +57356,76 @@ export declare const chatContract: {
|
|
56755
57356
|
caseId: import("zod").ZodNumber;
|
56756
57357
|
entityId: import("zod").ZodString;
|
56757
57358
|
entityName: import("zod").ZodString;
|
56758
|
-
|
57359
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
56759
57360
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
57361
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
57362
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
56760
57363
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
56761
57364
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
56762
57365
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
56763
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
57366
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
56764
57367
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
56765
|
-
|
57368
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
57369
|
+
id: import("zod").ZodString;
|
57370
|
+
createdAt: import("zod").ZodDate;
|
57371
|
+
updatedAt: import("zod").ZodDate;
|
57372
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
57373
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
57374
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
57375
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
57376
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
57377
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
57378
|
+
id: import("zod").ZodString;
|
57379
|
+
createdAt: import("zod").ZodDate;
|
57380
|
+
updatedAt: import("zod").ZodDate;
|
57381
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
57382
|
+
name: import("zod").ZodString;
|
57383
|
+
}, "strip", import("zod").ZodTypeAny, {
|
57384
|
+
id: string;
|
57385
|
+
name: string;
|
57386
|
+
createdAt: Date;
|
57387
|
+
updatedAt: Date;
|
57388
|
+
deletedAt: Date | null;
|
57389
|
+
}, {
|
57390
|
+
id: string;
|
57391
|
+
name: string;
|
57392
|
+
createdAt: Date;
|
57393
|
+
updatedAt: Date;
|
57394
|
+
deletedAt: Date | null;
|
57395
|
+
}>, "many">;
|
57396
|
+
}, "strip", import("zod").ZodTypeAny, {
|
57397
|
+
id: string;
|
57398
|
+
disposition: string | null;
|
57399
|
+
createdAt: Date;
|
57400
|
+
updatedAt: Date;
|
57401
|
+
deletedAt: Date | null;
|
57402
|
+
tags: {
|
57403
|
+
id: string;
|
57404
|
+
name: string;
|
57405
|
+
createdAt: Date;
|
57406
|
+
updatedAt: Date;
|
57407
|
+
deletedAt: Date | null;
|
57408
|
+
}[];
|
57409
|
+
callFrom: string | null;
|
57410
|
+
callTo: string | null;
|
57411
|
+
note: string | null;
|
57412
|
+
}, {
|
57413
|
+
id: string;
|
57414
|
+
disposition: string | null;
|
57415
|
+
createdAt: Date;
|
57416
|
+
updatedAt: Date;
|
57417
|
+
deletedAt: Date | null;
|
57418
|
+
tags: {
|
57419
|
+
id: string;
|
57420
|
+
name: string;
|
57421
|
+
createdAt: Date;
|
57422
|
+
updatedAt: Date;
|
57423
|
+
deletedAt: Date | null;
|
57424
|
+
}[];
|
57425
|
+
callFrom: string | null;
|
57426
|
+
callTo: string | null;
|
57427
|
+
note: string | null;
|
57428
|
+
}>>;
|
56766
57429
|
}, "strip", import("zod").ZodTypeAny, {
|
56767
57430
|
id: string;
|
56768
57431
|
channel: string | null;
|
@@ -56772,13 +57435,31 @@ export declare const chatContract: {
|
|
56772
57435
|
updatedAt: Date;
|
56773
57436
|
deletedAt: Date | null;
|
56774
57437
|
entityId: string;
|
57438
|
+
contactId: string | null;
|
56775
57439
|
caseId: number;
|
56776
57440
|
entityName: string;
|
56777
|
-
|
57441
|
+
queueId: string | null;
|
57442
|
+
agentId: string | null;
|
56778
57443
|
startedDate: Date | null;
|
56779
57444
|
handledTime: number | null;
|
56780
|
-
firstResponseTime:
|
56781
|
-
|
57445
|
+
firstResponseTime: number | null;
|
57446
|
+
wrapUpForm: {
|
57447
|
+
id: string;
|
57448
|
+
disposition: string | null;
|
57449
|
+
createdAt: Date;
|
57450
|
+
updatedAt: Date;
|
57451
|
+
deletedAt: Date | null;
|
57452
|
+
tags: {
|
57453
|
+
id: string;
|
57454
|
+
name: string;
|
57455
|
+
createdAt: Date;
|
57456
|
+
updatedAt: Date;
|
57457
|
+
deletedAt: Date | null;
|
57458
|
+
}[];
|
57459
|
+
callFrom: string | null;
|
57460
|
+
callTo: string | null;
|
57461
|
+
note: string | null;
|
57462
|
+
} | null;
|
56782
57463
|
}, {
|
56783
57464
|
id: string;
|
56784
57465
|
channel: string | null;
|
@@ -56788,13 +57469,31 @@ export declare const chatContract: {
|
|
56788
57469
|
updatedAt: Date;
|
56789
57470
|
deletedAt: Date | null;
|
56790
57471
|
entityId: string;
|
57472
|
+
contactId: string | null;
|
56791
57473
|
caseId: number;
|
56792
57474
|
entityName: string;
|
56793
|
-
|
57475
|
+
queueId: string | null;
|
57476
|
+
agentId: string | null;
|
56794
57477
|
startedDate: Date | null;
|
56795
57478
|
handledTime: number | null;
|
56796
|
-
firstResponseTime:
|
56797
|
-
|
57479
|
+
firstResponseTime: number | null;
|
57480
|
+
wrapUpForm: {
|
57481
|
+
id: string;
|
57482
|
+
disposition: string | null;
|
57483
|
+
createdAt: Date;
|
57484
|
+
updatedAt: Date;
|
57485
|
+
deletedAt: Date | null;
|
57486
|
+
tags: {
|
57487
|
+
id: string;
|
57488
|
+
name: string;
|
57489
|
+
createdAt: Date;
|
57490
|
+
updatedAt: Date;
|
57491
|
+
deletedAt: Date | null;
|
57492
|
+
}[];
|
57493
|
+
callFrom: string | null;
|
57494
|
+
callTo: string | null;
|
57495
|
+
note: string | null;
|
57496
|
+
} | null;
|
56798
57497
|
}>;
|
56799
57498
|
}, "strip", import("zod").ZodTypeAny, {
|
56800
57499
|
id: string;
|
@@ -57021,13 +57720,31 @@ export declare const chatContract: {
|
|
57021
57720
|
updatedAt: Date;
|
57022
57721
|
deletedAt: Date | null;
|
57023
57722
|
entityId: string;
|
57723
|
+
contactId: string | null;
|
57024
57724
|
caseId: number;
|
57025
57725
|
entityName: string;
|
57026
|
-
|
57726
|
+
queueId: string | null;
|
57727
|
+
agentId: string | null;
|
57027
57728
|
startedDate: Date | null;
|
57028
57729
|
handledTime: number | null;
|
57029
|
-
firstResponseTime:
|
57030
|
-
|
57730
|
+
firstResponseTime: number | null;
|
57731
|
+
wrapUpForm: {
|
57732
|
+
id: string;
|
57733
|
+
disposition: string | null;
|
57734
|
+
createdAt: Date;
|
57735
|
+
updatedAt: Date;
|
57736
|
+
deletedAt: Date | null;
|
57737
|
+
tags: {
|
57738
|
+
id: string;
|
57739
|
+
name: string;
|
57740
|
+
createdAt: Date;
|
57741
|
+
updatedAt: Date;
|
57742
|
+
deletedAt: Date | null;
|
57743
|
+
}[];
|
57744
|
+
callFrom: string | null;
|
57745
|
+
callTo: string | null;
|
57746
|
+
note: string | null;
|
57747
|
+
} | null;
|
57031
57748
|
};
|
57032
57749
|
channel?: {
|
57033
57750
|
id?: string | undefined;
|
@@ -57317,13 +58034,31 @@ export declare const chatContract: {
|
|
57317
58034
|
updatedAt: Date;
|
57318
58035
|
deletedAt: Date | null;
|
57319
58036
|
entityId: string;
|
58037
|
+
contactId: string | null;
|
57320
58038
|
caseId: number;
|
57321
58039
|
entityName: string;
|
57322
|
-
|
58040
|
+
queueId: string | null;
|
58041
|
+
agentId: string | null;
|
57323
58042
|
startedDate: Date | null;
|
57324
58043
|
handledTime: number | null;
|
57325
|
-
firstResponseTime:
|
57326
|
-
|
58044
|
+
firstResponseTime: number | null;
|
58045
|
+
wrapUpForm: {
|
58046
|
+
id: string;
|
58047
|
+
disposition: string | null;
|
58048
|
+
createdAt: Date;
|
58049
|
+
updatedAt: Date;
|
58050
|
+
deletedAt: Date | null;
|
58051
|
+
tags: {
|
58052
|
+
id: string;
|
58053
|
+
name: string;
|
58054
|
+
createdAt: Date;
|
58055
|
+
updatedAt: Date;
|
58056
|
+
deletedAt: Date | null;
|
58057
|
+
}[];
|
58058
|
+
callFrom: string | null;
|
58059
|
+
callTo: string | null;
|
58060
|
+
note: string | null;
|
58061
|
+
} | null;
|
57327
58062
|
};
|
57328
58063
|
channel?: {
|
57329
58064
|
id?: string | undefined;
|
@@ -57615,13 +58350,31 @@ export declare const chatContract: {
|
|
57615
58350
|
updatedAt: Date;
|
57616
58351
|
deletedAt: Date | null;
|
57617
58352
|
entityId: string;
|
58353
|
+
contactId: string | null;
|
57618
58354
|
caseId: number;
|
57619
58355
|
entityName: string;
|
57620
|
-
|
58356
|
+
queueId: string | null;
|
58357
|
+
agentId: string | null;
|
57621
58358
|
startedDate: Date | null;
|
57622
58359
|
handledTime: number | null;
|
57623
|
-
firstResponseTime:
|
57624
|
-
|
58360
|
+
firstResponseTime: number | null;
|
58361
|
+
wrapUpForm: {
|
58362
|
+
id: string;
|
58363
|
+
disposition: string | null;
|
58364
|
+
createdAt: Date;
|
58365
|
+
updatedAt: Date;
|
58366
|
+
deletedAt: Date | null;
|
58367
|
+
tags: {
|
58368
|
+
id: string;
|
58369
|
+
name: string;
|
58370
|
+
createdAt: Date;
|
58371
|
+
updatedAt: Date;
|
58372
|
+
deletedAt: Date | null;
|
58373
|
+
}[];
|
58374
|
+
callFrom: string | null;
|
58375
|
+
callTo: string | null;
|
58376
|
+
note: string | null;
|
58377
|
+
} | null;
|
57625
58378
|
};
|
57626
58379
|
channel?: {
|
57627
58380
|
id?: string | undefined;
|
@@ -57914,13 +58667,31 @@ export declare const chatContract: {
|
|
57914
58667
|
updatedAt: Date;
|
57915
58668
|
deletedAt: Date | null;
|
57916
58669
|
entityId: string;
|
58670
|
+
contactId: string | null;
|
57917
58671
|
caseId: number;
|
57918
58672
|
entityName: string;
|
57919
|
-
|
58673
|
+
queueId: string | null;
|
58674
|
+
agentId: string | null;
|
57920
58675
|
startedDate: Date | null;
|
57921
58676
|
handledTime: number | null;
|
57922
|
-
firstResponseTime:
|
57923
|
-
|
58677
|
+
firstResponseTime: number | null;
|
58678
|
+
wrapUpForm: {
|
58679
|
+
id: string;
|
58680
|
+
disposition: string | null;
|
58681
|
+
createdAt: Date;
|
58682
|
+
updatedAt: Date;
|
58683
|
+
deletedAt: Date | null;
|
58684
|
+
tags: {
|
58685
|
+
id: string;
|
58686
|
+
name: string;
|
58687
|
+
createdAt: Date;
|
58688
|
+
updatedAt: Date;
|
58689
|
+
deletedAt: Date | null;
|
58690
|
+
}[];
|
58691
|
+
callFrom: string | null;
|
58692
|
+
callTo: string | null;
|
58693
|
+
note: string | null;
|
58694
|
+
} | null;
|
57924
58695
|
};
|
57925
58696
|
channel?: {
|
57926
58697
|
id?: string | undefined;
|
@@ -60141,14 +60912,76 @@ export declare const chatContract: {
|
|
60141
60912
|
caseId: import("zod").ZodNumber;
|
60142
60913
|
entityId: import("zod").ZodString;
|
60143
60914
|
entityName: import("zod").ZodString;
|
60144
|
-
|
60915
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
60145
60916
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
60917
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
60918
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
60146
60919
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
60147
60920
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
60148
60921
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
60149
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
60922
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
60150
60923
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
60151
|
-
|
60924
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
60925
|
+
id: import("zod").ZodString;
|
60926
|
+
createdAt: import("zod").ZodDate;
|
60927
|
+
updatedAt: import("zod").ZodDate;
|
60928
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
60929
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
60930
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
60931
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
60932
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
60933
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
60934
|
+
id: import("zod").ZodString;
|
60935
|
+
createdAt: import("zod").ZodDate;
|
60936
|
+
updatedAt: import("zod").ZodDate;
|
60937
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
60938
|
+
name: import("zod").ZodString;
|
60939
|
+
}, "strip", import("zod").ZodTypeAny, {
|
60940
|
+
id: string;
|
60941
|
+
name: string;
|
60942
|
+
createdAt: Date;
|
60943
|
+
updatedAt: Date;
|
60944
|
+
deletedAt: Date | null;
|
60945
|
+
}, {
|
60946
|
+
id: string;
|
60947
|
+
name: string;
|
60948
|
+
createdAt: Date;
|
60949
|
+
updatedAt: Date;
|
60950
|
+
deletedAt: Date | null;
|
60951
|
+
}>, "many">;
|
60952
|
+
}, "strip", import("zod").ZodTypeAny, {
|
60953
|
+
id: string;
|
60954
|
+
disposition: string | null;
|
60955
|
+
createdAt: Date;
|
60956
|
+
updatedAt: Date;
|
60957
|
+
deletedAt: Date | null;
|
60958
|
+
tags: {
|
60959
|
+
id: string;
|
60960
|
+
name: string;
|
60961
|
+
createdAt: Date;
|
60962
|
+
updatedAt: Date;
|
60963
|
+
deletedAt: Date | null;
|
60964
|
+
}[];
|
60965
|
+
callFrom: string | null;
|
60966
|
+
callTo: string | null;
|
60967
|
+
note: string | null;
|
60968
|
+
}, {
|
60969
|
+
id: string;
|
60970
|
+
disposition: string | null;
|
60971
|
+
createdAt: Date;
|
60972
|
+
updatedAt: Date;
|
60973
|
+
deletedAt: Date | null;
|
60974
|
+
tags: {
|
60975
|
+
id: string;
|
60976
|
+
name: string;
|
60977
|
+
createdAt: Date;
|
60978
|
+
updatedAt: Date;
|
60979
|
+
deletedAt: Date | null;
|
60980
|
+
}[];
|
60981
|
+
callFrom: string | null;
|
60982
|
+
callTo: string | null;
|
60983
|
+
note: string | null;
|
60984
|
+
}>>;
|
60152
60985
|
}, "strip", import("zod").ZodTypeAny, {
|
60153
60986
|
id: string;
|
60154
60987
|
channel: string | null;
|
@@ -60158,13 +60991,31 @@ export declare const chatContract: {
|
|
60158
60991
|
updatedAt: Date;
|
60159
60992
|
deletedAt: Date | null;
|
60160
60993
|
entityId: string;
|
60994
|
+
contactId: string | null;
|
60161
60995
|
caseId: number;
|
60162
60996
|
entityName: string;
|
60163
|
-
|
60997
|
+
queueId: string | null;
|
60998
|
+
agentId: string | null;
|
60164
60999
|
startedDate: Date | null;
|
60165
61000
|
handledTime: number | null;
|
60166
|
-
firstResponseTime:
|
60167
|
-
|
61001
|
+
firstResponseTime: number | null;
|
61002
|
+
wrapUpForm: {
|
61003
|
+
id: string;
|
61004
|
+
disposition: string | null;
|
61005
|
+
createdAt: Date;
|
61006
|
+
updatedAt: Date;
|
61007
|
+
deletedAt: Date | null;
|
61008
|
+
tags: {
|
61009
|
+
id: string;
|
61010
|
+
name: string;
|
61011
|
+
createdAt: Date;
|
61012
|
+
updatedAt: Date;
|
61013
|
+
deletedAt: Date | null;
|
61014
|
+
}[];
|
61015
|
+
callFrom: string | null;
|
61016
|
+
callTo: string | null;
|
61017
|
+
note: string | null;
|
61018
|
+
} | null;
|
60168
61019
|
}, {
|
60169
61020
|
id: string;
|
60170
61021
|
channel: string | null;
|
@@ -60174,13 +61025,31 @@ export declare const chatContract: {
|
|
60174
61025
|
updatedAt: Date;
|
60175
61026
|
deletedAt: Date | null;
|
60176
61027
|
entityId: string;
|
61028
|
+
contactId: string | null;
|
60177
61029
|
caseId: number;
|
60178
61030
|
entityName: string;
|
60179
|
-
|
61031
|
+
queueId: string | null;
|
61032
|
+
agentId: string | null;
|
60180
61033
|
startedDate: Date | null;
|
60181
61034
|
handledTime: number | null;
|
60182
|
-
firstResponseTime:
|
60183
|
-
|
61035
|
+
firstResponseTime: number | null;
|
61036
|
+
wrapUpForm: {
|
61037
|
+
id: string;
|
61038
|
+
disposition: string | null;
|
61039
|
+
createdAt: Date;
|
61040
|
+
updatedAt: Date;
|
61041
|
+
deletedAt: Date | null;
|
61042
|
+
tags: {
|
61043
|
+
id: string;
|
61044
|
+
name: string;
|
61045
|
+
createdAt: Date;
|
61046
|
+
updatedAt: Date;
|
61047
|
+
deletedAt: Date | null;
|
61048
|
+
}[];
|
61049
|
+
callFrom: string | null;
|
61050
|
+
callTo: string | null;
|
61051
|
+
note: string | null;
|
61052
|
+
} | null;
|
60184
61053
|
}>;
|
60185
61054
|
}, "strip", import("zod").ZodTypeAny, {
|
60186
61055
|
id: string;
|
@@ -60407,13 +61276,31 @@ export declare const chatContract: {
|
|
60407
61276
|
updatedAt: Date;
|
60408
61277
|
deletedAt: Date | null;
|
60409
61278
|
entityId: string;
|
61279
|
+
contactId: string | null;
|
60410
61280
|
caseId: number;
|
60411
61281
|
entityName: string;
|
60412
|
-
|
61282
|
+
queueId: string | null;
|
61283
|
+
agentId: string | null;
|
60413
61284
|
startedDate: Date | null;
|
60414
61285
|
handledTime: number | null;
|
60415
|
-
firstResponseTime:
|
60416
|
-
|
61286
|
+
firstResponseTime: number | null;
|
61287
|
+
wrapUpForm: {
|
61288
|
+
id: string;
|
61289
|
+
disposition: string | null;
|
61290
|
+
createdAt: Date;
|
61291
|
+
updatedAt: Date;
|
61292
|
+
deletedAt: Date | null;
|
61293
|
+
tags: {
|
61294
|
+
id: string;
|
61295
|
+
name: string;
|
61296
|
+
createdAt: Date;
|
61297
|
+
updatedAt: Date;
|
61298
|
+
deletedAt: Date | null;
|
61299
|
+
}[];
|
61300
|
+
callFrom: string | null;
|
61301
|
+
callTo: string | null;
|
61302
|
+
note: string | null;
|
61303
|
+
} | null;
|
60417
61304
|
};
|
60418
61305
|
channel?: {
|
60419
61306
|
id?: string | undefined;
|
@@ -60703,13 +61590,31 @@ export declare const chatContract: {
|
|
60703
61590
|
updatedAt: Date;
|
60704
61591
|
deletedAt: Date | null;
|
60705
61592
|
entityId: string;
|
61593
|
+
contactId: string | null;
|
60706
61594
|
caseId: number;
|
60707
61595
|
entityName: string;
|
60708
|
-
|
61596
|
+
queueId: string | null;
|
61597
|
+
agentId: string | null;
|
60709
61598
|
startedDate: Date | null;
|
60710
61599
|
handledTime: number | null;
|
60711
|
-
firstResponseTime:
|
60712
|
-
|
61600
|
+
firstResponseTime: number | null;
|
61601
|
+
wrapUpForm: {
|
61602
|
+
id: string;
|
61603
|
+
disposition: string | null;
|
61604
|
+
createdAt: Date;
|
61605
|
+
updatedAt: Date;
|
61606
|
+
deletedAt: Date | null;
|
61607
|
+
tags: {
|
61608
|
+
id: string;
|
61609
|
+
name: string;
|
61610
|
+
createdAt: Date;
|
61611
|
+
updatedAt: Date;
|
61612
|
+
deletedAt: Date | null;
|
61613
|
+
}[];
|
61614
|
+
callFrom: string | null;
|
61615
|
+
callTo: string | null;
|
61616
|
+
note: string | null;
|
61617
|
+
} | null;
|
60713
61618
|
};
|
60714
61619
|
channel?: {
|
60715
61620
|
id?: string | undefined;
|
@@ -61731,13 +62636,31 @@ export declare const chatContract: {
|
|
61731
62636
|
updatedAt: Date;
|
61732
62637
|
deletedAt: Date | null;
|
61733
62638
|
entityId: string;
|
62639
|
+
contactId: string | null;
|
61734
62640
|
caseId: number;
|
61735
62641
|
entityName: string;
|
61736
|
-
|
62642
|
+
queueId: string | null;
|
62643
|
+
agentId: string | null;
|
61737
62644
|
startedDate: Date | null;
|
61738
62645
|
handledTime: number | null;
|
61739
|
-
firstResponseTime:
|
61740
|
-
|
62646
|
+
firstResponseTime: number | null;
|
62647
|
+
wrapUpForm: {
|
62648
|
+
id: string;
|
62649
|
+
disposition: string | null;
|
62650
|
+
createdAt: Date;
|
62651
|
+
updatedAt: Date;
|
62652
|
+
deletedAt: Date | null;
|
62653
|
+
tags: {
|
62654
|
+
id: string;
|
62655
|
+
name: string;
|
62656
|
+
createdAt: Date;
|
62657
|
+
updatedAt: Date;
|
62658
|
+
deletedAt: Date | null;
|
62659
|
+
}[];
|
62660
|
+
callFrom: string | null;
|
62661
|
+
callTo: string | null;
|
62662
|
+
note: string | null;
|
62663
|
+
} | null;
|
61741
62664
|
};
|
61742
62665
|
channel?: {
|
61743
62666
|
id?: string | undefined;
|
@@ -62185,13 +63108,31 @@ export declare const chatContract: {
|
|
62185
63108
|
updatedAt: Date;
|
62186
63109
|
deletedAt: Date | null;
|
62187
63110
|
entityId: string;
|
63111
|
+
contactId: string | null;
|
62188
63112
|
caseId: number;
|
62189
63113
|
entityName: string;
|
62190
|
-
|
63114
|
+
queueId: string | null;
|
63115
|
+
agentId: string | null;
|
62191
63116
|
startedDate: Date | null;
|
62192
63117
|
handledTime: number | null;
|
62193
|
-
firstResponseTime:
|
62194
|
-
|
63118
|
+
firstResponseTime: number | null;
|
63119
|
+
wrapUpForm: {
|
63120
|
+
id: string;
|
63121
|
+
disposition: string | null;
|
63122
|
+
createdAt: Date;
|
63123
|
+
updatedAt: Date;
|
63124
|
+
deletedAt: Date | null;
|
63125
|
+
tags: {
|
63126
|
+
id: string;
|
63127
|
+
name: string;
|
63128
|
+
createdAt: Date;
|
63129
|
+
updatedAt: Date;
|
63130
|
+
deletedAt: Date | null;
|
63131
|
+
}[];
|
63132
|
+
callFrom: string | null;
|
63133
|
+
callTo: string | null;
|
63134
|
+
note: string | null;
|
63135
|
+
} | null;
|
62195
63136
|
};
|
62196
63137
|
channel?: {
|
62197
63138
|
id?: string | undefined;
|
@@ -62641,13 +63582,31 @@ export declare const chatContract: {
|
|
62641
63582
|
updatedAt: Date;
|
62642
63583
|
deletedAt: Date | null;
|
62643
63584
|
entityId: string;
|
63585
|
+
contactId: string | null;
|
62644
63586
|
caseId: number;
|
62645
63587
|
entityName: string;
|
62646
|
-
|
63588
|
+
queueId: string | null;
|
63589
|
+
agentId: string | null;
|
62647
63590
|
startedDate: Date | null;
|
62648
63591
|
handledTime: number | null;
|
62649
|
-
firstResponseTime:
|
62650
|
-
|
63592
|
+
firstResponseTime: number | null;
|
63593
|
+
wrapUpForm: {
|
63594
|
+
id: string;
|
63595
|
+
disposition: string | null;
|
63596
|
+
createdAt: Date;
|
63597
|
+
updatedAt: Date;
|
63598
|
+
deletedAt: Date | null;
|
63599
|
+
tags: {
|
63600
|
+
id: string;
|
63601
|
+
name: string;
|
63602
|
+
createdAt: Date;
|
63603
|
+
updatedAt: Date;
|
63604
|
+
deletedAt: Date | null;
|
63605
|
+
}[];
|
63606
|
+
callFrom: string | null;
|
63607
|
+
callTo: string | null;
|
63608
|
+
note: string | null;
|
63609
|
+
} | null;
|
62651
63610
|
};
|
62652
63611
|
channel?: {
|
62653
63612
|
id?: string | undefined;
|
@@ -63098,13 +64057,31 @@ export declare const chatContract: {
|
|
63098
64057
|
updatedAt: Date;
|
63099
64058
|
deletedAt: Date | null;
|
63100
64059
|
entityId: string;
|
64060
|
+
contactId: string | null;
|
63101
64061
|
caseId: number;
|
63102
64062
|
entityName: string;
|
63103
|
-
|
64063
|
+
queueId: string | null;
|
64064
|
+
agentId: string | null;
|
63104
64065
|
startedDate: Date | null;
|
63105
64066
|
handledTime: number | null;
|
63106
|
-
firstResponseTime:
|
63107
|
-
|
64067
|
+
firstResponseTime: number | null;
|
64068
|
+
wrapUpForm: {
|
64069
|
+
id: string;
|
64070
|
+
disposition: string | null;
|
64071
|
+
createdAt: Date;
|
64072
|
+
updatedAt: Date;
|
64073
|
+
deletedAt: Date | null;
|
64074
|
+
tags: {
|
64075
|
+
id: string;
|
64076
|
+
name: string;
|
64077
|
+
createdAt: Date;
|
64078
|
+
updatedAt: Date;
|
64079
|
+
deletedAt: Date | null;
|
64080
|
+
}[];
|
64081
|
+
callFrom: string | null;
|
64082
|
+
callTo: string | null;
|
64083
|
+
note: string | null;
|
64084
|
+
} | null;
|
63108
64085
|
};
|
63109
64086
|
channel?: {
|
63110
64087
|
id?: string | undefined;
|
@@ -65036,14 +66013,76 @@ export declare const chatContract: {
|
|
65036
66013
|
caseId: import("zod").ZodNumber;
|
65037
66014
|
entityId: import("zod").ZodString;
|
65038
66015
|
entityName: import("zod").ZodString;
|
65039
|
-
|
66016
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
65040
66017
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
66018
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
66019
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
65041
66020
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
65042
66021
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
65043
66022
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
65044
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
66023
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
65045
66024
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
65046
|
-
|
66025
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
66026
|
+
id: import("zod").ZodString;
|
66027
|
+
createdAt: import("zod").ZodDate;
|
66028
|
+
updatedAt: import("zod").ZodDate;
|
66029
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
66030
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
66031
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
66032
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
66033
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
66034
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
66035
|
+
id: import("zod").ZodString;
|
66036
|
+
createdAt: import("zod").ZodDate;
|
66037
|
+
updatedAt: import("zod").ZodDate;
|
66038
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
66039
|
+
name: import("zod").ZodString;
|
66040
|
+
}, "strip", import("zod").ZodTypeAny, {
|
66041
|
+
id: string;
|
66042
|
+
name: string;
|
66043
|
+
createdAt: Date;
|
66044
|
+
updatedAt: Date;
|
66045
|
+
deletedAt: Date | null;
|
66046
|
+
}, {
|
66047
|
+
id: string;
|
66048
|
+
name: string;
|
66049
|
+
createdAt: Date;
|
66050
|
+
updatedAt: Date;
|
66051
|
+
deletedAt: Date | null;
|
66052
|
+
}>, "many">;
|
66053
|
+
}, "strip", import("zod").ZodTypeAny, {
|
66054
|
+
id: string;
|
66055
|
+
disposition: string | null;
|
66056
|
+
createdAt: Date;
|
66057
|
+
updatedAt: Date;
|
66058
|
+
deletedAt: Date | null;
|
66059
|
+
tags: {
|
66060
|
+
id: string;
|
66061
|
+
name: string;
|
66062
|
+
createdAt: Date;
|
66063
|
+
updatedAt: Date;
|
66064
|
+
deletedAt: Date | null;
|
66065
|
+
}[];
|
66066
|
+
callFrom: string | null;
|
66067
|
+
callTo: string | null;
|
66068
|
+
note: string | null;
|
66069
|
+
}, {
|
66070
|
+
id: string;
|
66071
|
+
disposition: string | null;
|
66072
|
+
createdAt: Date;
|
66073
|
+
updatedAt: Date;
|
66074
|
+
deletedAt: Date | null;
|
66075
|
+
tags: {
|
66076
|
+
id: string;
|
66077
|
+
name: string;
|
66078
|
+
createdAt: Date;
|
66079
|
+
updatedAt: Date;
|
66080
|
+
deletedAt: Date | null;
|
66081
|
+
}[];
|
66082
|
+
callFrom: string | null;
|
66083
|
+
callTo: string | null;
|
66084
|
+
note: string | null;
|
66085
|
+
}>>;
|
65047
66086
|
}, "strip", import("zod").ZodTypeAny, {
|
65048
66087
|
id: string;
|
65049
66088
|
channel: string | null;
|
@@ -65053,13 +66092,31 @@ export declare const chatContract: {
|
|
65053
66092
|
updatedAt: Date;
|
65054
66093
|
deletedAt: Date | null;
|
65055
66094
|
entityId: string;
|
66095
|
+
contactId: string | null;
|
65056
66096
|
caseId: number;
|
65057
66097
|
entityName: string;
|
65058
|
-
|
66098
|
+
queueId: string | null;
|
66099
|
+
agentId: string | null;
|
65059
66100
|
startedDate: Date | null;
|
65060
66101
|
handledTime: number | null;
|
65061
|
-
firstResponseTime:
|
65062
|
-
|
66102
|
+
firstResponseTime: number | null;
|
66103
|
+
wrapUpForm: {
|
66104
|
+
id: string;
|
66105
|
+
disposition: string | null;
|
66106
|
+
createdAt: Date;
|
66107
|
+
updatedAt: Date;
|
66108
|
+
deletedAt: Date | null;
|
66109
|
+
tags: {
|
66110
|
+
id: string;
|
66111
|
+
name: string;
|
66112
|
+
createdAt: Date;
|
66113
|
+
updatedAt: Date;
|
66114
|
+
deletedAt: Date | null;
|
66115
|
+
}[];
|
66116
|
+
callFrom: string | null;
|
66117
|
+
callTo: string | null;
|
66118
|
+
note: string | null;
|
66119
|
+
} | null;
|
65063
66120
|
}, {
|
65064
66121
|
id: string;
|
65065
66122
|
channel: string | null;
|
@@ -65069,13 +66126,31 @@ export declare const chatContract: {
|
|
65069
66126
|
updatedAt: Date;
|
65070
66127
|
deletedAt: Date | null;
|
65071
66128
|
entityId: string;
|
66129
|
+
contactId: string | null;
|
65072
66130
|
caseId: number;
|
65073
66131
|
entityName: string;
|
65074
|
-
|
66132
|
+
queueId: string | null;
|
66133
|
+
agentId: string | null;
|
65075
66134
|
startedDate: Date | null;
|
65076
66135
|
handledTime: number | null;
|
65077
|
-
firstResponseTime:
|
65078
|
-
|
66136
|
+
firstResponseTime: number | null;
|
66137
|
+
wrapUpForm: {
|
66138
|
+
id: string;
|
66139
|
+
disposition: string | null;
|
66140
|
+
createdAt: Date;
|
66141
|
+
updatedAt: Date;
|
66142
|
+
deletedAt: Date | null;
|
66143
|
+
tags: {
|
66144
|
+
id: string;
|
66145
|
+
name: string;
|
66146
|
+
createdAt: Date;
|
66147
|
+
updatedAt: Date;
|
66148
|
+
deletedAt: Date | null;
|
66149
|
+
}[];
|
66150
|
+
callFrom: string | null;
|
66151
|
+
callTo: string | null;
|
66152
|
+
note: string | null;
|
66153
|
+
} | null;
|
65079
66154
|
}>;
|
65080
66155
|
}, "strip", import("zod").ZodTypeAny, {
|
65081
66156
|
id: string;
|
@@ -65302,13 +66377,31 @@ export declare const chatContract: {
|
|
65302
66377
|
updatedAt: Date;
|
65303
66378
|
deletedAt: Date | null;
|
65304
66379
|
entityId: string;
|
66380
|
+
contactId: string | null;
|
65305
66381
|
caseId: number;
|
65306
66382
|
entityName: string;
|
65307
|
-
|
66383
|
+
queueId: string | null;
|
66384
|
+
agentId: string | null;
|
65308
66385
|
startedDate: Date | null;
|
65309
66386
|
handledTime: number | null;
|
65310
|
-
firstResponseTime:
|
65311
|
-
|
66387
|
+
firstResponseTime: number | null;
|
66388
|
+
wrapUpForm: {
|
66389
|
+
id: string;
|
66390
|
+
disposition: string | null;
|
66391
|
+
createdAt: Date;
|
66392
|
+
updatedAt: Date;
|
66393
|
+
deletedAt: Date | null;
|
66394
|
+
tags: {
|
66395
|
+
id: string;
|
66396
|
+
name: string;
|
66397
|
+
createdAt: Date;
|
66398
|
+
updatedAt: Date;
|
66399
|
+
deletedAt: Date | null;
|
66400
|
+
}[];
|
66401
|
+
callFrom: string | null;
|
66402
|
+
callTo: string | null;
|
66403
|
+
note: string | null;
|
66404
|
+
} | null;
|
65312
66405
|
};
|
65313
66406
|
channel?: {
|
65314
66407
|
id?: string | undefined;
|
@@ -65598,13 +66691,31 @@ export declare const chatContract: {
|
|
65598
66691
|
updatedAt: Date;
|
65599
66692
|
deletedAt: Date | null;
|
65600
66693
|
entityId: string;
|
66694
|
+
contactId: string | null;
|
65601
66695
|
caseId: number;
|
65602
66696
|
entityName: string;
|
65603
|
-
|
66697
|
+
queueId: string | null;
|
66698
|
+
agentId: string | null;
|
65604
66699
|
startedDate: Date | null;
|
65605
66700
|
handledTime: number | null;
|
65606
|
-
firstResponseTime:
|
65607
|
-
|
66701
|
+
firstResponseTime: number | null;
|
66702
|
+
wrapUpForm: {
|
66703
|
+
id: string;
|
66704
|
+
disposition: string | null;
|
66705
|
+
createdAt: Date;
|
66706
|
+
updatedAt: Date;
|
66707
|
+
deletedAt: Date | null;
|
66708
|
+
tags: {
|
66709
|
+
id: string;
|
66710
|
+
name: string;
|
66711
|
+
createdAt: Date;
|
66712
|
+
updatedAt: Date;
|
66713
|
+
deletedAt: Date | null;
|
66714
|
+
}[];
|
66715
|
+
callFrom: string | null;
|
66716
|
+
callTo: string | null;
|
66717
|
+
note: string | null;
|
66718
|
+
} | null;
|
65608
66719
|
};
|
65609
66720
|
channel?: {
|
65610
66721
|
id?: string | undefined;
|
@@ -66626,13 +67737,31 @@ export declare const chatContract: {
|
|
66626
67737
|
updatedAt: Date;
|
66627
67738
|
deletedAt: Date | null;
|
66628
67739
|
entityId: string;
|
67740
|
+
contactId: string | null;
|
66629
67741
|
caseId: number;
|
66630
67742
|
entityName: string;
|
66631
|
-
|
67743
|
+
queueId: string | null;
|
67744
|
+
agentId: string | null;
|
66632
67745
|
startedDate: Date | null;
|
66633
67746
|
handledTime: number | null;
|
66634
|
-
firstResponseTime:
|
66635
|
-
|
67747
|
+
firstResponseTime: number | null;
|
67748
|
+
wrapUpForm: {
|
67749
|
+
id: string;
|
67750
|
+
disposition: string | null;
|
67751
|
+
createdAt: Date;
|
67752
|
+
updatedAt: Date;
|
67753
|
+
deletedAt: Date | null;
|
67754
|
+
tags: {
|
67755
|
+
id: string;
|
67756
|
+
name: string;
|
67757
|
+
createdAt: Date;
|
67758
|
+
updatedAt: Date;
|
67759
|
+
deletedAt: Date | null;
|
67760
|
+
}[];
|
67761
|
+
callFrom: string | null;
|
67762
|
+
callTo: string | null;
|
67763
|
+
note: string | null;
|
67764
|
+
} | null;
|
66636
67765
|
};
|
66637
67766
|
channel?: {
|
66638
67767
|
id?: string | undefined;
|
@@ -67080,13 +68209,31 @@ export declare const chatContract: {
|
|
67080
68209
|
updatedAt: Date;
|
67081
68210
|
deletedAt: Date | null;
|
67082
68211
|
entityId: string;
|
68212
|
+
contactId: string | null;
|
67083
68213
|
caseId: number;
|
67084
68214
|
entityName: string;
|
67085
|
-
|
68215
|
+
queueId: string | null;
|
68216
|
+
agentId: string | null;
|
67086
68217
|
startedDate: Date | null;
|
67087
68218
|
handledTime: number | null;
|
67088
|
-
firstResponseTime:
|
67089
|
-
|
68219
|
+
firstResponseTime: number | null;
|
68220
|
+
wrapUpForm: {
|
68221
|
+
id: string;
|
68222
|
+
disposition: string | null;
|
68223
|
+
createdAt: Date;
|
68224
|
+
updatedAt: Date;
|
68225
|
+
deletedAt: Date | null;
|
68226
|
+
tags: {
|
68227
|
+
id: string;
|
68228
|
+
name: string;
|
68229
|
+
createdAt: Date;
|
68230
|
+
updatedAt: Date;
|
68231
|
+
deletedAt: Date | null;
|
68232
|
+
}[];
|
68233
|
+
callFrom: string | null;
|
68234
|
+
callTo: string | null;
|
68235
|
+
note: string | null;
|
68236
|
+
} | null;
|
67090
68237
|
};
|
67091
68238
|
channel?: {
|
67092
68239
|
id?: string | undefined;
|
@@ -67536,13 +68683,31 @@ export declare const chatContract: {
|
|
67536
68683
|
updatedAt: Date;
|
67537
68684
|
deletedAt: Date | null;
|
67538
68685
|
entityId: string;
|
68686
|
+
contactId: string | null;
|
67539
68687
|
caseId: number;
|
67540
68688
|
entityName: string;
|
67541
|
-
|
68689
|
+
queueId: string | null;
|
68690
|
+
agentId: string | null;
|
67542
68691
|
startedDate: Date | null;
|
67543
68692
|
handledTime: number | null;
|
67544
|
-
firstResponseTime:
|
67545
|
-
|
68693
|
+
firstResponseTime: number | null;
|
68694
|
+
wrapUpForm: {
|
68695
|
+
id: string;
|
68696
|
+
disposition: string | null;
|
68697
|
+
createdAt: Date;
|
68698
|
+
updatedAt: Date;
|
68699
|
+
deletedAt: Date | null;
|
68700
|
+
tags: {
|
68701
|
+
id: string;
|
68702
|
+
name: string;
|
68703
|
+
createdAt: Date;
|
68704
|
+
updatedAt: Date;
|
68705
|
+
deletedAt: Date | null;
|
68706
|
+
}[];
|
68707
|
+
callFrom: string | null;
|
68708
|
+
callTo: string | null;
|
68709
|
+
note: string | null;
|
68710
|
+
} | null;
|
67546
68711
|
};
|
67547
68712
|
channel?: {
|
67548
68713
|
id?: string | undefined;
|
@@ -67992,13 +69157,31 @@ export declare const chatContract: {
|
|
67992
69157
|
updatedAt: Date;
|
67993
69158
|
deletedAt: Date | null;
|
67994
69159
|
entityId: string;
|
69160
|
+
contactId: string | null;
|
67995
69161
|
caseId: number;
|
67996
69162
|
entityName: string;
|
67997
|
-
|
69163
|
+
queueId: string | null;
|
69164
|
+
agentId: string | null;
|
67998
69165
|
startedDate: Date | null;
|
67999
69166
|
handledTime: number | null;
|
68000
|
-
firstResponseTime:
|
68001
|
-
|
69167
|
+
firstResponseTime: number | null;
|
69168
|
+
wrapUpForm: {
|
69169
|
+
id: string;
|
69170
|
+
disposition: string | null;
|
69171
|
+
createdAt: Date;
|
69172
|
+
updatedAt: Date;
|
69173
|
+
deletedAt: Date | null;
|
69174
|
+
tags: {
|
69175
|
+
id: string;
|
69176
|
+
name: string;
|
69177
|
+
createdAt: Date;
|
69178
|
+
updatedAt: Date;
|
69179
|
+
deletedAt: Date | null;
|
69180
|
+
}[];
|
69181
|
+
callFrom: string | null;
|
69182
|
+
callTo: string | null;
|
69183
|
+
note: string | null;
|
69184
|
+
} | null;
|
68002
69185
|
};
|
68003
69186
|
channel?: {
|
68004
69187
|
id?: string | undefined;
|
@@ -69983,14 +71166,76 @@ export declare const chatContract: {
|
|
69983
71166
|
caseId: import("zod").ZodNumber;
|
69984
71167
|
entityId: import("zod").ZodString;
|
69985
71168
|
entityName: import("zod").ZodString;
|
69986
|
-
|
71169
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
69987
71170
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
71171
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
71172
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
69988
71173
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
69989
71174
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
69990
71175
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
69991
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
71176
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
69992
71177
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
69993
|
-
|
71178
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
71179
|
+
id: import("zod").ZodString;
|
71180
|
+
createdAt: import("zod").ZodDate;
|
71181
|
+
updatedAt: import("zod").ZodDate;
|
71182
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
71183
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
71184
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
71185
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
71186
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
71187
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
71188
|
+
id: import("zod").ZodString;
|
71189
|
+
createdAt: import("zod").ZodDate;
|
71190
|
+
updatedAt: import("zod").ZodDate;
|
71191
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
71192
|
+
name: import("zod").ZodString;
|
71193
|
+
}, "strip", import("zod").ZodTypeAny, {
|
71194
|
+
id: string;
|
71195
|
+
name: string;
|
71196
|
+
createdAt: Date;
|
71197
|
+
updatedAt: Date;
|
71198
|
+
deletedAt: Date | null;
|
71199
|
+
}, {
|
71200
|
+
id: string;
|
71201
|
+
name: string;
|
71202
|
+
createdAt: Date;
|
71203
|
+
updatedAt: Date;
|
71204
|
+
deletedAt: Date | null;
|
71205
|
+
}>, "many">;
|
71206
|
+
}, "strip", import("zod").ZodTypeAny, {
|
71207
|
+
id: string;
|
71208
|
+
disposition: string | null;
|
71209
|
+
createdAt: Date;
|
71210
|
+
updatedAt: Date;
|
71211
|
+
deletedAt: Date | null;
|
71212
|
+
tags: {
|
71213
|
+
id: string;
|
71214
|
+
name: string;
|
71215
|
+
createdAt: Date;
|
71216
|
+
updatedAt: Date;
|
71217
|
+
deletedAt: Date | null;
|
71218
|
+
}[];
|
71219
|
+
callFrom: string | null;
|
71220
|
+
callTo: string | null;
|
71221
|
+
note: string | null;
|
71222
|
+
}, {
|
71223
|
+
id: string;
|
71224
|
+
disposition: string | null;
|
71225
|
+
createdAt: Date;
|
71226
|
+
updatedAt: Date;
|
71227
|
+
deletedAt: Date | null;
|
71228
|
+
tags: {
|
71229
|
+
id: string;
|
71230
|
+
name: string;
|
71231
|
+
createdAt: Date;
|
71232
|
+
updatedAt: Date;
|
71233
|
+
deletedAt: Date | null;
|
71234
|
+
}[];
|
71235
|
+
callFrom: string | null;
|
71236
|
+
callTo: string | null;
|
71237
|
+
note: string | null;
|
71238
|
+
}>>;
|
69994
71239
|
}, "strip", import("zod").ZodTypeAny, {
|
69995
71240
|
id: string;
|
69996
71241
|
channel: string | null;
|
@@ -70000,13 +71245,31 @@ export declare const chatContract: {
|
|
70000
71245
|
updatedAt: Date;
|
70001
71246
|
deletedAt: Date | null;
|
70002
71247
|
entityId: string;
|
71248
|
+
contactId: string | null;
|
70003
71249
|
caseId: number;
|
70004
71250
|
entityName: string;
|
70005
|
-
|
71251
|
+
queueId: string | null;
|
71252
|
+
agentId: string | null;
|
70006
71253
|
startedDate: Date | null;
|
70007
71254
|
handledTime: number | null;
|
70008
|
-
firstResponseTime:
|
70009
|
-
|
71255
|
+
firstResponseTime: number | null;
|
71256
|
+
wrapUpForm: {
|
71257
|
+
id: string;
|
71258
|
+
disposition: string | null;
|
71259
|
+
createdAt: Date;
|
71260
|
+
updatedAt: Date;
|
71261
|
+
deletedAt: Date | null;
|
71262
|
+
tags: {
|
71263
|
+
id: string;
|
71264
|
+
name: string;
|
71265
|
+
createdAt: Date;
|
71266
|
+
updatedAt: Date;
|
71267
|
+
deletedAt: Date | null;
|
71268
|
+
}[];
|
71269
|
+
callFrom: string | null;
|
71270
|
+
callTo: string | null;
|
71271
|
+
note: string | null;
|
71272
|
+
} | null;
|
70010
71273
|
}, {
|
70011
71274
|
id: string;
|
70012
71275
|
channel: string | null;
|
@@ -70016,13 +71279,31 @@ export declare const chatContract: {
|
|
70016
71279
|
updatedAt: Date;
|
70017
71280
|
deletedAt: Date | null;
|
70018
71281
|
entityId: string;
|
71282
|
+
contactId: string | null;
|
70019
71283
|
caseId: number;
|
70020
71284
|
entityName: string;
|
70021
|
-
|
71285
|
+
queueId: string | null;
|
71286
|
+
agentId: string | null;
|
70022
71287
|
startedDate: Date | null;
|
70023
71288
|
handledTime: number | null;
|
70024
|
-
firstResponseTime:
|
70025
|
-
|
71289
|
+
firstResponseTime: number | null;
|
71290
|
+
wrapUpForm: {
|
71291
|
+
id: string;
|
71292
|
+
disposition: string | null;
|
71293
|
+
createdAt: Date;
|
71294
|
+
updatedAt: Date;
|
71295
|
+
deletedAt: Date | null;
|
71296
|
+
tags: {
|
71297
|
+
id: string;
|
71298
|
+
name: string;
|
71299
|
+
createdAt: Date;
|
71300
|
+
updatedAt: Date;
|
71301
|
+
deletedAt: Date | null;
|
71302
|
+
}[];
|
71303
|
+
callFrom: string | null;
|
71304
|
+
callTo: string | null;
|
71305
|
+
note: string | null;
|
71306
|
+
} | null;
|
70026
71307
|
}>;
|
70027
71308
|
}, "strip", import("zod").ZodTypeAny, {
|
70028
71309
|
id: string;
|
@@ -70249,13 +71530,31 @@ export declare const chatContract: {
|
|
70249
71530
|
updatedAt: Date;
|
70250
71531
|
deletedAt: Date | null;
|
70251
71532
|
entityId: string;
|
71533
|
+
contactId: string | null;
|
70252
71534
|
caseId: number;
|
70253
71535
|
entityName: string;
|
70254
|
-
|
71536
|
+
queueId: string | null;
|
71537
|
+
agentId: string | null;
|
70255
71538
|
startedDate: Date | null;
|
70256
71539
|
handledTime: number | null;
|
70257
|
-
firstResponseTime:
|
70258
|
-
|
71540
|
+
firstResponseTime: number | null;
|
71541
|
+
wrapUpForm: {
|
71542
|
+
id: string;
|
71543
|
+
disposition: string | null;
|
71544
|
+
createdAt: Date;
|
71545
|
+
updatedAt: Date;
|
71546
|
+
deletedAt: Date | null;
|
71547
|
+
tags: {
|
71548
|
+
id: string;
|
71549
|
+
name: string;
|
71550
|
+
createdAt: Date;
|
71551
|
+
updatedAt: Date;
|
71552
|
+
deletedAt: Date | null;
|
71553
|
+
}[];
|
71554
|
+
callFrom: string | null;
|
71555
|
+
callTo: string | null;
|
71556
|
+
note: string | null;
|
71557
|
+
} | null;
|
70259
71558
|
};
|
70260
71559
|
channel?: {
|
70261
71560
|
id?: string | undefined;
|
@@ -70545,13 +71844,31 @@ export declare const chatContract: {
|
|
70545
71844
|
updatedAt: Date;
|
70546
71845
|
deletedAt: Date | null;
|
70547
71846
|
entityId: string;
|
71847
|
+
contactId: string | null;
|
70548
71848
|
caseId: number;
|
70549
71849
|
entityName: string;
|
70550
|
-
|
71850
|
+
queueId: string | null;
|
71851
|
+
agentId: string | null;
|
70551
71852
|
startedDate: Date | null;
|
70552
71853
|
handledTime: number | null;
|
70553
|
-
firstResponseTime:
|
70554
|
-
|
71854
|
+
firstResponseTime: number | null;
|
71855
|
+
wrapUpForm: {
|
71856
|
+
id: string;
|
71857
|
+
disposition: string | null;
|
71858
|
+
createdAt: Date;
|
71859
|
+
updatedAt: Date;
|
71860
|
+
deletedAt: Date | null;
|
71861
|
+
tags: {
|
71862
|
+
id: string;
|
71863
|
+
name: string;
|
71864
|
+
createdAt: Date;
|
71865
|
+
updatedAt: Date;
|
71866
|
+
deletedAt: Date | null;
|
71867
|
+
}[];
|
71868
|
+
callFrom: string | null;
|
71869
|
+
callTo: string | null;
|
71870
|
+
note: string | null;
|
71871
|
+
} | null;
|
70555
71872
|
};
|
70556
71873
|
channel?: {
|
70557
71874
|
id?: string | undefined;
|
@@ -71573,13 +72890,31 @@ export declare const chatContract: {
|
|
71573
72890
|
updatedAt: Date;
|
71574
72891
|
deletedAt: Date | null;
|
71575
72892
|
entityId: string;
|
72893
|
+
contactId: string | null;
|
71576
72894
|
caseId: number;
|
71577
72895
|
entityName: string;
|
71578
|
-
|
72896
|
+
queueId: string | null;
|
72897
|
+
agentId: string | null;
|
71579
72898
|
startedDate: Date | null;
|
71580
72899
|
handledTime: number | null;
|
71581
|
-
firstResponseTime:
|
71582
|
-
|
72900
|
+
firstResponseTime: number | null;
|
72901
|
+
wrapUpForm: {
|
72902
|
+
id: string;
|
72903
|
+
disposition: string | null;
|
72904
|
+
createdAt: Date;
|
72905
|
+
updatedAt: Date;
|
72906
|
+
deletedAt: Date | null;
|
72907
|
+
tags: {
|
72908
|
+
id: string;
|
72909
|
+
name: string;
|
72910
|
+
createdAt: Date;
|
72911
|
+
updatedAt: Date;
|
72912
|
+
deletedAt: Date | null;
|
72913
|
+
}[];
|
72914
|
+
callFrom: string | null;
|
72915
|
+
callTo: string | null;
|
72916
|
+
note: string | null;
|
72917
|
+
} | null;
|
71583
72918
|
};
|
71584
72919
|
channel?: {
|
71585
72920
|
id?: string | undefined;
|
@@ -72027,13 +73362,31 @@ export declare const chatContract: {
|
|
72027
73362
|
updatedAt: Date;
|
72028
73363
|
deletedAt: Date | null;
|
72029
73364
|
entityId: string;
|
73365
|
+
contactId: string | null;
|
72030
73366
|
caseId: number;
|
72031
73367
|
entityName: string;
|
72032
|
-
|
73368
|
+
queueId: string | null;
|
73369
|
+
agentId: string | null;
|
72033
73370
|
startedDate: Date | null;
|
72034
73371
|
handledTime: number | null;
|
72035
|
-
firstResponseTime:
|
72036
|
-
|
73372
|
+
firstResponseTime: number | null;
|
73373
|
+
wrapUpForm: {
|
73374
|
+
id: string;
|
73375
|
+
disposition: string | null;
|
73376
|
+
createdAt: Date;
|
73377
|
+
updatedAt: Date;
|
73378
|
+
deletedAt: Date | null;
|
73379
|
+
tags: {
|
73380
|
+
id: string;
|
73381
|
+
name: string;
|
73382
|
+
createdAt: Date;
|
73383
|
+
updatedAt: Date;
|
73384
|
+
deletedAt: Date | null;
|
73385
|
+
}[];
|
73386
|
+
callFrom: string | null;
|
73387
|
+
callTo: string | null;
|
73388
|
+
note: string | null;
|
73389
|
+
} | null;
|
72037
73390
|
};
|
72038
73391
|
channel?: {
|
72039
73392
|
id?: string | undefined;
|
@@ -72483,13 +73836,31 @@ export declare const chatContract: {
|
|
72483
73836
|
updatedAt: Date;
|
72484
73837
|
deletedAt: Date | null;
|
72485
73838
|
entityId: string;
|
73839
|
+
contactId: string | null;
|
72486
73840
|
caseId: number;
|
72487
73841
|
entityName: string;
|
72488
|
-
|
73842
|
+
queueId: string | null;
|
73843
|
+
agentId: string | null;
|
72489
73844
|
startedDate: Date | null;
|
72490
73845
|
handledTime: number | null;
|
72491
|
-
firstResponseTime:
|
72492
|
-
|
73846
|
+
firstResponseTime: number | null;
|
73847
|
+
wrapUpForm: {
|
73848
|
+
id: string;
|
73849
|
+
disposition: string | null;
|
73850
|
+
createdAt: Date;
|
73851
|
+
updatedAt: Date;
|
73852
|
+
deletedAt: Date | null;
|
73853
|
+
tags: {
|
73854
|
+
id: string;
|
73855
|
+
name: string;
|
73856
|
+
createdAt: Date;
|
73857
|
+
updatedAt: Date;
|
73858
|
+
deletedAt: Date | null;
|
73859
|
+
}[];
|
73860
|
+
callFrom: string | null;
|
73861
|
+
callTo: string | null;
|
73862
|
+
note: string | null;
|
73863
|
+
} | null;
|
72493
73864
|
};
|
72494
73865
|
channel?: {
|
72495
73866
|
id?: string | undefined;
|
@@ -72943,13 +74314,31 @@ export declare const chatContract: {
|
|
72943
74314
|
updatedAt: Date;
|
72944
74315
|
deletedAt: Date | null;
|
72945
74316
|
entityId: string;
|
74317
|
+
contactId: string | null;
|
72946
74318
|
caseId: number;
|
72947
74319
|
entityName: string;
|
72948
|
-
|
74320
|
+
queueId: string | null;
|
74321
|
+
agentId: string | null;
|
72949
74322
|
startedDate: Date | null;
|
72950
74323
|
handledTime: number | null;
|
72951
|
-
firstResponseTime:
|
72952
|
-
|
74324
|
+
firstResponseTime: number | null;
|
74325
|
+
wrapUpForm: {
|
74326
|
+
id: string;
|
74327
|
+
disposition: string | null;
|
74328
|
+
createdAt: Date;
|
74329
|
+
updatedAt: Date;
|
74330
|
+
deletedAt: Date | null;
|
74331
|
+
tags: {
|
74332
|
+
id: string;
|
74333
|
+
name: string;
|
74334
|
+
createdAt: Date;
|
74335
|
+
updatedAt: Date;
|
74336
|
+
deletedAt: Date | null;
|
74337
|
+
}[];
|
74338
|
+
callFrom: string | null;
|
74339
|
+
callTo: string | null;
|
74340
|
+
note: string | null;
|
74341
|
+
} | null;
|
72953
74342
|
};
|
72954
74343
|
channel?: {
|
72955
74344
|
id?: string | undefined;
|
@@ -74867,14 +76256,76 @@ export declare const chatContract: {
|
|
74867
76256
|
caseId: import("zod").ZodNumber;
|
74868
76257
|
entityId: import("zod").ZodString;
|
74869
76258
|
entityName: import("zod").ZodString;
|
74870
|
-
|
76259
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
74871
76260
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
76261
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
76262
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
74872
76263
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
74873
76264
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
74874
76265
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
74875
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
76266
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
74876
76267
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
74877
|
-
|
76268
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
76269
|
+
id: import("zod").ZodString;
|
76270
|
+
createdAt: import("zod").ZodDate;
|
76271
|
+
updatedAt: import("zod").ZodDate;
|
76272
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
76273
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
76274
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
76275
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
76276
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
76277
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
76278
|
+
id: import("zod").ZodString;
|
76279
|
+
createdAt: import("zod").ZodDate;
|
76280
|
+
updatedAt: import("zod").ZodDate;
|
76281
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
76282
|
+
name: import("zod").ZodString;
|
76283
|
+
}, "strip", import("zod").ZodTypeAny, {
|
76284
|
+
id: string;
|
76285
|
+
name: string;
|
76286
|
+
createdAt: Date;
|
76287
|
+
updatedAt: Date;
|
76288
|
+
deletedAt: Date | null;
|
76289
|
+
}, {
|
76290
|
+
id: string;
|
76291
|
+
name: string;
|
76292
|
+
createdAt: Date;
|
76293
|
+
updatedAt: Date;
|
76294
|
+
deletedAt: Date | null;
|
76295
|
+
}>, "many">;
|
76296
|
+
}, "strip", import("zod").ZodTypeAny, {
|
76297
|
+
id: string;
|
76298
|
+
disposition: string | null;
|
76299
|
+
createdAt: Date;
|
76300
|
+
updatedAt: Date;
|
76301
|
+
deletedAt: Date | null;
|
76302
|
+
tags: {
|
76303
|
+
id: string;
|
76304
|
+
name: string;
|
76305
|
+
createdAt: Date;
|
76306
|
+
updatedAt: Date;
|
76307
|
+
deletedAt: Date | null;
|
76308
|
+
}[];
|
76309
|
+
callFrom: string | null;
|
76310
|
+
callTo: string | null;
|
76311
|
+
note: string | null;
|
76312
|
+
}, {
|
76313
|
+
id: string;
|
76314
|
+
disposition: string | null;
|
76315
|
+
createdAt: Date;
|
76316
|
+
updatedAt: Date;
|
76317
|
+
deletedAt: Date | null;
|
76318
|
+
tags: {
|
76319
|
+
id: string;
|
76320
|
+
name: string;
|
76321
|
+
createdAt: Date;
|
76322
|
+
updatedAt: Date;
|
76323
|
+
deletedAt: Date | null;
|
76324
|
+
}[];
|
76325
|
+
callFrom: string | null;
|
76326
|
+
callTo: string | null;
|
76327
|
+
note: string | null;
|
76328
|
+
}>>;
|
74878
76329
|
}, "strip", import("zod").ZodTypeAny, {
|
74879
76330
|
id: string;
|
74880
76331
|
channel: string | null;
|
@@ -74884,13 +76335,31 @@ export declare const chatContract: {
|
|
74884
76335
|
updatedAt: Date;
|
74885
76336
|
deletedAt: Date | null;
|
74886
76337
|
entityId: string;
|
76338
|
+
contactId: string | null;
|
74887
76339
|
caseId: number;
|
74888
76340
|
entityName: string;
|
74889
|
-
|
76341
|
+
queueId: string | null;
|
76342
|
+
agentId: string | null;
|
74890
76343
|
startedDate: Date | null;
|
74891
76344
|
handledTime: number | null;
|
74892
|
-
firstResponseTime:
|
74893
|
-
|
76345
|
+
firstResponseTime: number | null;
|
76346
|
+
wrapUpForm: {
|
76347
|
+
id: string;
|
76348
|
+
disposition: string | null;
|
76349
|
+
createdAt: Date;
|
76350
|
+
updatedAt: Date;
|
76351
|
+
deletedAt: Date | null;
|
76352
|
+
tags: {
|
76353
|
+
id: string;
|
76354
|
+
name: string;
|
76355
|
+
createdAt: Date;
|
76356
|
+
updatedAt: Date;
|
76357
|
+
deletedAt: Date | null;
|
76358
|
+
}[];
|
76359
|
+
callFrom: string | null;
|
76360
|
+
callTo: string | null;
|
76361
|
+
note: string | null;
|
76362
|
+
} | null;
|
74894
76363
|
}, {
|
74895
76364
|
id: string;
|
74896
76365
|
channel: string | null;
|
@@ -74900,13 +76369,31 @@ export declare const chatContract: {
|
|
74900
76369
|
updatedAt: Date;
|
74901
76370
|
deletedAt: Date | null;
|
74902
76371
|
entityId: string;
|
76372
|
+
contactId: string | null;
|
74903
76373
|
caseId: number;
|
74904
76374
|
entityName: string;
|
74905
|
-
|
76375
|
+
queueId: string | null;
|
76376
|
+
agentId: string | null;
|
74906
76377
|
startedDate: Date | null;
|
74907
76378
|
handledTime: number | null;
|
74908
|
-
firstResponseTime:
|
74909
|
-
|
76379
|
+
firstResponseTime: number | null;
|
76380
|
+
wrapUpForm: {
|
76381
|
+
id: string;
|
76382
|
+
disposition: string | null;
|
76383
|
+
createdAt: Date;
|
76384
|
+
updatedAt: Date;
|
76385
|
+
deletedAt: Date | null;
|
76386
|
+
tags: {
|
76387
|
+
id: string;
|
76388
|
+
name: string;
|
76389
|
+
createdAt: Date;
|
76390
|
+
updatedAt: Date;
|
76391
|
+
deletedAt: Date | null;
|
76392
|
+
}[];
|
76393
|
+
callFrom: string | null;
|
76394
|
+
callTo: string | null;
|
76395
|
+
note: string | null;
|
76396
|
+
} | null;
|
74910
76397
|
}>;
|
74911
76398
|
solveMessage: import("zod").ZodString;
|
74912
76399
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -75134,13 +76621,31 @@ export declare const chatContract: {
|
|
75134
76621
|
updatedAt: Date;
|
75135
76622
|
deletedAt: Date | null;
|
75136
76623
|
entityId: string;
|
76624
|
+
contactId: string | null;
|
75137
76625
|
caseId: number;
|
75138
76626
|
entityName: string;
|
75139
|
-
|
76627
|
+
queueId: string | null;
|
76628
|
+
agentId: string | null;
|
75140
76629
|
startedDate: Date | null;
|
75141
76630
|
handledTime: number | null;
|
75142
|
-
firstResponseTime:
|
75143
|
-
|
76631
|
+
firstResponseTime: number | null;
|
76632
|
+
wrapUpForm: {
|
76633
|
+
id: string;
|
76634
|
+
disposition: string | null;
|
76635
|
+
createdAt: Date;
|
76636
|
+
updatedAt: Date;
|
76637
|
+
deletedAt: Date | null;
|
76638
|
+
tags: {
|
76639
|
+
id: string;
|
76640
|
+
name: string;
|
76641
|
+
createdAt: Date;
|
76642
|
+
updatedAt: Date;
|
76643
|
+
deletedAt: Date | null;
|
76644
|
+
}[];
|
76645
|
+
callFrom: string | null;
|
76646
|
+
callTo: string | null;
|
76647
|
+
note: string | null;
|
76648
|
+
} | null;
|
75144
76649
|
};
|
75145
76650
|
solveMessage: string;
|
75146
76651
|
channel?: {
|
@@ -75431,13 +76936,31 @@ export declare const chatContract: {
|
|
75431
76936
|
updatedAt: Date;
|
75432
76937
|
deletedAt: Date | null;
|
75433
76938
|
entityId: string;
|
76939
|
+
contactId: string | null;
|
75434
76940
|
caseId: number;
|
75435
76941
|
entityName: string;
|
75436
|
-
|
76942
|
+
queueId: string | null;
|
76943
|
+
agentId: string | null;
|
75437
76944
|
startedDate: Date | null;
|
75438
76945
|
handledTime: number | null;
|
75439
|
-
firstResponseTime:
|
75440
|
-
|
76946
|
+
firstResponseTime: number | null;
|
76947
|
+
wrapUpForm: {
|
76948
|
+
id: string;
|
76949
|
+
disposition: string | null;
|
76950
|
+
createdAt: Date;
|
76951
|
+
updatedAt: Date;
|
76952
|
+
deletedAt: Date | null;
|
76953
|
+
tags: {
|
76954
|
+
id: string;
|
76955
|
+
name: string;
|
76956
|
+
createdAt: Date;
|
76957
|
+
updatedAt: Date;
|
76958
|
+
deletedAt: Date | null;
|
76959
|
+
}[];
|
76960
|
+
callFrom: string | null;
|
76961
|
+
callTo: string | null;
|
76962
|
+
note: string | null;
|
76963
|
+
} | null;
|
75441
76964
|
};
|
75442
76965
|
solveMessage: string;
|
75443
76966
|
channel?: {
|
@@ -75730,13 +77253,31 @@ export declare const chatContract: {
|
|
75730
77253
|
updatedAt: Date;
|
75731
77254
|
deletedAt: Date | null;
|
75732
77255
|
entityId: string;
|
77256
|
+
contactId: string | null;
|
75733
77257
|
caseId: number;
|
75734
77258
|
entityName: string;
|
75735
|
-
|
77259
|
+
queueId: string | null;
|
77260
|
+
agentId: string | null;
|
75736
77261
|
startedDate: Date | null;
|
75737
77262
|
handledTime: number | null;
|
75738
|
-
firstResponseTime:
|
75739
|
-
|
77263
|
+
firstResponseTime: number | null;
|
77264
|
+
wrapUpForm: {
|
77265
|
+
id: string;
|
77266
|
+
disposition: string | null;
|
77267
|
+
createdAt: Date;
|
77268
|
+
updatedAt: Date;
|
77269
|
+
deletedAt: Date | null;
|
77270
|
+
tags: {
|
77271
|
+
id: string;
|
77272
|
+
name: string;
|
77273
|
+
createdAt: Date;
|
77274
|
+
updatedAt: Date;
|
77275
|
+
deletedAt: Date | null;
|
77276
|
+
}[];
|
77277
|
+
callFrom: string | null;
|
77278
|
+
callTo: string | null;
|
77279
|
+
note: string | null;
|
77280
|
+
} | null;
|
75740
77281
|
};
|
75741
77282
|
solveMessage: string;
|
75742
77283
|
channel?: {
|
@@ -76030,13 +77571,31 @@ export declare const chatContract: {
|
|
76030
77571
|
updatedAt: Date;
|
76031
77572
|
deletedAt: Date | null;
|
76032
77573
|
entityId: string;
|
77574
|
+
contactId: string | null;
|
76033
77575
|
caseId: number;
|
76034
77576
|
entityName: string;
|
76035
|
-
|
77577
|
+
queueId: string | null;
|
77578
|
+
agentId: string | null;
|
76036
77579
|
startedDate: Date | null;
|
76037
77580
|
handledTime: number | null;
|
76038
|
-
firstResponseTime:
|
76039
|
-
|
77581
|
+
firstResponseTime: number | null;
|
77582
|
+
wrapUpForm: {
|
77583
|
+
id: string;
|
77584
|
+
disposition: string | null;
|
77585
|
+
createdAt: Date;
|
77586
|
+
updatedAt: Date;
|
77587
|
+
deletedAt: Date | null;
|
77588
|
+
tags: {
|
77589
|
+
id: string;
|
77590
|
+
name: string;
|
77591
|
+
createdAt: Date;
|
77592
|
+
updatedAt: Date;
|
77593
|
+
deletedAt: Date | null;
|
77594
|
+
}[];
|
77595
|
+
callFrom: string | null;
|
77596
|
+
callTo: string | null;
|
77597
|
+
note: string | null;
|
77598
|
+
} | null;
|
76040
77599
|
};
|
76041
77600
|
solveMessage: string;
|
76042
77601
|
channel?: {
|
@@ -77913,14 +79472,76 @@ export declare const chatContract: {
|
|
77913
79472
|
caseId: import("zod").ZodNumber;
|
77914
79473
|
entityId: import("zod").ZodString;
|
77915
79474
|
entityName: import("zod").ZodString;
|
77916
|
-
|
79475
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
77917
79476
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
79477
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
79478
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
77918
79479
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
77919
79480
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
77920
79481
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
77921
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
79482
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
77922
79483
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
77923
|
-
|
79484
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
79485
|
+
id: import("zod").ZodString;
|
79486
|
+
createdAt: import("zod").ZodDate;
|
79487
|
+
updatedAt: import("zod").ZodDate;
|
79488
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
79489
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
79490
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
79491
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
79492
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
79493
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
79494
|
+
id: import("zod").ZodString;
|
79495
|
+
createdAt: import("zod").ZodDate;
|
79496
|
+
updatedAt: import("zod").ZodDate;
|
79497
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
79498
|
+
name: import("zod").ZodString;
|
79499
|
+
}, "strip", import("zod").ZodTypeAny, {
|
79500
|
+
id: string;
|
79501
|
+
name: string;
|
79502
|
+
createdAt: Date;
|
79503
|
+
updatedAt: Date;
|
79504
|
+
deletedAt: Date | null;
|
79505
|
+
}, {
|
79506
|
+
id: string;
|
79507
|
+
name: string;
|
79508
|
+
createdAt: Date;
|
79509
|
+
updatedAt: Date;
|
79510
|
+
deletedAt: Date | null;
|
79511
|
+
}>, "many">;
|
79512
|
+
}, "strip", import("zod").ZodTypeAny, {
|
79513
|
+
id: string;
|
79514
|
+
disposition: string | null;
|
79515
|
+
createdAt: Date;
|
79516
|
+
updatedAt: Date;
|
79517
|
+
deletedAt: Date | null;
|
79518
|
+
tags: {
|
79519
|
+
id: string;
|
79520
|
+
name: string;
|
79521
|
+
createdAt: Date;
|
79522
|
+
updatedAt: Date;
|
79523
|
+
deletedAt: Date | null;
|
79524
|
+
}[];
|
79525
|
+
callFrom: string | null;
|
79526
|
+
callTo: string | null;
|
79527
|
+
note: string | null;
|
79528
|
+
}, {
|
79529
|
+
id: string;
|
79530
|
+
disposition: string | null;
|
79531
|
+
createdAt: Date;
|
79532
|
+
updatedAt: Date;
|
79533
|
+
deletedAt: Date | null;
|
79534
|
+
tags: {
|
79535
|
+
id: string;
|
79536
|
+
name: string;
|
79537
|
+
createdAt: Date;
|
79538
|
+
updatedAt: Date;
|
79539
|
+
deletedAt: Date | null;
|
79540
|
+
}[];
|
79541
|
+
callFrom: string | null;
|
79542
|
+
callTo: string | null;
|
79543
|
+
note: string | null;
|
79544
|
+
}>>;
|
77924
79545
|
}, "strip", import("zod").ZodTypeAny, {
|
77925
79546
|
id: string;
|
77926
79547
|
channel: string | null;
|
@@ -77930,13 +79551,31 @@ export declare const chatContract: {
|
|
77930
79551
|
updatedAt: Date;
|
77931
79552
|
deletedAt: Date | null;
|
77932
79553
|
entityId: string;
|
79554
|
+
contactId: string | null;
|
77933
79555
|
caseId: number;
|
77934
79556
|
entityName: string;
|
77935
|
-
|
79557
|
+
queueId: string | null;
|
79558
|
+
agentId: string | null;
|
77936
79559
|
startedDate: Date | null;
|
77937
79560
|
handledTime: number | null;
|
77938
|
-
firstResponseTime:
|
77939
|
-
|
79561
|
+
firstResponseTime: number | null;
|
79562
|
+
wrapUpForm: {
|
79563
|
+
id: string;
|
79564
|
+
disposition: string | null;
|
79565
|
+
createdAt: Date;
|
79566
|
+
updatedAt: Date;
|
79567
|
+
deletedAt: Date | null;
|
79568
|
+
tags: {
|
79569
|
+
id: string;
|
79570
|
+
name: string;
|
79571
|
+
createdAt: Date;
|
79572
|
+
updatedAt: Date;
|
79573
|
+
deletedAt: Date | null;
|
79574
|
+
}[];
|
79575
|
+
callFrom: string | null;
|
79576
|
+
callTo: string | null;
|
79577
|
+
note: string | null;
|
79578
|
+
} | null;
|
77940
79579
|
}, {
|
77941
79580
|
id: string;
|
77942
79581
|
channel: string | null;
|
@@ -77946,13 +79585,31 @@ export declare const chatContract: {
|
|
77946
79585
|
updatedAt: Date;
|
77947
79586
|
deletedAt: Date | null;
|
77948
79587
|
entityId: string;
|
79588
|
+
contactId: string | null;
|
77949
79589
|
caseId: number;
|
77950
79590
|
entityName: string;
|
77951
|
-
|
79591
|
+
queueId: string | null;
|
79592
|
+
agentId: string | null;
|
77952
79593
|
startedDate: Date | null;
|
77953
79594
|
handledTime: number | null;
|
77954
|
-
firstResponseTime:
|
77955
|
-
|
79595
|
+
firstResponseTime: number | null;
|
79596
|
+
wrapUpForm: {
|
79597
|
+
id: string;
|
79598
|
+
disposition: string | null;
|
79599
|
+
createdAt: Date;
|
79600
|
+
updatedAt: Date;
|
79601
|
+
deletedAt: Date | null;
|
79602
|
+
tags: {
|
79603
|
+
id: string;
|
79604
|
+
name: string;
|
79605
|
+
createdAt: Date;
|
79606
|
+
updatedAt: Date;
|
79607
|
+
deletedAt: Date | null;
|
79608
|
+
}[];
|
79609
|
+
callFrom: string | null;
|
79610
|
+
callTo: string | null;
|
79611
|
+
note: string | null;
|
79612
|
+
} | null;
|
77956
79613
|
}>;
|
77957
79614
|
}, "strip", import("zod").ZodTypeAny, {
|
77958
79615
|
id: string;
|
@@ -78179,13 +79836,31 @@ export declare const chatContract: {
|
|
78179
79836
|
updatedAt: Date;
|
78180
79837
|
deletedAt: Date | null;
|
78181
79838
|
entityId: string;
|
79839
|
+
contactId: string | null;
|
78182
79840
|
caseId: number;
|
78183
79841
|
entityName: string;
|
78184
|
-
|
79842
|
+
queueId: string | null;
|
79843
|
+
agentId: string | null;
|
78185
79844
|
startedDate: Date | null;
|
78186
79845
|
handledTime: number | null;
|
78187
|
-
firstResponseTime:
|
78188
|
-
|
79846
|
+
firstResponseTime: number | null;
|
79847
|
+
wrapUpForm: {
|
79848
|
+
id: string;
|
79849
|
+
disposition: string | null;
|
79850
|
+
createdAt: Date;
|
79851
|
+
updatedAt: Date;
|
79852
|
+
deletedAt: Date | null;
|
79853
|
+
tags: {
|
79854
|
+
id: string;
|
79855
|
+
name: string;
|
79856
|
+
createdAt: Date;
|
79857
|
+
updatedAt: Date;
|
79858
|
+
deletedAt: Date | null;
|
79859
|
+
}[];
|
79860
|
+
callFrom: string | null;
|
79861
|
+
callTo: string | null;
|
79862
|
+
note: string | null;
|
79863
|
+
} | null;
|
78189
79864
|
};
|
78190
79865
|
channel?: {
|
78191
79866
|
id?: string | undefined;
|
@@ -78475,13 +80150,31 @@ export declare const chatContract: {
|
|
78475
80150
|
updatedAt: Date;
|
78476
80151
|
deletedAt: Date | null;
|
78477
80152
|
entityId: string;
|
80153
|
+
contactId: string | null;
|
78478
80154
|
caseId: number;
|
78479
80155
|
entityName: string;
|
78480
|
-
|
80156
|
+
queueId: string | null;
|
80157
|
+
agentId: string | null;
|
78481
80158
|
startedDate: Date | null;
|
78482
80159
|
handledTime: number | null;
|
78483
|
-
firstResponseTime:
|
78484
|
-
|
80160
|
+
firstResponseTime: number | null;
|
80161
|
+
wrapUpForm: {
|
80162
|
+
id: string;
|
80163
|
+
disposition: string | null;
|
80164
|
+
createdAt: Date;
|
80165
|
+
updatedAt: Date;
|
80166
|
+
deletedAt: Date | null;
|
80167
|
+
tags: {
|
80168
|
+
id: string;
|
80169
|
+
name: string;
|
80170
|
+
createdAt: Date;
|
80171
|
+
updatedAt: Date;
|
80172
|
+
deletedAt: Date | null;
|
80173
|
+
}[];
|
80174
|
+
callFrom: string | null;
|
80175
|
+
callTo: string | null;
|
80176
|
+
note: string | null;
|
80177
|
+
} | null;
|
78485
80178
|
};
|
78486
80179
|
channel?: {
|
78487
80180
|
id?: string | undefined;
|
@@ -78773,13 +80466,31 @@ export declare const chatContract: {
|
|
78773
80466
|
updatedAt: Date;
|
78774
80467
|
deletedAt: Date | null;
|
78775
80468
|
entityId: string;
|
80469
|
+
contactId: string | null;
|
78776
80470
|
caseId: number;
|
78777
80471
|
entityName: string;
|
78778
|
-
|
80472
|
+
queueId: string | null;
|
80473
|
+
agentId: string | null;
|
78779
80474
|
startedDate: Date | null;
|
78780
80475
|
handledTime: number | null;
|
78781
|
-
firstResponseTime:
|
78782
|
-
|
80476
|
+
firstResponseTime: number | null;
|
80477
|
+
wrapUpForm: {
|
80478
|
+
id: string;
|
80479
|
+
disposition: string | null;
|
80480
|
+
createdAt: Date;
|
80481
|
+
updatedAt: Date;
|
80482
|
+
deletedAt: Date | null;
|
80483
|
+
tags: {
|
80484
|
+
id: string;
|
80485
|
+
name: string;
|
80486
|
+
createdAt: Date;
|
80487
|
+
updatedAt: Date;
|
80488
|
+
deletedAt: Date | null;
|
80489
|
+
}[];
|
80490
|
+
callFrom: string | null;
|
80491
|
+
callTo: string | null;
|
80492
|
+
note: string | null;
|
80493
|
+
} | null;
|
78783
80494
|
};
|
78784
80495
|
channel?: {
|
78785
80496
|
id?: string | undefined;
|
@@ -79072,13 +80783,31 @@ export declare const chatContract: {
|
|
79072
80783
|
updatedAt: Date;
|
79073
80784
|
deletedAt: Date | null;
|
79074
80785
|
entityId: string;
|
80786
|
+
contactId: string | null;
|
79075
80787
|
caseId: number;
|
79076
80788
|
entityName: string;
|
79077
|
-
|
80789
|
+
queueId: string | null;
|
80790
|
+
agentId: string | null;
|
79078
80791
|
startedDate: Date | null;
|
79079
80792
|
handledTime: number | null;
|
79080
|
-
firstResponseTime:
|
79081
|
-
|
80793
|
+
firstResponseTime: number | null;
|
80794
|
+
wrapUpForm: {
|
80795
|
+
id: string;
|
80796
|
+
disposition: string | null;
|
80797
|
+
createdAt: Date;
|
80798
|
+
updatedAt: Date;
|
80799
|
+
deletedAt: Date | null;
|
80800
|
+
tags: {
|
80801
|
+
id: string;
|
80802
|
+
name: string;
|
80803
|
+
createdAt: Date;
|
80804
|
+
updatedAt: Date;
|
80805
|
+
deletedAt: Date | null;
|
80806
|
+
}[];
|
80807
|
+
callFrom: string | null;
|
80808
|
+
callTo: string | null;
|
80809
|
+
note: string | null;
|
80810
|
+
} | null;
|
79082
80811
|
};
|
79083
80812
|
channel?: {
|
79084
80813
|
id?: string | undefined;
|
@@ -80941,14 +82670,76 @@ export declare const chatContract: {
|
|
80941
82670
|
caseId: import("zod").ZodNumber;
|
80942
82671
|
entityId: import("zod").ZodString;
|
80943
82672
|
entityName: import("zod").ZodString;
|
80944
|
-
|
82673
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
80945
82674
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
82675
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
82676
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
80946
82677
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
80947
82678
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
80948
82679
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
80949
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
82680
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
80950
82681
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
80951
|
-
|
82682
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
82683
|
+
id: import("zod").ZodString;
|
82684
|
+
createdAt: import("zod").ZodDate;
|
82685
|
+
updatedAt: import("zod").ZodDate;
|
82686
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
82687
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
82688
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
82689
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
82690
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
82691
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
82692
|
+
id: import("zod").ZodString;
|
82693
|
+
createdAt: import("zod").ZodDate;
|
82694
|
+
updatedAt: import("zod").ZodDate;
|
82695
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
82696
|
+
name: import("zod").ZodString;
|
82697
|
+
}, "strip", import("zod").ZodTypeAny, {
|
82698
|
+
id: string;
|
82699
|
+
name: string;
|
82700
|
+
createdAt: Date;
|
82701
|
+
updatedAt: Date;
|
82702
|
+
deletedAt: Date | null;
|
82703
|
+
}, {
|
82704
|
+
id: string;
|
82705
|
+
name: string;
|
82706
|
+
createdAt: Date;
|
82707
|
+
updatedAt: Date;
|
82708
|
+
deletedAt: Date | null;
|
82709
|
+
}>, "many">;
|
82710
|
+
}, "strip", import("zod").ZodTypeAny, {
|
82711
|
+
id: string;
|
82712
|
+
disposition: string | null;
|
82713
|
+
createdAt: Date;
|
82714
|
+
updatedAt: Date;
|
82715
|
+
deletedAt: Date | null;
|
82716
|
+
tags: {
|
82717
|
+
id: string;
|
82718
|
+
name: string;
|
82719
|
+
createdAt: Date;
|
82720
|
+
updatedAt: Date;
|
82721
|
+
deletedAt: Date | null;
|
82722
|
+
}[];
|
82723
|
+
callFrom: string | null;
|
82724
|
+
callTo: string | null;
|
82725
|
+
note: string | null;
|
82726
|
+
}, {
|
82727
|
+
id: string;
|
82728
|
+
disposition: string | null;
|
82729
|
+
createdAt: Date;
|
82730
|
+
updatedAt: Date;
|
82731
|
+
deletedAt: Date | null;
|
82732
|
+
tags: {
|
82733
|
+
id: string;
|
82734
|
+
name: string;
|
82735
|
+
createdAt: Date;
|
82736
|
+
updatedAt: Date;
|
82737
|
+
deletedAt: Date | null;
|
82738
|
+
}[];
|
82739
|
+
callFrom: string | null;
|
82740
|
+
callTo: string | null;
|
82741
|
+
note: string | null;
|
82742
|
+
}>>;
|
80952
82743
|
}, "strip", import("zod").ZodTypeAny, {
|
80953
82744
|
id: string;
|
80954
82745
|
channel: string | null;
|
@@ -80958,13 +82749,31 @@ export declare const chatContract: {
|
|
80958
82749
|
updatedAt: Date;
|
80959
82750
|
deletedAt: Date | null;
|
80960
82751
|
entityId: string;
|
82752
|
+
contactId: string | null;
|
80961
82753
|
caseId: number;
|
80962
82754
|
entityName: string;
|
80963
|
-
|
82755
|
+
queueId: string | null;
|
82756
|
+
agentId: string | null;
|
80964
82757
|
startedDate: Date | null;
|
80965
82758
|
handledTime: number | null;
|
80966
|
-
firstResponseTime:
|
80967
|
-
|
82759
|
+
firstResponseTime: number | null;
|
82760
|
+
wrapUpForm: {
|
82761
|
+
id: string;
|
82762
|
+
disposition: string | null;
|
82763
|
+
createdAt: Date;
|
82764
|
+
updatedAt: Date;
|
82765
|
+
deletedAt: Date | null;
|
82766
|
+
tags: {
|
82767
|
+
id: string;
|
82768
|
+
name: string;
|
82769
|
+
createdAt: Date;
|
82770
|
+
updatedAt: Date;
|
82771
|
+
deletedAt: Date | null;
|
82772
|
+
}[];
|
82773
|
+
callFrom: string | null;
|
82774
|
+
callTo: string | null;
|
82775
|
+
note: string | null;
|
82776
|
+
} | null;
|
80968
82777
|
}, {
|
80969
82778
|
id: string;
|
80970
82779
|
channel: string | null;
|
@@ -80974,13 +82783,31 @@ export declare const chatContract: {
|
|
80974
82783
|
updatedAt: Date;
|
80975
82784
|
deletedAt: Date | null;
|
80976
82785
|
entityId: string;
|
82786
|
+
contactId: string | null;
|
80977
82787
|
caseId: number;
|
80978
82788
|
entityName: string;
|
80979
|
-
|
82789
|
+
queueId: string | null;
|
82790
|
+
agentId: string | null;
|
80980
82791
|
startedDate: Date | null;
|
80981
82792
|
handledTime: number | null;
|
80982
|
-
firstResponseTime:
|
80983
|
-
|
82793
|
+
firstResponseTime: number | null;
|
82794
|
+
wrapUpForm: {
|
82795
|
+
id: string;
|
82796
|
+
disposition: string | null;
|
82797
|
+
createdAt: Date;
|
82798
|
+
updatedAt: Date;
|
82799
|
+
deletedAt: Date | null;
|
82800
|
+
tags: {
|
82801
|
+
id: string;
|
82802
|
+
name: string;
|
82803
|
+
createdAt: Date;
|
82804
|
+
updatedAt: Date;
|
82805
|
+
deletedAt: Date | null;
|
82806
|
+
}[];
|
82807
|
+
callFrom: string | null;
|
82808
|
+
callTo: string | null;
|
82809
|
+
note: string | null;
|
82810
|
+
} | null;
|
80984
82811
|
}>;
|
80985
82812
|
}, "strip", import("zod").ZodTypeAny, {
|
80986
82813
|
id: string;
|
@@ -81207,13 +83034,31 @@ export declare const chatContract: {
|
|
81207
83034
|
updatedAt: Date;
|
81208
83035
|
deletedAt: Date | null;
|
81209
83036
|
entityId: string;
|
83037
|
+
contactId: string | null;
|
81210
83038
|
caseId: number;
|
81211
83039
|
entityName: string;
|
81212
|
-
|
83040
|
+
queueId: string | null;
|
83041
|
+
agentId: string | null;
|
81213
83042
|
startedDate: Date | null;
|
81214
83043
|
handledTime: number | null;
|
81215
|
-
firstResponseTime:
|
81216
|
-
|
83044
|
+
firstResponseTime: number | null;
|
83045
|
+
wrapUpForm: {
|
83046
|
+
id: string;
|
83047
|
+
disposition: string | null;
|
83048
|
+
createdAt: Date;
|
83049
|
+
updatedAt: Date;
|
83050
|
+
deletedAt: Date | null;
|
83051
|
+
tags: {
|
83052
|
+
id: string;
|
83053
|
+
name: string;
|
83054
|
+
createdAt: Date;
|
83055
|
+
updatedAt: Date;
|
83056
|
+
deletedAt: Date | null;
|
83057
|
+
}[];
|
83058
|
+
callFrom: string | null;
|
83059
|
+
callTo: string | null;
|
83060
|
+
note: string | null;
|
83061
|
+
} | null;
|
81217
83062
|
};
|
81218
83063
|
channel?: {
|
81219
83064
|
id?: string | undefined;
|
@@ -81503,13 +83348,31 @@ export declare const chatContract: {
|
|
81503
83348
|
updatedAt: Date;
|
81504
83349
|
deletedAt: Date | null;
|
81505
83350
|
entityId: string;
|
83351
|
+
contactId: string | null;
|
81506
83352
|
caseId: number;
|
81507
83353
|
entityName: string;
|
81508
|
-
|
83354
|
+
queueId: string | null;
|
83355
|
+
agentId: string | null;
|
81509
83356
|
startedDate: Date | null;
|
81510
83357
|
handledTime: number | null;
|
81511
|
-
firstResponseTime:
|
81512
|
-
|
83358
|
+
firstResponseTime: number | null;
|
83359
|
+
wrapUpForm: {
|
83360
|
+
id: string;
|
83361
|
+
disposition: string | null;
|
83362
|
+
createdAt: Date;
|
83363
|
+
updatedAt: Date;
|
83364
|
+
deletedAt: Date | null;
|
83365
|
+
tags: {
|
83366
|
+
id: string;
|
83367
|
+
name: string;
|
83368
|
+
createdAt: Date;
|
83369
|
+
updatedAt: Date;
|
83370
|
+
deletedAt: Date | null;
|
83371
|
+
}[];
|
83372
|
+
callFrom: string | null;
|
83373
|
+
callTo: string | null;
|
83374
|
+
note: string | null;
|
83375
|
+
} | null;
|
81513
83376
|
};
|
81514
83377
|
channel?: {
|
81515
83378
|
id?: string | undefined;
|
@@ -81801,13 +83664,31 @@ export declare const chatContract: {
|
|
81801
83664
|
updatedAt: Date;
|
81802
83665
|
deletedAt: Date | null;
|
81803
83666
|
entityId: string;
|
83667
|
+
contactId: string | null;
|
81804
83668
|
caseId: number;
|
81805
83669
|
entityName: string;
|
81806
|
-
|
83670
|
+
queueId: string | null;
|
83671
|
+
agentId: string | null;
|
81807
83672
|
startedDate: Date | null;
|
81808
83673
|
handledTime: number | null;
|
81809
|
-
firstResponseTime:
|
81810
|
-
|
83674
|
+
firstResponseTime: number | null;
|
83675
|
+
wrapUpForm: {
|
83676
|
+
id: string;
|
83677
|
+
disposition: string | null;
|
83678
|
+
createdAt: Date;
|
83679
|
+
updatedAt: Date;
|
83680
|
+
deletedAt: Date | null;
|
83681
|
+
tags: {
|
83682
|
+
id: string;
|
83683
|
+
name: string;
|
83684
|
+
createdAt: Date;
|
83685
|
+
updatedAt: Date;
|
83686
|
+
deletedAt: Date | null;
|
83687
|
+
}[];
|
83688
|
+
callFrom: string | null;
|
83689
|
+
callTo: string | null;
|
83690
|
+
note: string | null;
|
83691
|
+
} | null;
|
81811
83692
|
};
|
81812
83693
|
channel?: {
|
81813
83694
|
id?: string | undefined;
|
@@ -82100,13 +83981,31 @@ export declare const chatContract: {
|
|
82100
83981
|
updatedAt: Date;
|
82101
83982
|
deletedAt: Date | null;
|
82102
83983
|
entityId: string;
|
83984
|
+
contactId: string | null;
|
82103
83985
|
caseId: number;
|
82104
83986
|
entityName: string;
|
82105
|
-
|
83987
|
+
queueId: string | null;
|
83988
|
+
agentId: string | null;
|
82106
83989
|
startedDate: Date | null;
|
82107
83990
|
handledTime: number | null;
|
82108
|
-
firstResponseTime:
|
82109
|
-
|
83991
|
+
firstResponseTime: number | null;
|
83992
|
+
wrapUpForm: {
|
83993
|
+
id: string;
|
83994
|
+
disposition: string | null;
|
83995
|
+
createdAt: Date;
|
83996
|
+
updatedAt: Date;
|
83997
|
+
deletedAt: Date | null;
|
83998
|
+
tags: {
|
83999
|
+
id: string;
|
84000
|
+
name: string;
|
84001
|
+
createdAt: Date;
|
84002
|
+
updatedAt: Date;
|
84003
|
+
deletedAt: Date | null;
|
84004
|
+
}[];
|
84005
|
+
callFrom: string | null;
|
84006
|
+
callTo: string | null;
|
84007
|
+
note: string | null;
|
84008
|
+
} | null;
|
82110
84009
|
};
|
82111
84010
|
channel?: {
|
82112
84011
|
id?: string | undefined;
|
@@ -83980,14 +85879,76 @@ export declare const chatContract: {
|
|
83980
85879
|
caseId: import("zod").ZodNumber;
|
83981
85880
|
entityId: import("zod").ZodString;
|
83982
85881
|
entityName: import("zod").ZodString;
|
83983
|
-
|
85882
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
83984
85883
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
85884
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
85885
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
83985
85886
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
83986
85887
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
83987
85888
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
83988
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
85889
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
83989
85890
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
83990
|
-
|
85891
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
85892
|
+
id: import("zod").ZodString;
|
85893
|
+
createdAt: import("zod").ZodDate;
|
85894
|
+
updatedAt: import("zod").ZodDate;
|
85895
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
85896
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
85897
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
85898
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
85899
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
85900
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
85901
|
+
id: import("zod").ZodString;
|
85902
|
+
createdAt: import("zod").ZodDate;
|
85903
|
+
updatedAt: import("zod").ZodDate;
|
85904
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
85905
|
+
name: import("zod").ZodString;
|
85906
|
+
}, "strip", import("zod").ZodTypeAny, {
|
85907
|
+
id: string;
|
85908
|
+
name: string;
|
85909
|
+
createdAt: Date;
|
85910
|
+
updatedAt: Date;
|
85911
|
+
deletedAt: Date | null;
|
85912
|
+
}, {
|
85913
|
+
id: string;
|
85914
|
+
name: string;
|
85915
|
+
createdAt: Date;
|
85916
|
+
updatedAt: Date;
|
85917
|
+
deletedAt: Date | null;
|
85918
|
+
}>, "many">;
|
85919
|
+
}, "strip", import("zod").ZodTypeAny, {
|
85920
|
+
id: string;
|
85921
|
+
disposition: string | null;
|
85922
|
+
createdAt: Date;
|
85923
|
+
updatedAt: Date;
|
85924
|
+
deletedAt: Date | null;
|
85925
|
+
tags: {
|
85926
|
+
id: string;
|
85927
|
+
name: string;
|
85928
|
+
createdAt: Date;
|
85929
|
+
updatedAt: Date;
|
85930
|
+
deletedAt: Date | null;
|
85931
|
+
}[];
|
85932
|
+
callFrom: string | null;
|
85933
|
+
callTo: string | null;
|
85934
|
+
note: string | null;
|
85935
|
+
}, {
|
85936
|
+
id: string;
|
85937
|
+
disposition: string | null;
|
85938
|
+
createdAt: Date;
|
85939
|
+
updatedAt: Date;
|
85940
|
+
deletedAt: Date | null;
|
85941
|
+
tags: {
|
85942
|
+
id: string;
|
85943
|
+
name: string;
|
85944
|
+
createdAt: Date;
|
85945
|
+
updatedAt: Date;
|
85946
|
+
deletedAt: Date | null;
|
85947
|
+
}[];
|
85948
|
+
callFrom: string | null;
|
85949
|
+
callTo: string | null;
|
85950
|
+
note: string | null;
|
85951
|
+
}>>;
|
83991
85952
|
}, "strip", import("zod").ZodTypeAny, {
|
83992
85953
|
id: string;
|
83993
85954
|
channel: string | null;
|
@@ -83997,13 +85958,31 @@ export declare const chatContract: {
|
|
83997
85958
|
updatedAt: Date;
|
83998
85959
|
deletedAt: Date | null;
|
83999
85960
|
entityId: string;
|
85961
|
+
contactId: string | null;
|
84000
85962
|
caseId: number;
|
84001
85963
|
entityName: string;
|
84002
|
-
|
85964
|
+
queueId: string | null;
|
85965
|
+
agentId: string | null;
|
84003
85966
|
startedDate: Date | null;
|
84004
85967
|
handledTime: number | null;
|
84005
|
-
firstResponseTime:
|
84006
|
-
|
85968
|
+
firstResponseTime: number | null;
|
85969
|
+
wrapUpForm: {
|
85970
|
+
id: string;
|
85971
|
+
disposition: string | null;
|
85972
|
+
createdAt: Date;
|
85973
|
+
updatedAt: Date;
|
85974
|
+
deletedAt: Date | null;
|
85975
|
+
tags: {
|
85976
|
+
id: string;
|
85977
|
+
name: string;
|
85978
|
+
createdAt: Date;
|
85979
|
+
updatedAt: Date;
|
85980
|
+
deletedAt: Date | null;
|
85981
|
+
}[];
|
85982
|
+
callFrom: string | null;
|
85983
|
+
callTo: string | null;
|
85984
|
+
note: string | null;
|
85985
|
+
} | null;
|
84007
85986
|
}, {
|
84008
85987
|
id: string;
|
84009
85988
|
channel: string | null;
|
@@ -84013,13 +85992,31 @@ export declare const chatContract: {
|
|
84013
85992
|
updatedAt: Date;
|
84014
85993
|
deletedAt: Date | null;
|
84015
85994
|
entityId: string;
|
85995
|
+
contactId: string | null;
|
84016
85996
|
caseId: number;
|
84017
85997
|
entityName: string;
|
84018
|
-
|
85998
|
+
queueId: string | null;
|
85999
|
+
agentId: string | null;
|
84019
86000
|
startedDate: Date | null;
|
84020
86001
|
handledTime: number | null;
|
84021
|
-
firstResponseTime:
|
84022
|
-
|
86002
|
+
firstResponseTime: number | null;
|
86003
|
+
wrapUpForm: {
|
86004
|
+
id: string;
|
86005
|
+
disposition: string | null;
|
86006
|
+
createdAt: Date;
|
86007
|
+
updatedAt: Date;
|
86008
|
+
deletedAt: Date | null;
|
86009
|
+
tags: {
|
86010
|
+
id: string;
|
86011
|
+
name: string;
|
86012
|
+
createdAt: Date;
|
86013
|
+
updatedAt: Date;
|
86014
|
+
deletedAt: Date | null;
|
86015
|
+
}[];
|
86016
|
+
callFrom: string | null;
|
86017
|
+
callTo: string | null;
|
86018
|
+
note: string | null;
|
86019
|
+
} | null;
|
84023
86020
|
}>;
|
84024
86021
|
contact: import("zod").ZodObject<{
|
84025
86022
|
id: import("zod").ZodString;
|
@@ -85089,13 +87086,31 @@ export declare const chatContract: {
|
|
85089
87086
|
updatedAt: Date;
|
85090
87087
|
deletedAt: Date | null;
|
85091
87088
|
entityId: string;
|
87089
|
+
contactId: string | null;
|
85092
87090
|
caseId: number;
|
85093
87091
|
entityName: string;
|
85094
|
-
|
87092
|
+
queueId: string | null;
|
87093
|
+
agentId: string | null;
|
85095
87094
|
startedDate: Date | null;
|
85096
87095
|
handledTime: number | null;
|
85097
|
-
firstResponseTime:
|
85098
|
-
|
87096
|
+
firstResponseTime: number | null;
|
87097
|
+
wrapUpForm: {
|
87098
|
+
id: string;
|
87099
|
+
disposition: string | null;
|
87100
|
+
createdAt: Date;
|
87101
|
+
updatedAt: Date;
|
87102
|
+
deletedAt: Date | null;
|
87103
|
+
tags: {
|
87104
|
+
id: string;
|
87105
|
+
name: string;
|
87106
|
+
createdAt: Date;
|
87107
|
+
updatedAt: Date;
|
87108
|
+
deletedAt: Date | null;
|
87109
|
+
}[];
|
87110
|
+
callFrom: string | null;
|
87111
|
+
callTo: string | null;
|
87112
|
+
note: string | null;
|
87113
|
+
} | null;
|
85099
87114
|
};
|
85100
87115
|
openMessage: string;
|
85101
87116
|
channel?: {
|
@@ -85488,13 +87503,31 @@ export declare const chatContract: {
|
|
85488
87503
|
updatedAt: Date;
|
85489
87504
|
deletedAt: Date | null;
|
85490
87505
|
entityId: string;
|
87506
|
+
contactId: string | null;
|
85491
87507
|
caseId: number;
|
85492
87508
|
entityName: string;
|
85493
|
-
|
87509
|
+
queueId: string | null;
|
87510
|
+
agentId: string | null;
|
85494
87511
|
startedDate: Date | null;
|
85495
87512
|
handledTime: number | null;
|
85496
|
-
firstResponseTime:
|
85497
|
-
|
87513
|
+
firstResponseTime: number | null;
|
87514
|
+
wrapUpForm: {
|
87515
|
+
id: string;
|
87516
|
+
disposition: string | null;
|
87517
|
+
createdAt: Date;
|
87518
|
+
updatedAt: Date;
|
87519
|
+
deletedAt: Date | null;
|
87520
|
+
tags: {
|
87521
|
+
id: string;
|
87522
|
+
name: string;
|
87523
|
+
createdAt: Date;
|
87524
|
+
updatedAt: Date;
|
87525
|
+
deletedAt: Date | null;
|
87526
|
+
}[];
|
87527
|
+
callFrom: string | null;
|
87528
|
+
callTo: string | null;
|
87529
|
+
note: string | null;
|
87530
|
+
} | null;
|
85498
87531
|
};
|
85499
87532
|
openMessage: string;
|
85500
87533
|
channel?: {
|
@@ -85889,13 +87922,31 @@ export declare const chatContract: {
|
|
85889
87922
|
updatedAt: Date;
|
85890
87923
|
deletedAt: Date | null;
|
85891
87924
|
entityId: string;
|
87925
|
+
contactId: string | null;
|
85892
87926
|
caseId: number;
|
85893
87927
|
entityName: string;
|
85894
|
-
|
87928
|
+
queueId: string | null;
|
87929
|
+
agentId: string | null;
|
85895
87930
|
startedDate: Date | null;
|
85896
87931
|
handledTime: number | null;
|
85897
|
-
firstResponseTime:
|
85898
|
-
|
87932
|
+
firstResponseTime: number | null;
|
87933
|
+
wrapUpForm: {
|
87934
|
+
id: string;
|
87935
|
+
disposition: string | null;
|
87936
|
+
createdAt: Date;
|
87937
|
+
updatedAt: Date;
|
87938
|
+
deletedAt: Date | null;
|
87939
|
+
tags: {
|
87940
|
+
id: string;
|
87941
|
+
name: string;
|
87942
|
+
createdAt: Date;
|
87943
|
+
updatedAt: Date;
|
87944
|
+
deletedAt: Date | null;
|
87945
|
+
}[];
|
87946
|
+
callFrom: string | null;
|
87947
|
+
callTo: string | null;
|
87948
|
+
note: string | null;
|
87949
|
+
} | null;
|
85899
87950
|
};
|
85900
87951
|
openMessage: string;
|
85901
87952
|
channel?: {
|
@@ -86291,13 +88342,31 @@ export declare const chatContract: {
|
|
86291
88342
|
updatedAt: Date;
|
86292
88343
|
deletedAt: Date | null;
|
86293
88344
|
entityId: string;
|
88345
|
+
contactId: string | null;
|
86294
88346
|
caseId: number;
|
86295
88347
|
entityName: string;
|
86296
|
-
|
88348
|
+
queueId: string | null;
|
88349
|
+
agentId: string | null;
|
86297
88350
|
startedDate: Date | null;
|
86298
88351
|
handledTime: number | null;
|
86299
|
-
firstResponseTime:
|
86300
|
-
|
88352
|
+
firstResponseTime: number | null;
|
88353
|
+
wrapUpForm: {
|
88354
|
+
id: string;
|
88355
|
+
disposition: string | null;
|
88356
|
+
createdAt: Date;
|
88357
|
+
updatedAt: Date;
|
88358
|
+
deletedAt: Date | null;
|
88359
|
+
tags: {
|
88360
|
+
id: string;
|
88361
|
+
name: string;
|
88362
|
+
createdAt: Date;
|
88363
|
+
updatedAt: Date;
|
88364
|
+
deletedAt: Date | null;
|
88365
|
+
}[];
|
88366
|
+
callFrom: string | null;
|
88367
|
+
callTo: string | null;
|
88368
|
+
note: string | null;
|
88369
|
+
} | null;
|
86301
88370
|
};
|
86302
88371
|
openMessage: string;
|
86303
88372
|
channel?: {
|
@@ -88162,14 +90231,76 @@ export declare const chatContract: {
|
|
88162
90231
|
caseId: import("zod").ZodNumber;
|
88163
90232
|
entityId: import("zod").ZodString;
|
88164
90233
|
entityName: import("zod").ZodString;
|
88165
|
-
|
90234
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
88166
90235
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
90236
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
90237
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
88167
90238
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
88168
90239
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
88169
90240
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
88170
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
90241
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
88171
90242
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
88172
|
-
|
90243
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
90244
|
+
id: import("zod").ZodString;
|
90245
|
+
createdAt: import("zod").ZodDate;
|
90246
|
+
updatedAt: import("zod").ZodDate;
|
90247
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
90248
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
90249
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
90250
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
90251
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
90252
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
90253
|
+
id: import("zod").ZodString;
|
90254
|
+
createdAt: import("zod").ZodDate;
|
90255
|
+
updatedAt: import("zod").ZodDate;
|
90256
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
90257
|
+
name: import("zod").ZodString;
|
90258
|
+
}, "strip", import("zod").ZodTypeAny, {
|
90259
|
+
id: string;
|
90260
|
+
name: string;
|
90261
|
+
createdAt: Date;
|
90262
|
+
updatedAt: Date;
|
90263
|
+
deletedAt: Date | null;
|
90264
|
+
}, {
|
90265
|
+
id: string;
|
90266
|
+
name: string;
|
90267
|
+
createdAt: Date;
|
90268
|
+
updatedAt: Date;
|
90269
|
+
deletedAt: Date | null;
|
90270
|
+
}>, "many">;
|
90271
|
+
}, "strip", import("zod").ZodTypeAny, {
|
90272
|
+
id: string;
|
90273
|
+
disposition: string | null;
|
90274
|
+
createdAt: Date;
|
90275
|
+
updatedAt: Date;
|
90276
|
+
deletedAt: Date | null;
|
90277
|
+
tags: {
|
90278
|
+
id: string;
|
90279
|
+
name: string;
|
90280
|
+
createdAt: Date;
|
90281
|
+
updatedAt: Date;
|
90282
|
+
deletedAt: Date | null;
|
90283
|
+
}[];
|
90284
|
+
callFrom: string | null;
|
90285
|
+
callTo: string | null;
|
90286
|
+
note: string | null;
|
90287
|
+
}, {
|
90288
|
+
id: string;
|
90289
|
+
disposition: string | null;
|
90290
|
+
createdAt: Date;
|
90291
|
+
updatedAt: Date;
|
90292
|
+
deletedAt: Date | null;
|
90293
|
+
tags: {
|
90294
|
+
id: string;
|
90295
|
+
name: string;
|
90296
|
+
createdAt: Date;
|
90297
|
+
updatedAt: Date;
|
90298
|
+
deletedAt: Date | null;
|
90299
|
+
}[];
|
90300
|
+
callFrom: string | null;
|
90301
|
+
callTo: string | null;
|
90302
|
+
note: string | null;
|
90303
|
+
}>>;
|
88173
90304
|
}, "strip", import("zod").ZodTypeAny, {
|
88174
90305
|
id: string;
|
88175
90306
|
channel: string | null;
|
@@ -88179,13 +90310,31 @@ export declare const chatContract: {
|
|
88179
90310
|
updatedAt: Date;
|
88180
90311
|
deletedAt: Date | null;
|
88181
90312
|
entityId: string;
|
90313
|
+
contactId: string | null;
|
88182
90314
|
caseId: number;
|
88183
90315
|
entityName: string;
|
88184
|
-
|
90316
|
+
queueId: string | null;
|
90317
|
+
agentId: string | null;
|
88185
90318
|
startedDate: Date | null;
|
88186
90319
|
handledTime: number | null;
|
88187
|
-
firstResponseTime:
|
88188
|
-
|
90320
|
+
firstResponseTime: number | null;
|
90321
|
+
wrapUpForm: {
|
90322
|
+
id: string;
|
90323
|
+
disposition: string | null;
|
90324
|
+
createdAt: Date;
|
90325
|
+
updatedAt: Date;
|
90326
|
+
deletedAt: Date | null;
|
90327
|
+
tags: {
|
90328
|
+
id: string;
|
90329
|
+
name: string;
|
90330
|
+
createdAt: Date;
|
90331
|
+
updatedAt: Date;
|
90332
|
+
deletedAt: Date | null;
|
90333
|
+
}[];
|
90334
|
+
callFrom: string | null;
|
90335
|
+
callTo: string | null;
|
90336
|
+
note: string | null;
|
90337
|
+
} | null;
|
88189
90338
|
}, {
|
88190
90339
|
id: string;
|
88191
90340
|
channel: string | null;
|
@@ -88195,13 +90344,31 @@ export declare const chatContract: {
|
|
88195
90344
|
updatedAt: Date;
|
88196
90345
|
deletedAt: Date | null;
|
88197
90346
|
entityId: string;
|
90347
|
+
contactId: string | null;
|
88198
90348
|
caseId: number;
|
88199
90349
|
entityName: string;
|
88200
|
-
|
90350
|
+
queueId: string | null;
|
90351
|
+
agentId: string | null;
|
88201
90352
|
startedDate: Date | null;
|
88202
90353
|
handledTime: number | null;
|
88203
|
-
firstResponseTime:
|
88204
|
-
|
90354
|
+
firstResponseTime: number | null;
|
90355
|
+
wrapUpForm: {
|
90356
|
+
id: string;
|
90357
|
+
disposition: string | null;
|
90358
|
+
createdAt: Date;
|
90359
|
+
updatedAt: Date;
|
90360
|
+
deletedAt: Date | null;
|
90361
|
+
tags: {
|
90362
|
+
id: string;
|
90363
|
+
name: string;
|
90364
|
+
createdAt: Date;
|
90365
|
+
updatedAt: Date;
|
90366
|
+
deletedAt: Date | null;
|
90367
|
+
}[];
|
90368
|
+
callFrom: string | null;
|
90369
|
+
callTo: string | null;
|
90370
|
+
note: string | null;
|
90371
|
+
} | null;
|
88205
90372
|
}>;
|
88206
90373
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
88207
90374
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -88430,13 +90597,31 @@ export declare const chatContract: {
|
|
88430
90597
|
updatedAt: Date;
|
88431
90598
|
deletedAt: Date | null;
|
88432
90599
|
entityId: string;
|
90600
|
+
contactId: string | null;
|
88433
90601
|
caseId: number;
|
88434
90602
|
entityName: string;
|
88435
|
-
|
90603
|
+
queueId: string | null;
|
90604
|
+
agentId: string | null;
|
88436
90605
|
startedDate: Date | null;
|
88437
90606
|
handledTime: number | null;
|
88438
|
-
firstResponseTime:
|
88439
|
-
|
90607
|
+
firstResponseTime: number | null;
|
90608
|
+
wrapUpForm: {
|
90609
|
+
id: string;
|
90610
|
+
disposition: string | null;
|
90611
|
+
createdAt: Date;
|
90612
|
+
updatedAt: Date;
|
90613
|
+
deletedAt: Date | null;
|
90614
|
+
tags: {
|
90615
|
+
id: string;
|
90616
|
+
name: string;
|
90617
|
+
createdAt: Date;
|
90618
|
+
updatedAt: Date;
|
90619
|
+
deletedAt: Date | null;
|
90620
|
+
}[];
|
90621
|
+
callFrom: string | null;
|
90622
|
+
callTo: string | null;
|
90623
|
+
note: string | null;
|
90624
|
+
} | null;
|
88440
90625
|
};
|
88441
90626
|
channel?: {
|
88442
90627
|
id?: string | undefined;
|
@@ -88727,13 +90912,31 @@ export declare const chatContract: {
|
|
88727
90912
|
updatedAt: Date;
|
88728
90913
|
deletedAt: Date | null;
|
88729
90914
|
entityId: string;
|
90915
|
+
contactId: string | null;
|
88730
90916
|
caseId: number;
|
88731
90917
|
entityName: string;
|
88732
|
-
|
90918
|
+
queueId: string | null;
|
90919
|
+
agentId: string | null;
|
88733
90920
|
startedDate: Date | null;
|
88734
90921
|
handledTime: number | null;
|
88735
|
-
firstResponseTime:
|
88736
|
-
|
90922
|
+
firstResponseTime: number | null;
|
90923
|
+
wrapUpForm: {
|
90924
|
+
id: string;
|
90925
|
+
disposition: string | null;
|
90926
|
+
createdAt: Date;
|
90927
|
+
updatedAt: Date;
|
90928
|
+
deletedAt: Date | null;
|
90929
|
+
tags: {
|
90930
|
+
id: string;
|
90931
|
+
name: string;
|
90932
|
+
createdAt: Date;
|
90933
|
+
updatedAt: Date;
|
90934
|
+
deletedAt: Date | null;
|
90935
|
+
}[];
|
90936
|
+
callFrom: string | null;
|
90937
|
+
callTo: string | null;
|
90938
|
+
note: string | null;
|
90939
|
+
} | null;
|
88737
90940
|
};
|
88738
90941
|
channel?: {
|
88739
90942
|
id?: string | undefined;
|
@@ -89026,13 +91229,31 @@ export declare const chatContract: {
|
|
89026
91229
|
updatedAt: Date;
|
89027
91230
|
deletedAt: Date | null;
|
89028
91231
|
entityId: string;
|
91232
|
+
contactId: string | null;
|
89029
91233
|
caseId: number;
|
89030
91234
|
entityName: string;
|
89031
|
-
|
91235
|
+
queueId: string | null;
|
91236
|
+
agentId: string | null;
|
89032
91237
|
startedDate: Date | null;
|
89033
91238
|
handledTime: number | null;
|
89034
|
-
firstResponseTime:
|
89035
|
-
|
91239
|
+
firstResponseTime: number | null;
|
91240
|
+
wrapUpForm: {
|
91241
|
+
id: string;
|
91242
|
+
disposition: string | null;
|
91243
|
+
createdAt: Date;
|
91244
|
+
updatedAt: Date;
|
91245
|
+
deletedAt: Date | null;
|
91246
|
+
tags: {
|
91247
|
+
id: string;
|
91248
|
+
name: string;
|
91249
|
+
createdAt: Date;
|
91250
|
+
updatedAt: Date;
|
91251
|
+
deletedAt: Date | null;
|
91252
|
+
}[];
|
91253
|
+
callFrom: string | null;
|
91254
|
+
callTo: string | null;
|
91255
|
+
note: string | null;
|
91256
|
+
} | null;
|
89036
91257
|
};
|
89037
91258
|
channel?: {
|
89038
91259
|
id?: string | undefined;
|
@@ -89326,13 +91547,31 @@ export declare const chatContract: {
|
|
89326
91547
|
updatedAt: Date;
|
89327
91548
|
deletedAt: Date | null;
|
89328
91549
|
entityId: string;
|
91550
|
+
contactId: string | null;
|
89329
91551
|
caseId: number;
|
89330
91552
|
entityName: string;
|
89331
|
-
|
91553
|
+
queueId: string | null;
|
91554
|
+
agentId: string | null;
|
89332
91555
|
startedDate: Date | null;
|
89333
91556
|
handledTime: number | null;
|
89334
|
-
firstResponseTime:
|
89335
|
-
|
91557
|
+
firstResponseTime: number | null;
|
91558
|
+
wrapUpForm: {
|
91559
|
+
id: string;
|
91560
|
+
disposition: string | null;
|
91561
|
+
createdAt: Date;
|
91562
|
+
updatedAt: Date;
|
91563
|
+
deletedAt: Date | null;
|
91564
|
+
tags: {
|
91565
|
+
id: string;
|
91566
|
+
name: string;
|
91567
|
+
createdAt: Date;
|
91568
|
+
updatedAt: Date;
|
91569
|
+
deletedAt: Date | null;
|
91570
|
+
}[];
|
91571
|
+
callFrom: string | null;
|
91572
|
+
callTo: string | null;
|
91573
|
+
note: string | null;
|
91574
|
+
} | null;
|
89336
91575
|
};
|
89337
91576
|
channel?: {
|
89338
91577
|
id?: string | undefined;
|
@@ -91204,14 +93443,76 @@ export declare const chatContract: {
|
|
91204
93443
|
caseId: import("zod").ZodNumber;
|
91205
93444
|
entityId: import("zod").ZodString;
|
91206
93445
|
entityName: import("zod").ZodString;
|
91207
|
-
|
93446
|
+
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
91208
93447
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
93448
|
+
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
93449
|
+
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
91209
93450
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
91210
93451
|
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
91211
93452
|
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
91212
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").
|
93453
|
+
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
91213
93454
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
91214
|
-
|
93455
|
+
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
93456
|
+
id: import("zod").ZodString;
|
93457
|
+
createdAt: import("zod").ZodDate;
|
93458
|
+
updatedAt: import("zod").ZodDate;
|
93459
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
93460
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
93461
|
+
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
93462
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
93463
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
93464
|
+
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
93465
|
+
id: import("zod").ZodString;
|
93466
|
+
createdAt: import("zod").ZodDate;
|
93467
|
+
updatedAt: import("zod").ZodDate;
|
93468
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
93469
|
+
name: import("zod").ZodString;
|
93470
|
+
}, "strip", import("zod").ZodTypeAny, {
|
93471
|
+
id: string;
|
93472
|
+
name: string;
|
93473
|
+
createdAt: Date;
|
93474
|
+
updatedAt: Date;
|
93475
|
+
deletedAt: Date | null;
|
93476
|
+
}, {
|
93477
|
+
id: string;
|
93478
|
+
name: string;
|
93479
|
+
createdAt: Date;
|
93480
|
+
updatedAt: Date;
|
93481
|
+
deletedAt: Date | null;
|
93482
|
+
}>, "many">;
|
93483
|
+
}, "strip", import("zod").ZodTypeAny, {
|
93484
|
+
id: string;
|
93485
|
+
disposition: string | null;
|
93486
|
+
createdAt: Date;
|
93487
|
+
updatedAt: Date;
|
93488
|
+
deletedAt: Date | null;
|
93489
|
+
tags: {
|
93490
|
+
id: string;
|
93491
|
+
name: string;
|
93492
|
+
createdAt: Date;
|
93493
|
+
updatedAt: Date;
|
93494
|
+
deletedAt: Date | null;
|
93495
|
+
}[];
|
93496
|
+
callFrom: string | null;
|
93497
|
+
callTo: string | null;
|
93498
|
+
note: string | null;
|
93499
|
+
}, {
|
93500
|
+
id: string;
|
93501
|
+
disposition: string | null;
|
93502
|
+
createdAt: Date;
|
93503
|
+
updatedAt: Date;
|
93504
|
+
deletedAt: Date | null;
|
93505
|
+
tags: {
|
93506
|
+
id: string;
|
93507
|
+
name: string;
|
93508
|
+
createdAt: Date;
|
93509
|
+
updatedAt: Date;
|
93510
|
+
deletedAt: Date | null;
|
93511
|
+
}[];
|
93512
|
+
callFrom: string | null;
|
93513
|
+
callTo: string | null;
|
93514
|
+
note: string | null;
|
93515
|
+
}>>;
|
91215
93516
|
}, "strip", import("zod").ZodTypeAny, {
|
91216
93517
|
id: string;
|
91217
93518
|
channel: string | null;
|
@@ -91221,13 +93522,31 @@ export declare const chatContract: {
|
|
91221
93522
|
updatedAt: Date;
|
91222
93523
|
deletedAt: Date | null;
|
91223
93524
|
entityId: string;
|
93525
|
+
contactId: string | null;
|
91224
93526
|
caseId: number;
|
91225
93527
|
entityName: string;
|
91226
|
-
|
93528
|
+
queueId: string | null;
|
93529
|
+
agentId: string | null;
|
91227
93530
|
startedDate: Date | null;
|
91228
93531
|
handledTime: number | null;
|
91229
|
-
firstResponseTime:
|
91230
|
-
|
93532
|
+
firstResponseTime: number | null;
|
93533
|
+
wrapUpForm: {
|
93534
|
+
id: string;
|
93535
|
+
disposition: string | null;
|
93536
|
+
createdAt: Date;
|
93537
|
+
updatedAt: Date;
|
93538
|
+
deletedAt: Date | null;
|
93539
|
+
tags: {
|
93540
|
+
id: string;
|
93541
|
+
name: string;
|
93542
|
+
createdAt: Date;
|
93543
|
+
updatedAt: Date;
|
93544
|
+
deletedAt: Date | null;
|
93545
|
+
}[];
|
93546
|
+
callFrom: string | null;
|
93547
|
+
callTo: string | null;
|
93548
|
+
note: string | null;
|
93549
|
+
} | null;
|
91231
93550
|
}, {
|
91232
93551
|
id: string;
|
91233
93552
|
channel: string | null;
|
@@ -91237,13 +93556,31 @@ export declare const chatContract: {
|
|
91237
93556
|
updatedAt: Date;
|
91238
93557
|
deletedAt: Date | null;
|
91239
93558
|
entityId: string;
|
93559
|
+
contactId: string | null;
|
91240
93560
|
caseId: number;
|
91241
93561
|
entityName: string;
|
91242
|
-
|
93562
|
+
queueId: string | null;
|
93563
|
+
agentId: string | null;
|
91243
93564
|
startedDate: Date | null;
|
91244
93565
|
handledTime: number | null;
|
91245
|
-
firstResponseTime:
|
91246
|
-
|
93566
|
+
firstResponseTime: number | null;
|
93567
|
+
wrapUpForm: {
|
93568
|
+
id: string;
|
93569
|
+
disposition: string | null;
|
93570
|
+
createdAt: Date;
|
93571
|
+
updatedAt: Date;
|
93572
|
+
deletedAt: Date | null;
|
93573
|
+
tags: {
|
93574
|
+
id: string;
|
93575
|
+
name: string;
|
93576
|
+
createdAt: Date;
|
93577
|
+
updatedAt: Date;
|
93578
|
+
deletedAt: Date | null;
|
93579
|
+
}[];
|
93580
|
+
callFrom: string | null;
|
93581
|
+
callTo: string | null;
|
93582
|
+
note: string | null;
|
93583
|
+
} | null;
|
91247
93584
|
}>;
|
91248
93585
|
}, "strip", import("zod").ZodTypeAny, {
|
91249
93586
|
id: string;
|
@@ -91470,13 +93807,31 @@ export declare const chatContract: {
|
|
91470
93807
|
updatedAt: Date;
|
91471
93808
|
deletedAt: Date | null;
|
91472
93809
|
entityId: string;
|
93810
|
+
contactId: string | null;
|
91473
93811
|
caseId: number;
|
91474
93812
|
entityName: string;
|
91475
|
-
|
93813
|
+
queueId: string | null;
|
93814
|
+
agentId: string | null;
|
91476
93815
|
startedDate: Date | null;
|
91477
93816
|
handledTime: number | null;
|
91478
|
-
firstResponseTime:
|
91479
|
-
|
93817
|
+
firstResponseTime: number | null;
|
93818
|
+
wrapUpForm: {
|
93819
|
+
id: string;
|
93820
|
+
disposition: string | null;
|
93821
|
+
createdAt: Date;
|
93822
|
+
updatedAt: Date;
|
93823
|
+
deletedAt: Date | null;
|
93824
|
+
tags: {
|
93825
|
+
id: string;
|
93826
|
+
name: string;
|
93827
|
+
createdAt: Date;
|
93828
|
+
updatedAt: Date;
|
93829
|
+
deletedAt: Date | null;
|
93830
|
+
}[];
|
93831
|
+
callFrom: string | null;
|
93832
|
+
callTo: string | null;
|
93833
|
+
note: string | null;
|
93834
|
+
} | null;
|
91480
93835
|
};
|
91481
93836
|
channel?: {
|
91482
93837
|
id?: string | undefined;
|
@@ -91766,13 +94121,31 @@ export declare const chatContract: {
|
|
91766
94121
|
updatedAt: Date;
|
91767
94122
|
deletedAt: Date | null;
|
91768
94123
|
entityId: string;
|
94124
|
+
contactId: string | null;
|
91769
94125
|
caseId: number;
|
91770
94126
|
entityName: string;
|
91771
|
-
|
94127
|
+
queueId: string | null;
|
94128
|
+
agentId: string | null;
|
91772
94129
|
startedDate: Date | null;
|
91773
94130
|
handledTime: number | null;
|
91774
|
-
firstResponseTime:
|
91775
|
-
|
94131
|
+
firstResponseTime: number | null;
|
94132
|
+
wrapUpForm: {
|
94133
|
+
id: string;
|
94134
|
+
disposition: string | null;
|
94135
|
+
createdAt: Date;
|
94136
|
+
updatedAt: Date;
|
94137
|
+
deletedAt: Date | null;
|
94138
|
+
tags: {
|
94139
|
+
id: string;
|
94140
|
+
name: string;
|
94141
|
+
createdAt: Date;
|
94142
|
+
updatedAt: Date;
|
94143
|
+
deletedAt: Date | null;
|
94144
|
+
}[];
|
94145
|
+
callFrom: string | null;
|
94146
|
+
callTo: string | null;
|
94147
|
+
note: string | null;
|
94148
|
+
} | null;
|
91776
94149
|
};
|
91777
94150
|
channel?: {
|
91778
94151
|
id?: string | undefined;
|
@@ -92064,13 +94437,31 @@ export declare const chatContract: {
|
|
92064
94437
|
updatedAt: Date;
|
92065
94438
|
deletedAt: Date | null;
|
92066
94439
|
entityId: string;
|
94440
|
+
contactId: string | null;
|
92067
94441
|
caseId: number;
|
92068
94442
|
entityName: string;
|
92069
|
-
|
94443
|
+
queueId: string | null;
|
94444
|
+
agentId: string | null;
|
92070
94445
|
startedDate: Date | null;
|
92071
94446
|
handledTime: number | null;
|
92072
|
-
firstResponseTime:
|
92073
|
-
|
94447
|
+
firstResponseTime: number | null;
|
94448
|
+
wrapUpForm: {
|
94449
|
+
id: string;
|
94450
|
+
disposition: string | null;
|
94451
|
+
createdAt: Date;
|
94452
|
+
updatedAt: Date;
|
94453
|
+
deletedAt: Date | null;
|
94454
|
+
tags: {
|
94455
|
+
id: string;
|
94456
|
+
name: string;
|
94457
|
+
createdAt: Date;
|
94458
|
+
updatedAt: Date;
|
94459
|
+
deletedAt: Date | null;
|
94460
|
+
}[];
|
94461
|
+
callFrom: string | null;
|
94462
|
+
callTo: string | null;
|
94463
|
+
note: string | null;
|
94464
|
+
} | null;
|
92074
94465
|
};
|
92075
94466
|
channel?: {
|
92076
94467
|
id?: string | undefined;
|
@@ -92366,13 +94757,31 @@ export declare const chatContract: {
|
|
92366
94757
|
updatedAt: Date;
|
92367
94758
|
deletedAt: Date | null;
|
92368
94759
|
entityId: string;
|
94760
|
+
contactId: string | null;
|
92369
94761
|
caseId: number;
|
92370
94762
|
entityName: string;
|
92371
|
-
|
94763
|
+
queueId: string | null;
|
94764
|
+
agentId: string | null;
|
92372
94765
|
startedDate: Date | null;
|
92373
94766
|
handledTime: number | null;
|
92374
|
-
firstResponseTime:
|
92375
|
-
|
94767
|
+
firstResponseTime: number | null;
|
94768
|
+
wrapUpForm: {
|
94769
|
+
id: string;
|
94770
|
+
disposition: string | null;
|
94771
|
+
createdAt: Date;
|
94772
|
+
updatedAt: Date;
|
94773
|
+
deletedAt: Date | null;
|
94774
|
+
tags: {
|
94775
|
+
id: string;
|
94776
|
+
name: string;
|
94777
|
+
createdAt: Date;
|
94778
|
+
updatedAt: Date;
|
94779
|
+
deletedAt: Date | null;
|
94780
|
+
}[];
|
94781
|
+
callFrom: string | null;
|
94782
|
+
callTo: string | null;
|
94783
|
+
note: string | null;
|
94784
|
+
} | null;
|
92376
94785
|
};
|
92377
94786
|
channel?: {
|
92378
94787
|
id?: string | undefined;
|