@kl1/contracts 1.3.30 → 1.3.32
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/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 +27 -27
- 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 +33503 -33503
- 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/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 +187 -169
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +187 -169
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -6524,6 +6524,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
6524
6524
|
createdAt: Date;
|
|
6525
6525
|
updatedAt: Date;
|
|
6526
6526
|
deletedAt: Date | null;
|
|
6527
|
+
tags: {
|
|
6528
|
+
name: string;
|
|
6529
|
+
id: string;
|
|
6530
|
+
createdAt: Date;
|
|
6531
|
+
updatedAt: Date;
|
|
6532
|
+
deletedAt: Date | null;
|
|
6533
|
+
}[];
|
|
6534
|
+
callFrom: string | null;
|
|
6535
|
+
callTo: string | null;
|
|
6536
|
+
note: string | null;
|
|
6527
6537
|
categories: {
|
|
6528
6538
|
id: string;
|
|
6529
6539
|
value: string;
|
|
@@ -6546,16 +6556,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
6546
6556
|
}[];
|
|
6547
6557
|
}[];
|
|
6548
6558
|
}[];
|
|
6549
|
-
tags: {
|
|
6550
|
-
name: string;
|
|
6551
|
-
id: string;
|
|
6552
|
-
createdAt: Date;
|
|
6553
|
-
updatedAt: Date;
|
|
6554
|
-
deletedAt: Date | null;
|
|
6555
|
-
}[];
|
|
6556
|
-
callFrom: string | null;
|
|
6557
|
-
callTo: string | null;
|
|
6558
|
-
note: string | null;
|
|
6559
6559
|
customFields?: {
|
|
6560
6560
|
id: string;
|
|
6561
6561
|
createdAt: Date;
|
|
@@ -6575,6 +6575,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
6575
6575
|
createdAt: Date;
|
|
6576
6576
|
updatedAt: Date;
|
|
6577
6577
|
deletedAt: Date | null;
|
|
6578
|
+
tags: {
|
|
6579
|
+
name: string;
|
|
6580
|
+
id: string;
|
|
6581
|
+
createdAt: Date;
|
|
6582
|
+
updatedAt: Date;
|
|
6583
|
+
deletedAt: Date | null;
|
|
6584
|
+
}[];
|
|
6585
|
+
callFrom: string | null;
|
|
6586
|
+
callTo: string | null;
|
|
6587
|
+
note: string | null;
|
|
6578
6588
|
categories: {
|
|
6579
6589
|
id: string;
|
|
6580
6590
|
value: string;
|
|
@@ -6597,16 +6607,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
6597
6607
|
}[];
|
|
6598
6608
|
}[];
|
|
6599
6609
|
}[];
|
|
6600
|
-
tags: {
|
|
6601
|
-
name: string;
|
|
6602
|
-
id: string;
|
|
6603
|
-
createdAt: Date;
|
|
6604
|
-
updatedAt: Date;
|
|
6605
|
-
deletedAt: Date | null;
|
|
6606
|
-
}[];
|
|
6607
|
-
callFrom: string | null;
|
|
6608
|
-
callTo: string | null;
|
|
6609
|
-
note: string | null;
|
|
6610
6610
|
customFields?: {
|
|
6611
6611
|
id: string;
|
|
6612
6612
|
createdAt: Date;
|
|
@@ -6715,6 +6715,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
6715
6715
|
createdAt: Date;
|
|
6716
6716
|
updatedAt: Date;
|
|
6717
6717
|
deletedAt: Date | null;
|
|
6718
|
+
tags: {
|
|
6719
|
+
name: string;
|
|
6720
|
+
id: string;
|
|
6721
|
+
createdAt: Date;
|
|
6722
|
+
updatedAt: Date;
|
|
6723
|
+
deletedAt: Date | null;
|
|
6724
|
+
}[];
|
|
6725
|
+
callFrom: string | null;
|
|
6726
|
+
callTo: string | null;
|
|
6727
|
+
note: string | null;
|
|
6718
6728
|
categories: {
|
|
6719
6729
|
id: string;
|
|
6720
6730
|
value: string;
|
|
@@ -6737,16 +6747,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
6737
6747
|
}[];
|
|
6738
6748
|
}[];
|
|
6739
6749
|
}[];
|
|
6740
|
-
tags: {
|
|
6741
|
-
name: string;
|
|
6742
|
-
id: string;
|
|
6743
|
-
createdAt: Date;
|
|
6744
|
-
updatedAt: Date;
|
|
6745
|
-
deletedAt: Date | null;
|
|
6746
|
-
}[];
|
|
6747
|
-
callFrom: string | null;
|
|
6748
|
-
callTo: string | null;
|
|
6749
|
-
note: string | null;
|
|
6750
6750
|
customFields?: {
|
|
6751
6751
|
id: string;
|
|
6752
6752
|
createdAt: Date;
|
|
@@ -6805,6 +6805,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
6805
6805
|
createdAt: Date;
|
|
6806
6806
|
updatedAt: Date;
|
|
6807
6807
|
deletedAt: Date | null;
|
|
6808
|
+
tags: {
|
|
6809
|
+
name: string;
|
|
6810
|
+
id: string;
|
|
6811
|
+
createdAt: Date;
|
|
6812
|
+
updatedAt: Date;
|
|
6813
|
+
deletedAt: Date | null;
|
|
6814
|
+
}[];
|
|
6815
|
+
callFrom: string | null;
|
|
6816
|
+
callTo: string | null;
|
|
6817
|
+
note: string | null;
|
|
6808
6818
|
categories: {
|
|
6809
6819
|
id: string;
|
|
6810
6820
|
value: string;
|
|
@@ -6827,16 +6837,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
6827
6837
|
}[];
|
|
6828
6838
|
}[];
|
|
6829
6839
|
}[];
|
|
6830
|
-
tags: {
|
|
6831
|
-
name: string;
|
|
6832
|
-
id: string;
|
|
6833
|
-
createdAt: Date;
|
|
6834
|
-
updatedAt: Date;
|
|
6835
|
-
deletedAt: Date | null;
|
|
6836
|
-
}[];
|
|
6837
|
-
callFrom: string | null;
|
|
6838
|
-
callTo: string | null;
|
|
6839
|
-
note: string | null;
|
|
6840
6840
|
customFields?: {
|
|
6841
6841
|
id: string;
|
|
6842
6842
|
createdAt: Date;
|
|
@@ -7250,6 +7250,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
7250
7250
|
createdAt: Date;
|
|
7251
7251
|
updatedAt: Date;
|
|
7252
7252
|
deletedAt: Date | null;
|
|
7253
|
+
tags: {
|
|
7254
|
+
name: string;
|
|
7255
|
+
id: string;
|
|
7256
|
+
createdAt: Date;
|
|
7257
|
+
updatedAt: Date;
|
|
7258
|
+
deletedAt: Date | null;
|
|
7259
|
+
}[];
|
|
7260
|
+
callFrom: string | null;
|
|
7261
|
+
callTo: string | null;
|
|
7262
|
+
note: string | null;
|
|
7253
7263
|
categories: {
|
|
7254
7264
|
id: string;
|
|
7255
7265
|
value: string;
|
|
@@ -7272,16 +7282,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
7272
7282
|
}[];
|
|
7273
7283
|
}[];
|
|
7274
7284
|
}[];
|
|
7275
|
-
tags: {
|
|
7276
|
-
name: string;
|
|
7277
|
-
id: string;
|
|
7278
|
-
createdAt: Date;
|
|
7279
|
-
updatedAt: Date;
|
|
7280
|
-
deletedAt: Date | null;
|
|
7281
|
-
}[];
|
|
7282
|
-
callFrom: string | null;
|
|
7283
|
-
callTo: string | null;
|
|
7284
|
-
note: string | null;
|
|
7285
7285
|
customFields?: {
|
|
7286
7286
|
id: string;
|
|
7287
7287
|
createdAt: Date;
|
|
@@ -7679,6 +7679,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
7679
7679
|
createdAt: Date;
|
|
7680
7680
|
updatedAt: Date;
|
|
7681
7681
|
deletedAt: Date | null;
|
|
7682
|
+
tags: {
|
|
7683
|
+
name: string;
|
|
7684
|
+
id: string;
|
|
7685
|
+
createdAt: Date;
|
|
7686
|
+
updatedAt: Date;
|
|
7687
|
+
deletedAt: Date | null;
|
|
7688
|
+
}[];
|
|
7689
|
+
callFrom: string | null;
|
|
7690
|
+
callTo: string | null;
|
|
7691
|
+
note: string | null;
|
|
7682
7692
|
categories: {
|
|
7683
7693
|
id: string;
|
|
7684
7694
|
value: string;
|
|
@@ -7701,16 +7711,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
7701
7711
|
}[];
|
|
7702
7712
|
}[];
|
|
7703
7713
|
}[];
|
|
7704
|
-
tags: {
|
|
7705
|
-
name: string;
|
|
7706
|
-
id: string;
|
|
7707
|
-
createdAt: Date;
|
|
7708
|
-
updatedAt: Date;
|
|
7709
|
-
deletedAt: Date | null;
|
|
7710
|
-
}[];
|
|
7711
|
-
callFrom: string | null;
|
|
7712
|
-
callTo: string | null;
|
|
7713
|
-
note: string | null;
|
|
7714
7714
|
customFields?: {
|
|
7715
7715
|
id: string;
|
|
7716
7716
|
createdAt: Date;
|
|
@@ -11211,6 +11211,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11211
11211
|
createdAt: Date;
|
|
11212
11212
|
updatedAt: Date;
|
|
11213
11213
|
deletedAt: Date | null;
|
|
11214
|
+
tags: {
|
|
11215
|
+
name: string;
|
|
11216
|
+
id: string;
|
|
11217
|
+
createdAt: Date;
|
|
11218
|
+
updatedAt: Date;
|
|
11219
|
+
deletedAt: Date | null;
|
|
11220
|
+
}[];
|
|
11221
|
+
callFrom: string | null;
|
|
11222
|
+
callTo: string | null;
|
|
11223
|
+
note: string | null;
|
|
11214
11224
|
categories: {
|
|
11215
11225
|
id: string;
|
|
11216
11226
|
value: string;
|
|
@@ -11233,16 +11243,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11233
11243
|
}[];
|
|
11234
11244
|
}[];
|
|
11235
11245
|
}[];
|
|
11236
|
-
tags: {
|
|
11237
|
-
name: string;
|
|
11238
|
-
id: string;
|
|
11239
|
-
createdAt: Date;
|
|
11240
|
-
updatedAt: Date;
|
|
11241
|
-
deletedAt: Date | null;
|
|
11242
|
-
}[];
|
|
11243
|
-
callFrom: string | null;
|
|
11244
|
-
callTo: string | null;
|
|
11245
|
-
note: string | null;
|
|
11246
11246
|
customFields?: {
|
|
11247
11247
|
id: string;
|
|
11248
11248
|
createdAt: Date;
|
|
@@ -11262,6 +11262,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11262
11262
|
createdAt: Date;
|
|
11263
11263
|
updatedAt: Date;
|
|
11264
11264
|
deletedAt: Date | null;
|
|
11265
|
+
tags: {
|
|
11266
|
+
name: string;
|
|
11267
|
+
id: string;
|
|
11268
|
+
createdAt: Date;
|
|
11269
|
+
updatedAt: Date;
|
|
11270
|
+
deletedAt: Date | null;
|
|
11271
|
+
}[];
|
|
11272
|
+
callFrom: string | null;
|
|
11273
|
+
callTo: string | null;
|
|
11274
|
+
note: string | null;
|
|
11265
11275
|
categories: {
|
|
11266
11276
|
id: string;
|
|
11267
11277
|
value: string;
|
|
@@ -11284,16 +11294,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11284
11294
|
}[];
|
|
11285
11295
|
}[];
|
|
11286
11296
|
}[];
|
|
11287
|
-
tags: {
|
|
11288
|
-
name: string;
|
|
11289
|
-
id: string;
|
|
11290
|
-
createdAt: Date;
|
|
11291
|
-
updatedAt: Date;
|
|
11292
|
-
deletedAt: Date | null;
|
|
11293
|
-
}[];
|
|
11294
|
-
callFrom: string | null;
|
|
11295
|
-
callTo: string | null;
|
|
11296
|
-
note: string | null;
|
|
11297
11297
|
customFields?: {
|
|
11298
11298
|
id: string;
|
|
11299
11299
|
createdAt: Date;
|
|
@@ -11402,6 +11402,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11402
11402
|
createdAt: Date;
|
|
11403
11403
|
updatedAt: Date;
|
|
11404
11404
|
deletedAt: Date | null;
|
|
11405
|
+
tags: {
|
|
11406
|
+
name: string;
|
|
11407
|
+
id: string;
|
|
11408
|
+
createdAt: Date;
|
|
11409
|
+
updatedAt: Date;
|
|
11410
|
+
deletedAt: Date | null;
|
|
11411
|
+
}[];
|
|
11412
|
+
callFrom: string | null;
|
|
11413
|
+
callTo: string | null;
|
|
11414
|
+
note: string | null;
|
|
11405
11415
|
categories: {
|
|
11406
11416
|
id: string;
|
|
11407
11417
|
value: string;
|
|
@@ -11424,16 +11434,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11424
11434
|
}[];
|
|
11425
11435
|
}[];
|
|
11426
11436
|
}[];
|
|
11427
|
-
tags: {
|
|
11428
|
-
name: string;
|
|
11429
|
-
id: string;
|
|
11430
|
-
createdAt: Date;
|
|
11431
|
-
updatedAt: Date;
|
|
11432
|
-
deletedAt: Date | null;
|
|
11433
|
-
}[];
|
|
11434
|
-
callFrom: string | null;
|
|
11435
|
-
callTo: string | null;
|
|
11436
|
-
note: string | null;
|
|
11437
11437
|
customFields?: {
|
|
11438
11438
|
id: string;
|
|
11439
11439
|
createdAt: Date;
|
|
@@ -11492,6 +11492,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11492
11492
|
createdAt: Date;
|
|
11493
11493
|
updatedAt: Date;
|
|
11494
11494
|
deletedAt: Date | null;
|
|
11495
|
+
tags: {
|
|
11496
|
+
name: string;
|
|
11497
|
+
id: string;
|
|
11498
|
+
createdAt: Date;
|
|
11499
|
+
updatedAt: Date;
|
|
11500
|
+
deletedAt: Date | null;
|
|
11501
|
+
}[];
|
|
11502
|
+
callFrom: string | null;
|
|
11503
|
+
callTo: string | null;
|
|
11504
|
+
note: string | null;
|
|
11495
11505
|
categories: {
|
|
11496
11506
|
id: string;
|
|
11497
11507
|
value: string;
|
|
@@ -11514,16 +11524,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11514
11524
|
}[];
|
|
11515
11525
|
}[];
|
|
11516
11526
|
}[];
|
|
11517
|
-
tags: {
|
|
11518
|
-
name: string;
|
|
11519
|
-
id: string;
|
|
11520
|
-
createdAt: Date;
|
|
11521
|
-
updatedAt: Date;
|
|
11522
|
-
deletedAt: Date | null;
|
|
11523
|
-
}[];
|
|
11524
|
-
callFrom: string | null;
|
|
11525
|
-
callTo: string | null;
|
|
11526
|
-
note: string | null;
|
|
11527
11527
|
customFields?: {
|
|
11528
11528
|
id: string;
|
|
11529
11529
|
createdAt: Date;
|
|
@@ -11937,6 +11937,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11937
11937
|
createdAt: Date;
|
|
11938
11938
|
updatedAt: Date;
|
|
11939
11939
|
deletedAt: Date | null;
|
|
11940
|
+
tags: {
|
|
11941
|
+
name: string;
|
|
11942
|
+
id: string;
|
|
11943
|
+
createdAt: Date;
|
|
11944
|
+
updatedAt: Date;
|
|
11945
|
+
deletedAt: Date | null;
|
|
11946
|
+
}[];
|
|
11947
|
+
callFrom: string | null;
|
|
11948
|
+
callTo: string | null;
|
|
11949
|
+
note: string | null;
|
|
11940
11950
|
categories: {
|
|
11941
11951
|
id: string;
|
|
11942
11952
|
value: string;
|
|
@@ -11959,16 +11969,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
11959
11969
|
}[];
|
|
11960
11970
|
}[];
|
|
11961
11971
|
}[];
|
|
11962
|
-
tags: {
|
|
11963
|
-
name: string;
|
|
11964
|
-
id: string;
|
|
11965
|
-
createdAt: Date;
|
|
11966
|
-
updatedAt: Date;
|
|
11967
|
-
deletedAt: Date | null;
|
|
11968
|
-
}[];
|
|
11969
|
-
callFrom: string | null;
|
|
11970
|
-
callTo: string | null;
|
|
11971
|
-
note: string | null;
|
|
11972
11972
|
customFields?: {
|
|
11973
11973
|
id: string;
|
|
11974
11974
|
createdAt: Date;
|
|
@@ -12366,6 +12366,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
12366
12366
|
createdAt: Date;
|
|
12367
12367
|
updatedAt: Date;
|
|
12368
12368
|
deletedAt: Date | null;
|
|
12369
|
+
tags: {
|
|
12370
|
+
name: string;
|
|
12371
|
+
id: string;
|
|
12372
|
+
createdAt: Date;
|
|
12373
|
+
updatedAt: Date;
|
|
12374
|
+
deletedAt: Date | null;
|
|
12375
|
+
}[];
|
|
12376
|
+
callFrom: string | null;
|
|
12377
|
+
callTo: string | null;
|
|
12378
|
+
note: string | null;
|
|
12369
12379
|
categories: {
|
|
12370
12380
|
id: string;
|
|
12371
12381
|
value: string;
|
|
@@ -12388,16 +12398,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
12388
12398
|
}[];
|
|
12389
12399
|
}[];
|
|
12390
12400
|
}[];
|
|
12391
|
-
tags: {
|
|
12392
|
-
name: string;
|
|
12393
|
-
id: string;
|
|
12394
|
-
createdAt: Date;
|
|
12395
|
-
updatedAt: Date;
|
|
12396
|
-
deletedAt: Date | null;
|
|
12397
|
-
}[];
|
|
12398
|
-
callFrom: string | null;
|
|
12399
|
-
callTo: string | null;
|
|
12400
|
-
note: string | null;
|
|
12401
12401
|
customFields?: {
|
|
12402
12402
|
id: string;
|
|
12403
12403
|
createdAt: Date;
|
|
@@ -14568,6 +14568,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
14568
14568
|
createdAt: Date;
|
|
14569
14569
|
updatedAt: Date;
|
|
14570
14570
|
deletedAt: Date | null;
|
|
14571
|
+
tags: {
|
|
14572
|
+
name: string;
|
|
14573
|
+
id: string;
|
|
14574
|
+
createdAt: Date;
|
|
14575
|
+
updatedAt: Date;
|
|
14576
|
+
deletedAt: Date | null;
|
|
14577
|
+
}[];
|
|
14578
|
+
callFrom: string | null;
|
|
14579
|
+
callTo: string | null;
|
|
14580
|
+
note: string | null;
|
|
14571
14581
|
categories: {
|
|
14572
14582
|
id: string;
|
|
14573
14583
|
value: string;
|
|
@@ -14590,17 +14600,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
14590
14600
|
}[];
|
|
14591
14601
|
}[];
|
|
14592
14602
|
}[];
|
|
14593
|
-
|
|
14594
|
-
name: string;
|
|
14595
|
-
id: string;
|
|
14596
|
-
createdAt: Date;
|
|
14597
|
-
updatedAt: Date;
|
|
14598
|
-
deletedAt: Date | null;
|
|
14599
|
-
}[];
|
|
14600
|
-
callFrom: string | null;
|
|
14601
|
-
callTo: string | null;
|
|
14602
|
-
note: string | null;
|
|
14603
|
-
customFields?: {
|
|
14603
|
+
customFields?: {
|
|
14604
14604
|
id: string;
|
|
14605
14605
|
createdAt: Date;
|
|
14606
14606
|
updatedAt: Date;
|
|
@@ -15334,6 +15334,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
15334
15334
|
createdAt: Date;
|
|
15335
15335
|
updatedAt: Date;
|
|
15336
15336
|
deletedAt: Date | null;
|
|
15337
|
+
tags: {
|
|
15338
|
+
name: string;
|
|
15339
|
+
id: string;
|
|
15340
|
+
createdAt: Date;
|
|
15341
|
+
updatedAt: Date;
|
|
15342
|
+
deletedAt: Date | null;
|
|
15343
|
+
}[];
|
|
15344
|
+
callFrom: string | null;
|
|
15345
|
+
callTo: string | null;
|
|
15346
|
+
note: string | null;
|
|
15337
15347
|
categories: {
|
|
15338
15348
|
id: string;
|
|
15339
15349
|
value: string;
|
|
@@ -15356,16 +15366,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
15356
15366
|
}[];
|
|
15357
15367
|
}[];
|
|
15358
15368
|
}[];
|
|
15359
|
-
tags: {
|
|
15360
|
-
name: string;
|
|
15361
|
-
id: string;
|
|
15362
|
-
createdAt: Date;
|
|
15363
|
-
updatedAt: Date;
|
|
15364
|
-
deletedAt: Date | null;
|
|
15365
|
-
}[];
|
|
15366
|
-
callFrom: string | null;
|
|
15367
|
-
callTo: string | null;
|
|
15368
|
-
note: string | null;
|
|
15369
15369
|
customFields?: {
|
|
15370
15370
|
id: string;
|
|
15371
15371
|
createdAt: Date;
|
|
@@ -16101,6 +16101,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16101
16101
|
createdAt: Date;
|
|
16102
16102
|
updatedAt: Date;
|
|
16103
16103
|
deletedAt: Date | null;
|
|
16104
|
+
tags: {
|
|
16105
|
+
name: string;
|
|
16106
|
+
id: string;
|
|
16107
|
+
createdAt: Date;
|
|
16108
|
+
updatedAt: Date;
|
|
16109
|
+
deletedAt: Date | null;
|
|
16110
|
+
}[];
|
|
16111
|
+
callFrom: string | null;
|
|
16112
|
+
callTo: string | null;
|
|
16113
|
+
note: string | null;
|
|
16104
16114
|
categories: {
|
|
16105
16115
|
id: string;
|
|
16106
16116
|
value: string;
|
|
@@ -16123,16 +16133,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16123
16133
|
}[];
|
|
16124
16134
|
}[];
|
|
16125
16135
|
}[];
|
|
16126
|
-
tags: {
|
|
16127
|
-
name: string;
|
|
16128
|
-
id: string;
|
|
16129
|
-
createdAt: Date;
|
|
16130
|
-
updatedAt: Date;
|
|
16131
|
-
deletedAt: Date | null;
|
|
16132
|
-
}[];
|
|
16133
|
-
callFrom: string | null;
|
|
16134
|
-
callTo: string | null;
|
|
16135
|
-
note: string | null;
|
|
16136
16136
|
customFields?: {
|
|
16137
16137
|
id: string;
|
|
16138
16138
|
createdAt: Date;
|
|
@@ -16867,6 +16867,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16867
16867
|
createdAt: Date;
|
|
16868
16868
|
updatedAt: Date;
|
|
16869
16869
|
deletedAt: Date | null;
|
|
16870
|
+
tags: {
|
|
16871
|
+
name: string;
|
|
16872
|
+
id: string;
|
|
16873
|
+
createdAt: Date;
|
|
16874
|
+
updatedAt: Date;
|
|
16875
|
+
deletedAt: Date | null;
|
|
16876
|
+
}[];
|
|
16877
|
+
callFrom: string | null;
|
|
16878
|
+
callTo: string | null;
|
|
16879
|
+
note: string | null;
|
|
16870
16880
|
categories: {
|
|
16871
16881
|
id: string;
|
|
16872
16882
|
value: string;
|
|
@@ -16889,16 +16899,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16889
16899
|
}[];
|
|
16890
16900
|
}[];
|
|
16891
16901
|
}[];
|
|
16892
|
-
tags: {
|
|
16893
|
-
name: string;
|
|
16894
|
-
id: string;
|
|
16895
|
-
createdAt: Date;
|
|
16896
|
-
updatedAt: Date;
|
|
16897
|
-
deletedAt: Date | null;
|
|
16898
|
-
}[];
|
|
16899
|
-
callFrom: string | null;
|
|
16900
|
-
callTo: string | null;
|
|
16901
|
-
note: string | null;
|
|
16902
16902
|
customFields?: {
|
|
16903
16903
|
id: string;
|
|
16904
16904
|
createdAt: Date;
|
|
@@ -17634,6 +17634,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
17634
17634
|
createdAt: Date;
|
|
17635
17635
|
updatedAt: Date;
|
|
17636
17636
|
deletedAt: Date | null;
|
|
17637
|
+
tags: {
|
|
17638
|
+
name: string;
|
|
17639
|
+
id: string;
|
|
17640
|
+
createdAt: Date;
|
|
17641
|
+
updatedAt: Date;
|
|
17642
|
+
deletedAt: Date | null;
|
|
17643
|
+
}[];
|
|
17644
|
+
callFrom: string | null;
|
|
17645
|
+
callTo: string | null;
|
|
17646
|
+
note: string | null;
|
|
17637
17647
|
categories: {
|
|
17638
17648
|
id: string;
|
|
17639
17649
|
value: string;
|
|
@@ -17656,16 +17666,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
17656
17666
|
}[];
|
|
17657
17667
|
}[];
|
|
17658
17668
|
}[];
|
|
17659
|
-
tags: {
|
|
17660
|
-
name: string;
|
|
17661
|
-
id: string;
|
|
17662
|
-
createdAt: Date;
|
|
17663
|
-
updatedAt: Date;
|
|
17664
|
-
deletedAt: Date | null;
|
|
17665
|
-
}[];
|
|
17666
|
-
callFrom: string | null;
|
|
17667
|
-
callTo: string | null;
|
|
17668
|
-
note: string | null;
|
|
17669
17669
|
customFields?: {
|
|
17670
17670
|
id: string;
|
|
17671
17671
|
createdAt: Date;
|
|
@@ -18400,6 +18400,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
18400
18400
|
createdAt: Date;
|
|
18401
18401
|
updatedAt: Date;
|
|
18402
18402
|
deletedAt: Date | null;
|
|
18403
|
+
tags: {
|
|
18404
|
+
name: string;
|
|
18405
|
+
id: string;
|
|
18406
|
+
createdAt: Date;
|
|
18407
|
+
updatedAt: Date;
|
|
18408
|
+
deletedAt: Date | null;
|
|
18409
|
+
}[];
|
|
18410
|
+
callFrom: string | null;
|
|
18411
|
+
callTo: string | null;
|
|
18412
|
+
note: string | null;
|
|
18403
18413
|
categories: {
|
|
18404
18414
|
id: string;
|
|
18405
18415
|
value: string;
|
|
@@ -18422,16 +18432,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
18422
18432
|
}[];
|
|
18423
18433
|
}[];
|
|
18424
18434
|
}[];
|
|
18425
|
-
tags: {
|
|
18426
|
-
name: string;
|
|
18427
|
-
id: string;
|
|
18428
|
-
createdAt: Date;
|
|
18429
|
-
updatedAt: Date;
|
|
18430
|
-
deletedAt: Date | null;
|
|
18431
|
-
}[];
|
|
18432
|
-
callFrom: string | null;
|
|
18433
|
-
callTo: string | null;
|
|
18434
|
-
note: string | null;
|
|
18435
18435
|
customFields?: {
|
|
18436
18436
|
id: string;
|
|
18437
18437
|
createdAt: Date;
|
|
@@ -19169,6 +19169,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19169
19169
|
createdAt: Date;
|
|
19170
19170
|
updatedAt: Date;
|
|
19171
19171
|
deletedAt: Date | null;
|
|
19172
|
+
tags: {
|
|
19173
|
+
name: string;
|
|
19174
|
+
id: string;
|
|
19175
|
+
createdAt: Date;
|
|
19176
|
+
updatedAt: Date;
|
|
19177
|
+
deletedAt: Date | null;
|
|
19178
|
+
}[];
|
|
19179
|
+
callFrom: string | null;
|
|
19180
|
+
callTo: string | null;
|
|
19181
|
+
note: string | null;
|
|
19172
19182
|
categories: {
|
|
19173
19183
|
id: string;
|
|
19174
19184
|
value: string;
|
|
@@ -19191,16 +19201,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19191
19201
|
}[];
|
|
19192
19202
|
}[];
|
|
19193
19203
|
}[];
|
|
19194
|
-
tags: {
|
|
19195
|
-
name: string;
|
|
19196
|
-
id: string;
|
|
19197
|
-
createdAt: Date;
|
|
19198
|
-
updatedAt: Date;
|
|
19199
|
-
deletedAt: Date | null;
|
|
19200
|
-
}[];
|
|
19201
|
-
callFrom: string | null;
|
|
19202
|
-
callTo: string | null;
|
|
19203
|
-
note: string | null;
|
|
19204
19204
|
customFields?: {
|
|
19205
19205
|
id: string;
|
|
19206
19206
|
createdAt: Date;
|
|
@@ -19935,6 +19935,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19935
19935
|
createdAt: Date;
|
|
19936
19936
|
updatedAt: Date;
|
|
19937
19937
|
deletedAt: Date | null;
|
|
19938
|
+
tags: {
|
|
19939
|
+
name: string;
|
|
19940
|
+
id: string;
|
|
19941
|
+
createdAt: Date;
|
|
19942
|
+
updatedAt: Date;
|
|
19943
|
+
deletedAt: Date | null;
|
|
19944
|
+
}[];
|
|
19945
|
+
callFrom: string | null;
|
|
19946
|
+
callTo: string | null;
|
|
19947
|
+
note: string | null;
|
|
19938
19948
|
categories: {
|
|
19939
19949
|
id: string;
|
|
19940
19950
|
value: string;
|
|
@@ -19957,16 +19967,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19957
19967
|
}[];
|
|
19958
19968
|
}[];
|
|
19959
19969
|
}[];
|
|
19960
|
-
tags: {
|
|
19961
|
-
name: string;
|
|
19962
|
-
id: string;
|
|
19963
|
-
createdAt: Date;
|
|
19964
|
-
updatedAt: Date;
|
|
19965
|
-
deletedAt: Date | null;
|
|
19966
|
-
}[];
|
|
19967
|
-
callFrom: string | null;
|
|
19968
|
-
callTo: string | null;
|
|
19969
|
-
note: string | null;
|
|
19970
19970
|
customFields?: {
|
|
19971
19971
|
id: string;
|
|
19972
19972
|
createdAt: Date;
|
|
@@ -20705,6 +20705,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
20705
20705
|
createdAt: Date;
|
|
20706
20706
|
updatedAt: Date;
|
|
20707
20707
|
deletedAt: Date | null;
|
|
20708
|
+
tags: {
|
|
20709
|
+
name: string;
|
|
20710
|
+
id: string;
|
|
20711
|
+
createdAt: Date;
|
|
20712
|
+
updatedAt: Date;
|
|
20713
|
+
deletedAt: Date | null;
|
|
20714
|
+
}[];
|
|
20715
|
+
callFrom: string | null;
|
|
20716
|
+
callTo: string | null;
|
|
20717
|
+
note: string | null;
|
|
20708
20718
|
categories: {
|
|
20709
20719
|
id: string;
|
|
20710
20720
|
value: string;
|
|
@@ -20727,16 +20737,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
20727
20737
|
}[];
|
|
20728
20738
|
}[];
|
|
20729
20739
|
}[];
|
|
20730
|
-
tags: {
|
|
20731
|
-
name: string;
|
|
20732
|
-
id: string;
|
|
20733
|
-
createdAt: Date;
|
|
20734
|
-
updatedAt: Date;
|
|
20735
|
-
deletedAt: Date | null;
|
|
20736
|
-
}[];
|
|
20737
|
-
callFrom: string | null;
|
|
20738
|
-
callTo: string | null;
|
|
20739
|
-
note: string | null;
|
|
20740
20740
|
customFields?: {
|
|
20741
20741
|
id: string;
|
|
20742
20742
|
createdAt: Date;
|
|
@@ -21471,6 +21471,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
21471
21471
|
createdAt: Date;
|
|
21472
21472
|
updatedAt: Date;
|
|
21473
21473
|
deletedAt: Date | null;
|
|
21474
|
+
tags: {
|
|
21475
|
+
name: string;
|
|
21476
|
+
id: string;
|
|
21477
|
+
createdAt: Date;
|
|
21478
|
+
updatedAt: Date;
|
|
21479
|
+
deletedAt: Date | null;
|
|
21480
|
+
}[];
|
|
21481
|
+
callFrom: string | null;
|
|
21482
|
+
callTo: string | null;
|
|
21483
|
+
note: string | null;
|
|
21474
21484
|
categories: {
|
|
21475
21485
|
id: string;
|
|
21476
21486
|
value: string;
|
|
@@ -21493,16 +21503,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
21493
21503
|
}[];
|
|
21494
21504
|
}[];
|
|
21495
21505
|
}[];
|
|
21496
|
-
tags: {
|
|
21497
|
-
name: string;
|
|
21498
|
-
id: string;
|
|
21499
|
-
createdAt: Date;
|
|
21500
|
-
updatedAt: Date;
|
|
21501
|
-
deletedAt: Date | null;
|
|
21502
|
-
}[];
|
|
21503
|
-
callFrom: string | null;
|
|
21504
|
-
callTo: string | null;
|
|
21505
|
-
note: string | null;
|
|
21506
21506
|
customFields?: {
|
|
21507
21507
|
id: string;
|
|
21508
21508
|
createdAt: Date;
|
|
@@ -23946,6 +23946,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
23946
23946
|
createdAt: Date;
|
|
23947
23947
|
updatedAt: Date;
|
|
23948
23948
|
deletedAt: Date | null;
|
|
23949
|
+
tags: {
|
|
23950
|
+
name: string;
|
|
23951
|
+
id: string;
|
|
23952
|
+
createdAt: Date;
|
|
23953
|
+
updatedAt: Date;
|
|
23954
|
+
deletedAt: Date | null;
|
|
23955
|
+
}[];
|
|
23956
|
+
callFrom: string | null;
|
|
23957
|
+
callTo: string | null;
|
|
23958
|
+
note: string | null;
|
|
23949
23959
|
categories: {
|
|
23950
23960
|
id: string;
|
|
23951
23961
|
value: string;
|
|
@@ -23968,16 +23978,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
23968
23978
|
}[];
|
|
23969
23979
|
}[];
|
|
23970
23980
|
}[];
|
|
23971
|
-
tags: {
|
|
23972
|
-
name: string;
|
|
23973
|
-
id: string;
|
|
23974
|
-
createdAt: Date;
|
|
23975
|
-
updatedAt: Date;
|
|
23976
|
-
deletedAt: Date | null;
|
|
23977
|
-
}[];
|
|
23978
|
-
callFrom: string | null;
|
|
23979
|
-
callTo: string | null;
|
|
23980
|
-
note: string | null;
|
|
23981
23981
|
customFields?: {
|
|
23982
23982
|
id: string;
|
|
23983
23983
|
createdAt: Date;
|
|
@@ -23997,6 +23997,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
23997
23997
|
createdAt: Date;
|
|
23998
23998
|
updatedAt: Date;
|
|
23999
23999
|
deletedAt: Date | null;
|
|
24000
|
+
tags: {
|
|
24001
|
+
name: string;
|
|
24002
|
+
id: string;
|
|
24003
|
+
createdAt: Date;
|
|
24004
|
+
updatedAt: Date;
|
|
24005
|
+
deletedAt: Date | null;
|
|
24006
|
+
}[];
|
|
24007
|
+
callFrom: string | null;
|
|
24008
|
+
callTo: string | null;
|
|
24009
|
+
note: string | null;
|
|
24000
24010
|
categories: {
|
|
24001
24011
|
id: string;
|
|
24002
24012
|
value: string;
|
|
@@ -24019,16 +24029,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24019
24029
|
}[];
|
|
24020
24030
|
}[];
|
|
24021
24031
|
}[];
|
|
24022
|
-
tags: {
|
|
24023
|
-
name: string;
|
|
24024
|
-
id: string;
|
|
24025
|
-
createdAt: Date;
|
|
24026
|
-
updatedAt: Date;
|
|
24027
|
-
deletedAt: Date | null;
|
|
24028
|
-
}[];
|
|
24029
|
-
callFrom: string | null;
|
|
24030
|
-
callTo: string | null;
|
|
24031
|
-
note: string | null;
|
|
24032
24032
|
customFields?: {
|
|
24033
24033
|
id: string;
|
|
24034
24034
|
createdAt: Date;
|
|
@@ -24137,6 +24137,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24137
24137
|
createdAt: Date;
|
|
24138
24138
|
updatedAt: Date;
|
|
24139
24139
|
deletedAt: Date | null;
|
|
24140
|
+
tags: {
|
|
24141
|
+
name: string;
|
|
24142
|
+
id: string;
|
|
24143
|
+
createdAt: Date;
|
|
24144
|
+
updatedAt: Date;
|
|
24145
|
+
deletedAt: Date | null;
|
|
24146
|
+
}[];
|
|
24147
|
+
callFrom: string | null;
|
|
24148
|
+
callTo: string | null;
|
|
24149
|
+
note: string | null;
|
|
24140
24150
|
categories: {
|
|
24141
24151
|
id: string;
|
|
24142
24152
|
value: string;
|
|
@@ -24159,16 +24169,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24159
24169
|
}[];
|
|
24160
24170
|
}[];
|
|
24161
24171
|
}[];
|
|
24162
|
-
tags: {
|
|
24163
|
-
name: string;
|
|
24164
|
-
id: string;
|
|
24165
|
-
createdAt: Date;
|
|
24166
|
-
updatedAt: Date;
|
|
24167
|
-
deletedAt: Date | null;
|
|
24168
|
-
}[];
|
|
24169
|
-
callFrom: string | null;
|
|
24170
|
-
callTo: string | null;
|
|
24171
|
-
note: string | null;
|
|
24172
24172
|
customFields?: {
|
|
24173
24173
|
id: string;
|
|
24174
24174
|
createdAt: Date;
|
|
@@ -24227,6 +24227,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24227
24227
|
createdAt: Date;
|
|
24228
24228
|
updatedAt: Date;
|
|
24229
24229
|
deletedAt: Date | null;
|
|
24230
|
+
tags: {
|
|
24231
|
+
name: string;
|
|
24232
|
+
id: string;
|
|
24233
|
+
createdAt: Date;
|
|
24234
|
+
updatedAt: Date;
|
|
24235
|
+
deletedAt: Date | null;
|
|
24236
|
+
}[];
|
|
24237
|
+
callFrom: string | null;
|
|
24238
|
+
callTo: string | null;
|
|
24239
|
+
note: string | null;
|
|
24230
24240
|
categories: {
|
|
24231
24241
|
id: string;
|
|
24232
24242
|
value: string;
|
|
@@ -24249,16 +24259,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24249
24259
|
}[];
|
|
24250
24260
|
}[];
|
|
24251
24261
|
}[];
|
|
24252
|
-
tags: {
|
|
24253
|
-
name: string;
|
|
24254
|
-
id: string;
|
|
24255
|
-
createdAt: Date;
|
|
24256
|
-
updatedAt: Date;
|
|
24257
|
-
deletedAt: Date | null;
|
|
24258
|
-
}[];
|
|
24259
|
-
callFrom: string | null;
|
|
24260
|
-
callTo: string | null;
|
|
24261
|
-
note: string | null;
|
|
24262
24262
|
customFields?: {
|
|
24263
24263
|
id: string;
|
|
24264
24264
|
createdAt: Date;
|
|
@@ -24580,6 +24580,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24580
24580
|
createdAt: Date;
|
|
24581
24581
|
updatedAt: Date;
|
|
24582
24582
|
deletedAt: Date | null;
|
|
24583
|
+
tags: {
|
|
24584
|
+
name: string;
|
|
24585
|
+
id: string;
|
|
24586
|
+
createdAt: Date;
|
|
24587
|
+
updatedAt: Date;
|
|
24588
|
+
deletedAt: Date | null;
|
|
24589
|
+
}[];
|
|
24590
|
+
callFrom: string | null;
|
|
24591
|
+
callTo: string | null;
|
|
24592
|
+
note: string | null;
|
|
24583
24593
|
categories: {
|
|
24584
24594
|
id: string;
|
|
24585
24595
|
value: string;
|
|
@@ -24602,16 +24612,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24602
24612
|
}[];
|
|
24603
24613
|
}[];
|
|
24604
24614
|
}[];
|
|
24605
|
-
tags: {
|
|
24606
|
-
name: string;
|
|
24607
|
-
id: string;
|
|
24608
|
-
createdAt: Date;
|
|
24609
|
-
updatedAt: Date;
|
|
24610
|
-
deletedAt: Date | null;
|
|
24611
|
-
}[];
|
|
24612
|
-
callFrom: string | null;
|
|
24613
|
-
callTo: string | null;
|
|
24614
|
-
note: string | null;
|
|
24615
24615
|
customFields?: {
|
|
24616
24616
|
id: string;
|
|
24617
24617
|
createdAt: Date;
|
|
@@ -24933,6 +24933,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24933
24933
|
createdAt: Date;
|
|
24934
24934
|
updatedAt: Date;
|
|
24935
24935
|
deletedAt: Date | null;
|
|
24936
|
+
tags: {
|
|
24937
|
+
name: string;
|
|
24938
|
+
id: string;
|
|
24939
|
+
createdAt: Date;
|
|
24940
|
+
updatedAt: Date;
|
|
24941
|
+
deletedAt: Date | null;
|
|
24942
|
+
}[];
|
|
24943
|
+
callFrom: string | null;
|
|
24944
|
+
callTo: string | null;
|
|
24945
|
+
note: string | null;
|
|
24936
24946
|
categories: {
|
|
24937
24947
|
id: string;
|
|
24938
24948
|
value: string;
|
|
@@ -24955,16 +24965,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
24955
24965
|
}[];
|
|
24956
24966
|
}[];
|
|
24957
24967
|
}[];
|
|
24958
|
-
tags: {
|
|
24959
|
-
name: string;
|
|
24960
|
-
id: string;
|
|
24961
|
-
createdAt: Date;
|
|
24962
|
-
updatedAt: Date;
|
|
24963
|
-
deletedAt: Date | null;
|
|
24964
|
-
}[];
|
|
24965
|
-
callFrom: string | null;
|
|
24966
|
-
callTo: string | null;
|
|
24967
|
-
note: string | null;
|
|
24968
24968
|
customFields?: {
|
|
24969
24969
|
id: string;
|
|
24970
24970
|
createdAt: Date;
|
|
@@ -25942,6 +25942,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
25942
25942
|
createdAt: Date;
|
|
25943
25943
|
updatedAt: Date;
|
|
25944
25944
|
deletedAt: Date | null;
|
|
25945
|
+
tags: {
|
|
25946
|
+
name: string;
|
|
25947
|
+
id: string;
|
|
25948
|
+
createdAt: Date;
|
|
25949
|
+
updatedAt: Date;
|
|
25950
|
+
deletedAt: Date | null;
|
|
25951
|
+
}[];
|
|
25952
|
+
callFrom: string | null;
|
|
25953
|
+
callTo: string | null;
|
|
25954
|
+
note: string | null;
|
|
25945
25955
|
categories: {
|
|
25946
25956
|
id: string;
|
|
25947
25957
|
value: string;
|
|
@@ -25964,16 +25974,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
25964
25974
|
}[];
|
|
25965
25975
|
}[];
|
|
25966
25976
|
}[];
|
|
25967
|
-
tags: {
|
|
25968
|
-
name: string;
|
|
25969
|
-
id: string;
|
|
25970
|
-
createdAt: Date;
|
|
25971
|
-
updatedAt: Date;
|
|
25972
|
-
deletedAt: Date | null;
|
|
25973
|
-
}[];
|
|
25974
|
-
callFrom: string | null;
|
|
25975
|
-
callTo: string | null;
|
|
25976
|
-
note: string | null;
|
|
25977
25977
|
customFields?: {
|
|
25978
25978
|
id: string;
|
|
25979
25979
|
createdAt: Date;
|
|
@@ -26458,6 +26458,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
26458
26458
|
createdAt: Date;
|
|
26459
26459
|
updatedAt: Date;
|
|
26460
26460
|
deletedAt: Date | null;
|
|
26461
|
+
tags: {
|
|
26462
|
+
name: string;
|
|
26463
|
+
id: string;
|
|
26464
|
+
createdAt: Date;
|
|
26465
|
+
updatedAt: Date;
|
|
26466
|
+
deletedAt: Date | null;
|
|
26467
|
+
}[];
|
|
26468
|
+
callFrom: string | null;
|
|
26469
|
+
callTo: string | null;
|
|
26470
|
+
note: string | null;
|
|
26461
26471
|
categories: {
|
|
26462
26472
|
id: string;
|
|
26463
26473
|
value: string;
|
|
@@ -26480,16 +26490,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
26480
26490
|
}[];
|
|
26481
26491
|
}[];
|
|
26482
26492
|
}[];
|
|
26483
|
-
tags: {
|
|
26484
|
-
name: string;
|
|
26485
|
-
id: string;
|
|
26486
|
-
createdAt: Date;
|
|
26487
|
-
updatedAt: Date;
|
|
26488
|
-
deletedAt: Date | null;
|
|
26489
|
-
}[];
|
|
26490
|
-
callFrom: string | null;
|
|
26491
|
-
callTo: string | null;
|
|
26492
|
-
note: string | null;
|
|
26493
26493
|
customFields?: {
|
|
26494
26494
|
id: string;
|
|
26495
26495
|
createdAt: Date;
|
|
@@ -26976,6 +26976,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
26976
26976
|
createdAt: Date;
|
|
26977
26977
|
updatedAt: Date;
|
|
26978
26978
|
deletedAt: Date | null;
|
|
26979
|
+
tags: {
|
|
26980
|
+
name: string;
|
|
26981
|
+
id: string;
|
|
26982
|
+
createdAt: Date;
|
|
26983
|
+
updatedAt: Date;
|
|
26984
|
+
deletedAt: Date | null;
|
|
26985
|
+
}[];
|
|
26986
|
+
callFrom: string | null;
|
|
26987
|
+
callTo: string | null;
|
|
26988
|
+
note: string | null;
|
|
26979
26989
|
categories: {
|
|
26980
26990
|
id: string;
|
|
26981
26991
|
value: string;
|
|
@@ -26998,16 +27008,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
26998
27008
|
}[];
|
|
26999
27009
|
}[];
|
|
27000
27010
|
}[];
|
|
27001
|
-
tags: {
|
|
27002
|
-
name: string;
|
|
27003
|
-
id: string;
|
|
27004
|
-
createdAt: Date;
|
|
27005
|
-
updatedAt: Date;
|
|
27006
|
-
deletedAt: Date | null;
|
|
27007
|
-
}[];
|
|
27008
|
-
callFrom: string | null;
|
|
27009
|
-
callTo: string | null;
|
|
27010
|
-
note: string | null;
|
|
27011
27011
|
customFields?: {
|
|
27012
27012
|
id: string;
|
|
27013
27013
|
createdAt: Date;
|
|
@@ -27494,6 +27494,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
27494
27494
|
createdAt: Date;
|
|
27495
27495
|
updatedAt: Date;
|
|
27496
27496
|
deletedAt: Date | null;
|
|
27497
|
+
tags: {
|
|
27498
|
+
name: string;
|
|
27499
|
+
id: string;
|
|
27500
|
+
createdAt: Date;
|
|
27501
|
+
updatedAt: Date;
|
|
27502
|
+
deletedAt: Date | null;
|
|
27503
|
+
}[];
|
|
27504
|
+
callFrom: string | null;
|
|
27505
|
+
callTo: string | null;
|
|
27506
|
+
note: string | null;
|
|
27497
27507
|
categories: {
|
|
27498
27508
|
id: string;
|
|
27499
27509
|
value: string;
|
|
@@ -27516,16 +27526,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
27516
27526
|
}[];
|
|
27517
27527
|
}[];
|
|
27518
27528
|
}[];
|
|
27519
|
-
tags: {
|
|
27520
|
-
name: string;
|
|
27521
|
-
id: string;
|
|
27522
|
-
createdAt: Date;
|
|
27523
|
-
updatedAt: Date;
|
|
27524
|
-
deletedAt: Date | null;
|
|
27525
|
-
}[];
|
|
27526
|
-
callFrom: string | null;
|
|
27527
|
-
callTo: string | null;
|
|
27528
|
-
note: string | null;
|
|
27529
27529
|
customFields?: {
|
|
27530
27530
|
id: string;
|
|
27531
27531
|
createdAt: Date;
|