@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/index.mjs
CHANGED
@@ -4214,7 +4214,7 @@ var RoomContractsValidationSchema = {
|
|
4214
4214
|
input: z59.object({
|
4215
4215
|
disposition: z59.union([
|
4216
4216
|
z59.literal("resolved"),
|
4217
|
-
z59.literal("
|
4217
|
+
z59.literal("follow up"),
|
4218
4218
|
z59.literal("escalated"),
|
4219
4219
|
z59.literal("dropped"),
|
4220
4220
|
z59.literal("prank"),
|
@@ -4321,11 +4321,12 @@ var roomContract = initContract18().router(
|
|
4321
4321
|
summary: "Update a mail room by id"
|
4322
4322
|
},
|
4323
4323
|
markAsRead: {
|
4324
|
-
method: "
|
4324
|
+
method: "POST",
|
4325
4325
|
path: "/:id",
|
4326
4326
|
pathParams: z60.object({
|
4327
4327
|
id: z60.string().uuid()
|
4328
4328
|
}),
|
4329
|
+
body: null,
|
4329
4330
|
responses: {
|
4330
4331
|
200: DefaultSuccessResponseSchema.extend({
|
4331
4332
|
message: z60.string()
|