@kl1/contracts 1.1.2-uat → 1.1.3
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 +63 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +63 -24
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +54 -165
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +8 -24
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +7 -76
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +88 -460
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +5 -1
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/validation.d.ts +10 -0
- package/dist/src/dashboard/validation.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +7 -73
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +7 -73
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +7 -73
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +3 -3
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +7 -73
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/chat/index.d.ts
CHANGED
@@ -4725,9 +4725,7 @@ export declare const mainChatContract: {
|
|
4725
4725
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4726
4726
|
lastMessage: z.ZodString;
|
4727
4727
|
handleTime: z.ZodNumber;
|
4728
|
-
|
4729
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
4730
|
-
status: z.ZodNumber;
|
4728
|
+
closeAt: z.ZodDate;
|
4731
4729
|
unreadCount: z.ZodNumber;
|
4732
4730
|
firstResponseAt: z.ZodDate;
|
4733
4731
|
firstResponseTime: z.ZodNumber;
|
@@ -6652,7 +6650,6 @@ export declare const mainChatContract: {
|
|
6652
6650
|
connectedUserId: string;
|
6653
6651
|
};
|
6654
6652
|
direction: "incoming" | "outgoing" | "system";
|
6655
|
-
status: number;
|
6656
6653
|
createdAt: Date;
|
6657
6654
|
updatedAt: Date;
|
6658
6655
|
deletedAt: Date | null;
|
@@ -6703,6 +6700,7 @@ export declare const mainChatContract: {
|
|
6703
6700
|
firstResponseTime: number;
|
6704
6701
|
lastMessage: string;
|
6705
6702
|
handleTime: number;
|
6703
|
+
closeAt: Date;
|
6706
6704
|
unreadCount: number;
|
6707
6705
|
firstResponseAt: Date;
|
6708
6706
|
isLatest: boolean;
|
@@ -6862,8 +6860,6 @@ export declare const mainChatContract: {
|
|
6862
6860
|
telephonySignature: string | null;
|
6863
6861
|
};
|
6864
6862
|
};
|
6865
|
-
closedAt: Date;
|
6866
|
-
lastMessageAt: Date | null;
|
6867
6863
|
cxlog: {
|
6868
6864
|
id: string;
|
6869
6865
|
channel: string | null;
|
@@ -6966,7 +6962,6 @@ export declare const mainChatContract: {
|
|
6966
6962
|
connectedUserId: string;
|
6967
6963
|
};
|
6968
6964
|
direction: "incoming" | "outgoing" | "system";
|
6969
|
-
status: number;
|
6970
6965
|
createdAt: Date;
|
6971
6966
|
updatedAt: Date;
|
6972
6967
|
deletedAt: Date | null;
|
@@ -7017,6 +7012,7 @@ export declare const mainChatContract: {
|
|
7017
7012
|
firstResponseTime: number;
|
7018
7013
|
lastMessage: string;
|
7019
7014
|
handleTime: number;
|
7015
|
+
closeAt: Date;
|
7020
7016
|
unreadCount: number;
|
7021
7017
|
firstResponseAt: Date;
|
7022
7018
|
isLatest: boolean;
|
@@ -7176,8 +7172,6 @@ export declare const mainChatContract: {
|
|
7176
7172
|
telephonySignature: string | null;
|
7177
7173
|
};
|
7178
7174
|
};
|
7179
|
-
closedAt: Date;
|
7180
|
-
lastMessageAt: Date | null;
|
7181
7175
|
cxlog: {
|
7182
7176
|
id: string;
|
7183
7177
|
channel: string | null;
|
@@ -7292,7 +7286,6 @@ export declare const mainChatContract: {
|
|
7292
7286
|
connectedUserId: string;
|
7293
7287
|
};
|
7294
7288
|
direction: "incoming" | "outgoing" | "system";
|
7295
|
-
status: number;
|
7296
7289
|
createdAt: Date;
|
7297
7290
|
updatedAt: Date;
|
7298
7291
|
deletedAt: Date | null;
|
@@ -7343,6 +7336,7 @@ export declare const mainChatContract: {
|
|
7343
7336
|
firstResponseTime: number;
|
7344
7337
|
lastMessage: string;
|
7345
7338
|
handleTime: number;
|
7339
|
+
closeAt: Date;
|
7346
7340
|
unreadCount: number;
|
7347
7341
|
firstResponseAt: Date;
|
7348
7342
|
isLatest: boolean;
|
@@ -7502,8 +7496,6 @@ export declare const mainChatContract: {
|
|
7502
7496
|
telephonySignature: string | null;
|
7503
7497
|
};
|
7504
7498
|
};
|
7505
|
-
closedAt: Date;
|
7506
|
-
lastMessageAt: Date | null;
|
7507
7499
|
cxlog: {
|
7508
7500
|
id: string;
|
7509
7501
|
channel: string | null;
|
@@ -7616,7 +7608,6 @@ export declare const mainChatContract: {
|
|
7616
7608
|
connectedUserId: string;
|
7617
7609
|
};
|
7618
7610
|
direction: "incoming" | "outgoing" | "system";
|
7619
|
-
status: number;
|
7620
7611
|
createdAt: Date;
|
7621
7612
|
updatedAt: Date;
|
7622
7613
|
deletedAt: Date | null;
|
@@ -7667,6 +7658,7 @@ export declare const mainChatContract: {
|
|
7667
7658
|
firstResponseTime: number;
|
7668
7659
|
lastMessage: string;
|
7669
7660
|
handleTime: number;
|
7661
|
+
closeAt: Date;
|
7670
7662
|
unreadCount: number;
|
7671
7663
|
firstResponseAt: Date;
|
7672
7664
|
isLatest: boolean;
|
@@ -7826,8 +7818,6 @@ export declare const mainChatContract: {
|
|
7826
7818
|
telephonySignature: string | null;
|
7827
7819
|
};
|
7828
7820
|
};
|
7829
|
-
closedAt: Date;
|
7830
|
-
lastMessageAt: Date | null;
|
7831
7821
|
cxlog: {
|
7832
7822
|
id: string;
|
7833
7823
|
channel: string | null;
|
@@ -8875,9 +8865,7 @@ export declare const mainChatContract: {
|
|
8875
8865
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8876
8866
|
lastMessage: z.ZodString;
|
8877
8867
|
handleTime: z.ZodNumber;
|
8878
|
-
|
8879
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
8880
|
-
status: z.ZodNumber;
|
8868
|
+
closeAt: z.ZodDate;
|
8881
8869
|
unreadCount: z.ZodNumber;
|
8882
8870
|
firstResponseAt: z.ZodDate;
|
8883
8871
|
firstResponseTime: z.ZodNumber;
|
@@ -10802,7 +10790,6 @@ export declare const mainChatContract: {
|
|
10802
10790
|
connectedUserId: string;
|
10803
10791
|
};
|
10804
10792
|
direction: "incoming" | "outgoing" | "system";
|
10805
|
-
status: number;
|
10806
10793
|
createdAt: Date;
|
10807
10794
|
updatedAt: Date;
|
10808
10795
|
deletedAt: Date | null;
|
@@ -10853,6 +10840,7 @@ export declare const mainChatContract: {
|
|
10853
10840
|
firstResponseTime: number;
|
10854
10841
|
lastMessage: string;
|
10855
10842
|
handleTime: number;
|
10843
|
+
closeAt: Date;
|
10856
10844
|
unreadCount: number;
|
10857
10845
|
firstResponseAt: Date;
|
10858
10846
|
isLatest: boolean;
|
@@ -11012,8 +11000,6 @@ export declare const mainChatContract: {
|
|
11012
11000
|
telephonySignature: string | null;
|
11013
11001
|
};
|
11014
11002
|
};
|
11015
|
-
closedAt: Date;
|
11016
|
-
lastMessageAt: Date | null;
|
11017
11003
|
cxlog: {
|
11018
11004
|
id: string;
|
11019
11005
|
channel: string | null;
|
@@ -11116,7 +11102,6 @@ export declare const mainChatContract: {
|
|
11116
11102
|
connectedUserId: string;
|
11117
11103
|
};
|
11118
11104
|
direction: "incoming" | "outgoing" | "system";
|
11119
|
-
status: number;
|
11120
11105
|
createdAt: Date;
|
11121
11106
|
updatedAt: Date;
|
11122
11107
|
deletedAt: Date | null;
|
@@ -11167,6 +11152,7 @@ export declare const mainChatContract: {
|
|
11167
11152
|
firstResponseTime: number;
|
11168
11153
|
lastMessage: string;
|
11169
11154
|
handleTime: number;
|
11155
|
+
closeAt: Date;
|
11170
11156
|
unreadCount: number;
|
11171
11157
|
firstResponseAt: Date;
|
11172
11158
|
isLatest: boolean;
|
@@ -11326,8 +11312,6 @@ export declare const mainChatContract: {
|
|
11326
11312
|
telephonySignature: string | null;
|
11327
11313
|
};
|
11328
11314
|
};
|
11329
|
-
closedAt: Date;
|
11330
|
-
lastMessageAt: Date | null;
|
11331
11315
|
cxlog: {
|
11332
11316
|
id: string;
|
11333
11317
|
channel: string | null;
|
@@ -11432,7 +11416,6 @@ export declare const mainChatContract: {
|
|
11432
11416
|
connectedUserId: string;
|
11433
11417
|
};
|
11434
11418
|
direction: "incoming" | "outgoing" | "system";
|
11435
|
-
status: number;
|
11436
11419
|
createdAt: Date;
|
11437
11420
|
updatedAt: Date;
|
11438
11421
|
deletedAt: Date | null;
|
@@ -11483,6 +11466,7 @@ export declare const mainChatContract: {
|
|
11483
11466
|
firstResponseTime: number;
|
11484
11467
|
lastMessage: string;
|
11485
11468
|
handleTime: number;
|
11469
|
+
closeAt: Date;
|
11486
11470
|
unreadCount: number;
|
11487
11471
|
firstResponseAt: Date;
|
11488
11472
|
isLatest: boolean;
|
@@ -11642,8 +11626,6 @@ export declare const mainChatContract: {
|
|
11642
11626
|
telephonySignature: string | null;
|
11643
11627
|
};
|
11644
11628
|
};
|
11645
|
-
closedAt: Date;
|
11646
|
-
lastMessageAt: Date | null;
|
11647
11629
|
cxlog: {
|
11648
11630
|
id: string;
|
11649
11631
|
channel: string | null;
|
@@ -11749,7 +11731,6 @@ export declare const mainChatContract: {
|
|
11749
11731
|
connectedUserId: string;
|
11750
11732
|
};
|
11751
11733
|
direction: "incoming" | "outgoing" | "system";
|
11752
|
-
status: number;
|
11753
11734
|
createdAt: Date;
|
11754
11735
|
updatedAt: Date;
|
11755
11736
|
deletedAt: Date | null;
|
@@ -11800,6 +11781,7 @@ export declare const mainChatContract: {
|
|
11800
11781
|
firstResponseTime: number;
|
11801
11782
|
lastMessage: string;
|
11802
11783
|
handleTime: number;
|
11784
|
+
closeAt: Date;
|
11803
11785
|
unreadCount: number;
|
11804
11786
|
firstResponseAt: Date;
|
11805
11787
|
isLatest: boolean;
|
@@ -11959,8 +11941,6 @@ export declare const mainChatContract: {
|
|
11959
11941
|
telephonySignature: string | null;
|
11960
11942
|
};
|
11961
11943
|
};
|
11962
|
-
closedAt: Date;
|
11963
|
-
lastMessageAt: Date | null;
|
11964
11944
|
cxlog: {
|
11965
11945
|
id: string;
|
11966
11946
|
channel: string | null;
|
@@ -12262,7 +12242,6 @@ export declare const mainChatContract: {
|
|
12262
12242
|
stickerId: number;
|
12263
12243
|
}>>;
|
12264
12244
|
file: z.ZodOptional<z.ZodType<File, z.ZodTypeDef, File>>;
|
12265
|
-
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
12266
12245
|
}, "strip", z.ZodTypeAny, {
|
12267
12246
|
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
12268
12247
|
roomId: string;
|
@@ -12325,7 +12304,6 @@ export declare const mainChatContract: {
|
|
12325
12304
|
stickerId: number;
|
12326
12305
|
} | undefined;
|
12327
12306
|
file?: File | undefined;
|
12328
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
12329
12307
|
}, {
|
12330
12308
|
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
12331
12309
|
roomId: string;
|
@@ -12388,7 +12366,6 @@ export declare const mainChatContract: {
|
|
12388
12366
|
stickerId: number;
|
12389
12367
|
} | undefined;
|
12390
12368
|
file?: File | undefined;
|
12391
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
12392
12369
|
}>;
|
12393
12370
|
summary: "Send message to room";
|
12394
12371
|
method: "POST";
|
@@ -12420,9 +12397,7 @@ export declare const mainChatContract: {
|
|
12420
12397
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
12421
12398
|
lastMessage: z.ZodString;
|
12422
12399
|
handleTime: z.ZodNumber;
|
12423
|
-
|
12424
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
12425
|
-
status: z.ZodNumber;
|
12400
|
+
closeAt: z.ZodDate;
|
12426
12401
|
unreadCount: z.ZodNumber;
|
12427
12402
|
firstResponseAt: z.ZodDate;
|
12428
12403
|
firstResponseTime: z.ZodNumber;
|
@@ -14347,7 +14322,6 @@ export declare const mainChatContract: {
|
|
14347
14322
|
connectedUserId: string;
|
14348
14323
|
};
|
14349
14324
|
direction: "incoming" | "outgoing" | "system";
|
14350
|
-
status: number;
|
14351
14325
|
createdAt: Date;
|
14352
14326
|
updatedAt: Date;
|
14353
14327
|
deletedAt: Date | null;
|
@@ -14398,6 +14372,7 @@ export declare const mainChatContract: {
|
|
14398
14372
|
firstResponseTime: number;
|
14399
14373
|
lastMessage: string;
|
14400
14374
|
handleTime: number;
|
14375
|
+
closeAt: Date;
|
14401
14376
|
unreadCount: number;
|
14402
14377
|
firstResponseAt: Date;
|
14403
14378
|
isLatest: boolean;
|
@@ -14557,8 +14532,6 @@ export declare const mainChatContract: {
|
|
14557
14532
|
telephonySignature: string | null;
|
14558
14533
|
};
|
14559
14534
|
};
|
14560
|
-
closedAt: Date;
|
14561
|
-
lastMessageAt: Date | null;
|
14562
14535
|
cxlog: {
|
14563
14536
|
id: string;
|
14564
14537
|
channel: string | null;
|
@@ -14661,7 +14634,6 @@ export declare const mainChatContract: {
|
|
14661
14634
|
connectedUserId: string;
|
14662
14635
|
};
|
14663
14636
|
direction: "incoming" | "outgoing" | "system";
|
14664
|
-
status: number;
|
14665
14637
|
createdAt: Date;
|
14666
14638
|
updatedAt: Date;
|
14667
14639
|
deletedAt: Date | null;
|
@@ -14712,6 +14684,7 @@ export declare const mainChatContract: {
|
|
14712
14684
|
firstResponseTime: number;
|
14713
14685
|
lastMessage: string;
|
14714
14686
|
handleTime: number;
|
14687
|
+
closeAt: Date;
|
14715
14688
|
unreadCount: number;
|
14716
14689
|
firstResponseAt: Date;
|
14717
14690
|
isLatest: boolean;
|
@@ -14871,8 +14844,6 @@ export declare const mainChatContract: {
|
|
14871
14844
|
telephonySignature: string | null;
|
14872
14845
|
};
|
14873
14846
|
};
|
14874
|
-
closedAt: Date;
|
14875
|
-
lastMessageAt: Date | null;
|
14876
14847
|
cxlog: {
|
14877
14848
|
id: string;
|
14878
14849
|
channel: string | null;
|
@@ -16721,7 +16692,6 @@ export declare const mainChatContract: {
|
|
16721
16692
|
connectedUserId: string;
|
16722
16693
|
};
|
16723
16694
|
direction: "incoming" | "outgoing" | "system";
|
16724
|
-
status: number;
|
16725
16695
|
createdAt: Date;
|
16726
16696
|
updatedAt: Date;
|
16727
16697
|
deletedAt: Date | null;
|
@@ -16772,6 +16742,7 @@ export declare const mainChatContract: {
|
|
16772
16742
|
firstResponseTime: number;
|
16773
16743
|
lastMessage: string;
|
16774
16744
|
handleTime: number;
|
16745
|
+
closeAt: Date;
|
16775
16746
|
unreadCount: number;
|
16776
16747
|
firstResponseAt: Date;
|
16777
16748
|
isLatest: boolean;
|
@@ -16931,8 +16902,6 @@ export declare const mainChatContract: {
|
|
16931
16902
|
telephonySignature: string | null;
|
16932
16903
|
};
|
16933
16904
|
};
|
16934
|
-
closedAt: Date;
|
16935
|
-
lastMessageAt: Date | null;
|
16936
16905
|
cxlog: {
|
16937
16906
|
id: string;
|
16938
16907
|
channel: string | null;
|
@@ -17361,7 +17330,6 @@ export declare const mainChatContract: {
|
|
17361
17330
|
connectedUserId: string;
|
17362
17331
|
};
|
17363
17332
|
direction: "incoming" | "outgoing" | "system";
|
17364
|
-
status: number;
|
17365
17333
|
createdAt: Date;
|
17366
17334
|
updatedAt: Date;
|
17367
17335
|
deletedAt: Date | null;
|
@@ -17412,6 +17380,7 @@ export declare const mainChatContract: {
|
|
17412
17380
|
firstResponseTime: number;
|
17413
17381
|
lastMessage: string;
|
17414
17382
|
handleTime: number;
|
17383
|
+
closeAt: Date;
|
17415
17384
|
unreadCount: number;
|
17416
17385
|
firstResponseAt: Date;
|
17417
17386
|
isLatest: boolean;
|
@@ -17571,8 +17540,6 @@ export declare const mainChatContract: {
|
|
17571
17540
|
telephonySignature: string | null;
|
17572
17541
|
};
|
17573
17542
|
};
|
17574
|
-
closedAt: Date;
|
17575
|
-
lastMessageAt: Date | null;
|
17576
17543
|
cxlog: {
|
17577
17544
|
id: string;
|
17578
17545
|
channel: string | null;
|
@@ -18003,7 +17970,6 @@ export declare const mainChatContract: {
|
|
18003
17970
|
connectedUserId: string;
|
18004
17971
|
};
|
18005
17972
|
direction: "incoming" | "outgoing" | "system";
|
18006
|
-
status: number;
|
18007
17973
|
createdAt: Date;
|
18008
17974
|
updatedAt: Date;
|
18009
17975
|
deletedAt: Date | null;
|
@@ -18054,6 +18020,7 @@ export declare const mainChatContract: {
|
|
18054
18020
|
firstResponseTime: number;
|
18055
18021
|
lastMessage: string;
|
18056
18022
|
handleTime: number;
|
18023
|
+
closeAt: Date;
|
18057
18024
|
unreadCount: number;
|
18058
18025
|
firstResponseAt: Date;
|
18059
18026
|
isLatest: boolean;
|
@@ -18213,8 +18180,6 @@ export declare const mainChatContract: {
|
|
18213
18180
|
telephonySignature: string | null;
|
18214
18181
|
};
|
18215
18182
|
};
|
18216
|
-
closedAt: Date;
|
18217
|
-
lastMessageAt: Date | null;
|
18218
18183
|
cxlog: {
|
18219
18184
|
id: string;
|
18220
18185
|
channel: string | null;
|
@@ -18646,7 +18611,6 @@ export declare const mainChatContract: {
|
|
18646
18611
|
connectedUserId: string;
|
18647
18612
|
};
|
18648
18613
|
direction: "incoming" | "outgoing" | "system";
|
18649
|
-
status: number;
|
18650
18614
|
createdAt: Date;
|
18651
18615
|
updatedAt: Date;
|
18652
18616
|
deletedAt: Date | null;
|
@@ -18697,6 +18661,7 @@ export declare const mainChatContract: {
|
|
18697
18661
|
firstResponseTime: number;
|
18698
18662
|
lastMessage: string;
|
18699
18663
|
handleTime: number;
|
18664
|
+
closeAt: Date;
|
18700
18665
|
unreadCount: number;
|
18701
18666
|
firstResponseAt: Date;
|
18702
18667
|
isLatest: boolean;
|
@@ -18856,8 +18821,6 @@ export declare const mainChatContract: {
|
|
18856
18821
|
telephonySignature: string | null;
|
18857
18822
|
};
|
18858
18823
|
};
|
18859
|
-
closedAt: Date;
|
18860
|
-
lastMessageAt: Date | null;
|
18861
18824
|
cxlog: {
|
18862
18825
|
id: string;
|
18863
18826
|
channel: string | null;
|
@@ -19253,9 +19216,7 @@ export declare const mainChatContract: {
|
|
19253
19216
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
19254
19217
|
lastMessage: z.ZodString;
|
19255
19218
|
handleTime: z.ZodNumber;
|
19256
|
-
|
19257
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
19258
|
-
status: z.ZodNumber;
|
19219
|
+
closeAt: z.ZodDate;
|
19259
19220
|
unreadCount: z.ZodNumber;
|
19260
19221
|
firstResponseAt: z.ZodDate;
|
19261
19222
|
firstResponseTime: z.ZodNumber;
|
@@ -21180,7 +21141,6 @@ export declare const mainChatContract: {
|
|
21180
21141
|
connectedUserId: string;
|
21181
21142
|
};
|
21182
21143
|
direction: "incoming" | "outgoing" | "system";
|
21183
|
-
status: number;
|
21184
21144
|
createdAt: Date;
|
21185
21145
|
updatedAt: Date;
|
21186
21146
|
deletedAt: Date | null;
|
@@ -21231,6 +21191,7 @@ export declare const mainChatContract: {
|
|
21231
21191
|
firstResponseTime: number;
|
21232
21192
|
lastMessage: string;
|
21233
21193
|
handleTime: number;
|
21194
|
+
closeAt: Date;
|
21234
21195
|
unreadCount: number;
|
21235
21196
|
firstResponseAt: Date;
|
21236
21197
|
isLatest: boolean;
|
@@ -21390,8 +21351,6 @@ export declare const mainChatContract: {
|
|
21390
21351
|
telephonySignature: string | null;
|
21391
21352
|
};
|
21392
21353
|
};
|
21393
|
-
closedAt: Date;
|
21394
|
-
lastMessageAt: Date | null;
|
21395
21354
|
cxlog: {
|
21396
21355
|
id: string;
|
21397
21356
|
channel: string | null;
|
@@ -21494,7 +21453,6 @@ export declare const mainChatContract: {
|
|
21494
21453
|
connectedUserId: string;
|
21495
21454
|
};
|
21496
21455
|
direction: "incoming" | "outgoing" | "system";
|
21497
|
-
status: number;
|
21498
21456
|
createdAt: Date;
|
21499
21457
|
updatedAt: Date;
|
21500
21458
|
deletedAt: Date | null;
|
@@ -21545,6 +21503,7 @@ export declare const mainChatContract: {
|
|
21545
21503
|
firstResponseTime: number;
|
21546
21504
|
lastMessage: string;
|
21547
21505
|
handleTime: number;
|
21506
|
+
closeAt: Date;
|
21548
21507
|
unreadCount: number;
|
21549
21508
|
firstResponseAt: Date;
|
21550
21509
|
isLatest: boolean;
|
@@ -21704,8 +21663,6 @@ export declare const mainChatContract: {
|
|
21704
21663
|
telephonySignature: string | null;
|
21705
21664
|
};
|
21706
21665
|
};
|
21707
|
-
closedAt: Date;
|
21708
|
-
lastMessageAt: Date | null;
|
21709
21666
|
cxlog: {
|
21710
21667
|
id: string;
|
21711
21668
|
channel: string | null;
|
@@ -23554,7 +23511,6 @@ export declare const mainChatContract: {
|
|
23554
23511
|
connectedUserId: string;
|
23555
23512
|
};
|
23556
23513
|
direction: "incoming" | "outgoing" | "system";
|
23557
|
-
status: number;
|
23558
23514
|
createdAt: Date;
|
23559
23515
|
updatedAt: Date;
|
23560
23516
|
deletedAt: Date | null;
|
@@ -23605,6 +23561,7 @@ export declare const mainChatContract: {
|
|
23605
23561
|
firstResponseTime: number;
|
23606
23562
|
lastMessage: string;
|
23607
23563
|
handleTime: number;
|
23564
|
+
closeAt: Date;
|
23608
23565
|
unreadCount: number;
|
23609
23566
|
firstResponseAt: Date;
|
23610
23567
|
isLatest: boolean;
|
@@ -23764,8 +23721,6 @@ export declare const mainChatContract: {
|
|
23764
23721
|
telephonySignature: string | null;
|
23765
23722
|
};
|
23766
23723
|
};
|
23767
|
-
closedAt: Date;
|
23768
|
-
lastMessageAt: Date | null;
|
23769
23724
|
cxlog: {
|
23770
23725
|
id: string;
|
23771
23726
|
channel: string | null;
|
@@ -24194,7 +24149,6 @@ export declare const mainChatContract: {
|
|
24194
24149
|
connectedUserId: string;
|
24195
24150
|
};
|
24196
24151
|
direction: "incoming" | "outgoing" | "system";
|
24197
|
-
status: number;
|
24198
24152
|
createdAt: Date;
|
24199
24153
|
updatedAt: Date;
|
24200
24154
|
deletedAt: Date | null;
|
@@ -24245,6 +24199,7 @@ export declare const mainChatContract: {
|
|
24245
24199
|
firstResponseTime: number;
|
24246
24200
|
lastMessage: string;
|
24247
24201
|
handleTime: number;
|
24202
|
+
closeAt: Date;
|
24248
24203
|
unreadCount: number;
|
24249
24204
|
firstResponseAt: Date;
|
24250
24205
|
isLatest: boolean;
|
@@ -24404,8 +24359,6 @@ export declare const mainChatContract: {
|
|
24404
24359
|
telephonySignature: string | null;
|
24405
24360
|
};
|
24406
24361
|
};
|
24407
|
-
closedAt: Date;
|
24408
|
-
lastMessageAt: Date | null;
|
24409
24362
|
cxlog: {
|
24410
24363
|
id: string;
|
24411
24364
|
channel: string | null;
|
@@ -24836,7 +24789,6 @@ export declare const mainChatContract: {
|
|
24836
24789
|
connectedUserId: string;
|
24837
24790
|
};
|
24838
24791
|
direction: "incoming" | "outgoing" | "system";
|
24839
|
-
status: number;
|
24840
24792
|
createdAt: Date;
|
24841
24793
|
updatedAt: Date;
|
24842
24794
|
deletedAt: Date | null;
|
@@ -24887,6 +24839,7 @@ export declare const mainChatContract: {
|
|
24887
24839
|
firstResponseTime: number;
|
24888
24840
|
lastMessage: string;
|
24889
24841
|
handleTime: number;
|
24842
|
+
closeAt: Date;
|
24890
24843
|
unreadCount: number;
|
24891
24844
|
firstResponseAt: Date;
|
24892
24845
|
isLatest: boolean;
|
@@ -25046,8 +24999,6 @@ export declare const mainChatContract: {
|
|
25046
24999
|
telephonySignature: string | null;
|
25047
25000
|
};
|
25048
25001
|
};
|
25049
|
-
closedAt: Date;
|
25050
|
-
lastMessageAt: Date | null;
|
25051
25002
|
cxlog: {
|
25052
25003
|
id: string;
|
25053
25004
|
channel: string | null;
|
@@ -25482,7 +25433,6 @@ export declare const mainChatContract: {
|
|
25482
25433
|
connectedUserId: string;
|
25483
25434
|
};
|
25484
25435
|
direction: "incoming" | "outgoing" | "system";
|
25485
|
-
status: number;
|
25486
25436
|
createdAt: Date;
|
25487
25437
|
updatedAt: Date;
|
25488
25438
|
deletedAt: Date | null;
|
@@ -25533,6 +25483,7 @@ export declare const mainChatContract: {
|
|
25533
25483
|
firstResponseTime: number;
|
25534
25484
|
lastMessage: string;
|
25535
25485
|
handleTime: number;
|
25486
|
+
closeAt: Date;
|
25536
25487
|
unreadCount: number;
|
25537
25488
|
firstResponseAt: Date;
|
25538
25489
|
isLatest: boolean;
|
@@ -25692,8 +25643,6 @@ export declare const mainChatContract: {
|
|
25692
25643
|
telephonySignature: string | null;
|
25693
25644
|
};
|
25694
25645
|
};
|
25695
|
-
closedAt: Date;
|
25696
|
-
lastMessageAt: Date | null;
|
25697
25646
|
cxlog: {
|
25698
25647
|
id: string;
|
25699
25648
|
channel: string | null;
|
@@ -26353,7 +26302,6 @@ export declare const mainChatContract: {
|
|
26353
26302
|
connectedUserId: string;
|
26354
26303
|
}>;
|
26355
26304
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
26356
|
-
status: z.ZodNumber;
|
26357
26305
|
createdAt: z.ZodDate;
|
26358
26306
|
updatedAt: z.ZodDate;
|
26359
26307
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -26564,6 +26512,7 @@ export declare const mainChatContract: {
|
|
26564
26512
|
firstResponseTime: z.ZodNumber;
|
26565
26513
|
lastMessage: z.ZodString;
|
26566
26514
|
handleTime: z.ZodNumber;
|
26515
|
+
closeAt: z.ZodDate;
|
26567
26516
|
unreadCount: z.ZodNumber;
|
26568
26517
|
firstResponseAt: z.ZodDate;
|
26569
26518
|
isLatest: z.ZodBoolean;
|
@@ -27705,8 +27654,6 @@ export declare const mainChatContract: {
|
|
27705
27654
|
telephonySignature: string | null;
|
27706
27655
|
};
|
27707
27656
|
}>;
|
27708
|
-
closedAt: z.ZodDate;
|
27709
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
27710
27657
|
cxlog: z.ZodObject<{
|
27711
27658
|
id: z.ZodString;
|
27712
27659
|
createdAt: z.ZodDate;
|
@@ -27920,7 +27867,6 @@ export declare const mainChatContract: {
|
|
27920
27867
|
connectedUserId: string;
|
27921
27868
|
};
|
27922
27869
|
direction: "incoming" | "outgoing" | "system";
|
27923
|
-
status: number;
|
27924
27870
|
createdAt: Date;
|
27925
27871
|
updatedAt: Date;
|
27926
27872
|
deletedAt: Date | null;
|
@@ -27971,6 +27917,7 @@ export declare const mainChatContract: {
|
|
27971
27917
|
firstResponseTime: number;
|
27972
27918
|
lastMessage: string;
|
27973
27919
|
handleTime: number;
|
27920
|
+
closeAt: Date;
|
27974
27921
|
unreadCount: number;
|
27975
27922
|
firstResponseAt: Date;
|
27976
27923
|
isLatest: boolean;
|
@@ -28130,8 +28077,6 @@ export declare const mainChatContract: {
|
|
28130
28077
|
telephonySignature: string | null;
|
28131
28078
|
};
|
28132
28079
|
};
|
28133
|
-
closedAt: Date;
|
28134
|
-
lastMessageAt: Date | null;
|
28135
28080
|
cxlog: {
|
28136
28081
|
id: string;
|
28137
28082
|
channel: string | null;
|
@@ -28235,7 +28180,6 @@ export declare const mainChatContract: {
|
|
28235
28180
|
connectedUserId: string;
|
28236
28181
|
};
|
28237
28182
|
direction: "incoming" | "outgoing" | "system";
|
28238
|
-
status: number;
|
28239
28183
|
createdAt: Date;
|
28240
28184
|
updatedAt: Date;
|
28241
28185
|
deletedAt: Date | null;
|
@@ -28286,6 +28230,7 @@ export declare const mainChatContract: {
|
|
28286
28230
|
firstResponseTime: number;
|
28287
28231
|
lastMessage: string;
|
28288
28232
|
handleTime: number;
|
28233
|
+
closeAt: Date;
|
28289
28234
|
unreadCount: number;
|
28290
28235
|
firstResponseAt: Date;
|
28291
28236
|
isLatest: boolean;
|
@@ -28445,8 +28390,6 @@ export declare const mainChatContract: {
|
|
28445
28390
|
telephonySignature: string | null;
|
28446
28391
|
};
|
28447
28392
|
};
|
28448
|
-
closedAt: Date;
|
28449
|
-
lastMessageAt: Date | null;
|
28450
28393
|
cxlog: {
|
28451
28394
|
id: string;
|
28452
28395
|
channel: string | null;
|
@@ -28552,7 +28495,6 @@ export declare const mainChatContract: {
|
|
28552
28495
|
connectedUserId: string;
|
28553
28496
|
};
|
28554
28497
|
direction: "incoming" | "outgoing" | "system";
|
28555
|
-
status: number;
|
28556
28498
|
createdAt: Date;
|
28557
28499
|
updatedAt: Date;
|
28558
28500
|
deletedAt: Date | null;
|
@@ -28603,6 +28545,7 @@ export declare const mainChatContract: {
|
|
28603
28545
|
firstResponseTime: number;
|
28604
28546
|
lastMessage: string;
|
28605
28547
|
handleTime: number;
|
28548
|
+
closeAt: Date;
|
28606
28549
|
unreadCount: number;
|
28607
28550
|
firstResponseAt: Date;
|
28608
28551
|
isLatest: boolean;
|
@@ -28762,8 +28705,6 @@ export declare const mainChatContract: {
|
|
28762
28705
|
telephonySignature: string | null;
|
28763
28706
|
};
|
28764
28707
|
};
|
28765
|
-
closedAt: Date;
|
28766
|
-
lastMessageAt: Date | null;
|
28767
28708
|
cxlog: {
|
28768
28709
|
id: string;
|
28769
28710
|
channel: string | null;
|
@@ -28870,7 +28811,6 @@ export declare const mainChatContract: {
|
|
28870
28811
|
connectedUserId: string;
|
28871
28812
|
};
|
28872
28813
|
direction: "incoming" | "outgoing" | "system";
|
28873
|
-
status: number;
|
28874
28814
|
createdAt: Date;
|
28875
28815
|
updatedAt: Date;
|
28876
28816
|
deletedAt: Date | null;
|
@@ -28921,6 +28861,7 @@ export declare const mainChatContract: {
|
|
28921
28861
|
firstResponseTime: number;
|
28922
28862
|
lastMessage: string;
|
28923
28863
|
handleTime: number;
|
28864
|
+
closeAt: Date;
|
28924
28865
|
unreadCount: number;
|
28925
28866
|
firstResponseAt: Date;
|
28926
28867
|
isLatest: boolean;
|
@@ -29080,8 +29021,6 @@ export declare const mainChatContract: {
|
|
29080
29021
|
telephonySignature: string | null;
|
29081
29022
|
};
|
29082
29023
|
};
|
29083
|
-
closedAt: Date;
|
29084
|
-
lastMessageAt: Date | null;
|
29085
29024
|
cxlog: {
|
29086
29025
|
id: string;
|
29087
29026
|
channel: string | null;
|
@@ -29172,9 +29111,7 @@ export declare const mainChatContract: {
|
|
29172
29111
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
29173
29112
|
lastMessage: z.ZodString;
|
29174
29113
|
handleTime: z.ZodNumber;
|
29175
|
-
|
29176
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
29177
|
-
status: z.ZodNumber;
|
29114
|
+
closeAt: z.ZodDate;
|
29178
29115
|
unreadCount: z.ZodNumber;
|
29179
29116
|
firstResponseAt: z.ZodDate;
|
29180
29117
|
firstResponseTime: z.ZodNumber;
|
@@ -31099,7 +31036,6 @@ export declare const mainChatContract: {
|
|
31099
31036
|
connectedUserId: string;
|
31100
31037
|
};
|
31101
31038
|
direction: "incoming" | "outgoing" | "system";
|
31102
|
-
status: number;
|
31103
31039
|
createdAt: Date;
|
31104
31040
|
updatedAt: Date;
|
31105
31041
|
deletedAt: Date | null;
|
@@ -31150,6 +31086,7 @@ export declare const mainChatContract: {
|
|
31150
31086
|
firstResponseTime: number;
|
31151
31087
|
lastMessage: string;
|
31152
31088
|
handleTime: number;
|
31089
|
+
closeAt: Date;
|
31153
31090
|
unreadCount: number;
|
31154
31091
|
firstResponseAt: Date;
|
31155
31092
|
isLatest: boolean;
|
@@ -31309,8 +31246,6 @@ export declare const mainChatContract: {
|
|
31309
31246
|
telephonySignature: string | null;
|
31310
31247
|
};
|
31311
31248
|
};
|
31312
|
-
closedAt: Date;
|
31313
|
-
lastMessageAt: Date | null;
|
31314
31249
|
cxlog: {
|
31315
31250
|
id: string;
|
31316
31251
|
channel: string | null;
|
@@ -31413,7 +31348,6 @@ export declare const mainChatContract: {
|
|
31413
31348
|
connectedUserId: string;
|
31414
31349
|
};
|
31415
31350
|
direction: "incoming" | "outgoing" | "system";
|
31416
|
-
status: number;
|
31417
31351
|
createdAt: Date;
|
31418
31352
|
updatedAt: Date;
|
31419
31353
|
deletedAt: Date | null;
|
@@ -31464,6 +31398,7 @@ export declare const mainChatContract: {
|
|
31464
31398
|
firstResponseTime: number;
|
31465
31399
|
lastMessage: string;
|
31466
31400
|
handleTime: number;
|
31401
|
+
closeAt: Date;
|
31467
31402
|
unreadCount: number;
|
31468
31403
|
firstResponseAt: Date;
|
31469
31404
|
isLatest: boolean;
|
@@ -31623,8 +31558,6 @@ export declare const mainChatContract: {
|
|
31623
31558
|
telephonySignature: string | null;
|
31624
31559
|
};
|
31625
31560
|
};
|
31626
|
-
closedAt: Date;
|
31627
|
-
lastMessageAt: Date | null;
|
31628
31561
|
cxlog: {
|
31629
31562
|
id: string;
|
31630
31563
|
channel: string | null;
|
@@ -31729,7 +31662,6 @@ export declare const mainChatContract: {
|
|
31729
31662
|
connectedUserId: string;
|
31730
31663
|
};
|
31731
31664
|
direction: "incoming" | "outgoing" | "system";
|
31732
|
-
status: number;
|
31733
31665
|
createdAt: Date;
|
31734
31666
|
updatedAt: Date;
|
31735
31667
|
deletedAt: Date | null;
|
@@ -31780,6 +31712,7 @@ export declare const mainChatContract: {
|
|
31780
31712
|
firstResponseTime: number;
|
31781
31713
|
lastMessage: string;
|
31782
31714
|
handleTime: number;
|
31715
|
+
closeAt: Date;
|
31783
31716
|
unreadCount: number;
|
31784
31717
|
firstResponseAt: Date;
|
31785
31718
|
isLatest: boolean;
|
@@ -31939,8 +31872,6 @@ export declare const mainChatContract: {
|
|
31939
31872
|
telephonySignature: string | null;
|
31940
31873
|
};
|
31941
31874
|
};
|
31942
|
-
closedAt: Date;
|
31943
|
-
lastMessageAt: Date | null;
|
31944
31875
|
cxlog: {
|
31945
31876
|
id: string;
|
31946
31877
|
channel: string | null;
|
@@ -32046,7 +31977,6 @@ export declare const mainChatContract: {
|
|
32046
31977
|
connectedUserId: string;
|
32047
31978
|
};
|
32048
31979
|
direction: "incoming" | "outgoing" | "system";
|
32049
|
-
status: number;
|
32050
31980
|
createdAt: Date;
|
32051
31981
|
updatedAt: Date;
|
32052
31982
|
deletedAt: Date | null;
|
@@ -32097,6 +32027,7 @@ export declare const mainChatContract: {
|
|
32097
32027
|
firstResponseTime: number;
|
32098
32028
|
lastMessage: string;
|
32099
32029
|
handleTime: number;
|
32030
|
+
closeAt: Date;
|
32100
32031
|
unreadCount: number;
|
32101
32032
|
firstResponseAt: Date;
|
32102
32033
|
isLatest: boolean;
|
@@ -32256,8 +32187,6 @@ export declare const mainChatContract: {
|
|
32256
32187
|
telephonySignature: string | null;
|
32257
32188
|
};
|
32258
32189
|
};
|
32259
|
-
closedAt: Date;
|
32260
|
-
lastMessageAt: Date | null;
|
32261
32190
|
cxlog: {
|
32262
32191
|
id: string;
|
32263
32192
|
channel: string | null;
|
@@ -32334,9 +32263,7 @@ export declare const mainChatContract: {
|
|
32334
32263
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
32335
32264
|
lastMessage: z.ZodString;
|
32336
32265
|
handleTime: z.ZodNumber;
|
32337
|
-
|
32338
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
32339
|
-
status: z.ZodNumber;
|
32266
|
+
closeAt: z.ZodDate;
|
32340
32267
|
unreadCount: z.ZodNumber;
|
32341
32268
|
firstResponseAt: z.ZodDate;
|
32342
32269
|
firstResponseTime: z.ZodNumber;
|
@@ -34261,7 +34188,6 @@ export declare const mainChatContract: {
|
|
34261
34188
|
connectedUserId: string;
|
34262
34189
|
};
|
34263
34190
|
direction: "incoming" | "outgoing" | "system";
|
34264
|
-
status: number;
|
34265
34191
|
createdAt: Date;
|
34266
34192
|
updatedAt: Date;
|
34267
34193
|
deletedAt: Date | null;
|
@@ -34312,6 +34238,7 @@ export declare const mainChatContract: {
|
|
34312
34238
|
firstResponseTime: number;
|
34313
34239
|
lastMessage: string;
|
34314
34240
|
handleTime: number;
|
34241
|
+
closeAt: Date;
|
34315
34242
|
unreadCount: number;
|
34316
34243
|
firstResponseAt: Date;
|
34317
34244
|
isLatest: boolean;
|
@@ -34471,8 +34398,6 @@ export declare const mainChatContract: {
|
|
34471
34398
|
telephonySignature: string | null;
|
34472
34399
|
};
|
34473
34400
|
};
|
34474
|
-
closedAt: Date;
|
34475
|
-
lastMessageAt: Date | null;
|
34476
34401
|
cxlog: {
|
34477
34402
|
id: string;
|
34478
34403
|
channel: string | null;
|
@@ -34575,7 +34500,6 @@ export declare const mainChatContract: {
|
|
34575
34500
|
connectedUserId: string;
|
34576
34501
|
};
|
34577
34502
|
direction: "incoming" | "outgoing" | "system";
|
34578
|
-
status: number;
|
34579
34503
|
createdAt: Date;
|
34580
34504
|
updatedAt: Date;
|
34581
34505
|
deletedAt: Date | null;
|
@@ -34626,6 +34550,7 @@ export declare const mainChatContract: {
|
|
34626
34550
|
firstResponseTime: number;
|
34627
34551
|
lastMessage: string;
|
34628
34552
|
handleTime: number;
|
34553
|
+
closeAt: Date;
|
34629
34554
|
unreadCount: number;
|
34630
34555
|
firstResponseAt: Date;
|
34631
34556
|
isLatest: boolean;
|
@@ -34785,8 +34710,6 @@ export declare const mainChatContract: {
|
|
34785
34710
|
telephonySignature: string | null;
|
34786
34711
|
};
|
34787
34712
|
};
|
34788
|
-
closedAt: Date;
|
34789
|
-
lastMessageAt: Date | null;
|
34790
34713
|
cxlog: {
|
34791
34714
|
id: string;
|
34792
34715
|
channel: string | null;
|
@@ -34891,7 +34814,6 @@ export declare const mainChatContract: {
|
|
34891
34814
|
connectedUserId: string;
|
34892
34815
|
};
|
34893
34816
|
direction: "incoming" | "outgoing" | "system";
|
34894
|
-
status: number;
|
34895
34817
|
createdAt: Date;
|
34896
34818
|
updatedAt: Date;
|
34897
34819
|
deletedAt: Date | null;
|
@@ -34942,6 +34864,7 @@ export declare const mainChatContract: {
|
|
34942
34864
|
firstResponseTime: number;
|
34943
34865
|
lastMessage: string;
|
34944
34866
|
handleTime: number;
|
34867
|
+
closeAt: Date;
|
34945
34868
|
unreadCount: number;
|
34946
34869
|
firstResponseAt: Date;
|
34947
34870
|
isLatest: boolean;
|
@@ -35101,8 +35024,6 @@ export declare const mainChatContract: {
|
|
35101
35024
|
telephonySignature: string | null;
|
35102
35025
|
};
|
35103
35026
|
};
|
35104
|
-
closedAt: Date;
|
35105
|
-
lastMessageAt: Date | null;
|
35106
35027
|
cxlog: {
|
35107
35028
|
id: string;
|
35108
35029
|
channel: string | null;
|
@@ -35208,7 +35129,6 @@ export declare const mainChatContract: {
|
|
35208
35129
|
connectedUserId: string;
|
35209
35130
|
};
|
35210
35131
|
direction: "incoming" | "outgoing" | "system";
|
35211
|
-
status: number;
|
35212
35132
|
createdAt: Date;
|
35213
35133
|
updatedAt: Date;
|
35214
35134
|
deletedAt: Date | null;
|
@@ -35259,6 +35179,7 @@ export declare const mainChatContract: {
|
|
35259
35179
|
firstResponseTime: number;
|
35260
35180
|
lastMessage: string;
|
35261
35181
|
handleTime: number;
|
35182
|
+
closeAt: Date;
|
35262
35183
|
unreadCount: number;
|
35263
35184
|
firstResponseAt: Date;
|
35264
35185
|
isLatest: boolean;
|
@@ -35418,8 +35339,6 @@ export declare const mainChatContract: {
|
|
35418
35339
|
telephonySignature: string | null;
|
35419
35340
|
};
|
35420
35341
|
};
|
35421
|
-
closedAt: Date;
|
35422
|
-
lastMessageAt: Date | null;
|
35423
35342
|
cxlog: {
|
35424
35343
|
id: string;
|
35425
35344
|
channel: string | null;
|
@@ -35868,7 +35787,6 @@ export declare const mainChatContract: {
|
|
35868
35787
|
connectedUserId: string;
|
35869
35788
|
}>;
|
35870
35789
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
35871
|
-
status: z.ZodNumber;
|
35872
35790
|
createdAt: z.ZodDate;
|
35873
35791
|
updatedAt: z.ZodDate;
|
35874
35792
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -36079,6 +35997,7 @@ export declare const mainChatContract: {
|
|
36079
35997
|
firstResponseTime: z.ZodNumber;
|
36080
35998
|
lastMessage: z.ZodString;
|
36081
35999
|
handleTime: z.ZodNumber;
|
36000
|
+
closeAt: z.ZodDate;
|
36082
36001
|
unreadCount: z.ZodNumber;
|
36083
36002
|
firstResponseAt: z.ZodDate;
|
36084
36003
|
isLatest: z.ZodBoolean;
|
@@ -37220,8 +37139,6 @@ export declare const mainChatContract: {
|
|
37220
37139
|
telephonySignature: string | null;
|
37221
37140
|
};
|
37222
37141
|
}>;
|
37223
|
-
closedAt: z.ZodDate;
|
37224
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
37225
37142
|
cxlog: z.ZodObject<{
|
37226
37143
|
id: z.ZodString;
|
37227
37144
|
createdAt: z.ZodDate;
|
@@ -38122,7 +38039,6 @@ export declare const mainChatContract: {
|
|
38122
38039
|
connectedUserId: string;
|
38123
38040
|
};
|
38124
38041
|
direction: "incoming" | "outgoing" | "system";
|
38125
|
-
status: number;
|
38126
38042
|
createdAt: Date;
|
38127
38043
|
updatedAt: Date;
|
38128
38044
|
deletedAt: Date | null;
|
@@ -38270,6 +38186,7 @@ export declare const mainChatContract: {
|
|
38270
38186
|
firstResponseTime: number;
|
38271
38187
|
lastMessage: string;
|
38272
38188
|
handleTime: number;
|
38189
|
+
closeAt: Date;
|
38273
38190
|
unreadCount: number;
|
38274
38191
|
firstResponseAt: Date;
|
38275
38192
|
isLatest: boolean;
|
@@ -38429,8 +38346,6 @@ export declare const mainChatContract: {
|
|
38429
38346
|
telephonySignature: string | null;
|
38430
38347
|
};
|
38431
38348
|
};
|
38432
|
-
closedAt: Date;
|
38433
|
-
lastMessageAt: Date | null;
|
38434
38349
|
cxlog: {
|
38435
38350
|
id: string;
|
38436
38351
|
channel: string | null;
|
@@ -38534,7 +38449,6 @@ export declare const mainChatContract: {
|
|
38534
38449
|
connectedUserId: string;
|
38535
38450
|
};
|
38536
38451
|
direction: "incoming" | "outgoing" | "system";
|
38537
|
-
status: number;
|
38538
38452
|
createdAt: Date;
|
38539
38453
|
updatedAt: Date;
|
38540
38454
|
deletedAt: Date | null;
|
@@ -38682,6 +38596,7 @@ export declare const mainChatContract: {
|
|
38682
38596
|
firstResponseTime: number;
|
38683
38597
|
lastMessage: string;
|
38684
38598
|
handleTime: number;
|
38599
|
+
closeAt: Date;
|
38685
38600
|
unreadCount: number;
|
38686
38601
|
firstResponseAt: Date;
|
38687
38602
|
isLatest: boolean;
|
@@ -38841,8 +38756,6 @@ export declare const mainChatContract: {
|
|
38841
38756
|
telephonySignature: string | null;
|
38842
38757
|
};
|
38843
38758
|
};
|
38844
|
-
closedAt: Date;
|
38845
|
-
lastMessageAt: Date | null;
|
38846
38759
|
cxlog: {
|
38847
38760
|
id: string;
|
38848
38761
|
channel: string | null;
|
@@ -38948,7 +38861,6 @@ export declare const mainChatContract: {
|
|
38948
38861
|
connectedUserId: string;
|
38949
38862
|
};
|
38950
38863
|
direction: "incoming" | "outgoing" | "system";
|
38951
|
-
status: number;
|
38952
38864
|
createdAt: Date;
|
38953
38865
|
updatedAt: Date;
|
38954
38866
|
deletedAt: Date | null;
|
@@ -39096,6 +39008,7 @@ export declare const mainChatContract: {
|
|
39096
39008
|
firstResponseTime: number;
|
39097
39009
|
lastMessage: string;
|
39098
39010
|
handleTime: number;
|
39011
|
+
closeAt: Date;
|
39099
39012
|
unreadCount: number;
|
39100
39013
|
firstResponseAt: Date;
|
39101
39014
|
isLatest: boolean;
|
@@ -39255,8 +39168,6 @@ export declare const mainChatContract: {
|
|
39255
39168
|
telephonySignature: string | null;
|
39256
39169
|
};
|
39257
39170
|
};
|
39258
|
-
closedAt: Date;
|
39259
|
-
lastMessageAt: Date | null;
|
39260
39171
|
cxlog: {
|
39261
39172
|
id: string;
|
39262
39173
|
channel: string | null;
|
@@ -39363,7 +39274,6 @@ export declare const mainChatContract: {
|
|
39363
39274
|
connectedUserId: string;
|
39364
39275
|
};
|
39365
39276
|
direction: "incoming" | "outgoing" | "system";
|
39366
|
-
status: number;
|
39367
39277
|
createdAt: Date;
|
39368
39278
|
updatedAt: Date;
|
39369
39279
|
deletedAt: Date | null;
|
@@ -39511,6 +39421,7 @@ export declare const mainChatContract: {
|
|
39511
39421
|
firstResponseTime: number;
|
39512
39422
|
lastMessage: string;
|
39513
39423
|
handleTime: number;
|
39424
|
+
closeAt: Date;
|
39514
39425
|
unreadCount: number;
|
39515
39426
|
firstResponseAt: Date;
|
39516
39427
|
isLatest: boolean;
|
@@ -39670,8 +39581,6 @@ export declare const mainChatContract: {
|
|
39670
39581
|
telephonySignature: string | null;
|
39671
39582
|
};
|
39672
39583
|
};
|
39673
|
-
closedAt: Date;
|
39674
|
-
lastMessageAt: Date | null;
|
39675
39584
|
cxlog: {
|
39676
39585
|
id: string;
|
39677
39586
|
channel: string | null;
|
@@ -40111,7 +40020,6 @@ export declare const mainChatContract: {
|
|
40111
40020
|
connectedUserId: string;
|
40112
40021
|
}>;
|
40113
40022
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
40114
|
-
status: z.ZodNumber;
|
40115
40023
|
createdAt: z.ZodDate;
|
40116
40024
|
updatedAt: z.ZodDate;
|
40117
40025
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
@@ -40322,6 +40230,7 @@ export declare const mainChatContract: {
|
|
40322
40230
|
firstResponseTime: z.ZodNumber;
|
40323
40231
|
lastMessage: z.ZodString;
|
40324
40232
|
handleTime: z.ZodNumber;
|
40233
|
+
closeAt: z.ZodDate;
|
40325
40234
|
unreadCount: z.ZodNumber;
|
40326
40235
|
firstResponseAt: z.ZodDate;
|
40327
40236
|
isLatest: z.ZodBoolean;
|
@@ -41463,8 +41372,6 @@ export declare const mainChatContract: {
|
|
41463
41372
|
telephonySignature: string | null;
|
41464
41373
|
};
|
41465
41374
|
}>;
|
41466
|
-
closedAt: z.ZodDate;
|
41467
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
41468
41375
|
cxlog: z.ZodObject<{
|
41469
41376
|
id: z.ZodString;
|
41470
41377
|
createdAt: z.ZodDate;
|
@@ -41679,7 +41586,6 @@ export declare const mainChatContract: {
|
|
41679
41586
|
};
|
41680
41587
|
direction: "incoming" | "outgoing" | "system";
|
41681
41588
|
description: string | null;
|
41682
|
-
status: number;
|
41683
41589
|
createdAt: Date;
|
41684
41590
|
updatedAt: Date;
|
41685
41591
|
deletedAt: Date | null;
|
@@ -41730,6 +41636,7 @@ export declare const mainChatContract: {
|
|
41730
41636
|
firstResponseTime: number;
|
41731
41637
|
lastMessage: string;
|
41732
41638
|
handleTime: number;
|
41639
|
+
closeAt: Date;
|
41733
41640
|
unreadCount: number;
|
41734
41641
|
firstResponseAt: Date;
|
41735
41642
|
isLatest: boolean;
|
@@ -41889,8 +41796,6 @@ export declare const mainChatContract: {
|
|
41889
41796
|
telephonySignature: string | null;
|
41890
41797
|
};
|
41891
41798
|
};
|
41892
|
-
closedAt: Date;
|
41893
|
-
lastMessageAt: Date | null;
|
41894
41799
|
cxlog: {
|
41895
41800
|
id: string;
|
41896
41801
|
channel: string | null;
|
@@ -41994,7 +41899,6 @@ export declare const mainChatContract: {
|
|
41994
41899
|
};
|
41995
41900
|
direction: "incoming" | "outgoing" | "system";
|
41996
41901
|
description: string | null;
|
41997
|
-
status: number;
|
41998
41902
|
createdAt: Date;
|
41999
41903
|
updatedAt: Date;
|
42000
41904
|
deletedAt: Date | null;
|
@@ -42045,6 +41949,7 @@ export declare const mainChatContract: {
|
|
42045
41949
|
firstResponseTime: number;
|
42046
41950
|
lastMessage: string;
|
42047
41951
|
handleTime: number;
|
41952
|
+
closeAt: Date;
|
42048
41953
|
unreadCount: number;
|
42049
41954
|
firstResponseAt: Date;
|
42050
41955
|
isLatest: boolean;
|
@@ -42204,8 +42109,6 @@ export declare const mainChatContract: {
|
|
42204
42109
|
telephonySignature: string | null;
|
42205
42110
|
};
|
42206
42111
|
};
|
42207
|
-
closedAt: Date;
|
42208
|
-
lastMessageAt: Date | null;
|
42209
42112
|
cxlog: {
|
42210
42113
|
id: string;
|
42211
42114
|
channel: string | null;
|
@@ -42311,7 +42214,6 @@ export declare const mainChatContract: {
|
|
42311
42214
|
};
|
42312
42215
|
direction: "incoming" | "outgoing" | "system";
|
42313
42216
|
description: string | null;
|
42314
|
-
status: number;
|
42315
42217
|
createdAt: Date;
|
42316
42218
|
updatedAt: Date;
|
42317
42219
|
deletedAt: Date | null;
|
@@ -42362,6 +42264,7 @@ export declare const mainChatContract: {
|
|
42362
42264
|
firstResponseTime: number;
|
42363
42265
|
lastMessage: string;
|
42364
42266
|
handleTime: number;
|
42267
|
+
closeAt: Date;
|
42365
42268
|
unreadCount: number;
|
42366
42269
|
firstResponseAt: Date;
|
42367
42270
|
isLatest: boolean;
|
@@ -42521,8 +42424,6 @@ export declare const mainChatContract: {
|
|
42521
42424
|
telephonySignature: string | null;
|
42522
42425
|
};
|
42523
42426
|
};
|
42524
|
-
closedAt: Date;
|
42525
|
-
lastMessageAt: Date | null;
|
42526
42427
|
cxlog: {
|
42527
42428
|
id: string;
|
42528
42429
|
channel: string | null;
|
@@ -42629,7 +42530,6 @@ export declare const mainChatContract: {
|
|
42629
42530
|
};
|
42630
42531
|
direction: "incoming" | "outgoing" | "system";
|
42631
42532
|
description: string | null;
|
42632
|
-
status: number;
|
42633
42533
|
createdAt: Date;
|
42634
42534
|
updatedAt: Date;
|
42635
42535
|
deletedAt: Date | null;
|
@@ -42680,6 +42580,7 @@ export declare const mainChatContract: {
|
|
42680
42580
|
firstResponseTime: number;
|
42681
42581
|
lastMessage: string;
|
42682
42582
|
handleTime: number;
|
42583
|
+
closeAt: Date;
|
42683
42584
|
unreadCount: number;
|
42684
42585
|
firstResponseAt: Date;
|
42685
42586
|
isLatest: boolean;
|
@@ -42839,8 +42740,6 @@ export declare const mainChatContract: {
|
|
42839
42740
|
telephonySignature: string | null;
|
42840
42741
|
};
|
42841
42742
|
};
|
42842
|
-
closedAt: Date;
|
42843
|
-
lastMessageAt: Date | null;
|
42844
42743
|
cxlog: {
|
42845
42744
|
id: string;
|
42846
42745
|
channel: string | null;
|
@@ -42929,9 +42828,7 @@ export declare const mainChatContract: {
|
|
42929
42828
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
42930
42829
|
lastMessage: z.ZodString;
|
42931
42830
|
handleTime: z.ZodNumber;
|
42932
|
-
|
42933
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
42934
|
-
status: z.ZodNumber;
|
42831
|
+
closeAt: z.ZodDate;
|
42935
42832
|
unreadCount: z.ZodNumber;
|
42936
42833
|
firstResponseAt: z.ZodDate;
|
42937
42834
|
firstResponseTime: z.ZodNumber;
|
@@ -44856,7 +44753,6 @@ export declare const mainChatContract: {
|
|
44856
44753
|
connectedUserId: string;
|
44857
44754
|
};
|
44858
44755
|
direction: "incoming" | "outgoing" | "system";
|
44859
|
-
status: number;
|
44860
44756
|
createdAt: Date;
|
44861
44757
|
updatedAt: Date;
|
44862
44758
|
deletedAt: Date | null;
|
@@ -44907,6 +44803,7 @@ export declare const mainChatContract: {
|
|
44907
44803
|
firstResponseTime: number;
|
44908
44804
|
lastMessage: string;
|
44909
44805
|
handleTime: number;
|
44806
|
+
closeAt: Date;
|
44910
44807
|
unreadCount: number;
|
44911
44808
|
firstResponseAt: Date;
|
44912
44809
|
isLatest: boolean;
|
@@ -45066,8 +44963,6 @@ export declare const mainChatContract: {
|
|
45066
44963
|
telephonySignature: string | null;
|
45067
44964
|
};
|
45068
44965
|
};
|
45069
|
-
closedAt: Date;
|
45070
|
-
lastMessageAt: Date | null;
|
45071
44966
|
cxlog: {
|
45072
44967
|
id: string;
|
45073
44968
|
channel: string | null;
|
@@ -45170,7 +45065,6 @@ export declare const mainChatContract: {
|
|
45170
45065
|
connectedUserId: string;
|
45171
45066
|
};
|
45172
45067
|
direction: "incoming" | "outgoing" | "system";
|
45173
|
-
status: number;
|
45174
45068
|
createdAt: Date;
|
45175
45069
|
updatedAt: Date;
|
45176
45070
|
deletedAt: Date | null;
|
@@ -45221,6 +45115,7 @@ export declare const mainChatContract: {
|
|
45221
45115
|
firstResponseTime: number;
|
45222
45116
|
lastMessage: string;
|
45223
45117
|
handleTime: number;
|
45118
|
+
closeAt: Date;
|
45224
45119
|
unreadCount: number;
|
45225
45120
|
firstResponseAt: Date;
|
45226
45121
|
isLatest: boolean;
|
@@ -45380,8 +45275,6 @@ export declare const mainChatContract: {
|
|
45380
45275
|
telephonySignature: string | null;
|
45381
45276
|
};
|
45382
45277
|
};
|
45383
|
-
closedAt: Date;
|
45384
|
-
lastMessageAt: Date | null;
|
45385
45278
|
cxlog: {
|
45386
45279
|
id: string;
|
45387
45280
|
channel: string | null;
|
@@ -45486,7 +45379,6 @@ export declare const mainChatContract: {
|
|
45486
45379
|
connectedUserId: string;
|
45487
45380
|
};
|
45488
45381
|
direction: "incoming" | "outgoing" | "system";
|
45489
|
-
status: number;
|
45490
45382
|
createdAt: Date;
|
45491
45383
|
updatedAt: Date;
|
45492
45384
|
deletedAt: Date | null;
|
@@ -45537,6 +45429,7 @@ export declare const mainChatContract: {
|
|
45537
45429
|
firstResponseTime: number;
|
45538
45430
|
lastMessage: string;
|
45539
45431
|
handleTime: number;
|
45432
|
+
closeAt: Date;
|
45540
45433
|
unreadCount: number;
|
45541
45434
|
firstResponseAt: Date;
|
45542
45435
|
isLatest: boolean;
|
@@ -45696,8 +45589,6 @@ export declare const mainChatContract: {
|
|
45696
45589
|
telephonySignature: string | null;
|
45697
45590
|
};
|
45698
45591
|
};
|
45699
|
-
closedAt: Date;
|
45700
|
-
lastMessageAt: Date | null;
|
45701
45592
|
cxlog: {
|
45702
45593
|
id: string;
|
45703
45594
|
channel: string | null;
|
@@ -45806,7 +45697,6 @@ export declare const mainChatContract: {
|
|
45806
45697
|
connectedUserId: string;
|
45807
45698
|
};
|
45808
45699
|
direction: "incoming" | "outgoing" | "system";
|
45809
|
-
status: number;
|
45810
45700
|
createdAt: Date;
|
45811
45701
|
updatedAt: Date;
|
45812
45702
|
deletedAt: Date | null;
|
@@ -45857,6 +45747,7 @@ export declare const mainChatContract: {
|
|
45857
45747
|
firstResponseTime: number;
|
45858
45748
|
lastMessage: string;
|
45859
45749
|
handleTime: number;
|
45750
|
+
closeAt: Date;
|
45860
45751
|
unreadCount: number;
|
45861
45752
|
firstResponseAt: Date;
|
45862
45753
|
isLatest: boolean;
|
@@ -46016,8 +45907,6 @@ export declare const mainChatContract: {
|
|
46016
45907
|
telephonySignature: string | null;
|
46017
45908
|
};
|
46018
45909
|
};
|
46019
|
-
closedAt: Date;
|
46020
|
-
lastMessageAt: Date | null;
|
46021
45910
|
cxlog: {
|
46022
45911
|
id: string;
|
46023
45912
|
channel: string | null;
|