@kl1/contracts 1.1.32 → 1.1.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 +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +3 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/subscription/index.d.ts +373 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/subscription/schema.d.ts +442 -0
- package/dist/src/subscription/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +3 -0
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/validation.d.ts +3 -0
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1,4 +1,35 @@
|
|
1
1
|
import z from 'zod';
|
2
|
+
export declare const ProductPriceSchema: z.ZodObject<{
|
3
|
+
id: z.ZodString;
|
4
|
+
createdAt: z.ZodDate;
|
5
|
+
updatedAt: z.ZodDate;
|
6
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7
|
+
priceId: z.ZodString;
|
8
|
+
name: z.ZodNullable<z.ZodString>;
|
9
|
+
perUnit: z.ZodNumber;
|
10
|
+
price: z.ZodNumber;
|
11
|
+
currency: z.ZodNullable<z.ZodString>;
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
13
|
+
id: string;
|
14
|
+
name: string | null;
|
15
|
+
currency: string | null;
|
16
|
+
createdAt: Date;
|
17
|
+
updatedAt: Date;
|
18
|
+
deletedAt: Date | null;
|
19
|
+
priceId: string;
|
20
|
+
perUnit: number;
|
21
|
+
price: number;
|
22
|
+
}, {
|
23
|
+
id: string;
|
24
|
+
name: string | null;
|
25
|
+
currency: string | null;
|
26
|
+
createdAt: Date;
|
27
|
+
updatedAt: Date;
|
28
|
+
deletedAt: Date | null;
|
29
|
+
priceId: string;
|
30
|
+
perUnit: number;
|
31
|
+
price: number;
|
32
|
+
}>;
|
2
33
|
export declare const ProductSchema: z.ZodObject<{
|
3
34
|
id: z.ZodString;
|
4
35
|
createdAt: z.ZodDate;
|
@@ -10,6 +41,37 @@ export declare const ProductSchema: z.ZodObject<{
|
|
10
41
|
type: z.ZodString;
|
11
42
|
omnichannel: z.ZodString;
|
12
43
|
usageType: z.ZodNullable<z.ZodString>;
|
44
|
+
productPrice: z.ZodObject<{
|
45
|
+
id: z.ZodString;
|
46
|
+
createdAt: z.ZodDate;
|
47
|
+
updatedAt: z.ZodDate;
|
48
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
49
|
+
priceId: z.ZodString;
|
50
|
+
name: z.ZodNullable<z.ZodString>;
|
51
|
+
perUnit: z.ZodNumber;
|
52
|
+
price: z.ZodNumber;
|
53
|
+
currency: z.ZodNullable<z.ZodString>;
|
54
|
+
}, "strip", z.ZodTypeAny, {
|
55
|
+
id: string;
|
56
|
+
name: string | null;
|
57
|
+
currency: string | null;
|
58
|
+
createdAt: Date;
|
59
|
+
updatedAt: Date;
|
60
|
+
deletedAt: Date | null;
|
61
|
+
priceId: string;
|
62
|
+
perUnit: number;
|
63
|
+
price: number;
|
64
|
+
}, {
|
65
|
+
id: string;
|
66
|
+
name: string | null;
|
67
|
+
currency: string | null;
|
68
|
+
createdAt: Date;
|
69
|
+
updatedAt: Date;
|
70
|
+
deletedAt: Date | null;
|
71
|
+
priceId: string;
|
72
|
+
perUnit: number;
|
73
|
+
price: number;
|
74
|
+
}>;
|
13
75
|
}, "strip", z.ZodTypeAny, {
|
14
76
|
type: string;
|
15
77
|
id: string;
|
@@ -21,6 +83,17 @@ export declare const ProductSchema: z.ZodObject<{
|
|
21
83
|
productId: string;
|
22
84
|
omnichannel: string;
|
23
85
|
usageType: string | null;
|
86
|
+
productPrice: {
|
87
|
+
id: string;
|
88
|
+
name: string | null;
|
89
|
+
currency: string | null;
|
90
|
+
createdAt: Date;
|
91
|
+
updatedAt: Date;
|
92
|
+
deletedAt: Date | null;
|
93
|
+
priceId: string;
|
94
|
+
perUnit: number;
|
95
|
+
price: number;
|
96
|
+
};
|
24
97
|
}, {
|
25
98
|
type: string;
|
26
99
|
id: string;
|
@@ -32,6 +105,17 @@ export declare const ProductSchema: z.ZodObject<{
|
|
32
105
|
productId: string;
|
33
106
|
omnichannel: string;
|
34
107
|
usageType: string | null;
|
108
|
+
productPrice: {
|
109
|
+
id: string;
|
110
|
+
name: string | null;
|
111
|
+
currency: string | null;
|
112
|
+
createdAt: Date;
|
113
|
+
updatedAt: Date;
|
114
|
+
deletedAt: Date | null;
|
115
|
+
priceId: string;
|
116
|
+
perUnit: number;
|
117
|
+
price: number;
|
118
|
+
};
|
35
119
|
}>;
|
36
120
|
export declare const SubscriptionProuctSchema: z.ZodObject<{
|
37
121
|
id: z.ZodString;
|
@@ -52,6 +136,37 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
52
136
|
type: z.ZodString;
|
53
137
|
omnichannel: z.ZodString;
|
54
138
|
usageType: z.ZodNullable<z.ZodString>;
|
139
|
+
productPrice: z.ZodObject<{
|
140
|
+
id: z.ZodString;
|
141
|
+
createdAt: z.ZodDate;
|
142
|
+
updatedAt: z.ZodDate;
|
143
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
144
|
+
priceId: z.ZodString;
|
145
|
+
name: z.ZodNullable<z.ZodString>;
|
146
|
+
perUnit: z.ZodNumber;
|
147
|
+
price: z.ZodNumber;
|
148
|
+
currency: z.ZodNullable<z.ZodString>;
|
149
|
+
}, "strip", z.ZodTypeAny, {
|
150
|
+
id: string;
|
151
|
+
name: string | null;
|
152
|
+
currency: string | null;
|
153
|
+
createdAt: Date;
|
154
|
+
updatedAt: Date;
|
155
|
+
deletedAt: Date | null;
|
156
|
+
priceId: string;
|
157
|
+
perUnit: number;
|
158
|
+
price: number;
|
159
|
+
}, {
|
160
|
+
id: string;
|
161
|
+
name: string | null;
|
162
|
+
currency: string | null;
|
163
|
+
createdAt: Date;
|
164
|
+
updatedAt: Date;
|
165
|
+
deletedAt: Date | null;
|
166
|
+
priceId: string;
|
167
|
+
perUnit: number;
|
168
|
+
price: number;
|
169
|
+
}>;
|
55
170
|
}, "strip", z.ZodTypeAny, {
|
56
171
|
type: string;
|
57
172
|
id: string;
|
@@ -63,6 +178,17 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
63
178
|
productId: string;
|
64
179
|
omnichannel: string;
|
65
180
|
usageType: string | null;
|
181
|
+
productPrice: {
|
182
|
+
id: string;
|
183
|
+
name: string | null;
|
184
|
+
currency: string | null;
|
185
|
+
createdAt: Date;
|
186
|
+
updatedAt: Date;
|
187
|
+
deletedAt: Date | null;
|
188
|
+
priceId: string;
|
189
|
+
perUnit: number;
|
190
|
+
price: number;
|
191
|
+
};
|
66
192
|
}, {
|
67
193
|
type: string;
|
68
194
|
id: string;
|
@@ -74,6 +200,17 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
74
200
|
productId: string;
|
75
201
|
omnichannel: string;
|
76
202
|
usageType: string | null;
|
203
|
+
productPrice: {
|
204
|
+
id: string;
|
205
|
+
name: string | null;
|
206
|
+
currency: string | null;
|
207
|
+
createdAt: Date;
|
208
|
+
updatedAt: Date;
|
209
|
+
deletedAt: Date | null;
|
210
|
+
priceId: string;
|
211
|
+
perUnit: number;
|
212
|
+
price: number;
|
213
|
+
};
|
77
214
|
}>;
|
78
215
|
}, "strip", z.ZodTypeAny, {
|
79
216
|
id: string;
|
@@ -88,6 +225,17 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
88
225
|
productId: string;
|
89
226
|
omnichannel: string;
|
90
227
|
usageType: string | null;
|
228
|
+
productPrice: {
|
229
|
+
id: string;
|
230
|
+
name: string | null;
|
231
|
+
currency: string | null;
|
232
|
+
createdAt: Date;
|
233
|
+
updatedAt: Date;
|
234
|
+
deletedAt: Date | null;
|
235
|
+
priceId: string;
|
236
|
+
perUnit: number;
|
237
|
+
price: number;
|
238
|
+
};
|
91
239
|
};
|
92
240
|
createdAt: Date;
|
93
241
|
updatedAt: Date;
|
@@ -108,6 +256,17 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
108
256
|
productId: string;
|
109
257
|
omnichannel: string;
|
110
258
|
usageType: string | null;
|
259
|
+
productPrice: {
|
260
|
+
id: string;
|
261
|
+
name: string | null;
|
262
|
+
currency: string | null;
|
263
|
+
createdAt: Date;
|
264
|
+
updatedAt: Date;
|
265
|
+
deletedAt: Date | null;
|
266
|
+
priceId: string;
|
267
|
+
perUnit: number;
|
268
|
+
price: number;
|
269
|
+
};
|
111
270
|
};
|
112
271
|
createdAt: Date;
|
113
272
|
updatedAt: Date;
|
@@ -150,6 +309,37 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
150
309
|
type: z.ZodString;
|
151
310
|
omnichannel: z.ZodString;
|
152
311
|
usageType: z.ZodNullable<z.ZodString>;
|
312
|
+
productPrice: z.ZodObject<{
|
313
|
+
id: z.ZodString;
|
314
|
+
createdAt: z.ZodDate;
|
315
|
+
updatedAt: z.ZodDate;
|
316
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
317
|
+
priceId: z.ZodString;
|
318
|
+
name: z.ZodNullable<z.ZodString>;
|
319
|
+
perUnit: z.ZodNumber;
|
320
|
+
price: z.ZodNumber;
|
321
|
+
currency: z.ZodNullable<z.ZodString>;
|
322
|
+
}, "strip", z.ZodTypeAny, {
|
323
|
+
id: string;
|
324
|
+
name: string | null;
|
325
|
+
currency: string | null;
|
326
|
+
createdAt: Date;
|
327
|
+
updatedAt: Date;
|
328
|
+
deletedAt: Date | null;
|
329
|
+
priceId: string;
|
330
|
+
perUnit: number;
|
331
|
+
price: number;
|
332
|
+
}, {
|
333
|
+
id: string;
|
334
|
+
name: string | null;
|
335
|
+
currency: string | null;
|
336
|
+
createdAt: Date;
|
337
|
+
updatedAt: Date;
|
338
|
+
deletedAt: Date | null;
|
339
|
+
priceId: string;
|
340
|
+
perUnit: number;
|
341
|
+
price: number;
|
342
|
+
}>;
|
153
343
|
}, "strip", z.ZodTypeAny, {
|
154
344
|
type: string;
|
155
345
|
id: string;
|
@@ -161,6 +351,17 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
161
351
|
productId: string;
|
162
352
|
omnichannel: string;
|
163
353
|
usageType: string | null;
|
354
|
+
productPrice: {
|
355
|
+
id: string;
|
356
|
+
name: string | null;
|
357
|
+
currency: string | null;
|
358
|
+
createdAt: Date;
|
359
|
+
updatedAt: Date;
|
360
|
+
deletedAt: Date | null;
|
361
|
+
priceId: string;
|
362
|
+
perUnit: number;
|
363
|
+
price: number;
|
364
|
+
};
|
164
365
|
}, {
|
165
366
|
type: string;
|
166
367
|
id: string;
|
@@ -172,6 +373,17 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
172
373
|
productId: string;
|
173
374
|
omnichannel: string;
|
174
375
|
usageType: string | null;
|
376
|
+
productPrice: {
|
377
|
+
id: string;
|
378
|
+
name: string | null;
|
379
|
+
currency: string | null;
|
380
|
+
createdAt: Date;
|
381
|
+
updatedAt: Date;
|
382
|
+
deletedAt: Date | null;
|
383
|
+
priceId: string;
|
384
|
+
perUnit: number;
|
385
|
+
price: number;
|
386
|
+
};
|
175
387
|
}>;
|
176
388
|
}, "strip", z.ZodTypeAny, {
|
177
389
|
id: string;
|
@@ -186,6 +398,17 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
186
398
|
productId: string;
|
187
399
|
omnichannel: string;
|
188
400
|
usageType: string | null;
|
401
|
+
productPrice: {
|
402
|
+
id: string;
|
403
|
+
name: string | null;
|
404
|
+
currency: string | null;
|
405
|
+
createdAt: Date;
|
406
|
+
updatedAt: Date;
|
407
|
+
deletedAt: Date | null;
|
408
|
+
priceId: string;
|
409
|
+
perUnit: number;
|
410
|
+
price: number;
|
411
|
+
};
|
189
412
|
};
|
190
413
|
createdAt: Date;
|
191
414
|
updatedAt: Date;
|
@@ -206,6 +429,17 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
206
429
|
productId: string;
|
207
430
|
omnichannel: string;
|
208
431
|
usageType: string | null;
|
432
|
+
productPrice: {
|
433
|
+
id: string;
|
434
|
+
name: string | null;
|
435
|
+
currency: string | null;
|
436
|
+
createdAt: Date;
|
437
|
+
updatedAt: Date;
|
438
|
+
deletedAt: Date | null;
|
439
|
+
priceId: string;
|
440
|
+
perUnit: number;
|
441
|
+
price: number;
|
442
|
+
};
|
209
443
|
};
|
210
444
|
createdAt: Date;
|
211
445
|
updatedAt: Date;
|
@@ -214,16 +448,168 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
214
448
|
subscriptionItemId: string;
|
215
449
|
usage: number | null;
|
216
450
|
}>, "many">;
|
451
|
+
productPrice: z.ZodObject<{
|
452
|
+
id: z.ZodString;
|
453
|
+
createdAt: z.ZodDate;
|
454
|
+
updatedAt: z.ZodDate;
|
455
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
456
|
+
priceId: z.ZodString;
|
457
|
+
name: z.ZodNullable<z.ZodString>;
|
458
|
+
perUnit: z.ZodNumber;
|
459
|
+
price: z.ZodNumber;
|
460
|
+
currency: z.ZodNullable<z.ZodString>;
|
461
|
+
}, "strip", z.ZodTypeAny, {
|
462
|
+
id: string;
|
463
|
+
name: string | null;
|
464
|
+
currency: string | null;
|
465
|
+
createdAt: Date;
|
466
|
+
updatedAt: Date;
|
467
|
+
deletedAt: Date | null;
|
468
|
+
priceId: string;
|
469
|
+
perUnit: number;
|
470
|
+
price: number;
|
471
|
+
}, {
|
472
|
+
id: string;
|
473
|
+
name: string | null;
|
474
|
+
currency: string | null;
|
475
|
+
createdAt: Date;
|
476
|
+
updatedAt: Date;
|
477
|
+
deletedAt: Date | null;
|
478
|
+
priceId: string;
|
479
|
+
perUnit: number;
|
480
|
+
price: number;
|
481
|
+
}>;
|
482
|
+
product: z.ZodObject<{
|
483
|
+
id: z.ZodString;
|
484
|
+
createdAt: z.ZodDate;
|
485
|
+
updatedAt: z.ZodDate;
|
486
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
487
|
+
provider: z.ZodString;
|
488
|
+
productId: z.ZodString;
|
489
|
+
name: z.ZodString;
|
490
|
+
type: z.ZodString;
|
491
|
+
omnichannel: z.ZodString;
|
492
|
+
usageType: z.ZodNullable<z.ZodString>;
|
493
|
+
productPrice: z.ZodObject<{
|
494
|
+
id: z.ZodString;
|
495
|
+
createdAt: z.ZodDate;
|
496
|
+
updatedAt: z.ZodDate;
|
497
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
498
|
+
priceId: z.ZodString;
|
499
|
+
name: z.ZodNullable<z.ZodString>;
|
500
|
+
perUnit: z.ZodNumber;
|
501
|
+
price: z.ZodNumber;
|
502
|
+
currency: z.ZodNullable<z.ZodString>;
|
503
|
+
}, "strip", z.ZodTypeAny, {
|
504
|
+
id: string;
|
505
|
+
name: string | null;
|
506
|
+
currency: string | null;
|
507
|
+
createdAt: Date;
|
508
|
+
updatedAt: Date;
|
509
|
+
deletedAt: Date | null;
|
510
|
+
priceId: string;
|
511
|
+
perUnit: number;
|
512
|
+
price: number;
|
513
|
+
}, {
|
514
|
+
id: string;
|
515
|
+
name: string | null;
|
516
|
+
currency: string | null;
|
517
|
+
createdAt: Date;
|
518
|
+
updatedAt: Date;
|
519
|
+
deletedAt: Date | null;
|
520
|
+
priceId: string;
|
521
|
+
perUnit: number;
|
522
|
+
price: number;
|
523
|
+
}>;
|
524
|
+
}, "strip", z.ZodTypeAny, {
|
525
|
+
type: string;
|
526
|
+
id: string;
|
527
|
+
name: string;
|
528
|
+
createdAt: Date;
|
529
|
+
updatedAt: Date;
|
530
|
+
deletedAt: Date | null;
|
531
|
+
provider: string;
|
532
|
+
productId: string;
|
533
|
+
omnichannel: string;
|
534
|
+
usageType: string | null;
|
535
|
+
productPrice: {
|
536
|
+
id: string;
|
537
|
+
name: string | null;
|
538
|
+
currency: string | null;
|
539
|
+
createdAt: Date;
|
540
|
+
updatedAt: Date;
|
541
|
+
deletedAt: Date | null;
|
542
|
+
priceId: string;
|
543
|
+
perUnit: number;
|
544
|
+
price: number;
|
545
|
+
};
|
546
|
+
}, {
|
547
|
+
type: string;
|
548
|
+
id: string;
|
549
|
+
name: string;
|
550
|
+
createdAt: Date;
|
551
|
+
updatedAt: Date;
|
552
|
+
deletedAt: Date | null;
|
553
|
+
provider: string;
|
554
|
+
productId: string;
|
555
|
+
omnichannel: string;
|
556
|
+
usageType: string | null;
|
557
|
+
productPrice: {
|
558
|
+
id: string;
|
559
|
+
name: string | null;
|
560
|
+
currency: string | null;
|
561
|
+
createdAt: Date;
|
562
|
+
updatedAt: Date;
|
563
|
+
deletedAt: Date | null;
|
564
|
+
priceId: string;
|
565
|
+
perUnit: number;
|
566
|
+
price: number;
|
567
|
+
};
|
568
|
+
}>;
|
217
569
|
}, "strip", z.ZodTypeAny, {
|
218
570
|
type: string;
|
219
571
|
interval: string;
|
220
572
|
id: string;
|
221
573
|
name: string | null;
|
574
|
+
product: {
|
575
|
+
type: string;
|
576
|
+
id: string;
|
577
|
+
name: string;
|
578
|
+
createdAt: Date;
|
579
|
+
updatedAt: Date;
|
580
|
+
deletedAt: Date | null;
|
581
|
+
provider: string;
|
582
|
+
productId: string;
|
583
|
+
omnichannel: string;
|
584
|
+
usageType: string | null;
|
585
|
+
productPrice: {
|
586
|
+
id: string;
|
587
|
+
name: string | null;
|
588
|
+
currency: string | null;
|
589
|
+
createdAt: Date;
|
590
|
+
updatedAt: Date;
|
591
|
+
deletedAt: Date | null;
|
592
|
+
priceId: string;
|
593
|
+
perUnit: number;
|
594
|
+
price: number;
|
595
|
+
};
|
596
|
+
};
|
222
597
|
status: string;
|
223
598
|
createdAt: Date;
|
224
599
|
updatedAt: Date;
|
225
600
|
deletedAt: Date | null;
|
226
601
|
provider: string;
|
602
|
+
productPrice: {
|
603
|
+
id: string;
|
604
|
+
name: string | null;
|
605
|
+
currency: string | null;
|
606
|
+
createdAt: Date;
|
607
|
+
updatedAt: Date;
|
608
|
+
deletedAt: Date | null;
|
609
|
+
priceId: string;
|
610
|
+
perUnit: number;
|
611
|
+
price: number;
|
612
|
+
};
|
227
613
|
subscriptionId: string;
|
228
614
|
quantity: number;
|
229
615
|
amount: number;
|
@@ -242,6 +628,17 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
242
628
|
productId: string;
|
243
629
|
omnichannel: string;
|
244
630
|
usageType: string | null;
|
631
|
+
productPrice: {
|
632
|
+
id: string;
|
633
|
+
name: string | null;
|
634
|
+
currency: string | null;
|
635
|
+
createdAt: Date;
|
636
|
+
updatedAt: Date;
|
637
|
+
deletedAt: Date | null;
|
638
|
+
priceId: string;
|
639
|
+
perUnit: number;
|
640
|
+
price: number;
|
641
|
+
};
|
245
642
|
};
|
246
643
|
createdAt: Date;
|
247
644
|
updatedAt: Date;
|
@@ -255,11 +652,45 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
255
652
|
interval: string;
|
256
653
|
id: string;
|
257
654
|
name: string | null;
|
655
|
+
product: {
|
656
|
+
type: string;
|
657
|
+
id: string;
|
658
|
+
name: string;
|
659
|
+
createdAt: Date;
|
660
|
+
updatedAt: Date;
|
661
|
+
deletedAt: Date | null;
|
662
|
+
provider: string;
|
663
|
+
productId: string;
|
664
|
+
omnichannel: string;
|
665
|
+
usageType: string | null;
|
666
|
+
productPrice: {
|
667
|
+
id: string;
|
668
|
+
name: string | null;
|
669
|
+
currency: string | null;
|
670
|
+
createdAt: Date;
|
671
|
+
updatedAt: Date;
|
672
|
+
deletedAt: Date | null;
|
673
|
+
priceId: string;
|
674
|
+
perUnit: number;
|
675
|
+
price: number;
|
676
|
+
};
|
677
|
+
};
|
258
678
|
status: string;
|
259
679
|
createdAt: Date;
|
260
680
|
updatedAt: Date;
|
261
681
|
deletedAt: Date | null;
|
262
682
|
provider: string;
|
683
|
+
productPrice: {
|
684
|
+
id: string;
|
685
|
+
name: string | null;
|
686
|
+
currency: string | null;
|
687
|
+
createdAt: Date;
|
688
|
+
updatedAt: Date;
|
689
|
+
deletedAt: Date | null;
|
690
|
+
priceId: string;
|
691
|
+
perUnit: number;
|
692
|
+
price: number;
|
693
|
+
};
|
263
694
|
subscriptionId: string;
|
264
695
|
quantity: number;
|
265
696
|
amount: number;
|
@@ -278,6 +709,17 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
278
709
|
productId: string;
|
279
710
|
omnichannel: string;
|
280
711
|
usageType: string | null;
|
712
|
+
productPrice: {
|
713
|
+
id: string;
|
714
|
+
name: string | null;
|
715
|
+
currency: string | null;
|
716
|
+
createdAt: Date;
|
717
|
+
updatedAt: Date;
|
718
|
+
deletedAt: Date | null;
|
719
|
+
priceId: string;
|
720
|
+
perUnit: number;
|
721
|
+
price: number;
|
722
|
+
};
|
281
723
|
};
|
282
724
|
createdAt: Date;
|
283
725
|
updatedAt: Date;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/subscription/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/subscription/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQxB,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKnC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc7B,CAAC"}
|
@@ -8255,7 +8255,9 @@ export declare const telephonyCdrContract: {
|
|
8255
8255
|
agentCallsOnly: z.ZodOptional<z.ZodBoolean>;
|
8256
8256
|
page: z.ZodOptional<z.ZodNumber>;
|
8257
8257
|
pageSize: z.ZodOptional<z.ZodNumber>;
|
8258
|
+
module: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"cdrs">, z.ZodLiteral<"call-logs">]>>>;
|
8258
8259
|
}, "strip", z.ZodTypeAny, {
|
8260
|
+
module: "cdrs" | "call-logs";
|
8259
8261
|
type?: string[] | undefined;
|
8260
8262
|
status?: string[] | undefined;
|
8261
8263
|
userId?: string | undefined;
|
@@ -8283,6 +8285,7 @@ export declare const telephonyCdrContract: {
|
|
8283
8285
|
agentCallsOnly?: boolean | undefined;
|
8284
8286
|
page?: number | undefined;
|
8285
8287
|
pageSize?: number | undefined;
|
8288
|
+
module?: "cdrs" | "call-logs" | undefined;
|
8286
8289
|
}>;
|
8287
8290
|
responses: {
|
8288
8291
|
200: null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/telephony-cdr/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+KhC,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/telephony-cdr/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+KhC,CAAC"}
|
@@ -148,7 +148,9 @@ export declare const GetExportTelephonyCdrSchema: z.ZodObject<{
|
|
148
148
|
agentCallsOnly: z.ZodOptional<z.ZodBoolean>;
|
149
149
|
page: z.ZodOptional<z.ZodNumber>;
|
150
150
|
pageSize: z.ZodOptional<z.ZodNumber>;
|
151
|
+
module: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"cdrs">, z.ZodLiteral<"call-logs">]>>>;
|
151
152
|
}, "strip", z.ZodTypeAny, {
|
153
|
+
module: "cdrs" | "call-logs";
|
152
154
|
type?: string[] | undefined;
|
153
155
|
status?: string[] | undefined;
|
154
156
|
userId?: string | undefined;
|
@@ -176,6 +178,7 @@ export declare const GetExportTelephonyCdrSchema: z.ZodObject<{
|
|
176
178
|
agentCallsOnly?: boolean | undefined;
|
177
179
|
page?: number | undefined;
|
178
180
|
pageSize?: number | undefined;
|
181
|
+
module?: "cdrs" | "call-logs" | undefined;
|
179
182
|
}>;
|
180
183
|
export declare const GetYeastarCallReportSchema: z.ZodEffects<z.ZodObject<{
|
181
184
|
page: z.ZodDefault<z.ZodNumber>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/telephony-cdr/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAenC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYnC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAetC,CAAC;AAEH,eAAO,MAAM,2BAA2B
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/telephony-cdr/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAenC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYnC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAetC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUvC,CAAC;AAKF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwHrC,CAAC"}
|