@kl1/contracts 1.0.43 → 1.0.44
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 +265 -21
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +265 -21
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +10 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/contract.d.ts +4405 -286
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +556 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +468 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/call-report.schema.d.ts +1420 -0
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/index.d.ts +3692 -138
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +380 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/validation.d.ts +56 -0
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -3406,6 +3406,210 @@ export declare const cxLogContract: {
|
|
3406
3406
|
extensionId: z.ZodNumber;
|
3407
3407
|
extensionName: z.ZodString;
|
3408
3408
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
3409
|
+
user: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3410
|
+
id: z.ZodString;
|
3411
|
+
createdAt: z.ZodDate;
|
3412
|
+
updatedAt: z.ZodDate;
|
3413
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3414
|
+
name: z.ZodString;
|
3415
|
+
email: z.ZodString;
|
3416
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
3417
|
+
password: z.ZodString;
|
3418
|
+
address: z.ZodNullable<z.ZodString>;
|
3419
|
+
phone: z.ZodNullable<z.ZodString>;
|
3420
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
3421
|
+
roles: z.ZodArray<z.ZodObject<{
|
3422
|
+
id: z.ZodString;
|
3423
|
+
createdAt: z.ZodDate;
|
3424
|
+
updatedAt: z.ZodDate;
|
3425
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3426
|
+
systemName: z.ZodString;
|
3427
|
+
displayName: z.ZodString;
|
3428
|
+
description: z.ZodNullable<z.ZodString>;
|
3429
|
+
permissions: z.ZodArray<z.ZodObject<{
|
3430
|
+
id: z.ZodString;
|
3431
|
+
createdAt: z.ZodDate;
|
3432
|
+
updatedAt: z.ZodDate;
|
3433
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3434
|
+
systemName: z.ZodString;
|
3435
|
+
displayName: z.ZodString;
|
3436
|
+
description: z.ZodNullable<z.ZodString>;
|
3437
|
+
}, "strip", z.ZodTypeAny, {
|
3438
|
+
id: string;
|
3439
|
+
description: string | null;
|
3440
|
+
createdAt: Date;
|
3441
|
+
updatedAt: Date;
|
3442
|
+
deletedAt: Date | null;
|
3443
|
+
systemName: string;
|
3444
|
+
displayName: string;
|
3445
|
+
}, {
|
3446
|
+
id: string;
|
3447
|
+
description: string | null;
|
3448
|
+
createdAt: Date;
|
3449
|
+
updatedAt: Date;
|
3450
|
+
deletedAt: Date | null;
|
3451
|
+
systemName: string;
|
3452
|
+
displayName: string;
|
3453
|
+
}>, "many">;
|
3454
|
+
}, "strip", z.ZodTypeAny, {
|
3455
|
+
id: string;
|
3456
|
+
description: string | null;
|
3457
|
+
createdAt: Date;
|
3458
|
+
updatedAt: Date;
|
3459
|
+
deletedAt: Date | null;
|
3460
|
+
systemName: string;
|
3461
|
+
displayName: string;
|
3462
|
+
permissions: {
|
3463
|
+
id: string;
|
3464
|
+
description: string | null;
|
3465
|
+
createdAt: Date;
|
3466
|
+
updatedAt: Date;
|
3467
|
+
deletedAt: Date | null;
|
3468
|
+
systemName: string;
|
3469
|
+
displayName: string;
|
3470
|
+
}[];
|
3471
|
+
}, {
|
3472
|
+
id: string;
|
3473
|
+
description: string | null;
|
3474
|
+
createdAt: Date;
|
3475
|
+
updatedAt: Date;
|
3476
|
+
deletedAt: Date | null;
|
3477
|
+
systemName: string;
|
3478
|
+
displayName: string;
|
3479
|
+
permissions: {
|
3480
|
+
id: string;
|
3481
|
+
description: string | null;
|
3482
|
+
createdAt: Date;
|
3483
|
+
updatedAt: Date;
|
3484
|
+
deletedAt: Date | null;
|
3485
|
+
systemName: string;
|
3486
|
+
displayName: string;
|
3487
|
+
}[];
|
3488
|
+
}>, "many">;
|
3489
|
+
extension: z.ZodObject<{
|
3490
|
+
id: z.ZodString;
|
3491
|
+
createdAt: z.ZodDate;
|
3492
|
+
updatedAt: z.ZodDate;
|
3493
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3494
|
+
userId: z.ZodNullable<z.ZodString>;
|
3495
|
+
sipServerUrl: z.ZodString;
|
3496
|
+
sipUserName: z.ZodString;
|
3497
|
+
webphoneLoginUser: z.ZodString;
|
3498
|
+
extensionId: z.ZodNumber;
|
3499
|
+
extensionName: z.ZodString;
|
3500
|
+
telephonySignature: z.ZodNullable<z.ZodString>;
|
3501
|
+
}, "strip", z.ZodTypeAny, {
|
3502
|
+
id: string;
|
3503
|
+
createdAt: Date;
|
3504
|
+
updatedAt: Date;
|
3505
|
+
deletedAt: Date | null;
|
3506
|
+
userId: string | null;
|
3507
|
+
sipServerUrl: string;
|
3508
|
+
sipUserName: string;
|
3509
|
+
webphoneLoginUser: string;
|
3510
|
+
extensionId: number;
|
3511
|
+
extensionName: string;
|
3512
|
+
telephonySignature: string | null;
|
3513
|
+
}, {
|
3514
|
+
id: string;
|
3515
|
+
createdAt: Date;
|
3516
|
+
updatedAt: Date;
|
3517
|
+
deletedAt: Date | null;
|
3518
|
+
userId: string | null;
|
3519
|
+
sipServerUrl: string;
|
3520
|
+
sipUserName: string;
|
3521
|
+
webphoneLoginUser: string;
|
3522
|
+
extensionId: number;
|
3523
|
+
extensionName: string;
|
3524
|
+
telephonySignature: string | null;
|
3525
|
+
}>;
|
3526
|
+
}, "strip", z.ZodTypeAny, {
|
3527
|
+
id: string;
|
3528
|
+
address: string | null;
|
3529
|
+
name: string;
|
3530
|
+
email: string;
|
3531
|
+
createdAt: Date;
|
3532
|
+
updatedAt: Date;
|
3533
|
+
deletedAt: Date | null;
|
3534
|
+
emailVerifiedAt: Date | null;
|
3535
|
+
password: string;
|
3536
|
+
phone: string | null;
|
3537
|
+
notificationCount: number | null;
|
3538
|
+
roles: {
|
3539
|
+
id: string;
|
3540
|
+
description: string | null;
|
3541
|
+
createdAt: Date;
|
3542
|
+
updatedAt: Date;
|
3543
|
+
deletedAt: Date | null;
|
3544
|
+
systemName: string;
|
3545
|
+
displayName: string;
|
3546
|
+
permissions: {
|
3547
|
+
id: string;
|
3548
|
+
description: string | null;
|
3549
|
+
createdAt: Date;
|
3550
|
+
updatedAt: Date;
|
3551
|
+
deletedAt: Date | null;
|
3552
|
+
systemName: string;
|
3553
|
+
displayName: string;
|
3554
|
+
}[];
|
3555
|
+
}[];
|
3556
|
+
extension: {
|
3557
|
+
id: string;
|
3558
|
+
createdAt: Date;
|
3559
|
+
updatedAt: Date;
|
3560
|
+
deletedAt: Date | null;
|
3561
|
+
userId: string | null;
|
3562
|
+
sipServerUrl: string;
|
3563
|
+
sipUserName: string;
|
3564
|
+
webphoneLoginUser: string;
|
3565
|
+
extensionId: number;
|
3566
|
+
extensionName: string;
|
3567
|
+
telephonySignature: string | null;
|
3568
|
+
};
|
3569
|
+
}, {
|
3570
|
+
id: string;
|
3571
|
+
address: string | null;
|
3572
|
+
name: string;
|
3573
|
+
email: string;
|
3574
|
+
createdAt: Date;
|
3575
|
+
updatedAt: Date;
|
3576
|
+
deletedAt: Date | null;
|
3577
|
+
emailVerifiedAt: Date | null;
|
3578
|
+
password: string;
|
3579
|
+
phone: string | null;
|
3580
|
+
notificationCount: number | null;
|
3581
|
+
roles: {
|
3582
|
+
id: string;
|
3583
|
+
description: string | null;
|
3584
|
+
createdAt: Date;
|
3585
|
+
updatedAt: Date;
|
3586
|
+
deletedAt: Date | null;
|
3587
|
+
systemName: string;
|
3588
|
+
displayName: string;
|
3589
|
+
permissions: {
|
3590
|
+
id: string;
|
3591
|
+
description: string | null;
|
3592
|
+
createdAt: Date;
|
3593
|
+
updatedAt: Date;
|
3594
|
+
deletedAt: Date | null;
|
3595
|
+
systemName: string;
|
3596
|
+
displayName: string;
|
3597
|
+
}[];
|
3598
|
+
}[];
|
3599
|
+
extension: {
|
3600
|
+
id: string;
|
3601
|
+
createdAt: Date;
|
3602
|
+
updatedAt: Date;
|
3603
|
+
deletedAt: Date | null;
|
3604
|
+
userId: string | null;
|
3605
|
+
sipServerUrl: string;
|
3606
|
+
sipUserName: string;
|
3607
|
+
webphoneLoginUser: string;
|
3608
|
+
extensionId: number;
|
3609
|
+
extensionName: string;
|
3610
|
+
telephonySignature: string | null;
|
3611
|
+
};
|
3612
|
+
}>>>;
|
3409
3613
|
}, "strip", z.ZodTypeAny, {
|
3410
3614
|
id: string;
|
3411
3615
|
createdAt: Date;
|
@@ -3418,6 +3622,50 @@ export declare const cxLogContract: {
|
|
3418
3622
|
extensionId: number;
|
3419
3623
|
extensionName: string;
|
3420
3624
|
telephonySignature: string | null;
|
3625
|
+
user?: {
|
3626
|
+
id: string;
|
3627
|
+
address: string | null;
|
3628
|
+
name: string;
|
3629
|
+
email: string;
|
3630
|
+
createdAt: Date;
|
3631
|
+
updatedAt: Date;
|
3632
|
+
deletedAt: Date | null;
|
3633
|
+
emailVerifiedAt: Date | null;
|
3634
|
+
password: string;
|
3635
|
+
phone: string | null;
|
3636
|
+
notificationCount: number | null;
|
3637
|
+
roles: {
|
3638
|
+
id: string;
|
3639
|
+
description: string | null;
|
3640
|
+
createdAt: Date;
|
3641
|
+
updatedAt: Date;
|
3642
|
+
deletedAt: Date | null;
|
3643
|
+
systemName: string;
|
3644
|
+
displayName: string;
|
3645
|
+
permissions: {
|
3646
|
+
id: string;
|
3647
|
+
description: string | null;
|
3648
|
+
createdAt: Date;
|
3649
|
+
updatedAt: Date;
|
3650
|
+
deletedAt: Date | null;
|
3651
|
+
systemName: string;
|
3652
|
+
displayName: string;
|
3653
|
+
}[];
|
3654
|
+
}[];
|
3655
|
+
extension: {
|
3656
|
+
id: string;
|
3657
|
+
createdAt: Date;
|
3658
|
+
updatedAt: Date;
|
3659
|
+
deletedAt: Date | null;
|
3660
|
+
userId: string | null;
|
3661
|
+
sipServerUrl: string;
|
3662
|
+
sipUserName: string;
|
3663
|
+
webphoneLoginUser: string;
|
3664
|
+
extensionId: number;
|
3665
|
+
extensionName: string;
|
3666
|
+
telephonySignature: string | null;
|
3667
|
+
};
|
3668
|
+
} | null | undefined;
|
3421
3669
|
}, {
|
3422
3670
|
id: string;
|
3423
3671
|
createdAt: Date;
|
@@ -3430,6 +3678,50 @@ export declare const cxLogContract: {
|
|
3430
3678
|
extensionId: number;
|
3431
3679
|
extensionName: string;
|
3432
3680
|
telephonySignature: string | null;
|
3681
|
+
user?: {
|
3682
|
+
id: string;
|
3683
|
+
address: string | null;
|
3684
|
+
name: string;
|
3685
|
+
email: string;
|
3686
|
+
createdAt: Date;
|
3687
|
+
updatedAt: Date;
|
3688
|
+
deletedAt: Date | null;
|
3689
|
+
emailVerifiedAt: Date | null;
|
3690
|
+
password: string;
|
3691
|
+
phone: string | null;
|
3692
|
+
notificationCount: number | null;
|
3693
|
+
roles: {
|
3694
|
+
id: string;
|
3695
|
+
description: string | null;
|
3696
|
+
createdAt: Date;
|
3697
|
+
updatedAt: Date;
|
3698
|
+
deletedAt: Date | null;
|
3699
|
+
systemName: string;
|
3700
|
+
displayName: string;
|
3701
|
+
permissions: {
|
3702
|
+
id: string;
|
3703
|
+
description: string | null;
|
3704
|
+
createdAt: Date;
|
3705
|
+
updatedAt: Date;
|
3706
|
+
deletedAt: Date | null;
|
3707
|
+
systemName: string;
|
3708
|
+
displayName: string;
|
3709
|
+
}[];
|
3710
|
+
}[];
|
3711
|
+
extension: {
|
3712
|
+
id: string;
|
3713
|
+
createdAt: Date;
|
3714
|
+
updatedAt: Date;
|
3715
|
+
deletedAt: Date | null;
|
3716
|
+
userId: string | null;
|
3717
|
+
sipServerUrl: string;
|
3718
|
+
sipUserName: string;
|
3719
|
+
webphoneLoginUser: string;
|
3720
|
+
extensionId: number;
|
3721
|
+
extensionName: string;
|
3722
|
+
telephonySignature: string | null;
|
3723
|
+
};
|
3724
|
+
} | null | undefined;
|
3433
3725
|
}>>>;
|
3434
3726
|
telephonyQueueId: z.ZodNullable<z.ZodString>;
|
3435
3727
|
contactId: z.ZodNullable<z.ZodString>;
|
@@ -3593,6 +3885,50 @@ export declare const cxLogContract: {
|
|
3593
3885
|
extensionId: number;
|
3594
3886
|
extensionName: string;
|
3595
3887
|
telephonySignature: string | null;
|
3888
|
+
user?: {
|
3889
|
+
id: string;
|
3890
|
+
address: string | null;
|
3891
|
+
name: string;
|
3892
|
+
email: string;
|
3893
|
+
createdAt: Date;
|
3894
|
+
updatedAt: Date;
|
3895
|
+
deletedAt: Date | null;
|
3896
|
+
emailVerifiedAt: Date | null;
|
3897
|
+
password: string;
|
3898
|
+
phone: string | null;
|
3899
|
+
notificationCount: number | null;
|
3900
|
+
roles: {
|
3901
|
+
id: string;
|
3902
|
+
description: string | null;
|
3903
|
+
createdAt: Date;
|
3904
|
+
updatedAt: Date;
|
3905
|
+
deletedAt: Date | null;
|
3906
|
+
systemName: string;
|
3907
|
+
displayName: string;
|
3908
|
+
permissions: {
|
3909
|
+
id: string;
|
3910
|
+
description: string | null;
|
3911
|
+
createdAt: Date;
|
3912
|
+
updatedAt: Date;
|
3913
|
+
deletedAt: Date | null;
|
3914
|
+
systemName: string;
|
3915
|
+
displayName: string;
|
3916
|
+
}[];
|
3917
|
+
}[];
|
3918
|
+
extension: {
|
3919
|
+
id: string;
|
3920
|
+
createdAt: Date;
|
3921
|
+
updatedAt: Date;
|
3922
|
+
deletedAt: Date | null;
|
3923
|
+
userId: string | null;
|
3924
|
+
sipServerUrl: string;
|
3925
|
+
sipUserName: string;
|
3926
|
+
webphoneLoginUser: string;
|
3927
|
+
extensionId: number;
|
3928
|
+
extensionName: string;
|
3929
|
+
telephonySignature: string | null;
|
3930
|
+
};
|
3931
|
+
} | null | undefined;
|
3596
3932
|
} | null | undefined;
|
3597
3933
|
}, {
|
3598
3934
|
type: string;
|
@@ -3754,6 +4090,50 @@ export declare const cxLogContract: {
|
|
3754
4090
|
extensionId: number;
|
3755
4091
|
extensionName: string;
|
3756
4092
|
telephonySignature: string | null;
|
4093
|
+
user?: {
|
4094
|
+
id: string;
|
4095
|
+
address: string | null;
|
4096
|
+
name: string;
|
4097
|
+
email: string;
|
4098
|
+
createdAt: Date;
|
4099
|
+
updatedAt: Date;
|
4100
|
+
deletedAt: Date | null;
|
4101
|
+
emailVerifiedAt: Date | null;
|
4102
|
+
password: string;
|
4103
|
+
phone: string | null;
|
4104
|
+
notificationCount: number | null;
|
4105
|
+
roles: {
|
4106
|
+
id: string;
|
4107
|
+
description: string | null;
|
4108
|
+
createdAt: Date;
|
4109
|
+
updatedAt: Date;
|
4110
|
+
deletedAt: Date | null;
|
4111
|
+
systemName: string;
|
4112
|
+
displayName: string;
|
4113
|
+
permissions: {
|
4114
|
+
id: string;
|
4115
|
+
description: string | null;
|
4116
|
+
createdAt: Date;
|
4117
|
+
updatedAt: Date;
|
4118
|
+
deletedAt: Date | null;
|
4119
|
+
systemName: string;
|
4120
|
+
displayName: string;
|
4121
|
+
}[];
|
4122
|
+
}[];
|
4123
|
+
extension: {
|
4124
|
+
id: string;
|
4125
|
+
createdAt: Date;
|
4126
|
+
updatedAt: Date;
|
4127
|
+
deletedAt: Date | null;
|
4128
|
+
userId: string | null;
|
4129
|
+
sipServerUrl: string;
|
4130
|
+
sipUserName: string;
|
4131
|
+
webphoneLoginUser: string;
|
4132
|
+
extensionId: number;
|
4133
|
+
extensionName: string;
|
4134
|
+
telephonySignature: string | null;
|
4135
|
+
};
|
4136
|
+
} | null | undefined;
|
3757
4137
|
} | null | undefined;
|
3758
4138
|
}>>;
|
3759
4139
|
queue: z.ZodNullable<z.ZodObject<{
|
@@ -5306,6 +5686,50 @@ export declare const cxLogContract: {
|
|
5306
5686
|
extensionId: number;
|
5307
5687
|
extensionName: string;
|
5308
5688
|
telephonySignature: string | null;
|
5689
|
+
user?: {
|
5690
|
+
id: string;
|
5691
|
+
address: string | null;
|
5692
|
+
name: string;
|
5693
|
+
email: string;
|
5694
|
+
createdAt: Date;
|
5695
|
+
updatedAt: Date;
|
5696
|
+
deletedAt: Date | null;
|
5697
|
+
emailVerifiedAt: Date | null;
|
5698
|
+
password: string;
|
5699
|
+
phone: string | null;
|
5700
|
+
notificationCount: number | null;
|
5701
|
+
roles: {
|
5702
|
+
id: string;
|
5703
|
+
description: string | null;
|
5704
|
+
createdAt: Date;
|
5705
|
+
updatedAt: Date;
|
5706
|
+
deletedAt: Date | null;
|
5707
|
+
systemName: string;
|
5708
|
+
displayName: string;
|
5709
|
+
permissions: {
|
5710
|
+
id: string;
|
5711
|
+
description: string | null;
|
5712
|
+
createdAt: Date;
|
5713
|
+
updatedAt: Date;
|
5714
|
+
deletedAt: Date | null;
|
5715
|
+
systemName: string;
|
5716
|
+
displayName: string;
|
5717
|
+
}[];
|
5718
|
+
}[];
|
5719
|
+
extension: {
|
5720
|
+
id: string;
|
5721
|
+
createdAt: Date;
|
5722
|
+
updatedAt: Date;
|
5723
|
+
deletedAt: Date | null;
|
5724
|
+
userId: string | null;
|
5725
|
+
sipServerUrl: string;
|
5726
|
+
sipUserName: string;
|
5727
|
+
webphoneLoginUser: string;
|
5728
|
+
extensionId: number;
|
5729
|
+
extensionName: string;
|
5730
|
+
telephonySignature: string | null;
|
5731
|
+
};
|
5732
|
+
} | null | undefined;
|
5309
5733
|
} | null | undefined;
|
5310
5734
|
} | null;
|
5311
5735
|
queue: {
|
@@ -5945,6 +6369,50 @@ export declare const cxLogContract: {
|
|
5945
6369
|
extensionId: number;
|
5946
6370
|
extensionName: string;
|
5947
6371
|
telephonySignature: string | null;
|
6372
|
+
user?: {
|
6373
|
+
id: string;
|
6374
|
+
address: string | null;
|
6375
|
+
name: string;
|
6376
|
+
email: string;
|
6377
|
+
createdAt: Date;
|
6378
|
+
updatedAt: Date;
|
6379
|
+
deletedAt: Date | null;
|
6380
|
+
emailVerifiedAt: Date | null;
|
6381
|
+
password: string;
|
6382
|
+
phone: string | null;
|
6383
|
+
notificationCount: number | null;
|
6384
|
+
roles: {
|
6385
|
+
id: string;
|
6386
|
+
description: string | null;
|
6387
|
+
createdAt: Date;
|
6388
|
+
updatedAt: Date;
|
6389
|
+
deletedAt: Date | null;
|
6390
|
+
systemName: string;
|
6391
|
+
displayName: string;
|
6392
|
+
permissions: {
|
6393
|
+
id: string;
|
6394
|
+
description: string | null;
|
6395
|
+
createdAt: Date;
|
6396
|
+
updatedAt: Date;
|
6397
|
+
deletedAt: Date | null;
|
6398
|
+
systemName: string;
|
6399
|
+
displayName: string;
|
6400
|
+
}[];
|
6401
|
+
}[];
|
6402
|
+
extension: {
|
6403
|
+
id: string;
|
6404
|
+
createdAt: Date;
|
6405
|
+
updatedAt: Date;
|
6406
|
+
deletedAt: Date | null;
|
6407
|
+
userId: string | null;
|
6408
|
+
sipServerUrl: string;
|
6409
|
+
sipUserName: string;
|
6410
|
+
webphoneLoginUser: string;
|
6411
|
+
extensionId: number;
|
6412
|
+
extensionName: string;
|
6413
|
+
telephonySignature: string | null;
|
6414
|
+
};
|
6415
|
+
} | null | undefined;
|
5948
6416
|
} | null | undefined;
|
5949
6417
|
} | null;
|
5950
6418
|
queue: {
|
@@ -6590,6 +7058,50 @@ export declare const cxLogContract: {
|
|
6590
7058
|
extensionId: number;
|
6591
7059
|
extensionName: string;
|
6592
7060
|
telephonySignature: string | null;
|
7061
|
+
user?: {
|
7062
|
+
id: string;
|
7063
|
+
address: string | null;
|
7064
|
+
name: string;
|
7065
|
+
email: string;
|
7066
|
+
createdAt: Date;
|
7067
|
+
updatedAt: Date;
|
7068
|
+
deletedAt: Date | null;
|
7069
|
+
emailVerifiedAt: Date | null;
|
7070
|
+
password: string;
|
7071
|
+
phone: string | null;
|
7072
|
+
notificationCount: number | null;
|
7073
|
+
roles: {
|
7074
|
+
id: string;
|
7075
|
+
description: string | null;
|
7076
|
+
createdAt: Date;
|
7077
|
+
updatedAt: Date;
|
7078
|
+
deletedAt: Date | null;
|
7079
|
+
systemName: string;
|
7080
|
+
displayName: string;
|
7081
|
+
permissions: {
|
7082
|
+
id: string;
|
7083
|
+
description: string | null;
|
7084
|
+
createdAt: Date;
|
7085
|
+
updatedAt: Date;
|
7086
|
+
deletedAt: Date | null;
|
7087
|
+
systemName: string;
|
7088
|
+
displayName: string;
|
7089
|
+
}[];
|
7090
|
+
}[];
|
7091
|
+
extension: {
|
7092
|
+
id: string;
|
7093
|
+
createdAt: Date;
|
7094
|
+
updatedAt: Date;
|
7095
|
+
deletedAt: Date | null;
|
7096
|
+
userId: string | null;
|
7097
|
+
sipServerUrl: string;
|
7098
|
+
sipUserName: string;
|
7099
|
+
webphoneLoginUser: string;
|
7100
|
+
extensionId: number;
|
7101
|
+
extensionName: string;
|
7102
|
+
telephonySignature: string | null;
|
7103
|
+
};
|
7104
|
+
} | null | undefined;
|
6593
7105
|
} | null | undefined;
|
6594
7106
|
} | null;
|
6595
7107
|
queue: {
|
@@ -7235,6 +7747,50 @@ export declare const cxLogContract: {
|
|
7235
7747
|
extensionId: number;
|
7236
7748
|
extensionName: string;
|
7237
7749
|
telephonySignature: string | null;
|
7750
|
+
user?: {
|
7751
|
+
id: string;
|
7752
|
+
address: string | null;
|
7753
|
+
name: string;
|
7754
|
+
email: string;
|
7755
|
+
createdAt: Date;
|
7756
|
+
updatedAt: Date;
|
7757
|
+
deletedAt: Date | null;
|
7758
|
+
emailVerifiedAt: Date | null;
|
7759
|
+
password: string;
|
7760
|
+
phone: string | null;
|
7761
|
+
notificationCount: number | null;
|
7762
|
+
roles: {
|
7763
|
+
id: string;
|
7764
|
+
description: string | null;
|
7765
|
+
createdAt: Date;
|
7766
|
+
updatedAt: Date;
|
7767
|
+
deletedAt: Date | null;
|
7768
|
+
systemName: string;
|
7769
|
+
displayName: string;
|
7770
|
+
permissions: {
|
7771
|
+
id: string;
|
7772
|
+
description: string | null;
|
7773
|
+
createdAt: Date;
|
7774
|
+
updatedAt: Date;
|
7775
|
+
deletedAt: Date | null;
|
7776
|
+
systemName: string;
|
7777
|
+
displayName: string;
|
7778
|
+
}[];
|
7779
|
+
}[];
|
7780
|
+
extension: {
|
7781
|
+
id: string;
|
7782
|
+
createdAt: Date;
|
7783
|
+
updatedAt: Date;
|
7784
|
+
deletedAt: Date | null;
|
7785
|
+
userId: string | null;
|
7786
|
+
sipServerUrl: string;
|
7787
|
+
sipUserName: string;
|
7788
|
+
webphoneLoginUser: string;
|
7789
|
+
extensionId: number;
|
7790
|
+
extensionName: string;
|
7791
|
+
telephonySignature: string | null;
|
7792
|
+
};
|
7793
|
+
} | null | undefined;
|
7238
7794
|
} | null | undefined;
|
7239
7795
|
} | null;
|
7240
7796
|
queue: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cx-log/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE9E,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cx-log/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE9E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BxB,CAAC"}
|