@kl1/contracts 1.4.33 → 1.4.35
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/api-contracts/src/comment/index.d.ts +7 -7
- package/dist/api-contracts/src/comment/validation.d.ts +3 -3
- package/dist/api-contracts/src/comment/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +7 -7
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -3254,7 +3254,7 @@ var CreateCommentSchema = z43.object({
|
|
3254
3254
|
var UpdateCommentSchema = CreateCommentSchema;
|
3255
3255
|
var GetCommentQuerySchema = z43.object({
|
3256
3256
|
ticketId: z43.string().optional(),
|
3257
|
-
|
3257
|
+
withDeleted: z43.enum(["true", "false"]).default("false")
|
3258
3258
|
}).optional();
|
3259
3259
|
|
3260
3260
|
// src/comment/schema.ts
|
@@ -3394,7 +3394,7 @@ var commentContract = initContract9().router(
|
|
3394
3394
|
summary: "Delete a comment."
|
3395
3395
|
}
|
3396
3396
|
},
|
3397
|
-
{ pathPrefix: "
|
3397
|
+
{ pathPrefix: "tcs/api/v1/comment" }
|
3398
3398
|
);
|
3399
3399
|
|
3400
3400
|
// src/company/index.ts
|