@forklaunch/implementation-billing-base 0.3.5 → 0.3.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.
@@ -4,7 +4,7 @@ import {
4
4
  string,
5
5
  unknown,
6
6
  uuid
7
- } from '@forklaunch/validator/zod';
7
+ } from '@{{app_name}}/core';
8
8
 
9
9
  export const CreateBillingPortalSchema = {
10
10
  customerId: string,
@@ -7,7 +7,7 @@ import {
7
7
  string,
8
8
  unknown,
9
9
  uuid
10
- } from '@forklaunch/validator/zod';
10
+ } from '@{{app_name}}/core';
11
11
 
12
12
  export const CreateCheckoutSessionSchema = <
13
13
  T extends Record<string, LiteralSchema>,
@@ -8,7 +8,7 @@ import {
8
8
  string,
9
9
  unknown,
10
10
  uuid
11
- } from '@forklaunch/validator/zod';
11
+ } from '@{{app_name}}/core';
12
12
 
13
13
  export const CreatePaymentLinkSchema = <
14
14
  T extends Record<string, LiteralSchema>,
@@ -9,7 +9,7 @@ import {
9
9
  string,
10
10
  unknown,
11
11
  uuid
12
- } from '@forklaunch/validator/zod';
12
+ } from '@{{app_name}}/core';
13
13
 
14
14
  export const CreatePlanSchema = <
15
15
  T extends Record<string, LiteralSchema>,
@@ -7,7 +7,7 @@ import {
7
7
  string,
8
8
  unknown,
9
9
  uuid
10
- } from '@forklaunch/validator/zod';
10
+ } from '@{{app_name}}/core';
11
11
 
12
12
  export const CreateSubscriptionSchema = <
13
13
  T extends Record<string, LiteralSchema>,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/implementation-billing-base",
3
- "version": "0.3.5",
3
+ "version": "0.3.7",
4
4
  "description": "Billing basic implementation for forklaunch",
5
5
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
6
6
  "bugs": {
@@ -36,21 +36,21 @@
36
36
  "lib/**"
37
37
  ],
38
38
  "dependencies": {
39
- "@forklaunch/common": "^0.3.14",
40
- "@forklaunch/core": "^0.9.21",
41
- "@forklaunch/internal": "^0.0.7",
42
- "@forklaunch/validator": "^0.6.16",
39
+ "@forklaunch/common": "^0.4.2",
40
+ "@forklaunch/core": "^0.10.4",
41
+ "@forklaunch/internal": "^0.1.4",
42
+ "@forklaunch/validator": "^0.7.4",
43
43
  "@mikro-orm/core": "^6.4.16",
44
- "@sinclair/typebox": "^0.34.35",
44
+ "@sinclair/typebox": "^0.34.37",
45
45
  "ajv": "^8.17.1",
46
- "zod": "^3.25.67",
47
- "@forklaunch/interfaces-billing": "0.3.1"
46
+ "zod": "^3.25.71",
47
+ "@forklaunch/interfaces-billing": "0.3.3"
48
48
  },
49
49
  "devDependencies": {
50
- "@typescript/native-preview": "7.0.0-dev.20250619.1",
50
+ "@typescript/native-preview": "7.0.0-dev.20250703.1",
51
51
  "depcheck": "^1.4.7",
52
- "prettier": "^3.5.3",
53
- "typedoc": "^0.28.5"
52
+ "prettier": "^3.6.2",
53
+ "typedoc": "^0.28.7"
54
54
  },
55
55
  "scripts": {
56
56
  "build": "tsc --noEmit && tsup domain/schemas/index.ts services/index.ts domain/types/index.ts --format cjs,esm --no-splitting --dts --tsconfig tsconfig.json --out-dir lib --clean && if [ -f eject-package.bash ]; then pnpm package:eject; fi",