eco-vue-js 0.10.62 → 0.10.63

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.
@@ -182,7 +182,7 @@ type PathsEntries<Model, FieldType, IncludeNull = false, ParentKey extends strin
182
182
  : Head extends keyof Model
183
183
  ? Model[Head] extends object
184
184
  ? [
185
- ...PathsEntries<Model[Head], FieldType, IncludeNull, Head>,
185
+ ...PathsEntries<Model[Head], FieldType, IncludeNull, [ParentKey] extends [never] ? Head : `${ ParentKey }.${ Head }`>,
186
186
  ...PathsEntries<Omit<Model, Head>, FieldType, IncludeNull, ParentKey, FilteredModel>
187
187
  ]
188
188
  : PathsEntries<Omit<Model, Head>, FieldType, IncludeNull, ParentKey, FilteredModel>
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/rsmple/eco-vue-js.git"
6
6
  },
7
- "version": "0.10.62",
7
+ "version": "0.10.63",
8
8
  "scripts": {
9
9
  "build": "run-p type-check \"build-only {@}\" --",
10
10
  "dev": "vite build --mode development --watch",