@tomei/sso 0.60.3 → 0.60.4-dev.10

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 (45) hide show
  1. package/.husky/commit-msg +0 -6
  2. package/coverage/lcov-report/components/login-user/login-user.ts.html +80 -73
  3. package/dist/src/components/login-history/index.d.ts +1 -0
  4. package/dist/src/components/login-history/index.js +1 -0
  5. package/dist/src/components/login-history/index.js.map +1 -1
  6. package/dist/src/components/login-history/login-history.d.ts +23 -0
  7. package/dist/src/components/login-history/login-history.js +88 -0
  8. package/dist/src/components/login-history/login-history.js.map +1 -0
  9. package/dist/src/components/login-history/login-history.repository.d.ts +2 -2
  10. package/dist/src/components/login-history/login-history.repository.js.map +1 -1
  11. package/dist/src/components/login-user/interfaces/user-info.interface.d.ts +1 -0
  12. package/dist/src/components/login-user/login-user.js +1 -0
  13. package/dist/src/components/login-user/login-user.js.map +1 -1
  14. package/dist/src/components/login-user/user.d.ts +28 -3
  15. package/dist/src/components/login-user/user.js +357 -14
  16. package/dist/src/components/login-user/user.js.map +1 -1
  17. package/dist/src/components/user-system-access/user-system-access.js +1 -1
  18. package/dist/src/components/user-system-access/user-system-access.js.map +1 -1
  19. package/dist/src/interfaces/login-history-search-attr.interface.d.ts +8 -0
  20. package/dist/src/interfaces/login-history-search-attr.interface.js +3 -0
  21. package/dist/src/interfaces/login-history-search-attr.interface.js.map +1 -0
  22. package/dist/src/interfaces/login-history.interface.d.ts +11 -0
  23. package/dist/src/interfaces/login-history.interface.js +3 -0
  24. package/dist/src/interfaces/login-history.interface.js.map +1 -0
  25. package/dist/src/models/login-history.entity.d.ts +2 -2
  26. package/dist/src/models/login-history.entity.js +13 -13
  27. package/dist/src/models/login-history.entity.js.map +1 -1
  28. package/dist/src/models/user.entity.d.ts +1 -0
  29. package/dist/src/models/user.entity.js +8 -0
  30. package/dist/src/models/user.entity.js.map +1 -1
  31. package/dist/tsconfig.tsbuildinfo +1 -1
  32. package/migrations/20250610070720-added-MFBypassYN-to-sso-user.js +30 -0
  33. package/package.json +1 -1
  34. package/src/components/login-history/index.ts +1 -0
  35. package/src/components/login-history/login-history.repository.ts +4 -4
  36. package/src/components/login-history/login-history.ts +124 -0
  37. package/src/components/login-user/interfaces/user-info.interface.ts +1 -0
  38. package/src/components/login-user/login-user.ts +1 -0
  39. package/src/components/login-user/user.ts +435 -16
  40. package/src/components/user-system-access/user-system-access.ts +1 -1
  41. package/src/interfaces/login-history-search-attr.interface.ts +8 -0
  42. package/src/interfaces/login-history.interface.ts +11 -0
  43. package/src/models/login-history.entity.ts +2 -2
  44. package/src/models/user.entity.ts +7 -0
  45. package/sonar-project.properties +0 -23
@@ -1,23 +0,0 @@
1
- sonar.projectKey=all-tomei-projects_sso
2
- sonar.organization=all-tomei-projects
3
- sonar.exclusions=**/*.js,test-data,dist,coverage, node_modules, __tests__, **/*.spec.ts, __mocks__
4
- sonar.scm.provider=git
5
-
6
- sonar.sources=src
7
- sonar.test=__tests__
8
- sonar.test.inclusions=src/**/*.spec.ts
9
-
10
- sonar.javascript.lcov.reportPaths=./coverage/lcov.info
11
- sonar.testExecutionReportPaths=coverage/test-report.xml
12
- sonar.sourceEnconding=UTF-8
13
-
14
- # This is the name and version displayed in the SonarCloud UI.
15
- #sonar.projectName=sso
16
- #sonar.projectVersion=1.0
17
-
18
-
19
- # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
20
- #sonar.sources=.
21
-
22
- # Encoding of the source code. Default is default system encoding
23
- #sonar.sourceEncoding=UTF-8