@kl1/contracts 1.0.54 → 1.0.56
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 +16 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -4
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +63 -63
- package/dist/src/chat/validation.d.ts +62 -62
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +9 -4
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +5 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +3 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/ticket/index.d.ts +3 -3
- package/package.json +1 -1
@@ -0,0 +1,17 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const appContract: {
|
3
|
+
getMessage: {
|
4
|
+
method: "GET";
|
5
|
+
responses: {
|
6
|
+
200: z.ZodObject<{
|
7
|
+
message: z.ZodString;
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
9
|
+
message: string;
|
10
|
+
}, {
|
11
|
+
message: string;
|
12
|
+
}>;
|
13
|
+
};
|
14
|
+
path: "/";
|
15
|
+
};
|
16
|
+
};
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/app/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;CAQtB,CAAC"}
|
package/dist/src/chat/index.d.ts
CHANGED
@@ -18,7 +18,7 @@ export declare const receiveMessageContract: {
|
|
18
18
|
receiveMessage: {
|
19
19
|
body: z.ZodObject<{
|
20
20
|
message: z.ZodObject<{
|
21
|
-
message: z.ZodString
|
21
|
+
message: z.ZodOptional<z.ZodString>;
|
22
22
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
23
23
|
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
24
24
|
metadata: z.ZodAny;
|
@@ -2206,37 +2206,37 @@ export declare const receiveMessageContract: {
|
|
2206
2206
|
} | undefined;
|
2207
2207
|
}>;
|
2208
2208
|
upload: z.ZodOptional<z.ZodObject<{
|
2209
|
-
|
2210
|
-
|
2211
|
-
|
2212
|
-
|
2213
|
-
|
2214
|
-
fileName: z.ZodString;
|
2215
|
-
fileSize: z.ZodNumber;
|
2216
|
-
fileKey: z.ZodString;
|
2217
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
2209
|
+
bucketName: z.ZodNullable<z.ZodString>;
|
2210
|
+
fileName: z.ZodNullable<z.ZodString>;
|
2211
|
+
fileSize: z.ZodNullable<z.ZodNumber>;
|
2212
|
+
fileKey: z.ZodNullable<z.ZodString>;
|
2213
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
2218
2214
|
status: z.ZodOptional<z.ZodString>;
|
2215
|
+
id: z.ZodString;
|
2216
|
+
createdAt: z.ZodString;
|
2217
|
+
updatedAt: z.ZodString;
|
2218
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2219
2219
|
}, "strip", z.ZodTypeAny, {
|
2220
2220
|
id: string;
|
2221
|
-
createdAt:
|
2222
|
-
updatedAt:
|
2223
|
-
deletedAt:
|
2224
|
-
fileName: string;
|
2225
|
-
fileKey: string;
|
2226
|
-
bucketName: string;
|
2227
|
-
fileSize: number;
|
2228
|
-
fileUrl
|
2221
|
+
createdAt: string;
|
2222
|
+
updatedAt: string;
|
2223
|
+
deletedAt: string | null;
|
2224
|
+
fileName: string | null;
|
2225
|
+
fileKey: string | null;
|
2226
|
+
bucketName: string | null;
|
2227
|
+
fileSize: number | null;
|
2228
|
+
fileUrl?: string | undefined;
|
2229
2229
|
status?: string | undefined;
|
2230
2230
|
}, {
|
2231
2231
|
id: string;
|
2232
|
-
createdAt:
|
2233
|
-
updatedAt:
|
2234
|
-
deletedAt:
|
2235
|
-
fileName: string;
|
2236
|
-
fileKey: string;
|
2237
|
-
bucketName: string;
|
2238
|
-
fileSize: number;
|
2239
|
-
fileUrl
|
2232
|
+
createdAt: string;
|
2233
|
+
updatedAt: string;
|
2234
|
+
deletedAt: string | null;
|
2235
|
+
fileName: string | null;
|
2236
|
+
fileKey: string | null;
|
2237
|
+
bucketName: string | null;
|
2238
|
+
fileSize: number | null;
|
2239
|
+
fileUrl?: string | undefined;
|
2240
2240
|
status?: string | undefined;
|
2241
2241
|
}>>;
|
2242
2242
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -2853,7 +2853,6 @@ export declare const receiveMessageContract: {
|
|
2853
2853
|
}>>;
|
2854
2854
|
}, "strip", z.ZodTypeAny, {
|
2855
2855
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
2856
|
-
message: string;
|
2857
2856
|
direction: "incoming" | "outgoing" | "system";
|
2858
2857
|
platformId: string;
|
2859
2858
|
room: {
|
@@ -3125,6 +3124,7 @@ export declare const receiveMessageContract: {
|
|
3125
3124
|
};
|
3126
3125
|
platformMessageId: string;
|
3127
3126
|
locale: "" | "th" | "mm" | "en" | null;
|
3127
|
+
message?: string | undefined;
|
3128
3128
|
metadata?: any;
|
3129
3129
|
replyPlatformMessageId?: string | undefined;
|
3130
3130
|
template?: any;
|
@@ -3133,14 +3133,14 @@ export declare const receiveMessageContract: {
|
|
3133
3133
|
imageSetId?: string | undefined;
|
3134
3134
|
upload?: {
|
3135
3135
|
id: string;
|
3136
|
-
createdAt:
|
3137
|
-
updatedAt:
|
3138
|
-
deletedAt:
|
3139
|
-
fileName: string;
|
3140
|
-
fileKey: string;
|
3141
|
-
bucketName: string;
|
3142
|
-
fileSize: number;
|
3143
|
-
fileUrl
|
3136
|
+
createdAt: string;
|
3137
|
+
updatedAt: string;
|
3138
|
+
deletedAt: string | null;
|
3139
|
+
fileName: string | null;
|
3140
|
+
fileKey: string | null;
|
3141
|
+
bucketName: string | null;
|
3142
|
+
fileSize: number | null;
|
3143
|
+
fileUrl?: string | undefined;
|
3144
3144
|
status?: string | undefined;
|
3145
3145
|
} | undefined;
|
3146
3146
|
actor?: {
|
@@ -3277,7 +3277,6 @@ export declare const receiveMessageContract: {
|
|
3277
3277
|
} | undefined;
|
3278
3278
|
}, {
|
3279
3279
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
3280
|
-
message: string;
|
3281
3280
|
direction: "incoming" | "outgoing" | "system";
|
3282
3281
|
platformId: string;
|
3283
3282
|
room: {
|
@@ -3549,6 +3548,7 @@ export declare const receiveMessageContract: {
|
|
3549
3548
|
};
|
3550
3549
|
platformMessageId: string;
|
3551
3550
|
locale: "" | "th" | "mm" | "en" | null;
|
3551
|
+
message?: string | undefined;
|
3552
3552
|
metadata?: any;
|
3553
3553
|
replyPlatformMessageId?: string | undefined;
|
3554
3554
|
template?: any;
|
@@ -3557,14 +3557,14 @@ export declare const receiveMessageContract: {
|
|
3557
3557
|
imageSetId?: string | undefined;
|
3558
3558
|
upload?: {
|
3559
3559
|
id: string;
|
3560
|
-
createdAt:
|
3561
|
-
updatedAt:
|
3562
|
-
deletedAt:
|
3563
|
-
fileName: string;
|
3564
|
-
fileKey: string;
|
3565
|
-
bucketName: string;
|
3566
|
-
fileSize: number;
|
3567
|
-
fileUrl
|
3560
|
+
createdAt: string;
|
3561
|
+
updatedAt: string;
|
3562
|
+
deletedAt: string | null;
|
3563
|
+
fileName: string | null;
|
3564
|
+
fileKey: string | null;
|
3565
|
+
bucketName: string | null;
|
3566
|
+
fileSize: number | null;
|
3567
|
+
fileUrl?: string | undefined;
|
3568
3568
|
status?: string | undefined;
|
3569
3569
|
} | undefined;
|
3570
3570
|
actor?: {
|
@@ -3703,7 +3703,6 @@ export declare const receiveMessageContract: {
|
|
3703
3703
|
}, "strip", z.ZodTypeAny, {
|
3704
3704
|
message: {
|
3705
3705
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
3706
|
-
message: string;
|
3707
3706
|
direction: "incoming" | "outgoing" | "system";
|
3708
3707
|
platformId: string;
|
3709
3708
|
room: {
|
@@ -3975,6 +3974,7 @@ export declare const receiveMessageContract: {
|
|
3975
3974
|
};
|
3976
3975
|
platformMessageId: string;
|
3977
3976
|
locale: "" | "th" | "mm" | "en" | null;
|
3977
|
+
message?: string | undefined;
|
3978
3978
|
metadata?: any;
|
3979
3979
|
replyPlatformMessageId?: string | undefined;
|
3980
3980
|
template?: any;
|
@@ -3983,14 +3983,14 @@ export declare const receiveMessageContract: {
|
|
3983
3983
|
imageSetId?: string | undefined;
|
3984
3984
|
upload?: {
|
3985
3985
|
id: string;
|
3986
|
-
createdAt:
|
3987
|
-
updatedAt:
|
3988
|
-
deletedAt:
|
3989
|
-
fileName: string;
|
3990
|
-
fileKey: string;
|
3991
|
-
bucketName: string;
|
3992
|
-
fileSize: number;
|
3993
|
-
fileUrl
|
3986
|
+
createdAt: string;
|
3987
|
+
updatedAt: string;
|
3988
|
+
deletedAt: string | null;
|
3989
|
+
fileName: string | null;
|
3990
|
+
fileKey: string | null;
|
3991
|
+
bucketName: string | null;
|
3992
|
+
fileSize: number | null;
|
3993
|
+
fileUrl?: string | undefined;
|
3994
3994
|
status?: string | undefined;
|
3995
3995
|
} | undefined;
|
3996
3996
|
actor?: {
|
@@ -4129,7 +4129,6 @@ export declare const receiveMessageContract: {
|
|
4129
4129
|
}, {
|
4130
4130
|
message: {
|
4131
4131
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
4132
|
-
message: string;
|
4133
4132
|
direction: "incoming" | "outgoing" | "system";
|
4134
4133
|
platformId: string;
|
4135
4134
|
room: {
|
@@ -4401,6 +4400,7 @@ export declare const receiveMessageContract: {
|
|
4401
4400
|
};
|
4402
4401
|
platformMessageId: string;
|
4403
4402
|
locale: "" | "th" | "mm" | "en" | null;
|
4403
|
+
message?: string | undefined;
|
4404
4404
|
metadata?: any;
|
4405
4405
|
replyPlatformMessageId?: string | undefined;
|
4406
4406
|
template?: any;
|
@@ -4409,14 +4409,14 @@ export declare const receiveMessageContract: {
|
|
4409
4409
|
imageSetId?: string | undefined;
|
4410
4410
|
upload?: {
|
4411
4411
|
id: string;
|
4412
|
-
createdAt:
|
4413
|
-
updatedAt:
|
4414
|
-
deletedAt:
|
4415
|
-
fileName: string;
|
4416
|
-
fileKey: string;
|
4417
|
-
bucketName: string;
|
4418
|
-
fileSize: number;
|
4419
|
-
fileUrl
|
4412
|
+
createdAt: string;
|
4413
|
+
updatedAt: string;
|
4414
|
+
deletedAt: string | null;
|
4415
|
+
fileName: string | null;
|
4416
|
+
fileKey: string | null;
|
4417
|
+
bucketName: string | null;
|
4418
|
+
fileSize: number | null;
|
4419
|
+
fileUrl?: string | undefined;
|
4420
4420
|
status?: string | undefined;
|
4421
4421
|
} | undefined;
|
4422
4422
|
actor?: {
|
@@ -40702,7 +40702,7 @@ export declare const mainChatContract: {
|
|
40702
40702
|
requestId: string;
|
40703
40703
|
}>;
|
40704
40704
|
};
|
40705
|
-
path: "chat/room/:roomid
|
40705
|
+
path: "chat/room/read/:roomid";
|
40706
40706
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
40707
40707
|
'x-tenant': z.ZodString;
|
40708
40708
|
authorization: z.ZodString;
|
@@ -6613,7 +6613,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
6613
6613
|
}>;
|
6614
6614
|
export declare const ReceiveMessageSchema: z.ZodObject<{
|
6615
6615
|
message: z.ZodObject<{
|
6616
|
-
message: z.ZodString
|
6616
|
+
message: z.ZodOptional<z.ZodString>;
|
6617
6617
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
6618
6618
|
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
6619
6619
|
metadata: z.ZodAny;
|
@@ -8801,37 +8801,37 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
8801
8801
|
} | undefined;
|
8802
8802
|
}>;
|
8803
8803
|
upload: z.ZodOptional<z.ZodObject<{
|
8804
|
-
|
8805
|
-
|
8806
|
-
|
8807
|
-
|
8808
|
-
|
8809
|
-
fileName: z.ZodString;
|
8810
|
-
fileSize: z.ZodNumber;
|
8811
|
-
fileKey: z.ZodString;
|
8812
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
8804
|
+
bucketName: z.ZodNullable<z.ZodString>;
|
8805
|
+
fileName: z.ZodNullable<z.ZodString>;
|
8806
|
+
fileSize: z.ZodNullable<z.ZodNumber>;
|
8807
|
+
fileKey: z.ZodNullable<z.ZodString>;
|
8808
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
8813
8809
|
status: z.ZodOptional<z.ZodString>;
|
8810
|
+
id: z.ZodString;
|
8811
|
+
createdAt: z.ZodString;
|
8812
|
+
updatedAt: z.ZodString;
|
8813
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
8814
8814
|
}, "strip", z.ZodTypeAny, {
|
8815
8815
|
id: string;
|
8816
|
-
createdAt:
|
8817
|
-
updatedAt:
|
8818
|
-
deletedAt:
|
8819
|
-
fileName: string;
|
8820
|
-
fileKey: string;
|
8821
|
-
bucketName: string;
|
8822
|
-
fileSize: number;
|
8823
|
-
fileUrl
|
8816
|
+
createdAt: string;
|
8817
|
+
updatedAt: string;
|
8818
|
+
deletedAt: string | null;
|
8819
|
+
fileName: string | null;
|
8820
|
+
fileKey: string | null;
|
8821
|
+
bucketName: string | null;
|
8822
|
+
fileSize: number | null;
|
8823
|
+
fileUrl?: string | undefined;
|
8824
8824
|
status?: string | undefined;
|
8825
8825
|
}, {
|
8826
8826
|
id: string;
|
8827
|
-
createdAt:
|
8828
|
-
updatedAt:
|
8829
|
-
deletedAt:
|
8830
|
-
fileName: string;
|
8831
|
-
fileKey: string;
|
8832
|
-
bucketName: string;
|
8833
|
-
fileSize: number;
|
8834
|
-
fileUrl
|
8827
|
+
createdAt: string;
|
8828
|
+
updatedAt: string;
|
8829
|
+
deletedAt: string | null;
|
8830
|
+
fileName: string | null;
|
8831
|
+
fileKey: string | null;
|
8832
|
+
bucketName: string | null;
|
8833
|
+
fileSize: number | null;
|
8834
|
+
fileUrl?: string | undefined;
|
8835
8835
|
status?: string | undefined;
|
8836
8836
|
}>>;
|
8837
8837
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -9448,7 +9448,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
9448
9448
|
}>>;
|
9449
9449
|
}, "strip", z.ZodTypeAny, {
|
9450
9450
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
9451
|
-
message: string;
|
9452
9451
|
direction: "incoming" | "outgoing" | "system";
|
9453
9452
|
platformId: string;
|
9454
9453
|
room: {
|
@@ -9720,6 +9719,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
9720
9719
|
};
|
9721
9720
|
platformMessageId: string;
|
9722
9721
|
locale: "" | "th" | "mm" | "en" | null;
|
9722
|
+
message?: string | undefined;
|
9723
9723
|
metadata?: any;
|
9724
9724
|
replyPlatformMessageId?: string | undefined;
|
9725
9725
|
template?: any;
|
@@ -9728,14 +9728,14 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
9728
9728
|
imageSetId?: string | undefined;
|
9729
9729
|
upload?: {
|
9730
9730
|
id: string;
|
9731
|
-
createdAt:
|
9732
|
-
updatedAt:
|
9733
|
-
deletedAt:
|
9734
|
-
fileName: string;
|
9735
|
-
fileKey: string;
|
9736
|
-
bucketName: string;
|
9737
|
-
fileSize: number;
|
9738
|
-
fileUrl
|
9731
|
+
createdAt: string;
|
9732
|
+
updatedAt: string;
|
9733
|
+
deletedAt: string | null;
|
9734
|
+
fileName: string | null;
|
9735
|
+
fileKey: string | null;
|
9736
|
+
bucketName: string | null;
|
9737
|
+
fileSize: number | null;
|
9738
|
+
fileUrl?: string | undefined;
|
9739
9739
|
status?: string | undefined;
|
9740
9740
|
} | undefined;
|
9741
9741
|
actor?: {
|
@@ -9872,7 +9872,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
9872
9872
|
} | undefined;
|
9873
9873
|
}, {
|
9874
9874
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
9875
|
-
message: string;
|
9876
9875
|
direction: "incoming" | "outgoing" | "system";
|
9877
9876
|
platformId: string;
|
9878
9877
|
room: {
|
@@ -10144,6 +10143,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10144
10143
|
};
|
10145
10144
|
platformMessageId: string;
|
10146
10145
|
locale: "" | "th" | "mm" | "en" | null;
|
10146
|
+
message?: string | undefined;
|
10147
10147
|
metadata?: any;
|
10148
10148
|
replyPlatformMessageId?: string | undefined;
|
10149
10149
|
template?: any;
|
@@ -10152,14 +10152,14 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10152
10152
|
imageSetId?: string | undefined;
|
10153
10153
|
upload?: {
|
10154
10154
|
id: string;
|
10155
|
-
createdAt:
|
10156
|
-
updatedAt:
|
10157
|
-
deletedAt:
|
10158
|
-
fileName: string;
|
10159
|
-
fileKey: string;
|
10160
|
-
bucketName: string;
|
10161
|
-
fileSize: number;
|
10162
|
-
fileUrl
|
10155
|
+
createdAt: string;
|
10156
|
+
updatedAt: string;
|
10157
|
+
deletedAt: string | null;
|
10158
|
+
fileName: string | null;
|
10159
|
+
fileKey: string | null;
|
10160
|
+
bucketName: string | null;
|
10161
|
+
fileSize: number | null;
|
10162
|
+
fileUrl?: string | undefined;
|
10163
10163
|
status?: string | undefined;
|
10164
10164
|
} | undefined;
|
10165
10165
|
actor?: {
|
@@ -10298,7 +10298,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10298
10298
|
}, "strip", z.ZodTypeAny, {
|
10299
10299
|
message: {
|
10300
10300
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
10301
|
-
message: string;
|
10302
10301
|
direction: "incoming" | "outgoing" | "system";
|
10303
10302
|
platformId: string;
|
10304
10303
|
room: {
|
@@ -10570,6 +10569,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10570
10569
|
};
|
10571
10570
|
platformMessageId: string;
|
10572
10571
|
locale: "" | "th" | "mm" | "en" | null;
|
10572
|
+
message?: string | undefined;
|
10573
10573
|
metadata?: any;
|
10574
10574
|
replyPlatformMessageId?: string | undefined;
|
10575
10575
|
template?: any;
|
@@ -10578,14 +10578,14 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10578
10578
|
imageSetId?: string | undefined;
|
10579
10579
|
upload?: {
|
10580
10580
|
id: string;
|
10581
|
-
createdAt:
|
10582
|
-
updatedAt:
|
10583
|
-
deletedAt:
|
10584
|
-
fileName: string;
|
10585
|
-
fileKey: string;
|
10586
|
-
bucketName: string;
|
10587
|
-
fileSize: number;
|
10588
|
-
fileUrl
|
10581
|
+
createdAt: string;
|
10582
|
+
updatedAt: string;
|
10583
|
+
deletedAt: string | null;
|
10584
|
+
fileName: string | null;
|
10585
|
+
fileKey: string | null;
|
10586
|
+
bucketName: string | null;
|
10587
|
+
fileSize: number | null;
|
10588
|
+
fileUrl?: string | undefined;
|
10589
10589
|
status?: string | undefined;
|
10590
10590
|
} | undefined;
|
10591
10591
|
actor?: {
|
@@ -10724,7 +10724,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10724
10724
|
}, {
|
10725
10725
|
message: {
|
10726
10726
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
10727
|
-
message: string;
|
10728
10727
|
direction: "incoming" | "outgoing" | "system";
|
10729
10728
|
platformId: string;
|
10730
10729
|
room: {
|
@@ -10996,6 +10995,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10996
10995
|
};
|
10997
10996
|
platformMessageId: string;
|
10998
10997
|
locale: "" | "th" | "mm" | "en" | null;
|
10998
|
+
message?: string | undefined;
|
10999
10999
|
metadata?: any;
|
11000
11000
|
replyPlatformMessageId?: string | undefined;
|
11001
11001
|
template?: any;
|
@@ -11004,14 +11004,14 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
11004
11004
|
imageSetId?: string | undefined;
|
11005
11005
|
upload?: {
|
11006
11006
|
id: string;
|
11007
|
-
createdAt:
|
11008
|
-
updatedAt:
|
11009
|
-
deletedAt:
|
11010
|
-
fileName: string;
|
11011
|
-
fileKey: string;
|
11012
|
-
bucketName: string;
|
11013
|
-
fileSize: number;
|
11014
|
-
fileUrl
|
11007
|
+
createdAt: string;
|
11008
|
+
updatedAt: string;
|
11009
|
+
deletedAt: string | null;
|
11010
|
+
fileName: string | null;
|
11011
|
+
fileKey: string | null;
|
11012
|
+
bucketName: string | null;
|
11013
|
+
fileSize: number | null;
|
11014
|
+
fileUrl?: string | undefined;
|
11015
11015
|
status?: string | undefined;
|
11016
11016
|
} | undefined;
|
11017
11017
|
actor?: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/chat/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AA8BpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBzB,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAErC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;EAQlC,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;EAGxB,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ5B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;EAG1B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;EAG/B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAE5B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4DtC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIxC,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyD/B,CAAC"}
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/chat/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AA6BpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBzB,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAErC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;EAQlC,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;EAGxB,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ5B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;EAG1B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;EAG/B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAE5B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4DtC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIxC,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsE/B,CAAC"}
|
package/dist/src/contract.d.ts
CHANGED
@@ -13584,6 +13584,7 @@ export declare const apiContract: {
|
|
13584
13584
|
caseId: import("zod").ZodNumber;
|
13585
13585
|
entityId: import("zod").ZodString;
|
13586
13586
|
entityName: import("zod").ZodString;
|
13587
|
+
customerPhone: import("zod").ZodNullable<import("zod").ZodString>;
|
13587
13588
|
channelType: import("zod").ZodNullable<import("zod").ZodString>;
|
13588
13589
|
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
13589
13590
|
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -18740,6 +18741,7 @@ export declare const apiContract: {
|
|
18740
18741
|
callTo: string | null;
|
18741
18742
|
note: string | null;
|
18742
18743
|
} | null;
|
18744
|
+
customerPhone: string | null;
|
18743
18745
|
channelType: string | null;
|
18744
18746
|
slaMeet: string | null;
|
18745
18747
|
evaluateForm: {
|
@@ -19427,6 +19429,7 @@ export declare const apiContract: {
|
|
19427
19429
|
callTo: string | null;
|
19428
19430
|
note: string | null;
|
19429
19431
|
} | null;
|
19432
|
+
customerPhone: string | null;
|
19430
19433
|
channelType: string | null;
|
19431
19434
|
slaMeet: string | null;
|
19432
19435
|
evaluateForm: {
|
@@ -20120,6 +20123,7 @@ export declare const apiContract: {
|
|
20120
20123
|
callTo: string | null;
|
20121
20124
|
note: string | null;
|
20122
20125
|
} | null;
|
20126
|
+
customerPhone: string | null;
|
20123
20127
|
channelType: string | null;
|
20124
20128
|
slaMeet: string | null;
|
20125
20129
|
evaluateForm: {
|
@@ -20813,6 +20817,7 @@ export declare const apiContract: {
|
|
20813
20817
|
callTo: string | null;
|
20814
20818
|
note: string | null;
|
20815
20819
|
} | null;
|
20820
|
+
customerPhone: string | null;
|
20816
20821
|
channelType: string | null;
|
20817
20822
|
slaMeet: string | null;
|
20818
20823
|
evaluateForm: {
|
@@ -56171,7 +56176,7 @@ export declare const ticketContract: {
|
|
56171
56176
|
responses: {
|
56172
56177
|
201: import("zod").ZodObject<{
|
56173
56178
|
requestId: import("zod").ZodString;
|
56174
|
-
|
56179
|
+
data: import("zod").ZodObject<{
|
56175
56180
|
id: import("zod").ZodString;
|
56176
56181
|
createdAt: import("zod").ZodDate;
|
56177
56182
|
updatedAt: import("zod").ZodDate;
|
@@ -58687,7 +58692,7 @@ export declare const ticketContract: {
|
|
58687
58692
|
ticketNumber?: number | undefined;
|
58688
58693
|
}>;
|
58689
58694
|
}, "strip", import("zod").ZodTypeAny, {
|
58690
|
-
|
58695
|
+
data: {
|
58691
58696
|
type: string;
|
58692
58697
|
id: string;
|
58693
58698
|
channel: string;
|
@@ -59023,7 +59028,7 @@ export declare const ticketContract: {
|
|
59023
59028
|
};
|
59024
59029
|
requestId: string;
|
59025
59030
|
}, {
|
59026
|
-
|
59031
|
+
data: {
|
59027
59032
|
type: string;
|
59028
59033
|
id: string;
|
59029
59034
|
channel: string;
|
@@ -128898,7 +128903,7 @@ export declare const chatContract: {
|
|
128898
128903
|
requestId: string;
|
128899
128904
|
}>;
|
128900
128905
|
};
|
128901
|
-
path: "chat/room/:roomid
|
128906
|
+
path: "chat/room/read/:roomid";
|
128902
128907
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
128903
128908
|
'x-tenant': import("zod").ZodString;
|
128904
128909
|
authorization: import("zod").ZodString;
|