@orpc/openapi-client 0.0.0-next.f72e6b9 → 0.0.0-next.fa8d145

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/README.md CHANGED
@@ -49,6 +49,7 @@ You can find the full documentation [here](https://orpc.unnoq.com).
49
49
  - [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
50
50
  - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
51
51
  - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
52
+ - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with NestJS.
52
53
  - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
53
54
  - [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
54
55
  - [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
@@ -1,6 +1,6 @@
1
1
  import { LinkFetchClient } from '@orpc/client/fetch';
2
2
  import '@orpc/shared';
3
- import { b as StandardOpenAPILink } from '../../shared/openapi-client.D89vdV2Y.mjs';
3
+ import { b as StandardOpenAPILink } from '../../shared/openapi-client.BwEwVdZl.mjs';
4
4
  import '@orpc/client';
5
5
  import '@orpc/client/standard';
6
6
  import '@orpc/contract';
@@ -1,4 +1,4 @@
1
- export { S as StandardBracketNotationSerializer, a as StandardOpenAPIJsonSerializer, b as StandardOpenAPILink, d as StandardOpenAPISerializer, c as StandardOpenapiLinkCodec, g as getDynamicParams, s as standardizeHTTPPath } from '../../shared/openapi-client.D89vdV2Y.mjs';
1
+ export { S as StandardBracketNotationSerializer, a as StandardOpenAPIJsonSerializer, b as StandardOpenAPILink, d as StandardOpenAPISerializer, c as StandardOpenapiLinkCodec, g as getDynamicParams, s as standardizeHTTPPath } from '../../shared/openapi-client.BwEwVdZl.mjs';
2
2
  import '@orpc/client/standard';
3
3
  import '@orpc/shared';
4
4
  import '@orpc/client';
@@ -329,6 +329,7 @@ class StandardOpenapiLinkCodec {
329
329
  return deserialized;
330
330
  }
331
331
  return {
332
+ status: response.status,
332
333
  headers: response.headers,
333
334
  body: deserialized
334
335
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/openapi-client",
3
3
  "type": "module",
4
- "version": "0.0.0-next.f72e6b9",
4
+ "version": "0.0.0-next.fa8d145",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -34,13 +34,13 @@
34
34
  "dist"
35
35
  ],
36
36
  "dependencies": {
37
- "@orpc/client": "0.0.0-next.f72e6b9",
38
- "@orpc/shared": "0.0.0-next.f72e6b9",
39
- "@orpc/contract": "0.0.0-next.f72e6b9",
40
- "@orpc/standard-server": "0.0.0-next.f72e6b9"
37
+ "@orpc/client": "0.0.0-next.fa8d145",
38
+ "@orpc/contract": "0.0.0-next.fa8d145",
39
+ "@orpc/shared": "0.0.0-next.fa8d145",
40
+ "@orpc/standard-server": "0.0.0-next.fa8d145"
41
41
  },
42
42
  "devDependencies": {
43
- "@orpc/server": "0.0.0-next.f72e6b9"
43
+ "@orpc/server": "0.0.0-next.fa8d145"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "unbuild",