@esb-market-contracts/backend 1.0.49 → 1.0.50

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 (3) hide show
  1. package/api.d.ts +5 -0
  2. package/package.json +1 -1
  3. package/types.d.ts +5 -0
package/api.d.ts CHANGED
@@ -1460,6 +1460,11 @@ declare const stockBalancesRouter: import("hono/hono-base").HonoBase<{
1460
1460
  updatedAt: Date | null;
1461
1461
  createdAt: Date;
1462
1462
  available: number;
1463
+ warehouse: {
1464
+ id: number;
1465
+ code: string;
1466
+ name: string;
1467
+ };
1463
1468
  product: {
1464
1469
  id: number;
1465
1470
  model: string | null;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esb-market-contracts/backend",
3
3
  "description": "Shared TypeScript contract definitions for backend.",
4
- "version": "1.0.49",
4
+ "version": "1.0.50",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "sideEffects": false,
package/types.d.ts CHANGED
@@ -904,6 +904,11 @@ declare const stockBalanceSearchItemSchema: z.ZodObject<{
904
904
  updatedAt: z.ZodNullable<z.ZodDate>;
905
905
  createdAt: z.ZodDate;
906
906
  available: z.ZodNumber;
907
+ warehouse: z.ZodObject<{
908
+ id: z.ZodInt;
909
+ code: z.ZodString;
910
+ name: z.ZodString;
911
+ }, z.core.$strip>;
907
912
  product: z.ZodObject<{
908
913
  id: z.ZodInt;
909
914
  model: z.ZodNullable<z.ZodString>;