@kl1/contracts 1.0.91 → 1.0.92

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.
@@ -158243,7 +158243,7 @@ export declare const telephonyContract: {
158243
158243
  callFrom: import("zod").ZodOptional<import("zod").ZodString>;
158244
158244
  callTo: import("zod").ZodOptional<import("zod").ZodString>;
158245
158245
  trunk: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
158246
- queueStatus: import("zod").ZodOptional<import("zod").ZodBoolean>;
158246
+ queueStatus: import("zod").ZodOptional<import("zod").ZodString>;
158247
158247
  }, "strip", import("zod").ZodTypeAny, {
158248
158248
  page: number;
158249
158249
  pageSize: number;
@@ -158253,7 +158253,7 @@ export declare const telephonyContract: {
158253
158253
  callFrom?: string | undefined;
158254
158254
  callTo?: string | undefined;
158255
158255
  trunk?: string[] | undefined;
158256
- queueStatus?: boolean | undefined;
158256
+ queueStatus?: string | undefined;
158257
158257
  }, {
158258
158258
  page?: number | undefined;
158259
158259
  pageSize?: number | undefined;
@@ -158263,7 +158263,7 @@ export declare const telephonyContract: {
158263
158263
  callFrom?: string | undefined;
158264
158264
  callTo?: string | undefined;
158265
158265
  trunk?: string[] | undefined;
158266
- queueStatus?: boolean | undefined;
158266
+ queueStatus?: string | undefined;
158267
158267
  }>;
158268
158268
  responses: {
158269
158269
  200: import("zod").ZodObject<{
@@ -160967,7 +160967,7 @@ export declare const telephonyContract: {
160967
160967
  callFrom: import("zod").ZodOptional<import("zod").ZodString>;
160968
160968
  callTo: import("zod").ZodOptional<import("zod").ZodString>;
160969
160969
  trunk: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
160970
- queueStatus: import("zod").ZodOptional<import("zod").ZodBoolean>;
160970
+ queueStatus: import("zod").ZodOptional<import("zod").ZodString>;
160971
160971
  }, "strip", import("zod").ZodTypeAny, {
160972
160972
  page: number;
160973
160973
  pageSize: number;
@@ -160977,7 +160977,7 @@ export declare const telephonyContract: {
160977
160977
  callFrom?: string | undefined;
160978
160978
  callTo?: string | undefined;
160979
160979
  trunk?: string[] | undefined;
160980
- queueStatus?: boolean | undefined;
160980
+ queueStatus?: string | undefined;
160981
160981
  }, {
160982
160982
  page?: number | undefined;
160983
160983
  pageSize?: number | undefined;
@@ -160987,7 +160987,7 @@ export declare const telephonyContract: {
160987
160987
  callFrom?: string | undefined;
160988
160988
  callTo?: string | undefined;
160989
160989
  trunk?: string[] | undefined;
160990
- queueStatus?: boolean | undefined;
160990
+ queueStatus?: string | undefined;
160991
160991
  }>;
160992
160992
  responses: {
160993
160993
  200: import("zod").ZodObject<{
@@ -166428,7 +166428,7 @@ export declare const telephonyContract: {
166428
166428
  callTo: import("zod").ZodOptional<import("zod").ZodString>;
166429
166429
  selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
166430
166430
  trunk: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
166431
- queueStatus: import("zod").ZodOptional<import("zod").ZodBoolean>;
166431
+ queueStatus: import("zod").ZodOptional<import("zod").ZodString>;
166432
166432
  page: import("zod").ZodOptional<import("zod").ZodNumber>;
166433
166433
  pageSize: import("zod").ZodOptional<import("zod").ZodNumber>;
166434
166434
  }, "strip", import("zod").ZodTypeAny, {
@@ -166438,7 +166438,7 @@ export declare const telephonyContract: {
166438
166438
  callTo?: string | undefined;
166439
166439
  selectedDate?: string | undefined;
166440
166440
  trunk?: string[] | undefined;
166441
- queueStatus?: boolean | undefined;
166441
+ queueStatus?: string | undefined;
166442
166442
  page?: number | undefined;
166443
166443
  pageSize?: number | undefined;
166444
166444
  }, {
@@ -166448,7 +166448,7 @@ export declare const telephonyContract: {
166448
166448
  callTo?: string | undefined;
166449
166449
  selectedDate?: string | undefined;
166450
166450
  trunk?: string[] | undefined;
166451
- queueStatus?: boolean | undefined;
166451
+ queueStatus?: string | undefined;
166452
166452
  page?: number | undefined;
166453
166453
  pageSize?: number | undefined;
166454
166454
  }>;
@@ -39,7 +39,7 @@ export declare const telephonyCdrContract: {
39
39
  callFrom: z.ZodOptional<z.ZodString>;
40
40
  callTo: z.ZodOptional<z.ZodString>;
41
41
  trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
42
- queueStatus: z.ZodOptional<z.ZodBoolean>;
42
+ queueStatus: z.ZodOptional<z.ZodString>;
43
43
  }, "strip", z.ZodTypeAny, {
44
44
  page: number;
45
45
  pageSize: number;
@@ -49,7 +49,7 @@ export declare const telephonyCdrContract: {
49
49
  callFrom?: string | undefined;
50
50
  callTo?: string | undefined;
51
51
  trunk?: string[] | undefined;
52
- queueStatus?: boolean | undefined;
52
+ queueStatus?: string | undefined;
53
53
  }, {
54
54
  page?: number | undefined;
55
55
  pageSize?: number | undefined;
@@ -59,7 +59,7 @@ export declare const telephonyCdrContract: {
59
59
  callFrom?: string | undefined;
60
60
  callTo?: string | undefined;
61
61
  trunk?: string[] | undefined;
62
- queueStatus?: boolean | undefined;
62
+ queueStatus?: string | undefined;
63
63
  }>;
64
64
  responses: {
65
65
  200: z.ZodObject<{
@@ -2763,7 +2763,7 @@ export declare const telephonyCdrContract: {
2763
2763
  callFrom: z.ZodOptional<z.ZodString>;
2764
2764
  callTo: z.ZodOptional<z.ZodString>;
2765
2765
  trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2766
- queueStatus: z.ZodOptional<z.ZodBoolean>;
2766
+ queueStatus: z.ZodOptional<z.ZodString>;
2767
2767
  }, "strip", z.ZodTypeAny, {
2768
2768
  page: number;
2769
2769
  pageSize: number;
@@ -2773,7 +2773,7 @@ export declare const telephonyCdrContract: {
2773
2773
  callFrom?: string | undefined;
2774
2774
  callTo?: string | undefined;
2775
2775
  trunk?: string[] | undefined;
2776
- queueStatus?: boolean | undefined;
2776
+ queueStatus?: string | undefined;
2777
2777
  }, {
2778
2778
  page?: number | undefined;
2779
2779
  pageSize?: number | undefined;
@@ -2783,7 +2783,7 @@ export declare const telephonyCdrContract: {
2783
2783
  callFrom?: string | undefined;
2784
2784
  callTo?: string | undefined;
2785
2785
  trunk?: string[] | undefined;
2786
- queueStatus?: boolean | undefined;
2786
+ queueStatus?: string | undefined;
2787
2787
  }>;
2788
2788
  responses: {
2789
2789
  200: z.ZodObject<{
@@ -8224,7 +8224,7 @@ export declare const telephonyCdrContract: {
8224
8224
  callTo: z.ZodOptional<z.ZodString>;
8225
8225
  selectedDate: z.ZodOptional<z.ZodString>;
8226
8226
  trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8227
- queueStatus: z.ZodOptional<z.ZodBoolean>;
8227
+ queueStatus: z.ZodOptional<z.ZodString>;
8228
8228
  page: z.ZodOptional<z.ZodNumber>;
8229
8229
  pageSize: z.ZodOptional<z.ZodNumber>;
8230
8230
  }, "strip", z.ZodTypeAny, {
@@ -8234,7 +8234,7 @@ export declare const telephonyCdrContract: {
8234
8234
  callTo?: string | undefined;
8235
8235
  selectedDate?: string | undefined;
8236
8236
  trunk?: string[] | undefined;
8237
- queueStatus?: boolean | undefined;
8237
+ queueStatus?: string | undefined;
8238
8238
  page?: number | undefined;
8239
8239
  pageSize?: number | undefined;
8240
8240
  }, {
@@ -8244,7 +8244,7 @@ export declare const telephonyCdrContract: {
8244
8244
  callTo?: string | undefined;
8245
8245
  selectedDate?: string | undefined;
8246
8246
  trunk?: string[] | undefined;
8247
- queueStatus?: boolean | undefined;
8247
+ queueStatus?: string | undefined;
8248
8248
  page?: number | undefined;
8249
8249
  pageSize?: number | undefined;
8250
8250
  }>;
@@ -54,7 +54,7 @@ export declare const GetAllTelephonyCdrSchema: z.ZodObject<{
54
54
  callFrom: z.ZodOptional<z.ZodString>;
55
55
  callTo: z.ZodOptional<z.ZodString>;
56
56
  trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
57
- queueStatus: z.ZodOptional<z.ZodBoolean>;
57
+ queueStatus: z.ZodOptional<z.ZodString>;
58
58
  }, "strip", z.ZodTypeAny, {
59
59
  page: number;
60
60
  pageSize: number;
@@ -64,7 +64,7 @@ export declare const GetAllTelephonyCdrSchema: z.ZodObject<{
64
64
  callFrom?: string | undefined;
65
65
  callTo?: string | undefined;
66
66
  trunk?: string[] | undefined;
67
- queueStatus?: boolean | undefined;
67
+ queueStatus?: string | undefined;
68
68
  }, {
69
69
  page?: number | undefined;
70
70
  pageSize?: number | undefined;
@@ -74,7 +74,7 @@ export declare const GetAllTelephonyCdrSchema: z.ZodObject<{
74
74
  callFrom?: string | undefined;
75
75
  callTo?: string | undefined;
76
76
  trunk?: string[] | undefined;
77
- queueStatus?: boolean | undefined;
77
+ queueStatus?: string | undefined;
78
78
  }>;
79
79
  export declare const GetRecentTelephonyCdrSchema: z.ZodObject<{
80
80
  page: z.ZodDefault<z.ZodNumber>;
@@ -129,7 +129,7 @@ export declare const GetExportTelephonyCdrSchema: z.ZodObject<{
129
129
  callTo: z.ZodOptional<z.ZodString>;
130
130
  selectedDate: z.ZodOptional<z.ZodString>;
131
131
  trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
132
- queueStatus: z.ZodOptional<z.ZodBoolean>;
132
+ queueStatus: z.ZodOptional<z.ZodString>;
133
133
  page: z.ZodOptional<z.ZodNumber>;
134
134
  pageSize: z.ZodOptional<z.ZodNumber>;
135
135
  }, "strip", z.ZodTypeAny, {
@@ -139,7 +139,7 @@ export declare const GetExportTelephonyCdrSchema: z.ZodObject<{
139
139
  callTo?: string | undefined;
140
140
  selectedDate?: string | undefined;
141
141
  trunk?: string[] | undefined;
142
- queueStatus?: boolean | undefined;
142
+ queueStatus?: string | undefined;
143
143
  page?: number | undefined;
144
144
  pageSize?: number | undefined;
145
145
  }, {
@@ -149,7 +149,7 @@ export declare const GetExportTelephonyCdrSchema: z.ZodObject<{
149
149
  callTo?: string | undefined;
150
150
  selectedDate?: string | undefined;
151
151
  trunk?: string[] | undefined;
152
- queueStatus?: boolean | undefined;
152
+ queueStatus?: string | undefined;
153
153
  page?: number | undefined;
154
154
  pageSize?: number | undefined;
155
155
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.0.91",
3
+ "version": "1.0.92",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",