@kl1/contracts 1.2.1-uat → 1.2.2-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/business-calendar/index.d.ts +0 -21
- package/dist/api-contracts/src/business-calendar/index.d.ts.map +1 -1
- package/dist/api-contracts/src/business-calendar/schema.d.ts +0 -3
- package/dist/api-contracts/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/business-calendar/validation.d.ts +0 -6
- package/dist/api-contracts/src/business-calendar/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +134 -42
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +134 -0
- package/dist/api-contracts/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-cdr/schema.d.ts +10 -0
- package/dist/api-contracts/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/index.js +37 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +37 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -11,7 +11,6 @@ export declare const businessCalendarContract: {
|
|
|
11
11
|
description: z.ZodOptional<z.ZodString>;
|
|
12
12
|
timeZone: z.ZodString;
|
|
13
13
|
isEnabled: z.ZodBoolean;
|
|
14
|
-
channelIds: z.ZodArray<z.ZodString, "many">;
|
|
15
14
|
businessHours: z.ZodArray<z.ZodObject<{
|
|
16
15
|
day: z.ZodString;
|
|
17
16
|
isEnabled: z.ZodBoolean;
|
|
@@ -41,7 +40,6 @@ export declare const businessCalendarContract: {
|
|
|
41
40
|
}, "strip", z.ZodTypeAny, {
|
|
42
41
|
name: string;
|
|
43
42
|
timeZone: string;
|
|
44
|
-
channelIds: string[];
|
|
45
43
|
isEnabled: boolean;
|
|
46
44
|
businessHours: {
|
|
47
45
|
day: string;
|
|
@@ -57,7 +55,6 @@ export declare const businessCalendarContract: {
|
|
|
57
55
|
}, {
|
|
58
56
|
name: string;
|
|
59
57
|
timeZone: string;
|
|
60
|
-
channelIds: string[];
|
|
61
58
|
isEnabled: boolean;
|
|
62
59
|
businessHours: {
|
|
63
60
|
day: string;
|
|
@@ -85,7 +82,6 @@ export declare const businessCalendarContract: {
|
|
|
85
82
|
timeZone: z.ZodString;
|
|
86
83
|
isEnabled: z.ZodBoolean;
|
|
87
84
|
isDefault: z.ZodBoolean;
|
|
88
|
-
channelIds: z.ZodArray<z.ZodString, "many">;
|
|
89
85
|
businessHours: z.ZodArray<z.ZodObject<{
|
|
90
86
|
id: z.ZodString;
|
|
91
87
|
createdAt: z.ZodDate;
|
|
@@ -147,7 +143,6 @@ export declare const businessCalendarContract: {
|
|
|
147
143
|
updatedAt: Date;
|
|
148
144
|
deletedAt: Date | null;
|
|
149
145
|
isDefault: boolean;
|
|
150
|
-
channelIds: string[];
|
|
151
146
|
isEnabled: boolean;
|
|
152
147
|
businessHours: {
|
|
153
148
|
id: string;
|
|
@@ -177,7 +172,6 @@ export declare const businessCalendarContract: {
|
|
|
177
172
|
updatedAt: Date;
|
|
178
173
|
deletedAt: Date | null;
|
|
179
174
|
isDefault: boolean;
|
|
180
|
-
channelIds: string[];
|
|
181
175
|
isEnabled: boolean;
|
|
182
176
|
businessHours: {
|
|
183
177
|
id: string;
|
|
@@ -210,7 +204,6 @@ export declare const businessCalendarContract: {
|
|
|
210
204
|
updatedAt: Date;
|
|
211
205
|
deletedAt: Date | null;
|
|
212
206
|
isDefault: boolean;
|
|
213
|
-
channelIds: string[];
|
|
214
207
|
isEnabled: boolean;
|
|
215
208
|
businessHours: {
|
|
216
209
|
id: string;
|
|
@@ -243,7 +236,6 @@ export declare const businessCalendarContract: {
|
|
|
243
236
|
updatedAt: Date;
|
|
244
237
|
deletedAt: Date | null;
|
|
245
238
|
isDefault: boolean;
|
|
246
|
-
channelIds: string[];
|
|
247
239
|
isEnabled: boolean;
|
|
248
240
|
businessHours: {
|
|
249
241
|
id: string;
|
|
@@ -295,7 +287,6 @@ export declare const businessCalendarContract: {
|
|
|
295
287
|
timeZone: z.ZodString;
|
|
296
288
|
isEnabled: z.ZodBoolean;
|
|
297
289
|
isDefault: z.ZodBoolean;
|
|
298
|
-
channelIds: z.ZodArray<z.ZodString, "many">;
|
|
299
290
|
businessHours: z.ZodArray<z.ZodObject<{
|
|
300
291
|
id: z.ZodString;
|
|
301
292
|
createdAt: z.ZodDate;
|
|
@@ -357,7 +348,6 @@ export declare const businessCalendarContract: {
|
|
|
357
348
|
updatedAt: Date;
|
|
358
349
|
deletedAt: Date | null;
|
|
359
350
|
isDefault: boolean;
|
|
360
|
-
channelIds: string[];
|
|
361
351
|
isEnabled: boolean;
|
|
362
352
|
businessHours: {
|
|
363
353
|
id: string;
|
|
@@ -387,7 +377,6 @@ export declare const businessCalendarContract: {
|
|
|
387
377
|
updatedAt: Date;
|
|
388
378
|
deletedAt: Date | null;
|
|
389
379
|
isDefault: boolean;
|
|
390
|
-
channelIds: string[];
|
|
391
380
|
isEnabled: boolean;
|
|
392
381
|
businessHours: {
|
|
393
382
|
id: string;
|
|
@@ -420,7 +409,6 @@ export declare const businessCalendarContract: {
|
|
|
420
409
|
updatedAt: Date;
|
|
421
410
|
deletedAt: Date | null;
|
|
422
411
|
isDefault: boolean;
|
|
423
|
-
channelIds: string[];
|
|
424
412
|
isEnabled: boolean;
|
|
425
413
|
businessHours: {
|
|
426
414
|
id: string;
|
|
@@ -453,7 +441,6 @@ export declare const businessCalendarContract: {
|
|
|
453
441
|
updatedAt: Date;
|
|
454
442
|
deletedAt: Date | null;
|
|
455
443
|
isDefault: boolean;
|
|
456
|
-
channelIds: string[];
|
|
457
444
|
isEnabled: boolean;
|
|
458
445
|
businessHours: {
|
|
459
446
|
id: string;
|
|
@@ -497,7 +484,6 @@ export declare const businessCalendarContract: {
|
|
|
497
484
|
description: z.ZodOptional<z.ZodString>;
|
|
498
485
|
timeZone: z.ZodString;
|
|
499
486
|
isEnabled: z.ZodBoolean;
|
|
500
|
-
channelIds: z.ZodArray<z.ZodString, "many">;
|
|
501
487
|
businessHours: z.ZodArray<z.ZodObject<{
|
|
502
488
|
id: z.ZodString;
|
|
503
489
|
day: z.ZodString;
|
|
@@ -534,7 +520,6 @@ export declare const businessCalendarContract: {
|
|
|
534
520
|
id: string;
|
|
535
521
|
name: string;
|
|
536
522
|
timeZone: string;
|
|
537
|
-
channelIds: string[];
|
|
538
523
|
isEnabled: boolean;
|
|
539
524
|
businessHours: {
|
|
540
525
|
id: string;
|
|
@@ -553,7 +538,6 @@ export declare const businessCalendarContract: {
|
|
|
553
538
|
id: string;
|
|
554
539
|
name: string;
|
|
555
540
|
timeZone: string;
|
|
556
|
-
channelIds: string[];
|
|
557
541
|
isEnabled: boolean;
|
|
558
542
|
businessHours: {
|
|
559
543
|
id: string;
|
|
@@ -590,7 +574,6 @@ export declare const businessCalendarContract: {
|
|
|
590
574
|
timeZone: z.ZodString;
|
|
591
575
|
isEnabled: z.ZodBoolean;
|
|
592
576
|
isDefault: z.ZodBoolean;
|
|
593
|
-
channelIds: z.ZodArray<z.ZodString, "many">;
|
|
594
577
|
businessHours: z.ZodArray<z.ZodObject<{
|
|
595
578
|
id: z.ZodString;
|
|
596
579
|
createdAt: z.ZodDate;
|
|
@@ -652,7 +635,6 @@ export declare const businessCalendarContract: {
|
|
|
652
635
|
updatedAt: Date;
|
|
653
636
|
deletedAt: Date | null;
|
|
654
637
|
isDefault: boolean;
|
|
655
|
-
channelIds: string[];
|
|
656
638
|
isEnabled: boolean;
|
|
657
639
|
businessHours: {
|
|
658
640
|
id: string;
|
|
@@ -682,7 +664,6 @@ export declare const businessCalendarContract: {
|
|
|
682
664
|
updatedAt: Date;
|
|
683
665
|
deletedAt: Date | null;
|
|
684
666
|
isDefault: boolean;
|
|
685
|
-
channelIds: string[];
|
|
686
667
|
isEnabled: boolean;
|
|
687
668
|
businessHours: {
|
|
688
669
|
id: string;
|
|
@@ -715,7 +696,6 @@ export declare const businessCalendarContract: {
|
|
|
715
696
|
updatedAt: Date;
|
|
716
697
|
deletedAt: Date | null;
|
|
717
698
|
isDefault: boolean;
|
|
718
|
-
channelIds: string[];
|
|
719
699
|
isEnabled: boolean;
|
|
720
700
|
businessHours: {
|
|
721
701
|
id: string;
|
|
@@ -748,7 +728,6 @@ export declare const businessCalendarContract: {
|
|
|
748
728
|
updatedAt: Date;
|
|
749
729
|
deletedAt: Date | null;
|
|
750
730
|
isDefault: boolean;
|
|
751
|
-
channelIds: string[];
|
|
752
731
|
isEnabled: boolean;
|
|
753
732
|
businessHours: {
|
|
754
733
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/business-calendar/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC7B,MAAM,cAAc,CAAC;AAKtB,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAClD,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC1E,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,4BAA4B,CACpC,CAAC;AACF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/business-calendar/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC7B,MAAM,cAAc,CAAC;AAKtB,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAClD,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC1E,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,4BAA4B,CACpC,CAAC;AACF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4CnC,CAAC"}
|
|
@@ -62,7 +62,6 @@ export declare const BusinessCalendarSchema: z.ZodObject<{
|
|
|
62
62
|
timeZone: z.ZodString;
|
|
63
63
|
isEnabled: z.ZodBoolean;
|
|
64
64
|
isDefault: z.ZodBoolean;
|
|
65
|
-
channelIds: z.ZodArray<z.ZodString, "many">;
|
|
66
65
|
businessHours: z.ZodArray<z.ZodObject<{
|
|
67
66
|
id: z.ZodString;
|
|
68
67
|
createdAt: z.ZodDate;
|
|
@@ -124,7 +123,6 @@ export declare const BusinessCalendarSchema: z.ZodObject<{
|
|
|
124
123
|
updatedAt: Date;
|
|
125
124
|
deletedAt: Date | null;
|
|
126
125
|
isDefault: boolean;
|
|
127
|
-
channelIds: string[];
|
|
128
126
|
isEnabled: boolean;
|
|
129
127
|
businessHours: {
|
|
130
128
|
id: string;
|
|
@@ -154,7 +152,6 @@ export declare const BusinessCalendarSchema: z.ZodObject<{
|
|
|
154
152
|
updatedAt: Date;
|
|
155
153
|
deletedAt: Date | null;
|
|
156
154
|
isDefault: boolean;
|
|
157
|
-
channelIds: string[];
|
|
158
155
|
isEnabled: boolean;
|
|
159
156
|
businessHours: {
|
|
160
157
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/business-calendar/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;EAI7B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKxB,CAAC;AAEH,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/business-calendar/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;EAI7B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKxB,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQjC,CAAC"}
|
|
@@ -62,7 +62,6 @@ export declare const CreateBusinessCalendarSchema: z.ZodObject<{
|
|
|
62
62
|
description: z.ZodOptional<z.ZodString>;
|
|
63
63
|
timeZone: z.ZodString;
|
|
64
64
|
isEnabled: z.ZodBoolean;
|
|
65
|
-
channelIds: z.ZodArray<z.ZodString, "many">;
|
|
66
65
|
businessHours: z.ZodArray<z.ZodObject<{
|
|
67
66
|
day: z.ZodString;
|
|
68
67
|
isEnabled: z.ZodBoolean;
|
|
@@ -92,7 +91,6 @@ export declare const CreateBusinessCalendarSchema: z.ZodObject<{
|
|
|
92
91
|
}, "strip", z.ZodTypeAny, {
|
|
93
92
|
name: string;
|
|
94
93
|
timeZone: string;
|
|
95
|
-
channelIds: string[];
|
|
96
94
|
isEnabled: boolean;
|
|
97
95
|
businessHours: {
|
|
98
96
|
day: string;
|
|
@@ -108,7 +106,6 @@ export declare const CreateBusinessCalendarSchema: z.ZodObject<{
|
|
|
108
106
|
}, {
|
|
109
107
|
name: string;
|
|
110
108
|
timeZone: string;
|
|
111
|
-
channelIds: string[];
|
|
112
109
|
isEnabled: boolean;
|
|
113
110
|
businessHours: {
|
|
114
111
|
day: string;
|
|
@@ -128,7 +125,6 @@ export declare const UpdateBusinessCalendarSchema: z.ZodObject<{
|
|
|
128
125
|
description: z.ZodOptional<z.ZodString>;
|
|
129
126
|
timeZone: z.ZodString;
|
|
130
127
|
isEnabled: z.ZodBoolean;
|
|
131
|
-
channelIds: z.ZodArray<z.ZodString, "many">;
|
|
132
128
|
businessHours: z.ZodArray<z.ZodObject<{
|
|
133
129
|
id: z.ZodString;
|
|
134
130
|
day: z.ZodString;
|
|
@@ -165,7 +161,6 @@ export declare const UpdateBusinessCalendarSchema: z.ZodObject<{
|
|
|
165
161
|
id: string;
|
|
166
162
|
name: string;
|
|
167
163
|
timeZone: string;
|
|
168
|
-
channelIds: string[];
|
|
169
164
|
isEnabled: boolean;
|
|
170
165
|
businessHours: {
|
|
171
166
|
id: string;
|
|
@@ -184,7 +179,6 @@ export declare const UpdateBusinessCalendarSchema: z.ZodObject<{
|
|
|
184
179
|
id: string;
|
|
185
180
|
name: string;
|
|
186
181
|
timeZone: string;
|
|
187
|
-
channelIds: string[];
|
|
188
182
|
isEnabled: boolean;
|
|
189
183
|
businessHours: {
|
|
190
184
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/business-calendar/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;WAM3B,CAAC;AACX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;WAO3B,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;WAMtB,CAAC;AACX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;WAOtB,CAAC;AAEX,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/business-calendar/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;WAM3B,CAAC;AACX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;WAO3B,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;WAMtB,CAAC;AACX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;WAOtB,CAAC;AAEX,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOvC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQvC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;EAEvC,CAAC"}
|