@forklaunch/implementation-billing-base 0.1.5 → 0.1.6
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/eject/schemas/billingPortal.schema.ts +6 -0
- package/lib/eject/schemas/checkoutSession.schema.ts +6 -0
- package/lib/eject/schemas/paymentLink.schema.ts +6 -0
- package/lib/eject/schemas/plan.schema.ts +6 -0
- package/lib/eject/schemas/subscription.schema.ts +6 -0
- package/lib/schemas/billingPortal.schema.d.ts.map +1 -1
- package/lib/schemas/billingPortal.schema.js +2 -12
- package/lib/schemas/checkoutSession.schema.d.ts.map +1 -1
- package/lib/schemas/checkoutSession.schema.js +2 -12
- package/lib/schemas/paymentLink.schema.d.ts.map +1 -1
- package/lib/schemas/paymentLink.schema.js +2 -12
- package/lib/schemas/plan.schema.d.ts.map +1 -1
- package/lib/schemas/plan.schema.js +2 -12
- package/lib/schemas/subscription.schema.d.ts +1 -1
- package/lib/schemas/subscription.schema.d.ts.map +1 -1
- package/lib/schemas/subscription.schema.js +2 -12
- package/lib/schemas/typebox/billingPortal.schema.d.ts +21 -0
- package/lib/schemas/typebox/billingPortal.schema.d.ts.map +1 -1
- package/lib/schemas/typebox/billingPortal.schema.js +5 -0
- package/lib/schemas/typebox/checkoutSession.schema.d.ts +28 -0
- package/lib/schemas/typebox/checkoutSession.schema.d.ts.map +1 -1
- package/lib/schemas/typebox/checkoutSession.schema.js +5 -0
- package/lib/schemas/typebox/paymentLink.schema.d.ts +33 -0
- package/lib/schemas/typebox/paymentLink.schema.d.ts.map +1 -1
- package/lib/schemas/typebox/paymentLink.schema.js +5 -0
- package/lib/schemas/typebox/plan.schema.d.ts +39 -0
- package/lib/schemas/typebox/plan.schema.d.ts.map +1 -1
- package/lib/schemas/typebox/plan.schema.js +5 -0
- package/lib/schemas/typebox/subscription.schema.d.ts +45 -0
- package/lib/schemas/typebox/subscription.schema.d.ts.map +1 -1
- package/lib/schemas/typebox/subscription.schema.js +5 -0
- package/lib/schemas/zod/billingPortal.schema.d.ts +21 -0
- package/lib/schemas/zod/billingPortal.schema.d.ts.map +1 -1
- package/lib/schemas/zod/billingPortal.schema.js +5 -0
- package/lib/schemas/zod/checkoutSession.schema.d.ts +27 -0
- package/lib/schemas/zod/checkoutSession.schema.d.ts.map +1 -1
- package/lib/schemas/zod/checkoutSession.schema.js +5 -0
- package/lib/schemas/zod/paymentLink.schema.d.ts +33 -0
- package/lib/schemas/zod/paymentLink.schema.d.ts.map +1 -1
- package/lib/schemas/zod/paymentLink.schema.js +5 -0
- package/lib/schemas/zod/plan.schema.d.ts +39 -0
- package/lib/schemas/zod/plan.schema.d.ts.map +1 -1
- package/lib/schemas/zod/plan.schema.js +5 -0
- package/lib/schemas/zod/subscription.schema.d.ts +45 -0
- package/lib/schemas/zod/subscription.schema.d.ts.map +1 -1
- package/lib/schemas/zod/subscription.schema.js +5 -0
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forklaunch/implementation-billing-base",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Billing basic implementation for forklaunch",
|
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@forklaunch/common": "^0.2.6",
|
|
30
|
-
"@forklaunch/core": "^0.6.
|
|
31
|
-
"@forklaunch/validator": "^0.4.
|
|
30
|
+
"@forklaunch/core": "^0.6.4",
|
|
31
|
+
"@forklaunch/validator": "^0.4.12",
|
|
32
32
|
"@mikro-orm/core": "^6.4.12",
|
|
33
33
|
"@sinclair/typebox": "^0.34.33",
|
|
34
34
|
"ajv": "^8.17.1",
|
|
35
35
|
"zod": "^3.24.2",
|
|
36
|
-
"@forklaunch/interfaces-billing": "0.1.
|
|
36
|
+
"@forklaunch/interfaces-billing": "0.1.6"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"depcheck": "^1.4.7",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"lint": "eslint . -c eslint.config.mjs",
|
|
49
49
|
"lint:fix": "eslint . -c eslint.config.mjs --fix",
|
|
50
50
|
"package:eject": "rm -rf lib/eject && mkdir -p lib/eject && cp -r schemas/zod lib/eject/schemas && cp schemas/index.ts lib/eject/schemas && cp -r services lib/eject/services && find lib/eject -type f -name '*.ts' -exec sed -i '' 's|@forklaunch/validator/zod|@{{app_name}}/core|g' {} +",
|
|
51
|
+
"publish:package": "./publish-package.bash",
|
|
51
52
|
"test": "vitest --passWithNoTests"
|
|
52
53
|
}
|
|
53
54
|
}
|