@kl1/contracts 1.1.26-uat → 1.1.26
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 +2130 -1984
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2127 -1984
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +820 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +180 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +210 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +2424 -102
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +413 -18
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +448 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +3 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +3 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +167810 -135163
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +111 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +167 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +294 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +294 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +22910 -2257
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +4587 -271
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +17436 -1099
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +4 -4
- package/dist/src/mail/schemas/message.schema.d.ts +756 -40
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +5710 -344
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5817 -426
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +294 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/call-report.schema.d.ts +62 -62
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +1 -622
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +294 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +294 -0
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +7305 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -0
- package/dist/src/workflow-rule/schema.d.ts +27 -0
- package/dist/src/workflow-rule/schema.d.ts.map +1 -0
- package/dist/src/wrap-up-form/index.d.ts +744 -3
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +58 -0
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +3 -3
- package/package.json +1 -1
@@ -127,6 +127,7 @@ export declare const cxLogContract: {
|
|
127
127
|
firstResponseDate: z.ZodString;
|
128
128
|
resolutionTime: z.ZodNullable<z.ZodString>;
|
129
129
|
resolutionDate: z.ZodString;
|
130
|
+
wrapUpDuration: z.ZodString;
|
130
131
|
slaMeet: z.ZodNullable<z.ZodString>;
|
131
132
|
evaluateForm: z.ZodNullable<z.ZodObject<{
|
132
133
|
id: z.ZodString;
|
@@ -282,6 +283,40 @@ export declare const cxLogContract: {
|
|
282
283
|
}>, "many">;
|
283
284
|
callFrom: z.ZodNullable<z.ZodString>;
|
284
285
|
callTo: z.ZodNullable<z.ZodString>;
|
286
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
287
|
+
id: z.ZodString;
|
288
|
+
createdAt: z.ZodDate;
|
289
|
+
updatedAt: z.ZodDate;
|
290
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
291
|
+
textValue: z.ZodNullable<z.ZodString>;
|
292
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
293
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
294
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
295
|
+
entityId: z.ZodString;
|
296
|
+
attributeId: z.ZodString;
|
297
|
+
}, "strip", z.ZodTypeAny, {
|
298
|
+
id: string;
|
299
|
+
createdAt: Date;
|
300
|
+
updatedAt: Date;
|
301
|
+
deletedAt: Date | null;
|
302
|
+
entityId: string;
|
303
|
+
attributeId: string;
|
304
|
+
textValue: string | null;
|
305
|
+
booleanValue: boolean | null;
|
306
|
+
numberValue: number | null;
|
307
|
+
dateValue: Date | null;
|
308
|
+
}, {
|
309
|
+
id: string;
|
310
|
+
createdAt: Date;
|
311
|
+
updatedAt: Date;
|
312
|
+
deletedAt: Date | null;
|
313
|
+
entityId: string;
|
314
|
+
attributeId: string;
|
315
|
+
textValue: string | null;
|
316
|
+
booleanValue: boolean | null;
|
317
|
+
numberValue: number | null;
|
318
|
+
dateValue: Date | null;
|
319
|
+
}>, "many">>>;
|
285
320
|
}, "strip", z.ZodTypeAny, {
|
286
321
|
type: string;
|
287
322
|
id: string;
|
@@ -321,6 +356,18 @@ export declare const cxLogContract: {
|
|
321
356
|
callFrom: string | null;
|
322
357
|
callTo: string | null;
|
323
358
|
note: string | null;
|
359
|
+
customFields?: {
|
360
|
+
id: string;
|
361
|
+
createdAt: Date;
|
362
|
+
updatedAt: Date;
|
363
|
+
deletedAt: Date | null;
|
364
|
+
entityId: string;
|
365
|
+
attributeId: string;
|
366
|
+
textValue: string | null;
|
367
|
+
booleanValue: boolean | null;
|
368
|
+
numberValue: number | null;
|
369
|
+
dateValue: Date | null;
|
370
|
+
}[] | null | undefined;
|
324
371
|
}, {
|
325
372
|
type: string;
|
326
373
|
id: string;
|
@@ -360,6 +407,18 @@ export declare const cxLogContract: {
|
|
360
407
|
callFrom: string | null;
|
361
408
|
callTo: string | null;
|
362
409
|
note: string | null;
|
410
|
+
customFields?: {
|
411
|
+
id: string;
|
412
|
+
createdAt: Date;
|
413
|
+
updatedAt: Date;
|
414
|
+
deletedAt: Date | null;
|
415
|
+
entityId: string;
|
416
|
+
attributeId: string;
|
417
|
+
textValue: string | null;
|
418
|
+
booleanValue: boolean | null;
|
419
|
+
numberValue: number | null;
|
420
|
+
dateValue: Date | null;
|
421
|
+
}[] | null | undefined;
|
363
422
|
}>>;
|
364
423
|
room: z.ZodNullable<z.ZodObject<{
|
365
424
|
id: z.ZodString;
|
@@ -5818,12 +5877,25 @@ export declare const cxLogContract: {
|
|
5818
5877
|
callFrom: string | null;
|
5819
5878
|
callTo: string | null;
|
5820
5879
|
note: string | null;
|
5880
|
+
customFields?: {
|
5881
|
+
id: string;
|
5882
|
+
createdAt: Date;
|
5883
|
+
updatedAt: Date;
|
5884
|
+
deletedAt: Date | null;
|
5885
|
+
entityId: string;
|
5886
|
+
attributeId: string;
|
5887
|
+
textValue: string | null;
|
5888
|
+
booleanValue: boolean | null;
|
5889
|
+
numberValue: number | null;
|
5890
|
+
dateValue: Date | null;
|
5891
|
+
}[] | null | undefined;
|
5821
5892
|
} | null;
|
5822
5893
|
customerPhone: string | null;
|
5823
5894
|
channelType: string | null;
|
5824
5895
|
firstResponseDate: string;
|
5825
5896
|
resolutionTime: string | null;
|
5826
5897
|
resolutionDate: string;
|
5898
|
+
wrapUpDuration: string;
|
5827
5899
|
slaMeet: string | null;
|
5828
5900
|
evaluateForm: {
|
5829
5901
|
id: string;
|
@@ -6566,12 +6638,25 @@ export declare const cxLogContract: {
|
|
6566
6638
|
callFrom: string | null;
|
6567
6639
|
callTo: string | null;
|
6568
6640
|
note: string | null;
|
6641
|
+
customFields?: {
|
6642
|
+
id: string;
|
6643
|
+
createdAt: Date;
|
6644
|
+
updatedAt: Date;
|
6645
|
+
deletedAt: Date | null;
|
6646
|
+
entityId: string;
|
6647
|
+
attributeId: string;
|
6648
|
+
textValue: string | null;
|
6649
|
+
booleanValue: boolean | null;
|
6650
|
+
numberValue: number | null;
|
6651
|
+
dateValue: Date | null;
|
6652
|
+
}[] | null | undefined;
|
6569
6653
|
} | null;
|
6570
6654
|
customerPhone: string | null;
|
6571
6655
|
channelType: string | null;
|
6572
6656
|
firstResponseDate: string;
|
6573
6657
|
resolutionTime: string | null;
|
6574
6658
|
resolutionDate: string;
|
6659
|
+
wrapUpDuration: string;
|
6575
6660
|
slaMeet: string | null;
|
6576
6661
|
evaluateForm: {
|
6577
6662
|
id: string;
|
@@ -7320,12 +7405,25 @@ export declare const cxLogContract: {
|
|
7320
7405
|
callFrom: string | null;
|
7321
7406
|
callTo: string | null;
|
7322
7407
|
note: string | null;
|
7408
|
+
customFields?: {
|
7409
|
+
id: string;
|
7410
|
+
createdAt: Date;
|
7411
|
+
updatedAt: Date;
|
7412
|
+
deletedAt: Date | null;
|
7413
|
+
entityId: string;
|
7414
|
+
attributeId: string;
|
7415
|
+
textValue: string | null;
|
7416
|
+
booleanValue: boolean | null;
|
7417
|
+
numberValue: number | null;
|
7418
|
+
dateValue: Date | null;
|
7419
|
+
}[] | null | undefined;
|
7323
7420
|
} | null;
|
7324
7421
|
customerPhone: string | null;
|
7325
7422
|
channelType: string | null;
|
7326
7423
|
firstResponseDate: string;
|
7327
7424
|
resolutionTime: string | null;
|
7328
7425
|
resolutionDate: string;
|
7426
|
+
wrapUpDuration: string;
|
7329
7427
|
slaMeet: string | null;
|
7330
7428
|
evaluateForm: {
|
7331
7429
|
id: string;
|
@@ -8074,12 +8172,25 @@ export declare const cxLogContract: {
|
|
8074
8172
|
callFrom: string | null;
|
8075
8173
|
callTo: string | null;
|
8076
8174
|
note: string | null;
|
8175
|
+
customFields?: {
|
8176
|
+
id: string;
|
8177
|
+
createdAt: Date;
|
8178
|
+
updatedAt: Date;
|
8179
|
+
deletedAt: Date | null;
|
8180
|
+
entityId: string;
|
8181
|
+
attributeId: string;
|
8182
|
+
textValue: string | null;
|
8183
|
+
booleanValue: boolean | null;
|
8184
|
+
numberValue: number | null;
|
8185
|
+
dateValue: Date | null;
|
8186
|
+
}[] | null | undefined;
|
8077
8187
|
} | null;
|
8078
8188
|
customerPhone: string | null;
|
8079
8189
|
channelType: string | null;
|
8080
8190
|
firstResponseDate: string;
|
8081
8191
|
resolutionTime: string | null;
|
8082
8192
|
resolutionDate: string;
|
8193
|
+
wrapUpDuration: string;
|
8083
8194
|
slaMeet: string | null;
|
8084
8195
|
evaluateForm: {
|
8085
8196
|
id: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cx-log/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE9E,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cx-log/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE9E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BxB,CAAC"}
|
@@ -144,6 +144,40 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
144
144
|
}>, "many">;
|
145
145
|
callFrom: z.ZodNullable<z.ZodString>;
|
146
146
|
callTo: z.ZodNullable<z.ZodString>;
|
147
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
148
|
+
id: z.ZodString;
|
149
|
+
createdAt: z.ZodDate;
|
150
|
+
updatedAt: z.ZodDate;
|
151
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
152
|
+
textValue: z.ZodNullable<z.ZodString>;
|
153
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
154
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
155
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
156
|
+
entityId: z.ZodString;
|
157
|
+
attributeId: z.ZodString;
|
158
|
+
}, "strip", z.ZodTypeAny, {
|
159
|
+
id: string;
|
160
|
+
createdAt: Date;
|
161
|
+
updatedAt: Date;
|
162
|
+
deletedAt: Date | null;
|
163
|
+
entityId: string;
|
164
|
+
attributeId: string;
|
165
|
+
textValue: string | null;
|
166
|
+
booleanValue: boolean | null;
|
167
|
+
numberValue: number | null;
|
168
|
+
dateValue: Date | null;
|
169
|
+
}, {
|
170
|
+
id: string;
|
171
|
+
createdAt: Date;
|
172
|
+
updatedAt: Date;
|
173
|
+
deletedAt: Date | null;
|
174
|
+
entityId: string;
|
175
|
+
attributeId: string;
|
176
|
+
textValue: string | null;
|
177
|
+
booleanValue: boolean | null;
|
178
|
+
numberValue: number | null;
|
179
|
+
dateValue: Date | null;
|
180
|
+
}>, "many">>>;
|
147
181
|
}, "strip", z.ZodTypeAny, {
|
148
182
|
type: string;
|
149
183
|
id: string;
|
@@ -183,6 +217,18 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
183
217
|
callFrom: string | null;
|
184
218
|
callTo: string | null;
|
185
219
|
note: string | null;
|
220
|
+
customFields?: {
|
221
|
+
id: string;
|
222
|
+
createdAt: Date;
|
223
|
+
updatedAt: Date;
|
224
|
+
deletedAt: Date | null;
|
225
|
+
entityId: string;
|
226
|
+
attributeId: string;
|
227
|
+
textValue: string | null;
|
228
|
+
booleanValue: boolean | null;
|
229
|
+
numberValue: number | null;
|
230
|
+
dateValue: Date | null;
|
231
|
+
}[] | null | undefined;
|
186
232
|
}, {
|
187
233
|
type: string;
|
188
234
|
id: string;
|
@@ -222,6 +268,18 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
222
268
|
callFrom: string | null;
|
223
269
|
callTo: string | null;
|
224
270
|
note: string | null;
|
271
|
+
customFields?: {
|
272
|
+
id: string;
|
273
|
+
createdAt: Date;
|
274
|
+
updatedAt: Date;
|
275
|
+
deletedAt: Date | null;
|
276
|
+
entityId: string;
|
277
|
+
attributeId: string;
|
278
|
+
textValue: string | null;
|
279
|
+
booleanValue: boolean | null;
|
280
|
+
numberValue: number | null;
|
281
|
+
dateValue: Date | null;
|
282
|
+
}[] | null | undefined;
|
225
283
|
}>>;
|
226
284
|
}, "strip", z.ZodTypeAny, {
|
227
285
|
id: string;
|
@@ -278,6 +336,18 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
278
336
|
callFrom: string | null;
|
279
337
|
callTo: string | null;
|
280
338
|
note: string | null;
|
339
|
+
customFields?: {
|
340
|
+
id: string;
|
341
|
+
createdAt: Date;
|
342
|
+
updatedAt: Date;
|
343
|
+
deletedAt: Date | null;
|
344
|
+
entityId: string;
|
345
|
+
attributeId: string;
|
346
|
+
textValue: string | null;
|
347
|
+
booleanValue: boolean | null;
|
348
|
+
numberValue: number | null;
|
349
|
+
dateValue: Date | null;
|
350
|
+
}[] | null | undefined;
|
281
351
|
} | null;
|
282
352
|
}, {
|
283
353
|
id: string;
|
@@ -334,6 +404,18 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
334
404
|
callFrom: string | null;
|
335
405
|
callTo: string | null;
|
336
406
|
note: string | null;
|
407
|
+
customFields?: {
|
408
|
+
id: string;
|
409
|
+
createdAt: Date;
|
410
|
+
updatedAt: Date;
|
411
|
+
deletedAt: Date | null;
|
412
|
+
entityId: string;
|
413
|
+
attributeId: string;
|
414
|
+
textValue: string | null;
|
415
|
+
booleanValue: boolean | null;
|
416
|
+
numberValue: number | null;
|
417
|
+
dateValue: Date | null;
|
418
|
+
}[] | null | undefined;
|
337
419
|
} | null;
|
338
420
|
}>;
|
339
421
|
export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
@@ -354,6 +436,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
354
436
|
firstResponseDate: z.ZodString;
|
355
437
|
resolutionTime: z.ZodNullable<z.ZodString>;
|
356
438
|
resolutionDate: z.ZodString;
|
439
|
+
wrapUpDuration: z.ZodString;
|
357
440
|
slaMeet: z.ZodNullable<z.ZodString>;
|
358
441
|
evaluateForm: z.ZodNullable<z.ZodObject<{
|
359
442
|
id: z.ZodString;
|
@@ -509,6 +592,40 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
509
592
|
}>, "many">;
|
510
593
|
callFrom: z.ZodNullable<z.ZodString>;
|
511
594
|
callTo: z.ZodNullable<z.ZodString>;
|
595
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
596
|
+
id: z.ZodString;
|
597
|
+
createdAt: z.ZodDate;
|
598
|
+
updatedAt: z.ZodDate;
|
599
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
600
|
+
textValue: z.ZodNullable<z.ZodString>;
|
601
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
602
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
603
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
604
|
+
entityId: z.ZodString;
|
605
|
+
attributeId: z.ZodString;
|
606
|
+
}, "strip", z.ZodTypeAny, {
|
607
|
+
id: string;
|
608
|
+
createdAt: Date;
|
609
|
+
updatedAt: Date;
|
610
|
+
deletedAt: Date | null;
|
611
|
+
entityId: string;
|
612
|
+
attributeId: string;
|
613
|
+
textValue: string | null;
|
614
|
+
booleanValue: boolean | null;
|
615
|
+
numberValue: number | null;
|
616
|
+
dateValue: Date | null;
|
617
|
+
}, {
|
618
|
+
id: string;
|
619
|
+
createdAt: Date;
|
620
|
+
updatedAt: Date;
|
621
|
+
deletedAt: Date | null;
|
622
|
+
entityId: string;
|
623
|
+
attributeId: string;
|
624
|
+
textValue: string | null;
|
625
|
+
booleanValue: boolean | null;
|
626
|
+
numberValue: number | null;
|
627
|
+
dateValue: Date | null;
|
628
|
+
}>, "many">>>;
|
512
629
|
}, "strip", z.ZodTypeAny, {
|
513
630
|
type: string;
|
514
631
|
id: string;
|
@@ -548,6 +665,18 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
548
665
|
callFrom: string | null;
|
549
666
|
callTo: string | null;
|
550
667
|
note: string | null;
|
668
|
+
customFields?: {
|
669
|
+
id: string;
|
670
|
+
createdAt: Date;
|
671
|
+
updatedAt: Date;
|
672
|
+
deletedAt: Date | null;
|
673
|
+
entityId: string;
|
674
|
+
attributeId: string;
|
675
|
+
textValue: string | null;
|
676
|
+
booleanValue: boolean | null;
|
677
|
+
numberValue: number | null;
|
678
|
+
dateValue: Date | null;
|
679
|
+
}[] | null | undefined;
|
551
680
|
}, {
|
552
681
|
type: string;
|
553
682
|
id: string;
|
@@ -587,6 +716,18 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
587
716
|
callFrom: string | null;
|
588
717
|
callTo: string | null;
|
589
718
|
note: string | null;
|
719
|
+
customFields?: {
|
720
|
+
id: string;
|
721
|
+
createdAt: Date;
|
722
|
+
updatedAt: Date;
|
723
|
+
deletedAt: Date | null;
|
724
|
+
entityId: string;
|
725
|
+
attributeId: string;
|
726
|
+
textValue: string | null;
|
727
|
+
booleanValue: boolean | null;
|
728
|
+
numberValue: number | null;
|
729
|
+
dateValue: Date | null;
|
730
|
+
}[] | null | undefined;
|
590
731
|
}>>;
|
591
732
|
room: z.ZodNullable<z.ZodObject<{
|
592
733
|
id: z.ZodString;
|
@@ -6045,12 +6186,25 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6045
6186
|
callFrom: string | null;
|
6046
6187
|
callTo: string | null;
|
6047
6188
|
note: string | null;
|
6189
|
+
customFields?: {
|
6190
|
+
id: string;
|
6191
|
+
createdAt: Date;
|
6192
|
+
updatedAt: Date;
|
6193
|
+
deletedAt: Date | null;
|
6194
|
+
entityId: string;
|
6195
|
+
attributeId: string;
|
6196
|
+
textValue: string | null;
|
6197
|
+
booleanValue: boolean | null;
|
6198
|
+
numberValue: number | null;
|
6199
|
+
dateValue: Date | null;
|
6200
|
+
}[] | null | undefined;
|
6048
6201
|
} | null;
|
6049
6202
|
customerPhone: string | null;
|
6050
6203
|
channelType: string | null;
|
6051
6204
|
firstResponseDate: string;
|
6052
6205
|
resolutionTime: string | null;
|
6053
6206
|
resolutionDate: string;
|
6207
|
+
wrapUpDuration: string;
|
6054
6208
|
slaMeet: string | null;
|
6055
6209
|
evaluateForm: {
|
6056
6210
|
id: string;
|
@@ -6793,12 +6947,25 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6793
6947
|
callFrom: string | null;
|
6794
6948
|
callTo: string | null;
|
6795
6949
|
note: string | null;
|
6950
|
+
customFields?: {
|
6951
|
+
id: string;
|
6952
|
+
createdAt: Date;
|
6953
|
+
updatedAt: Date;
|
6954
|
+
deletedAt: Date | null;
|
6955
|
+
entityId: string;
|
6956
|
+
attributeId: string;
|
6957
|
+
textValue: string | null;
|
6958
|
+
booleanValue: boolean | null;
|
6959
|
+
numberValue: number | null;
|
6960
|
+
dateValue: Date | null;
|
6961
|
+
}[] | null | undefined;
|
6796
6962
|
} | null;
|
6797
6963
|
customerPhone: string | null;
|
6798
6964
|
channelType: string | null;
|
6799
6965
|
firstResponseDate: string;
|
6800
6966
|
resolutionTime: string | null;
|
6801
6967
|
resolutionDate: string;
|
6968
|
+
wrapUpDuration: string;
|
6802
6969
|
slaMeet: string | null;
|
6803
6970
|
evaluateForm: {
|
6804
6971
|
id: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/cx-log/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAapB,eAAO,MAAM,WAAW
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/cx-log/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAapB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAatB,CAAC;AAGH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+CnC,CAAC"}
|