@orpc/pinia-colada 2.0.0-beta.20 → 2.0.0-beta.21
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/dist/index.mjs +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -521,7 +521,7 @@ function createRouterUtilsInternal(client, options, plugin) {
|
|
|
521
521
|
const recursive = new Proxy(utils, {
|
|
522
522
|
get(target, prop) {
|
|
523
523
|
const value = getOrBind(target, prop);
|
|
524
|
-
const nextClient =
|
|
524
|
+
const nextClient = client[prop];
|
|
525
525
|
if (typeof prop !== "string" || RECURSIVE_CLIENT_UNWRAP_KEYS.has(prop) || !isTypescriptObject(nextClient)) {
|
|
526
526
|
return value;
|
|
527
527
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/pinia-colada",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.21",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.dev",
|
|
7
7
|
"repository": {
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"vue": ">=3.5.17"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@orpc/
|
|
36
|
-
"@orpc/openapi": "2.0.0-beta.
|
|
37
|
-
"@orpc/
|
|
38
|
-
"@orpc/
|
|
35
|
+
"@orpc/contract": "2.0.0-beta.21",
|
|
36
|
+
"@orpc/openapi": "2.0.0-beta.21",
|
|
37
|
+
"@orpc/client": "2.0.0-beta.21",
|
|
38
|
+
"@orpc/shared": "2.0.0-beta.21"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@pinia/colada": "^1.4.2",
|