@revisium/core 2.10.0 → 2.11.0-alpha.2

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 (71) hide show
  1. package/dist/ee/billing/usage/usage.service.js +8 -9
  2. package/dist/ee/billing/usage/usage.service.js.map +1 -1
  3. package/dist/ee/billing/usage-reporter.service.js +9 -1
  4. package/dist/ee/billing/usage-reporter.service.js.map +1 -1
  5. package/dist/package.json +6 -3
  6. package/dist/src/configure-http-app.d.ts +7 -0
  7. package/dist/src/configure-http-app.js +78 -0
  8. package/dist/src/configure-http-app.js.map +1 -0
  9. package/dist/src/core/shared/shared.module.js +1 -2
  10. package/dist/src/core/shared/shared.module.js.map +1 -1
  11. package/dist/src/features/auth/auth.module.js +2 -0
  12. package/dist/src/features/auth/auth.module.js.map +1 -1
  13. package/dist/src/features/auth/commands/auth-api.service.d.ts +3 -1
  14. package/dist/src/features/auth/commands/auth-api.service.js +8 -4
  15. package/dist/src/features/auth/commands/auth-api.service.js.map +1 -1
  16. package/dist/src/features/auth/commands/handlers/check-project-permission.handler.js +2 -2
  17. package/dist/src/features/auth/commands/handlers/check-project-permission.handler.js.map +1 -1
  18. package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.d.ts +3 -1
  19. package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.js +5 -2
  20. package/dist/src/features/organization/commands/handlers/add-user-to-organization.handler.js.map +1 -1
  21. package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.d.ts +3 -1
  22. package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.js +6 -2
  23. package/dist/src/features/organization/commands/handlers/remove-user-from-organization.handler.js.map +1 -1
  24. package/dist/src/features/project/commands/handlers/add-user-to-project.handler.d.ts +3 -1
  25. package/dist/src/features/project/commands/handlers/add-user-to-project.handler.js +6 -2
  26. package/dist/src/features/project/commands/handlers/add-user-to-project.handler.js.map +1 -1
  27. package/dist/src/features/project/commands/handlers/delete-project.handler.d.ts +3 -1
  28. package/dist/src/features/project/commands/handlers/delete-project.handler.js +6 -2
  29. package/dist/src/features/project/commands/handlers/delete-project.handler.js.map +1 -1
  30. package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.d.ts +3 -1
  31. package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.js +6 -2
  32. package/dist/src/features/project/commands/handlers/remove-user-from-project.handler.js.map +1 -1
  33. package/dist/src/features/project/commands/handlers/update-user-project-role.handler.d.ts +3 -1
  34. package/dist/src/features/project/commands/handlers/update-user-project-role.handler.js +6 -2
  35. package/dist/src/features/project/commands/handlers/update-user-project-role.handler.js.map +1 -1
  36. package/dist/src/features/project/project-api.service.d.ts +5 -2
  37. package/dist/src/features/project/project-api.service.js +15 -2
  38. package/dist/src/features/project/project-api.service.js.map +1 -1
  39. package/dist/src/features/project/queries/handlers/find-project-identity.handler.d.ts +12 -0
  40. package/dist/src/features/project/queries/handlers/find-project-identity.handler.js +113 -0
  41. package/dist/src/features/project/queries/handlers/find-project-identity.handler.js.map +1 -0
  42. package/dist/src/features/project/queries/handlers/index.d.ts +2 -1
  43. package/dist/src/features/project/queries/handlers/index.js +2 -0
  44. package/dist/src/features/project/queries/handlers/index.js.map +1 -1
  45. package/dist/src/features/project/queries/impl/find-project-identity.query.d.ts +21 -0
  46. package/dist/src/features/project/queries/impl/find-project-identity.query.js +10 -0
  47. package/dist/src/features/project/queries/impl/find-project-identity.query.js.map +1 -0
  48. package/dist/src/features/project/queries/impl/index.d.ts +1 -0
  49. package/dist/src/features/project/queries/impl/index.js +1 -0
  50. package/dist/src/features/project/queries/impl/index.js.map +1 -1
  51. package/dist/src/index.d.ts +1 -0
  52. package/dist/src/index.js +3 -1
  53. package/dist/src/index.js.map +1 -1
  54. package/dist/src/infrastructure/cache/constants/project-cache.constants.d.ts +7 -0
  55. package/dist/src/infrastructure/cache/constants/project-cache.constants.js +11 -0
  56. package/dist/src/infrastructure/cache/constants/project-cache.constants.js.map +1 -0
  57. package/dist/src/infrastructure/cache/revisium-cache.module.js +3 -0
  58. package/dist/src/infrastructure/cache/revisium-cache.module.js.map +1 -1
  59. package/dist/src/infrastructure/cache/services/auth-cache.service.d.ts +7 -1
  60. package/dist/src/infrastructure/cache/services/auth-cache.service.js +9 -7
  61. package/dist/src/infrastructure/cache/services/auth-cache.service.js.map +1 -1
  62. package/dist/src/infrastructure/cache/services/project-cache.service.d.ts +15 -0
  63. package/dist/src/infrastructure/cache/services/project-cache.service.js +40 -0
  64. package/dist/src/infrastructure/cache/services/project-cache.service.js.map +1 -0
  65. package/dist/src/infrastructure/health/notification.check.d.ts +16 -5
  66. package/dist/src/infrastructure/health/notification.check.js +66 -11
  67. package/dist/src/infrastructure/health/notification.check.js.map +1 -1
  68. package/dist/src/main.js +4 -52
  69. package/dist/src/main.js.map +1 -1
  70. package/dist/tsconfig.build.tsbuildinfo +1 -1
  71. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revisium/core",
3
- "version": "2.10.0",
3
+ "version": "2.11.0-alpha.2",
4
4
  "description": "Revisium is a tool (UI/API) inspired by JSON (JSON Schema) and Git, designed to provide a flexible and low-level headless CMS solution.",
5
5
  "private": false,
6
6
  "homepage": "https://revisium.io",
@@ -38,7 +38,7 @@
38
38
  "test:watch": "NODE_ENV=test jest --watch",
39
39
  "test:cov": "NODE_ENV=test jest --maxWorkers=4 --forceExit --coverage --silent",
40
40
  "test:debug": "NODE_ENV=test node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
41
- "tsc": "tsc -p tsconfig.json",
41
+ "tsc": "tsc -p tsconfig.json --noEmit",
42
42
  "docker:test-container-up": "docker compose -f docker-compose-test.yml -p revisium-core-test up -d && sleep 1 && dotenv -e .env.test npm run prisma:migrate:deploy && dotenv -e .env.test npm run seed",
43
43
  "docker:test-container-down": "docker compose -f docker-compose-test.yml -p revisium-core-test down --volumes",
44
44
  "version:minor": "npm version minor --no-git-tag-version",
@@ -147,9 +147,12 @@
147
147
  "schema-utils": {
148
148
  "ajv": "^8.18.0"
149
149
  },
150
+ "fast-uri": "^3.1.2",
151
+ "fast-xml-builder": "^1.2.0",
150
152
  "file-type": "^21.3.2",
151
- "hono": "^4.12.14",
153
+ "hono": "^4.12.18",
152
154
  "@hono/node-server": "^1.19.13",
155
+ "ip-address": "^10.2.0",
153
156
  "lodash": "^4.18.1",
154
157
  "path-to-regexp": "^8.4.0",
155
158
  "picomatch": "^4.0.4",