@forklaunch/implementation-iam-base 0.1.12 → 0.1.14
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.d.ts +2 -0
- package/lib/__test__/schemaEquality.test.d.ts.map +1 -0
- package/lib/__test__/schemaEquality.test.js +283 -0
- package/lib/eject/domain/schemas/index.ts +4 -0
- package/lib/eject/domain/schemas/organization.schema.ts +53 -0
- package/lib/eject/domain/schemas/permission.schema.ts +36 -0
- package/lib/eject/domain/schemas/role.schema.ts +37 -0
- package/lib/eject/domain/schemas/user.schema.ts +53 -0
- package/lib/eject/services/index.ts +4 -0
- package/lib/eject/services/organization.service.ts +143 -0
- package/lib/eject/services/permission.service.ts +345 -0
- package/lib/eject/services/role.service.ts +179 -0
- package/lib/eject/services/user.service.ts +224 -0
- package/lib/jest.config.d.ts +4 -0
- package/lib/jest.config.d.ts.map +1 -0
- package/lib/jest.config.js +19 -0
- package/lib/schemas/index.d.ts +5 -0
- package/lib/schemas/index.d.ts.map +1 -0
- package/lib/schemas/index.js +4 -0
- package/lib/schemas/organization.schema.d.ts +411 -0
- package/lib/schemas/organization.schema.d.ts.map +1 -0
- package/lib/schemas/organization.schema.js +7 -0
- package/lib/schemas/permission.schema.d.ts +104 -0
- package/lib/schemas/permission.schema.d.ts.map +1 -0
- package/lib/schemas/permission.schema.js +7 -0
- package/lib/schemas/role.schema.d.ts +163 -0
- package/lib/schemas/role.schema.d.ts.map +1 -0
- package/lib/schemas/role.schema.js +7 -0
- package/lib/schemas/typebox/organization.schema.d.ts +414 -0
- package/lib/schemas/typebox/organization.schema.d.ts.map +1 -0
- package/lib/schemas/typebox/organization.schema.js +44 -0
- package/lib/schemas/typebox/permission.schema.d.ts +131 -0
- package/lib/schemas/typebox/permission.schema.d.ts.map +1 -0
- package/lib/schemas/typebox/permission.schema.js +32 -0
- package/lib/schemas/typebox/role.schema.d.ts +199 -0
- package/lib/schemas/typebox/role.schema.d.ts.map +1 -0
- package/lib/schemas/typebox/role.schema.js +33 -0
- package/lib/schemas/typebox/user.schema.d.ts +339 -0
- package/lib/schemas/typebox/user.schema.d.ts.map +1 -0
- package/lib/schemas/typebox/user.schema.js +49 -0
- package/lib/schemas/user.schema.d.ts +290 -0
- package/lib/schemas/user.schema.d.ts.map +1 -0
- package/lib/schemas/user.schema.js +7 -0
- package/lib/schemas/zod/organization.schema.d.ts +374 -0
- package/lib/schemas/zod/organization.schema.d.ts.map +1 -0
- package/lib/schemas/zod/organization.schema.js +44 -0
- package/lib/schemas/zod/permission.schema.d.ts +63 -0
- package/lib/schemas/zod/permission.schema.d.ts.map +1 -0
- package/lib/schemas/zod/permission.schema.js +32 -0
- package/lib/schemas/zod/role.schema.d.ts +113 -0
- package/lib/schemas/zod/role.schema.d.ts.map +1 -0
- package/lib/schemas/zod/role.schema.js +33 -0
- package/lib/schemas/zod/user.schema.d.ts +225 -0
- package/lib/schemas/zod/user.schema.d.ts.map +1 -0
- package/lib/schemas/zod/user.schema.js +49 -0
- package/lib/services/index.d.ts +5 -0
- package/lib/services/index.d.ts.map +1 -0
- package/lib/services/index.js +4 -0
- package/lib/services/organization.service.d.ts +118 -0
- package/lib/services/organization.service.d.ts.map +1 -0
- package/lib/services/organization.service.js +50 -0
- package/lib/services/permission.service.d.ts +138 -0
- package/lib/services/permission.service.d.ts.map +1 -0
- package/lib/services/permission.service.js +203 -0
- package/lib/services/role.service.d.ts +118 -0
- package/lib/services/role.service.d.ts.map +1 -0
- package/lib/services/role.service.js +73 -0
- package/lib/services/user.service.d.ts +138 -0
- package/lib/services/user.service.d.ts.map +1 -0
- package/lib/services/user.service.js +126 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/vitest.config.d.ts +3 -0
- package/lib/vitest.config.d.ts.map +1 -0
- package/lib/vitest.config.js +7 -0
- package/package.json +8 -8
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vitest.config.d.ts","sourceRoot":"","sources":["../vitest.config.ts"],"names":[],"mappings":";AAEA,wBAKG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forklaunch/implementation-iam-base",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Billing basic implementation for forklaunch",
|
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -28,19 +28,19 @@
|
|
|
28
28
|
"lib/**"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@forklaunch/common": "^0.
|
|
32
|
-
"@forklaunch/core": "^0.
|
|
33
|
-
"@forklaunch/validator": "^0.
|
|
34
|
-
"@mikro-orm/core": "^6.4.
|
|
31
|
+
"@forklaunch/common": "^0.3.0",
|
|
32
|
+
"@forklaunch/core": "^0.8.0",
|
|
33
|
+
"@forklaunch/validator": "^0.6.0",
|
|
34
|
+
"@mikro-orm/core": "^6.4.15",
|
|
35
35
|
"@sinclair/typebox": "^0.34.33",
|
|
36
36
|
"ajv": "^8.17.1",
|
|
37
|
-
"zod": "^3.
|
|
38
|
-
"@forklaunch/interfaces-iam": "0.1.
|
|
37
|
+
"zod": "^3.25.32",
|
|
38
|
+
"@forklaunch/interfaces-iam": "0.1.14"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"depcheck": "^1.4.7",
|
|
42
42
|
"prettier": "^3.5.3",
|
|
43
|
-
"typedoc": "^0.28.
|
|
43
|
+
"typedoc": "^0.28.5"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "tsc && if [ -f eject-package.bash ]; then pnpm package:eject; fi",
|