@kl1/contracts 1.0.99-uat → 1.1.0-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +957 -832
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +956 -832
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +57 -57
- package/dist/src/chat/schema.d.ts +8 -8
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +15 -15
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +2103 -1260
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +12 -12
- package/dist/src/line/index.d.ts +12 -12
- package/dist/src/mail/account-contract.d.ts +132 -132
- package/dist/src/mail/index.d.ts +10 -0
- package/dist/src/mail/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1612 -1152
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +477 -18
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +54 -54
- package/dist/src/mail/room-contract.d.ts +951 -948
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/message.schema.d.ts +42 -42
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +319 -316
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +683 -259
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +12 -12
- package/dist/src/user/index.d.ts +388 -4
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/validation.d.ts +7 -0
- package/dist/src/user/validation.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +12 -12
- package/package.json +1 -1
package/dist/src/chat/index.d.ts
CHANGED
@@ -4725,7 +4725,7 @@ export declare const mainChatContract: {
|
|
4725
4725
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4726
4726
|
lastMessage: z.ZodString;
|
4727
4727
|
handleTime: z.ZodNumber;
|
4728
|
-
|
4728
|
+
closeAt: z.ZodDate;
|
4729
4729
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
4730
4730
|
status: z.ZodNumber;
|
4731
4731
|
unreadCount: z.ZodNumber;
|
@@ -6703,6 +6703,7 @@ export declare const mainChatContract: {
|
|
6703
6703
|
firstResponseTime: number;
|
6704
6704
|
lastMessage: string;
|
6705
6705
|
handleTime: number;
|
6706
|
+
closeAt: Date;
|
6706
6707
|
unreadCount: number;
|
6707
6708
|
firstResponseAt: Date;
|
6708
6709
|
isLatest: boolean;
|
@@ -6862,7 +6863,6 @@ export declare const mainChatContract: {
|
|
6862
6863
|
telephonySignature: string | null;
|
6863
6864
|
};
|
6864
6865
|
};
|
6865
|
-
closedAt: Date;
|
6866
6866
|
lastMessageAt: Date | null;
|
6867
6867
|
cxlog: {
|
6868
6868
|
id: string;
|
@@ -7017,6 +7017,7 @@ export declare const mainChatContract: {
|
|
7017
7017
|
firstResponseTime: number;
|
7018
7018
|
lastMessage: string;
|
7019
7019
|
handleTime: number;
|
7020
|
+
closeAt: Date;
|
7020
7021
|
unreadCount: number;
|
7021
7022
|
firstResponseAt: Date;
|
7022
7023
|
isLatest: boolean;
|
@@ -7176,7 +7177,6 @@ export declare const mainChatContract: {
|
|
7176
7177
|
telephonySignature: string | null;
|
7177
7178
|
};
|
7178
7179
|
};
|
7179
|
-
closedAt: Date;
|
7180
7180
|
lastMessageAt: Date | null;
|
7181
7181
|
cxlog: {
|
7182
7182
|
id: string;
|
@@ -7343,6 +7343,7 @@ export declare const mainChatContract: {
|
|
7343
7343
|
firstResponseTime: number;
|
7344
7344
|
lastMessage: string;
|
7345
7345
|
handleTime: number;
|
7346
|
+
closeAt: Date;
|
7346
7347
|
unreadCount: number;
|
7347
7348
|
firstResponseAt: Date;
|
7348
7349
|
isLatest: boolean;
|
@@ -7502,7 +7503,6 @@ export declare const mainChatContract: {
|
|
7502
7503
|
telephonySignature: string | null;
|
7503
7504
|
};
|
7504
7505
|
};
|
7505
|
-
closedAt: Date;
|
7506
7506
|
lastMessageAt: Date | null;
|
7507
7507
|
cxlog: {
|
7508
7508
|
id: string;
|
@@ -7667,6 +7667,7 @@ export declare const mainChatContract: {
|
|
7667
7667
|
firstResponseTime: number;
|
7668
7668
|
lastMessage: string;
|
7669
7669
|
handleTime: number;
|
7670
|
+
closeAt: Date;
|
7670
7671
|
unreadCount: number;
|
7671
7672
|
firstResponseAt: Date;
|
7672
7673
|
isLatest: boolean;
|
@@ -7826,7 +7827,6 @@ export declare const mainChatContract: {
|
|
7826
7827
|
telephonySignature: string | null;
|
7827
7828
|
};
|
7828
7829
|
};
|
7829
|
-
closedAt: Date;
|
7830
7830
|
lastMessageAt: Date | null;
|
7831
7831
|
cxlog: {
|
7832
7832
|
id: string;
|
@@ -8875,7 +8875,7 @@ export declare const mainChatContract: {
|
|
8875
8875
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8876
8876
|
lastMessage: z.ZodString;
|
8877
8877
|
handleTime: z.ZodNumber;
|
8878
|
-
|
8878
|
+
closeAt: z.ZodDate;
|
8879
8879
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
8880
8880
|
status: z.ZodNumber;
|
8881
8881
|
unreadCount: z.ZodNumber;
|
@@ -10853,6 +10853,7 @@ export declare const mainChatContract: {
|
|
10853
10853
|
firstResponseTime: number;
|
10854
10854
|
lastMessage: string;
|
10855
10855
|
handleTime: number;
|
10856
|
+
closeAt: Date;
|
10856
10857
|
unreadCount: number;
|
10857
10858
|
firstResponseAt: Date;
|
10858
10859
|
isLatest: boolean;
|
@@ -11012,7 +11013,6 @@ export declare const mainChatContract: {
|
|
11012
11013
|
telephonySignature: string | null;
|
11013
11014
|
};
|
11014
11015
|
};
|
11015
|
-
closedAt: Date;
|
11016
11016
|
lastMessageAt: Date | null;
|
11017
11017
|
cxlog: {
|
11018
11018
|
id: string;
|
@@ -11167,6 +11167,7 @@ export declare const mainChatContract: {
|
|
11167
11167
|
firstResponseTime: number;
|
11168
11168
|
lastMessage: string;
|
11169
11169
|
handleTime: number;
|
11170
|
+
closeAt: Date;
|
11170
11171
|
unreadCount: number;
|
11171
11172
|
firstResponseAt: Date;
|
11172
11173
|
isLatest: boolean;
|
@@ -11326,7 +11327,6 @@ export declare const mainChatContract: {
|
|
11326
11327
|
telephonySignature: string | null;
|
11327
11328
|
};
|
11328
11329
|
};
|
11329
|
-
closedAt: Date;
|
11330
11330
|
lastMessageAt: Date | null;
|
11331
11331
|
cxlog: {
|
11332
11332
|
id: string;
|
@@ -11483,6 +11483,7 @@ export declare const mainChatContract: {
|
|
11483
11483
|
firstResponseTime: number;
|
11484
11484
|
lastMessage: string;
|
11485
11485
|
handleTime: number;
|
11486
|
+
closeAt: Date;
|
11486
11487
|
unreadCount: number;
|
11487
11488
|
firstResponseAt: Date;
|
11488
11489
|
isLatest: boolean;
|
@@ -11642,7 +11643,6 @@ export declare const mainChatContract: {
|
|
11642
11643
|
telephonySignature: string | null;
|
11643
11644
|
};
|
11644
11645
|
};
|
11645
|
-
closedAt: Date;
|
11646
11646
|
lastMessageAt: Date | null;
|
11647
11647
|
cxlog: {
|
11648
11648
|
id: string;
|
@@ -11800,6 +11800,7 @@ export declare const mainChatContract: {
|
|
11800
11800
|
firstResponseTime: number;
|
11801
11801
|
lastMessage: string;
|
11802
11802
|
handleTime: number;
|
11803
|
+
closeAt: Date;
|
11803
11804
|
unreadCount: number;
|
11804
11805
|
firstResponseAt: Date;
|
11805
11806
|
isLatest: boolean;
|
@@ -11959,7 +11960,6 @@ export declare const mainChatContract: {
|
|
11959
11960
|
telephonySignature: string | null;
|
11960
11961
|
};
|
11961
11962
|
};
|
11962
|
-
closedAt: Date;
|
11963
11963
|
lastMessageAt: Date | null;
|
11964
11964
|
cxlog: {
|
11965
11965
|
id: string;
|
@@ -12262,7 +12262,7 @@ export declare const mainChatContract: {
|
|
12262
12262
|
stickerId: number;
|
12263
12263
|
}>>;
|
12264
12264
|
file: z.ZodOptional<z.ZodType<File, z.ZodTypeDef, File>>;
|
12265
|
-
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<
|
12265
|
+
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
|
12266
12266
|
}, "strip", z.ZodTypeAny, {
|
12267
12267
|
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
12268
12268
|
roomId: string;
|
@@ -12325,7 +12325,7 @@ export declare const mainChatContract: {
|
|
12325
12325
|
stickerId: number;
|
12326
12326
|
} | undefined;
|
12327
12327
|
file?: File | undefined;
|
12328
|
-
messengerTags?:
|
12328
|
+
messengerTags?: 2 | 1 | 3 | undefined;
|
12329
12329
|
}, {
|
12330
12330
|
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
12331
12331
|
roomId: string;
|
@@ -12388,7 +12388,7 @@ export declare const mainChatContract: {
|
|
12388
12388
|
stickerId: number;
|
12389
12389
|
} | undefined;
|
12390
12390
|
file?: File | undefined;
|
12391
|
-
messengerTags?:
|
12391
|
+
messengerTags?: 2 | 1 | 3 | undefined;
|
12392
12392
|
}>;
|
12393
12393
|
summary: "Send message to room";
|
12394
12394
|
method: "POST";
|
@@ -12420,7 +12420,7 @@ export declare const mainChatContract: {
|
|
12420
12420
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
12421
12421
|
lastMessage: z.ZodString;
|
12422
12422
|
handleTime: z.ZodNumber;
|
12423
|
-
|
12423
|
+
closeAt: z.ZodDate;
|
12424
12424
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
12425
12425
|
status: z.ZodNumber;
|
12426
12426
|
unreadCount: z.ZodNumber;
|
@@ -14398,6 +14398,7 @@ export declare const mainChatContract: {
|
|
14398
14398
|
firstResponseTime: number;
|
14399
14399
|
lastMessage: string;
|
14400
14400
|
handleTime: number;
|
14401
|
+
closeAt: Date;
|
14401
14402
|
unreadCount: number;
|
14402
14403
|
firstResponseAt: Date;
|
14403
14404
|
isLatest: boolean;
|
@@ -14557,7 +14558,6 @@ export declare const mainChatContract: {
|
|
14557
14558
|
telephonySignature: string | null;
|
14558
14559
|
};
|
14559
14560
|
};
|
14560
|
-
closedAt: Date;
|
14561
14561
|
lastMessageAt: Date | null;
|
14562
14562
|
cxlog: {
|
14563
14563
|
id: string;
|
@@ -14712,6 +14712,7 @@ export declare const mainChatContract: {
|
|
14712
14712
|
firstResponseTime: number;
|
14713
14713
|
lastMessage: string;
|
14714
14714
|
handleTime: number;
|
14715
|
+
closeAt: Date;
|
14715
14716
|
unreadCount: number;
|
14716
14717
|
firstResponseAt: Date;
|
14717
14718
|
isLatest: boolean;
|
@@ -14871,7 +14872,6 @@ export declare const mainChatContract: {
|
|
14871
14872
|
telephonySignature: string | null;
|
14872
14873
|
};
|
14873
14874
|
};
|
14874
|
-
closedAt: Date;
|
14875
14875
|
lastMessageAt: Date | null;
|
14876
14876
|
cxlog: {
|
14877
14877
|
id: string;
|
@@ -16772,6 +16772,7 @@ export declare const mainChatContract: {
|
|
16772
16772
|
firstResponseTime: number;
|
16773
16773
|
lastMessage: string;
|
16774
16774
|
handleTime: number;
|
16775
|
+
closeAt: Date;
|
16775
16776
|
unreadCount: number;
|
16776
16777
|
firstResponseAt: Date;
|
16777
16778
|
isLatest: boolean;
|
@@ -16931,7 +16932,6 @@ export declare const mainChatContract: {
|
|
16931
16932
|
telephonySignature: string | null;
|
16932
16933
|
};
|
16933
16934
|
};
|
16934
|
-
closedAt: Date;
|
16935
16935
|
lastMessageAt: Date | null;
|
16936
16936
|
cxlog: {
|
16937
16937
|
id: string;
|
@@ -17412,6 +17412,7 @@ export declare const mainChatContract: {
|
|
17412
17412
|
firstResponseTime: number;
|
17413
17413
|
lastMessage: string;
|
17414
17414
|
handleTime: number;
|
17415
|
+
closeAt: Date;
|
17415
17416
|
unreadCount: number;
|
17416
17417
|
firstResponseAt: Date;
|
17417
17418
|
isLatest: boolean;
|
@@ -17571,7 +17572,6 @@ export declare const mainChatContract: {
|
|
17571
17572
|
telephonySignature: string | null;
|
17572
17573
|
};
|
17573
17574
|
};
|
17574
|
-
closedAt: Date;
|
17575
17575
|
lastMessageAt: Date | null;
|
17576
17576
|
cxlog: {
|
17577
17577
|
id: string;
|
@@ -18054,6 +18054,7 @@ export declare const mainChatContract: {
|
|
18054
18054
|
firstResponseTime: number;
|
18055
18055
|
lastMessage: string;
|
18056
18056
|
handleTime: number;
|
18057
|
+
closeAt: Date;
|
18057
18058
|
unreadCount: number;
|
18058
18059
|
firstResponseAt: Date;
|
18059
18060
|
isLatest: boolean;
|
@@ -18213,7 +18214,6 @@ export declare const mainChatContract: {
|
|
18213
18214
|
telephonySignature: string | null;
|
18214
18215
|
};
|
18215
18216
|
};
|
18216
|
-
closedAt: Date;
|
18217
18217
|
lastMessageAt: Date | null;
|
18218
18218
|
cxlog: {
|
18219
18219
|
id: string;
|
@@ -18697,6 +18697,7 @@ export declare const mainChatContract: {
|
|
18697
18697
|
firstResponseTime: number;
|
18698
18698
|
lastMessage: string;
|
18699
18699
|
handleTime: number;
|
18700
|
+
closeAt: Date;
|
18700
18701
|
unreadCount: number;
|
18701
18702
|
firstResponseAt: Date;
|
18702
18703
|
isLatest: boolean;
|
@@ -18856,7 +18857,6 @@ export declare const mainChatContract: {
|
|
18856
18857
|
telephonySignature: string | null;
|
18857
18858
|
};
|
18858
18859
|
};
|
18859
|
-
closedAt: Date;
|
18860
18860
|
lastMessageAt: Date | null;
|
18861
18861
|
cxlog: {
|
18862
18862
|
id: string;
|
@@ -19253,7 +19253,7 @@ export declare const mainChatContract: {
|
|
19253
19253
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
19254
19254
|
lastMessage: z.ZodString;
|
19255
19255
|
handleTime: z.ZodNumber;
|
19256
|
-
|
19256
|
+
closeAt: z.ZodDate;
|
19257
19257
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
19258
19258
|
status: z.ZodNumber;
|
19259
19259
|
unreadCount: z.ZodNumber;
|
@@ -21231,6 +21231,7 @@ export declare const mainChatContract: {
|
|
21231
21231
|
firstResponseTime: number;
|
21232
21232
|
lastMessage: string;
|
21233
21233
|
handleTime: number;
|
21234
|
+
closeAt: Date;
|
21234
21235
|
unreadCount: number;
|
21235
21236
|
firstResponseAt: Date;
|
21236
21237
|
isLatest: boolean;
|
@@ -21390,7 +21391,6 @@ export declare const mainChatContract: {
|
|
21390
21391
|
telephonySignature: string | null;
|
21391
21392
|
};
|
21392
21393
|
};
|
21393
|
-
closedAt: Date;
|
21394
21394
|
lastMessageAt: Date | null;
|
21395
21395
|
cxlog: {
|
21396
21396
|
id: string;
|
@@ -21545,6 +21545,7 @@ export declare const mainChatContract: {
|
|
21545
21545
|
firstResponseTime: number;
|
21546
21546
|
lastMessage: string;
|
21547
21547
|
handleTime: number;
|
21548
|
+
closeAt: Date;
|
21548
21549
|
unreadCount: number;
|
21549
21550
|
firstResponseAt: Date;
|
21550
21551
|
isLatest: boolean;
|
@@ -21704,7 +21705,6 @@ export declare const mainChatContract: {
|
|
21704
21705
|
telephonySignature: string | null;
|
21705
21706
|
};
|
21706
21707
|
};
|
21707
|
-
closedAt: Date;
|
21708
21708
|
lastMessageAt: Date | null;
|
21709
21709
|
cxlog: {
|
21710
21710
|
id: string;
|
@@ -23605,6 +23605,7 @@ export declare const mainChatContract: {
|
|
23605
23605
|
firstResponseTime: number;
|
23606
23606
|
lastMessage: string;
|
23607
23607
|
handleTime: number;
|
23608
|
+
closeAt: Date;
|
23608
23609
|
unreadCount: number;
|
23609
23610
|
firstResponseAt: Date;
|
23610
23611
|
isLatest: boolean;
|
@@ -23764,7 +23765,6 @@ export declare const mainChatContract: {
|
|
23764
23765
|
telephonySignature: string | null;
|
23765
23766
|
};
|
23766
23767
|
};
|
23767
|
-
closedAt: Date;
|
23768
23768
|
lastMessageAt: Date | null;
|
23769
23769
|
cxlog: {
|
23770
23770
|
id: string;
|
@@ -24245,6 +24245,7 @@ export declare const mainChatContract: {
|
|
24245
24245
|
firstResponseTime: number;
|
24246
24246
|
lastMessage: string;
|
24247
24247
|
handleTime: number;
|
24248
|
+
closeAt: Date;
|
24248
24249
|
unreadCount: number;
|
24249
24250
|
firstResponseAt: Date;
|
24250
24251
|
isLatest: boolean;
|
@@ -24404,7 +24405,6 @@ export declare const mainChatContract: {
|
|
24404
24405
|
telephonySignature: string | null;
|
24405
24406
|
};
|
24406
24407
|
};
|
24407
|
-
closedAt: Date;
|
24408
24408
|
lastMessageAt: Date | null;
|
24409
24409
|
cxlog: {
|
24410
24410
|
id: string;
|
@@ -24887,6 +24887,7 @@ export declare const mainChatContract: {
|
|
24887
24887
|
firstResponseTime: number;
|
24888
24888
|
lastMessage: string;
|
24889
24889
|
handleTime: number;
|
24890
|
+
closeAt: Date;
|
24890
24891
|
unreadCount: number;
|
24891
24892
|
firstResponseAt: Date;
|
24892
24893
|
isLatest: boolean;
|
@@ -25046,7 +25047,6 @@ export declare const mainChatContract: {
|
|
25046
25047
|
telephonySignature: string | null;
|
25047
25048
|
};
|
25048
25049
|
};
|
25049
|
-
closedAt: Date;
|
25050
25050
|
lastMessageAt: Date | null;
|
25051
25051
|
cxlog: {
|
25052
25052
|
id: string;
|
@@ -25533,6 +25533,7 @@ export declare const mainChatContract: {
|
|
25533
25533
|
firstResponseTime: number;
|
25534
25534
|
lastMessage: string;
|
25535
25535
|
handleTime: number;
|
25536
|
+
closeAt: Date;
|
25536
25537
|
unreadCount: number;
|
25537
25538
|
firstResponseAt: Date;
|
25538
25539
|
isLatest: boolean;
|
@@ -25692,7 +25693,6 @@ export declare const mainChatContract: {
|
|
25692
25693
|
telephonySignature: string | null;
|
25693
25694
|
};
|
25694
25695
|
};
|
25695
|
-
closedAt: Date;
|
25696
25696
|
lastMessageAt: Date | null;
|
25697
25697
|
cxlog: {
|
25698
25698
|
id: string;
|
@@ -26564,6 +26564,7 @@ export declare const mainChatContract: {
|
|
26564
26564
|
firstResponseTime: z.ZodNumber;
|
26565
26565
|
lastMessage: z.ZodString;
|
26566
26566
|
handleTime: z.ZodNumber;
|
26567
|
+
closeAt: z.ZodDate;
|
26567
26568
|
unreadCount: z.ZodNumber;
|
26568
26569
|
firstResponseAt: z.ZodDate;
|
26569
26570
|
isLatest: z.ZodBoolean;
|
@@ -27705,7 +27706,6 @@ export declare const mainChatContract: {
|
|
27705
27706
|
telephonySignature: string | null;
|
27706
27707
|
};
|
27707
27708
|
}>;
|
27708
|
-
closedAt: z.ZodDate;
|
27709
27709
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
27710
27710
|
cxlog: z.ZodObject<{
|
27711
27711
|
id: z.ZodString;
|
@@ -27971,6 +27971,7 @@ export declare const mainChatContract: {
|
|
27971
27971
|
firstResponseTime: number;
|
27972
27972
|
lastMessage: string;
|
27973
27973
|
handleTime: number;
|
27974
|
+
closeAt: Date;
|
27974
27975
|
unreadCount: number;
|
27975
27976
|
firstResponseAt: Date;
|
27976
27977
|
isLatest: boolean;
|
@@ -28130,7 +28131,6 @@ export declare const mainChatContract: {
|
|
28130
28131
|
telephonySignature: string | null;
|
28131
28132
|
};
|
28132
28133
|
};
|
28133
|
-
closedAt: Date;
|
28134
28134
|
lastMessageAt: Date | null;
|
28135
28135
|
cxlog: {
|
28136
28136
|
id: string;
|
@@ -28286,6 +28286,7 @@ export declare const mainChatContract: {
|
|
28286
28286
|
firstResponseTime: number;
|
28287
28287
|
lastMessage: string;
|
28288
28288
|
handleTime: number;
|
28289
|
+
closeAt: Date;
|
28289
28290
|
unreadCount: number;
|
28290
28291
|
firstResponseAt: Date;
|
28291
28292
|
isLatest: boolean;
|
@@ -28445,7 +28446,6 @@ export declare const mainChatContract: {
|
|
28445
28446
|
telephonySignature: string | null;
|
28446
28447
|
};
|
28447
28448
|
};
|
28448
|
-
closedAt: Date;
|
28449
28449
|
lastMessageAt: Date | null;
|
28450
28450
|
cxlog: {
|
28451
28451
|
id: string;
|
@@ -28603,6 +28603,7 @@ export declare const mainChatContract: {
|
|
28603
28603
|
firstResponseTime: number;
|
28604
28604
|
lastMessage: string;
|
28605
28605
|
handleTime: number;
|
28606
|
+
closeAt: Date;
|
28606
28607
|
unreadCount: number;
|
28607
28608
|
firstResponseAt: Date;
|
28608
28609
|
isLatest: boolean;
|
@@ -28762,7 +28763,6 @@ export declare const mainChatContract: {
|
|
28762
28763
|
telephonySignature: string | null;
|
28763
28764
|
};
|
28764
28765
|
};
|
28765
|
-
closedAt: Date;
|
28766
28766
|
lastMessageAt: Date | null;
|
28767
28767
|
cxlog: {
|
28768
28768
|
id: string;
|
@@ -28921,6 +28921,7 @@ export declare const mainChatContract: {
|
|
28921
28921
|
firstResponseTime: number;
|
28922
28922
|
lastMessage: string;
|
28923
28923
|
handleTime: number;
|
28924
|
+
closeAt: Date;
|
28924
28925
|
unreadCount: number;
|
28925
28926
|
firstResponseAt: Date;
|
28926
28927
|
isLatest: boolean;
|
@@ -29080,7 +29081,6 @@ export declare const mainChatContract: {
|
|
29080
29081
|
telephonySignature: string | null;
|
29081
29082
|
};
|
29082
29083
|
};
|
29083
|
-
closedAt: Date;
|
29084
29084
|
lastMessageAt: Date | null;
|
29085
29085
|
cxlog: {
|
29086
29086
|
id: string;
|
@@ -29172,7 +29172,7 @@ export declare const mainChatContract: {
|
|
29172
29172
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
29173
29173
|
lastMessage: z.ZodString;
|
29174
29174
|
handleTime: z.ZodNumber;
|
29175
|
-
|
29175
|
+
closeAt: z.ZodDate;
|
29176
29176
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
29177
29177
|
status: z.ZodNumber;
|
29178
29178
|
unreadCount: z.ZodNumber;
|
@@ -31150,6 +31150,7 @@ export declare const mainChatContract: {
|
|
31150
31150
|
firstResponseTime: number;
|
31151
31151
|
lastMessage: string;
|
31152
31152
|
handleTime: number;
|
31153
|
+
closeAt: Date;
|
31153
31154
|
unreadCount: number;
|
31154
31155
|
firstResponseAt: Date;
|
31155
31156
|
isLatest: boolean;
|
@@ -31309,7 +31310,6 @@ export declare const mainChatContract: {
|
|
31309
31310
|
telephonySignature: string | null;
|
31310
31311
|
};
|
31311
31312
|
};
|
31312
|
-
closedAt: Date;
|
31313
31313
|
lastMessageAt: Date | null;
|
31314
31314
|
cxlog: {
|
31315
31315
|
id: string;
|
@@ -31464,6 +31464,7 @@ export declare const mainChatContract: {
|
|
31464
31464
|
firstResponseTime: number;
|
31465
31465
|
lastMessage: string;
|
31466
31466
|
handleTime: number;
|
31467
|
+
closeAt: Date;
|
31467
31468
|
unreadCount: number;
|
31468
31469
|
firstResponseAt: Date;
|
31469
31470
|
isLatest: boolean;
|
@@ -31623,7 +31624,6 @@ export declare const mainChatContract: {
|
|
31623
31624
|
telephonySignature: string | null;
|
31624
31625
|
};
|
31625
31626
|
};
|
31626
|
-
closedAt: Date;
|
31627
31627
|
lastMessageAt: Date | null;
|
31628
31628
|
cxlog: {
|
31629
31629
|
id: string;
|
@@ -31780,6 +31780,7 @@ export declare const mainChatContract: {
|
|
31780
31780
|
firstResponseTime: number;
|
31781
31781
|
lastMessage: string;
|
31782
31782
|
handleTime: number;
|
31783
|
+
closeAt: Date;
|
31783
31784
|
unreadCount: number;
|
31784
31785
|
firstResponseAt: Date;
|
31785
31786
|
isLatest: boolean;
|
@@ -31939,7 +31940,6 @@ export declare const mainChatContract: {
|
|
31939
31940
|
telephonySignature: string | null;
|
31940
31941
|
};
|
31941
31942
|
};
|
31942
|
-
closedAt: Date;
|
31943
31943
|
lastMessageAt: Date | null;
|
31944
31944
|
cxlog: {
|
31945
31945
|
id: string;
|
@@ -32097,6 +32097,7 @@ export declare const mainChatContract: {
|
|
32097
32097
|
firstResponseTime: number;
|
32098
32098
|
lastMessage: string;
|
32099
32099
|
handleTime: number;
|
32100
|
+
closeAt: Date;
|
32100
32101
|
unreadCount: number;
|
32101
32102
|
firstResponseAt: Date;
|
32102
32103
|
isLatest: boolean;
|
@@ -32256,7 +32257,6 @@ export declare const mainChatContract: {
|
|
32256
32257
|
telephonySignature: string | null;
|
32257
32258
|
};
|
32258
32259
|
};
|
32259
|
-
closedAt: Date;
|
32260
32260
|
lastMessageAt: Date | null;
|
32261
32261
|
cxlog: {
|
32262
32262
|
id: string;
|
@@ -32334,7 +32334,7 @@ export declare const mainChatContract: {
|
|
32334
32334
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
32335
32335
|
lastMessage: z.ZodString;
|
32336
32336
|
handleTime: z.ZodNumber;
|
32337
|
-
|
32337
|
+
closeAt: z.ZodDate;
|
32338
32338
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
32339
32339
|
status: z.ZodNumber;
|
32340
32340
|
unreadCount: z.ZodNumber;
|
@@ -34312,6 +34312,7 @@ export declare const mainChatContract: {
|
|
34312
34312
|
firstResponseTime: number;
|
34313
34313
|
lastMessage: string;
|
34314
34314
|
handleTime: number;
|
34315
|
+
closeAt: Date;
|
34315
34316
|
unreadCount: number;
|
34316
34317
|
firstResponseAt: Date;
|
34317
34318
|
isLatest: boolean;
|
@@ -34471,7 +34472,6 @@ export declare const mainChatContract: {
|
|
34471
34472
|
telephonySignature: string | null;
|
34472
34473
|
};
|
34473
34474
|
};
|
34474
|
-
closedAt: Date;
|
34475
34475
|
lastMessageAt: Date | null;
|
34476
34476
|
cxlog: {
|
34477
34477
|
id: string;
|
@@ -34626,6 +34626,7 @@ export declare const mainChatContract: {
|
|
34626
34626
|
firstResponseTime: number;
|
34627
34627
|
lastMessage: string;
|
34628
34628
|
handleTime: number;
|
34629
|
+
closeAt: Date;
|
34629
34630
|
unreadCount: number;
|
34630
34631
|
firstResponseAt: Date;
|
34631
34632
|
isLatest: boolean;
|
@@ -34785,7 +34786,6 @@ export declare const mainChatContract: {
|
|
34785
34786
|
telephonySignature: string | null;
|
34786
34787
|
};
|
34787
34788
|
};
|
34788
|
-
closedAt: Date;
|
34789
34789
|
lastMessageAt: Date | null;
|
34790
34790
|
cxlog: {
|
34791
34791
|
id: string;
|
@@ -34942,6 +34942,7 @@ export declare const mainChatContract: {
|
|
34942
34942
|
firstResponseTime: number;
|
34943
34943
|
lastMessage: string;
|
34944
34944
|
handleTime: number;
|
34945
|
+
closeAt: Date;
|
34945
34946
|
unreadCount: number;
|
34946
34947
|
firstResponseAt: Date;
|
34947
34948
|
isLatest: boolean;
|
@@ -35101,7 +35102,6 @@ export declare const mainChatContract: {
|
|
35101
35102
|
telephonySignature: string | null;
|
35102
35103
|
};
|
35103
35104
|
};
|
35104
|
-
closedAt: Date;
|
35105
35105
|
lastMessageAt: Date | null;
|
35106
35106
|
cxlog: {
|
35107
35107
|
id: string;
|
@@ -35259,6 +35259,7 @@ export declare const mainChatContract: {
|
|
35259
35259
|
firstResponseTime: number;
|
35260
35260
|
lastMessage: string;
|
35261
35261
|
handleTime: number;
|
35262
|
+
closeAt: Date;
|
35262
35263
|
unreadCount: number;
|
35263
35264
|
firstResponseAt: Date;
|
35264
35265
|
isLatest: boolean;
|
@@ -35418,7 +35419,6 @@ export declare const mainChatContract: {
|
|
35418
35419
|
telephonySignature: string | null;
|
35419
35420
|
};
|
35420
35421
|
};
|
35421
|
-
closedAt: Date;
|
35422
35422
|
lastMessageAt: Date | null;
|
35423
35423
|
cxlog: {
|
35424
35424
|
id: string;
|
@@ -36079,6 +36079,7 @@ export declare const mainChatContract: {
|
|
36079
36079
|
firstResponseTime: z.ZodNumber;
|
36080
36080
|
lastMessage: z.ZodString;
|
36081
36081
|
handleTime: z.ZodNumber;
|
36082
|
+
closeAt: z.ZodDate;
|
36082
36083
|
unreadCount: z.ZodNumber;
|
36083
36084
|
firstResponseAt: z.ZodDate;
|
36084
36085
|
isLatest: z.ZodBoolean;
|
@@ -37220,7 +37221,6 @@ export declare const mainChatContract: {
|
|
37220
37221
|
telephonySignature: string | null;
|
37221
37222
|
};
|
37222
37223
|
}>;
|
37223
|
-
closedAt: z.ZodDate;
|
37224
37224
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
37225
37225
|
cxlog: z.ZodObject<{
|
37226
37226
|
id: z.ZodString;
|
@@ -38270,6 +38270,7 @@ export declare const mainChatContract: {
|
|
38270
38270
|
firstResponseTime: number;
|
38271
38271
|
lastMessage: string;
|
38272
38272
|
handleTime: number;
|
38273
|
+
closeAt: Date;
|
38273
38274
|
unreadCount: number;
|
38274
38275
|
firstResponseAt: Date;
|
38275
38276
|
isLatest: boolean;
|
@@ -38429,7 +38430,6 @@ export declare const mainChatContract: {
|
|
38429
38430
|
telephonySignature: string | null;
|
38430
38431
|
};
|
38431
38432
|
};
|
38432
|
-
closedAt: Date;
|
38433
38433
|
lastMessageAt: Date | null;
|
38434
38434
|
cxlog: {
|
38435
38435
|
id: string;
|
@@ -38682,6 +38682,7 @@ export declare const mainChatContract: {
|
|
38682
38682
|
firstResponseTime: number;
|
38683
38683
|
lastMessage: string;
|
38684
38684
|
handleTime: number;
|
38685
|
+
closeAt: Date;
|
38685
38686
|
unreadCount: number;
|
38686
38687
|
firstResponseAt: Date;
|
38687
38688
|
isLatest: boolean;
|
@@ -38841,7 +38842,6 @@ export declare const mainChatContract: {
|
|
38841
38842
|
telephonySignature: string | null;
|
38842
38843
|
};
|
38843
38844
|
};
|
38844
|
-
closedAt: Date;
|
38845
38845
|
lastMessageAt: Date | null;
|
38846
38846
|
cxlog: {
|
38847
38847
|
id: string;
|
@@ -39096,6 +39096,7 @@ export declare const mainChatContract: {
|
|
39096
39096
|
firstResponseTime: number;
|
39097
39097
|
lastMessage: string;
|
39098
39098
|
handleTime: number;
|
39099
|
+
closeAt: Date;
|
39099
39100
|
unreadCount: number;
|
39100
39101
|
firstResponseAt: Date;
|
39101
39102
|
isLatest: boolean;
|
@@ -39255,7 +39256,6 @@ export declare const mainChatContract: {
|
|
39255
39256
|
telephonySignature: string | null;
|
39256
39257
|
};
|
39257
39258
|
};
|
39258
|
-
closedAt: Date;
|
39259
39259
|
lastMessageAt: Date | null;
|
39260
39260
|
cxlog: {
|
39261
39261
|
id: string;
|
@@ -39511,6 +39511,7 @@ export declare const mainChatContract: {
|
|
39511
39511
|
firstResponseTime: number;
|
39512
39512
|
lastMessage: string;
|
39513
39513
|
handleTime: number;
|
39514
|
+
closeAt: Date;
|
39514
39515
|
unreadCount: number;
|
39515
39516
|
firstResponseAt: Date;
|
39516
39517
|
isLatest: boolean;
|
@@ -39670,7 +39671,6 @@ export declare const mainChatContract: {
|
|
39670
39671
|
telephonySignature: string | null;
|
39671
39672
|
};
|
39672
39673
|
};
|
39673
|
-
closedAt: Date;
|
39674
39674
|
lastMessageAt: Date | null;
|
39675
39675
|
cxlog: {
|
39676
39676
|
id: string;
|
@@ -40322,6 +40322,7 @@ export declare const mainChatContract: {
|
|
40322
40322
|
firstResponseTime: z.ZodNumber;
|
40323
40323
|
lastMessage: z.ZodString;
|
40324
40324
|
handleTime: z.ZodNumber;
|
40325
|
+
closeAt: z.ZodDate;
|
40325
40326
|
unreadCount: z.ZodNumber;
|
40326
40327
|
firstResponseAt: z.ZodDate;
|
40327
40328
|
isLatest: z.ZodBoolean;
|
@@ -41463,7 +41464,6 @@ export declare const mainChatContract: {
|
|
41463
41464
|
telephonySignature: string | null;
|
41464
41465
|
};
|
41465
41466
|
}>;
|
41466
|
-
closedAt: z.ZodDate;
|
41467
41467
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
41468
41468
|
cxlog: z.ZodObject<{
|
41469
41469
|
id: z.ZodString;
|
@@ -41730,6 +41730,7 @@ export declare const mainChatContract: {
|
|
41730
41730
|
firstResponseTime: number;
|
41731
41731
|
lastMessage: string;
|
41732
41732
|
handleTime: number;
|
41733
|
+
closeAt: Date;
|
41733
41734
|
unreadCount: number;
|
41734
41735
|
firstResponseAt: Date;
|
41735
41736
|
isLatest: boolean;
|
@@ -41889,7 +41890,6 @@ export declare const mainChatContract: {
|
|
41889
41890
|
telephonySignature: string | null;
|
41890
41891
|
};
|
41891
41892
|
};
|
41892
|
-
closedAt: Date;
|
41893
41893
|
lastMessageAt: Date | null;
|
41894
41894
|
cxlog: {
|
41895
41895
|
id: string;
|
@@ -42045,6 +42045,7 @@ export declare const mainChatContract: {
|
|
42045
42045
|
firstResponseTime: number;
|
42046
42046
|
lastMessage: string;
|
42047
42047
|
handleTime: number;
|
42048
|
+
closeAt: Date;
|
42048
42049
|
unreadCount: number;
|
42049
42050
|
firstResponseAt: Date;
|
42050
42051
|
isLatest: boolean;
|
@@ -42204,7 +42205,6 @@ export declare const mainChatContract: {
|
|
42204
42205
|
telephonySignature: string | null;
|
42205
42206
|
};
|
42206
42207
|
};
|
42207
|
-
closedAt: Date;
|
42208
42208
|
lastMessageAt: Date | null;
|
42209
42209
|
cxlog: {
|
42210
42210
|
id: string;
|
@@ -42362,6 +42362,7 @@ export declare const mainChatContract: {
|
|
42362
42362
|
firstResponseTime: number;
|
42363
42363
|
lastMessage: string;
|
42364
42364
|
handleTime: number;
|
42365
|
+
closeAt: Date;
|
42365
42366
|
unreadCount: number;
|
42366
42367
|
firstResponseAt: Date;
|
42367
42368
|
isLatest: boolean;
|
@@ -42521,7 +42522,6 @@ export declare const mainChatContract: {
|
|
42521
42522
|
telephonySignature: string | null;
|
42522
42523
|
};
|
42523
42524
|
};
|
42524
|
-
closedAt: Date;
|
42525
42525
|
lastMessageAt: Date | null;
|
42526
42526
|
cxlog: {
|
42527
42527
|
id: string;
|
@@ -42680,6 +42680,7 @@ export declare const mainChatContract: {
|
|
42680
42680
|
firstResponseTime: number;
|
42681
42681
|
lastMessage: string;
|
42682
42682
|
handleTime: number;
|
42683
|
+
closeAt: Date;
|
42683
42684
|
unreadCount: number;
|
42684
42685
|
firstResponseAt: Date;
|
42685
42686
|
isLatest: boolean;
|
@@ -42839,7 +42840,6 @@ export declare const mainChatContract: {
|
|
42839
42840
|
telephonySignature: string | null;
|
42840
42841
|
};
|
42841
42842
|
};
|
42842
|
-
closedAt: Date;
|
42843
42843
|
lastMessageAt: Date | null;
|
42844
42844
|
cxlog: {
|
42845
42845
|
id: string;
|
@@ -42929,7 +42929,7 @@ export declare const mainChatContract: {
|
|
42929
42929
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
42930
42930
|
lastMessage: z.ZodString;
|
42931
42931
|
handleTime: z.ZodNumber;
|
42932
|
-
|
42932
|
+
closeAt: z.ZodDate;
|
42933
42933
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
42934
42934
|
status: z.ZodNumber;
|
42935
42935
|
unreadCount: z.ZodNumber;
|
@@ -44907,6 +44907,7 @@ export declare const mainChatContract: {
|
|
44907
44907
|
firstResponseTime: number;
|
44908
44908
|
lastMessage: string;
|
44909
44909
|
handleTime: number;
|
44910
|
+
closeAt: Date;
|
44910
44911
|
unreadCount: number;
|
44911
44912
|
firstResponseAt: Date;
|
44912
44913
|
isLatest: boolean;
|
@@ -45066,7 +45067,6 @@ export declare const mainChatContract: {
|
|
45066
45067
|
telephonySignature: string | null;
|
45067
45068
|
};
|
45068
45069
|
};
|
45069
|
-
closedAt: Date;
|
45070
45070
|
lastMessageAt: Date | null;
|
45071
45071
|
cxlog: {
|
45072
45072
|
id: string;
|
@@ -45221,6 +45221,7 @@ export declare const mainChatContract: {
|
|
45221
45221
|
firstResponseTime: number;
|
45222
45222
|
lastMessage: string;
|
45223
45223
|
handleTime: number;
|
45224
|
+
closeAt: Date;
|
45224
45225
|
unreadCount: number;
|
45225
45226
|
firstResponseAt: Date;
|
45226
45227
|
isLatest: boolean;
|
@@ -45380,7 +45381,6 @@ export declare const mainChatContract: {
|
|
45380
45381
|
telephonySignature: string | null;
|
45381
45382
|
};
|
45382
45383
|
};
|
45383
|
-
closedAt: Date;
|
45384
45384
|
lastMessageAt: Date | null;
|
45385
45385
|
cxlog: {
|
45386
45386
|
id: string;
|
@@ -45537,6 +45537,7 @@ export declare const mainChatContract: {
|
|
45537
45537
|
firstResponseTime: number;
|
45538
45538
|
lastMessage: string;
|
45539
45539
|
handleTime: number;
|
45540
|
+
closeAt: Date;
|
45540
45541
|
unreadCount: number;
|
45541
45542
|
firstResponseAt: Date;
|
45542
45543
|
isLatest: boolean;
|
@@ -45696,7 +45697,6 @@ export declare const mainChatContract: {
|
|
45696
45697
|
telephonySignature: string | null;
|
45697
45698
|
};
|
45698
45699
|
};
|
45699
|
-
closedAt: Date;
|
45700
45700
|
lastMessageAt: Date | null;
|
45701
45701
|
cxlog: {
|
45702
45702
|
id: string;
|
@@ -45857,6 +45857,7 @@ export declare const mainChatContract: {
|
|
45857
45857
|
firstResponseTime: number;
|
45858
45858
|
lastMessage: string;
|
45859
45859
|
handleTime: number;
|
45860
|
+
closeAt: Date;
|
45860
45861
|
unreadCount: number;
|
45861
45862
|
firstResponseAt: Date;
|
45862
45863
|
isLatest: boolean;
|
@@ -46016,7 +46017,6 @@ export declare const mainChatContract: {
|
|
46016
46017
|
telephonySignature: string | null;
|
46017
46018
|
};
|
46018
46019
|
};
|
46019
|
-
closedAt: Date;
|
46020
46020
|
lastMessageAt: Date | null;
|
46021
46021
|
cxlog: {
|
46022
46022
|
id: string;
|