@stacksjs/sms 0.64.6 → 0.65.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.
File without changes
@@ -0,0 +1,8 @@
1
+ export * as gupshup from "./gupshup";
2
+ export * as nexmo from "./nexmo";
3
+ export * as plivo from "./plivo";
4
+ export * as sms77 from "./sms77";
5
+ export * as sns from "./sns";
6
+ export * as telnyx from "./telnyx";
7
+ export * as termii from "./termii";
8
+ export * as twilio from "./twilio";
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1 @@
1
+ export * from "./drivers";
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // @bun
2
- var s={};var o={};var r={};var i={};var e={};var n={};var t={};var m={};export{s as twilio,m as termii,t as telnyx,e as sns,i as sms77,o as plivo,r as nexmo,n as gupshup};
2
+ var s={};var o={};var r={};var i={};var e={};var n={};var t={};var m={};export{m as twilio,t as termii,n as telnyx,e as sns,i as sms77,r as plivo,o as nexmo,s as gupshup};
3
3
 
4
- //# debugId=F4F69A8CEBC43B8A64756E2164756E21
4
+ //# debugId=E8EFF5AE91DD63CC64756E2164756E21
5
5
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -4,6 +4,6 @@
4
4
  "sourcesContent": [
5
5
  ],
6
6
  "mappings": "",
7
- "debugId": "F4F69A8CEBC43B8A64756E2164756E21",
7
+ "debugId": "E8EFF5AE91DD63CC64756E2164756E21",
8
8
  "names": []
9
9
  }
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@stacksjs/sms",
3
3
  "type": "module",
4
- "version": "0.64.6",
4
+ "version": "0.65.0",
5
5
  "description": "The Stacks SMS integration. Painlessly create & manage your inboxes, templates, and send sms.",
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/sms#readme",
@@ -39,27 +40,20 @@
39
40
  },
40
41
  "module": "dist/index.js",
41
42
  "types": "dist/index.d.ts",
42
- "contributors": [
43
- "Chris Breuer <chris@stacksjs.org>"
44
- ],
45
- "files": [
46
- "README.md",
47
- "dist",
48
- "src"
49
- ],
43
+ "files": ["README.md", "dist", "src"],
50
44
  "scripts": {
51
- "build": "bun --bun build.ts",
52
- "typecheck": "bun --bun tsc --noEmit",
45
+ "build": "bun build.ts",
46
+ "typecheck": "bun tsc --noEmit",
53
47
  "prepublishOnly": "bun run build"
54
48
  },
55
49
  "dependencies": {
56
- "@stacksjs/cli": "latest",
57
- "@stacksjs/config": "latest",
58
- "@stacksjs/error-handling": "latest",
59
- "@stacksjs/types": "latest"
50
+ "@stacksjs/cli": "0.64.6",
51
+ "@stacksjs/config": "0.64.6",
52
+ "@stacksjs/error-handling": "0.64.6",
53
+ "@stacksjs/types": "0.64.6"
60
54
  },
61
55
  "devDependencies": {
62
- "@stacksjs/config": "latest",
63
- "@stacksjs/development": "latest"
56
+ "@stacksjs/config": "0.64.6",
57
+ "@stacksjs/development": "0.64.6"
64
58
  }
65
59
  }
@@ -1,8 +1,8 @@
1
- export * as twilio from './twilio'
2
- export * as plivo from './plivo'
1
+ export * as gupshup from './gupshup'
3
2
  export * as nexmo from './nexmo'
3
+ export * as plivo from './plivo'
4
4
  export * as sms77 from './sms77'
5
5
  export * as sns from './sns'
6
- export * as gupshup from './gupshup'
7
6
  export * as telnyx from './telnyx'
8
7
  export * as termii from './termii'
8
+ export * as twilio from './twilio'