@porulle/plugin-warehouse 0.10.4 → 0.10.5

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 +4 -4
  2. package/package.json +2 -2
package/dist/schema.d.ts CHANGED
@@ -235,7 +235,7 @@ export declare const stockTransfers: import("drizzle-orm/pg-core/table").PgTable
235
235
  tableName: "stock_transfers";
236
236
  dataType: "string";
237
237
  columnType: "PgText";
238
- data: "requisition" | "direct" | "return";
238
+ data: "return" | "direct" | "requisition";
239
239
  driverParam: string;
240
240
  notNull: true;
241
241
  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" | "pending_approval" | "approved" | "in_transit" | "received" | "cancelled";
255
+ data: "draft" | "cancelled" | "received" | "pending_approval" | "approved" | "in_transit";
256
256
  driverParam: string;
257
257
  notNull: true;
258
258
  hasDefault: true;
@@ -693,7 +693,7 @@ export declare const wastageNotes: import("drizzle-orm/pg-core/table").PgTableWi
693
693
  tableName: "wastage_notes";
694
694
  dataType: "string";
695
695
  columnType: "PgText";
696
- data: "spoilage" | "damage" | "expiry" | "theft" | "prep_waste" | "other";
696
+ data: "other" | "spoilage" | "damage" | "expiry" | "theft" | "prep_waste";
697
697
  driverParam: string;
698
698
  notNull: true;
699
699
  hasDefault: false;
@@ -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" | "approved" | "counting" | "submitted" | "adjusted";
1067
+ data: "draft" | "adjusted" | "approved" | "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.4",
3
+ "version": "0.10.5",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "@hono/zod-openapi": "^1.2.2",
21
21
  "hono": "^4.12.5",
22
- "@porulle/core": "0.10.4"
22
+ "@porulle/core": "0.10.5"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/node": "^24.5.2",