@kl1/contracts 1.1.18-uat → 1.1.19-uat
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 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +5 -4
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +5 -4
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +5 -4
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +3 -3
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -7791,21 +7791,21 @@ export declare const apiContract: {
|
|
7791
7791
|
};
|
7792
7792
|
update: {
|
7793
7793
|
body: import("zod").ZodObject<{
|
7794
|
-
disposition: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"resolved">, import("zod").ZodLiteral<"
|
7794
|
+
disposition: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"resolved">, import("zod").ZodLiteral<"follow up">, import("zod").ZodLiteral<"escalated">, import("zod").ZodLiteral<"dropped">, import("zod").ZodLiteral<"prank">, import("zod").ZodLiteral<"blank">]>>>;
|
7795
7795
|
assigneeId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
7796
7796
|
note: import("zod").ZodOptional<import("zod").ZodString>;
|
7797
7797
|
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
7798
7798
|
handover: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodLiteral<"true">, import("zod").ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7799
7799
|
selfAssign: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodLiteral<"true">, import("zod").ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
|
7800
7800
|
}, "strip", import("zod").ZodTypeAny, {
|
7801
|
-
disposition?: "resolved" | "
|
7801
|
+
disposition?: "resolved" | "follow up" | "escalated" | "dropped" | "prank" | "blank" | null | undefined;
|
7802
7802
|
assigneeId?: string | null | undefined;
|
7803
7803
|
note?: string | undefined;
|
7804
7804
|
tags?: string[] | undefined;
|
7805
7805
|
handover?: boolean | null | undefined;
|
7806
7806
|
selfAssign?: boolean | null | undefined;
|
7807
7807
|
}, {
|
7808
|
-
disposition?: "resolved" | "
|
7808
|
+
disposition?: "resolved" | "follow up" | "escalated" | "dropped" | "prank" | "blank" | null | undefined;
|
7809
7809
|
assigneeId?: string | null | undefined;
|
7810
7810
|
note?: string | undefined;
|
7811
7811
|
tags?: string[] | undefined;
|
@@ -11230,8 +11230,9 @@ export declare const apiContract: {
|
|
11230
11230
|
path: "mail/room/:id";
|
11231
11231
|
};
|
11232
11232
|
markAsRead: {
|
11233
|
+
body: null;
|
11233
11234
|
summary: "Mark all the un read messages as read";
|
11234
|
-
method: "
|
11235
|
+
method: "POST";
|
11235
11236
|
pathParams: import("zod").ZodObject<{
|
11236
11237
|
id: import("zod").ZodString;
|
11237
11238
|
}, "strip", import("zod").ZodTypeAny, {
|