@porulle/plugin-notifications 0.10.4 → 0.10.6

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
@@ -58,7 +58,7 @@ export declare const notificationTemplates: import("drizzle-orm/pg-core/table").
58
58
  tableName: "notification_templates";
59
59
  dataType: "string";
60
60
  columnType: "PgText";
61
- data: "email" | "sms" | "push" | "print";
61
+ data: "email" | "push" | "sms" | "print";
62
62
  driverParam: string;
63
63
  notNull: true;
64
64
  hasDefault: false;
@@ -218,7 +218,7 @@ export declare const customerNotificationPrefs: import("drizzle-orm/pg-core/tabl
218
218
  tableName: "customer_notification_prefs";
219
219
  dataType: "string";
220
220
  columnType: "PgText";
221
- data: "email" | "sms" | "push";
221
+ data: "email" | "push" | "sms";
222
222
  driverParam: string;
223
223
  notNull: true;
224
224
  hasDefault: false;
@@ -395,7 +395,7 @@ export declare const notificationLog: import("drizzle-orm/pg-core/table").PgTabl
395
395
  tableName: "notification_log";
396
396
  dataType: "string";
397
397
  columnType: "PgText";
398
- data: "queued" | "sent" | "delivered" | "failed";
398
+ data: "failed" | "queued" | "delivered" | "sent";
399
399
  driverParam: string;
400
400
  notNull: true;
401
401
  hasDefault: true;
@@ -555,7 +555,7 @@ export declare const printJobs: import("drizzle-orm/pg-core/table").PgTableWithC
555
555
  tableName: "print_jobs";
556
556
  dataType: "string";
557
557
  columnType: "PgText";
558
- data: "queued" | "failed" | "printing" | "printed";
558
+ data: "failed" | "queued" | "printing" | "printed";
559
559
  driverParam: string;
560
560
  notNull: true;
561
561
  hasDefault: true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porulle/plugin-notifications",
3
- "version": "0.10.4",
3
+ "version": "0.10.6",
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.6"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/node": "^24.5.2",