@stacksjs/push 0.64.6 → 0.66.0

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.
@@ -0,0 +1 @@
1
+ export declare const expoWip = 1;
@@ -0,0 +1 @@
1
+ export declare const fcmWip = 1;
@@ -0,0 +1,2 @@
1
+ export * as expo from "./expo";
2
+ export * as fcm from "./fcm";
@@ -0,0 +1 @@
1
+ export * from "./drivers";
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  var p=Object.defineProperty;var i=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:(e)=>o[t]=()=>e})};var n={};i(n,{expoWip:()=>a});var a=1;var s={};i(s,{fcmWip:()=>c});var c=1;export{s as fcm,n as expo};
2
2
 
3
- //# debugId=2C739A563F08969564756E2164756E21
3
+ //# debugId=B66BF1E31D8B380164756E2164756E21
4
4
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -6,6 +6,6 @@
6
6
  "// import { Novu } from '@novu/node'\n// import { notification } from '@stacksjs/config'\n// import type { FCMPushNotificationOptions } from '@stacksjs/types'\n// import { ResultAsync } from '@stacksjs/error-handling'\n// import { italic } from '@stacksjs/cli'\n\n// const novu = new Novu(notification.novu.key)\n\n// function send(options: FCMPushNotificationOptions) {\n// return ResultAsync.fromPromise(\n// novu.trigger(options.eventName, {\n// to: options.to,\n// payload: options.payload,\n// }),\n// () => new Error(`Failed to send message using provider: ${italic('FCM')}`),\n// )\n// }\n\n// export { send as Send, send }\n\nexport const fcmWip = 1\n"
7
7
  ],
8
8
  "mappings": "4JAoBO,IAAM,EAAU,+BCAhB,IAAM,EAAS",
9
- "debugId": "2C739A563F08969564756E2164756E21",
9
+ "debugId": "B66BF1E31D8B380164756E2164756E21",
10
10
  "names": []
11
11
  }
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@stacksjs/push",
3
3
  "type": "module",
4
- "version": "0.64.6",
4
+ "version": "0.66.0",
5
5
  "description": "The Stacks Push integration",
6
6
  "author": "Chris Breuer",
7
+ "contributors": ["Chris Breuer <chris@stacksjs.org>"],
7
8
  "license": "MIT",
8
9
  "funding": "https://github.com/sponsors/chrisbbreuer",
9
10
  "homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/push#readme",
@@ -15,11 +16,7 @@
15
16
  "bugs": {
16
17
  "url": "https://github.com/stacksjs/stacks/issues"
17
18
  },
18
- "keywords": [
19
- "push",
20
- "aws",
21
- "stacks"
22
- ],
19
+ "keywords": ["push", "aws", "stacks"],
23
20
  "exports": {
24
21
  ".": {
25
22
  "bun": "./src/index.ts",
@@ -32,25 +29,18 @@
32
29
  },
33
30
  "module": "dist/index.js",
34
31
  "types": "dist/index.d.ts",
35
- "contributors": [
36
- "Chris Breuer <chris@stacksjs.org>"
37
- ],
38
- "files": [
39
- "README.md",
40
- "dist",
41
- "src"
42
- ],
32
+ "files": ["README.md", "dist", "src"],
43
33
  "scripts": {
44
- "build": "bun --bun build.ts",
45
- "typecheck": "bun --bun tsc --noEmit",
34
+ "build": "bun build.ts",
35
+ "typecheck": "bun tsc --noEmit",
46
36
  "prepublishOnly": "bun run build"
47
37
  },
48
38
  "dependencies": {
49
- "@stacksjs/cli": "latest",
50
- "@stacksjs/config": "latest",
51
- "@stacksjs/error-handling": "latest"
39
+ "@stacksjs/cli": "0.65.1",
40
+ "@stacksjs/config": "0.65.1",
41
+ "@stacksjs/error-handling": "0.65.1"
52
42
  },
53
43
  "devDependencies": {
54
- "@stacksjs/development": "latest"
44
+ "@stacksjs/development": "0.65.1"
55
45
  }
56
46
  }