@orpc/pinia-colada 2.0.0-beta.36 → 2.0.0-beta.37

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 (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +5 -5
package/dist/index.mjs CHANGED
@@ -133,7 +133,7 @@ function isProcedureUtilsOptions(value) {
133
133
  if (!isTypescriptObject(value)) {
134
134
  return false;
135
135
  }
136
- for (const key in value) {
136
+ for (const key of Object.keys(value)) {
137
137
  if (value[key] === void 0) {
138
138
  continue;
139
139
  }
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.36",
4
+ "version": "2.0.0-beta.37",
5
5
  "description": "Pinia Colada integration for oRPC: typesafe queries and mutations for Vue",
6
6
  "license": "MIT",
7
7
  "funding": [
@@ -41,10 +41,10 @@
41
41
  "vue": ">=3.5.17"
42
42
  },
43
43
  "dependencies": {
44
- "@orpc/client": "2.0.0-beta.36",
45
- "@orpc/contract": "2.0.0-beta.36",
46
- "@orpc/openapi": "2.0.0-beta.36",
47
- "@orpc/shared": "2.0.0-beta.36"
44
+ "@orpc/client": "2.0.0-beta.37",
45
+ "@orpc/contract": "2.0.0-beta.37",
46
+ "@orpc/openapi": "2.0.0-beta.37",
47
+ "@orpc/shared": "2.0.0-beta.37"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@pinia/colada": "^1.4.2",