@trpc/client 11.0.0-rc.802 → 11.0.0-rc.804

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.
@@ -3,7 +3,7 @@ import { transformResult } from '@trpc/server/unstable-core-do-not-import';
3
3
  import { dataLoader } from '../internals/dataLoader.mjs';
4
4
  import { allAbortSignals } from '../internals/signals.mjs';
5
5
  import { TRPCClientError } from '../TRPCClientError.mjs';
6
- import { resolveHTTPLinkOptions, getUrl, jsonHttpRequester } from './internals/httpUtils.mjs';
6
+ import { resolveHTTPLinkOptions, jsonHttpRequester, getUrl } from './internals/httpUtils.mjs';
7
7
 
8
8
  /**
9
9
  * @see https://trpc.io/docs/client/links/httpBatchLink
@@ -3,7 +3,7 @@ import { jsonlStreamConsumer } from '@trpc/server/unstable-core-do-not-import';
3
3
  import { dataLoader } from '../internals/dataLoader.mjs';
4
4
  import { allAbortSignals, raceAbortSignals } from '../internals/signals.mjs';
5
5
  import { TRPCClientError } from '../TRPCClientError.mjs';
6
- import { resolveHTTPLinkOptions, getUrl, fetchHTTPResponse, getBody } from './internals/httpUtils.mjs';
6
+ import { resolveHTTPLinkOptions, fetchHTTPResponse, getBody, getUrl } from './internals/httpUtils.mjs';
7
7
 
8
8
  /**
9
9
  * @see https://trpc.io/docs/client/links/httpBatchStreamLink
@@ -1,7 +1,7 @@
1
1
  import { observable } from '@trpc/server/observable';
2
2
  import { transformResult } from '@trpc/server/unstable-core-do-not-import';
3
3
  import { TRPCClientError } from '../TRPCClientError.mjs';
4
- import { resolveHTTPLinkOptions, httpRequest, getUrl, jsonHttpRequester } from './internals/httpUtils.mjs';
4
+ import { resolveHTTPLinkOptions, httpRequest, jsonHttpRequester, getUrl } from './internals/httpUtils.mjs';
5
5
  import { isFormData, isOctetType } from './internals/contentTypes.mjs';
6
6
 
7
7
  const universalRequester = (opts)=>{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trpc/client",
3
- "version": "11.0.0-rc.802+1eccc1171",
3
+ "version": "11.0.0-rc.804+ab12d16b0",
4
4
  "description": "The tRPC client library",
5
5
  "author": "KATT",
6
6
  "license": "MIT",
@@ -77,19 +77,19 @@
77
77
  "!**/__tests__"
78
78
  ],
79
79
  "peerDependencies": {
80
- "@trpc/server": "11.0.0-rc.802+1eccc1171",
80
+ "@trpc/server": "11.0.0-rc.804+ab12d16b0",
81
81
  "typescript": ">=5.7.2"
82
82
  },
83
83
  "devDependencies": {
84
- "@trpc/server": "11.0.0-rc.802+1eccc1171",
84
+ "@trpc/server": "11.0.0-rc.804+ab12d16b0",
85
85
  "@types/isomorphic-fetch": "^0.0.39",
86
- "@types/node": "^22.9.0",
87
- "eslint": "^9.13.0",
86
+ "@types/node": "^22.13.5",
87
+ "eslint": "^9.21.0",
88
88
  "isomorphic-fetch": "^3.0.0",
89
89
  "node-fetch": "^3.3.0",
90
- "rollup": "^4.24.4",
90
+ "rollup": "^4.34.8",
91
91
  "tslib": "^2.8.1",
92
- "tsx": "^4.0.0",
92
+ "tsx": "^4.19.3",
93
93
  "typescript": "^5.7.2",
94
94
  "undici": "^7.0.0",
95
95
  "ws": "^8.0.0"
@@ -100,5 +100,5 @@
100
100
  "funding": [
101
101
  "https://trpc.io/sponsor"
102
102
  ],
103
- "gitHead": "1eccc1171fba8b1bdb4d8acd83ab37d1e0a98b22"
103
+ "gitHead": "ab12d16b010a304c980482545c910d0477125e8b"
104
104
  }