@esb-market-contracts/admin-backend 1.8.42 → 1.8.43

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esb-market-contracts/admin-backend",
3
3
  "description": "Shared TypeScript contract definitions for admin-backend.",
4
- "version": "1.8.42",
4
+ "version": "1.8.43",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -159,7 +159,7 @@ declare const assetUpdatePayloadSchema: z.ZodObject<{
159
159
  assetId: z.ZodInt;
160
160
  }, z.core.$strict>;
161
161
  declare const assetUpdateImagePayloadSchema: z.ZodObject<{
162
- assetId: z.ZodInt;
162
+ assetId: z.ZodPipe<z.ZodCoercedNumber<unknown>, z.ZodInt>;
163
163
  image: z.ZodFile;
164
164
  }, z.core.$strict>;
165
165
  declare const assetWriteOffPayloadSchema: z.ZodObject<{