@kl1/contracts 1.0.71 → 1.0.73
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 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/src/contact/index.d.ts +881 -3
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contract.d.ts +1269 -391
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +8 -8
- package/dist/src/telephony-cdr/schema.d.ts +5 -5
- package/dist/src/telephony-cdr/validation.d.ts +3 -3
- package/package.json +1 -1
@@ -5998,8 +5998,8 @@ export declare const telephonyCdrContract: {
|
|
5998
5998
|
status: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5999
5999
|
callFrom: z.ZodOptional<z.ZodString>;
|
6000
6000
|
callTo: z.ZodOptional<z.ZodString>;
|
6001
|
-
trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6002
6001
|
selectedDate: z.ZodOptional<z.ZodString>;
|
6002
|
+
trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6003
6003
|
page: z.ZodOptional<z.ZodNumber>;
|
6004
6004
|
pageSize: z.ZodOptional<z.ZodNumber>;
|
6005
6005
|
}, "strip", z.ZodTypeAny, {
|
@@ -6007,8 +6007,8 @@ export declare const telephonyCdrContract: {
|
|
6007
6007
|
status?: string[] | undefined;
|
6008
6008
|
callFrom?: string | undefined;
|
6009
6009
|
callTo?: string | undefined;
|
6010
|
-
trunk?: string[] | undefined;
|
6011
6010
|
selectedDate?: string | undefined;
|
6011
|
+
trunk?: string[] | undefined;
|
6012
6012
|
page?: number | undefined;
|
6013
6013
|
pageSize?: number | undefined;
|
6014
6014
|
}, {
|
@@ -6016,8 +6016,8 @@ export declare const telephonyCdrContract: {
|
|
6016
6016
|
status?: string[] | undefined;
|
6017
6017
|
callFrom?: string | undefined;
|
6018
6018
|
callTo?: string | undefined;
|
6019
|
-
trunk?: string[] | undefined;
|
6020
6019
|
selectedDate?: string | undefined;
|
6020
|
+
trunk?: string[] | undefined;
|
6021
6021
|
page?: number | undefined;
|
6022
6022
|
pageSize?: number | undefined;
|
6023
6023
|
}>;
|
@@ -7442,13 +7442,13 @@ export declare const telephonyCdrContract: {
|
|
7442
7442
|
requestId: z.ZodString;
|
7443
7443
|
trunks: z.ZodArray<z.ZodObject<{
|
7444
7444
|
id: z.ZodString;
|
7445
|
-
|
7445
|
+
trunkName: z.ZodString;
|
7446
7446
|
}, "strip", z.ZodTypeAny, {
|
7447
7447
|
id: string;
|
7448
|
-
|
7448
|
+
trunkName: string;
|
7449
7449
|
}, {
|
7450
7450
|
id: string;
|
7451
|
-
|
7451
|
+
trunkName: string;
|
7452
7452
|
}>, "many">;
|
7453
7453
|
status: z.ZodArray<z.ZodEnum<["ANSWERED", "NO ANSWER", "FAILED"]>, "many">;
|
7454
7454
|
type: z.ZodArray<z.ZodEnum<["Inbound", "Outbound", "Internal"]>, "many">;
|
@@ -7458,7 +7458,7 @@ export declare const telephonyCdrContract: {
|
|
7458
7458
|
requestId: string;
|
7459
7459
|
trunks: {
|
7460
7460
|
id: string;
|
7461
|
-
|
7461
|
+
trunkName: string;
|
7462
7462
|
}[];
|
7463
7463
|
}, {
|
7464
7464
|
type: ("Inbound" | "Outbound" | "Internal")[];
|
@@ -7466,7 +7466,7 @@ export declare const telephonyCdrContract: {
|
|
7466
7466
|
requestId: string;
|
7467
7467
|
trunks: {
|
7468
7468
|
id: string;
|
7469
|
-
|
7469
|
+
trunkName: string;
|
7470
7470
|
}[];
|
7471
7471
|
}>;
|
7472
7472
|
401: z.ZodObject<{
|
@@ -2159,13 +2159,13 @@ export declare const TelephonyExtensionListSchema: z.ZodArray<z.ZodObject<{
|
|
2159
2159
|
export declare const TelephonyDropdownListSchema: z.ZodObject<{
|
2160
2160
|
trunks: z.ZodArray<z.ZodObject<{
|
2161
2161
|
id: z.ZodString;
|
2162
|
-
|
2162
|
+
trunkName: z.ZodString;
|
2163
2163
|
}, "strip", z.ZodTypeAny, {
|
2164
2164
|
id: string;
|
2165
|
-
|
2165
|
+
trunkName: string;
|
2166
2166
|
}, {
|
2167
2167
|
id: string;
|
2168
|
-
|
2168
|
+
trunkName: string;
|
2169
2169
|
}>, "many">;
|
2170
2170
|
status: z.ZodArray<z.ZodEnum<["ANSWERED", "NO ANSWER", "FAILED"]>, "many">;
|
2171
2171
|
type: z.ZodArray<z.ZodEnum<["Inbound", "Outbound", "Internal"]>, "many">;
|
@@ -2174,14 +2174,14 @@ export declare const TelephonyDropdownListSchema: z.ZodObject<{
|
|
2174
2174
|
status: ("ANSWERED" | "NO ANSWER" | "FAILED")[];
|
2175
2175
|
trunks: {
|
2176
2176
|
id: string;
|
2177
|
-
|
2177
|
+
trunkName: string;
|
2178
2178
|
}[];
|
2179
2179
|
}, {
|
2180
2180
|
type: ("Inbound" | "Outbound" | "Internal")[];
|
2181
2181
|
status: ("ANSWERED" | "NO ANSWER" | "FAILED")[];
|
2182
2182
|
trunks: {
|
2183
2183
|
id: string;
|
2184
|
-
|
2184
|
+
trunkName: string;
|
2185
2185
|
}[];
|
2186
2186
|
}>;
|
2187
2187
|
//# sourceMappingURL=schema.d.ts.map
|
@@ -124,8 +124,8 @@ export declare const GetExportTelephonyCdrSchema: z.ZodObject<{
|
|
124
124
|
status: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
125
125
|
callFrom: z.ZodOptional<z.ZodString>;
|
126
126
|
callTo: z.ZodOptional<z.ZodString>;
|
127
|
-
trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
128
127
|
selectedDate: z.ZodOptional<z.ZodString>;
|
128
|
+
trunk: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
129
129
|
page: z.ZodOptional<z.ZodNumber>;
|
130
130
|
pageSize: z.ZodOptional<z.ZodNumber>;
|
131
131
|
}, "strip", z.ZodTypeAny, {
|
@@ -133,8 +133,8 @@ export declare const GetExportTelephonyCdrSchema: z.ZodObject<{
|
|
133
133
|
status?: string[] | undefined;
|
134
134
|
callFrom?: string | undefined;
|
135
135
|
callTo?: string | undefined;
|
136
|
-
trunk?: string[] | undefined;
|
137
136
|
selectedDate?: string | undefined;
|
137
|
+
trunk?: string[] | undefined;
|
138
138
|
page?: number | undefined;
|
139
139
|
pageSize?: number | undefined;
|
140
140
|
}, {
|
@@ -142,8 +142,8 @@ export declare const GetExportTelephonyCdrSchema: z.ZodObject<{
|
|
142
142
|
status?: string[] | undefined;
|
143
143
|
callFrom?: string | undefined;
|
144
144
|
callTo?: string | undefined;
|
145
|
-
trunk?: string[] | undefined;
|
146
145
|
selectedDate?: string | undefined;
|
146
|
+
trunk?: string[] | undefined;
|
147
147
|
page?: number | undefined;
|
148
148
|
pageSize?: number | undefined;
|
149
149
|
}>;
|