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.
- package/dist/types/global.d.ts +1 -1
- package/package.json +1 -1
package/dist/types/global.d.ts
CHANGED
@@ -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