@kl1/contracts 1.0.19 → 1.0.20
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 +1721 -1041
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1721 -1041
- package/dist/index.mjs.map +1 -1
- package/dist/src/call-log/schema.d.ts +8 -8
- package/dist/src/call-log/validation.d.ts +4 -4
- package/dist/src/chat/index.d.ts +4033 -242
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +309 -17
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +5282 -10
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/company/index.d.ts +1803 -0
- package/dist/src/company/index.d.ts.map +1 -0
- package/dist/src/company/schema.d.ts +5 -5
- package/dist/src/company/validation.d.ts +852 -0
- package/dist/src/company/validation.d.ts.map +1 -0
- package/dist/src/contact/index.d.ts +21 -21
- package/dist/src/contact/schema.d.ts +3 -3
- package/dist/src/contact/validation.d.ts +21 -21
- package/dist/src/contract.d.ts +12761 -5021
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +129 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +95 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +1852 -0
- package/dist/src/dashboard/index.d.ts.map +1 -0
- package/dist/src/dashboard/schema.d.ts +885 -0
- package/dist/src/dashboard/schema.d.ts.map +1 -0
- package/dist/src/dashboard/validation.d.ts +19 -0
- package/dist/src/dashboard/validation.d.ts.map +1 -0
- package/dist/src/mail/mail-contract.d.ts +12 -12
- package/dist/src/mail/room-contract.d.ts +12 -12
- package/dist/src/mail/schemas/room-validation.schema.d.ts +4 -4
- package/dist/src/mail/schemas/room.schema.d.ts +2 -2
- package/dist/src/messenger/index.d.ts +207 -10
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +4 -4
- package/dist/src/telephony-live-queue-call/schema.d.ts +2 -2
- package/dist/src/telephony-queue-call-count/schema.d.ts +2 -2
- package/dist/src/ticket/index.d.ts +59 -62
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/validation.d.ts +59 -62
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/user/index.d.ts.map +1 -1
- package/package.json +4 -10
@@ -104,7 +104,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
104
104
|
textValue: z.ZodNullable<z.ZodString>;
|
105
105
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
106
106
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
107
|
-
dateValue: z.ZodNullable<z.
|
107
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
108
108
|
attribute: z.ZodObject<Omit<{
|
109
109
|
id: z.ZodString;
|
110
110
|
createdAt: z.ZodDate;
|
@@ -208,7 +208,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
208
208
|
textValue: string | null;
|
209
209
|
booleanValue: boolean | null;
|
210
210
|
numberValue: number | null;
|
211
|
-
dateValue:
|
211
|
+
dateValue: Date | null;
|
212
212
|
}, {
|
213
213
|
id: string;
|
214
214
|
createdAt: Date;
|
@@ -231,7 +231,7 @@ export declare const PlatformContactSchema: z.ZodObject<{
|
|
231
231
|
textValue: string | null;
|
232
232
|
booleanValue: boolean | null;
|
233
233
|
numberValue: number | null;
|
234
|
-
dateValue:
|
234
|
+
dateValue: Date | null;
|
235
235
|
}>, "many">>;
|
236
236
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
237
237
|
id: string;
|
@@ -1117,7 +1117,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1117
1117
|
textValue: z.ZodNullable<z.ZodString>;
|
1118
1118
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
1119
1119
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
1120
|
-
dateValue: z.ZodNullable<z.
|
1120
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
1121
1121
|
attribute: z.ZodObject<Omit<{
|
1122
1122
|
id: z.ZodString;
|
1123
1123
|
createdAt: z.ZodDate;
|
@@ -1221,7 +1221,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1221
1221
|
textValue: string | null;
|
1222
1222
|
booleanValue: boolean | null;
|
1223
1223
|
numberValue: number | null;
|
1224
|
-
dateValue:
|
1224
|
+
dateValue: Date | null;
|
1225
1225
|
}, {
|
1226
1226
|
id: string;
|
1227
1227
|
createdAt: Date;
|
@@ -1244,7 +1244,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
1244
1244
|
textValue: string | null;
|
1245
1245
|
booleanValue: boolean | null;
|
1246
1246
|
numberValue: number | null;
|
1247
|
-
dateValue:
|
1247
|
+
dateValue: Date | null;
|
1248
1248
|
}>, "many">>;
|
1249
1249
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
1250
1250
|
id: string;
|
@@ -2794,7 +2794,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2794
2794
|
} | undefined;
|
2795
2795
|
} | undefined;
|
2796
2796
|
}>>;
|
2797
|
-
|
2797
|
+
cxlog: z.ZodObject<{
|
2798
2798
|
id: z.ZodString;
|
2799
2799
|
createdAt: z.ZodDate;
|
2800
2800
|
updatedAt: z.ZodDate;
|
@@ -2811,6 +2811,67 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2811
2811
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
2812
2812
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
2813
2813
|
disposition: z.ZodNullable<z.ZodString>;
|
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
|
+
note: string | null;
|
2856
|
+
callFrom: string | null;
|
2857
|
+
callTo: 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
|
+
note: string | null;
|
2872
|
+
callFrom: string | null;
|
2873
|
+
callTo: string | null;
|
2874
|
+
}>>;
|
2814
2875
|
}, "strip", z.ZodTypeAny, {
|
2815
2876
|
id: string;
|
2816
2877
|
channel: string | null;
|
@@ -2828,6 +2889,23 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2828
2889
|
startedDate: Date | null;
|
2829
2890
|
handledTime: number | null;
|
2830
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
|
+
note: string | null;
|
2906
|
+
callFrom: string | null;
|
2907
|
+
callTo: string | null;
|
2908
|
+
} | null;
|
2831
2909
|
}, {
|
2832
2910
|
id: string;
|
2833
2911
|
channel: string | null;
|
@@ -2845,6 +2923,23 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2845
2923
|
startedDate: Date | null;
|
2846
2924
|
handledTime: number | null;
|
2847
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
|
+
note: string | null;
|
2940
|
+
callFrom: string | null;
|
2941
|
+
callTo: string | null;
|
2942
|
+
} | null;
|
2848
2943
|
}>;
|
2849
2944
|
}, "strip", z.ZodTypeAny, {
|
2850
2945
|
id: string;
|
@@ -3062,7 +3157,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3062
3157
|
telephonySignature: string | null;
|
3063
3158
|
} | undefined;
|
3064
3159
|
};
|
3065
|
-
|
3160
|
+
cxlog: {
|
3066
3161
|
id: string;
|
3067
3162
|
channel: string | null;
|
3068
3163
|
disposition: string | null;
|
@@ -3079,6 +3174,23 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3079
3174
|
startedDate: Date | null;
|
3080
3175
|
handledTime: number | null;
|
3081
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
|
+
note: string | null;
|
3191
|
+
callFrom: string | null;
|
3192
|
+
callTo: string | null;
|
3193
|
+
} | null;
|
3082
3194
|
};
|
3083
3195
|
channel?: {
|
3084
3196
|
id?: string | undefined;
|
@@ -3359,7 +3471,7 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3359
3471
|
telephonySignature: string | null;
|
3360
3472
|
} | undefined;
|
3361
3473
|
};
|
3362
|
-
|
3474
|
+
cxlog: {
|
3363
3475
|
id: string;
|
3364
3476
|
channel: string | null;
|
3365
3477
|
disposition: string | null;
|
@@ -3376,6 +3488,23 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3376
3488
|
startedDate: Date | null;
|
3377
3489
|
handledTime: number | null;
|
3378
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
|
+
note: string | null;
|
3505
|
+
callFrom: string | null;
|
3506
|
+
callTo: string | null;
|
3507
|
+
} | null;
|
3379
3508
|
};
|
3380
3509
|
channel?: {
|
3381
3510
|
id?: string | undefined;
|
@@ -3546,7 +3675,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
3546
3675
|
textValue: z.ZodNullable<z.ZodString>;
|
3547
3676
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
3548
3677
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
3549
|
-
dateValue: z.ZodNullable<z.
|
3678
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
3550
3679
|
attribute: z.ZodObject<Omit<{
|
3551
3680
|
id: z.ZodString;
|
3552
3681
|
createdAt: z.ZodDate;
|
@@ -3650,7 +3779,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
3650
3779
|
textValue: string | null;
|
3651
3780
|
booleanValue: boolean | null;
|
3652
3781
|
numberValue: number | null;
|
3653
|
-
dateValue:
|
3782
|
+
dateValue: Date | null;
|
3654
3783
|
}, {
|
3655
3784
|
id: string;
|
3656
3785
|
createdAt: Date;
|
@@ -3673,7 +3802,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
3673
3802
|
textValue: string | null;
|
3674
3803
|
booleanValue: boolean | null;
|
3675
3804
|
numberValue: number | null;
|
3676
|
-
dateValue:
|
3805
|
+
dateValue: Date | null;
|
3677
3806
|
}>, "many">>;
|
3678
3807
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
3679
3808
|
id: string;
|
@@ -5223,7 +5352,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5223
5352
|
} | undefined;
|
5224
5353
|
} | undefined;
|
5225
5354
|
}>>;
|
5226
|
-
|
5355
|
+
cxlog: z.ZodObject<{
|
5227
5356
|
id: z.ZodString;
|
5228
5357
|
createdAt: z.ZodDate;
|
5229
5358
|
updatedAt: z.ZodDate;
|
@@ -5240,6 +5369,67 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5240
5369
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
5241
5370
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
5242
5371
|
disposition: z.ZodNullable<z.ZodString>;
|
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
|
+
note: string | null;
|
5414
|
+
callFrom: string | null;
|
5415
|
+
callTo: 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
|
+
note: string | null;
|
5430
|
+
callFrom: string | null;
|
5431
|
+
callTo: string | null;
|
5432
|
+
}>>;
|
5243
5433
|
}, "strip", z.ZodTypeAny, {
|
5244
5434
|
id: string;
|
5245
5435
|
channel: string | null;
|
@@ -5257,6 +5447,23 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5257
5447
|
startedDate: Date | null;
|
5258
5448
|
handledTime: number | null;
|
5259
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
|
+
note: string | null;
|
5464
|
+
callFrom: string | null;
|
5465
|
+
callTo: string | null;
|
5466
|
+
} | null;
|
5260
5467
|
}, {
|
5261
5468
|
id: string;
|
5262
5469
|
channel: string | null;
|
@@ -5274,6 +5481,23 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5274
5481
|
startedDate: Date | null;
|
5275
5482
|
handledTime: number | null;
|
5276
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
|
+
note: string | null;
|
5498
|
+
callFrom: string | null;
|
5499
|
+
callTo: string | null;
|
5500
|
+
} | null;
|
5277
5501
|
}>;
|
5278
5502
|
}, "strip", z.ZodTypeAny, {
|
5279
5503
|
id: string;
|
@@ -5491,7 +5715,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5491
5715
|
telephonySignature: string | null;
|
5492
5716
|
} | undefined;
|
5493
5717
|
};
|
5494
|
-
|
5718
|
+
cxlog: {
|
5495
5719
|
id: string;
|
5496
5720
|
channel: string | null;
|
5497
5721
|
disposition: string | null;
|
@@ -5508,6 +5732,23 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5508
5732
|
startedDate: Date | null;
|
5509
5733
|
handledTime: number | null;
|
5510
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
|
+
note: string | null;
|
5749
|
+
callFrom: string | null;
|
5750
|
+
callTo: string | null;
|
5751
|
+
} | null;
|
5511
5752
|
};
|
5512
5753
|
channel?: {
|
5513
5754
|
id?: string | undefined;
|
@@ -5788,7 +6029,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5788
6029
|
telephonySignature: string | null;
|
5789
6030
|
} | undefined;
|
5790
6031
|
};
|
5791
|
-
|
6032
|
+
cxlog: {
|
5792
6033
|
id: string;
|
5793
6034
|
channel: string | null;
|
5794
6035
|
disposition: string | null;
|
@@ -5805,6 +6046,23 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5805
6046
|
startedDate: Date | null;
|
5806
6047
|
handledTime: number | null;
|
5807
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
|
+
note: string | null;
|
6063
|
+
callFrom: string | null;
|
6064
|
+
callTo: string | null;
|
6065
|
+
} | null;
|
5808
6066
|
};
|
5809
6067
|
channel?: {
|
5810
6068
|
id?: string | undefined;
|
@@ -6823,7 +7081,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6823
7081
|
telephonySignature: string | null;
|
6824
7082
|
} | undefined;
|
6825
7083
|
};
|
6826
|
-
|
7084
|
+
cxlog: {
|
6827
7085
|
id: string;
|
6828
7086
|
channel: string | null;
|
6829
7087
|
disposition: string | null;
|
@@ -6840,6 +7098,23 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6840
7098
|
startedDate: Date | null;
|
6841
7099
|
handledTime: number | null;
|
6842
7100
|
firstResponseTime: number | null;
|
7101
|
+
wrapUpForm: {
|
7102
|
+
id: string;
|
7103
|
+
disposition: string | null;
|
7104
|
+
createdAt: Date;
|
7105
|
+
updatedAt: Date;
|
7106
|
+
deletedAt: Date | null;
|
7107
|
+
tags: {
|
7108
|
+
id: string;
|
7109
|
+
name: string;
|
7110
|
+
createdAt: Date;
|
7111
|
+
updatedAt: Date;
|
7112
|
+
deletedAt: Date | null;
|
7113
|
+
}[];
|
7114
|
+
note: string | null;
|
7115
|
+
callFrom: string | null;
|
7116
|
+
callTo: string | null;
|
7117
|
+
} | null;
|
6843
7118
|
};
|
6844
7119
|
channel?: {
|
6845
7120
|
id?: string | undefined;
|
@@ -7278,7 +7553,7 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7278
7553
|
telephonySignature: string | null;
|
7279
7554
|
} | undefined;
|
7280
7555
|
};
|
7281
|
-
|
7556
|
+
cxlog: {
|
7282
7557
|
id: string;
|
7283
7558
|
channel: string | null;
|
7284
7559
|
disposition: string | null;
|
@@ -7295,6 +7570,23 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7295
7570
|
startedDate: Date | null;
|
7296
7571
|
handledTime: number | null;
|
7297
7572
|
firstResponseTime: number | null;
|
7573
|
+
wrapUpForm: {
|
7574
|
+
id: string;
|
7575
|
+
disposition: string | null;
|
7576
|
+
createdAt: Date;
|
7577
|
+
updatedAt: Date;
|
7578
|
+
deletedAt: Date | null;
|
7579
|
+
tags: {
|
7580
|
+
id: string;
|
7581
|
+
name: string;
|
7582
|
+
createdAt: Date;
|
7583
|
+
updatedAt: Date;
|
7584
|
+
deletedAt: Date | null;
|
7585
|
+
}[];
|
7586
|
+
note: string | null;
|
7587
|
+
callFrom: string | null;
|
7588
|
+
callTo: string | null;
|
7589
|
+
} | null;
|
7298
7590
|
};
|
7299
7591
|
channel?: {
|
7300
7592
|
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"}
|