@lad-tech/nsc-toolkit 1.11.2 → 1.12.0

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 (30) hide show
  1. package/CHANGELOG.md +3 -3
  2. package/coverage/clover.xml +377 -346
  3. package/coverage/coverage-final.json +13 -11
  4. package/coverage/lcov-report/examples/LogicService/adapters/AuthToolkit.ts.html +130 -0
  5. package/coverage/lcov-report/examples/LogicService/adapters/Configurator.ts.html +1 -1
  6. package/coverage/lcov-report/examples/LogicService/adapters/Repository.ts.html +1 -1
  7. package/coverage/lcov-report/examples/LogicService/adapters/index.html +24 -9
  8. package/coverage/lcov-report/examples/LogicService/adapters/index.ts.html +8 -5
  9. package/coverage/lcov-report/examples/LogicService/index.html +9 -9
  10. package/coverage/lcov-report/examples/LogicService/index.ts.html +36 -6
  11. package/coverage/lcov-report/examples/LogicService/inversion.types.ts.html +8 -5
  12. package/coverage/lcov-report/examples/LogicService/methods/GetUser.ts.html +1 -1
  13. package/coverage/lcov-report/examples/LogicService/methods/GetUserV2.ts.html +5 -2
  14. package/coverage/lcov-report/examples/LogicService/methods/RegisterNewUser.ts.html +148 -0
  15. package/coverage/lcov-report/examples/LogicService/methods/WeirdSum.ts.html +1 -1
  16. package/coverage/lcov-report/examples/LogicService/methods/index.html +21 -6
  17. package/coverage/lcov-report/examples/LogicService/service.ts.html +13 -7
  18. package/coverage/lcov-report/examples/MathService/index.html +1 -1
  19. package/coverage/lcov-report/examples/MathService/index.ts.html +1 -1
  20. package/coverage/lcov-report/examples/MathService/methods/Fibonacci.ts.html +1 -1
  21. package/coverage/lcov-report/examples/MathService/methods/Sum.ts.html +1 -1
  22. package/coverage/lcov-report/examples/MathService/methods/SumStream.ts.html +1 -1
  23. package/coverage/lcov-report/examples/MathService/methods/index.html +1 -1
  24. package/coverage/lcov-report/examples/MathService/service.ts.html +1 -1
  25. package/coverage/lcov-report/index.html +36 -36
  26. package/coverage/lcov.info +690 -630
  27. package/dist/Service.js +24 -16
  28. package/dist/Service.js.map +1 -1
  29. package/dist/types/Service.d.ts +1 -0
  30. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [1.11.2](https://github.com/lad-tech/nsc-toolkit/compare/v1.11.1...v1.11.2) (2023-07-06)
1
+ # [1.12.0](https://github.com/lad-tech/nsc-toolkit/compare/v1.11.2...v1.12.0) (2023-07-18)
2
2
 
3
3
 
4
- ### Bug Fixes
4
+ ### Features
5
5
 
6
- * fix unhandled rejection if adapter throw error ([#58](https://github.com/lad-tech/nsc-toolkit/issues/58)) ([64bbc4b](https://github.com/lad-tech/nsc-toolkit/commit/64bbc4b1c32a2d997effec6650a4d8b46810b70e))
6
+ * Add support sync and async methods in adapter ([#62](https://github.com/lad-tech/nsc-toolkit/issues/62)) ([60677e5](https://github.com/lad-tech/nsc-toolkit/commit/60677e5f3c74aa126876429b0eea50cf3a3d9a49))