@voyantjs/plugin-netopia 0.6.0 → 0.6.2

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/README.md +2 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -9,7 +9,7 @@ Architecturally, this package is primarily:
9
9
 
10
10
  - a Netopia payment adapter
11
11
  - a finance extension
12
- - an optional Hono plugin bundle for distribution
12
+ - an optional packaged Hono bundle when an app wants one installable entrypoint
13
13
 
14
14
  It starts a hosted Netopia checkout, stores provider references on the session,
15
15
  and reconciles callback payloads back into Voyant payments, captures,
@@ -58,7 +58,7 @@ const netopiaFinanceExtension = createNetopiaFinanceAdapter()
58
58
 
59
59
  Then include the returned extension in `createApp({ extensions: [...] })`.
60
60
 
61
- If you want the packaged Hono bundle instead, use
61
+ If you want the packaged distribution helper instead, use
62
62
  `createNetopiaAdapterBundle()` or `netopiaHonoPlugin()`. Those are optional
63
63
  distribution helpers over the adapter/extension surfaces above; the adapter and
64
64
  finance extension remain the main runtime seams.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyantjs/plugin-netopia",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "license": "FSL-1.1-Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -33,11 +33,11 @@
33
33
  "drizzle-orm": "^0.45.2",
34
34
  "hono": "^4.12.10",
35
35
  "zod": "^4.3.6",
36
- "@voyantjs/checkout": "0.6.0",
37
- "@voyantjs/core": "0.6.0",
38
- "@voyantjs/finance": "0.6.0",
39
- "@voyantjs/hono": "0.6.0",
40
- "@voyantjs/notifications": "0.6.0"
36
+ "@voyantjs/checkout": "0.6.2",
37
+ "@voyantjs/core": "0.6.2",
38
+ "@voyantjs/finance": "0.6.2",
39
+ "@voyantjs/hono": "0.6.2",
40
+ "@voyantjs/notifications": "0.6.2"
41
41
  },
42
42
  "devDependencies": {
43
43
  "typescript": "^6.0.2",