@esb-market-contracts/admin-backend 1.8.34 → 1.8.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/api.d.ts +2 -0
- package/package.json +1 -1
- package/types.d.ts +1 -0
package/api.d.ts
CHANGED
|
@@ -183,6 +183,7 @@ declare const assetsRouter: import("hono/hono-base").HonoBase<{
|
|
|
183
183
|
serialNumber: string | null;
|
|
184
184
|
notes: string | null;
|
|
185
185
|
status: "active" | "written_off";
|
|
186
|
+
imageSource: string | null;
|
|
186
187
|
writtenOffAt: Date | null;
|
|
187
188
|
updatedAt: Date | null;
|
|
188
189
|
createdAt: Date;
|
|
@@ -230,6 +231,7 @@ declare const assetsRouter: import("hono/hono-base").HonoBase<{
|
|
|
230
231
|
serialNumber: string | null;
|
|
231
232
|
notes: string | null;
|
|
232
233
|
status: "active" | "written_off";
|
|
234
|
+
imageSource: string | null;
|
|
233
235
|
writtenOffAt: Date | null;
|
|
234
236
|
updatedAt: Date | null;
|
|
235
237
|
createdAt: Date;
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -120,6 +120,7 @@ declare const assetSchema: z.ZodObject<{
|
|
|
120
120
|
active: "active";
|
|
121
121
|
written_off: "written_off";
|
|
122
122
|
}>;
|
|
123
|
+
imageSource: z.ZodNullable<z.ZodString>;
|
|
123
124
|
writtenOffAt: z.ZodNullable<z.ZodDate>;
|
|
124
125
|
updatedAt: z.ZodNullable<z.ZodDate>;
|
|
125
126
|
createdAt: z.ZodDate;
|