@kl1/contracts 1.0.45 → 1.0.47
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 +25 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +67 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +64 -0
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +28 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3 -0
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -56443,12 +56443,15 @@ export declare const ticketContract: {
|
|
56443
56443
|
body: import("zod").ZodObject<{
|
56444
56444
|
ticketId: import("zod").ZodString;
|
56445
56445
|
assigneeId: import("zod").ZodString;
|
56446
|
+
reason: import("zod").ZodOptional<import("zod").ZodString>;
|
56446
56447
|
}, "strip", import("zod").ZodTypeAny, {
|
56447
56448
|
assigneeId: string;
|
56448
56449
|
ticketId: string;
|
56450
|
+
reason?: string | undefined;
|
56449
56451
|
}, {
|
56450
56452
|
assigneeId: string;
|
56451
56453
|
ticketId: string;
|
56454
|
+
reason?: string | undefined;
|
56452
56455
|
}>;
|
56453
56456
|
summary: "Change assignee";
|
56454
56457
|
method: "PATCH";
|
@@ -121354,6 +121357,70 @@ export declare const telephonyContract: {
|
|
121354
121357
|
'x-client-timezone'?: string | undefined;
|
121355
121358
|
}>>>;
|
121356
121359
|
};
|
121360
|
+
getDropdownList: {
|
121361
|
+
method: "GET";
|
121362
|
+
query: null;
|
121363
|
+
responses: {
|
121364
|
+
200: import("zod").ZodObject<{
|
121365
|
+
requestId: import("zod").ZodString;
|
121366
|
+
trunks: import("zod").ZodArray<import("zod").ZodObject<{
|
121367
|
+
id: import("zod").ZodString;
|
121368
|
+
trunk: import("zod").ZodString;
|
121369
|
+
}, "strip", import("zod").ZodTypeAny, {
|
121370
|
+
id: string;
|
121371
|
+
trunk: string;
|
121372
|
+
}, {
|
121373
|
+
id: string;
|
121374
|
+
trunk: string;
|
121375
|
+
}>, "many">;
|
121376
|
+
status: import("zod").ZodArray<import("zod").ZodEnum<["ANSWERED", "NO ANSWER", "FAILED"]>, "many">;
|
121377
|
+
type: import("zod").ZodArray<import("zod").ZodEnum<["Inbound", "Outbound", "Internal"]>, "many">;
|
121378
|
+
}, "strip", import("zod").ZodTypeAny, {
|
121379
|
+
type: ("Inbound" | "Outbound" | "Internal")[];
|
121380
|
+
status: ("ANSWERED" | "NO ANSWER" | "FAILED")[];
|
121381
|
+
requestId: string;
|
121382
|
+
trunks: {
|
121383
|
+
id: string;
|
121384
|
+
trunk: string;
|
121385
|
+
}[];
|
121386
|
+
}, {
|
121387
|
+
type: ("Inbound" | "Outbound" | "Internal")[];
|
121388
|
+
status: ("ANSWERED" | "NO ANSWER" | "FAILED")[];
|
121389
|
+
requestId: string;
|
121390
|
+
trunks: {
|
121391
|
+
id: string;
|
121392
|
+
trunk: string;
|
121393
|
+
}[];
|
121394
|
+
}>;
|
121395
|
+
401: import("zod").ZodObject<{
|
121396
|
+
message: import("zod").ZodString;
|
121397
|
+
error: import("zod").ZodAny;
|
121398
|
+
}, "strip", import("zod").ZodTypeAny, {
|
121399
|
+
message: string;
|
121400
|
+
error?: any;
|
121401
|
+
}, {
|
121402
|
+
message: string;
|
121403
|
+
error?: any;
|
121404
|
+
}>;
|
121405
|
+
};
|
121406
|
+
path: "telephony-cdr/dropdown";
|
121407
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
121408
|
+
'x-tenant': import("zod").ZodString;
|
121409
|
+
authorization: import("zod").ZodString;
|
121410
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
121411
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
121412
|
+
}, "strip", import("zod").ZodTypeAny, {
|
121413
|
+
'x-tenant': string;
|
121414
|
+
authorization: string;
|
121415
|
+
'x-client-timezone': string;
|
121416
|
+
'x-code'?: string | undefined;
|
121417
|
+
}, {
|
121418
|
+
'x-tenant': string;
|
121419
|
+
authorization: string;
|
121420
|
+
'x-code'?: string | undefined;
|
121421
|
+
'x-client-timezone'?: string | undefined;
|
121422
|
+
}>>>;
|
121423
|
+
};
|
121357
121424
|
};
|
121358
121425
|
};
|
121359
121426
|
//# sourceMappingURL=contract.d.ts.map
|