@kl1/contracts 1.0.44 → 1.0.45
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 +97 -33
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +97 -33
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +193 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +44 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +48 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +1540 -150
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +424 -22
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +77 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +16 -0
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +63 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +5337 -818
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +54 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +46 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +7 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +7 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +24 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/call-report.schema.d.ts +334 -1
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +650 -1
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +670 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +2338 -171
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +327 -12
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/upload/schema.d.ts +3 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1,12 +1,30 @@
|
|
1
1
|
import z from 'zod';
|
2
2
|
import { CreateTelephonyCdrSchema, GetAllTelephonyCdrSchema, GetExportTelephonyCdrSchema, GetRecentTelephonyCdrSchema, GetYeastarCallReportSchema } from './validation';
|
3
|
-
import {
|
3
|
+
import { ExtCallActivityListSchema, ExtCallStatisticsListSchema, ExtStatisticSchema, QueueAgentInOutCallsListSchema, QueueAgentMissCallsListSchema, QueueAvgWaitTalkTimeListSchema, QueuePerformanceListSchema, QueueSatisfactionSchema, SatisfactionListSchema, TrunkActivityListSchema, agentListSchema } from './call-report.schema';
|
4
|
+
import { TelephonyCdrSchema, TelephonyExtensionListSchema, TelephonyExtensionSchema, TelephonyQueueListSchmea, TelephonyQueueSchema, TelephonyTrunkListSchema, TelephonyTrunkSchema } from './schema';
|
4
5
|
export type CreateTelephonyCdrRequest = z.infer<typeof CreateTelephonyCdrSchema>;
|
5
6
|
export type TelephonyCdr = z.infer<typeof TelephonyCdrSchema>;
|
6
7
|
export type GetTelephonyCdrQuery = z.infer<typeof GetAllTelephonyCdrSchema>;
|
7
8
|
export type GetRecentTelephonyCdrQuery = z.infer<typeof GetRecentTelephonyCdrSchema>;
|
8
9
|
export type GetExportTelephonyCdrQuery = z.infer<typeof GetExportTelephonyCdrSchema>;
|
9
10
|
export type GetYeastarCallReportBody = z.infer<typeof GetYeastarCallReportSchema>;
|
11
|
+
export type ExtCallStatisticsList = z.infer<typeof ExtCallStatisticsListSchema>;
|
12
|
+
export type ExtStatistic = z.infer<typeof ExtStatisticSchema>;
|
13
|
+
export type ExtCallActivityList = z.infer<typeof ExtCallActivityListSchema>;
|
14
|
+
export type TrunkActivityList = z.infer<typeof TrunkActivityListSchema>;
|
15
|
+
export type QueueAvgWaitTalkTimeList = z.infer<typeof QueueAvgWaitTalkTimeListSchema>;
|
16
|
+
export type QueuePerformanceList = z.infer<typeof QueuePerformanceListSchema>;
|
17
|
+
export type QueueAgentMissCallsList = z.infer<typeof QueueAgentMissCallsListSchema>;
|
18
|
+
export type QueueSatisfaction = z.infer<typeof QueueSatisfactionSchema>;
|
19
|
+
export type SatisfactionList = z.infer<typeof SatisfactionListSchema>;
|
20
|
+
export type AgentList = z.infer<typeof agentListSchema>;
|
21
|
+
export type QueueAgentInOutCallsList = z.infer<typeof QueueAgentInOutCallsListSchema>;
|
22
|
+
export type TelephonyTrunk = z.infer<typeof TelephonyTrunkSchema>;
|
23
|
+
export type TelephonyTrunkList = z.infer<typeof TelephonyTrunkListSchema>;
|
24
|
+
export type TelephonyQueue = z.infer<typeof TelephonyQueueSchema>;
|
25
|
+
export type TelephonyQueueList = z.infer<typeof TelephonyQueueListSchmea>;
|
26
|
+
export type TelephonyExtension = z.infer<typeof TelephonyExtensionSchema>;
|
27
|
+
export type TelephonyExtensionList = z.infer<typeof TelephonyExtensionListSchema>;
|
10
28
|
export declare const telephonyCdrContract: {
|
11
29
|
findAll: {
|
12
30
|
summary: "Get all telephony cdr.";
|
@@ -359,6 +377,7 @@ export declare const telephonyCdrContract: {
|
|
359
377
|
fileSize: z.ZodNumber;
|
360
378
|
fileKey: z.ZodString;
|
361
379
|
fileUrl: z.ZodNullable<z.ZodString>;
|
380
|
+
status: z.ZodOptional<z.ZodString>;
|
362
381
|
}, "strip", z.ZodTypeAny, {
|
363
382
|
id: string;
|
364
383
|
createdAt: Date;
|
@@ -369,6 +388,7 @@ export declare const telephonyCdrContract: {
|
|
369
388
|
bucketName: string;
|
370
389
|
fileSize: number;
|
371
390
|
fileUrl: string | null;
|
391
|
+
status?: string | undefined;
|
372
392
|
}, {
|
373
393
|
id: string;
|
374
394
|
createdAt: Date;
|
@@ -379,6 +399,7 @@ export declare const telephonyCdrContract: {
|
|
379
399
|
bucketName: string;
|
380
400
|
fileSize: number;
|
381
401
|
fileUrl: string | null;
|
402
|
+
status?: string | undefined;
|
382
403
|
}>;
|
383
404
|
}, "strip", z.ZodTypeAny, {
|
384
405
|
id: string;
|
@@ -396,6 +417,7 @@ export declare const telephonyCdrContract: {
|
|
396
417
|
bucketName: string;
|
397
418
|
fileSize: number;
|
398
419
|
fileUrl: string | null;
|
420
|
+
status?: string | undefined;
|
399
421
|
};
|
400
422
|
}, {
|
401
423
|
id: string;
|
@@ -413,6 +435,7 @@ export declare const telephonyCdrContract: {
|
|
413
435
|
bucketName: string;
|
414
436
|
fileSize: number;
|
415
437
|
fileUrl: string | null;
|
438
|
+
status?: string | undefined;
|
416
439
|
};
|
417
440
|
}>, "many">;
|
418
441
|
}, "strip", z.ZodTypeAny, {
|
@@ -454,6 +477,7 @@ export declare const telephonyCdrContract: {
|
|
454
477
|
bucketName: string;
|
455
478
|
fileSize: number;
|
456
479
|
fileUrl: string | null;
|
480
|
+
status?: string | undefined;
|
457
481
|
};
|
458
482
|
}[];
|
459
483
|
}, {
|
@@ -495,6 +519,7 @@ export declare const telephonyCdrContract: {
|
|
495
519
|
bucketName: string;
|
496
520
|
fileSize: number;
|
497
521
|
fileUrl: string | null;
|
522
|
+
status?: string | undefined;
|
498
523
|
};
|
499
524
|
}[];
|
500
525
|
}>, "many">;
|
@@ -649,6 +674,7 @@ export declare const telephonyCdrContract: {
|
|
649
674
|
bucketName: string;
|
650
675
|
fileSize: number;
|
651
676
|
fileUrl: string | null;
|
677
|
+
status?: string | undefined;
|
652
678
|
};
|
653
679
|
}[];
|
654
680
|
}[];
|
@@ -751,6 +777,7 @@ export declare const telephonyCdrContract: {
|
|
751
777
|
bucketName: string;
|
752
778
|
fileSize: number;
|
753
779
|
fileUrl: string | null;
|
780
|
+
status?: string | undefined;
|
754
781
|
};
|
755
782
|
}[];
|
756
783
|
}[];
|
@@ -852,6 +879,7 @@ export declare const telephonyCdrContract: {
|
|
852
879
|
fileSize: z.ZodNumber;
|
853
880
|
fileKey: z.ZodString;
|
854
881
|
fileUrl: z.ZodNullable<z.ZodString>;
|
882
|
+
status: z.ZodOptional<z.ZodString>;
|
855
883
|
}, "strip", z.ZodTypeAny, {
|
856
884
|
id: string;
|
857
885
|
createdAt: Date;
|
@@ -862,6 +890,7 @@ export declare const telephonyCdrContract: {
|
|
862
890
|
bucketName: string;
|
863
891
|
fileSize: number;
|
864
892
|
fileUrl: string | null;
|
893
|
+
status?: string | undefined;
|
865
894
|
}, {
|
866
895
|
id: string;
|
867
896
|
createdAt: Date;
|
@@ -872,6 +901,7 @@ export declare const telephonyCdrContract: {
|
|
872
901
|
bucketName: string;
|
873
902
|
fileSize: number;
|
874
903
|
fileUrl: string | null;
|
904
|
+
status?: string | undefined;
|
875
905
|
}>>>;
|
876
906
|
serialNumber: z.ZodNullable<z.ZodString>;
|
877
907
|
extensionId: z.ZodNullable<z.ZodString>;
|
@@ -1277,6 +1307,7 @@ export declare const telephonyCdrContract: {
|
|
1277
1307
|
bucketName: string;
|
1278
1308
|
fileSize: number;
|
1279
1309
|
fileUrl: string | null;
|
1310
|
+
status?: string | undefined;
|
1280
1311
|
};
|
1281
1312
|
}[];
|
1282
1313
|
}[];
|
@@ -1353,6 +1384,7 @@ export declare const telephonyCdrContract: {
|
|
1353
1384
|
bucketName: string;
|
1354
1385
|
fileSize: number;
|
1355
1386
|
fileUrl: string | null;
|
1387
|
+
status?: string | undefined;
|
1356
1388
|
} | null | undefined;
|
1357
1389
|
extension?: {
|
1358
1390
|
id: string;
|
@@ -1482,6 +1514,7 @@ export declare const telephonyCdrContract: {
|
|
1482
1514
|
bucketName: string;
|
1483
1515
|
fileSize: number;
|
1484
1516
|
fileUrl: string | null;
|
1517
|
+
status?: string | undefined;
|
1485
1518
|
};
|
1486
1519
|
}[];
|
1487
1520
|
}[];
|
@@ -1558,6 +1591,7 @@ export declare const telephonyCdrContract: {
|
|
1558
1591
|
bucketName: string;
|
1559
1592
|
fileSize: number;
|
1560
1593
|
fileUrl: string | null;
|
1594
|
+
status?: string | undefined;
|
1561
1595
|
} | null | undefined;
|
1562
1596
|
extension?: {
|
1563
1597
|
id: string;
|
@@ -1693,6 +1727,7 @@ export declare const telephonyCdrContract: {
|
|
1693
1727
|
bucketName: string;
|
1694
1728
|
fileSize: number;
|
1695
1729
|
fileUrl: string | null;
|
1730
|
+
status?: string | undefined;
|
1696
1731
|
};
|
1697
1732
|
}[];
|
1698
1733
|
}[];
|
@@ -1769,6 +1804,7 @@ export declare const telephonyCdrContract: {
|
|
1769
1804
|
bucketName: string;
|
1770
1805
|
fileSize: number;
|
1771
1806
|
fileUrl: string | null;
|
1807
|
+
status?: string | undefined;
|
1772
1808
|
} | null | undefined;
|
1773
1809
|
extension?: {
|
1774
1810
|
id: string;
|
@@ -1904,6 +1940,7 @@ export declare const telephonyCdrContract: {
|
|
1904
1940
|
bucketName: string;
|
1905
1941
|
fileSize: number;
|
1906
1942
|
fileUrl: string | null;
|
1943
|
+
status?: string | undefined;
|
1907
1944
|
};
|
1908
1945
|
}[];
|
1909
1946
|
}[];
|
@@ -1980,6 +2017,7 @@ export declare const telephonyCdrContract: {
|
|
1980
2017
|
bucketName: string;
|
1981
2018
|
fileSize: number;
|
1982
2019
|
fileUrl: string | null;
|
2020
|
+
status?: string | undefined;
|
1983
2021
|
} | null | undefined;
|
1984
2022
|
extension?: {
|
1985
2023
|
id: string;
|
@@ -2420,6 +2458,7 @@ export declare const telephonyCdrContract: {
|
|
2420
2458
|
fileSize: z.ZodNumber;
|
2421
2459
|
fileKey: z.ZodString;
|
2422
2460
|
fileUrl: z.ZodNullable<z.ZodString>;
|
2461
|
+
status: z.ZodOptional<z.ZodString>;
|
2423
2462
|
}, "strip", z.ZodTypeAny, {
|
2424
2463
|
id: string;
|
2425
2464
|
createdAt: Date;
|
@@ -2430,6 +2469,7 @@ export declare const telephonyCdrContract: {
|
|
2430
2469
|
bucketName: string;
|
2431
2470
|
fileSize: number;
|
2432
2471
|
fileUrl: string | null;
|
2472
|
+
status?: string | undefined;
|
2433
2473
|
}, {
|
2434
2474
|
id: string;
|
2435
2475
|
createdAt: Date;
|
@@ -2440,6 +2480,7 @@ export declare const telephonyCdrContract: {
|
|
2440
2480
|
bucketName: string;
|
2441
2481
|
fileSize: number;
|
2442
2482
|
fileUrl: string | null;
|
2483
|
+
status?: string | undefined;
|
2443
2484
|
}>;
|
2444
2485
|
}, "strip", z.ZodTypeAny, {
|
2445
2486
|
id: string;
|
@@ -2457,6 +2498,7 @@ export declare const telephonyCdrContract: {
|
|
2457
2498
|
bucketName: string;
|
2458
2499
|
fileSize: number;
|
2459
2500
|
fileUrl: string | null;
|
2501
|
+
status?: string | undefined;
|
2460
2502
|
};
|
2461
2503
|
}, {
|
2462
2504
|
id: string;
|
@@ -2474,6 +2516,7 @@ export declare const telephonyCdrContract: {
|
|
2474
2516
|
bucketName: string;
|
2475
2517
|
fileSize: number;
|
2476
2518
|
fileUrl: string | null;
|
2519
|
+
status?: string | undefined;
|
2477
2520
|
};
|
2478
2521
|
}>, "many">;
|
2479
2522
|
}, "strip", z.ZodTypeAny, {
|
@@ -2515,6 +2558,7 @@ export declare const telephonyCdrContract: {
|
|
2515
2558
|
bucketName: string;
|
2516
2559
|
fileSize: number;
|
2517
2560
|
fileUrl: string | null;
|
2561
|
+
status?: string | undefined;
|
2518
2562
|
};
|
2519
2563
|
}[];
|
2520
2564
|
}, {
|
@@ -2556,6 +2600,7 @@ export declare const telephonyCdrContract: {
|
|
2556
2600
|
bucketName: string;
|
2557
2601
|
fileSize: number;
|
2558
2602
|
fileUrl: string | null;
|
2603
|
+
status?: string | undefined;
|
2559
2604
|
};
|
2560
2605
|
}[];
|
2561
2606
|
}>, "many">;
|
@@ -2710,6 +2755,7 @@ export declare const telephonyCdrContract: {
|
|
2710
2755
|
bucketName: string;
|
2711
2756
|
fileSize: number;
|
2712
2757
|
fileUrl: string | null;
|
2758
|
+
status?: string | undefined;
|
2713
2759
|
};
|
2714
2760
|
}[];
|
2715
2761
|
}[];
|
@@ -2812,6 +2858,7 @@ export declare const telephonyCdrContract: {
|
|
2812
2858
|
bucketName: string;
|
2813
2859
|
fileSize: number;
|
2814
2860
|
fileUrl: string | null;
|
2861
|
+
status?: string | undefined;
|
2815
2862
|
};
|
2816
2863
|
}[];
|
2817
2864
|
}[];
|
@@ -2913,6 +2960,7 @@ export declare const telephonyCdrContract: {
|
|
2913
2960
|
fileSize: z.ZodNumber;
|
2914
2961
|
fileKey: z.ZodString;
|
2915
2962
|
fileUrl: z.ZodNullable<z.ZodString>;
|
2963
|
+
status: z.ZodOptional<z.ZodString>;
|
2916
2964
|
}, "strip", z.ZodTypeAny, {
|
2917
2965
|
id: string;
|
2918
2966
|
createdAt: Date;
|
@@ -2923,6 +2971,7 @@ export declare const telephonyCdrContract: {
|
|
2923
2971
|
bucketName: string;
|
2924
2972
|
fileSize: number;
|
2925
2973
|
fileUrl: string | null;
|
2974
|
+
status?: string | undefined;
|
2926
2975
|
}, {
|
2927
2976
|
id: string;
|
2928
2977
|
createdAt: Date;
|
@@ -2933,6 +2982,7 @@ export declare const telephonyCdrContract: {
|
|
2933
2982
|
bucketName: string;
|
2934
2983
|
fileSize: number;
|
2935
2984
|
fileUrl: string | null;
|
2985
|
+
status?: string | undefined;
|
2936
2986
|
}>>>;
|
2937
2987
|
serialNumber: z.ZodNullable<z.ZodString>;
|
2938
2988
|
extensionId: z.ZodNullable<z.ZodString>;
|
@@ -3338,6 +3388,7 @@ export declare const telephonyCdrContract: {
|
|
3338
3388
|
bucketName: string;
|
3339
3389
|
fileSize: number;
|
3340
3390
|
fileUrl: string | null;
|
3391
|
+
status?: string | undefined;
|
3341
3392
|
};
|
3342
3393
|
}[];
|
3343
3394
|
}[];
|
@@ -3414,6 +3465,7 @@ export declare const telephonyCdrContract: {
|
|
3414
3465
|
bucketName: string;
|
3415
3466
|
fileSize: number;
|
3416
3467
|
fileUrl: string | null;
|
3468
|
+
status?: string | undefined;
|
3417
3469
|
} | null | undefined;
|
3418
3470
|
extension?: {
|
3419
3471
|
id: string;
|
@@ -3543,6 +3595,7 @@ export declare const telephonyCdrContract: {
|
|
3543
3595
|
bucketName: string;
|
3544
3596
|
fileSize: number;
|
3545
3597
|
fileUrl: string | null;
|
3598
|
+
status?: string | undefined;
|
3546
3599
|
};
|
3547
3600
|
}[];
|
3548
3601
|
}[];
|
@@ -3619,6 +3672,7 @@ export declare const telephonyCdrContract: {
|
|
3619
3672
|
bucketName: string;
|
3620
3673
|
fileSize: number;
|
3621
3674
|
fileUrl: string | null;
|
3675
|
+
status?: string | undefined;
|
3622
3676
|
} | null | undefined;
|
3623
3677
|
extension?: {
|
3624
3678
|
id: string;
|
@@ -3754,6 +3808,7 @@ export declare const telephonyCdrContract: {
|
|
3754
3808
|
bucketName: string;
|
3755
3809
|
fileSize: number;
|
3756
3810
|
fileUrl: string | null;
|
3811
|
+
status?: string | undefined;
|
3757
3812
|
};
|
3758
3813
|
}[];
|
3759
3814
|
}[];
|
@@ -3830,6 +3885,7 @@ export declare const telephonyCdrContract: {
|
|
3830
3885
|
bucketName: string;
|
3831
3886
|
fileSize: number;
|
3832
3887
|
fileUrl: string | null;
|
3888
|
+
status?: string | undefined;
|
3833
3889
|
} | null | undefined;
|
3834
3890
|
extension?: {
|
3835
3891
|
id: string;
|
@@ -3965,6 +4021,7 @@ export declare const telephonyCdrContract: {
|
|
3965
4021
|
bucketName: string;
|
3966
4022
|
fileSize: number;
|
3967
4023
|
fileUrl: string | null;
|
4024
|
+
status?: string | undefined;
|
3968
4025
|
};
|
3969
4026
|
}[];
|
3970
4027
|
}[];
|
@@ -4041,6 +4098,7 @@ export declare const telephonyCdrContract: {
|
|
4041
4098
|
bucketName: string;
|
4042
4099
|
fileSize: number;
|
4043
4100
|
fileUrl: string | null;
|
4101
|
+
status?: string | undefined;
|
4044
4102
|
} | null | undefined;
|
4045
4103
|
extension?: {
|
4046
4104
|
id: string;
|
@@ -4499,6 +4557,7 @@ export declare const telephonyCdrContract: {
|
|
4499
4557
|
fileSize: z.ZodNumber;
|
4500
4558
|
fileKey: z.ZodString;
|
4501
4559
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4560
|
+
status: z.ZodOptional<z.ZodString>;
|
4502
4561
|
}, "strip", z.ZodTypeAny, {
|
4503
4562
|
id: string;
|
4504
4563
|
createdAt: Date;
|
@@ -4509,6 +4568,7 @@ export declare const telephonyCdrContract: {
|
|
4509
4568
|
bucketName: string;
|
4510
4569
|
fileSize: number;
|
4511
4570
|
fileUrl: string | null;
|
4571
|
+
status?: string | undefined;
|
4512
4572
|
}, {
|
4513
4573
|
id: string;
|
4514
4574
|
createdAt: Date;
|
@@ -4519,6 +4579,7 @@ export declare const telephonyCdrContract: {
|
|
4519
4579
|
bucketName: string;
|
4520
4580
|
fileSize: number;
|
4521
4581
|
fileUrl: string | null;
|
4582
|
+
status?: string | undefined;
|
4522
4583
|
}>;
|
4523
4584
|
}, "strip", z.ZodTypeAny, {
|
4524
4585
|
id: string;
|
@@ -4536,6 +4597,7 @@ export declare const telephonyCdrContract: {
|
|
4536
4597
|
bucketName: string;
|
4537
4598
|
fileSize: number;
|
4538
4599
|
fileUrl: string | null;
|
4600
|
+
status?: string | undefined;
|
4539
4601
|
};
|
4540
4602
|
}, {
|
4541
4603
|
id: string;
|
@@ -4553,6 +4615,7 @@ export declare const telephonyCdrContract: {
|
|
4553
4615
|
bucketName: string;
|
4554
4616
|
fileSize: number;
|
4555
4617
|
fileUrl: string | null;
|
4618
|
+
status?: string | undefined;
|
4556
4619
|
};
|
4557
4620
|
}>, "many">;
|
4558
4621
|
}, "strip", z.ZodTypeAny, {
|
@@ -4594,6 +4657,7 @@ export declare const telephonyCdrContract: {
|
|
4594
4657
|
bucketName: string;
|
4595
4658
|
fileSize: number;
|
4596
4659
|
fileUrl: string | null;
|
4660
|
+
status?: string | undefined;
|
4597
4661
|
};
|
4598
4662
|
}[];
|
4599
4663
|
}, {
|
@@ -4635,6 +4699,7 @@ export declare const telephonyCdrContract: {
|
|
4635
4699
|
bucketName: string;
|
4636
4700
|
fileSize: number;
|
4637
4701
|
fileUrl: string | null;
|
4702
|
+
status?: string | undefined;
|
4638
4703
|
};
|
4639
4704
|
}[];
|
4640
4705
|
}>, "many">;
|
@@ -4789,6 +4854,7 @@ export declare const telephonyCdrContract: {
|
|
4789
4854
|
bucketName: string;
|
4790
4855
|
fileSize: number;
|
4791
4856
|
fileUrl: string | null;
|
4857
|
+
status?: string | undefined;
|
4792
4858
|
};
|
4793
4859
|
}[];
|
4794
4860
|
}[];
|
@@ -4891,6 +4957,7 @@ export declare const telephonyCdrContract: {
|
|
4891
4957
|
bucketName: string;
|
4892
4958
|
fileSize: number;
|
4893
4959
|
fileUrl: string | null;
|
4960
|
+
status?: string | undefined;
|
4894
4961
|
};
|
4895
4962
|
}[];
|
4896
4963
|
}[];
|
@@ -4992,6 +5059,7 @@ export declare const telephonyCdrContract: {
|
|
4992
5059
|
fileSize: z.ZodNumber;
|
4993
5060
|
fileKey: z.ZodString;
|
4994
5061
|
fileUrl: z.ZodNullable<z.ZodString>;
|
5062
|
+
status: z.ZodOptional<z.ZodString>;
|
4995
5063
|
}, "strip", z.ZodTypeAny, {
|
4996
5064
|
id: string;
|
4997
5065
|
createdAt: Date;
|
@@ -5002,6 +5070,7 @@ export declare const telephonyCdrContract: {
|
|
5002
5070
|
bucketName: string;
|
5003
5071
|
fileSize: number;
|
5004
5072
|
fileUrl: string | null;
|
5073
|
+
status?: string | undefined;
|
5005
5074
|
}, {
|
5006
5075
|
id: string;
|
5007
5076
|
createdAt: Date;
|
@@ -5012,6 +5081,7 @@ export declare const telephonyCdrContract: {
|
|
5012
5081
|
bucketName: string;
|
5013
5082
|
fileSize: number;
|
5014
5083
|
fileUrl: string | null;
|
5084
|
+
status?: string | undefined;
|
5015
5085
|
}>>>;
|
5016
5086
|
serialNumber: z.ZodNullable<z.ZodString>;
|
5017
5087
|
extensionId: z.ZodNullable<z.ZodString>;
|
@@ -5417,6 +5487,7 @@ export declare const telephonyCdrContract: {
|
|
5417
5487
|
bucketName: string;
|
5418
5488
|
fileSize: number;
|
5419
5489
|
fileUrl: string | null;
|
5490
|
+
status?: string | undefined;
|
5420
5491
|
};
|
5421
5492
|
}[];
|
5422
5493
|
}[];
|
@@ -5493,6 +5564,7 @@ export declare const telephonyCdrContract: {
|
|
5493
5564
|
bucketName: string;
|
5494
5565
|
fileSize: number;
|
5495
5566
|
fileUrl: string | null;
|
5567
|
+
status?: string | undefined;
|
5496
5568
|
} | null | undefined;
|
5497
5569
|
extension?: {
|
5498
5570
|
id: string;
|
@@ -5622,6 +5694,7 @@ export declare const telephonyCdrContract: {
|
|
5622
5694
|
bucketName: string;
|
5623
5695
|
fileSize: number;
|
5624
5696
|
fileUrl: string | null;
|
5697
|
+
status?: string | undefined;
|
5625
5698
|
};
|
5626
5699
|
}[];
|
5627
5700
|
}[];
|
@@ -5698,6 +5771,7 @@ export declare const telephonyCdrContract: {
|
|
5698
5771
|
bucketName: string;
|
5699
5772
|
fileSize: number;
|
5700
5773
|
fileUrl: string | null;
|
5774
|
+
status?: string | undefined;
|
5701
5775
|
} | null | undefined;
|
5702
5776
|
extension?: {
|
5703
5777
|
id: string;
|
@@ -5833,6 +5907,7 @@ export declare const telephonyCdrContract: {
|
|
5833
5907
|
bucketName: string;
|
5834
5908
|
fileSize: number;
|
5835
5909
|
fileUrl: string | null;
|
5910
|
+
status?: string | undefined;
|
5836
5911
|
};
|
5837
5912
|
}[];
|
5838
5913
|
}[];
|
@@ -5909,6 +5984,7 @@ export declare const telephonyCdrContract: {
|
|
5909
5984
|
bucketName: string;
|
5910
5985
|
fileSize: number;
|
5911
5986
|
fileUrl: string | null;
|
5987
|
+
status?: string | undefined;
|
5912
5988
|
} | null | undefined;
|
5913
5989
|
extension?: {
|
5914
5990
|
id: string;
|
@@ -6044,6 +6120,7 @@ export declare const telephonyCdrContract: {
|
|
6044
6120
|
bucketName: string;
|
6045
6121
|
fileSize: number;
|
6046
6122
|
fileUrl: string | null;
|
6123
|
+
status?: string | undefined;
|
6047
6124
|
};
|
6048
6125
|
}[];
|
6049
6126
|
}[];
|
@@ -6120,6 +6197,7 @@ export declare const telephonyCdrContract: {
|
|
6120
6197
|
bucketName: string;
|
6121
6198
|
fileSize: number;
|
6122
6199
|
fileUrl: string | null;
|
6200
|
+
status?: string | undefined;
|
6123
6201
|
} | null | undefined;
|
6124
6202
|
extension?: {
|
6125
6203
|
id: string;
|
@@ -7000,5 +7078,576 @@ export declare const telephonyCdrContract: {
|
|
7000
7078
|
'x-client-timezone'?: string | undefined;
|
7001
7079
|
}>>>;
|
7002
7080
|
};
|
7081
|
+
getTrunks: {
|
7082
|
+
method: "GET";
|
7083
|
+
query: null;
|
7084
|
+
responses: {
|
7085
|
+
200: z.ZodObject<{
|
7086
|
+
requestId: z.ZodString;
|
7087
|
+
trunks: z.ZodArray<z.ZodObject<{
|
7088
|
+
id: z.ZodString;
|
7089
|
+
createdAt: z.ZodDate;
|
7090
|
+
updatedAt: z.ZodDate;
|
7091
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7092
|
+
trunkId: z.ZodNullable<z.ZodString>;
|
7093
|
+
trunk: z.ZodNullable<z.ZodString>;
|
7094
|
+
}, "strip", z.ZodTypeAny, {
|
7095
|
+
id: string;
|
7096
|
+
createdAt: Date;
|
7097
|
+
updatedAt: Date;
|
7098
|
+
deletedAt: Date | null;
|
7099
|
+
trunkId: string | null;
|
7100
|
+
trunk: string | null;
|
7101
|
+
}, {
|
7102
|
+
id: string;
|
7103
|
+
createdAt: Date;
|
7104
|
+
updatedAt: Date;
|
7105
|
+
deletedAt: Date | null;
|
7106
|
+
trunkId: string | null;
|
7107
|
+
trunk: string | null;
|
7108
|
+
}>, "many">;
|
7109
|
+
}, "strip", z.ZodTypeAny, {
|
7110
|
+
requestId: string;
|
7111
|
+
trunks: {
|
7112
|
+
id: string;
|
7113
|
+
createdAt: Date;
|
7114
|
+
updatedAt: Date;
|
7115
|
+
deletedAt: Date | null;
|
7116
|
+
trunkId: string | null;
|
7117
|
+
trunk: string | null;
|
7118
|
+
}[];
|
7119
|
+
}, {
|
7120
|
+
requestId: string;
|
7121
|
+
trunks: {
|
7122
|
+
id: string;
|
7123
|
+
createdAt: Date;
|
7124
|
+
updatedAt: Date;
|
7125
|
+
deletedAt: Date | null;
|
7126
|
+
trunkId: string | null;
|
7127
|
+
trunk: string | null;
|
7128
|
+
}[];
|
7129
|
+
}>;
|
7130
|
+
401: z.ZodObject<{
|
7131
|
+
message: z.ZodString;
|
7132
|
+
error: z.ZodAny;
|
7133
|
+
}, "strip", z.ZodTypeAny, {
|
7134
|
+
message: string;
|
7135
|
+
error?: any;
|
7136
|
+
}, {
|
7137
|
+
message: string;
|
7138
|
+
error?: any;
|
7139
|
+
}>;
|
7140
|
+
};
|
7141
|
+
path: "telephony-cdr/trunks";
|
7142
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
7143
|
+
'x-tenant': z.ZodString;
|
7144
|
+
authorization: z.ZodString;
|
7145
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
7146
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
7147
|
+
}, "strip", z.ZodTypeAny, {
|
7148
|
+
'x-tenant': string;
|
7149
|
+
authorization: string;
|
7150
|
+
'x-client-timezone': string;
|
7151
|
+
'x-code'?: string | undefined;
|
7152
|
+
}, {
|
7153
|
+
'x-tenant': string;
|
7154
|
+
authorization: string;
|
7155
|
+
'x-code'?: string | undefined;
|
7156
|
+
'x-client-timezone'?: string | undefined;
|
7157
|
+
}>>>;
|
7158
|
+
};
|
7159
|
+
getQueueList: {
|
7160
|
+
method: "GET";
|
7161
|
+
query: null;
|
7162
|
+
responses: {
|
7163
|
+
200: z.ZodObject<{
|
7164
|
+
requestId: z.ZodString;
|
7165
|
+
queues: z.ZodArray<z.ZodObject<{
|
7166
|
+
id: z.ZodString;
|
7167
|
+
createdAt: z.ZodDate;
|
7168
|
+
updatedAt: z.ZodDate;
|
7169
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7170
|
+
queueId: z.ZodNumber;
|
7171
|
+
queueName: z.ZodString;
|
7172
|
+
queueNumber: z.ZodString;
|
7173
|
+
maximumWaitingTime: z.ZodNumber;
|
7174
|
+
}, "strip", z.ZodTypeAny, {
|
7175
|
+
id: string;
|
7176
|
+
createdAt: Date;
|
7177
|
+
updatedAt: Date;
|
7178
|
+
deletedAt: Date | null;
|
7179
|
+
queueId: number;
|
7180
|
+
queueName: string;
|
7181
|
+
queueNumber: string;
|
7182
|
+
maximumWaitingTime: number;
|
7183
|
+
}, {
|
7184
|
+
id: string;
|
7185
|
+
createdAt: Date;
|
7186
|
+
updatedAt: Date;
|
7187
|
+
deletedAt: Date | null;
|
7188
|
+
queueId: number;
|
7189
|
+
queueName: string;
|
7190
|
+
queueNumber: string;
|
7191
|
+
maximumWaitingTime: number;
|
7192
|
+
}>, "many">;
|
7193
|
+
}, "strip", z.ZodTypeAny, {
|
7194
|
+
requestId: string;
|
7195
|
+
queues: {
|
7196
|
+
id: string;
|
7197
|
+
createdAt: Date;
|
7198
|
+
updatedAt: Date;
|
7199
|
+
deletedAt: Date | null;
|
7200
|
+
queueId: number;
|
7201
|
+
queueName: string;
|
7202
|
+
queueNumber: string;
|
7203
|
+
maximumWaitingTime: number;
|
7204
|
+
}[];
|
7205
|
+
}, {
|
7206
|
+
requestId: string;
|
7207
|
+
queues: {
|
7208
|
+
id: string;
|
7209
|
+
createdAt: Date;
|
7210
|
+
updatedAt: Date;
|
7211
|
+
deletedAt: Date | null;
|
7212
|
+
queueId: number;
|
7213
|
+
queueName: string;
|
7214
|
+
queueNumber: string;
|
7215
|
+
maximumWaitingTime: number;
|
7216
|
+
}[];
|
7217
|
+
}>;
|
7218
|
+
401: z.ZodObject<{
|
7219
|
+
message: z.ZodString;
|
7220
|
+
error: z.ZodAny;
|
7221
|
+
}, "strip", z.ZodTypeAny, {
|
7222
|
+
message: string;
|
7223
|
+
error?: any;
|
7224
|
+
}, {
|
7225
|
+
message: string;
|
7226
|
+
error?: any;
|
7227
|
+
}>;
|
7228
|
+
};
|
7229
|
+
path: "telephony-cdr/queues";
|
7230
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
7231
|
+
'x-tenant': z.ZodString;
|
7232
|
+
authorization: z.ZodString;
|
7233
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
7234
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
7235
|
+
}, "strip", z.ZodTypeAny, {
|
7236
|
+
'x-tenant': string;
|
7237
|
+
authorization: string;
|
7238
|
+
'x-client-timezone': string;
|
7239
|
+
'x-code'?: string | undefined;
|
7240
|
+
}, {
|
7241
|
+
'x-tenant': string;
|
7242
|
+
authorization: string;
|
7243
|
+
'x-code'?: string | undefined;
|
7244
|
+
'x-client-timezone'?: string | undefined;
|
7245
|
+
}>>>;
|
7246
|
+
};
|
7247
|
+
getExtensionList: {
|
7248
|
+
method: "GET";
|
7249
|
+
query: null;
|
7250
|
+
responses: {
|
7251
|
+
200: z.ZodObject<{
|
7252
|
+
requestId: z.ZodString;
|
7253
|
+
extensions: z.ZodArray<z.ZodObject<{
|
7254
|
+
id: z.ZodString;
|
7255
|
+
createdAt: z.ZodDate;
|
7256
|
+
updatedAt: z.ZodDate;
|
7257
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7258
|
+
user: z.ZodNullable<z.ZodOptional<z.ZodObject<Omit<{
|
7259
|
+
id: z.ZodString;
|
7260
|
+
createdAt: z.ZodDate;
|
7261
|
+
updatedAt: z.ZodDate;
|
7262
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7263
|
+
name: z.ZodString;
|
7264
|
+
email: z.ZodString;
|
7265
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
7266
|
+
password: z.ZodString;
|
7267
|
+
address: z.ZodNullable<z.ZodString>;
|
7268
|
+
phone: z.ZodNullable<z.ZodString>;
|
7269
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
7270
|
+
roles: z.ZodArray<z.ZodObject<{
|
7271
|
+
id: z.ZodString;
|
7272
|
+
createdAt: z.ZodDate;
|
7273
|
+
updatedAt: z.ZodDate;
|
7274
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7275
|
+
systemName: z.ZodString;
|
7276
|
+
displayName: z.ZodString;
|
7277
|
+
description: z.ZodNullable<z.ZodString>;
|
7278
|
+
permissions: z.ZodArray<z.ZodObject<{
|
7279
|
+
id: z.ZodString;
|
7280
|
+
createdAt: z.ZodDate;
|
7281
|
+
updatedAt: z.ZodDate;
|
7282
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7283
|
+
systemName: z.ZodString;
|
7284
|
+
displayName: z.ZodString;
|
7285
|
+
description: z.ZodNullable<z.ZodString>;
|
7286
|
+
}, "strip", z.ZodTypeAny, {
|
7287
|
+
id: string;
|
7288
|
+
description: string | null;
|
7289
|
+
createdAt: Date;
|
7290
|
+
updatedAt: Date;
|
7291
|
+
deletedAt: Date | null;
|
7292
|
+
systemName: string;
|
7293
|
+
displayName: string;
|
7294
|
+
}, {
|
7295
|
+
id: string;
|
7296
|
+
description: string | null;
|
7297
|
+
createdAt: Date;
|
7298
|
+
updatedAt: Date;
|
7299
|
+
deletedAt: Date | null;
|
7300
|
+
systemName: string;
|
7301
|
+
displayName: string;
|
7302
|
+
}>, "many">;
|
7303
|
+
}, "strip", z.ZodTypeAny, {
|
7304
|
+
id: string;
|
7305
|
+
description: string | null;
|
7306
|
+
createdAt: Date;
|
7307
|
+
updatedAt: Date;
|
7308
|
+
deletedAt: Date | null;
|
7309
|
+
systemName: string;
|
7310
|
+
displayName: string;
|
7311
|
+
permissions: {
|
7312
|
+
id: string;
|
7313
|
+
description: string | null;
|
7314
|
+
createdAt: Date;
|
7315
|
+
updatedAt: Date;
|
7316
|
+
deletedAt: Date | null;
|
7317
|
+
systemName: string;
|
7318
|
+
displayName: string;
|
7319
|
+
}[];
|
7320
|
+
}, {
|
7321
|
+
id: string;
|
7322
|
+
description: string | null;
|
7323
|
+
createdAt: Date;
|
7324
|
+
updatedAt: Date;
|
7325
|
+
deletedAt: Date | null;
|
7326
|
+
systemName: string;
|
7327
|
+
displayName: string;
|
7328
|
+
permissions: {
|
7329
|
+
id: string;
|
7330
|
+
description: string | null;
|
7331
|
+
createdAt: Date;
|
7332
|
+
updatedAt: Date;
|
7333
|
+
deletedAt: Date | null;
|
7334
|
+
systemName: string;
|
7335
|
+
displayName: string;
|
7336
|
+
}[];
|
7337
|
+
}>, "many">;
|
7338
|
+
extension: z.ZodObject<{
|
7339
|
+
id: z.ZodString;
|
7340
|
+
createdAt: z.ZodDate;
|
7341
|
+
updatedAt: z.ZodDate;
|
7342
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
7343
|
+
userId: z.ZodNullable<z.ZodString>;
|
7344
|
+
sipServerUrl: z.ZodString;
|
7345
|
+
sipUserName: z.ZodString;
|
7346
|
+
webphoneLoginUser: z.ZodString;
|
7347
|
+
extensionId: z.ZodNumber;
|
7348
|
+
extensionName: z.ZodString;
|
7349
|
+
telephonySignature: z.ZodNullable<z.ZodString>;
|
7350
|
+
}, "strip", z.ZodTypeAny, {
|
7351
|
+
id: string;
|
7352
|
+
createdAt: Date;
|
7353
|
+
updatedAt: Date;
|
7354
|
+
deletedAt: Date | null;
|
7355
|
+
userId: string | null;
|
7356
|
+
sipServerUrl: string;
|
7357
|
+
sipUserName: string;
|
7358
|
+
webphoneLoginUser: string;
|
7359
|
+
extensionId: number;
|
7360
|
+
extensionName: string;
|
7361
|
+
telephonySignature: string | null;
|
7362
|
+
}, {
|
7363
|
+
id: string;
|
7364
|
+
createdAt: Date;
|
7365
|
+
updatedAt: Date;
|
7366
|
+
deletedAt: Date | null;
|
7367
|
+
userId: string | null;
|
7368
|
+
sipServerUrl: string;
|
7369
|
+
sipUserName: string;
|
7370
|
+
webphoneLoginUser: string;
|
7371
|
+
extensionId: number;
|
7372
|
+
extensionName: string;
|
7373
|
+
telephonySignature: string | null;
|
7374
|
+
}>;
|
7375
|
+
}, "extension">, "strip", z.ZodTypeAny, {
|
7376
|
+
id: string;
|
7377
|
+
address: string | null;
|
7378
|
+
name: string;
|
7379
|
+
email: string;
|
7380
|
+
createdAt: Date;
|
7381
|
+
updatedAt: Date;
|
7382
|
+
deletedAt: Date | null;
|
7383
|
+
emailVerifiedAt: Date | null;
|
7384
|
+
password: string;
|
7385
|
+
phone: string | null;
|
7386
|
+
notificationCount: number | null;
|
7387
|
+
roles: {
|
7388
|
+
id: string;
|
7389
|
+
description: string | null;
|
7390
|
+
createdAt: Date;
|
7391
|
+
updatedAt: Date;
|
7392
|
+
deletedAt: Date | null;
|
7393
|
+
systemName: string;
|
7394
|
+
displayName: string;
|
7395
|
+
permissions: {
|
7396
|
+
id: string;
|
7397
|
+
description: string | null;
|
7398
|
+
createdAt: Date;
|
7399
|
+
updatedAt: Date;
|
7400
|
+
deletedAt: Date | null;
|
7401
|
+
systemName: string;
|
7402
|
+
displayName: string;
|
7403
|
+
}[];
|
7404
|
+
}[];
|
7405
|
+
}, {
|
7406
|
+
id: string;
|
7407
|
+
address: string | null;
|
7408
|
+
name: string;
|
7409
|
+
email: string;
|
7410
|
+
createdAt: Date;
|
7411
|
+
updatedAt: Date;
|
7412
|
+
deletedAt: Date | null;
|
7413
|
+
emailVerifiedAt: Date | null;
|
7414
|
+
password: string;
|
7415
|
+
phone: string | null;
|
7416
|
+
notificationCount: number | null;
|
7417
|
+
roles: {
|
7418
|
+
id: string;
|
7419
|
+
description: string | null;
|
7420
|
+
createdAt: Date;
|
7421
|
+
updatedAt: Date;
|
7422
|
+
deletedAt: Date | null;
|
7423
|
+
systemName: string;
|
7424
|
+
displayName: string;
|
7425
|
+
permissions: {
|
7426
|
+
id: string;
|
7427
|
+
description: string | null;
|
7428
|
+
createdAt: Date;
|
7429
|
+
updatedAt: Date;
|
7430
|
+
deletedAt: Date | null;
|
7431
|
+
systemName: string;
|
7432
|
+
displayName: string;
|
7433
|
+
}[];
|
7434
|
+
}[];
|
7435
|
+
}>>>;
|
7436
|
+
sipServerUrl: z.ZodNullable<z.ZodString>;
|
7437
|
+
sipUserName: z.ZodNullable<z.ZodString>;
|
7438
|
+
sipPassword: z.ZodNullable<z.ZodString>;
|
7439
|
+
yeastarSignature: z.ZodNullable<z.ZodString>;
|
7440
|
+
userId: z.ZodNullable<z.ZodString>;
|
7441
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
7442
|
+
extensionName: z.ZodNullable<z.ZodString>;
|
7443
|
+
}, "strip", z.ZodTypeAny, {
|
7444
|
+
id: string;
|
7445
|
+
createdAt: Date;
|
7446
|
+
updatedAt: Date;
|
7447
|
+
deletedAt: Date | null;
|
7448
|
+
userId: string | null;
|
7449
|
+
sipServerUrl: string | null;
|
7450
|
+
sipUserName: string | null;
|
7451
|
+
extensionId: string | null;
|
7452
|
+
extensionName: string | null;
|
7453
|
+
sipPassword: string | null;
|
7454
|
+
yeastarSignature: string | null;
|
7455
|
+
user?: {
|
7456
|
+
id: string;
|
7457
|
+
address: string | null;
|
7458
|
+
name: string;
|
7459
|
+
email: string;
|
7460
|
+
createdAt: Date;
|
7461
|
+
updatedAt: Date;
|
7462
|
+
deletedAt: Date | null;
|
7463
|
+
emailVerifiedAt: Date | null;
|
7464
|
+
password: string;
|
7465
|
+
phone: string | null;
|
7466
|
+
notificationCount: number | null;
|
7467
|
+
roles: {
|
7468
|
+
id: string;
|
7469
|
+
description: string | null;
|
7470
|
+
createdAt: Date;
|
7471
|
+
updatedAt: Date;
|
7472
|
+
deletedAt: Date | null;
|
7473
|
+
systemName: string;
|
7474
|
+
displayName: string;
|
7475
|
+
permissions: {
|
7476
|
+
id: string;
|
7477
|
+
description: string | null;
|
7478
|
+
createdAt: Date;
|
7479
|
+
updatedAt: Date;
|
7480
|
+
deletedAt: Date | null;
|
7481
|
+
systemName: string;
|
7482
|
+
displayName: string;
|
7483
|
+
}[];
|
7484
|
+
}[];
|
7485
|
+
} | null | undefined;
|
7486
|
+
}, {
|
7487
|
+
id: string;
|
7488
|
+
createdAt: Date;
|
7489
|
+
updatedAt: Date;
|
7490
|
+
deletedAt: Date | null;
|
7491
|
+
userId: string | null;
|
7492
|
+
sipServerUrl: string | null;
|
7493
|
+
sipUserName: string | null;
|
7494
|
+
extensionId: string | null;
|
7495
|
+
extensionName: string | null;
|
7496
|
+
sipPassword: string | null;
|
7497
|
+
yeastarSignature: string | null;
|
7498
|
+
user?: {
|
7499
|
+
id: string;
|
7500
|
+
address: string | null;
|
7501
|
+
name: string;
|
7502
|
+
email: string;
|
7503
|
+
createdAt: Date;
|
7504
|
+
updatedAt: Date;
|
7505
|
+
deletedAt: Date | null;
|
7506
|
+
emailVerifiedAt: Date | null;
|
7507
|
+
password: string;
|
7508
|
+
phone: string | null;
|
7509
|
+
notificationCount: number | null;
|
7510
|
+
roles: {
|
7511
|
+
id: string;
|
7512
|
+
description: string | null;
|
7513
|
+
createdAt: Date;
|
7514
|
+
updatedAt: Date;
|
7515
|
+
deletedAt: Date | null;
|
7516
|
+
systemName: string;
|
7517
|
+
displayName: string;
|
7518
|
+
permissions: {
|
7519
|
+
id: string;
|
7520
|
+
description: string | null;
|
7521
|
+
createdAt: Date;
|
7522
|
+
updatedAt: Date;
|
7523
|
+
deletedAt: Date | null;
|
7524
|
+
systemName: string;
|
7525
|
+
displayName: string;
|
7526
|
+
}[];
|
7527
|
+
}[];
|
7528
|
+
} | null | undefined;
|
7529
|
+
}>, "many">;
|
7530
|
+
}, "strip", z.ZodTypeAny, {
|
7531
|
+
requestId: string;
|
7532
|
+
extensions: {
|
7533
|
+
id: string;
|
7534
|
+
createdAt: Date;
|
7535
|
+
updatedAt: Date;
|
7536
|
+
deletedAt: Date | null;
|
7537
|
+
userId: string | null;
|
7538
|
+
sipServerUrl: string | null;
|
7539
|
+
sipUserName: string | null;
|
7540
|
+
extensionId: string | null;
|
7541
|
+
extensionName: string | null;
|
7542
|
+
sipPassword: string | null;
|
7543
|
+
yeastarSignature: string | null;
|
7544
|
+
user?: {
|
7545
|
+
id: string;
|
7546
|
+
address: string | null;
|
7547
|
+
name: string;
|
7548
|
+
email: string;
|
7549
|
+
createdAt: Date;
|
7550
|
+
updatedAt: Date;
|
7551
|
+
deletedAt: Date | null;
|
7552
|
+
emailVerifiedAt: Date | null;
|
7553
|
+
password: string;
|
7554
|
+
phone: string | null;
|
7555
|
+
notificationCount: number | null;
|
7556
|
+
roles: {
|
7557
|
+
id: string;
|
7558
|
+
description: string | null;
|
7559
|
+
createdAt: Date;
|
7560
|
+
updatedAt: Date;
|
7561
|
+
deletedAt: Date | null;
|
7562
|
+
systemName: string;
|
7563
|
+
displayName: string;
|
7564
|
+
permissions: {
|
7565
|
+
id: string;
|
7566
|
+
description: string | null;
|
7567
|
+
createdAt: Date;
|
7568
|
+
updatedAt: Date;
|
7569
|
+
deletedAt: Date | null;
|
7570
|
+
systemName: string;
|
7571
|
+
displayName: string;
|
7572
|
+
}[];
|
7573
|
+
}[];
|
7574
|
+
} | null | undefined;
|
7575
|
+
}[];
|
7576
|
+
}, {
|
7577
|
+
requestId: string;
|
7578
|
+
extensions: {
|
7579
|
+
id: string;
|
7580
|
+
createdAt: Date;
|
7581
|
+
updatedAt: Date;
|
7582
|
+
deletedAt: Date | null;
|
7583
|
+
userId: string | null;
|
7584
|
+
sipServerUrl: string | null;
|
7585
|
+
sipUserName: string | null;
|
7586
|
+
extensionId: string | null;
|
7587
|
+
extensionName: string | null;
|
7588
|
+
sipPassword: string | null;
|
7589
|
+
yeastarSignature: string | null;
|
7590
|
+
user?: {
|
7591
|
+
id: string;
|
7592
|
+
address: string | null;
|
7593
|
+
name: string;
|
7594
|
+
email: string;
|
7595
|
+
createdAt: Date;
|
7596
|
+
updatedAt: Date;
|
7597
|
+
deletedAt: Date | null;
|
7598
|
+
emailVerifiedAt: Date | null;
|
7599
|
+
password: string;
|
7600
|
+
phone: string | null;
|
7601
|
+
notificationCount: number | null;
|
7602
|
+
roles: {
|
7603
|
+
id: string;
|
7604
|
+
description: string | null;
|
7605
|
+
createdAt: Date;
|
7606
|
+
updatedAt: Date;
|
7607
|
+
deletedAt: Date | null;
|
7608
|
+
systemName: string;
|
7609
|
+
displayName: string;
|
7610
|
+
permissions: {
|
7611
|
+
id: string;
|
7612
|
+
description: string | null;
|
7613
|
+
createdAt: Date;
|
7614
|
+
updatedAt: Date;
|
7615
|
+
deletedAt: Date | null;
|
7616
|
+
systemName: string;
|
7617
|
+
displayName: string;
|
7618
|
+
}[];
|
7619
|
+
}[];
|
7620
|
+
} | null | undefined;
|
7621
|
+
}[];
|
7622
|
+
}>;
|
7623
|
+
401: z.ZodObject<{
|
7624
|
+
message: z.ZodString;
|
7625
|
+
error: z.ZodAny;
|
7626
|
+
}, "strip", z.ZodTypeAny, {
|
7627
|
+
message: string;
|
7628
|
+
error?: any;
|
7629
|
+
}, {
|
7630
|
+
message: string;
|
7631
|
+
error?: any;
|
7632
|
+
}>;
|
7633
|
+
};
|
7634
|
+
path: "telephony-cdr/extensions";
|
7635
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
7636
|
+
'x-tenant': z.ZodString;
|
7637
|
+
authorization: z.ZodString;
|
7638
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
7639
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
7640
|
+
}, "strip", z.ZodTypeAny, {
|
7641
|
+
'x-tenant': string;
|
7642
|
+
authorization: string;
|
7643
|
+
'x-client-timezone': string;
|
7644
|
+
'x-code'?: string | undefined;
|
7645
|
+
}, {
|
7646
|
+
'x-tenant': string;
|
7647
|
+
authorization: string;
|
7648
|
+
'x-code'?: string | undefined;
|
7649
|
+
'x-client-timezone'?: string | undefined;
|
7650
|
+
}>>>;
|
7651
|
+
};
|
7003
7652
|
};
|
7004
7653
|
//# sourceMappingURL=index.d.ts.map
|