@opra/common 1.26.3 → 1.26.4

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/README.md +24 -1
  2. package/browser.js +3 -3
  3. package/document/api-document.js +4 -4
  4. package/document/common/document-node.js +2 -0
  5. package/document/data-type/api-field.d.ts +0 -1
  6. package/document/data-type/complex-type-base.js +7 -7
  7. package/document/data-type/complex-type.js +2 -2
  8. package/document/data-type/data-type.js +1 -1
  9. package/document/data-type/extended-types/field-path.type.js +1 -1
  10. package/document/data-type/extended-types/filter.type.js +1 -1
  11. package/document/data-type/mapped-type.js +1 -1
  12. package/document/decorators/http-operation-entity-create.decorator.js +1 -1
  13. package/document/decorators/http-operation-entity-delete-many.decorator.js +1 -1
  14. package/document/decorators/http-operation-entity-delete.decorator.js +1 -1
  15. package/document/decorators/http-operation-entity-find-many.decorator.js +1 -1
  16. package/document/decorators/http-operation-entity-get.decorator.js +1 -1
  17. package/document/decorators/http-operation-entity-replace.decorator.js +1 -1
  18. package/document/decorators/http-operation-entity-update-many.decorator.js +1 -1
  19. package/document/decorators/http-operation-entity-update.decorator.js +1 -1
  20. package/document/decorators/http-operation-entity.decorator.d.ts +0 -9
  21. package/document/decorators/http-operation-entity.decorator.js +1 -1
  22. package/document/factory/api-document.factory.js +3 -3
  23. package/document/factory/data-type.factory.js +7 -7
  24. package/document/http/http-controller.js +2 -2
  25. package/document/mq/mq-api.js +2 -2
  26. package/document/ws/ws-api.js +2 -2
  27. package/filter/filter-rules.js +3 -3
  28. package/helpers/parse-fields-projection.js +1 -1
  29. package/package.json +1 -1
  30. package/schema/types.d.ts +1 -11
package/README.md CHANGED
@@ -1,3 +1,26 @@
1
1
  # @opra/common
2
2
 
3
- OPRA common package.
3
+ [![NPM Version][npm-image]][npm-url]
4
+ [![NPM Downloads][downloads-image]][downloads-url]
5
+ [![CI Tests][ci-test-image]][ci-test-url]
6
+ [![Test Coverage][coveralls-image]][coveralls-url]
7
+
8
+
9
+ ## Support
10
+ You can report bugs and discuss features on the [GitHub issues](https://github.com/panates/opra/issues) page.
11
+
12
+ ## Node Compatibility
13
+ - node >= 20.x
14
+
15
+
16
+ ## License
17
+ Available under [MIT](LICENSE) license.
18
+
19
+ [npm-image]: https://img.shields.io/npm/v/@opra/common
20
+ [npm-url]: https://npmjs.org/package/@opra/common
21
+ [downloads-image]: https://img.shields.io/npm/dm/@opra/common.svg
22
+ [downloads-url]: https://npmjs.org/package/@opra/common
23
+ [ci-test-image]: https://github.com/panates/opra/actions/workflows/test.yml/badge.svg
24
+ [ci-test-url]: https://github.com/panates/opra/actions/workflows/test.yml
25
+ [coveralls-image]: https://coveralls.io/repos/github/panates/opra/badge.svg?branch=main
26
+ [coveralls-url]: https://coveralls.io/github/panates/opra?branch=main