@kl1/contracts 1.0.20 → 1.0.21
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 +1358 -1301
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1355 -1301
- package/dist/index.mjs.map +1 -1
- package/dist/src/call-log/schema.d.ts +4 -4
- package/dist/src/call-log/validation.d.ts +2 -2
- package/dist/src/chat/index.d.ts +323 -2300
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +48 -352
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +253 -514
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +6984 -3662
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +5424 -85
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +4472 -34
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/evaluate-form/schema.d.ts +2 -2
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +106 -106
- package/dist/src/mail/message-contract.d.ts +6 -6
- package/dist/src/mail/room-contract.d.ts +100 -100
- package/dist/src/mail/schemas/message.schema.d.ts +4 -4
- package/dist/src/mail/schemas/room-validation.schema.d.ts +32 -32
- package/dist/src/mail/schemas/room.schema.d.ts +26 -26
- package/dist/src/messenger/index.d.ts +218 -257
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +8 -8
- package/dist/src/telephony-cdr/validation.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 +4 -4
- package/dist/src/ticket/validation.d.ts +4 -4
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +2 -0
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +15 -15
- package/dist/src/wrap-up-form/schema.d.ts +2 -2
- package/dist/src/wrap-up-form/validation.d.ts +3 -3
- package/package.json +10 -4
@@ -2802,76 +2802,14 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2802
2802
|
caseId: z.ZodNumber;
|
2803
2803
|
entityId: z.ZodString;
|
2804
2804
|
entityName: z.ZodString;
|
2805
|
-
|
2805
|
+
channelType: z.ZodNullable<z.ZodString>;
|
2806
2806
|
channel: z.ZodNullable<z.ZodString>;
|
2807
|
-
queueId: z.ZodNullable<z.ZodString>;
|
2808
|
-
agentId: z.ZodNullable<z.ZodString>;
|
2809
2807
|
direction: z.ZodNullable<z.ZodString>;
|
2810
2808
|
startedDate: z.ZodNullable<z.ZodDate>;
|
2811
2809
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
2812
|
-
firstResponseTime: z.ZodNullable<z.
|
2810
|
+
firstResponseTime: z.ZodNullable<z.ZodString>;
|
2813
2811
|
disposition: z.ZodNullable<z.ZodString>;
|
2814
|
-
|
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
|
-
}>>;
|
2812
|
+
slaMeet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2875
2813
|
}, "strip", z.ZodTypeAny, {
|
2876
2814
|
id: string;
|
2877
2815
|
channel: string | null;
|
@@ -2883,29 +2821,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2883
2821
|
entityId: string;
|
2884
2822
|
caseId: number;
|
2885
2823
|
entityName: string;
|
2886
|
-
|
2887
|
-
queueId: string | null;
|
2888
|
-
agentId: string | null;
|
2824
|
+
channelType: string | null;
|
2889
2825
|
startedDate: Date | null;
|
2890
2826
|
handledTime: number | null;
|
2891
|
-
firstResponseTime:
|
2892
|
-
|
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;
|
2827
|
+
firstResponseTime: string | null;
|
2828
|
+
slaMeet?: string | null | undefined;
|
2909
2829
|
}, {
|
2910
2830
|
id: string;
|
2911
2831
|
channel: string | null;
|
@@ -2917,29 +2837,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
2917
2837
|
entityId: string;
|
2918
2838
|
caseId: number;
|
2919
2839
|
entityName: string;
|
2920
|
-
|
2921
|
-
queueId: string | null;
|
2922
|
-
agentId: string | null;
|
2840
|
+
channelType: string | null;
|
2923
2841
|
startedDate: Date | null;
|
2924
2842
|
handledTime: number | null;
|
2925
|
-
firstResponseTime:
|
2926
|
-
|
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;
|
2843
|
+
firstResponseTime: string | null;
|
2844
|
+
slaMeet?: string | null | undefined;
|
2943
2845
|
}>;
|
2944
2846
|
}, "strip", z.ZodTypeAny, {
|
2945
2847
|
id: string;
|
@@ -3168,29 +3070,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3168
3070
|
entityId: string;
|
3169
3071
|
caseId: number;
|
3170
3072
|
entityName: string;
|
3171
|
-
|
3172
|
-
queueId: string | null;
|
3173
|
-
agentId: string | null;
|
3073
|
+
channelType: string | null;
|
3174
3074
|
startedDate: Date | null;
|
3175
3075
|
handledTime: number | null;
|
3176
|
-
firstResponseTime:
|
3177
|
-
|
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;
|
3076
|
+
firstResponseTime: string | null;
|
3077
|
+
slaMeet?: string | null | undefined;
|
3194
3078
|
};
|
3195
3079
|
channel?: {
|
3196
3080
|
id?: string | undefined;
|
@@ -3482,29 +3366,11 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3482
3366
|
entityId: string;
|
3483
3367
|
caseId: number;
|
3484
3368
|
entityName: string;
|
3485
|
-
|
3486
|
-
queueId: string | null;
|
3487
|
-
agentId: string | null;
|
3369
|
+
channelType: string | null;
|
3488
3370
|
startedDate: Date | null;
|
3489
3371
|
handledTime: number | null;
|
3490
|
-
firstResponseTime:
|
3491
|
-
|
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;
|
3372
|
+
firstResponseTime: string | null;
|
3373
|
+
slaMeet?: string | null | undefined;
|
3508
3374
|
};
|
3509
3375
|
channel?: {
|
3510
3376
|
id?: string | undefined;
|
@@ -5360,76 +5226,14 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5360
5226
|
caseId: z.ZodNumber;
|
5361
5227
|
entityId: z.ZodString;
|
5362
5228
|
entityName: z.ZodString;
|
5363
|
-
|
5229
|
+
channelType: z.ZodNullable<z.ZodString>;
|
5364
5230
|
channel: z.ZodNullable<z.ZodString>;
|
5365
|
-
queueId: z.ZodNullable<z.ZodString>;
|
5366
|
-
agentId: z.ZodNullable<z.ZodString>;
|
5367
5231
|
direction: z.ZodNullable<z.ZodString>;
|
5368
5232
|
startedDate: z.ZodNullable<z.ZodDate>;
|
5369
5233
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
5370
|
-
firstResponseTime: z.ZodNullable<z.
|
5234
|
+
firstResponseTime: z.ZodNullable<z.ZodString>;
|
5371
5235
|
disposition: z.ZodNullable<z.ZodString>;
|
5372
|
-
|
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
|
-
}>>;
|
5236
|
+
slaMeet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5433
5237
|
}, "strip", z.ZodTypeAny, {
|
5434
5238
|
id: string;
|
5435
5239
|
channel: string | null;
|
@@ -5441,29 +5245,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5441
5245
|
entityId: string;
|
5442
5246
|
caseId: number;
|
5443
5247
|
entityName: string;
|
5444
|
-
|
5445
|
-
queueId: string | null;
|
5446
|
-
agentId: string | null;
|
5248
|
+
channelType: string | null;
|
5447
5249
|
startedDate: Date | null;
|
5448
5250
|
handledTime: number | null;
|
5449
|
-
firstResponseTime:
|
5450
|
-
|
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;
|
5251
|
+
firstResponseTime: string | null;
|
5252
|
+
slaMeet?: string | null | undefined;
|
5467
5253
|
}, {
|
5468
5254
|
id: string;
|
5469
5255
|
channel: string | null;
|
@@ -5475,29 +5261,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5475
5261
|
entityId: string;
|
5476
5262
|
caseId: number;
|
5477
5263
|
entityName: string;
|
5478
|
-
|
5479
|
-
queueId: string | null;
|
5480
|
-
agentId: string | null;
|
5264
|
+
channelType: string | null;
|
5481
5265
|
startedDate: Date | null;
|
5482
5266
|
handledTime: number | null;
|
5483
|
-
firstResponseTime:
|
5484
|
-
|
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;
|
5267
|
+
firstResponseTime: string | null;
|
5268
|
+
slaMeet?: string | null | undefined;
|
5501
5269
|
}>;
|
5502
5270
|
}, "strip", z.ZodTypeAny, {
|
5503
5271
|
id: string;
|
@@ -5726,29 +5494,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
5726
5494
|
entityId: string;
|
5727
5495
|
caseId: number;
|
5728
5496
|
entityName: string;
|
5729
|
-
|
5730
|
-
queueId: string | null;
|
5731
|
-
agentId: string | null;
|
5497
|
+
channelType: string | null;
|
5732
5498
|
startedDate: Date | null;
|
5733
5499
|
handledTime: number | null;
|
5734
|
-
firstResponseTime:
|
5735
|
-
|
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;
|
5500
|
+
firstResponseTime: string | null;
|
5501
|
+
slaMeet?: string | null | undefined;
|
5752
5502
|
};
|
5753
5503
|
channel?: {
|
5754
5504
|
id?: string | undefined;
|
@@ -6040,29 +5790,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6040
5790
|
entityId: string;
|
6041
5791
|
caseId: number;
|
6042
5792
|
entityName: string;
|
6043
|
-
|
6044
|
-
queueId: string | null;
|
6045
|
-
agentId: string | null;
|
5793
|
+
channelType: string | null;
|
6046
5794
|
startedDate: Date | null;
|
6047
5795
|
handledTime: number | null;
|
6048
|
-
firstResponseTime:
|
6049
|
-
|
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;
|
5796
|
+
firstResponseTime: string | null;
|
5797
|
+
slaMeet?: string | null | undefined;
|
6066
5798
|
};
|
6067
5799
|
channel?: {
|
6068
5800
|
id?: string | undefined;
|
@@ -6859,12 +6591,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6859
6591
|
telephonySignature: string | null;
|
6860
6592
|
} | undefined;
|
6861
6593
|
};
|
6862
|
-
readAt: Date;
|
6863
|
-
platformMessageId: string;
|
6864
|
-
replyPlatformMessageId: string;
|
6865
|
-
locale: "" | "th" | "mm" | "en";
|
6866
|
-
previewUrl: string;
|
6867
|
-
imageSetId: string;
|
6868
6594
|
room: {
|
6869
6595
|
id: string;
|
6870
6596
|
direction: "incoming" | "outgoing" | "system";
|
@@ -7092,29 +6818,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7092
6818
|
entityId: string;
|
7093
6819
|
caseId: number;
|
7094
6820
|
entityName: string;
|
7095
|
-
|
7096
|
-
queueId: string | null;
|
7097
|
-
agentId: string | null;
|
6821
|
+
channelType: string | null;
|
7098
6822
|
startedDate: Date | null;
|
7099
6823
|
handledTime: number | null;
|
7100
|
-
firstResponseTime:
|
7101
|
-
|
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;
|
6824
|
+
firstResponseTime: string | null;
|
6825
|
+
slaMeet?: string | null | undefined;
|
7118
6826
|
};
|
7119
6827
|
channel?: {
|
7120
6828
|
id?: string | undefined;
|
@@ -7180,6 +6888,12 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7180
6888
|
} | undefined;
|
7181
6889
|
} | undefined;
|
7182
6890
|
};
|
6891
|
+
readAt: Date;
|
6892
|
+
platformMessageId: string;
|
6893
|
+
replyPlatformMessageId: string;
|
6894
|
+
locale: "" | "th" | "mm" | "en";
|
6895
|
+
previewUrl: string;
|
6896
|
+
imageSetId: string;
|
7183
6897
|
sender: {
|
7184
6898
|
id: string;
|
7185
6899
|
address: string | null;
|
@@ -7331,12 +7045,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7331
7045
|
telephonySignature: string | null;
|
7332
7046
|
} | undefined;
|
7333
7047
|
};
|
7334
|
-
readAt: Date;
|
7335
|
-
platformMessageId: string;
|
7336
|
-
replyPlatformMessageId: string;
|
7337
|
-
locale: "" | "th" | "mm" | "en";
|
7338
|
-
previewUrl: string;
|
7339
|
-
imageSetId: string;
|
7340
7048
|
room: {
|
7341
7049
|
id: string;
|
7342
7050
|
direction: "incoming" | "outgoing" | "system";
|
@@ -7564,29 +7272,11 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7564
7272
|
entityId: string;
|
7565
7273
|
caseId: number;
|
7566
7274
|
entityName: string;
|
7567
|
-
|
7568
|
-
queueId: string | null;
|
7569
|
-
agentId: string | null;
|
7275
|
+
channelType: string | null;
|
7570
7276
|
startedDate: Date | null;
|
7571
7277
|
handledTime: number | null;
|
7572
|
-
firstResponseTime:
|
7573
|
-
|
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;
|
7278
|
+
firstResponseTime: string | null;
|
7279
|
+
slaMeet?: string | null | undefined;
|
7590
7280
|
};
|
7591
7281
|
channel?: {
|
7592
7282
|
id?: string | undefined;
|
@@ -7652,6 +7342,12 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7652
7342
|
} | undefined;
|
7653
7343
|
} | undefined;
|
7654
7344
|
};
|
7345
|
+
readAt: Date;
|
7346
|
+
platformMessageId: string;
|
7347
|
+
replyPlatformMessageId: string;
|
7348
|
+
locale: "" | "th" | "mm" | "en";
|
7349
|
+
previewUrl: string;
|
7350
|
+
imageSetId: string;
|
7655
7351
|
sender: {
|
7656
7352
|
id: string;
|
7657
7353
|
address: string | null;
|
@@ -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"}
|