@esb-market-contracts/admin-backend 1.8.25 → 1.8.26

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 +5 -4
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.25",
4
+ "version": "1.8.26",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -130,15 +130,16 @@ declare const assetGetQuerySchema: z.ZodObject<{
130
130
  }, z.core.$strict>;
131
131
  declare const assetSearchPayloadSchema: z.ZodObject<{
132
132
  query: z.ZodOptional<z.ZodString>;
133
- where: z.ZodOptional<z.ZodObject<{
133
+ where: z.ZodOptional<z.ZodPipe<z.ZodObject<{
134
134
  status: z.ZodOptional<z.ZodEnum<{
135
135
  active: "active";
136
136
  written_off: "written_off";
137
137
  }>>;
138
+ }, z.core.$strict>, z.ZodTransform<{
139
+ status: "active" | "written_off";
138
140
  }, {
139
- out: {};
140
- in: {};
141
- }>>;
141
+ status?: "active" | "written_off" | undefined;
142
+ }>>>;
142
143
  pagination: z.ZodObject<{
143
144
  offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
144
145
  limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;