@stacksjs/payments 0.70.229 → 0.70.231
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/drivers/stripe.d.ts +1 -0
- package/dist/index.d.ts +5 -6
- package/package.json +3 -3
package/dist/drivers/stripe.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
1
|
+
import type StripeSdk from 'stripe';
|
|
2
|
+
// Type-only re-export of the Stripe SDK namespace (`Stripe.Customer`, etc.).
|
|
3
|
+
// `stripe` is an opt-in dependency, so this must not emit a runtime import —
|
|
4
|
+
// use the lazy `stripe` client from `./drivers/stripe` for actual SDK calls.
|
|
5
|
+
export type { StripeSdk as Stripe };
|
|
7
6
|
// Main Payment facade
|
|
8
7
|
export * from './payment';
|
|
9
8
|
export { default as Payment } from './payment';
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@stacksjs/payments",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "0.70.
|
|
5
|
+
"version": "0.70.231",
|
|
6
6
|
"description": "The Stacks payments package. Currently supporting Stripe.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"contributors": [
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@stacksjs/config": "0.70.
|
|
70
|
+
"@stacksjs/config": "0.70.231",
|
|
71
71
|
"better-dx": "^0.2.17",
|
|
72
|
-
"@stacksjs/utils": "0.70.
|
|
72
|
+
"@stacksjs/utils": "0.70.231",
|
|
73
73
|
"@stripe/stripe-js": "^9.10.0",
|
|
74
74
|
"stripe": "^22.3.2"
|
|
75
75
|
}
|