@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.
Files changed (83) hide show
  1. package/cjs/index.min.mjs +8445 -1
  2. package/esm/index.min.mjs +8292 -1
  3. package/package.json +11 -11
  4. package/typings/common/filter/antlr/OpraFilterLexer.d.ts +1 -1
  5. package/typings/common/filter/antlr/OpraFilterListener.d.ts +1 -1
  6. package/typings/common/filter/ast/expressions/arithmetic-expression.d.ts +1 -1
  7. package/typings/common/filter/ast/expressions/comparison-expression.d.ts +1 -1
  8. package/typings/common/filter/ast/expressions/logical-expression.d.ts +1 -1
  9. package/typings/common/filter/build.d.ts +3 -3
  10. package/typings/common/filter/errors.d.ts +2 -0
  11. package/typings/common/filter/filter-tree-visitor.d.ts +2 -1
  12. package/typings/common/helpers/responsive-map.d.ts +19 -5
  13. package/typings/common/http/enums/{http-headers.enum.d.ts → http-headers-codes.enum.d.ts} +1 -1
  14. package/typings/common/http/enums/{http-status.enum.d.ts → http-status-codes.enum.d.ts} +1 -1
  15. package/typings/common/http/http-headers.d.ts +70 -0
  16. package/typings/common/http/http-param-codec.d.ts +4 -0
  17. package/typings/common/http/http-params.d.ts +99 -0
  18. package/typings/common/http/http-request-node.d.ts +34 -0
  19. package/typings/common/http/http-request.d.ts +73 -31
  20. package/typings/common/http/http-response.d.ts +41 -0
  21. package/typings/common/http/index.d.ts +13 -2
  22. package/typings/common/http/interfaces/client-http-headers.interface.d.ts +1 -1
  23. package/typings/common/http/interfaces/server-http-headers.interface.d.ts +1 -1
  24. package/typings/common/http/multipart/batch-multipart.d.ts +1 -1
  25. package/typings/common/http/multipart/http-request-content.d.ts +1 -1
  26. package/typings/common/http/multipart/http-response-content.d.ts +1 -1
  27. package/typings/common/http/param-codec/boolean-codec.d.ts +5 -0
  28. package/typings/common/http/param-codec/date-codec.d.ts +16 -0
  29. package/typings/common/http/param-codec/filter-codec.d.ts +6 -0
  30. package/typings/common/http/param-codec/integer-codec.d.ts +9 -0
  31. package/typings/common/http/param-codec/number-codec.d.ts +12 -0
  32. package/typings/common/http/param-codec/string-codec.d.ts +14 -0
  33. package/typings/common/http/utils/encodeURIParam.d.ts +1 -0
  34. package/typings/common/i18n/i18n.d.ts +6 -6
  35. package/typings/common/schema/decorators/opr-collection-resource.decorator.d.ts +1 -1
  36. package/typings/common/schema/decorators/opr-complex-type.decorator.d.ts +1 -1
  37. package/typings/common/schema/decorators/opr-simple-type.decorator.d.ts +1 -1
  38. package/typings/common/schema/decorators/opr-singleton-resource.decorator.d.ts +1 -1
  39. package/typings/common/schema/implementation/data-type/complex-type.d.ts +1 -1
  40. package/typings/common/schema/implementation/data-type/union-type.d.ts +1 -1
  41. package/typings/common/schema/implementation/document-builder.d.ts +1 -1
  42. package/typings/common/schema/implementation/opra-document.d.ts +2 -2
  43. package/typings/common/schema/implementation/query/collection-count-query.d.ts +1 -1
  44. package/typings/common/schema/implementation/query/collection-create-query.d.ts +1 -1
  45. package/typings/common/schema/implementation/query/collection-delete-many-query.d.ts +1 -1
  46. package/typings/common/schema/implementation/query/collection-get-query.d.ts +1 -1
  47. package/typings/common/schema/implementation/query/collection-search-query.d.ts +1 -1
  48. package/typings/common/schema/implementation/query/collection-update-many-query.d.ts +1 -1
  49. package/typings/common/schema/implementation/query/collection-update-query.d.ts +1 -1
  50. package/typings/common/schema/implementation/query/field-get-query.d.ts +1 -1
  51. package/typings/common/schema/implementation/query/index.d.ts +4 -4
  52. package/typings/common/schema/implementation/query/singleton-get-query.d.ts +1 -1
  53. package/typings/common/schema/implementation/resource/collection-resource-info.d.ts +2 -0
  54. package/typings/common/schema/interfaces/data-type.metadata.d.ts +4 -4
  55. package/typings/common/schema/interfaces/resource.metadata.d.ts +9 -9
  56. package/typings/common/schema/types.d.ts +8 -8
  57. package/typings/common/url/opra-url-path-component.d.ts +1 -1
  58. package/typings/common/url/opra-url-path.d.ts +24 -18
  59. package/typings/common/url/opra-url-search-params.d.ts +3 -42
  60. package/typings/common/url/opra-url.d.ts +38 -28
  61. package/typings/http/http-client.d.ts +30 -13
  62. package/typings/http/http-collection-service.d.ts +67 -13
  63. package/typings/http/http-request-host.d.ts +18 -0
  64. package/typings/http/http-singleton-service.d.ts +24 -6
  65. package/typings/http/http-types.d.ts +44 -21
  66. package/typings/http/requests/batch-request.d.ts +0 -18
  67. package/typings/http/requests/collection-create-request.d.ts +5 -10
  68. package/typings/http/requests/collection-delete-many-request.d.ts +5 -9
  69. package/typings/http/requests/collection-delete-request.d.ts +5 -10
  70. package/typings/http/requests/collection-get-request.d.ts +5 -10
  71. package/typings/http/requests/collection-search-request.d.ts +5 -9
  72. package/typings/http/requests/collection-update-many-request.d.ts +5 -10
  73. package/typings/http/requests/collection-update-request.d.ts +5 -11
  74. package/typings/http/requests/singleton-create-request.d.ts +7 -0
  75. package/typings/http/requests/singleton-delete-request.d.ts +7 -0
  76. package/typings/http/requests/singleton-get-request.d.ts +7 -0
  77. package/typings/index.d.ts +3 -4
  78. package/typings/interfaces/http-options.interface.d.ts +1 -1
  79. package/typings/interfaces/http-request-config.interface.d.ts +1 -1
  80. package/typings/http/http-request.d.ts +0 -25
  81. package/typings/http/http-response.d.ts +0 -14
  82. package/typings/http/requests/http-singleton-get-request.d.ts +0 -11
  83. 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.