@kl1/contracts 1.0.42 → 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 +273 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +273 -24
- 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 +25 -15
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +18 -53
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +4321 -237
- 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/messenger/index.d.ts +0 -35
- package/dist/src/messenger/index.d.ts.map +1 -1
- 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
@@ -3446,6 +3446,210 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3446
3446
|
extensionId: z.ZodNumber;
|
3447
3447
|
extensionName: z.ZodString;
|
3448
3448
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
3449
|
+
user: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3450
|
+
id: z.ZodString;
|
3451
|
+
createdAt: z.ZodDate;
|
3452
|
+
updatedAt: z.ZodDate;
|
3453
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3454
|
+
name: z.ZodString;
|
3455
|
+
email: z.ZodString;
|
3456
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
3457
|
+
password: z.ZodString;
|
3458
|
+
address: z.ZodNullable<z.ZodString>;
|
3459
|
+
phone: z.ZodNullable<z.ZodString>;
|
3460
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
3461
|
+
roles: z.ZodArray<z.ZodObject<{
|
3462
|
+
id: z.ZodString;
|
3463
|
+
createdAt: z.ZodDate;
|
3464
|
+
updatedAt: z.ZodDate;
|
3465
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3466
|
+
systemName: z.ZodString;
|
3467
|
+
displayName: z.ZodString;
|
3468
|
+
description: z.ZodNullable<z.ZodString>;
|
3469
|
+
permissions: z.ZodArray<z.ZodObject<{
|
3470
|
+
id: z.ZodString;
|
3471
|
+
createdAt: z.ZodDate;
|
3472
|
+
updatedAt: z.ZodDate;
|
3473
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3474
|
+
systemName: z.ZodString;
|
3475
|
+
displayName: z.ZodString;
|
3476
|
+
description: z.ZodNullable<z.ZodString>;
|
3477
|
+
}, "strip", z.ZodTypeAny, {
|
3478
|
+
id: string;
|
3479
|
+
description: string | null;
|
3480
|
+
createdAt: Date;
|
3481
|
+
updatedAt: Date;
|
3482
|
+
deletedAt: Date | null;
|
3483
|
+
systemName: string;
|
3484
|
+
displayName: string;
|
3485
|
+
}, {
|
3486
|
+
id: string;
|
3487
|
+
description: string | null;
|
3488
|
+
createdAt: Date;
|
3489
|
+
updatedAt: Date;
|
3490
|
+
deletedAt: Date | null;
|
3491
|
+
systemName: string;
|
3492
|
+
displayName: string;
|
3493
|
+
}>, "many">;
|
3494
|
+
}, "strip", z.ZodTypeAny, {
|
3495
|
+
id: string;
|
3496
|
+
description: string | null;
|
3497
|
+
createdAt: Date;
|
3498
|
+
updatedAt: Date;
|
3499
|
+
deletedAt: Date | null;
|
3500
|
+
systemName: string;
|
3501
|
+
displayName: string;
|
3502
|
+
permissions: {
|
3503
|
+
id: string;
|
3504
|
+
description: string | null;
|
3505
|
+
createdAt: Date;
|
3506
|
+
updatedAt: Date;
|
3507
|
+
deletedAt: Date | null;
|
3508
|
+
systemName: string;
|
3509
|
+
displayName: string;
|
3510
|
+
}[];
|
3511
|
+
}, {
|
3512
|
+
id: string;
|
3513
|
+
description: string | null;
|
3514
|
+
createdAt: Date;
|
3515
|
+
updatedAt: Date;
|
3516
|
+
deletedAt: Date | null;
|
3517
|
+
systemName: string;
|
3518
|
+
displayName: string;
|
3519
|
+
permissions: {
|
3520
|
+
id: string;
|
3521
|
+
description: string | null;
|
3522
|
+
createdAt: Date;
|
3523
|
+
updatedAt: Date;
|
3524
|
+
deletedAt: Date | null;
|
3525
|
+
systemName: string;
|
3526
|
+
displayName: string;
|
3527
|
+
}[];
|
3528
|
+
}>, "many">;
|
3529
|
+
extension: z.ZodObject<{
|
3530
|
+
id: z.ZodString;
|
3531
|
+
createdAt: z.ZodDate;
|
3532
|
+
updatedAt: z.ZodDate;
|
3533
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3534
|
+
userId: z.ZodNullable<z.ZodString>;
|
3535
|
+
sipServerUrl: z.ZodString;
|
3536
|
+
sipUserName: z.ZodString;
|
3537
|
+
webphoneLoginUser: z.ZodString;
|
3538
|
+
extensionId: z.ZodNumber;
|
3539
|
+
extensionName: z.ZodString;
|
3540
|
+
telephonySignature: z.ZodNullable<z.ZodString>;
|
3541
|
+
}, "strip", z.ZodTypeAny, {
|
3542
|
+
id: string;
|
3543
|
+
createdAt: Date;
|
3544
|
+
updatedAt: Date;
|
3545
|
+
deletedAt: Date | null;
|
3546
|
+
userId: string | null;
|
3547
|
+
sipServerUrl: string;
|
3548
|
+
sipUserName: string;
|
3549
|
+
webphoneLoginUser: string;
|
3550
|
+
extensionId: number;
|
3551
|
+
extensionName: string;
|
3552
|
+
telephonySignature: string | null;
|
3553
|
+
}, {
|
3554
|
+
id: string;
|
3555
|
+
createdAt: Date;
|
3556
|
+
updatedAt: Date;
|
3557
|
+
deletedAt: Date | null;
|
3558
|
+
userId: string | null;
|
3559
|
+
sipServerUrl: string;
|
3560
|
+
sipUserName: string;
|
3561
|
+
webphoneLoginUser: string;
|
3562
|
+
extensionId: number;
|
3563
|
+
extensionName: string;
|
3564
|
+
telephonySignature: string | null;
|
3565
|
+
}>;
|
3566
|
+
}, "strip", z.ZodTypeAny, {
|
3567
|
+
id: string;
|
3568
|
+
address: string | null;
|
3569
|
+
name: string;
|
3570
|
+
email: string;
|
3571
|
+
createdAt: Date;
|
3572
|
+
updatedAt: Date;
|
3573
|
+
deletedAt: Date | null;
|
3574
|
+
emailVerifiedAt: Date | null;
|
3575
|
+
password: string;
|
3576
|
+
phone: string | null;
|
3577
|
+
notificationCount: number | null;
|
3578
|
+
roles: {
|
3579
|
+
id: string;
|
3580
|
+
description: string | null;
|
3581
|
+
createdAt: Date;
|
3582
|
+
updatedAt: Date;
|
3583
|
+
deletedAt: Date | null;
|
3584
|
+
systemName: string;
|
3585
|
+
displayName: string;
|
3586
|
+
permissions: {
|
3587
|
+
id: string;
|
3588
|
+
description: string | null;
|
3589
|
+
createdAt: Date;
|
3590
|
+
updatedAt: Date;
|
3591
|
+
deletedAt: Date | null;
|
3592
|
+
systemName: string;
|
3593
|
+
displayName: string;
|
3594
|
+
}[];
|
3595
|
+
}[];
|
3596
|
+
extension: {
|
3597
|
+
id: string;
|
3598
|
+
createdAt: Date;
|
3599
|
+
updatedAt: Date;
|
3600
|
+
deletedAt: Date | null;
|
3601
|
+
userId: string | null;
|
3602
|
+
sipServerUrl: string;
|
3603
|
+
sipUserName: string;
|
3604
|
+
webphoneLoginUser: string;
|
3605
|
+
extensionId: number;
|
3606
|
+
extensionName: string;
|
3607
|
+
telephonySignature: string | null;
|
3608
|
+
};
|
3609
|
+
}, {
|
3610
|
+
id: string;
|
3611
|
+
address: string | null;
|
3612
|
+
name: string;
|
3613
|
+
email: string;
|
3614
|
+
createdAt: Date;
|
3615
|
+
updatedAt: Date;
|
3616
|
+
deletedAt: Date | null;
|
3617
|
+
emailVerifiedAt: Date | null;
|
3618
|
+
password: string;
|
3619
|
+
phone: string | null;
|
3620
|
+
notificationCount: number | null;
|
3621
|
+
roles: {
|
3622
|
+
id: string;
|
3623
|
+
description: string | null;
|
3624
|
+
createdAt: Date;
|
3625
|
+
updatedAt: Date;
|
3626
|
+
deletedAt: Date | null;
|
3627
|
+
systemName: string;
|
3628
|
+
displayName: string;
|
3629
|
+
permissions: {
|
3630
|
+
id: string;
|
3631
|
+
description: string | null;
|
3632
|
+
createdAt: Date;
|
3633
|
+
updatedAt: Date;
|
3634
|
+
deletedAt: Date | null;
|
3635
|
+
systemName: string;
|
3636
|
+
displayName: string;
|
3637
|
+
}[];
|
3638
|
+
}[];
|
3639
|
+
extension: {
|
3640
|
+
id: string;
|
3641
|
+
createdAt: Date;
|
3642
|
+
updatedAt: Date;
|
3643
|
+
deletedAt: Date | null;
|
3644
|
+
userId: string | null;
|
3645
|
+
sipServerUrl: string;
|
3646
|
+
sipUserName: string;
|
3647
|
+
webphoneLoginUser: string;
|
3648
|
+
extensionId: number;
|
3649
|
+
extensionName: string;
|
3650
|
+
telephonySignature: string | null;
|
3651
|
+
};
|
3652
|
+
}>>>;
|
3449
3653
|
}, "strip", z.ZodTypeAny, {
|
3450
3654
|
id: string;
|
3451
3655
|
createdAt: Date;
|
@@ -3458,6 +3662,50 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3458
3662
|
extensionId: number;
|
3459
3663
|
extensionName: string;
|
3460
3664
|
telephonySignature: string | null;
|
3665
|
+
user?: {
|
3666
|
+
id: string;
|
3667
|
+
address: string | null;
|
3668
|
+
name: string;
|
3669
|
+
email: string;
|
3670
|
+
createdAt: Date;
|
3671
|
+
updatedAt: Date;
|
3672
|
+
deletedAt: Date | null;
|
3673
|
+
emailVerifiedAt: Date | null;
|
3674
|
+
password: string;
|
3675
|
+
phone: string | null;
|
3676
|
+
notificationCount: number | null;
|
3677
|
+
roles: {
|
3678
|
+
id: string;
|
3679
|
+
description: string | null;
|
3680
|
+
createdAt: Date;
|
3681
|
+
updatedAt: Date;
|
3682
|
+
deletedAt: Date | null;
|
3683
|
+
systemName: string;
|
3684
|
+
displayName: string;
|
3685
|
+
permissions: {
|
3686
|
+
id: string;
|
3687
|
+
description: string | null;
|
3688
|
+
createdAt: Date;
|
3689
|
+
updatedAt: Date;
|
3690
|
+
deletedAt: Date | null;
|
3691
|
+
systemName: string;
|
3692
|
+
displayName: string;
|
3693
|
+
}[];
|
3694
|
+
}[];
|
3695
|
+
extension: {
|
3696
|
+
id: string;
|
3697
|
+
createdAt: Date;
|
3698
|
+
updatedAt: Date;
|
3699
|
+
deletedAt: Date | null;
|
3700
|
+
userId: string | null;
|
3701
|
+
sipServerUrl: string;
|
3702
|
+
sipUserName: string;
|
3703
|
+
webphoneLoginUser: string;
|
3704
|
+
extensionId: number;
|
3705
|
+
extensionName: string;
|
3706
|
+
telephonySignature: string | null;
|
3707
|
+
};
|
3708
|
+
} | null | undefined;
|
3461
3709
|
}, {
|
3462
3710
|
id: string;
|
3463
3711
|
createdAt: Date;
|
@@ -3470,6 +3718,50 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3470
3718
|
extensionId: number;
|
3471
3719
|
extensionName: string;
|
3472
3720
|
telephonySignature: string | null;
|
3721
|
+
user?: {
|
3722
|
+
id: string;
|
3723
|
+
address: string | null;
|
3724
|
+
name: string;
|
3725
|
+
email: string;
|
3726
|
+
createdAt: Date;
|
3727
|
+
updatedAt: Date;
|
3728
|
+
deletedAt: Date | null;
|
3729
|
+
emailVerifiedAt: Date | null;
|
3730
|
+
password: string;
|
3731
|
+
phone: string | null;
|
3732
|
+
notificationCount: number | null;
|
3733
|
+
roles: {
|
3734
|
+
id: string;
|
3735
|
+
description: string | null;
|
3736
|
+
createdAt: Date;
|
3737
|
+
updatedAt: Date;
|
3738
|
+
deletedAt: Date | null;
|
3739
|
+
systemName: string;
|
3740
|
+
displayName: string;
|
3741
|
+
permissions: {
|
3742
|
+
id: string;
|
3743
|
+
description: string | null;
|
3744
|
+
createdAt: Date;
|
3745
|
+
updatedAt: Date;
|
3746
|
+
deletedAt: Date | null;
|
3747
|
+
systemName: string;
|
3748
|
+
displayName: string;
|
3749
|
+
}[];
|
3750
|
+
}[];
|
3751
|
+
extension: {
|
3752
|
+
id: string;
|
3753
|
+
createdAt: Date;
|
3754
|
+
updatedAt: Date;
|
3755
|
+
deletedAt: Date | null;
|
3756
|
+
userId: string | null;
|
3757
|
+
sipServerUrl: string;
|
3758
|
+
sipUserName: string;
|
3759
|
+
webphoneLoginUser: string;
|
3760
|
+
extensionId: number;
|
3761
|
+
extensionName: string;
|
3762
|
+
telephonySignature: string | null;
|
3763
|
+
};
|
3764
|
+
} | null | undefined;
|
3473
3765
|
}>>>;
|
3474
3766
|
telephonyQueueId: z.ZodNullable<z.ZodString>;
|
3475
3767
|
contactId: z.ZodNullable<z.ZodString>;
|
@@ -3633,6 +3925,50 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3633
3925
|
extensionId: number;
|
3634
3926
|
extensionName: string;
|
3635
3927
|
telephonySignature: string | null;
|
3928
|
+
user?: {
|
3929
|
+
id: string;
|
3930
|
+
address: string | null;
|
3931
|
+
name: string;
|
3932
|
+
email: string;
|
3933
|
+
createdAt: Date;
|
3934
|
+
updatedAt: Date;
|
3935
|
+
deletedAt: Date | null;
|
3936
|
+
emailVerifiedAt: Date | null;
|
3937
|
+
password: string;
|
3938
|
+
phone: string | null;
|
3939
|
+
notificationCount: number | null;
|
3940
|
+
roles: {
|
3941
|
+
id: string;
|
3942
|
+
description: string | null;
|
3943
|
+
createdAt: Date;
|
3944
|
+
updatedAt: Date;
|
3945
|
+
deletedAt: Date | null;
|
3946
|
+
systemName: string;
|
3947
|
+
displayName: string;
|
3948
|
+
permissions: {
|
3949
|
+
id: string;
|
3950
|
+
description: string | null;
|
3951
|
+
createdAt: Date;
|
3952
|
+
updatedAt: Date;
|
3953
|
+
deletedAt: Date | null;
|
3954
|
+
systemName: string;
|
3955
|
+
displayName: string;
|
3956
|
+
}[];
|
3957
|
+
}[];
|
3958
|
+
extension: {
|
3959
|
+
id: string;
|
3960
|
+
createdAt: Date;
|
3961
|
+
updatedAt: Date;
|
3962
|
+
deletedAt: Date | null;
|
3963
|
+
userId: string | null;
|
3964
|
+
sipServerUrl: string;
|
3965
|
+
sipUserName: string;
|
3966
|
+
webphoneLoginUser: string;
|
3967
|
+
extensionId: number;
|
3968
|
+
extensionName: string;
|
3969
|
+
telephonySignature: string | null;
|
3970
|
+
};
|
3971
|
+
} | null | undefined;
|
3636
3972
|
} | null | undefined;
|
3637
3973
|
}, {
|
3638
3974
|
type: string;
|
@@ -3794,6 +4130,50 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3794
4130
|
extensionId: number;
|
3795
4131
|
extensionName: string;
|
3796
4132
|
telephonySignature: string | null;
|
4133
|
+
user?: {
|
4134
|
+
id: string;
|
4135
|
+
address: string | null;
|
4136
|
+
name: string;
|
4137
|
+
email: string;
|
4138
|
+
createdAt: Date;
|
4139
|
+
updatedAt: Date;
|
4140
|
+
deletedAt: Date | null;
|
4141
|
+
emailVerifiedAt: Date | null;
|
4142
|
+
password: string;
|
4143
|
+
phone: string | null;
|
4144
|
+
notificationCount: number | null;
|
4145
|
+
roles: {
|
4146
|
+
id: string;
|
4147
|
+
description: string | null;
|
4148
|
+
createdAt: Date;
|
4149
|
+
updatedAt: Date;
|
4150
|
+
deletedAt: Date | null;
|
4151
|
+
systemName: string;
|
4152
|
+
displayName: string;
|
4153
|
+
permissions: {
|
4154
|
+
id: string;
|
4155
|
+
description: string | null;
|
4156
|
+
createdAt: Date;
|
4157
|
+
updatedAt: Date;
|
4158
|
+
deletedAt: Date | null;
|
4159
|
+
systemName: string;
|
4160
|
+
displayName: string;
|
4161
|
+
}[];
|
4162
|
+
}[];
|
4163
|
+
extension: {
|
4164
|
+
id: string;
|
4165
|
+
createdAt: Date;
|
4166
|
+
updatedAt: Date;
|
4167
|
+
deletedAt: Date | null;
|
4168
|
+
userId: string | null;
|
4169
|
+
sipServerUrl: string;
|
4170
|
+
sipUserName: string;
|
4171
|
+
webphoneLoginUser: string;
|
4172
|
+
extensionId: number;
|
4173
|
+
extensionName: string;
|
4174
|
+
telephonySignature: string | null;
|
4175
|
+
};
|
4176
|
+
} | null | undefined;
|
3797
4177
|
} | null | undefined;
|
3798
4178
|
}>>;
|
3799
4179
|
queue: z.ZodNullable<z.ZodObject<{
|
@@ -5346,6 +5726,50 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5346
5726
|
extensionId: number;
|
5347
5727
|
extensionName: string;
|
5348
5728
|
telephonySignature: string | null;
|
5729
|
+
user?: {
|
5730
|
+
id: string;
|
5731
|
+
address: string | null;
|
5732
|
+
name: string;
|
5733
|
+
email: string;
|
5734
|
+
createdAt: Date;
|
5735
|
+
updatedAt: Date;
|
5736
|
+
deletedAt: Date | null;
|
5737
|
+
emailVerifiedAt: Date | null;
|
5738
|
+
password: string;
|
5739
|
+
phone: string | null;
|
5740
|
+
notificationCount: number | null;
|
5741
|
+
roles: {
|
5742
|
+
id: string;
|
5743
|
+
description: string | null;
|
5744
|
+
createdAt: Date;
|
5745
|
+
updatedAt: Date;
|
5746
|
+
deletedAt: Date | null;
|
5747
|
+
systemName: string;
|
5748
|
+
displayName: string;
|
5749
|
+
permissions: {
|
5750
|
+
id: string;
|
5751
|
+
description: string | null;
|
5752
|
+
createdAt: Date;
|
5753
|
+
updatedAt: Date;
|
5754
|
+
deletedAt: Date | null;
|
5755
|
+
systemName: string;
|
5756
|
+
displayName: string;
|
5757
|
+
}[];
|
5758
|
+
}[];
|
5759
|
+
extension: {
|
5760
|
+
id: string;
|
5761
|
+
createdAt: Date;
|
5762
|
+
updatedAt: Date;
|
5763
|
+
deletedAt: Date | null;
|
5764
|
+
userId: string | null;
|
5765
|
+
sipServerUrl: string;
|
5766
|
+
sipUserName: string;
|
5767
|
+
webphoneLoginUser: string;
|
5768
|
+
extensionId: number;
|
5769
|
+
extensionName: string;
|
5770
|
+
telephonySignature: string | null;
|
5771
|
+
};
|
5772
|
+
} | null | undefined;
|
5349
5773
|
} | null | undefined;
|
5350
5774
|
} | null;
|
5351
5775
|
queue: {
|
@@ -5985,6 +6409,50 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5985
6409
|
extensionId: number;
|
5986
6410
|
extensionName: string;
|
5987
6411
|
telephonySignature: string | null;
|
6412
|
+
user?: {
|
6413
|
+
id: string;
|
6414
|
+
address: string | null;
|
6415
|
+
name: string;
|
6416
|
+
email: string;
|
6417
|
+
createdAt: Date;
|
6418
|
+
updatedAt: Date;
|
6419
|
+
deletedAt: Date | null;
|
6420
|
+
emailVerifiedAt: Date | null;
|
6421
|
+
password: string;
|
6422
|
+
phone: string | null;
|
6423
|
+
notificationCount: number | null;
|
6424
|
+
roles: {
|
6425
|
+
id: string;
|
6426
|
+
description: string | null;
|
6427
|
+
createdAt: Date;
|
6428
|
+
updatedAt: Date;
|
6429
|
+
deletedAt: Date | null;
|
6430
|
+
systemName: string;
|
6431
|
+
displayName: string;
|
6432
|
+
permissions: {
|
6433
|
+
id: string;
|
6434
|
+
description: string | null;
|
6435
|
+
createdAt: Date;
|
6436
|
+
updatedAt: Date;
|
6437
|
+
deletedAt: Date | null;
|
6438
|
+
systemName: string;
|
6439
|
+
displayName: string;
|
6440
|
+
}[];
|
6441
|
+
}[];
|
6442
|
+
extension: {
|
6443
|
+
id: string;
|
6444
|
+
createdAt: Date;
|
6445
|
+
updatedAt: Date;
|
6446
|
+
deletedAt: Date | null;
|
6447
|
+
userId: string | null;
|
6448
|
+
sipServerUrl: string;
|
6449
|
+
sipUserName: string;
|
6450
|
+
webphoneLoginUser: string;
|
6451
|
+
extensionId: number;
|
6452
|
+
extensionName: string;
|
6453
|
+
telephonySignature: string | null;
|
6454
|
+
};
|
6455
|
+
} | null | undefined;
|
5988
6456
|
} | null | undefined;
|
5989
6457
|
} | null;
|
5990
6458
|
queue: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/cx-log/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAapB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EActB,CAAC;AAGH,eAAO,MAAM,wBAAwB
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/cx-log/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAapB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EActB,CAAC;AAGH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2CnC,CAAC"}
|