@porulle/plugin-pos-restaurant 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.
- package/dist/schema.d.ts +4 -4
- package/package.json +3 -3
package/dist/schema.d.ts
CHANGED
|
@@ -1098,7 +1098,7 @@ export declare const kdsTickets: import("drizzle-orm/pg-core/table").PgTableWith
|
|
|
1098
1098
|
tableName: "kds_tickets";
|
|
1099
1099
|
dataType: "string";
|
|
1100
1100
|
columnType: "PgText";
|
|
1101
|
-
data: "
|
|
1101
|
+
data: "cancelled" | "new_order" | "modified" | "partially_cancelled";
|
|
1102
1102
|
driverParam: string;
|
|
1103
1103
|
notNull: true;
|
|
1104
1104
|
hasDefault: true;
|
|
@@ -1115,7 +1115,7 @@ export declare const kdsTickets: import("drizzle-orm/pg-core/table").PgTableWith
|
|
|
1115
1115
|
tableName: "kds_tickets";
|
|
1116
1116
|
dataType: "string";
|
|
1117
1117
|
columnType: "PgText";
|
|
1118
|
-
data: "pending" | "
|
|
1118
|
+
data: "pending" | "ready" | "preparing" | "served";
|
|
1119
1119
|
driverParam: string;
|
|
1120
1120
|
notNull: true;
|
|
1121
1121
|
hasDefault: true;
|
|
@@ -1515,7 +1515,7 @@ export declare const kdsTicketItems: import("drizzle-orm/pg-core/table").PgTable
|
|
|
1515
1515
|
tableName: "kds_ticket_items";
|
|
1516
1516
|
dataType: "string";
|
|
1517
1517
|
columnType: "PgText";
|
|
1518
|
-
data: "pending" | "
|
|
1518
|
+
data: "pending" | "done" | "preparing";
|
|
1519
1519
|
driverParam: string;
|
|
1520
1520
|
notNull: true;
|
|
1521
1521
|
hasDefault: true;
|
|
@@ -3585,7 +3585,7 @@ export declare const posPnlExpenses: import("drizzle-orm/pg-core/table").PgTable
|
|
|
3585
3585
|
tableName: "pos_pnl_expenses";
|
|
3586
3586
|
dataType: "string";
|
|
3587
3587
|
columnType: "PgText";
|
|
3588
|
-
data: "
|
|
3588
|
+
data: "direct" | "cogs" | "indirect" | "employee";
|
|
3589
3589
|
driverParam: string;
|
|
3590
3590
|
notNull: true;
|
|
3591
3591
|
hasDefault: false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porulle/plugin-pos-restaurant",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@hono/zod-openapi": "^1.2.2",
|
|
21
21
|
"hono": "^4.12.5",
|
|
22
|
-
"@porulle/
|
|
23
|
-
"@porulle/
|
|
22
|
+
"@porulle/core": "0.10.5",
|
|
23
|
+
"@porulle/plugin-pos": "0.10.5"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/node": "^24.5.2",
|