@kl1/contracts 1.1.26-uat → 1.1.28-uat
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 +324 -184
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +323 -184
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +784 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +169 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +210 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +1667 -141
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +236 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +308 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +4071 -360
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +106 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +164 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +154 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +154 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +390 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +390 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +130 -0
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +106 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +154 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +154 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +154 -0
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +294 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +58 -0
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/package.json +1 -1
@@ -3639,6 +3639,40 @@ export declare const viberContract: {
|
|
3639
3639
|
}>, "many">;
|
3640
3640
|
callFrom: z.ZodNullable<z.ZodString>;
|
3641
3641
|
callTo: z.ZodNullable<z.ZodString>;
|
3642
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3643
|
+
id: z.ZodString;
|
3644
|
+
createdAt: z.ZodDate;
|
3645
|
+
updatedAt: z.ZodDate;
|
3646
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3647
|
+
textValue: z.ZodNullable<z.ZodString>;
|
3648
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
3649
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
3650
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
3651
|
+
entityId: z.ZodString;
|
3652
|
+
attributeId: z.ZodString;
|
3653
|
+
}, "strip", z.ZodTypeAny, {
|
3654
|
+
id: string;
|
3655
|
+
createdAt: Date;
|
3656
|
+
updatedAt: Date;
|
3657
|
+
deletedAt: Date | null;
|
3658
|
+
entityId: string;
|
3659
|
+
attributeId: string;
|
3660
|
+
textValue: string | null;
|
3661
|
+
booleanValue: boolean | null;
|
3662
|
+
numberValue: number | null;
|
3663
|
+
dateValue: Date | null;
|
3664
|
+
}, {
|
3665
|
+
id: string;
|
3666
|
+
createdAt: Date;
|
3667
|
+
updatedAt: Date;
|
3668
|
+
deletedAt: Date | null;
|
3669
|
+
entityId: string;
|
3670
|
+
attributeId: string;
|
3671
|
+
textValue: string | null;
|
3672
|
+
booleanValue: boolean | null;
|
3673
|
+
numberValue: number | null;
|
3674
|
+
dateValue: Date | null;
|
3675
|
+
}>, "many">>;
|
3642
3676
|
}, "strip", z.ZodTypeAny, {
|
3643
3677
|
type: string;
|
3644
3678
|
id: string;
|
@@ -3678,6 +3712,18 @@ export declare const viberContract: {
|
|
3678
3712
|
callFrom: string | null;
|
3679
3713
|
callTo: string | null;
|
3680
3714
|
note: string | null;
|
3715
|
+
customFields?: {
|
3716
|
+
id: string;
|
3717
|
+
createdAt: Date;
|
3718
|
+
updatedAt: Date;
|
3719
|
+
deletedAt: Date | null;
|
3720
|
+
entityId: string;
|
3721
|
+
attributeId: string;
|
3722
|
+
textValue: string | null;
|
3723
|
+
booleanValue: boolean | null;
|
3724
|
+
numberValue: number | null;
|
3725
|
+
dateValue: Date | null;
|
3726
|
+
}[] | undefined;
|
3681
3727
|
}, {
|
3682
3728
|
type: string;
|
3683
3729
|
id: string;
|
@@ -3717,6 +3763,18 @@ export declare const viberContract: {
|
|
3717
3763
|
callFrom: string | null;
|
3718
3764
|
callTo: string | null;
|
3719
3765
|
note: string | null;
|
3766
|
+
customFields?: {
|
3767
|
+
id: string;
|
3768
|
+
createdAt: Date;
|
3769
|
+
updatedAt: Date;
|
3770
|
+
deletedAt: Date | null;
|
3771
|
+
entityId: string;
|
3772
|
+
attributeId: string;
|
3773
|
+
textValue: string | null;
|
3774
|
+
booleanValue: boolean | null;
|
3775
|
+
numberValue: number | null;
|
3776
|
+
dateValue: Date | null;
|
3777
|
+
}[] | undefined;
|
3720
3778
|
}>>;
|
3721
3779
|
}, "strip", z.ZodTypeAny, {
|
3722
3780
|
id: string;
|
@@ -3773,6 +3831,18 @@ export declare const viberContract: {
|
|
3773
3831
|
callFrom: string | null;
|
3774
3832
|
callTo: string | null;
|
3775
3833
|
note: string | null;
|
3834
|
+
customFields?: {
|
3835
|
+
id: string;
|
3836
|
+
createdAt: Date;
|
3837
|
+
updatedAt: Date;
|
3838
|
+
deletedAt: Date | null;
|
3839
|
+
entityId: string;
|
3840
|
+
attributeId: string;
|
3841
|
+
textValue: string | null;
|
3842
|
+
booleanValue: boolean | null;
|
3843
|
+
numberValue: number | null;
|
3844
|
+
dateValue: Date | null;
|
3845
|
+
}[] | undefined;
|
3776
3846
|
} | null;
|
3777
3847
|
}, {
|
3778
3848
|
id: string;
|
@@ -3829,6 +3899,18 @@ export declare const viberContract: {
|
|
3829
3899
|
callFrom: string | null;
|
3830
3900
|
callTo: string | null;
|
3831
3901
|
note: string | null;
|
3902
|
+
customFields?: {
|
3903
|
+
id: string;
|
3904
|
+
createdAt: Date;
|
3905
|
+
updatedAt: Date;
|
3906
|
+
deletedAt: Date | null;
|
3907
|
+
entityId: string;
|
3908
|
+
attributeId: string;
|
3909
|
+
textValue: string | null;
|
3910
|
+
booleanValue: boolean | null;
|
3911
|
+
numberValue: number | null;
|
3912
|
+
dateValue: Date | null;
|
3913
|
+
}[] | undefined;
|
3832
3914
|
} | null;
|
3833
3915
|
}>;
|
3834
3916
|
}, "strip", z.ZodTypeAny, {
|
@@ -4166,6 +4248,18 @@ export declare const viberContract: {
|
|
4166
4248
|
callFrom: string | null;
|
4167
4249
|
callTo: string | null;
|
4168
4250
|
note: string | null;
|
4251
|
+
customFields?: {
|
4252
|
+
id: string;
|
4253
|
+
createdAt: Date;
|
4254
|
+
updatedAt: Date;
|
4255
|
+
deletedAt: Date | null;
|
4256
|
+
entityId: string;
|
4257
|
+
attributeId: string;
|
4258
|
+
textValue: string | null;
|
4259
|
+
booleanValue: boolean | null;
|
4260
|
+
numberValue: number | null;
|
4261
|
+
dateValue: Date | null;
|
4262
|
+
}[] | undefined;
|
4169
4263
|
} | null;
|
4170
4264
|
};
|
4171
4265
|
}, {
|
@@ -4503,6 +4597,18 @@ export declare const viberContract: {
|
|
4503
4597
|
callFrom: string | null;
|
4504
4598
|
callTo: string | null;
|
4505
4599
|
note: string | null;
|
4600
|
+
customFields?: {
|
4601
|
+
id: string;
|
4602
|
+
createdAt: Date;
|
4603
|
+
updatedAt: Date;
|
4604
|
+
deletedAt: Date | null;
|
4605
|
+
entityId: string;
|
4606
|
+
attributeId: string;
|
4607
|
+
textValue: string | null;
|
4608
|
+
booleanValue: boolean | null;
|
4609
|
+
numberValue: number | null;
|
4610
|
+
dateValue: Date | null;
|
4611
|
+
}[] | undefined;
|
4506
4612
|
} | null;
|
4507
4613
|
};
|
4508
4614
|
}>;
|
@@ -6586,6 +6692,18 @@ export declare const viberContract: {
|
|
6586
6692
|
callFrom: string | null;
|
6587
6693
|
callTo: string | null;
|
6588
6694
|
note: string | null;
|
6695
|
+
customFields?: {
|
6696
|
+
id: string;
|
6697
|
+
createdAt: Date;
|
6698
|
+
updatedAt: Date;
|
6699
|
+
deletedAt: Date | null;
|
6700
|
+
entityId: string;
|
6701
|
+
attributeId: string;
|
6702
|
+
textValue: string | null;
|
6703
|
+
booleanValue: boolean | null;
|
6704
|
+
numberValue: number | null;
|
6705
|
+
dateValue: Date | null;
|
6706
|
+
}[] | undefined;
|
6589
6707
|
} | null;
|
6590
6708
|
};
|
6591
6709
|
};
|
@@ -7249,6 +7367,18 @@ export declare const viberContract: {
|
|
7249
7367
|
callFrom: string | null;
|
7250
7368
|
callTo: string | null;
|
7251
7369
|
note: string | null;
|
7370
|
+
customFields?: {
|
7371
|
+
id: string;
|
7372
|
+
createdAt: Date;
|
7373
|
+
updatedAt: Date;
|
7374
|
+
deletedAt: Date | null;
|
7375
|
+
entityId: string;
|
7376
|
+
attributeId: string;
|
7377
|
+
textValue: string | null;
|
7378
|
+
booleanValue: boolean | null;
|
7379
|
+
numberValue: number | null;
|
7380
|
+
dateValue: Date | null;
|
7381
|
+
}[] | undefined;
|
7252
7382
|
} | null;
|
7253
7383
|
};
|
7254
7384
|
};
|
@@ -7914,6 +8044,18 @@ export declare const viberContract: {
|
|
7914
8044
|
callFrom: string | null;
|
7915
8045
|
callTo: string | null;
|
7916
8046
|
note: string | null;
|
8047
|
+
customFields?: {
|
8048
|
+
id: string;
|
8049
|
+
createdAt: Date;
|
8050
|
+
updatedAt: Date;
|
8051
|
+
deletedAt: Date | null;
|
8052
|
+
entityId: string;
|
8053
|
+
attributeId: string;
|
8054
|
+
textValue: string | null;
|
8055
|
+
booleanValue: boolean | null;
|
8056
|
+
numberValue: number | null;
|
8057
|
+
dateValue: Date | null;
|
8058
|
+
}[] | undefined;
|
7917
8059
|
} | null;
|
7918
8060
|
};
|
7919
8061
|
};
|
@@ -8580,6 +8722,18 @@ export declare const viberContract: {
|
|
8580
8722
|
callFrom: string | null;
|
8581
8723
|
callTo: string | null;
|
8582
8724
|
note: string | null;
|
8725
|
+
customFields?: {
|
8726
|
+
id: string;
|
8727
|
+
createdAt: Date;
|
8728
|
+
updatedAt: Date;
|
8729
|
+
deletedAt: Date | null;
|
8730
|
+
entityId: string;
|
8731
|
+
attributeId: string;
|
8732
|
+
textValue: string | null;
|
8733
|
+
booleanValue: boolean | null;
|
8734
|
+
numberValue: number | null;
|
8735
|
+
dateValue: Date | null;
|
8736
|
+
}[] | undefined;
|
8583
8737
|
} | null;
|
8584
8738
|
};
|
8585
8739
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAalD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAalD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmExB,CAAC"}
|
@@ -2541,6 +2541,40 @@ export declare const webchatContract: {
|
|
2541
2541
|
}>, "many">;
|
2542
2542
|
callFrom: z.ZodNullable<z.ZodString>;
|
2543
2543
|
callTo: z.ZodNullable<z.ZodString>;
|
2544
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2545
|
+
id: z.ZodString;
|
2546
|
+
createdAt: z.ZodDate;
|
2547
|
+
updatedAt: z.ZodDate;
|
2548
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2549
|
+
textValue: z.ZodNullable<z.ZodString>;
|
2550
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2551
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
2552
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
2553
|
+
entityId: z.ZodString;
|
2554
|
+
attributeId: z.ZodString;
|
2555
|
+
}, "strip", z.ZodTypeAny, {
|
2556
|
+
id: string;
|
2557
|
+
createdAt: Date;
|
2558
|
+
updatedAt: Date;
|
2559
|
+
deletedAt: Date | null;
|
2560
|
+
entityId: string;
|
2561
|
+
attributeId: string;
|
2562
|
+
textValue: string | null;
|
2563
|
+
booleanValue: boolean | null;
|
2564
|
+
numberValue: number | null;
|
2565
|
+
dateValue: Date | null;
|
2566
|
+
}, {
|
2567
|
+
id: string;
|
2568
|
+
createdAt: Date;
|
2569
|
+
updatedAt: Date;
|
2570
|
+
deletedAt: Date | null;
|
2571
|
+
entityId: string;
|
2572
|
+
attributeId: string;
|
2573
|
+
textValue: string | null;
|
2574
|
+
booleanValue: boolean | null;
|
2575
|
+
numberValue: number | null;
|
2576
|
+
dateValue: Date | null;
|
2577
|
+
}>, "many">>;
|
2544
2578
|
}, "strip", z.ZodTypeAny, {
|
2545
2579
|
type: string;
|
2546
2580
|
id: string;
|
@@ -2580,6 +2614,18 @@ export declare const webchatContract: {
|
|
2580
2614
|
callFrom: string | null;
|
2581
2615
|
callTo: string | null;
|
2582
2616
|
note: string | null;
|
2617
|
+
customFields?: {
|
2618
|
+
id: string;
|
2619
|
+
createdAt: Date;
|
2620
|
+
updatedAt: Date;
|
2621
|
+
deletedAt: Date | null;
|
2622
|
+
entityId: string;
|
2623
|
+
attributeId: string;
|
2624
|
+
textValue: string | null;
|
2625
|
+
booleanValue: boolean | null;
|
2626
|
+
numberValue: number | null;
|
2627
|
+
dateValue: Date | null;
|
2628
|
+
}[] | undefined;
|
2583
2629
|
}, {
|
2584
2630
|
type: string;
|
2585
2631
|
id: string;
|
@@ -2619,6 +2665,18 @@ export declare const webchatContract: {
|
|
2619
2665
|
callFrom: string | null;
|
2620
2666
|
callTo: string | null;
|
2621
2667
|
note: string | null;
|
2668
|
+
customFields?: {
|
2669
|
+
id: string;
|
2670
|
+
createdAt: Date;
|
2671
|
+
updatedAt: Date;
|
2672
|
+
deletedAt: Date | null;
|
2673
|
+
entityId: string;
|
2674
|
+
attributeId: string;
|
2675
|
+
textValue: string | null;
|
2676
|
+
booleanValue: boolean | null;
|
2677
|
+
numberValue: number | null;
|
2678
|
+
dateValue: Date | null;
|
2679
|
+
}[] | undefined;
|
2622
2680
|
}>>;
|
2623
2681
|
}, "strip", z.ZodTypeAny, {
|
2624
2682
|
id: string;
|
@@ -2675,6 +2733,18 @@ export declare const webchatContract: {
|
|
2675
2733
|
callFrom: string | null;
|
2676
2734
|
callTo: string | null;
|
2677
2735
|
note: string | null;
|
2736
|
+
customFields?: {
|
2737
|
+
id: string;
|
2738
|
+
createdAt: Date;
|
2739
|
+
updatedAt: Date;
|
2740
|
+
deletedAt: Date | null;
|
2741
|
+
entityId: string;
|
2742
|
+
attributeId: string;
|
2743
|
+
textValue: string | null;
|
2744
|
+
booleanValue: boolean | null;
|
2745
|
+
numberValue: number | null;
|
2746
|
+
dateValue: Date | null;
|
2747
|
+
}[] | undefined;
|
2678
2748
|
} | null;
|
2679
2749
|
}, {
|
2680
2750
|
id: string;
|
@@ -2731,6 +2801,18 @@ export declare const webchatContract: {
|
|
2731
2801
|
callFrom: string | null;
|
2732
2802
|
callTo: string | null;
|
2733
2803
|
note: string | null;
|
2804
|
+
customFields?: {
|
2805
|
+
id: string;
|
2806
|
+
createdAt: Date;
|
2807
|
+
updatedAt: Date;
|
2808
|
+
deletedAt: Date | null;
|
2809
|
+
entityId: string;
|
2810
|
+
attributeId: string;
|
2811
|
+
textValue: string | null;
|
2812
|
+
booleanValue: boolean | null;
|
2813
|
+
numberValue: number | null;
|
2814
|
+
dateValue: Date | null;
|
2815
|
+
}[] | undefined;
|
2734
2816
|
} | null;
|
2735
2817
|
}>;
|
2736
2818
|
}, "strip", z.ZodTypeAny, {
|
@@ -3068,6 +3150,18 @@ export declare const webchatContract: {
|
|
3068
3150
|
callFrom: string | null;
|
3069
3151
|
callTo: string | null;
|
3070
3152
|
note: string | null;
|
3153
|
+
customFields?: {
|
3154
|
+
id: string;
|
3155
|
+
createdAt: Date;
|
3156
|
+
updatedAt: Date;
|
3157
|
+
deletedAt: Date | null;
|
3158
|
+
entityId: string;
|
3159
|
+
attributeId: string;
|
3160
|
+
textValue: string | null;
|
3161
|
+
booleanValue: boolean | null;
|
3162
|
+
numberValue: number | null;
|
3163
|
+
dateValue: Date | null;
|
3164
|
+
}[] | undefined;
|
3071
3165
|
} | null;
|
3072
3166
|
};
|
3073
3167
|
}, {
|
@@ -3405,6 +3499,18 @@ export declare const webchatContract: {
|
|
3405
3499
|
callFrom: string | null;
|
3406
3500
|
callTo: string | null;
|
3407
3501
|
note: string | null;
|
3502
|
+
customFields?: {
|
3503
|
+
id: string;
|
3504
|
+
createdAt: Date;
|
3505
|
+
updatedAt: Date;
|
3506
|
+
deletedAt: Date | null;
|
3507
|
+
entityId: string;
|
3508
|
+
attributeId: string;
|
3509
|
+
textValue: string | null;
|
3510
|
+
booleanValue: boolean | null;
|
3511
|
+
numberValue: number | null;
|
3512
|
+
dateValue: Date | null;
|
3513
|
+
}[] | undefined;
|
3408
3514
|
} | null;
|
3409
3515
|
};
|
3410
3516
|
}>;
|
@@ -5488,6 +5594,18 @@ export declare const webchatContract: {
|
|
5488
5594
|
callFrom: string | null;
|
5489
5595
|
callTo: string | null;
|
5490
5596
|
note: string | null;
|
5597
|
+
customFields?: {
|
5598
|
+
id: string;
|
5599
|
+
createdAt: Date;
|
5600
|
+
updatedAt: Date;
|
5601
|
+
deletedAt: Date | null;
|
5602
|
+
entityId: string;
|
5603
|
+
attributeId: string;
|
5604
|
+
textValue: string | null;
|
5605
|
+
booleanValue: boolean | null;
|
5606
|
+
numberValue: number | null;
|
5607
|
+
dateValue: Date | null;
|
5608
|
+
}[] | undefined;
|
5491
5609
|
} | null;
|
5492
5610
|
};
|
5493
5611
|
};
|
@@ -6151,6 +6269,18 @@ export declare const webchatContract: {
|
|
6151
6269
|
callFrom: string | null;
|
6152
6270
|
callTo: string | null;
|
6153
6271
|
note: string | null;
|
6272
|
+
customFields?: {
|
6273
|
+
id: string;
|
6274
|
+
createdAt: Date;
|
6275
|
+
updatedAt: Date;
|
6276
|
+
deletedAt: Date | null;
|
6277
|
+
entityId: string;
|
6278
|
+
attributeId: string;
|
6279
|
+
textValue: string | null;
|
6280
|
+
booleanValue: boolean | null;
|
6281
|
+
numberValue: number | null;
|
6282
|
+
dateValue: Date | null;
|
6283
|
+
}[] | undefined;
|
6154
6284
|
} | null;
|
6155
6285
|
};
|
6156
6286
|
};
|
@@ -6816,6 +6946,18 @@ export declare const webchatContract: {
|
|
6816
6946
|
callFrom: string | null;
|
6817
6947
|
callTo: string | null;
|
6818
6948
|
note: string | null;
|
6949
|
+
customFields?: {
|
6950
|
+
id: string;
|
6951
|
+
createdAt: Date;
|
6952
|
+
updatedAt: Date;
|
6953
|
+
deletedAt: Date | null;
|
6954
|
+
entityId: string;
|
6955
|
+
attributeId: string;
|
6956
|
+
textValue: string | null;
|
6957
|
+
booleanValue: boolean | null;
|
6958
|
+
numberValue: number | null;
|
6959
|
+
dateValue: Date | null;
|
6960
|
+
}[] | undefined;
|
6819
6961
|
} | null;
|
6820
6962
|
};
|
6821
6963
|
};
|
@@ -7482,6 +7624,18 @@ export declare const webchatContract: {
|
|
7482
7624
|
callFrom: string | null;
|
7483
7625
|
callTo: string | null;
|
7484
7626
|
note: string | null;
|
7627
|
+
customFields?: {
|
7628
|
+
id: string;
|
7629
|
+
createdAt: Date;
|
7630
|
+
updatedAt: Date;
|
7631
|
+
deletedAt: Date | null;
|
7632
|
+
entityId: string;
|
7633
|
+
attributeId: string;
|
7634
|
+
textValue: string | null;
|
7635
|
+
booleanValue: boolean | null;
|
7636
|
+
numberValue: number | null;
|
7637
|
+
dateValue: Date | null;
|
7638
|
+
}[] | undefined;
|
7485
7639
|
} | null;
|
7486
7640
|
};
|
7487
7641
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/webchat/index.ts"],"names":[],"mappings":"AAKA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AAOvD,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,eAAe
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/webchat/index.ts"],"names":[],"mappings":"AAKA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AAOvD,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyB1B,CAAC"}
|