@forklaunch/implementation-iam-base 0.3.4 → 0.3.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.
@@ -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
  import { UserSchema } from './user.schema';
12
12
 
13
13
  export const CreateOrganizationSchema = {
@@ -5,7 +5,7 @@ import {
5
5
  string,
6
6
  unknown,
7
7
  uuid
8
- } from '@forklaunch/validator/zod';
8
+ } from '@{{app_name}}/core';
9
9
 
10
10
  export const CreatePermissionSchema = {
11
11
  slug: string,
@@ -5,7 +5,7 @@ import {
5
5
  string,
6
6
  unknown,
7
7
  uuid
8
- } from '@forklaunch/validator/zod';
8
+ } from '@{{app_name}}/core';
9
9
  import { PermissionSchema } from './permission.schema';
10
10
 
11
11
  export const CreateRoleSchema = {
@@ -6,7 +6,7 @@ import {
6
6
  string,
7
7
  unknown,
8
8
  uuid
9
- } from '@forklaunch/validator/zod';
9
+ } from '@{{app_name}}/core';
10
10
  import { RoleSchema } from './role.schema';
11
11
 
12
12
  export const CreateUserSchema = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/implementation-iam-base",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
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-iam": "0.3.2"
46
+ "zod": "^3.25.71",
47
+ "@forklaunch/interfaces-iam": "0.3.4"
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",