@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/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
- deleted: z43.enum(["true", "false"]).default("false").transform((v) => v === "true" ? true : false)
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: "ts/comment" }
3397
+ { pathPrefix: "tcs/api/v1/comment" }
3398
3398
  );
3399
3399
 
3400
3400
  // src/company/index.ts