@porulle/plugin-warehouse 0.10.8 → 0.11.0

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/dist/schema.d.ts +3 -3
  2. package/package.json +4 -4
package/dist/schema.d.ts CHANGED
@@ -92,7 +92,7 @@ export declare const warehouseBins: import("drizzle-orm/pg-core/table").PgTableW
92
92
  tableName: "warehouse_bins";
93
93
  dataType: "string";
94
94
  columnType: "PgText";
95
- data: "general" | "cold" | "frozen" | "dry" | "hazardous" | "display";
95
+ data: "general" | "display" | "cold" | "frozen" | "dry" | "hazardous";
96
96
  driverParam: string;
97
97
  notNull: true;
98
98
  hasDefault: true;
@@ -252,7 +252,7 @@ export declare const stockTransfers: import("drizzle-orm/pg-core/table").PgTable
252
252
  tableName: "stock_transfers";
253
253
  dataType: "string";
254
254
  columnType: "PgText";
255
- data: "draft" | "cancelled" | "received" | "pending_approval" | "approved" | "in_transit";
255
+ data: "draft" | "approved" | "cancelled" | "received" | "pending_approval" | "in_transit";
256
256
  driverParam: string;
257
257
  notNull: true;
258
258
  hasDefault: true;
@@ -1064,7 +1064,7 @@ export declare const stockReconciliations: import("drizzle-orm/pg-core/table").P
1064
1064
  tableName: "stock_reconciliations";
1065
1065
  dataType: "string";
1066
1066
  columnType: "PgText";
1067
- data: "draft" | "adjusted" | "approved" | "counting" | "submitted";
1067
+ data: "draft" | "approved" | "adjusted" | "counting" | "submitted";
1068
1068
  driverParam: string;
1069
1069
  notNull: true;
1070
1070
  hasDefault: true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porulle/plugin-warehouse",
3
- "version": "0.10.8",
3
+ "version": "0.11.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {
@@ -19,14 +19,14 @@
19
19
  "dependencies": {
20
20
  "@hono/zod-openapi": "^1.2.2",
21
21
  "hono": "^4.12.5",
22
- "@porulle/core": "0.10.8"
22
+ "@porulle/core": "0.11.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/node": "^24.5.2",
26
26
  "typescript": "5.9.2",
27
27
  "vitest": "^3.2.4",
28
- "@porulle/typescript-config": "0.1.0",
29
- "@porulle/eslint-config": "0.1.0"
28
+ "@porulle/eslint-config": "0.1.0",
29
+ "@porulle/typescript-config": "0.1.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"