@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.
- package/package.json +1 -1
- package/types.d.ts +5 -4
package/package.json
CHANGED
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
|
-
|
|
140
|
-
|
|
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>>;
|