@kl1/contracts 1.3.31 → 1.3.33
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/activity-log/index.d.ts +1 -1
- package/dist/api-contracts/src/attribute/index.d.ts +7 -7
- package/dist/api-contracts/src/auth/index.d.ts +1 -1
- package/dist/api-contracts/src/automation-queue/index.d.ts +7 -7
- package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
- package/dist/api-contracts/src/aws/index.d.ts +2 -2
- package/dist/api-contracts/src/botpress/index.d.ts +2 -2
- package/dist/api-contracts/src/business-calendar/index.d.ts +4 -4
- package/dist/api-contracts/src/business-calendar/index.d.ts.map +1 -1
- package/dist/api-contracts/src/category/index.d.ts +7 -7
- package/dist/api-contracts/src/channel/index.d.ts +20 -20
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1821 -1821
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +400 -400
- package/dist/api-contracts/src/chat/validation.d.ts +321 -321
- package/dist/api-contracts/src/comment/index.d.ts +364 -364
- package/dist/api-contracts/src/comment/schema.d.ts +88 -88
- package/dist/api-contracts/src/contract.d.ts +33508 -33508
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +64 -64
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +80 -80
- package/dist/api-contracts/src/dashboard/index.d.ts +19 -19
- package/dist/api-contracts/src/evaluate-form/index.d.ts +1 -1
- package/dist/api-contracts/src/extension/index.d.ts +7 -7
- package/dist/api-contracts/src/facebook-feed/index.d.ts +220 -220
- package/dist/api-contracts/src/general-setting/index.d.ts +2 -2
- package/dist/api-contracts/src/hold-label/index.d.ts +10 -10
- package/dist/api-contracts/src/instagram/index.d.ts +220 -220
- package/dist/api-contracts/src/line/index.d.ts +220 -220
- package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts +1 -1
- package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +240 -240
- package/dist/api-contracts/src/mail/room-contract.d.ts +240 -240
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +80 -80
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +60 -60
- package/dist/api-contracts/src/messenger/index.d.ts +220 -220
- package/dist/api-contracts/src/notification/index.d.ts +4 -4
- package/dist/api-contracts/src/permission/index.d.ts +1 -1
- package/dist/api-contracts/src/presence-status/index.d.ts +5 -5
- package/dist/api-contracts/src/role/index.d.ts +5 -5
- package/dist/api-contracts/src/snippet/index.d.ts +8 -8
- package/dist/api-contracts/src/subscription/index.d.ts +5 -5
- package/dist/api-contracts/src/tag/index.d.ts +4 -4
- package/dist/api-contracts/src/telegram/index.d.ts +220 -220
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +3 -3
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +14 -14
- package/dist/api-contracts/src/telephony-extension/index.d.ts +1 -1
- package/dist/api-contracts/src/ticket/index.d.ts +672 -672
- package/dist/api-contracts/src/ticket/schema.d.ts +44 -44
- package/dist/api-contracts/src/ticket/validation.d.ts +20 -20
- package/dist/api-contracts/src/upload/index.d.ts +2 -2
- package/dist/api-contracts/src/user/index.d.ts +7 -7
- package/dist/api-contracts/src/user-presence-status-log/index.d.ts +2 -2
- package/dist/api-contracts/src/viber/index.d.ts +220 -220
- package/dist/api-contracts/src/webchat/index.d.ts +220 -220
- package/dist/api-contracts/src/whatsapp/index.d.ts +220 -220
- package/dist/api-contracts/src/widget/index.d.ts +11 -11
- package/dist/api-contracts/src/workflow-rule/index.d.ts +260 -260
- package/dist/api-contracts/src/wrap-up-form/index.d.ts +187 -187
- package/dist/api-contracts/src/wrap-up-form/schema.d.ts +20 -20
- package/dist/index.js +188 -170
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +188 -170
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -3299,6 +3299,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3299
3299
|
createdAt: Date;
|
3300
3300
|
updatedAt: Date;
|
3301
3301
|
deletedAt: Date | null;
|
3302
|
+
tags: {
|
3303
|
+
name: string;
|
3304
|
+
id: string;
|
3305
|
+
createdAt: Date;
|
3306
|
+
updatedAt: Date;
|
3307
|
+
deletedAt: Date | null;
|
3308
|
+
}[];
|
3309
|
+
callFrom: string | null;
|
3310
|
+
callTo: string | null;
|
3311
|
+
note: string | null;
|
3302
3312
|
categories: {
|
3303
3313
|
id: string;
|
3304
3314
|
value: string;
|
@@ -3321,16 +3331,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3321
3331
|
}[];
|
3322
3332
|
}[];
|
3323
3333
|
}[];
|
3324
|
-
tags: {
|
3325
|
-
name: string;
|
3326
|
-
id: string;
|
3327
|
-
createdAt: Date;
|
3328
|
-
updatedAt: Date;
|
3329
|
-
deletedAt: Date | null;
|
3330
|
-
}[];
|
3331
|
-
callFrom: string | null;
|
3332
|
-
callTo: string | null;
|
3333
|
-
note: string | null;
|
3334
3334
|
customFields?: {
|
3335
3335
|
id: string;
|
3336
3336
|
createdAt: Date;
|
@@ -3350,6 +3350,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3350
3350
|
createdAt: Date;
|
3351
3351
|
updatedAt: Date;
|
3352
3352
|
deletedAt: Date | null;
|
3353
|
+
tags: {
|
3354
|
+
name: string;
|
3355
|
+
id: string;
|
3356
|
+
createdAt: Date;
|
3357
|
+
updatedAt: Date;
|
3358
|
+
deletedAt: Date | null;
|
3359
|
+
}[];
|
3360
|
+
callFrom: string | null;
|
3361
|
+
callTo: string | null;
|
3362
|
+
note: string | null;
|
3353
3363
|
categories: {
|
3354
3364
|
id: string;
|
3355
3365
|
value: string;
|
@@ -3372,16 +3382,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3372
3382
|
}[];
|
3373
3383
|
}[];
|
3374
3384
|
}[];
|
3375
|
-
tags: {
|
3376
|
-
name: string;
|
3377
|
-
id: string;
|
3378
|
-
createdAt: Date;
|
3379
|
-
updatedAt: Date;
|
3380
|
-
deletedAt: Date | null;
|
3381
|
-
}[];
|
3382
|
-
callFrom: string | null;
|
3383
|
-
callTo: string | null;
|
3384
|
-
note: string | null;
|
3385
3385
|
customFields?: {
|
3386
3386
|
id: string;
|
3387
3387
|
createdAt: Date;
|
@@ -3490,6 +3490,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3490
3490
|
createdAt: Date;
|
3491
3491
|
updatedAt: Date;
|
3492
3492
|
deletedAt: Date | null;
|
3493
|
+
tags: {
|
3494
|
+
name: string;
|
3495
|
+
id: string;
|
3496
|
+
createdAt: Date;
|
3497
|
+
updatedAt: Date;
|
3498
|
+
deletedAt: Date | null;
|
3499
|
+
}[];
|
3500
|
+
callFrom: string | null;
|
3501
|
+
callTo: string | null;
|
3502
|
+
note: string | null;
|
3493
3503
|
categories: {
|
3494
3504
|
id: string;
|
3495
3505
|
value: string;
|
@@ -3512,16 +3522,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3512
3522
|
}[];
|
3513
3523
|
}[];
|
3514
3524
|
}[];
|
3515
|
-
tags: {
|
3516
|
-
name: string;
|
3517
|
-
id: string;
|
3518
|
-
createdAt: Date;
|
3519
|
-
updatedAt: Date;
|
3520
|
-
deletedAt: Date | null;
|
3521
|
-
}[];
|
3522
|
-
callFrom: string | null;
|
3523
|
-
callTo: string | null;
|
3524
|
-
note: string | null;
|
3525
3525
|
customFields?: {
|
3526
3526
|
id: string;
|
3527
3527
|
createdAt: Date;
|
@@ -3580,6 +3580,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3580
3580
|
createdAt: Date;
|
3581
3581
|
updatedAt: Date;
|
3582
3582
|
deletedAt: Date | null;
|
3583
|
+
tags: {
|
3584
|
+
name: string;
|
3585
|
+
id: string;
|
3586
|
+
createdAt: Date;
|
3587
|
+
updatedAt: Date;
|
3588
|
+
deletedAt: Date | null;
|
3589
|
+
}[];
|
3590
|
+
callFrom: string | null;
|
3591
|
+
callTo: string | null;
|
3592
|
+
note: string | null;
|
3583
3593
|
categories: {
|
3584
3594
|
id: string;
|
3585
3595
|
value: string;
|
@@ -3602,16 +3612,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
3602
3612
|
}[];
|
3603
3613
|
}[];
|
3604
3614
|
}[];
|
3605
|
-
tags: {
|
3606
|
-
name: string;
|
3607
|
-
id: string;
|
3608
|
-
createdAt: Date;
|
3609
|
-
updatedAt: Date;
|
3610
|
-
deletedAt: Date | null;
|
3611
|
-
}[];
|
3612
|
-
callFrom: string | null;
|
3613
|
-
callTo: string | null;
|
3614
|
-
note: string | null;
|
3615
3615
|
customFields?: {
|
3616
3616
|
id: string;
|
3617
3617
|
createdAt: Date;
|
@@ -4025,6 +4025,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
4025
4025
|
createdAt: Date;
|
4026
4026
|
updatedAt: Date;
|
4027
4027
|
deletedAt: Date | null;
|
4028
|
+
tags: {
|
4029
|
+
name: string;
|
4030
|
+
id: string;
|
4031
|
+
createdAt: Date;
|
4032
|
+
updatedAt: Date;
|
4033
|
+
deletedAt: Date | null;
|
4034
|
+
}[];
|
4035
|
+
callFrom: string | null;
|
4036
|
+
callTo: string | null;
|
4037
|
+
note: string | null;
|
4028
4038
|
categories: {
|
4029
4039
|
id: string;
|
4030
4040
|
value: string;
|
@@ -4047,16 +4057,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
4047
4057
|
}[];
|
4048
4058
|
}[];
|
4049
4059
|
}[];
|
4050
|
-
tags: {
|
4051
|
-
name: string;
|
4052
|
-
id: string;
|
4053
|
-
createdAt: Date;
|
4054
|
-
updatedAt: Date;
|
4055
|
-
deletedAt: Date | null;
|
4056
|
-
}[];
|
4057
|
-
callFrom: string | null;
|
4058
|
-
callTo: string | null;
|
4059
|
-
note: string | null;
|
4060
4060
|
customFields?: {
|
4061
4061
|
id: string;
|
4062
4062
|
createdAt: Date;
|
@@ -4454,6 +4454,16 @@ export declare const RoomSchema: z.ZodObject<{
|
|
4454
4454
|
createdAt: Date;
|
4455
4455
|
updatedAt: Date;
|
4456
4456
|
deletedAt: Date | null;
|
4457
|
+
tags: {
|
4458
|
+
name: string;
|
4459
|
+
id: string;
|
4460
|
+
createdAt: Date;
|
4461
|
+
updatedAt: Date;
|
4462
|
+
deletedAt: Date | null;
|
4463
|
+
}[];
|
4464
|
+
callFrom: string | null;
|
4465
|
+
callTo: string | null;
|
4466
|
+
note: string | null;
|
4457
4467
|
categories: {
|
4458
4468
|
id: string;
|
4459
4469
|
value: string;
|
@@ -4476,16 +4486,6 @@ export declare const RoomSchema: z.ZodObject<{
|
|
4476
4486
|
}[];
|
4477
4487
|
}[];
|
4478
4488
|
}[];
|
4479
|
-
tags: {
|
4480
|
-
name: string;
|
4481
|
-
id: string;
|
4482
|
-
createdAt: Date;
|
4483
|
-
updatedAt: Date;
|
4484
|
-
deletedAt: Date | null;
|
4485
|
-
}[];
|
4486
|
-
callFrom: string | null;
|
4487
|
-
callTo: string | null;
|
4488
|
-
note: string | null;
|
4489
4489
|
customFields?: {
|
4490
4490
|
id: string;
|
4491
4491
|
createdAt: Date;
|
@@ -6764,6 +6764,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6764
6764
|
createdAt: Date;
|
6765
6765
|
updatedAt: Date;
|
6766
6766
|
deletedAt: Date | null;
|
6767
|
+
tags: {
|
6768
|
+
name: string;
|
6769
|
+
id: string;
|
6770
|
+
createdAt: Date;
|
6771
|
+
updatedAt: Date;
|
6772
|
+
deletedAt: Date | null;
|
6773
|
+
}[];
|
6774
|
+
callFrom: string | null;
|
6775
|
+
callTo: string | null;
|
6776
|
+
note: string | null;
|
6767
6777
|
categories: {
|
6768
6778
|
id: string;
|
6769
6779
|
value: string;
|
@@ -6786,16 +6796,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6786
6796
|
}[];
|
6787
6797
|
}[];
|
6788
6798
|
}[];
|
6789
|
-
tags: {
|
6790
|
-
name: string;
|
6791
|
-
id: string;
|
6792
|
-
createdAt: Date;
|
6793
|
-
updatedAt: Date;
|
6794
|
-
deletedAt: Date | null;
|
6795
|
-
}[];
|
6796
|
-
callFrom: string | null;
|
6797
|
-
callTo: string | null;
|
6798
|
-
note: string | null;
|
6799
6799
|
customFields?: {
|
6800
6800
|
id: string;
|
6801
6801
|
createdAt: Date;
|
@@ -6815,6 +6815,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6815
6815
|
createdAt: Date;
|
6816
6816
|
updatedAt: Date;
|
6817
6817
|
deletedAt: Date | null;
|
6818
|
+
tags: {
|
6819
|
+
name: string;
|
6820
|
+
id: string;
|
6821
|
+
createdAt: Date;
|
6822
|
+
updatedAt: Date;
|
6823
|
+
deletedAt: Date | null;
|
6824
|
+
}[];
|
6825
|
+
callFrom: string | null;
|
6826
|
+
callTo: string | null;
|
6827
|
+
note: string | null;
|
6818
6828
|
categories: {
|
6819
6829
|
id: string;
|
6820
6830
|
value: string;
|
@@ -6837,16 +6847,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6837
6847
|
}[];
|
6838
6848
|
}[];
|
6839
6849
|
}[];
|
6840
|
-
tags: {
|
6841
|
-
name: string;
|
6842
|
-
id: string;
|
6843
|
-
createdAt: Date;
|
6844
|
-
updatedAt: Date;
|
6845
|
-
deletedAt: Date | null;
|
6846
|
-
}[];
|
6847
|
-
callFrom: string | null;
|
6848
|
-
callTo: string | null;
|
6849
|
-
note: string | null;
|
6850
6850
|
customFields?: {
|
6851
6851
|
id: string;
|
6852
6852
|
createdAt: Date;
|
@@ -6955,6 +6955,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6955
6955
|
createdAt: Date;
|
6956
6956
|
updatedAt: Date;
|
6957
6957
|
deletedAt: Date | null;
|
6958
|
+
tags: {
|
6959
|
+
name: string;
|
6960
|
+
id: string;
|
6961
|
+
createdAt: Date;
|
6962
|
+
updatedAt: Date;
|
6963
|
+
deletedAt: Date | null;
|
6964
|
+
}[];
|
6965
|
+
callFrom: string | null;
|
6966
|
+
callTo: string | null;
|
6967
|
+
note: string | null;
|
6958
6968
|
categories: {
|
6959
6969
|
id: string;
|
6960
6970
|
value: string;
|
@@ -6977,16 +6987,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
6977
6987
|
}[];
|
6978
6988
|
}[];
|
6979
6989
|
}[];
|
6980
|
-
tags: {
|
6981
|
-
name: string;
|
6982
|
-
id: string;
|
6983
|
-
createdAt: Date;
|
6984
|
-
updatedAt: Date;
|
6985
|
-
deletedAt: Date | null;
|
6986
|
-
}[];
|
6987
|
-
callFrom: string | null;
|
6988
|
-
callTo: string | null;
|
6989
|
-
note: string | null;
|
6990
6990
|
customFields?: {
|
6991
6991
|
id: string;
|
6992
6992
|
createdAt: Date;
|
@@ -7045,6 +7045,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7045
7045
|
createdAt: Date;
|
7046
7046
|
updatedAt: Date;
|
7047
7047
|
deletedAt: Date | null;
|
7048
|
+
tags: {
|
7049
|
+
name: string;
|
7050
|
+
id: string;
|
7051
|
+
createdAt: Date;
|
7052
|
+
updatedAt: Date;
|
7053
|
+
deletedAt: Date | null;
|
7054
|
+
}[];
|
7055
|
+
callFrom: string | null;
|
7056
|
+
callTo: string | null;
|
7057
|
+
note: string | null;
|
7048
7058
|
categories: {
|
7049
7059
|
id: string;
|
7050
7060
|
value: string;
|
@@ -7067,16 +7077,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7067
7077
|
}[];
|
7068
7078
|
}[];
|
7069
7079
|
}[];
|
7070
|
-
tags: {
|
7071
|
-
name: string;
|
7072
|
-
id: string;
|
7073
|
-
createdAt: Date;
|
7074
|
-
updatedAt: Date;
|
7075
|
-
deletedAt: Date | null;
|
7076
|
-
}[];
|
7077
|
-
callFrom: string | null;
|
7078
|
-
callTo: string | null;
|
7079
|
-
note: string | null;
|
7080
7080
|
customFields?: {
|
7081
7081
|
id: string;
|
7082
7082
|
createdAt: Date;
|
@@ -7490,6 +7490,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7490
7490
|
createdAt: Date;
|
7491
7491
|
updatedAt: Date;
|
7492
7492
|
deletedAt: Date | null;
|
7493
|
+
tags: {
|
7494
|
+
name: string;
|
7495
|
+
id: string;
|
7496
|
+
createdAt: Date;
|
7497
|
+
updatedAt: Date;
|
7498
|
+
deletedAt: Date | null;
|
7499
|
+
}[];
|
7500
|
+
callFrom: string | null;
|
7501
|
+
callTo: string | null;
|
7502
|
+
note: string | null;
|
7493
7503
|
categories: {
|
7494
7504
|
id: string;
|
7495
7505
|
value: string;
|
@@ -7512,16 +7522,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7512
7522
|
}[];
|
7513
7523
|
}[];
|
7514
7524
|
}[];
|
7515
|
-
tags: {
|
7516
|
-
name: string;
|
7517
|
-
id: string;
|
7518
|
-
createdAt: Date;
|
7519
|
-
updatedAt: Date;
|
7520
|
-
deletedAt: Date | null;
|
7521
|
-
}[];
|
7522
|
-
callFrom: string | null;
|
7523
|
-
callTo: string | null;
|
7524
|
-
note: string | null;
|
7525
7525
|
customFields?: {
|
7526
7526
|
id: string;
|
7527
7527
|
createdAt: Date;
|
@@ -7919,6 +7919,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7919
7919
|
createdAt: Date;
|
7920
7920
|
updatedAt: Date;
|
7921
7921
|
deletedAt: Date | null;
|
7922
|
+
tags: {
|
7923
|
+
name: string;
|
7924
|
+
id: string;
|
7925
|
+
createdAt: Date;
|
7926
|
+
updatedAt: Date;
|
7927
|
+
deletedAt: Date | null;
|
7928
|
+
}[];
|
7929
|
+
callFrom: string | null;
|
7930
|
+
callTo: string | null;
|
7931
|
+
note: string | null;
|
7922
7932
|
categories: {
|
7923
7933
|
id: string;
|
7924
7934
|
value: string;
|
@@ -7941,16 +7951,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
7941
7951
|
}[];
|
7942
7952
|
}[];
|
7943
7953
|
}[];
|
7944
|
-
tags: {
|
7945
|
-
name: string;
|
7946
|
-
id: string;
|
7947
|
-
createdAt: Date;
|
7948
|
-
updatedAt: Date;
|
7949
|
-
deletedAt: Date | null;
|
7950
|
-
}[];
|
7951
|
-
callFrom: string | null;
|
7952
|
-
callTo: string | null;
|
7953
|
-
note: string | null;
|
7954
7954
|
customFields?: {
|
7955
7955
|
id: string;
|
7956
7956
|
createdAt: Date;
|
@@ -10121,6 +10121,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
10121
10121
|
createdAt: Date;
|
10122
10122
|
updatedAt: Date;
|
10123
10123
|
deletedAt: Date | null;
|
10124
|
+
tags: {
|
10125
|
+
name: string;
|
10126
|
+
id: string;
|
10127
|
+
createdAt: Date;
|
10128
|
+
updatedAt: Date;
|
10129
|
+
deletedAt: Date | null;
|
10130
|
+
}[];
|
10131
|
+
callFrom: string | null;
|
10132
|
+
callTo: string | null;
|
10133
|
+
note: string | null;
|
10124
10134
|
categories: {
|
10125
10135
|
id: string;
|
10126
10136
|
value: string;
|
@@ -10143,16 +10153,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
10143
10153
|
}[];
|
10144
10154
|
}[];
|
10145
10155
|
}[];
|
10146
|
-
tags: {
|
10147
|
-
name: string;
|
10148
|
-
id: string;
|
10149
|
-
createdAt: Date;
|
10150
|
-
updatedAt: Date;
|
10151
|
-
deletedAt: Date | null;
|
10152
|
-
}[];
|
10153
|
-
callFrom: string | null;
|
10154
|
-
callTo: string | null;
|
10155
|
-
note: string | null;
|
10156
10156
|
customFields?: {
|
10157
10157
|
id: string;
|
10158
10158
|
createdAt: Date;
|
@@ -10887,6 +10887,16 @@ export declare const MessageSchema: z.ZodObject<{
|
|
10887
10887
|
createdAt: Date;
|
10888
10888
|
updatedAt: Date;
|
10889
10889
|
deletedAt: Date | null;
|
10890
|
+
tags: {
|
10891
|
+
name: string;
|
10892
|
+
id: string;
|
10893
|
+
createdAt: Date;
|
10894
|
+
updatedAt: Date;
|
10895
|
+
deletedAt: Date | null;
|
10896
|
+
}[];
|
10897
|
+
callFrom: string | null;
|
10898
|
+
callTo: string | null;
|
10899
|
+
note: string | null;
|
10890
10900
|
categories: {
|
10891
10901
|
id: string;
|
10892
10902
|
value: string;
|
@@ -10909,16 +10919,6 @@ export declare const MessageSchema: z.ZodObject<{
|
|
10909
10919
|
}[];
|
10910
10920
|
}[];
|
10911
10921
|
}[];
|
10912
|
-
tags: {
|
10913
|
-
name: string;
|
10914
|
-
id: string;
|
10915
|
-
createdAt: Date;
|
10916
|
-
updatedAt: Date;
|
10917
|
-
deletedAt: Date | null;
|
10918
|
-
}[];
|
10919
|
-
callFrom: string | null;
|
10920
|
-
callTo: string | null;
|
10921
|
-
note: string | null;
|
10922
10922
|
customFields?: {
|
10923
10923
|
id: string;
|
10924
10924
|
createdAt: Date;
|
@@ -13858,6 +13858,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
13858
13858
|
createdAt: Date;
|
13859
13859
|
updatedAt: Date;
|
13860
13860
|
deletedAt: Date | null;
|
13861
|
+
tags: {
|
13862
|
+
name: string;
|
13863
|
+
id: string;
|
13864
|
+
createdAt: Date;
|
13865
|
+
updatedAt: Date;
|
13866
|
+
deletedAt: Date | null;
|
13867
|
+
}[];
|
13868
|
+
callFrom: string | null;
|
13869
|
+
callTo: string | null;
|
13870
|
+
note: string | null;
|
13861
13871
|
categories: {
|
13862
13872
|
id: string;
|
13863
13873
|
value: string;
|
@@ -13880,16 +13890,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
13880
13890
|
}[];
|
13881
13891
|
}[];
|
13882
13892
|
}[];
|
13883
|
-
tags: {
|
13884
|
-
name: string;
|
13885
|
-
id: string;
|
13886
|
-
createdAt: Date;
|
13887
|
-
updatedAt: Date;
|
13888
|
-
deletedAt: Date | null;
|
13889
|
-
}[];
|
13890
|
-
callFrom: string | null;
|
13891
|
-
callTo: string | null;
|
13892
|
-
note: string | null;
|
13893
13893
|
customFields?: {
|
13894
13894
|
id: string;
|
13895
13895
|
createdAt: Date;
|
@@ -13909,6 +13909,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
13909
13909
|
createdAt: Date;
|
13910
13910
|
updatedAt: Date;
|
13911
13911
|
deletedAt: Date | null;
|
13912
|
+
tags: {
|
13913
|
+
name: string;
|
13914
|
+
id: string;
|
13915
|
+
createdAt: Date;
|
13916
|
+
updatedAt: Date;
|
13917
|
+
deletedAt: Date | null;
|
13918
|
+
}[];
|
13919
|
+
callFrom: string | null;
|
13920
|
+
callTo: string | null;
|
13921
|
+
note: string | null;
|
13912
13922
|
categories: {
|
13913
13923
|
id: string;
|
13914
13924
|
value: string;
|
@@ -13931,16 +13941,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
13931
13941
|
}[];
|
13932
13942
|
}[];
|
13933
13943
|
}[];
|
13934
|
-
tags: {
|
13935
|
-
name: string;
|
13936
|
-
id: string;
|
13937
|
-
createdAt: Date;
|
13938
|
-
updatedAt: Date;
|
13939
|
-
deletedAt: Date | null;
|
13940
|
-
}[];
|
13941
|
-
callFrom: string | null;
|
13942
|
-
callTo: string | null;
|
13943
|
-
note: string | null;
|
13944
13944
|
customFields?: {
|
13945
13945
|
id: string;
|
13946
13946
|
createdAt: Date;
|
@@ -14049,6 +14049,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
14049
14049
|
createdAt: Date;
|
14050
14050
|
updatedAt: Date;
|
14051
14051
|
deletedAt: Date | null;
|
14052
|
+
tags: {
|
14053
|
+
name: string;
|
14054
|
+
id: string;
|
14055
|
+
createdAt: Date;
|
14056
|
+
updatedAt: Date;
|
14057
|
+
deletedAt: Date | null;
|
14058
|
+
}[];
|
14059
|
+
callFrom: string | null;
|
14060
|
+
callTo: string | null;
|
14061
|
+
note: string | null;
|
14052
14062
|
categories: {
|
14053
14063
|
id: string;
|
14054
14064
|
value: string;
|
@@ -14071,16 +14081,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
14071
14081
|
}[];
|
14072
14082
|
}[];
|
14073
14083
|
}[];
|
14074
|
-
tags: {
|
14075
|
-
name: string;
|
14076
|
-
id: string;
|
14077
|
-
createdAt: Date;
|
14078
|
-
updatedAt: Date;
|
14079
|
-
deletedAt: Date | null;
|
14080
|
-
}[];
|
14081
|
-
callFrom: string | null;
|
14082
|
-
callTo: string | null;
|
14083
|
-
note: string | null;
|
14084
14084
|
customFields?: {
|
14085
14085
|
id: string;
|
14086
14086
|
createdAt: Date;
|
@@ -14139,6 +14139,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
14139
14139
|
createdAt: Date;
|
14140
14140
|
updatedAt: Date;
|
14141
14141
|
deletedAt: Date | null;
|
14142
|
+
tags: {
|
14143
|
+
name: string;
|
14144
|
+
id: string;
|
14145
|
+
createdAt: Date;
|
14146
|
+
updatedAt: Date;
|
14147
|
+
deletedAt: Date | null;
|
14148
|
+
}[];
|
14149
|
+
callFrom: string | null;
|
14150
|
+
callTo: string | null;
|
14151
|
+
note: string | null;
|
14142
14152
|
categories: {
|
14143
14153
|
id: string;
|
14144
14154
|
value: string;
|
@@ -14161,16 +14171,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
14161
14171
|
}[];
|
14162
14172
|
}[];
|
14163
14173
|
}[];
|
14164
|
-
tags: {
|
14165
|
-
name: string;
|
14166
|
-
id: string;
|
14167
|
-
createdAt: Date;
|
14168
|
-
updatedAt: Date;
|
14169
|
-
deletedAt: Date | null;
|
14170
|
-
}[];
|
14171
|
-
callFrom: string | null;
|
14172
|
-
callTo: string | null;
|
14173
|
-
note: string | null;
|
14174
14174
|
customFields?: {
|
14175
14175
|
id: string;
|
14176
14176
|
createdAt: Date;
|
@@ -14584,6 +14584,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
14584
14584
|
createdAt: Date;
|
14585
14585
|
updatedAt: Date;
|
14586
14586
|
deletedAt: Date | null;
|
14587
|
+
tags: {
|
14588
|
+
name: string;
|
14589
|
+
id: string;
|
14590
|
+
createdAt: Date;
|
14591
|
+
updatedAt: Date;
|
14592
|
+
deletedAt: Date | null;
|
14593
|
+
}[];
|
14594
|
+
callFrom: string | null;
|
14595
|
+
callTo: string | null;
|
14596
|
+
note: string | null;
|
14587
14597
|
categories: {
|
14588
14598
|
id: string;
|
14589
14599
|
value: string;
|
@@ -14606,16 +14616,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
14606
14616
|
}[];
|
14607
14617
|
}[];
|
14608
14618
|
}[];
|
14609
|
-
tags: {
|
14610
|
-
name: string;
|
14611
|
-
id: string;
|
14612
|
-
createdAt: Date;
|
14613
|
-
updatedAt: Date;
|
14614
|
-
deletedAt: Date | null;
|
14615
|
-
}[];
|
14616
|
-
callFrom: string | null;
|
14617
|
-
callTo: string | null;
|
14618
|
-
note: string | null;
|
14619
14619
|
customFields?: {
|
14620
14620
|
id: string;
|
14621
14621
|
createdAt: Date;
|
@@ -15013,6 +15013,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15013
15013
|
createdAt: Date;
|
15014
15014
|
updatedAt: Date;
|
15015
15015
|
deletedAt: Date | null;
|
15016
|
+
tags: {
|
15017
|
+
name: string;
|
15018
|
+
id: string;
|
15019
|
+
createdAt: Date;
|
15020
|
+
updatedAt: Date;
|
15021
|
+
deletedAt: Date | null;
|
15022
|
+
}[];
|
15023
|
+
callFrom: string | null;
|
15024
|
+
callTo: string | null;
|
15025
|
+
note: string | null;
|
15016
15026
|
categories: {
|
15017
15027
|
id: string;
|
15018
15028
|
value: string;
|
@@ -15035,16 +15045,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
15035
15045
|
}[];
|
15036
15046
|
}[];
|
15037
15047
|
}[];
|
15038
|
-
tags: {
|
15039
|
-
name: string;
|
15040
|
-
id: string;
|
15041
|
-
createdAt: Date;
|
15042
|
-
updatedAt: Date;
|
15043
|
-
deletedAt: Date | null;
|
15044
|
-
}[];
|
15045
|
-
callFrom: string | null;
|
15046
|
-
callTo: string | null;
|
15047
|
-
note: string | null;
|
15048
15048
|
customFields?: {
|
15049
15049
|
id: string;
|
15050
15050
|
createdAt: Date;
|
@@ -19164,6 +19164,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
19164
19164
|
createdAt: Date;
|
19165
19165
|
updatedAt: Date;
|
19166
19166
|
deletedAt: Date | null;
|
19167
|
+
tags: {
|
19168
|
+
name: string;
|
19169
|
+
id: string;
|
19170
|
+
createdAt: Date;
|
19171
|
+
updatedAt: Date;
|
19172
|
+
deletedAt: Date | null;
|
19173
|
+
}[];
|
19174
|
+
callFrom: string | null;
|
19175
|
+
callTo: string | null;
|
19176
|
+
note: string | null;
|
19167
19177
|
categories: {
|
19168
19178
|
id: string;
|
19169
19179
|
value: string;
|
@@ -19186,16 +19196,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
19186
19196
|
}[];
|
19187
19197
|
}[];
|
19188
19198
|
}[];
|
19189
|
-
tags: {
|
19190
|
-
name: string;
|
19191
|
-
id: string;
|
19192
|
-
createdAt: Date;
|
19193
|
-
updatedAt: Date;
|
19194
|
-
deletedAt: Date | null;
|
19195
|
-
}[];
|
19196
|
-
callFrom: string | null;
|
19197
|
-
callTo: string | null;
|
19198
|
-
note: string | null;
|
19199
19199
|
customFields?: {
|
19200
19200
|
id: string;
|
19201
19201
|
createdAt: Date;
|
@@ -20216,6 +20216,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
20216
20216
|
createdAt: Date;
|
20217
20217
|
updatedAt: Date;
|
20218
20218
|
deletedAt: Date | null;
|
20219
|
+
tags: {
|
20220
|
+
name: string;
|
20221
|
+
id: string;
|
20222
|
+
createdAt: Date;
|
20223
|
+
updatedAt: Date;
|
20224
|
+
deletedAt: Date | null;
|
20225
|
+
}[];
|
20226
|
+
callFrom: string | null;
|
20227
|
+
callTo: string | null;
|
20228
|
+
note: string | null;
|
20219
20229
|
categories: {
|
20220
20230
|
id: string;
|
20221
20231
|
value: string;
|
@@ -20238,16 +20248,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
|
|
20238
20248
|
}[];
|
20239
20249
|
}[];
|
20240
20250
|
}[];
|
20241
|
-
tags: {
|
20242
|
-
name: string;
|
20243
|
-
id: string;
|
20244
|
-
createdAt: Date;
|
20245
|
-
updatedAt: Date;
|
20246
|
-
deletedAt: Date | null;
|
20247
|
-
}[];
|
20248
|
-
callFrom: string | null;
|
20249
|
-
callTo: string | null;
|
20250
|
-
note: string | null;
|
20251
20251
|
customFields?: {
|
20252
20252
|
id: string;
|
20253
20253
|
createdAt: Date;
|
@@ -24475,6 +24475,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24475
24475
|
createdAt: Date;
|
24476
24476
|
updatedAt: Date;
|
24477
24477
|
deletedAt: Date | null;
|
24478
|
+
tags: {
|
24479
|
+
name: string;
|
24480
|
+
id: string;
|
24481
|
+
createdAt: Date;
|
24482
|
+
updatedAt: Date;
|
24483
|
+
deletedAt: Date | null;
|
24484
|
+
}[];
|
24485
|
+
callFrom: string | null;
|
24486
|
+
callTo: string | null;
|
24487
|
+
note: string | null;
|
24478
24488
|
categories: {
|
24479
24489
|
id: string;
|
24480
24490
|
value: string;
|
@@ -24497,16 +24507,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24497
24507
|
}[];
|
24498
24508
|
}[];
|
24499
24509
|
}[];
|
24500
|
-
tags: {
|
24501
|
-
name: string;
|
24502
|
-
id: string;
|
24503
|
-
createdAt: Date;
|
24504
|
-
updatedAt: Date;
|
24505
|
-
deletedAt: Date | null;
|
24506
|
-
}[];
|
24507
|
-
callFrom: string | null;
|
24508
|
-
callTo: string | null;
|
24509
|
-
note: string | null;
|
24510
24510
|
customFields?: {
|
24511
24511
|
id: string;
|
24512
24512
|
createdAt: Date;
|
@@ -24526,6 +24526,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24526
24526
|
createdAt: Date;
|
24527
24527
|
updatedAt: Date;
|
24528
24528
|
deletedAt: Date | null;
|
24529
|
+
tags: {
|
24530
|
+
name: string;
|
24531
|
+
id: string;
|
24532
|
+
createdAt: Date;
|
24533
|
+
updatedAt: Date;
|
24534
|
+
deletedAt: Date | null;
|
24535
|
+
}[];
|
24536
|
+
callFrom: string | null;
|
24537
|
+
callTo: string | null;
|
24538
|
+
note: string | null;
|
24529
24539
|
categories: {
|
24530
24540
|
id: string;
|
24531
24541
|
value: string;
|
@@ -24548,16 +24558,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24548
24558
|
}[];
|
24549
24559
|
}[];
|
24550
24560
|
}[];
|
24551
|
-
tags: {
|
24552
|
-
name: string;
|
24553
|
-
id: string;
|
24554
|
-
createdAt: Date;
|
24555
|
-
updatedAt: Date;
|
24556
|
-
deletedAt: Date | null;
|
24557
|
-
}[];
|
24558
|
-
callFrom: string | null;
|
24559
|
-
callTo: string | null;
|
24560
|
-
note: string | null;
|
24561
24561
|
customFields?: {
|
24562
24562
|
id: string;
|
24563
24563
|
createdAt: Date;
|
@@ -24666,6 +24666,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24666
24666
|
createdAt: Date;
|
24667
24667
|
updatedAt: Date;
|
24668
24668
|
deletedAt: Date | null;
|
24669
|
+
tags: {
|
24670
|
+
name: string;
|
24671
|
+
id: string;
|
24672
|
+
createdAt: Date;
|
24673
|
+
updatedAt: Date;
|
24674
|
+
deletedAt: Date | null;
|
24675
|
+
}[];
|
24676
|
+
callFrom: string | null;
|
24677
|
+
callTo: string | null;
|
24678
|
+
note: string | null;
|
24669
24679
|
categories: {
|
24670
24680
|
id: string;
|
24671
24681
|
value: string;
|
@@ -24688,16 +24698,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24688
24698
|
}[];
|
24689
24699
|
}[];
|
24690
24700
|
}[];
|
24691
|
-
tags: {
|
24692
|
-
name: string;
|
24693
|
-
id: string;
|
24694
|
-
createdAt: Date;
|
24695
|
-
updatedAt: Date;
|
24696
|
-
deletedAt: Date | null;
|
24697
|
-
}[];
|
24698
|
-
callFrom: string | null;
|
24699
|
-
callTo: string | null;
|
24700
|
-
note: string | null;
|
24701
24701
|
customFields?: {
|
24702
24702
|
id: string;
|
24703
24703
|
createdAt: Date;
|
@@ -24756,6 +24756,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24756
24756
|
createdAt: Date;
|
24757
24757
|
updatedAt: Date;
|
24758
24758
|
deletedAt: Date | null;
|
24759
|
+
tags: {
|
24760
|
+
name: string;
|
24761
|
+
id: string;
|
24762
|
+
createdAt: Date;
|
24763
|
+
updatedAt: Date;
|
24764
|
+
deletedAt: Date | null;
|
24765
|
+
}[];
|
24766
|
+
callFrom: string | null;
|
24767
|
+
callTo: string | null;
|
24768
|
+
note: string | null;
|
24759
24769
|
categories: {
|
24760
24770
|
id: string;
|
24761
24771
|
value: string;
|
@@ -24778,16 +24788,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
24778
24788
|
}[];
|
24779
24789
|
}[];
|
24780
24790
|
}[];
|
24781
|
-
tags: {
|
24782
|
-
name: string;
|
24783
|
-
id: string;
|
24784
|
-
createdAt: Date;
|
24785
|
-
updatedAt: Date;
|
24786
|
-
deletedAt: Date | null;
|
24787
|
-
}[];
|
24788
|
-
callFrom: string | null;
|
24789
|
-
callTo: string | null;
|
24790
|
-
note: string | null;
|
24791
24791
|
customFields?: {
|
24792
24792
|
id: string;
|
24793
24793
|
createdAt: Date;
|
@@ -25201,6 +25201,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
25201
25201
|
createdAt: Date;
|
25202
25202
|
updatedAt: Date;
|
25203
25203
|
deletedAt: Date | null;
|
25204
|
+
tags: {
|
25205
|
+
name: string;
|
25206
|
+
id: string;
|
25207
|
+
createdAt: Date;
|
25208
|
+
updatedAt: Date;
|
25209
|
+
deletedAt: Date | null;
|
25210
|
+
}[];
|
25211
|
+
callFrom: string | null;
|
25212
|
+
callTo: string | null;
|
25213
|
+
note: string | null;
|
25204
25214
|
categories: {
|
25205
25215
|
id: string;
|
25206
25216
|
value: string;
|
@@ -25223,16 +25233,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
25223
25233
|
}[];
|
25224
25234
|
}[];
|
25225
25235
|
}[];
|
25226
|
-
tags: {
|
25227
|
-
name: string;
|
25228
|
-
id: string;
|
25229
|
-
createdAt: Date;
|
25230
|
-
updatedAt: Date;
|
25231
|
-
deletedAt: Date | null;
|
25232
|
-
}[];
|
25233
|
-
callFrom: string | null;
|
25234
|
-
callTo: string | null;
|
25235
|
-
note: string | null;
|
25236
25236
|
customFields?: {
|
25237
25237
|
id: string;
|
25238
25238
|
createdAt: Date;
|
@@ -25630,6 +25630,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
25630
25630
|
createdAt: Date;
|
25631
25631
|
updatedAt: Date;
|
25632
25632
|
deletedAt: Date | null;
|
25633
|
+
tags: {
|
25634
|
+
name: string;
|
25635
|
+
id: string;
|
25636
|
+
createdAt: Date;
|
25637
|
+
updatedAt: Date;
|
25638
|
+
deletedAt: Date | null;
|
25639
|
+
}[];
|
25640
|
+
callFrom: string | null;
|
25641
|
+
callTo: string | null;
|
25642
|
+
note: string | null;
|
25633
25643
|
categories: {
|
25634
25644
|
id: string;
|
25635
25645
|
value: string;
|
@@ -25652,16 +25662,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
25652
25662
|
}[];
|
25653
25663
|
}[];
|
25654
25664
|
}[];
|
25655
|
-
tags: {
|
25656
|
-
name: string;
|
25657
|
-
id: string;
|
25658
|
-
createdAt: Date;
|
25659
|
-
updatedAt: Date;
|
25660
|
-
deletedAt: Date | null;
|
25661
|
-
}[];
|
25662
|
-
callFrom: string | null;
|
25663
|
-
callTo: string | null;
|
25664
|
-
note: string | null;
|
25665
25665
|
customFields?: {
|
25666
25666
|
id: string;
|
25667
25667
|
createdAt: Date;
|
@@ -30209,6 +30209,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30209
30209
|
createdAt: Date;
|
30210
30210
|
updatedAt: Date;
|
30211
30211
|
deletedAt: Date | null;
|
30212
|
+
tags: {
|
30213
|
+
name: string;
|
30214
|
+
id: string;
|
30215
|
+
createdAt: Date;
|
30216
|
+
updatedAt: Date;
|
30217
|
+
deletedAt: Date | null;
|
30218
|
+
}[];
|
30219
|
+
callFrom: string | null;
|
30220
|
+
callTo: string | null;
|
30221
|
+
note: string | null;
|
30212
30222
|
categories: {
|
30213
30223
|
id: string;
|
30214
30224
|
value: string;
|
@@ -30231,16 +30241,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30231
30241
|
}[];
|
30232
30242
|
}[];
|
30233
30243
|
}[];
|
30234
|
-
tags: {
|
30235
|
-
name: string;
|
30236
|
-
id: string;
|
30237
|
-
createdAt: Date;
|
30238
|
-
updatedAt: Date;
|
30239
|
-
deletedAt: Date | null;
|
30240
|
-
}[];
|
30241
|
-
callFrom: string | null;
|
30242
|
-
callTo: string | null;
|
30243
|
-
note: string | null;
|
30244
30244
|
customFields?: {
|
30245
30245
|
id: string;
|
30246
30246
|
createdAt: Date;
|
@@ -30260,6 +30260,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30260
30260
|
createdAt: Date;
|
30261
30261
|
updatedAt: Date;
|
30262
30262
|
deletedAt: Date | null;
|
30263
|
+
tags: {
|
30264
|
+
name: string;
|
30265
|
+
id: string;
|
30266
|
+
createdAt: Date;
|
30267
|
+
updatedAt: Date;
|
30268
|
+
deletedAt: Date | null;
|
30269
|
+
}[];
|
30270
|
+
callFrom: string | null;
|
30271
|
+
callTo: string | null;
|
30272
|
+
note: string | null;
|
30263
30273
|
categories: {
|
30264
30274
|
id: string;
|
30265
30275
|
value: string;
|
@@ -30282,16 +30292,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30282
30292
|
}[];
|
30283
30293
|
}[];
|
30284
30294
|
}[];
|
30285
|
-
tags: {
|
30286
|
-
name: string;
|
30287
|
-
id: string;
|
30288
|
-
createdAt: Date;
|
30289
|
-
updatedAt: Date;
|
30290
|
-
deletedAt: Date | null;
|
30291
|
-
}[];
|
30292
|
-
callFrom: string | null;
|
30293
|
-
callTo: string | null;
|
30294
|
-
note: string | null;
|
30295
30295
|
customFields?: {
|
30296
30296
|
id: string;
|
30297
30297
|
createdAt: Date;
|
@@ -30400,6 +30400,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30400
30400
|
createdAt: Date;
|
30401
30401
|
updatedAt: Date;
|
30402
30402
|
deletedAt: Date | null;
|
30403
|
+
tags: {
|
30404
|
+
name: string;
|
30405
|
+
id: string;
|
30406
|
+
createdAt: Date;
|
30407
|
+
updatedAt: Date;
|
30408
|
+
deletedAt: Date | null;
|
30409
|
+
}[];
|
30410
|
+
callFrom: string | null;
|
30411
|
+
callTo: string | null;
|
30412
|
+
note: string | null;
|
30403
30413
|
categories: {
|
30404
30414
|
id: string;
|
30405
30415
|
value: string;
|
@@ -30422,16 +30432,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30422
30432
|
}[];
|
30423
30433
|
}[];
|
30424
30434
|
}[];
|
30425
|
-
tags: {
|
30426
|
-
name: string;
|
30427
|
-
id: string;
|
30428
|
-
createdAt: Date;
|
30429
|
-
updatedAt: Date;
|
30430
|
-
deletedAt: Date | null;
|
30431
|
-
}[];
|
30432
|
-
callFrom: string | null;
|
30433
|
-
callTo: string | null;
|
30434
|
-
note: string | null;
|
30435
30435
|
customFields?: {
|
30436
30436
|
id: string;
|
30437
30437
|
createdAt: Date;
|
@@ -30490,6 +30490,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30490
30490
|
createdAt: Date;
|
30491
30491
|
updatedAt: Date;
|
30492
30492
|
deletedAt: Date | null;
|
30493
|
+
tags: {
|
30494
|
+
name: string;
|
30495
|
+
id: string;
|
30496
|
+
createdAt: Date;
|
30497
|
+
updatedAt: Date;
|
30498
|
+
deletedAt: Date | null;
|
30499
|
+
}[];
|
30500
|
+
callFrom: string | null;
|
30501
|
+
callTo: string | null;
|
30502
|
+
note: string | null;
|
30493
30503
|
categories: {
|
30494
30504
|
id: string;
|
30495
30505
|
value: string;
|
@@ -30512,16 +30522,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30512
30522
|
}[];
|
30513
30523
|
}[];
|
30514
30524
|
}[];
|
30515
|
-
tags: {
|
30516
|
-
name: string;
|
30517
|
-
id: string;
|
30518
|
-
createdAt: Date;
|
30519
|
-
updatedAt: Date;
|
30520
|
-
deletedAt: Date | null;
|
30521
|
-
}[];
|
30522
|
-
callFrom: string | null;
|
30523
|
-
callTo: string | null;
|
30524
|
-
note: string | null;
|
30525
30525
|
customFields?: {
|
30526
30526
|
id: string;
|
30527
30527
|
createdAt: Date;
|
@@ -30935,6 +30935,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30935
30935
|
createdAt: Date;
|
30936
30936
|
updatedAt: Date;
|
30937
30937
|
deletedAt: Date | null;
|
30938
|
+
tags: {
|
30939
|
+
name: string;
|
30940
|
+
id: string;
|
30941
|
+
createdAt: Date;
|
30942
|
+
updatedAt: Date;
|
30943
|
+
deletedAt: Date | null;
|
30944
|
+
}[];
|
30945
|
+
callFrom: string | null;
|
30946
|
+
callTo: string | null;
|
30947
|
+
note: string | null;
|
30938
30948
|
categories: {
|
30939
30949
|
id: string;
|
30940
30950
|
value: string;
|
@@ -30957,16 +30967,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
30957
30967
|
}[];
|
30958
30968
|
}[];
|
30959
30969
|
}[];
|
30960
|
-
tags: {
|
30961
|
-
name: string;
|
30962
|
-
id: string;
|
30963
|
-
createdAt: Date;
|
30964
|
-
updatedAt: Date;
|
30965
|
-
deletedAt: Date | null;
|
30966
|
-
}[];
|
30967
|
-
callFrom: string | null;
|
30968
|
-
callTo: string | null;
|
30969
|
-
note: string | null;
|
30970
30970
|
customFields?: {
|
30971
30971
|
id: string;
|
30972
30972
|
createdAt: Date;
|
@@ -31364,6 +31364,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
31364
31364
|
createdAt: Date;
|
31365
31365
|
updatedAt: Date;
|
31366
31366
|
deletedAt: Date | null;
|
31367
|
+
tags: {
|
31368
|
+
name: string;
|
31369
|
+
id: string;
|
31370
|
+
createdAt: Date;
|
31371
|
+
updatedAt: Date;
|
31372
|
+
deletedAt: Date | null;
|
31373
|
+
}[];
|
31374
|
+
callFrom: string | null;
|
31375
|
+
callTo: string | null;
|
31376
|
+
note: string | null;
|
31367
31377
|
categories: {
|
31368
31378
|
id: string;
|
31369
31379
|
value: string;
|
@@ -31386,16 +31396,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
31386
31396
|
}[];
|
31387
31397
|
}[];
|
31388
31398
|
}[];
|
31389
|
-
tags: {
|
31390
|
-
name: string;
|
31391
|
-
id: string;
|
31392
|
-
createdAt: Date;
|
31393
|
-
updatedAt: Date;
|
31394
|
-
deletedAt: Date | null;
|
31395
|
-
}[];
|
31396
|
-
callFrom: string | null;
|
31397
|
-
callTo: string | null;
|
31398
|
-
note: string | null;
|
31399
31399
|
customFields?: {
|
31400
31400
|
id: string;
|
31401
31401
|
createdAt: Date;
|
@@ -33566,6 +33566,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
33566
33566
|
createdAt: Date;
|
33567
33567
|
updatedAt: Date;
|
33568
33568
|
deletedAt: Date | null;
|
33569
|
+
tags: {
|
33570
|
+
name: string;
|
33571
|
+
id: string;
|
33572
|
+
createdAt: Date;
|
33573
|
+
updatedAt: Date;
|
33574
|
+
deletedAt: Date | null;
|
33575
|
+
}[];
|
33576
|
+
callFrom: string | null;
|
33577
|
+
callTo: string | null;
|
33578
|
+
note: string | null;
|
33569
33579
|
categories: {
|
33570
33580
|
id: string;
|
33571
33581
|
value: string;
|
@@ -33588,16 +33598,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
33588
33598
|
}[];
|
33589
33599
|
}[];
|
33590
33600
|
}[];
|
33591
|
-
tags: {
|
33592
|
-
name: string;
|
33593
|
-
id: string;
|
33594
|
-
createdAt: Date;
|
33595
|
-
updatedAt: Date;
|
33596
|
-
deletedAt: Date | null;
|
33597
|
-
}[];
|
33598
|
-
callFrom: string | null;
|
33599
|
-
callTo: string | null;
|
33600
|
-
note: string | null;
|
33601
33601
|
customFields?: {
|
33602
33602
|
id: string;
|
33603
33603
|
createdAt: Date;
|
@@ -34332,6 +34332,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
34332
34332
|
createdAt: Date;
|
34333
34333
|
updatedAt: Date;
|
34334
34334
|
deletedAt: Date | null;
|
34335
|
+
tags: {
|
34336
|
+
name: string;
|
34337
|
+
id: string;
|
34338
|
+
createdAt: Date;
|
34339
|
+
updatedAt: Date;
|
34340
|
+
deletedAt: Date | null;
|
34341
|
+
}[];
|
34342
|
+
callFrom: string | null;
|
34343
|
+
callTo: string | null;
|
34344
|
+
note: string | null;
|
34335
34345
|
categories: {
|
34336
34346
|
id: string;
|
34337
34347
|
value: string;
|
@@ -34354,16 +34364,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
34354
34364
|
}[];
|
34355
34365
|
}[];
|
34356
34366
|
}[];
|
34357
|
-
tags: {
|
34358
|
-
name: string;
|
34359
|
-
id: string;
|
34360
|
-
createdAt: Date;
|
34361
|
-
updatedAt: Date;
|
34362
|
-
deletedAt: Date | null;
|
34363
|
-
}[];
|
34364
|
-
callFrom: string | null;
|
34365
|
-
callTo: string | null;
|
34366
|
-
note: string | null;
|
34367
34367
|
customFields?: {
|
34368
34368
|
id: string;
|
34369
34369
|
createdAt: Date;
|
@@ -35105,6 +35105,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
35105
35105
|
createdAt: Date;
|
35106
35106
|
updatedAt: Date;
|
35107
35107
|
deletedAt: Date | null;
|
35108
|
+
tags: {
|
35109
|
+
name: string;
|
35110
|
+
id: string;
|
35111
|
+
createdAt: Date;
|
35112
|
+
updatedAt: Date;
|
35113
|
+
deletedAt: Date | null;
|
35114
|
+
}[];
|
35115
|
+
callFrom: string | null;
|
35116
|
+
callTo: string | null;
|
35117
|
+
note: string | null;
|
35108
35118
|
categories: {
|
35109
35119
|
id: string;
|
35110
35120
|
value: string;
|
@@ -35127,16 +35137,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
35127
35137
|
}[];
|
35128
35138
|
}[];
|
35129
35139
|
}[];
|
35130
|
-
tags: {
|
35131
|
-
name: string;
|
35132
|
-
id: string;
|
35133
|
-
createdAt: Date;
|
35134
|
-
updatedAt: Date;
|
35135
|
-
deletedAt: Date | null;
|
35136
|
-
}[];
|
35137
|
-
callFrom: string | null;
|
35138
|
-
callTo: string | null;
|
35139
|
-
note: string | null;
|
35140
35140
|
customFields?: {
|
35141
35141
|
id: string;
|
35142
35142
|
createdAt: Date;
|
@@ -35866,6 +35866,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
35866
35866
|
createdAt: Date;
|
35867
35867
|
updatedAt: Date;
|
35868
35868
|
deletedAt: Date | null;
|
35869
|
+
tags: {
|
35870
|
+
name: string;
|
35871
|
+
id: string;
|
35872
|
+
createdAt: Date;
|
35873
|
+
updatedAt: Date;
|
35874
|
+
deletedAt: Date | null;
|
35875
|
+
}[];
|
35876
|
+
callFrom: string | null;
|
35877
|
+
callTo: string | null;
|
35878
|
+
note: string | null;
|
35869
35879
|
categories: {
|
35870
35880
|
id: string;
|
35871
35881
|
value: string;
|
@@ -35888,16 +35898,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
35888
35898
|
}[];
|
35889
35899
|
}[];
|
35890
35900
|
}[];
|
35891
|
-
tags: {
|
35892
|
-
name: string;
|
35893
|
-
id: string;
|
35894
|
-
createdAt: Date;
|
35895
|
-
updatedAt: Date;
|
35896
|
-
deletedAt: Date | null;
|
35897
|
-
}[];
|
35898
|
-
callFrom: string | null;
|
35899
|
-
callTo: string | null;
|
35900
|
-
note: string | null;
|
35901
35901
|
customFields?: {
|
35902
35902
|
id: string;
|
35903
35903
|
createdAt: Date;
|
@@ -36765,6 +36765,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
36765
36765
|
createdAt: Date;
|
36766
36766
|
updatedAt: Date;
|
36767
36767
|
deletedAt: Date | null;
|
36768
|
+
tags: {
|
36769
|
+
name: string;
|
36770
|
+
id: string;
|
36771
|
+
createdAt: Date;
|
36772
|
+
updatedAt: Date;
|
36773
|
+
deletedAt: Date | null;
|
36774
|
+
}[];
|
36775
|
+
callFrom: string | null;
|
36776
|
+
callTo: string | null;
|
36777
|
+
note: string | null;
|
36768
36778
|
categories: {
|
36769
36779
|
id: string;
|
36770
36780
|
value: string;
|
@@ -36787,16 +36797,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
36787
36797
|
}[];
|
36788
36798
|
}[];
|
36789
36799
|
}[];
|
36790
|
-
tags: {
|
36791
|
-
name: string;
|
36792
|
-
id: string;
|
36793
|
-
createdAt: Date;
|
36794
|
-
updatedAt: Date;
|
36795
|
-
deletedAt: Date | null;
|
36796
|
-
}[];
|
36797
|
-
callFrom: string | null;
|
36798
|
-
callTo: string | null;
|
36799
|
-
note: string | null;
|
36800
36800
|
customFields?: {
|
36801
36801
|
id: string;
|
36802
36802
|
createdAt: Date;
|
@@ -37526,6 +37526,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
37526
37526
|
createdAt: Date;
|
37527
37527
|
updatedAt: Date;
|
37528
37528
|
deletedAt: Date | null;
|
37529
|
+
tags: {
|
37530
|
+
name: string;
|
37531
|
+
id: string;
|
37532
|
+
createdAt: Date;
|
37533
|
+
updatedAt: Date;
|
37534
|
+
deletedAt: Date | null;
|
37535
|
+
}[];
|
37536
|
+
callFrom: string | null;
|
37537
|
+
callTo: string | null;
|
37538
|
+
note: string | null;
|
37529
37539
|
categories: {
|
37530
37540
|
id: string;
|
37531
37541
|
value: string;
|
@@ -37548,16 +37558,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
|
|
37548
37558
|
}[];
|
37549
37559
|
}[];
|
37550
37560
|
}[];
|
37551
|
-
tags: {
|
37552
|
-
name: string;
|
37553
|
-
id: string;
|
37554
|
-
createdAt: Date;
|
37555
|
-
updatedAt: Date;
|
37556
|
-
deletedAt: Date | null;
|
37557
|
-
}[];
|
37558
|
-
callFrom: string | null;
|
37559
|
-
callTo: string | null;
|
37560
|
-
note: string | null;
|
37561
37561
|
customFields?: {
|
37562
37562
|
id: string;
|
37563
37563
|
createdAt: Date;
|