@kl1/contracts 1.0.18 → 1.0.20
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 +1725 -1047
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1725 -1047
- package/dist/index.mjs.map +1 -1
- package/dist/src/call-log/schema.d.ts +8 -8
- package/dist/src/call-log/validation.d.ts +4 -4
- package/dist/src/channel/index.d.ts +23 -23
- package/dist/src/channel/schema.d.ts +11 -8
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +3 -3
- package/dist/src/chat/index.d.ts +4272 -481
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +348 -56
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +5330 -73
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/company/index.d.ts +1803 -0
- package/dist/src/company/index.d.ts.map +1 -0
- package/dist/src/company/schema.d.ts +5 -5
- package/dist/src/company/validation.d.ts +852 -0
- package/dist/src/company/validation.d.ts.map +1 -0
- package/dist/src/contact/index.d.ts +21 -21
- package/dist/src/contact/schema.d.ts +3 -3
- package/dist/src/contact/validation.d.ts +21 -21
- package/dist/src/contract.d.ts +12941 -5216
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +129 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +95 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +1852 -0
- package/dist/src/dashboard/index.d.ts.map +1 -0
- package/dist/src/dashboard/schema.d.ts +885 -0
- package/dist/src/dashboard/schema.d.ts.map +1 -0
- package/dist/src/dashboard/validation.d.ts +19 -0
- package/dist/src/dashboard/validation.d.ts.map +1 -0
- package/dist/src/mail/mail-contract.d.ts +12 -12
- package/dist/src/mail/room-contract.d.ts +12 -12
- package/dist/src/mail/schemas/room-validation.schema.d.ts +4 -4
- package/dist/src/mail/schemas/room.schema.d.ts +2 -2
- package/dist/src/messenger/index.d.ts +255 -73
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +4 -4
- package/dist/src/telephony-live-queue-call/schema.d.ts +2 -2
- package/dist/src/telephony-queue-call-count/schema.d.ts +2 -2
- package/dist/src/ticket/index.d.ts +59 -62
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/validation.d.ts +59 -62
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/user/index.d.ts.map +1 -1
- package/package.json +4 -10
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -90,16 +90,16 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
|
|
90
90
|
}>;
|
91
91
|
assignee: z.ZodObject<{
|
92
92
|
isRequired: z.ZodBoolean;
|
93
|
-
attributeId: z.ZodString
|
94
|
-
value: z.ZodString
|
93
|
+
attributeId: z.ZodOptional<z.ZodString>;
|
94
|
+
value: z.ZodOptional<z.ZodString>;
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
96
|
-
value: string;
|
97
96
|
isRequired: boolean;
|
98
|
-
attributeId
|
97
|
+
attributeId?: string | undefined;
|
98
|
+
value?: string | undefined;
|
99
99
|
}, {
|
100
|
-
value: string;
|
101
100
|
isRequired: boolean;
|
102
|
-
attributeId
|
101
|
+
attributeId?: string | undefined;
|
102
|
+
value?: string | undefined;
|
103
103
|
}>;
|
104
104
|
channel: z.ZodObject<{
|
105
105
|
isRequired: z.ZodBoolean;
|
@@ -159,13 +159,13 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
|
|
159
159
|
attributeId: string;
|
160
160
|
isDefaultAttribute: boolean;
|
161
161
|
}>, "many">;
|
162
|
-
reasonToAssign: z.ZodObject<{
|
162
|
+
reasonToAssign: z.ZodOptional<z.ZodObject<{
|
163
163
|
value: z.ZodString;
|
164
164
|
}, "strip", z.ZodTypeAny, {
|
165
165
|
value: string;
|
166
166
|
}, {
|
167
167
|
value: string;
|
168
|
-
}
|
168
|
+
}>>;
|
169
169
|
}, "strip", z.ZodTypeAny, {
|
170
170
|
type: {
|
171
171
|
value: string;
|
@@ -220,13 +220,13 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
|
|
220
220
|
attributeId: string;
|
221
221
|
};
|
222
222
|
assignee: {
|
223
|
-
value: string;
|
224
223
|
isRequired: boolean;
|
225
|
-
attributeId
|
224
|
+
attributeId?: string | undefined;
|
225
|
+
value?: string | undefined;
|
226
226
|
};
|
227
|
-
reasonToAssign
|
227
|
+
reasonToAssign?: {
|
228
228
|
value: string;
|
229
|
-
};
|
229
|
+
} | undefined;
|
230
230
|
}, {
|
231
231
|
type: {
|
232
232
|
value: string;
|
@@ -281,16 +281,16 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
|
|
281
281
|
attributeId: string;
|
282
282
|
};
|
283
283
|
assignee: {
|
284
|
-
value: string;
|
285
284
|
isRequired: boolean;
|
286
|
-
attributeId
|
285
|
+
attributeId?: string | undefined;
|
286
|
+
value?: string | undefined;
|
287
287
|
};
|
288
|
-
reasonToAssign
|
288
|
+
reasonToAssign?: {
|
289
289
|
value: string;
|
290
|
-
};
|
290
|
+
} | undefined;
|
291
291
|
}>;
|
292
292
|
export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
293
|
-
|
293
|
+
title: z.ZodObject<{
|
294
294
|
isRequired: z.ZodBoolean;
|
295
295
|
attributeId: z.ZodString;
|
296
296
|
value: z.ZodString;
|
@@ -303,7 +303,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
303
303
|
isRequired: boolean;
|
304
304
|
attributeId: string;
|
305
305
|
}>;
|
306
|
-
|
306
|
+
description: z.ZodObject<{
|
307
307
|
isRequired: z.ZodBoolean;
|
308
308
|
attributeId: z.ZodString;
|
309
309
|
value: z.ZodString;
|
@@ -316,7 +316,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
316
316
|
isRequired: boolean;
|
317
317
|
attributeId: string;
|
318
318
|
}>;
|
319
|
-
|
319
|
+
status: z.ZodObject<{
|
320
320
|
isRequired: z.ZodBoolean;
|
321
321
|
attributeId: z.ZodString;
|
322
322
|
value: z.ZodString;
|
@@ -329,7 +329,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
329
329
|
isRequired: boolean;
|
330
330
|
attributeId: string;
|
331
331
|
}>;
|
332
|
-
|
332
|
+
type: z.ZodObject<{
|
333
333
|
isRequired: z.ZodBoolean;
|
334
334
|
attributeId: z.ZodString;
|
335
335
|
value: z.ZodString;
|
@@ -342,7 +342,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
342
342
|
isRequired: boolean;
|
343
343
|
attributeId: string;
|
344
344
|
}>;
|
345
|
-
|
345
|
+
priority: z.ZodObject<{
|
346
346
|
isRequired: z.ZodBoolean;
|
347
347
|
attributeId: z.ZodString;
|
348
348
|
value: z.ZodString;
|
@@ -355,7 +355,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
355
355
|
isRequired: boolean;
|
356
356
|
attributeId: string;
|
357
357
|
}>;
|
358
|
-
|
358
|
+
contact: z.ZodObject<{
|
359
359
|
isRequired: z.ZodBoolean;
|
360
360
|
attributeId: z.ZodString;
|
361
361
|
value: z.ZodString;
|
@@ -368,20 +368,20 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
368
368
|
isRequired: boolean;
|
369
369
|
attributeId: string;
|
370
370
|
}>;
|
371
|
-
|
371
|
+
assignee: z.ZodObject<{
|
372
372
|
isRequired: z.ZodBoolean;
|
373
|
-
attributeId: z.ZodString
|
374
|
-
value: z.
|
373
|
+
attributeId: z.ZodOptional<z.ZodString>;
|
374
|
+
value: z.ZodOptional<z.ZodString>;
|
375
375
|
}, "strip", z.ZodTypeAny, {
|
376
|
-
value: string[];
|
377
376
|
isRequired: boolean;
|
378
|
-
attributeId
|
377
|
+
attributeId?: string | undefined;
|
378
|
+
value?: string | undefined;
|
379
379
|
}, {
|
380
|
-
value: string[];
|
381
380
|
isRequired: boolean;
|
382
|
-
attributeId
|
381
|
+
attributeId?: string | undefined;
|
382
|
+
value?: string | undefined;
|
383
383
|
}>;
|
384
|
-
|
384
|
+
channel: z.ZodObject<{
|
385
385
|
isRequired: z.ZodBoolean;
|
386
386
|
attributeId: z.ZodString;
|
387
387
|
value: z.ZodString;
|
@@ -394,26 +394,20 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
394
394
|
isRequired: boolean;
|
395
395
|
attributeId: string;
|
396
396
|
}>;
|
397
|
-
|
397
|
+
tags: z.ZodObject<{
|
398
398
|
isRequired: z.ZodBoolean;
|
399
399
|
attributeId: z.ZodString;
|
400
|
-
value: z.
|
401
|
-
type: z.ZodString;
|
402
|
-
isDefaultAttribute: z.ZodBoolean;
|
400
|
+
value: z.ZodArray<z.ZodString, "many">;
|
403
401
|
}, "strip", z.ZodTypeAny, {
|
404
|
-
|
405
|
-
value: (string | string[]) & (string | string[] | undefined);
|
402
|
+
value: string[];
|
406
403
|
isRequired: boolean;
|
407
404
|
attributeId: string;
|
408
|
-
isDefaultAttribute: boolean;
|
409
405
|
}, {
|
410
|
-
|
411
|
-
value: (string | string[]) & (string | string[] | undefined);
|
406
|
+
value: string[];
|
412
407
|
isRequired: boolean;
|
413
408
|
attributeId: string;
|
414
|
-
|
415
|
-
|
416
|
-
tags: z.ZodObject<{
|
409
|
+
}>;
|
410
|
+
categories: z.ZodObject<{
|
417
411
|
isRequired: z.ZodBoolean;
|
418
412
|
attributeId: z.ZodString;
|
419
413
|
value: z.ZodArray<z.ZodString, "many">;
|
@@ -426,34 +420,38 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
426
420
|
isRequired: boolean;
|
427
421
|
attributeId: string;
|
428
422
|
}>;
|
429
|
-
|
423
|
+
customFields: z.ZodArray<z.ZodObject<{
|
430
424
|
isRequired: z.ZodBoolean;
|
431
425
|
attributeId: z.ZodString;
|
432
|
-
value: z.ZodString
|
426
|
+
value: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
427
|
+
type: z.ZodString;
|
428
|
+
isDefaultAttribute: z.ZodBoolean;
|
433
429
|
}, "strip", z.ZodTypeAny, {
|
434
|
-
|
430
|
+
type: string;
|
431
|
+
value: (string | string[]) & (string | string[] | undefined);
|
435
432
|
isRequired: boolean;
|
436
433
|
attributeId: string;
|
434
|
+
isDefaultAttribute: boolean;
|
437
435
|
}, {
|
438
|
-
|
436
|
+
type: string;
|
437
|
+
value: (string | string[]) & (string | string[] | undefined);
|
439
438
|
isRequired: boolean;
|
440
439
|
attributeId: string;
|
441
|
-
|
442
|
-
|
440
|
+
isDefaultAttribute: boolean;
|
441
|
+
}>, "many">;
|
442
|
+
reasonToAssign: z.ZodOptional<z.ZodObject<{
|
443
443
|
value: z.ZodString;
|
444
444
|
}, "strip", z.ZodTypeAny, {
|
445
445
|
value: string;
|
446
446
|
}, {
|
447
447
|
value: string;
|
448
|
-
}
|
449
|
-
id: z.ZodString;
|
448
|
+
}>>;
|
450
449
|
}, "strip", z.ZodTypeAny, {
|
451
450
|
type: {
|
452
451
|
value: string;
|
453
452
|
isRequired: boolean;
|
454
453
|
attributeId: string;
|
455
454
|
};
|
456
|
-
id: string;
|
457
455
|
channel: {
|
458
456
|
value: string;
|
459
457
|
isRequired: boolean;
|
@@ -502,20 +500,19 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
502
500
|
attributeId: string;
|
503
501
|
};
|
504
502
|
assignee: {
|
505
|
-
value: string;
|
506
503
|
isRequired: boolean;
|
507
|
-
attributeId
|
504
|
+
attributeId?: string | undefined;
|
505
|
+
value?: string | undefined;
|
508
506
|
};
|
509
|
-
reasonToAssign
|
507
|
+
reasonToAssign?: {
|
510
508
|
value: string;
|
511
|
-
};
|
509
|
+
} | undefined;
|
512
510
|
}, {
|
513
511
|
type: {
|
514
512
|
value: string;
|
515
513
|
isRequired: boolean;
|
516
514
|
attributeId: string;
|
517
515
|
};
|
518
|
-
id: string;
|
519
516
|
channel: {
|
520
517
|
value: string;
|
521
518
|
isRequired: boolean;
|
@@ -564,13 +561,13 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
564
561
|
attributeId: string;
|
565
562
|
};
|
566
563
|
assignee: {
|
567
|
-
value: string;
|
568
564
|
isRequired: boolean;
|
569
|
-
attributeId
|
565
|
+
attributeId?: string | undefined;
|
566
|
+
value?: string | undefined;
|
570
567
|
};
|
571
|
-
reasonToAssign
|
568
|
+
reasonToAssign?: {
|
572
569
|
value: string;
|
573
|
-
};
|
570
|
+
} | undefined;
|
574
571
|
}>;
|
575
572
|
export declare const TicketAttachmentRecordSchema: z.ZodObject<{
|
576
573
|
bucketName: z.ZodString;
|
@@ -634,7 +631,7 @@ export declare const CreateTicketAttachmentRecordsSchema: z.ZodObject<{
|
|
634
631
|
fileSize: number;
|
635
632
|
}[];
|
636
633
|
}>;
|
637
|
-
export declare const TicketParamsSchema: z.
|
634
|
+
export declare const TicketParamsSchema: z.ZodObject<{
|
638
635
|
page: z.ZodDefault<z.ZodNumber>;
|
639
636
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
640
637
|
}, "strip", z.ZodTypeAny, {
|
@@ -643,7 +640,7 @@ export declare const TicketParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
643
640
|
}, {
|
644
641
|
page?: number | undefined;
|
645
642
|
pageSize?: number | undefined;
|
646
|
-
}
|
643
|
+
}>;
|
647
644
|
export declare const CustomFieldQuery: z.ZodObject<{
|
648
645
|
attributeId: z.ZodString;
|
649
646
|
type: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/ticket/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAMH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/ticket/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAMH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBvC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+B,CAAC;AAEzE,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;EAMvC,CAAC;AAEH,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI9C,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAI3B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBlC,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/user/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGlE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/user/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGlE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyFxB,CAAC"}
|
package/package.json
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kl1/contracts",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.20",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/src/index.d.ts",
|
7
7
|
"module": "dist/index.mjs",
|
8
|
-
"files": [
|
9
|
-
"dist"
|
10
|
-
],
|
8
|
+
"files": ["dist"],
|
11
9
|
"keywords": [],
|
12
10
|
"author": "",
|
13
11
|
"license": "ISC",
|
@@ -21,16 +19,12 @@
|
|
21
19
|
},
|
22
20
|
"watch": {
|
23
21
|
"build": {
|
24
|
-
"patterns": [
|
25
|
-
"src"
|
26
|
-
],
|
22
|
+
"patterns": ["src"],
|
27
23
|
"extensions": "ts",
|
28
24
|
"quite": true
|
29
25
|
},
|
30
26
|
"types": {
|
31
|
-
"patterns": [
|
32
|
-
"src"
|
33
|
-
],
|
27
|
+
"patterns": ["src"],
|
34
28
|
"extensions": "ts",
|
35
29
|
"quite": true
|
36
30
|
}
|
@@ -1,30 +0,0 @@
|
|
1
|
-
import z from 'zod';
|
2
|
-
export declare const PlatformContactSchema: z.ZodObject<{
|
3
|
-
id: z.ZodString;
|
4
|
-
createdAt: z.ZodDate;
|
5
|
-
updatedAt: z.ZodDate;
|
6
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
7
|
-
contactId: z.ZodString;
|
8
|
-
channelId: z.ZodString;
|
9
|
-
config: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
10
|
-
type: z.ZodString;
|
11
|
-
}, "strip", z.ZodTypeAny, {
|
12
|
-
type: string;
|
13
|
-
id: string;
|
14
|
-
createdAt: Date;
|
15
|
-
updatedAt: Date;
|
16
|
-
deletedAt: Date | null;
|
17
|
-
channelId: string;
|
18
|
-
contactId: string;
|
19
|
-
config: {};
|
20
|
-
}, {
|
21
|
-
type: string;
|
22
|
-
id: string;
|
23
|
-
createdAt: Date;
|
24
|
-
updatedAt: Date;
|
25
|
-
deletedAt: Date | null;
|
26
|
-
channelId: string;
|
27
|
-
contactId: string;
|
28
|
-
config: {};
|
29
|
-
}>;
|
30
|
-
//# sourceMappingURL=schema.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/platform-contact/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKhC,CAAC"}
|