@kl1/contracts 1.0.32 → 1.0.33
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 +1809 -1627
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1807 -1627
- package/dist/index.mjs.map +1 -1
- package/dist/src/attribute/validation.d.ts.map +1 -1
- package/dist/src/call-log/validation.d.ts +2 -2
- package/dist/src/channel/index.d.ts +721 -299
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +0 -291
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +105 -104
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +16 -16
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +193 -67
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/company/index.d.ts +8 -85
- package/dist/src/company/index.d.ts.map +1 -1
- package/dist/src/company/schema.d.ts +137 -0
- package/dist/src/company/schema.d.ts.map +1 -1
- package/dist/src/company/validation.d.ts +0 -40
- package/dist/src/company/validation.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +1191 -1191
- package/dist/src/contract.d.ts +3159 -2340
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +22 -22
- package/dist/src/cx-log/schema.d.ts +16 -16
- package/dist/src/dashboard/index.d.ts +11 -7
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +127 -2
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/evaluate-form/schema.d.ts +6 -6
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +42 -42
- package/dist/src/mail/room-contract.d.ts +42 -42
- package/dist/src/mail/schemas/room-validation.schema.d.ts +14 -14
- package/dist/src/mail/schemas/room.schema.d.ts +10 -10
- package/dist/src/messenger/index.d.ts +1212 -707
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +108 -1
- package/dist/src/messenger/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +207 -342
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/validation.d.ts +168 -338
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/widget/index.d.ts +72 -1
- package/dist/src/widget/index.d.ts.map +1 -1
- package/dist/src/widget/validation.d.ts +10 -0
- package/dist/src/widget/validation.d.ts.map +1 -1
- package/package.json +47 -46
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts +0 -216
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -128,24 +128,24 @@ export declare const cxLogContract: {
|
|
128
128
|
updatedAt: z.ZodDate;
|
129
129
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
130
130
|
cxLogId: z.ZodString;
|
131
|
-
sentimentScore: z.ZodNullable<z.ZodString
|
132
|
-
csatScore: z.ZodNullable<z.ZodString
|
131
|
+
sentimentScore: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
132
|
+
csatScore: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
133
133
|
}, "strip", z.ZodTypeAny, {
|
134
134
|
id: string;
|
135
135
|
createdAt: Date;
|
136
136
|
updatedAt: Date;
|
137
137
|
deletedAt: Date | null;
|
138
138
|
cxLogId: string;
|
139
|
-
sentimentScore
|
140
|
-
csatScore
|
139
|
+
sentimentScore?: string | null | undefined;
|
140
|
+
csatScore?: string | null | undefined;
|
141
141
|
}, {
|
142
142
|
id: string;
|
143
143
|
createdAt: Date;
|
144
144
|
updatedAt: Date;
|
145
145
|
deletedAt: Date | null;
|
146
146
|
cxLogId: string;
|
147
|
-
sentimentScore
|
148
|
-
csatScore
|
147
|
+
sentimentScore?: string | null | undefined;
|
148
|
+
csatScore?: string | null | undefined;
|
149
149
|
}>>;
|
150
150
|
wrapUpForm: z.ZodNullable<z.ZodObject<{
|
151
151
|
id: z.ZodString;
|
@@ -997,6 +997,7 @@ export declare const cxLogContract: {
|
|
997
997
|
createdAt: Date;
|
998
998
|
updatedAt: Date;
|
999
999
|
deletedAt: Date | null;
|
1000
|
+
channelId: string;
|
1000
1001
|
contact: {
|
1001
1002
|
id: string;
|
1002
1003
|
channel: string | null;
|
@@ -1099,7 +1100,6 @@ export declare const cxLogContract: {
|
|
1099
1100
|
};
|
1100
1101
|
}[] | undefined;
|
1101
1102
|
};
|
1102
|
-
channelId: string;
|
1103
1103
|
socialPlatformId: string;
|
1104
1104
|
}, {
|
1105
1105
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
@@ -1113,6 +1113,7 @@ export declare const cxLogContract: {
|
|
1113
1113
|
createdAt: Date;
|
1114
1114
|
updatedAt: Date;
|
1115
1115
|
deletedAt: Date | null;
|
1116
|
+
channelId: string;
|
1116
1117
|
contact: {
|
1117
1118
|
id: string;
|
1118
1119
|
channel: string | null;
|
@@ -1215,7 +1216,6 @@ export declare const cxLogContract: {
|
|
1215
1216
|
};
|
1216
1217
|
}[] | undefined;
|
1217
1218
|
};
|
1218
|
-
channelId: string;
|
1219
1219
|
socialPlatformId: string;
|
1220
1220
|
}>;
|
1221
1221
|
actor: z.ZodObject<{
|
@@ -2037,6 +2037,7 @@ export declare const cxLogContract: {
|
|
2037
2037
|
createdAt: Date;
|
2038
2038
|
updatedAt: Date;
|
2039
2039
|
deletedAt: Date | null;
|
2040
|
+
channelId: string;
|
2040
2041
|
contact: {
|
2041
2042
|
id: string;
|
2042
2043
|
channel: string | null;
|
@@ -2139,7 +2140,6 @@ export declare const cxLogContract: {
|
|
2139
2140
|
};
|
2140
2141
|
}[] | undefined;
|
2141
2142
|
};
|
2142
|
-
channelId: string;
|
2143
2143
|
socialPlatformId: string;
|
2144
2144
|
};
|
2145
2145
|
assignee: {
|
@@ -2316,6 +2316,7 @@ export declare const cxLogContract: {
|
|
2316
2316
|
createdAt: Date;
|
2317
2317
|
updatedAt: Date;
|
2318
2318
|
deletedAt: Date | null;
|
2319
|
+
channelId: string;
|
2319
2320
|
contact: {
|
2320
2321
|
id: string;
|
2321
2322
|
channel: string | null;
|
@@ -2418,7 +2419,6 @@ export declare const cxLogContract: {
|
|
2418
2419
|
};
|
2419
2420
|
}[] | undefined;
|
2420
2421
|
};
|
2421
|
-
channelId: string;
|
2422
2422
|
socialPlatformId: string;
|
2423
2423
|
};
|
2424
2424
|
assignee: {
|
@@ -3688,8 +3688,8 @@ export declare const cxLogContract: {
|
|
3688
3688
|
updatedAt: Date;
|
3689
3689
|
deletedAt: Date | null;
|
3690
3690
|
cxLogId: string;
|
3691
|
-
sentimentScore
|
3692
|
-
csatScore
|
3691
|
+
sentimentScore?: string | null | undefined;
|
3692
|
+
csatScore?: string | null | undefined;
|
3693
3693
|
} | null;
|
3694
3694
|
room: {
|
3695
3695
|
id: string;
|
@@ -3759,6 +3759,7 @@ export declare const cxLogContract: {
|
|
3759
3759
|
createdAt: Date;
|
3760
3760
|
updatedAt: Date;
|
3761
3761
|
deletedAt: Date | null;
|
3762
|
+
channelId: string;
|
3762
3763
|
contact: {
|
3763
3764
|
id: string;
|
3764
3765
|
channel: string | null;
|
@@ -3861,7 +3862,6 @@ export declare const cxLogContract: {
|
|
3861
3862
|
};
|
3862
3863
|
}[] | undefined;
|
3863
3864
|
};
|
3864
|
-
channelId: string;
|
3865
3865
|
socialPlatformId: string;
|
3866
3866
|
};
|
3867
3867
|
assignee: {
|
@@ -4183,8 +4183,8 @@ export declare const cxLogContract: {
|
|
4183
4183
|
updatedAt: Date;
|
4184
4184
|
deletedAt: Date | null;
|
4185
4185
|
cxLogId: string;
|
4186
|
-
sentimentScore
|
4187
|
-
csatScore
|
4186
|
+
sentimentScore?: string | null | undefined;
|
4187
|
+
csatScore?: string | null | undefined;
|
4188
4188
|
} | null;
|
4189
4189
|
room: {
|
4190
4190
|
id: string;
|
@@ -4254,6 +4254,7 @@ export declare const cxLogContract: {
|
|
4254
4254
|
createdAt: Date;
|
4255
4255
|
updatedAt: Date;
|
4256
4256
|
deletedAt: Date | null;
|
4257
|
+
channelId: string;
|
4257
4258
|
contact: {
|
4258
4259
|
id: string;
|
4259
4260
|
channel: string | null;
|
@@ -4356,7 +4357,6 @@ export declare const cxLogContract: {
|
|
4356
4357
|
};
|
4357
4358
|
}[] | undefined;
|
4358
4359
|
};
|
4359
|
-
channelId: string;
|
4360
4360
|
socialPlatformId: string;
|
4361
4361
|
};
|
4362
4362
|
assignee: {
|
@@ -4684,8 +4684,8 @@ export declare const cxLogContract: {
|
|
4684
4684
|
updatedAt: Date;
|
4685
4685
|
deletedAt: Date | null;
|
4686
4686
|
cxLogId: string;
|
4687
|
-
sentimentScore
|
4688
|
-
csatScore
|
4687
|
+
sentimentScore?: string | null | undefined;
|
4688
|
+
csatScore?: string | null | undefined;
|
4689
4689
|
} | null;
|
4690
4690
|
room: {
|
4691
4691
|
id: string;
|
@@ -4755,6 +4755,7 @@ export declare const cxLogContract: {
|
|
4755
4755
|
createdAt: Date;
|
4756
4756
|
updatedAt: Date;
|
4757
4757
|
deletedAt: Date | null;
|
4758
|
+
channelId: string;
|
4758
4759
|
contact: {
|
4759
4760
|
id: string;
|
4760
4761
|
channel: string | null;
|
@@ -4857,7 +4858,6 @@ export declare const cxLogContract: {
|
|
4857
4858
|
};
|
4858
4859
|
}[] | undefined;
|
4859
4860
|
};
|
4860
|
-
channelId: string;
|
4861
4861
|
socialPlatformId: string;
|
4862
4862
|
};
|
4863
4863
|
assignee: {
|
@@ -5185,8 +5185,8 @@ export declare const cxLogContract: {
|
|
5185
5185
|
updatedAt: Date;
|
5186
5186
|
deletedAt: Date | null;
|
5187
5187
|
cxLogId: string;
|
5188
|
-
sentimentScore
|
5189
|
-
csatScore
|
5188
|
+
sentimentScore?: string | null | undefined;
|
5189
|
+
csatScore?: string | null | undefined;
|
5190
5190
|
} | null;
|
5191
5191
|
room: {
|
5192
5192
|
id: string;
|
@@ -5256,6 +5256,7 @@ export declare const cxLogContract: {
|
|
5256
5256
|
createdAt: Date;
|
5257
5257
|
updatedAt: Date;
|
5258
5258
|
deletedAt: Date | null;
|
5259
|
+
channelId: string;
|
5259
5260
|
contact: {
|
5260
5261
|
id: string;
|
5261
5262
|
channel: string | null;
|
@@ -5358,7 +5359,6 @@ export declare const cxLogContract: {
|
|
5358
5359
|
};
|
5359
5360
|
}[] | undefined;
|
5360
5361
|
};
|
5361
|
-
channelId: string;
|
5362
5362
|
socialPlatformId: string;
|
5363
5363
|
};
|
5364
5364
|
assignee: {
|
@@ -168,24 +168,24 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
168
168
|
updatedAt: z.ZodDate;
|
169
169
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
170
170
|
cxLogId: z.ZodString;
|
171
|
-
sentimentScore: z.ZodNullable<z.ZodString
|
172
|
-
csatScore: z.ZodNullable<z.ZodString
|
171
|
+
sentimentScore: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
172
|
+
csatScore: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
174
174
|
id: string;
|
175
175
|
createdAt: Date;
|
176
176
|
updatedAt: Date;
|
177
177
|
deletedAt: Date | null;
|
178
178
|
cxLogId: string;
|
179
|
-
sentimentScore
|
180
|
-
csatScore
|
179
|
+
sentimentScore?: string | null | undefined;
|
180
|
+
csatScore?: string | null | undefined;
|
181
181
|
}, {
|
182
182
|
id: string;
|
183
183
|
createdAt: Date;
|
184
184
|
updatedAt: Date;
|
185
185
|
deletedAt: Date | null;
|
186
186
|
cxLogId: string;
|
187
|
-
sentimentScore
|
188
|
-
csatScore
|
187
|
+
sentimentScore?: string | null | undefined;
|
188
|
+
csatScore?: string | null | undefined;
|
189
189
|
}>>;
|
190
190
|
wrapUpForm: z.ZodNullable<z.ZodObject<{
|
191
191
|
id: z.ZodString;
|
@@ -1037,6 +1037,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1037
1037
|
createdAt: Date;
|
1038
1038
|
updatedAt: Date;
|
1039
1039
|
deletedAt: Date | null;
|
1040
|
+
channelId: string;
|
1040
1041
|
contact: {
|
1041
1042
|
id: string;
|
1042
1043
|
channel: string | null;
|
@@ -1139,7 +1140,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1139
1140
|
};
|
1140
1141
|
}[] | undefined;
|
1141
1142
|
};
|
1142
|
-
channelId: string;
|
1143
1143
|
socialPlatformId: string;
|
1144
1144
|
}, {
|
1145
1145
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
@@ -1153,6 +1153,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1153
1153
|
createdAt: Date;
|
1154
1154
|
updatedAt: Date;
|
1155
1155
|
deletedAt: Date | null;
|
1156
|
+
channelId: string;
|
1156
1157
|
contact: {
|
1157
1158
|
id: string;
|
1158
1159
|
channel: string | null;
|
@@ -1255,7 +1256,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1255
1256
|
};
|
1256
1257
|
}[] | undefined;
|
1257
1258
|
};
|
1258
|
-
channelId: string;
|
1259
1259
|
socialPlatformId: string;
|
1260
1260
|
}>;
|
1261
1261
|
actor: z.ZodObject<{
|
@@ -2077,6 +2077,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2077
2077
|
createdAt: Date;
|
2078
2078
|
updatedAt: Date;
|
2079
2079
|
deletedAt: Date | null;
|
2080
|
+
channelId: string;
|
2080
2081
|
contact: {
|
2081
2082
|
id: string;
|
2082
2083
|
channel: string | null;
|
@@ -2179,7 +2180,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2179
2180
|
};
|
2180
2181
|
}[] | undefined;
|
2181
2182
|
};
|
2182
|
-
channelId: string;
|
2183
2183
|
socialPlatformId: string;
|
2184
2184
|
};
|
2185
2185
|
assignee: {
|
@@ -2356,6 +2356,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2356
2356
|
createdAt: Date;
|
2357
2357
|
updatedAt: Date;
|
2358
2358
|
deletedAt: Date | null;
|
2359
|
+
channelId: string;
|
2359
2360
|
contact: {
|
2360
2361
|
id: string;
|
2361
2362
|
channel: string | null;
|
@@ -2458,7 +2459,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2458
2459
|
};
|
2459
2460
|
}[] | undefined;
|
2460
2461
|
};
|
2461
|
-
channelId: string;
|
2462
2462
|
socialPlatformId: string;
|
2463
2463
|
};
|
2464
2464
|
assignee: {
|
@@ -3728,8 +3728,8 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3728
3728
|
updatedAt: Date;
|
3729
3729
|
deletedAt: Date | null;
|
3730
3730
|
cxLogId: string;
|
3731
|
-
sentimentScore
|
3732
|
-
csatScore
|
3731
|
+
sentimentScore?: string | null | undefined;
|
3732
|
+
csatScore?: string | null | undefined;
|
3733
3733
|
} | null;
|
3734
3734
|
room: {
|
3735
3735
|
id: string;
|
@@ -3799,6 +3799,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3799
3799
|
createdAt: Date;
|
3800
3800
|
updatedAt: Date;
|
3801
3801
|
deletedAt: Date | null;
|
3802
|
+
channelId: string;
|
3802
3803
|
contact: {
|
3803
3804
|
id: string;
|
3804
3805
|
channel: string | null;
|
@@ -3901,7 +3902,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3901
3902
|
};
|
3902
3903
|
}[] | undefined;
|
3903
3904
|
};
|
3904
|
-
channelId: string;
|
3905
3905
|
socialPlatformId: string;
|
3906
3906
|
};
|
3907
3907
|
assignee: {
|
@@ -4223,8 +4223,8 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
4223
4223
|
updatedAt: Date;
|
4224
4224
|
deletedAt: Date | null;
|
4225
4225
|
cxLogId: string;
|
4226
|
-
sentimentScore
|
4227
|
-
csatScore
|
4226
|
+
sentimentScore?: string | null | undefined;
|
4227
|
+
csatScore?: string | null | undefined;
|
4228
4228
|
} | null;
|
4229
4229
|
room: {
|
4230
4230
|
id: string;
|
@@ -4294,6 +4294,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
4294
4294
|
createdAt: Date;
|
4295
4295
|
updatedAt: Date;
|
4296
4296
|
deletedAt: Date | null;
|
4297
|
+
channelId: string;
|
4297
4298
|
contact: {
|
4298
4299
|
id: string;
|
4299
4300
|
channel: string | null;
|
@@ -4396,7 +4397,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
4396
4397
|
};
|
4397
4398
|
}[] | undefined;
|
4398
4399
|
};
|
4399
|
-
channelId: string;
|
4400
4400
|
socialPlatformId: string;
|
4401
4401
|
};
|
4402
4402
|
assignee: {
|
@@ -1,8 +1,12 @@
|
|
1
1
|
import { GetDashboardQueryDetailParamsSchema, GetDashboardQueryParamsSchema } from './validation';
|
2
2
|
import z from 'zod';
|
3
|
-
import { DashboardDataSchema, ExpiredTicketSchema, TicketCountByStatusSchema, MessageCountsByChannelObjSchema, queueCallDashboardDataSchema, queueLiveCallCountListSchema, TagCountObjSchema, CallEndResultSchema, ConversationCountStatusSchema, MessageStatusSchema, MessageAverageSchema, MessagePlatformDataSchema, MessageDispositionSchema, MessageIncomingDataSchema, MessageTotalIncomingDataSchema, TelephonyQueueCallCountListSchema } from './schema';
|
3
|
+
import { DashboardDataSchema, ExpiredTicketSchema, TicketCountByStatusSchema, MessageCountsByChannelObjSchema, queueCallDashboardDataSchema, queueLiveCallCountListSchema, TagCountObjSchema, CallEndResultSchema, ConversationCountStatusSchema, MessageStatusSchema, MessageAverageSchema, MessagePlatformDataSchema, MessageDispositionSchema, MessageIncomingDataSchema, MessageTotalIncomingDataSchema, TelephonyQueueCallCountListSchema, TotalTelephonyQueueCallCountListSchema, TelephonyQueueCallCountListByQueueNumberSchema, TotalQueueLiveCallStatusSchema, QueueLiveCallListByQueueSchema } from './schema';
|
4
4
|
export type DashBoardData = z.infer<typeof DashboardDataSchema>;
|
5
5
|
export type QueueCallDashboardDataType = z.infer<typeof queueCallDashboardDataSchema>;
|
6
|
+
export type TotalTelephonyQueueCallCountList = z.infer<typeof TotalTelephonyQueueCallCountListSchema>;
|
7
|
+
export type TelephonyQueueCallCountListByQueueNumber = z.infer<typeof TelephonyQueueCallCountListByQueueNumberSchema>;
|
8
|
+
export type TotalQueueLiveCallStatus = z.infer<typeof TotalQueueLiveCallStatusSchema>;
|
9
|
+
export type QueueLiveCallListByQueue = z.infer<typeof QueueLiveCallListByQueueSchema>;
|
6
10
|
export type TelephonyQueueCallCountList = z.infer<typeof TelephonyQueueCallCountListSchema>;
|
7
11
|
export type QueueLiveCallCountList = z.infer<typeof queueLiveCallCountListSchema>;
|
8
12
|
export type TicketCountByStatusType = z.infer<typeof TicketCountByStatusSchema>;
|
@@ -1834,7 +1838,7 @@ export declare const dashboardContract: {
|
|
1834
1838
|
responses: {
|
1835
1839
|
200: z.ZodObject<{
|
1836
1840
|
requestId: z.ZodString;
|
1837
|
-
incomingMessageByPlatform: z.ZodArray<z.
|
1841
|
+
incomingMessageByPlatform: z.ZodArray<z.ZodObject<{
|
1838
1842
|
platform: z.ZodNullable<z.ZodString>;
|
1839
1843
|
hour: z.ZodNullable<z.ZodString>;
|
1840
1844
|
messageCount: z.ZodNullable<z.ZodString>;
|
@@ -1846,21 +1850,21 @@ export declare const dashboardContract: {
|
|
1846
1850
|
platform: string | null;
|
1847
1851
|
hour: string | null;
|
1848
1852
|
messageCount: string | null;
|
1849
|
-
}
|
1853
|
+
}>, "many">;
|
1850
1854
|
}, "strip", z.ZodTypeAny, {
|
1851
1855
|
requestId: string;
|
1852
|
-
incomingMessageByPlatform:
|
1856
|
+
incomingMessageByPlatform: {
|
1853
1857
|
platform: string | null;
|
1854
1858
|
hour: string | null;
|
1855
1859
|
messageCount: string | null;
|
1856
|
-
}
|
1860
|
+
}[];
|
1857
1861
|
}, {
|
1858
1862
|
requestId: string;
|
1859
|
-
incomingMessageByPlatform:
|
1863
|
+
incomingMessageByPlatform: {
|
1860
1864
|
platform: string | null;
|
1861
1865
|
hour: string | null;
|
1862
1866
|
messageCount: string | null;
|
1863
|
-
}
|
1867
|
+
}[];
|
1864
1868
|
}>;
|
1865
1869
|
401: z.ZodObject<{
|
1866
1870
|
message: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/dashboard/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,mCAAmC,EACnC,6BAA6B,EAC9B,MAAM,cAAc,CAAC;AACtB,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,yBAAyB,EACzB,+BAA+B,EAC/B,4BAA4B,EAC5B,4BAA4B,EAC5B,iBAAiB,EACjB,mBAAmB,EACnB,6BAA6B,EAC7B,mBAAmB,EACnB,oBAAoB,EACpB,yBAAyB,EACzB,wBAAwB,EACxB,yBAAyB,EACzB,8BAA8B,EAC9B,iCAAiC,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/dashboard/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4P7B,CAAC"}
|
@@ -359,6 +359,40 @@ export declare const DashboardDataWithCallSchema: z.ZodObject<{
|
|
359
359
|
count: string;
|
360
360
|
}[] | undefined;
|
361
361
|
}>;
|
362
|
+
export declare const TotalTelephonyQueueCallCountListSchema: z.ZodObject<{
|
363
|
+
totalQueueCall: z.ZodString;
|
364
|
+
totalMissedQueueCall: z.ZodString;
|
365
|
+
totalAnsweredQueueCall: z.ZodString;
|
366
|
+
totalAbandonedQueueCall: z.ZodString;
|
367
|
+
totalAverageRingDuration: z.ZodString;
|
368
|
+
totalAverageTalkDuration: z.ZodString;
|
369
|
+
totalAverageCallDuration: z.ZodString;
|
370
|
+
totalSla: z.ZodString;
|
371
|
+
totalMissedCallPercent: z.ZodString;
|
372
|
+
totalMaximumRingDuration: z.ZodString;
|
373
|
+
}, "strip", z.ZodTypeAny, {
|
374
|
+
totalQueueCall: string;
|
375
|
+
totalMissedQueueCall: string;
|
376
|
+
totalAnsweredQueueCall: string;
|
377
|
+
totalAbandonedQueueCall: string;
|
378
|
+
totalAverageRingDuration: string;
|
379
|
+
totalAverageTalkDuration: string;
|
380
|
+
totalAverageCallDuration: string;
|
381
|
+
totalSla: string;
|
382
|
+
totalMissedCallPercent: string;
|
383
|
+
totalMaximumRingDuration: string;
|
384
|
+
}, {
|
385
|
+
totalQueueCall: string;
|
386
|
+
totalMissedQueueCall: string;
|
387
|
+
totalAnsweredQueueCall: string;
|
388
|
+
totalAbandonedQueueCall: string;
|
389
|
+
totalAverageRingDuration: string;
|
390
|
+
totalAverageTalkDuration: string;
|
391
|
+
totalAverageCallDuration: string;
|
392
|
+
totalSla: string;
|
393
|
+
totalMissedCallPercent: string;
|
394
|
+
totalMaximumRingDuration: string;
|
395
|
+
}>;
|
362
396
|
export declare const TelephonyQueueCallCountListSchema: z.ZodObject<{
|
363
397
|
totalQueueCall: z.ZodString;
|
364
398
|
totalMissedQueueCall: z.ZodString;
|
@@ -393,6 +427,74 @@ export declare const TelephonyQueueCallCountListSchema: z.ZodObject<{
|
|
393
427
|
totalMissedCallPercent: string;
|
394
428
|
totalMaximumRingDuration: string;
|
395
429
|
}>;
|
430
|
+
export declare const TelephonyQueueCallCountListByQueueNumberSchema: z.ZodObject<{
|
431
|
+
queueNumber: z.ZodString;
|
432
|
+
queueName: z.ZodString;
|
433
|
+
yeastarQueueCallCountList: z.ZodObject<{
|
434
|
+
totalQueueCall: z.ZodString;
|
435
|
+
totalMissedQueueCall: z.ZodString;
|
436
|
+
totalAnsweredQueueCall: z.ZodString;
|
437
|
+
totalAbandonedQueueCall: z.ZodString;
|
438
|
+
totalAverageTalkDuration: z.ZodString;
|
439
|
+
totalAverageCallDuration: z.ZodString;
|
440
|
+
totalAverageRingDuration: z.ZodString;
|
441
|
+
totalSla: z.ZodString;
|
442
|
+
totalMissedCallPercent: z.ZodString;
|
443
|
+
totalMaximumRingDuration: z.ZodString;
|
444
|
+
}, "strip", z.ZodTypeAny, {
|
445
|
+
totalQueueCall: string;
|
446
|
+
totalMissedQueueCall: string;
|
447
|
+
totalAnsweredQueueCall: string;
|
448
|
+
totalAbandonedQueueCall: string;
|
449
|
+
totalAverageRingDuration: string;
|
450
|
+
totalAverageTalkDuration: string;
|
451
|
+
totalAverageCallDuration: string;
|
452
|
+
totalSla: string;
|
453
|
+
totalMissedCallPercent: string;
|
454
|
+
totalMaximumRingDuration: string;
|
455
|
+
}, {
|
456
|
+
totalQueueCall: string;
|
457
|
+
totalMissedQueueCall: string;
|
458
|
+
totalAnsweredQueueCall: string;
|
459
|
+
totalAbandonedQueueCall: string;
|
460
|
+
totalAverageRingDuration: string;
|
461
|
+
totalAverageTalkDuration: string;
|
462
|
+
totalAverageCallDuration: string;
|
463
|
+
totalSla: string;
|
464
|
+
totalMissedCallPercent: string;
|
465
|
+
totalMaximumRingDuration: string;
|
466
|
+
}>;
|
467
|
+
}, "strip", z.ZodTypeAny, {
|
468
|
+
queueName: string;
|
469
|
+
queueNumber: string;
|
470
|
+
yeastarQueueCallCountList: {
|
471
|
+
totalQueueCall: string;
|
472
|
+
totalMissedQueueCall: string;
|
473
|
+
totalAnsweredQueueCall: string;
|
474
|
+
totalAbandonedQueueCall: string;
|
475
|
+
totalAverageRingDuration: string;
|
476
|
+
totalAverageTalkDuration: string;
|
477
|
+
totalAverageCallDuration: string;
|
478
|
+
totalSla: string;
|
479
|
+
totalMissedCallPercent: string;
|
480
|
+
totalMaximumRingDuration: string;
|
481
|
+
};
|
482
|
+
}, {
|
483
|
+
queueName: string;
|
484
|
+
queueNumber: string;
|
485
|
+
yeastarQueueCallCountList: {
|
486
|
+
totalQueueCall: string;
|
487
|
+
totalMissedQueueCall: string;
|
488
|
+
totalAnsweredQueueCall: string;
|
489
|
+
totalAbandonedQueueCall: string;
|
490
|
+
totalAverageRingDuration: string;
|
491
|
+
totalAverageTalkDuration: string;
|
492
|
+
totalAverageCallDuration: string;
|
493
|
+
totalSla: string;
|
494
|
+
totalMissedCallPercent: string;
|
495
|
+
totalMaximumRingDuration: string;
|
496
|
+
};
|
497
|
+
}>;
|
396
498
|
export declare const queueCallDashboardDataSchema: z.ZodObject<{
|
397
499
|
totalTelephonyQueueCallCountList: z.ZodObject<{
|
398
500
|
totalQueueCall: z.ZodString;
|
@@ -555,6 +657,29 @@ export declare const queueCallDashboardDataSchema: z.ZodObject<{
|
|
555
657
|
};
|
556
658
|
}[];
|
557
659
|
}>;
|
660
|
+
export declare const TotalQueueLiveCallStatusSchema: z.ZodObject<{
|
661
|
+
activeCallCount: z.ZodNumber;
|
662
|
+
waitingCallCount: z.ZodNumber;
|
663
|
+
}, "strip", z.ZodTypeAny, {
|
664
|
+
activeCallCount: number;
|
665
|
+
waitingCallCount: number;
|
666
|
+
}, {
|
667
|
+
activeCallCount: number;
|
668
|
+
waitingCallCount: number;
|
669
|
+
}>;
|
670
|
+
export declare const QueueLiveCallListByQueueSchema: z.ZodObject<{
|
671
|
+
queueNumber: z.ZodString;
|
672
|
+
activeCallCount: z.ZodNumber;
|
673
|
+
waitingCallCount: z.ZodNumber;
|
674
|
+
}, "strip", z.ZodTypeAny, {
|
675
|
+
queueNumber: string;
|
676
|
+
activeCallCount: number;
|
677
|
+
waitingCallCount: number;
|
678
|
+
}, {
|
679
|
+
queueNumber: string;
|
680
|
+
activeCallCount: number;
|
681
|
+
waitingCallCount: number;
|
682
|
+
}>;
|
558
683
|
export declare const queueLiveCallCountListSchema: z.ZodObject<{
|
559
684
|
totalQueueLiveCallStatus: z.ZodObject<{
|
560
685
|
activeCallCount: z.ZodNumber;
|
@@ -859,7 +984,7 @@ export declare const MessageDispositionSchema: z.ZodObject<{
|
|
859
984
|
blankDispositionCount: number | null;
|
860
985
|
escalatedDispositionCount: number | null;
|
861
986
|
}>;
|
862
|
-
export declare const MessageIncomingDataSchema: z.ZodArray<z.
|
987
|
+
export declare const MessageIncomingDataSchema: z.ZodArray<z.ZodObject<{
|
863
988
|
platform: z.ZodNullable<z.ZodString>;
|
864
989
|
hour: z.ZodNullable<z.ZodString>;
|
865
990
|
messageCount: z.ZodNullable<z.ZodString>;
|
@@ -871,7 +996,7 @@ export declare const MessageIncomingDataSchema: z.ZodArray<z.ZodOptional<z.ZodNu
|
|
871
996
|
platform: string | null;
|
872
997
|
hour: string | null;
|
873
998
|
messageCount: string | null;
|
874
|
-
}
|
999
|
+
}>, "many">;
|
875
1000
|
export declare const MessageTotalIncomingDataSchema: z.ZodArray<z.ZodNullable<z.ZodObject<{
|
876
1001
|
name: z.ZodString;
|
877
1002
|
data: z.ZodArray<z.ZodNumber, "many">;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/dashboard/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AA4CpB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU9B,CAAC;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUtC,CAAC;
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/dashboard/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AA4CpB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU9B,CAAC;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUtC,CAAC;AAEH,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWjD,CAAC;AAEH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW5C,CAAC;AAEH,eAAO,MAAM,8CAA8C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIzD,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKvC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;EAGzC,CAAC;AACH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;EAIzC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYpC,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;WAQ/B,CAAC;AACF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;WAM7B,CAAC;AACF,eAAO,MAAM,+BAA+B;;;;;;;;;YAO3C,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;aAMnB,CAAC;AACd,eAAO,MAAM,6BAA6B;;;;;;;;;EAGxC,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;EAK9B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyB/B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKpC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;EAMnC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;WAMrC,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;YAE1C,CAAC"}
|
@@ -5,23 +5,23 @@ export declare const EvaluateFormSchema: z.ZodObject<{
|
|
5
5
|
updatedAt: z.ZodDate;
|
6
6
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7
7
|
cxLogId: z.ZodString;
|
8
|
-
sentimentScore: z.ZodNullable<z.ZodString
|
9
|
-
csatScore: z.ZodNullable<z.ZodString
|
8
|
+
sentimentScore: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9
|
+
csatScore: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
11
11
|
id: string;
|
12
12
|
createdAt: Date;
|
13
13
|
updatedAt: Date;
|
14
14
|
deletedAt: Date | null;
|
15
15
|
cxLogId: string;
|
16
|
-
sentimentScore
|
17
|
-
csatScore
|
16
|
+
sentimentScore?: string | null | undefined;
|
17
|
+
csatScore?: string | null | undefined;
|
18
18
|
}, {
|
19
19
|
id: string;
|
20
20
|
createdAt: Date;
|
21
21
|
updatedAt: Date;
|
22
22
|
deletedAt: Date | null;
|
23
23
|
cxLogId: string;
|
24
|
-
sentimentScore
|
25
|
-
csatScore
|
24
|
+
sentimentScore?: string | null | undefined;
|
25
|
+
csatScore?: string | null | undefined;
|
26
26
|
}>;
|
27
27
|
//# sourceMappingURL=schema.d.ts.map
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC"}
|