@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

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.