@stacksjs/notifications 0.59.3 → 0.59.4
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/index.d.ts +5 -6
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
declare function
|
|
3
|
-
declare function
|
|
4
|
-
declare function
|
|
5
|
-
declare function
|
|
6
|
-
declare function notification(): typeof chat.slack;
|
|
1
|
+
declare function useChat(driver?: string): any;
|
|
2
|
+
declare function useEmail(driver?: string): any;
|
|
3
|
+
declare function useSMS(driver?: string): any;
|
|
4
|
+
declare function useNotification(typeParam?: string, driverParam?: string): any;
|
|
5
|
+
declare function notification(): any;
|
|
7
6
|
export { useEmail, useChat, useSMS, useNotification, notification, };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/notifications",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.59.
|
|
4
|
+
"version": "0.59.4",
|
|
5
5
|
"description": "The Stacks notifications integration.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "bun --bun build.ts",
|
|
53
53
|
"typecheck": "bun --bun tsc --noEmit",
|
|
54
|
-
"prepublishOnly": "bun
|
|
54
|
+
"prepublishOnly": "bun run build"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@stacksjs/chat": "latest",
|