@forklaunch/implementation-iam-base 0.1.13 → 0.1.15

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.
Files changed (42) hide show
  1. package/lib/__test__/schemaEquality.test.d.ts +1 -1
  2. package/lib/__test__/schemaEquality.test.js +235 -135
  3. package/lib/jest.config.d.ts +1 -1
  4. package/lib/jest.config.js +16 -16
  5. package/lib/schemas/index.d.ts +1 -1
  6. package/lib/schemas/organization.schema.d.ts +375 -152
  7. package/lib/schemas/organization.schema.js +4 -1
  8. package/lib/schemas/permission.schema.d.ts +88 -34
  9. package/lib/schemas/permission.schema.js +4 -1
  10. package/lib/schemas/role.schema.d.ts +139 -50
  11. package/lib/schemas/role.schema.js +4 -1
  12. package/lib/schemas/typebox/organization.schema.d.ts +373 -103
  13. package/lib/schemas/typebox/organization.schema.js +27 -17
  14. package/lib/schemas/typebox/permission.schema.d.ts +114 -38
  15. package/lib/schemas/typebox/permission.schema.js +24 -17
  16. package/lib/schemas/typebox/role.schema.d.ts +174 -50
  17. package/lib/schemas/typebox/role.schema.js +24 -17
  18. package/lib/schemas/typebox/user.schema.d.ts +306 -94
  19. package/lib/schemas/typebox/user.schema.js +40 -32
  20. package/lib/schemas/user.schema.d.ts +270 -116
  21. package/lib/schemas/user.schema.js +4 -1
  22. package/lib/schemas/zod/organization.schema.d.ts +355 -221
  23. package/lib/schemas/zod/organization.schema.js +27 -17
  24. package/lib/schemas/zod/permission.schema.d.ts +62 -38
  25. package/lib/schemas/zod/permission.schema.js +24 -17
  26. package/lib/schemas/zod/role.schema.d.ts +112 -66
  27. package/lib/schemas/zod/role.schema.js +24 -17
  28. package/lib/schemas/zod/user.schema.d.ts +214 -144
  29. package/lib/schemas/zod/user.schema.js +40 -32
  30. package/lib/services/index.d.ts +1 -1
  31. package/lib/services/organization.service.d.ts +106 -33
  32. package/lib/services/organization.service.js +47 -32
  33. package/lib/services/permission.service.d.ts +117 -41
  34. package/lib/services/permission.service.js +193 -149
  35. package/lib/services/role.service.d.ts +104 -35
  36. package/lib/services/role.service.js +70 -54
  37. package/lib/services/user.service.d.ts +121 -37
  38. package/lib/services/user.service.js +121 -80
  39. package/lib/tsconfig.tsbuildinfo +1 -1
  40. package/lib/vitest.config.d.ts +2 -2
  41. package/lib/vitest.config.js +4 -4
  42. package/package.json +8 -8
@@ -1,3 +1,3 @@
1
- declare const _default: import("vite").UserConfig;
1
+ declare const _default: import('vite').UserConfig;
2
2
  export default _default;
3
- //# sourceMappingURL=vitest.config.d.ts.map
3
+ //# sourceMappingURL=vitest.config.d.ts.map
@@ -1,7 +1,7 @@
1
1
  import { defineConfig } from 'vitest/config';
2
2
  export default defineConfig({
3
- test: {
4
- globals: true,
5
- exclude: ['**/lib/**', '**/node_modules/**']
6
- }
3
+ test: {
4
+ globals: true,
5
+ exclude: ['**/lib/**', '**/node_modules/**']
6
+ }
7
7
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/implementation-iam-base",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
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.2.11",
32
- "@forklaunch/core": "^0.7.4",
33
- "@forklaunch/validator": "^0.5.4",
34
- "@mikro-orm/core": "^6.4.13",
31
+ "@forklaunch/common": "^0.3.2",
32
+ "@forklaunch/core": "^0.8.2",
33
+ "@forklaunch/validator": "^0.6.2",
34
+ "@mikro-orm/core": "^6.4.16",
35
35
  "@sinclair/typebox": "^0.34.33",
36
36
  "ajv": "^8.17.1",
37
- "zod": "^3.24.3",
38
- "@forklaunch/interfaces-iam": "0.1.13"
37
+ "zod": "^3.25.42",
38
+ "@forklaunch/interfaces-iam": "0.1.15"
39
39
  },
40
40
  "devDependencies": {
41
41
  "depcheck": "^1.4.7",
42
42
  "prettier": "^3.5.3",
43
- "typedoc": "^0.28.3"
43
+ "typedoc": "^0.28.5"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "tsc && if [ -f eject-package.bash ]; then pnpm package:eject; fi",