@forklaunch/implementation-billing-base 0.2.0 → 0.2.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.
- package/lib/__test__/schemaEquality.test.js +35 -14
- package/lib/eject/domain/schemas/checkoutSession.schema.ts +24 -4
- package/lib/eject/domain/schemas/paymentLink.schema.ts +24 -4
- package/lib/eject/services/billingPortal.service.ts +97 -25
- package/lib/eject/services/checkoutSession.service.ts +106 -23
- package/lib/eject/services/paymentLink.service.ts +104 -25
- package/lib/eject/services/plan.service.ts +41 -5
- package/lib/eject/services/subscription.service.ts +56 -3
- package/lib/schemas/checkoutSession.schema.d.ts +97 -11
- package/lib/schemas/checkoutSession.schema.d.ts.map +1 -1
- package/lib/schemas/paymentLink.schema.d.ts +101 -12
- package/lib/schemas/paymentLink.schema.d.ts.map +1 -1
- package/lib/schemas/typebox/checkoutSession.schema.d.ts +130 -10
- package/lib/schemas/typebox/checkoutSession.schema.d.ts.map +1 -1
- package/lib/schemas/typebox/checkoutSession.schema.js +9 -3
- package/lib/schemas/typebox/paymentLink.schema.d.ts +144 -12
- package/lib/schemas/typebox/paymentLink.schema.d.ts.map +1 -1
- package/lib/schemas/typebox/paymentLink.schema.js +9 -3
- package/lib/schemas/zod/checkoutSession.schema.d.ts +66 -12
- package/lib/schemas/zod/checkoutSession.schema.d.ts.map +1 -1
- package/lib/schemas/zod/checkoutSession.schema.js +9 -3
- package/lib/schemas/zod/paymentLink.schema.d.ts +66 -12
- package/lib/schemas/zod/paymentLink.schema.d.ts.map +1 -1
- package/lib/schemas/zod/paymentLink.schema.js +9 -3
- package/lib/services/billingPortal.service.d.ts +20 -2
- package/lib/services/billingPortal.service.d.ts.map +1 -1
- package/lib/services/billingPortal.service.js +83 -25
- package/lib/services/checkoutSession.service.d.ts +58 -15
- package/lib/services/checkoutSession.service.d.ts.map +1 -1
- package/lib/services/checkoutSession.service.js +61 -10
- package/lib/services/paymentLink.service.d.ts +34 -15
- package/lib/services/paymentLink.service.d.ts.map +1 -1
- package/lib/services/paymentLink.service.js +79 -11
- package/lib/services/plan.service.d.ts +14 -2
- package/lib/services/plan.service.d.ts.map +1 -1
- package/lib/services/plan.service.js +35 -5
- package/lib/services/subscription.service.d.ts +16 -2
- package/lib/services/subscription.service.d.ts.map +1 -1
- package/lib/services/subscription.service.js +49 -3
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forklaunch/implementation-billing-base",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Billing basic implementation for forklaunch",
|
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"lib/**"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@forklaunch/common": "^0.3.
|
|
32
|
-
"@forklaunch/core": "^0.9.
|
|
33
|
-
"@forklaunch/validator": "^0.6.
|
|
31
|
+
"@forklaunch/common": "^0.3.10",
|
|
32
|
+
"@forklaunch/core": "^0.9.10",
|
|
33
|
+
"@forklaunch/validator": "^0.6.10",
|
|
34
34
|
"@mikro-orm/core": "^6.4.16",
|
|
35
35
|
"@sinclair/typebox": "^0.34.33",
|
|
36
36
|
"ajv": "^8.17.1",
|
|
37
|
-
"zod": "^3.25.
|
|
38
|
-
"@forklaunch/interfaces-billing": "0.2.
|
|
37
|
+
"zod": "^3.25.61",
|
|
38
|
+
"@forklaunch/interfaces-billing": "0.2.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"depcheck": "^1.4.7",
|