@better-auth/stripe 1.4.7-beta.3 → 1.4.7
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/.turbo/turbo-build.log +2 -2
- package/package.json +5 -5
- package/src/routes.ts +0 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @better-auth/stripe@1.4.7
|
|
2
|
+
> @better-auth/stripe@1.4.7 build /home/runner/work/better-auth/better-auth/packages/stripe
|
|
3
3
|
> tsdown
|
|
4
4
|
|
|
5
5
|
[34mℹ[39m tsdown [2mv0.17.2[22m powered by rolldown [2mv1.0.0-beta.53[22m
|
|
@@ -13,4 +13,4 @@
|
|
|
13
13
|
[34mℹ[39m [2mdist/[22m[32m[1mindex.d.mts[22m[39m [2m 0.21 kB[22m [2m│ gzip: 0.14 kB[22m
|
|
14
14
|
[34mℹ[39m [2mdist/[22m[32mindex-Dbyi2yVo.d.mts[39m [2m24.87 kB[22m [2m│ gzip: 4.82 kB[22m
|
|
15
15
|
[34mℹ[39m 5 files, total: 66.68 kB
|
|
16
|
-
[32m✔[39m Build complete in [
|
|
16
|
+
[32m✔[39m Build complete in [32m12391ms[39m
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-auth/stripe",
|
|
3
3
|
"author": "Bereket Engida",
|
|
4
|
-
"version": "1.4.7
|
|
4
|
+
"version": "1.4.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.mts",
|
|
@@ -50,15 +50,15 @@
|
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"stripe": "^18 || ^19 || ^20",
|
|
53
|
-
"@better-auth/core": "1.4.7
|
|
54
|
-
"better-auth": "1.4.7
|
|
53
|
+
"@better-auth/core": "1.4.7",
|
|
54
|
+
"better-auth": "1.4.7"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"better-call": "1.1.5",
|
|
58
58
|
"stripe": "^20.0.0",
|
|
59
59
|
"tsdown": "^0.17.2",
|
|
60
|
-
"@better-auth/core": "1.4.7
|
|
61
|
-
"better-auth": "1.4.7
|
|
60
|
+
"@better-auth/core": "1.4.7",
|
|
61
|
+
"better-auth": "1.4.7"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"test": "vitest",
|
package/src/routes.ts
CHANGED
|
@@ -889,8 +889,6 @@ export const restoreSubscription = (options: StripeOptions) => {
|
|
|
889
889
|
(sub) => sub.status === "active" || sub.status === "trialing",
|
|
890
890
|
),
|
|
891
891
|
);
|
|
892
|
-
|
|
893
|
-
// Ensure the specified subscription belongs to the (validated) referenceId.
|
|
894
892
|
if (
|
|
895
893
|
ctx.body.subscriptionId &&
|
|
896
894
|
subscription &&
|