@stacksjs/payments 0.70.112 → 0.70.114

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.
@@ -15,7 +15,7 @@ export const stripe = new Proxy({}, {
15
15
  const apiKey = services?.stripe?.secretKey;
16
16
  if (!apiKey)
17
17
  throw Error("Stripe secret key is not configured. Set STRIPE_SECRET_KEY in your .env file.");
18
- const apiVersion = "2026-03-25.dahlia", configuredVersion = services?.stripe?.apiVersion;
18
+ const apiVersion = "2026-06-24.dahlia", configuredVersion = services?.stripe?.apiVersion;
19
19
  if (configuredVersion && configuredVersion !== apiVersion)
20
20
  throw Error(`Stripe API version ${configuredVersion} does not match the installed SDK version ${apiVersion}`);
21
21
  _stripe = new (StripeCtor())(apiKey, { apiVersion });
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.112",
5
+ "version": "0.70.114",
6
6
  "description": "The Stacks payments package. Currently supporting Stripe.",
7
7
  "author": "Chris Breuer",
8
8
  "contributors": [
@@ -55,8 +55,8 @@
55
55
  "prepublishOnly": "bun run build"
56
56
  },
57
57
  "peerDependencies": {
58
- "@stripe/stripe-js": "^8.7.0",
59
- "stripe": "^21.0.1"
58
+ "@stripe/stripe-js": "^9.10.0",
59
+ "stripe": "^22.3.2"
60
60
  },
61
61
  "peerDependenciesMeta": {
62
62
  "@stripe/stripe-js": {
@@ -67,10 +67,10 @@
67
67
  }
68
68
  },
69
69
  "devDependencies": {
70
- "@stacksjs/config": "0.70.112",
71
- "better-dx": "^0.2.16",
72
- "@stacksjs/utils": "0.70.112",
73
- "@stripe/stripe-js": "^8.7.0",
74
- "stripe": "^21.0.1"
70
+ "@stacksjs/config": "0.70.114",
71
+ "better-dx": "catalog:",
72
+ "@stacksjs/utils": "0.70.114",
73
+ "@stripe/stripe-js": "^9.10.0",
74
+ "stripe": "^22.3.2"
75
75
  }
76
76
  }