@porulle/plugin-notifications 0.10.3 → 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 +4 -4
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" | "
|
|
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" | "
|
|
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: "
|
|
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: "
|
|
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.
|
|
3
|
+
"version": "0.10.5",
|
|
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.
|
|
22
|
+
"@porulle/core": "0.10.5"
|
|
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/
|
|
29
|
-
"@porulle/
|
|
28
|
+
"@porulle/eslint-config": "0.1.0",
|
|
29
|
+
"@porulle/typescript-config": "0.1.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|