@dakkitor/api-contracts 1.1.41 → 1.1.42

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.
@@ -1635,7 +1635,7 @@ export declare const usersContract: {
1635
1635
  }>;
1636
1636
  summary: "Delete a user by ID";
1637
1637
  method: "DELETE";
1638
- body: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1638
+ body: z.ZodUndefined;
1639
1639
  path: "/v2/users/:id";
1640
1640
  responses: {
1641
1641
  400: z.ZodObject<{
@@ -226,7 +226,7 @@ exports.usersContract = c.router({
226
226
  pathParams: zod_1.z.object({
227
227
  id: zod_1.z.string().uuid().describe('The ID of the resource (UUID format).'),
228
228
  }),
229
- body: zod_1.z.object({}),
229
+ body: zod_1.z.undefined(),
230
230
  summary: 'Delete a user by ID',
231
231
  metadata: { tags: ['Users'] },
232
232
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dakkitor/api-contracts",
3
- "version": "1.1.41",
3
+ "version": "1.1.42",
4
4
  "description": "TypeScript API contracts using ts-rest and Zod",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",