@opra/client 0.11.7 → 0.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.
- package/cjs/index.min.mjs +8445 -1
- package/esm/index.min.mjs +8292 -1
- package/package.json +11 -11
- package/typings/common/filter/antlr/OpraFilterLexer.d.ts +1 -1
- package/typings/common/filter/antlr/OpraFilterListener.d.ts +1 -1
- package/typings/common/filter/ast/expressions/arithmetic-expression.d.ts +1 -1
- package/typings/common/filter/ast/expressions/comparison-expression.d.ts +1 -1
- package/typings/common/filter/ast/expressions/logical-expression.d.ts +1 -1
- package/typings/common/filter/build.d.ts +3 -3
- package/typings/common/filter/errors.d.ts +2 -0
- package/typings/common/filter/filter-tree-visitor.d.ts +2 -1
- package/typings/common/helpers/responsive-map.d.ts +19 -5
- package/typings/common/http/enums/{http-headers.enum.d.ts → http-headers-codes.enum.d.ts} +1 -1
- package/typings/common/http/enums/{http-status.enum.d.ts → http-status-codes.enum.d.ts} +1 -1
- package/typings/common/http/http-headers.d.ts +70 -0
- package/typings/common/http/http-param-codec.d.ts +4 -0
- package/typings/common/http/http-params.d.ts +99 -0
- package/typings/common/http/http-request-node.d.ts +34 -0
- package/typings/common/http/http-request.d.ts +73 -31
- package/typings/common/http/http-response.d.ts +41 -0
- package/typings/common/http/index.d.ts +13 -2
- package/typings/common/http/interfaces/client-http-headers.interface.d.ts +1 -1
- package/typings/common/http/interfaces/server-http-headers.interface.d.ts +1 -1
- package/typings/common/http/multipart/batch-multipart.d.ts +1 -1
- package/typings/common/http/multipart/http-request-content.d.ts +1 -1
- package/typings/common/http/multipart/http-response-content.d.ts +1 -1
- package/typings/common/http/param-codec/boolean-codec.d.ts +5 -0
- package/typings/common/http/param-codec/date-codec.d.ts +16 -0
- package/typings/common/http/param-codec/filter-codec.d.ts +6 -0
- package/typings/common/http/param-codec/integer-codec.d.ts +9 -0
- package/typings/common/http/param-codec/number-codec.d.ts +12 -0
- package/typings/common/http/param-codec/string-codec.d.ts +14 -0
- package/typings/common/http/utils/encodeURIParam.d.ts +1 -0
- package/typings/common/i18n/i18n.d.ts +6 -6
- package/typings/common/schema/decorators/opr-collection-resource.decorator.d.ts +1 -1
- package/typings/common/schema/decorators/opr-complex-type.decorator.d.ts +1 -1
- package/typings/common/schema/decorators/opr-simple-type.decorator.d.ts +1 -1
- package/typings/common/schema/decorators/opr-singleton-resource.decorator.d.ts +1 -1
- package/typings/common/schema/implementation/data-type/complex-type.d.ts +1 -1
- package/typings/common/schema/implementation/data-type/union-type.d.ts +1 -1
- package/typings/common/schema/implementation/document-builder.d.ts +1 -1
- package/typings/common/schema/implementation/opra-document.d.ts +2 -2
- package/typings/common/schema/implementation/query/collection-count-query.d.ts +1 -1
- package/typings/common/schema/implementation/query/collection-create-query.d.ts +1 -1
- package/typings/common/schema/implementation/query/collection-delete-many-query.d.ts +1 -1
- package/typings/common/schema/implementation/query/collection-get-query.d.ts +1 -1
- package/typings/common/schema/implementation/query/collection-search-query.d.ts +1 -1
- package/typings/common/schema/implementation/query/collection-update-many-query.d.ts +1 -1
- package/typings/common/schema/implementation/query/collection-update-query.d.ts +1 -1
- package/typings/common/schema/implementation/query/field-get-query.d.ts +1 -1
- package/typings/common/schema/implementation/query/index.d.ts +4 -4
- package/typings/common/schema/implementation/query/singleton-get-query.d.ts +1 -1
- package/typings/common/schema/implementation/resource/collection-resource-info.d.ts +2 -0
- package/typings/common/schema/interfaces/data-type.metadata.d.ts +4 -4
- package/typings/common/schema/interfaces/resource.metadata.d.ts +9 -9
- package/typings/common/schema/types.d.ts +8 -8
- package/typings/common/url/opra-url-path-component.d.ts +1 -1
- package/typings/common/url/opra-url-path.d.ts +24 -18
- package/typings/common/url/opra-url-search-params.d.ts +3 -42
- package/typings/common/url/opra-url.d.ts +38 -28
- package/typings/http/http-client.d.ts +30 -13
- package/typings/http/http-collection-service.d.ts +67 -13
- package/typings/http/http-request-host.d.ts +18 -0
- package/typings/http/http-singleton-service.d.ts +24 -6
- package/typings/http/http-types.d.ts +44 -21
- package/typings/http/requests/batch-request.d.ts +0 -18
- package/typings/http/requests/collection-create-request.d.ts +5 -10
- package/typings/http/requests/collection-delete-many-request.d.ts +5 -9
- package/typings/http/requests/collection-delete-request.d.ts +5 -10
- package/typings/http/requests/collection-get-request.d.ts +5 -10
- package/typings/http/requests/collection-search-request.d.ts +5 -9
- package/typings/http/requests/collection-update-many-request.d.ts +5 -10
- package/typings/http/requests/collection-update-request.d.ts +5 -11
- package/typings/http/requests/singleton-create-request.d.ts +7 -0
- package/typings/http/requests/singleton-delete-request.d.ts +7 -0
- package/typings/http/requests/singleton-get-request.d.ts +7 -0
- package/typings/index.d.ts +3 -4
- package/typings/interfaces/http-options.interface.d.ts +1 -1
- package/typings/interfaces/http-request-config.interface.d.ts +1 -1
- package/typings/http/http-request.d.ts +0 -25
- package/typings/http/http-response.d.ts +0 -14
- package/typings/http/requests/http-singleton-get-request.d.ts +0 -11
- package/typings/http/utils/merge-raw-http-requests.util.d.ts +0 -2
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.