@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
@@ -2802,14 +2802,76 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2802
2802
|
caseId: z.ZodNumber;
|
2803
2803
|
entityId: z.ZodString;
|
2804
2804
|
entityName: z.ZodString;
|
2805
|
-
|
2805
|
+
contactId: z.ZodNullable<z.ZodString>;
|
2806
2806
|
channel: z.ZodNullable<z.ZodString>;
|
2807
|
+
queueId: z.ZodNullable<z.ZodString>;
|
2808
|
+
agentId: z.ZodNullable<z.ZodString>;
|
2807
2809
|
direction: z.ZodNullable<z.ZodString>;
|
2808
2810
|
startedDate: z.ZodNullable<z.ZodDate>;
|
2809
2811
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
2810
|
-
firstResponseTime: z.ZodNullable<z.
|
2812
|
+
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
2811
2813
|
disposition: z.ZodNullable<z.ZodString>;
|
2812
|
-
|
2814
|
+
wrapUpForm: z.ZodNullable<z.ZodObject<{
|
2815
|
+
id: z.ZodString;
|
2816
|
+
createdAt: z.ZodDate;
|
2817
|
+
updatedAt: z.ZodDate;
|
2818
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2819
|
+
note: z.ZodNullable<z.ZodString>;
|
2820
|
+
disposition: z.ZodNullable<z.ZodString>;
|
2821
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
2822
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2823
|
+
tags: z.ZodArray<z.ZodObject<{
|
2824
|
+
id: z.ZodString;
|
2825
|
+
createdAt: z.ZodDate;
|
2826
|
+
updatedAt: z.ZodDate;
|
2827
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2828
|
+
name: z.ZodString;
|
2829
|
+
}, "strip", z.ZodTypeAny, {
|
2830
|
+
id: string;
|
2831
|
+
name: string;
|
2832
|
+
createdAt: Date;
|
2833
|
+
updatedAt: Date;
|
2834
|
+
deletedAt: Date | null;
|
2835
|
+
}, {
|
2836
|
+
id: string;
|
2837
|
+
name: string;
|
2838
|
+
createdAt: Date;
|
2839
|
+
updatedAt: Date;
|
2840
|
+
deletedAt: Date | null;
|
2841
|
+
}>, "many">;
|
2842
|
+
}, "strip", z.ZodTypeAny, {
|
2843
|
+
id: string;
|
2844
|
+
disposition: string | null;
|
2845
|
+
createdAt: Date;
|
2846
|
+
updatedAt: Date;
|
2847
|
+
deletedAt: Date | null;
|
2848
|
+
tags: {
|
2849
|
+
id: string;
|
2850
|
+
name: string;
|
2851
|
+
createdAt: Date;
|
2852
|
+
updatedAt: Date;
|
2853
|
+
deletedAt: Date | null;
|
2854
|
+
}[];
|
2855
|
+
callFrom: string | null;
|
2856
|
+
callTo: string | null;
|
2857
|
+
note: string | null;
|
2858
|
+
}, {
|
2859
|
+
id: string;
|
2860
|
+
disposition: string | null;
|
2861
|
+
createdAt: Date;
|
2862
|
+
updatedAt: Date;
|
2863
|
+
deletedAt: Date | null;
|
2864
|
+
tags: {
|
2865
|
+
id: string;
|
2866
|
+
name: string;
|
2867
|
+
createdAt: Date;
|
2868
|
+
updatedAt: Date;
|
2869
|
+
deletedAt: Date | null;
|
2870
|
+
}[];
|
2871
|
+
callFrom: string | null;
|
2872
|
+
callTo: string | null;
|
2873
|
+
note: string | null;
|
2874
|
+
}>>;
|
2813
2875
|
}, "strip", z.ZodTypeAny, {
|
2814
2876
|
id: string;
|
2815
2877
|
channel: string | null;
|
@@ -2819,13 +2881,31 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2819
2881
|
updatedAt: Date;
|
2820
2882
|
deletedAt: Date | null;
|
2821
2883
|
entityId: string;
|
2884
|
+
contactId: string | null;
|
2822
2885
|
caseId: number;
|
2823
2886
|
entityName: string;
|
2824
|
-
|
2887
|
+
queueId: string | null;
|
2888
|
+
agentId: string | null;
|
2825
2889
|
startedDate: Date | null;
|
2826
2890
|
handledTime: number | null;
|
2827
|
-
firstResponseTime:
|
2828
|
-
|
2891
|
+
firstResponseTime: number | null;
|
2892
|
+
wrapUpForm: {
|
2893
|
+
id: string;
|
2894
|
+
disposition: string | null;
|
2895
|
+
createdAt: Date;
|
2896
|
+
updatedAt: Date;
|
2897
|
+
deletedAt: Date | null;
|
2898
|
+
tags: {
|
2899
|
+
id: string;
|
2900
|
+
name: string;
|
2901
|
+
createdAt: Date;
|
2902
|
+
updatedAt: Date;
|
2903
|
+
deletedAt: Date | null;
|
2904
|
+
}[];
|
2905
|
+
callFrom: string | null;
|
2906
|
+
callTo: string | null;
|
2907
|
+
note: string | null;
|
2908
|
+
} | null;
|
2829
2909
|
}, {
|
2830
2910
|
id: string;
|
2831
2911
|
channel: string | null;
|
@@ -2835,13 +2915,31 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2835
2915
|
updatedAt: Date;
|
2836
2916
|
deletedAt: Date | null;
|
2837
2917
|
entityId: string;
|
2918
|
+
contactId: string | null;
|
2838
2919
|
caseId: number;
|
2839
2920
|
entityName: string;
|
2840
|
-
|
2921
|
+
queueId: string | null;
|
2922
|
+
agentId: string | null;
|
2841
2923
|
startedDate: Date | null;
|
2842
2924
|
handledTime: number | null;
|
2843
|
-
firstResponseTime:
|
2844
|
-
|
2925
|
+
firstResponseTime: number | null;
|
2926
|
+
wrapUpForm: {
|
2927
|
+
id: string;
|
2928
|
+
disposition: string | null;
|
2929
|
+
createdAt: Date;
|
2930
|
+
updatedAt: Date;
|
2931
|
+
deletedAt: Date | null;
|
2932
|
+
tags: {
|
2933
|
+
id: string;
|
2934
|
+
name: string;
|
2935
|
+
createdAt: Date;
|
2936
|
+
updatedAt: Date;
|
2937
|
+
deletedAt: Date | null;
|
2938
|
+
}[];
|
2939
|
+
callFrom: string | null;
|
2940
|
+
callTo: string | null;
|
2941
|
+
note: string | null;
|
2942
|
+
} | null;
|
2845
2943
|
}>;
|
2846
2944
|
}, "strip", z.ZodTypeAny, {
|
2847
2945
|
id: string;
|
@@ -3068,13 +3166,31 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3068
3166
|
updatedAt: Date;
|
3069
3167
|
deletedAt: Date | null;
|
3070
3168
|
entityId: string;
|
3169
|
+
contactId: string | null;
|
3071
3170
|
caseId: number;
|
3072
3171
|
entityName: string;
|
3073
|
-
|
3172
|
+
queueId: string | null;
|
3173
|
+
agentId: string | null;
|
3074
3174
|
startedDate: Date | null;
|
3075
3175
|
handledTime: number | null;
|
3076
|
-
firstResponseTime:
|
3077
|
-
|
3176
|
+
firstResponseTime: number | null;
|
3177
|
+
wrapUpForm: {
|
3178
|
+
id: string;
|
3179
|
+
disposition: string | null;
|
3180
|
+
createdAt: Date;
|
3181
|
+
updatedAt: Date;
|
3182
|
+
deletedAt: Date | null;
|
3183
|
+
tags: {
|
3184
|
+
id: string;
|
3185
|
+
name: string;
|
3186
|
+
createdAt: Date;
|
3187
|
+
updatedAt: Date;
|
3188
|
+
deletedAt: Date | null;
|
3189
|
+
}[];
|
3190
|
+
callFrom: string | null;
|
3191
|
+
callTo: string | null;
|
3192
|
+
note: string | null;
|
3193
|
+
} | null;
|
3078
3194
|
};
|
3079
3195
|
channel?: {
|
3080
3196
|
id?: string | undefined;
|
@@ -3364,13 +3480,31 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3364
3480
|
updatedAt: Date;
|
3365
3481
|
deletedAt: Date | null;
|
3366
3482
|
entityId: string;
|
3483
|
+
contactId: string | null;
|
3367
3484
|
caseId: number;
|
3368
3485
|
entityName: string;
|
3369
|
-
|
3486
|
+
queueId: string | null;
|
3487
|
+
agentId: string | null;
|
3370
3488
|
startedDate: Date | null;
|
3371
3489
|
handledTime: number | null;
|
3372
|
-
firstResponseTime:
|
3373
|
-
|
3490
|
+
firstResponseTime: number | null;
|
3491
|
+
wrapUpForm: {
|
3492
|
+
id: string;
|
3493
|
+
disposition: string | null;
|
3494
|
+
createdAt: Date;
|
3495
|
+
updatedAt: Date;
|
3496
|
+
deletedAt: Date | null;
|
3497
|
+
tags: {
|
3498
|
+
id: string;
|
3499
|
+
name: string;
|
3500
|
+
createdAt: Date;
|
3501
|
+
updatedAt: Date;
|
3502
|
+
deletedAt: Date | null;
|
3503
|
+
}[];
|
3504
|
+
callFrom: string | null;
|
3505
|
+
callTo: string | null;
|
3506
|
+
note: string | null;
|
3507
|
+
} | null;
|
3374
3508
|
};
|
3375
3509
|
channel?: {
|
3376
3510
|
id?: string | undefined;
|
@@ -5226,14 +5360,76 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5226
5360
|
caseId: z.ZodNumber;
|
5227
5361
|
entityId: z.ZodString;
|
5228
5362
|
entityName: z.ZodString;
|
5229
|
-
|
5363
|
+
contactId: z.ZodNullable<z.ZodString>;
|
5230
5364
|
channel: z.ZodNullable<z.ZodString>;
|
5365
|
+
queueId: z.ZodNullable<z.ZodString>;
|
5366
|
+
agentId: z.ZodNullable<z.ZodString>;
|
5231
5367
|
direction: z.ZodNullable<z.ZodString>;
|
5232
5368
|
startedDate: z.ZodNullable<z.ZodDate>;
|
5233
5369
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
5234
|
-
firstResponseTime: z.ZodNullable<z.
|
5370
|
+
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
5235
5371
|
disposition: z.ZodNullable<z.ZodString>;
|
5236
|
-
|
5372
|
+
wrapUpForm: z.ZodNullable<z.ZodObject<{
|
5373
|
+
id: z.ZodString;
|
5374
|
+
createdAt: z.ZodDate;
|
5375
|
+
updatedAt: z.ZodDate;
|
5376
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
5377
|
+
note: z.ZodNullable<z.ZodString>;
|
5378
|
+
disposition: z.ZodNullable<z.ZodString>;
|
5379
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
5380
|
+
callTo: z.ZodNullable<z.ZodString>;
|
5381
|
+
tags: z.ZodArray<z.ZodObject<{
|
5382
|
+
id: z.ZodString;
|
5383
|
+
createdAt: z.ZodDate;
|
5384
|
+
updatedAt: z.ZodDate;
|
5385
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
5386
|
+
name: z.ZodString;
|
5387
|
+
}, "strip", z.ZodTypeAny, {
|
5388
|
+
id: string;
|
5389
|
+
name: string;
|
5390
|
+
createdAt: Date;
|
5391
|
+
updatedAt: Date;
|
5392
|
+
deletedAt: Date | null;
|
5393
|
+
}, {
|
5394
|
+
id: string;
|
5395
|
+
name: string;
|
5396
|
+
createdAt: Date;
|
5397
|
+
updatedAt: Date;
|
5398
|
+
deletedAt: Date | null;
|
5399
|
+
}>, "many">;
|
5400
|
+
}, "strip", z.ZodTypeAny, {
|
5401
|
+
id: string;
|
5402
|
+
disposition: string | null;
|
5403
|
+
createdAt: Date;
|
5404
|
+
updatedAt: Date;
|
5405
|
+
deletedAt: Date | null;
|
5406
|
+
tags: {
|
5407
|
+
id: string;
|
5408
|
+
name: string;
|
5409
|
+
createdAt: Date;
|
5410
|
+
updatedAt: Date;
|
5411
|
+
deletedAt: Date | null;
|
5412
|
+
}[];
|
5413
|
+
callFrom: string | null;
|
5414
|
+
callTo: string | null;
|
5415
|
+
note: string | null;
|
5416
|
+
}, {
|
5417
|
+
id: string;
|
5418
|
+
disposition: string | null;
|
5419
|
+
createdAt: Date;
|
5420
|
+
updatedAt: Date;
|
5421
|
+
deletedAt: Date | null;
|
5422
|
+
tags: {
|
5423
|
+
id: string;
|
5424
|
+
name: string;
|
5425
|
+
createdAt: Date;
|
5426
|
+
updatedAt: Date;
|
5427
|
+
deletedAt: Date | null;
|
5428
|
+
}[];
|
5429
|
+
callFrom: string | null;
|
5430
|
+
callTo: string | null;
|
5431
|
+
note: string | null;
|
5432
|
+
}>>;
|
5237
5433
|
}, "strip", z.ZodTypeAny, {
|
5238
5434
|
id: string;
|
5239
5435
|
channel: string | null;
|
@@ -5243,13 +5439,31 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5243
5439
|
updatedAt: Date;
|
5244
5440
|
deletedAt: Date | null;
|
5245
5441
|
entityId: string;
|
5442
|
+
contactId: string | null;
|
5246
5443
|
caseId: number;
|
5247
5444
|
entityName: string;
|
5248
|
-
|
5445
|
+
queueId: string | null;
|
5446
|
+
agentId: string | null;
|
5249
5447
|
startedDate: Date | null;
|
5250
5448
|
handledTime: number | null;
|
5251
|
-
firstResponseTime:
|
5252
|
-
|
5449
|
+
firstResponseTime: number | null;
|
5450
|
+
wrapUpForm: {
|
5451
|
+
id: string;
|
5452
|
+
disposition: string | null;
|
5453
|
+
createdAt: Date;
|
5454
|
+
updatedAt: Date;
|
5455
|
+
deletedAt: Date | null;
|
5456
|
+
tags: {
|
5457
|
+
id: string;
|
5458
|
+
name: string;
|
5459
|
+
createdAt: Date;
|
5460
|
+
updatedAt: Date;
|
5461
|
+
deletedAt: Date | null;
|
5462
|
+
}[];
|
5463
|
+
callFrom: string | null;
|
5464
|
+
callTo: string | null;
|
5465
|
+
note: string | null;
|
5466
|
+
} | null;
|
5253
5467
|
}, {
|
5254
5468
|
id: string;
|
5255
5469
|
channel: string | null;
|
@@ -5259,13 +5473,31 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5259
5473
|
updatedAt: Date;
|
5260
5474
|
deletedAt: Date | null;
|
5261
5475
|
entityId: string;
|
5476
|
+
contactId: string | null;
|
5262
5477
|
caseId: number;
|
5263
5478
|
entityName: string;
|
5264
|
-
|
5479
|
+
queueId: string | null;
|
5480
|
+
agentId: string | null;
|
5265
5481
|
startedDate: Date | null;
|
5266
5482
|
handledTime: number | null;
|
5267
|
-
firstResponseTime:
|
5268
|
-
|
5483
|
+
firstResponseTime: number | null;
|
5484
|
+
wrapUpForm: {
|
5485
|
+
id: string;
|
5486
|
+
disposition: string | null;
|
5487
|
+
createdAt: Date;
|
5488
|
+
updatedAt: Date;
|
5489
|
+
deletedAt: Date | null;
|
5490
|
+
tags: {
|
5491
|
+
id: string;
|
5492
|
+
name: string;
|
5493
|
+
createdAt: Date;
|
5494
|
+
updatedAt: Date;
|
5495
|
+
deletedAt: Date | null;
|
5496
|
+
}[];
|
5497
|
+
callFrom: string | null;
|
5498
|
+
callTo: string | null;
|
5499
|
+
note: string | null;
|
5500
|
+
} | null;
|
5269
5501
|
}>;
|
5270
5502
|
}, "strip", z.ZodTypeAny, {
|
5271
5503
|
id: string;
|
@@ -5492,13 +5724,31 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5492
5724
|
updatedAt: Date;
|
5493
5725
|
deletedAt: Date | null;
|
5494
5726
|
entityId: string;
|
5727
|
+
contactId: string | null;
|
5495
5728
|
caseId: number;
|
5496
5729
|
entityName: string;
|
5497
|
-
|
5730
|
+
queueId: string | null;
|
5731
|
+
agentId: string | null;
|
5498
5732
|
startedDate: Date | null;
|
5499
5733
|
handledTime: number | null;
|
5500
|
-
firstResponseTime:
|
5501
|
-
|
5734
|
+
firstResponseTime: number | null;
|
5735
|
+
wrapUpForm: {
|
5736
|
+
id: string;
|
5737
|
+
disposition: string | null;
|
5738
|
+
createdAt: Date;
|
5739
|
+
updatedAt: Date;
|
5740
|
+
deletedAt: Date | null;
|
5741
|
+
tags: {
|
5742
|
+
id: string;
|
5743
|
+
name: string;
|
5744
|
+
createdAt: Date;
|
5745
|
+
updatedAt: Date;
|
5746
|
+
deletedAt: Date | null;
|
5747
|
+
}[];
|
5748
|
+
callFrom: string | null;
|
5749
|
+
callTo: string | null;
|
5750
|
+
note: string | null;
|
5751
|
+
} | null;
|
5502
5752
|
};
|
5503
5753
|
channel?: {
|
5504
5754
|
id?: string | undefined;
|
@@ -5788,13 +6038,31 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5788
6038
|
updatedAt: Date;
|
5789
6039
|
deletedAt: Date | null;
|
5790
6040
|
entityId: string;
|
6041
|
+
contactId: string | null;
|
5791
6042
|
caseId: number;
|
5792
6043
|
entityName: string;
|
5793
|
-
|
6044
|
+
queueId: string | null;
|
6045
|
+
agentId: string | null;
|
5794
6046
|
startedDate: Date | null;
|
5795
6047
|
handledTime: number | null;
|
5796
|
-
firstResponseTime:
|
5797
|
-
|
6048
|
+
firstResponseTime: number | null;
|
6049
|
+
wrapUpForm: {
|
6050
|
+
id: string;
|
6051
|
+
disposition: string | null;
|
6052
|
+
createdAt: Date;
|
6053
|
+
updatedAt: Date;
|
6054
|
+
deletedAt: Date | null;
|
6055
|
+
tags: {
|
6056
|
+
id: string;
|
6057
|
+
name: string;
|
6058
|
+
createdAt: Date;
|
6059
|
+
updatedAt: Date;
|
6060
|
+
deletedAt: Date | null;
|
6061
|
+
}[];
|
6062
|
+
callFrom: string | null;
|
6063
|
+
callTo: string | null;
|
6064
|
+
note: string | null;
|
6065
|
+
} | null;
|
5798
6066
|
};
|
5799
6067
|
channel?: {
|
5800
6068
|
id?: string | undefined;
|
@@ -6816,13 +7084,31 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6816
7084
|
updatedAt: Date;
|
6817
7085
|
deletedAt: Date | null;
|
6818
7086
|
entityId: string;
|
7087
|
+
contactId: string | null;
|
6819
7088
|
caseId: number;
|
6820
7089
|
entityName: string;
|
6821
|
-
|
7090
|
+
queueId: string | null;
|
7091
|
+
agentId: string | null;
|
6822
7092
|
startedDate: Date | null;
|
6823
7093
|
handledTime: number | null;
|
6824
|
-
firstResponseTime:
|
6825
|
-
|
7094
|
+
firstResponseTime: number | null;
|
7095
|
+
wrapUpForm: {
|
7096
|
+
id: string;
|
7097
|
+
disposition: string | null;
|
7098
|
+
createdAt: Date;
|
7099
|
+
updatedAt: Date;
|
7100
|
+
deletedAt: Date | null;
|
7101
|
+
tags: {
|
7102
|
+
id: string;
|
7103
|
+
name: string;
|
7104
|
+
createdAt: Date;
|
7105
|
+
updatedAt: Date;
|
7106
|
+
deletedAt: Date | null;
|
7107
|
+
}[];
|
7108
|
+
callFrom: string | null;
|
7109
|
+
callTo: string | null;
|
7110
|
+
note: string | null;
|
7111
|
+
} | null;
|
6826
7112
|
};
|
6827
7113
|
channel?: {
|
6828
7114
|
id?: string | undefined;
|
@@ -7270,13 +7556,31 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7270
7556
|
updatedAt: Date;
|
7271
7557
|
deletedAt: Date | null;
|
7272
7558
|
entityId: string;
|
7559
|
+
contactId: string | null;
|
7273
7560
|
caseId: number;
|
7274
7561
|
entityName: string;
|
7275
|
-
|
7562
|
+
queueId: string | null;
|
7563
|
+
agentId: string | null;
|
7276
7564
|
startedDate: Date | null;
|
7277
7565
|
handledTime: number | null;
|
7278
|
-
firstResponseTime:
|
7279
|
-
|
7566
|
+
firstResponseTime: number | null;
|
7567
|
+
wrapUpForm: {
|
7568
|
+
id: string;
|
7569
|
+
disposition: string | null;
|
7570
|
+
createdAt: Date;
|
7571
|
+
updatedAt: Date;
|
7572
|
+
deletedAt: Date | null;
|
7573
|
+
tags: {
|
7574
|
+
id: string;
|
7575
|
+
name: string;
|
7576
|
+
createdAt: Date;
|
7577
|
+
updatedAt: Date;
|
7578
|
+
deletedAt: Date | null;
|
7579
|
+
}[];
|
7580
|
+
callFrom: string | null;
|
7581
|
+
callTo: string | null;
|
7582
|
+
note: string | null;
|
7583
|
+
} | null;
|
7280
7584
|
};
|
7281
7585
|
channel?: {
|
7282
7586
|
id?: string | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/chat/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB;;GAEG;AACH,eAAO,MAAM,0BAA0B,+CAIrC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB,yMAmB5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,mCAAiC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;EAKxC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/chat/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB;;GAEG;AACH,eAAO,MAAM,0BAA0B,+CAIrC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB,yMAmB5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,mCAAiC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;EAKxC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcrB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBxB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC"}
|