@aphro/schema-api
Advanced tools
Comparing version 0.1.2 to 0.1.3
# @aphro/schema-api | ||
## 0.1.3 | ||
### Patch Changes | ||
- enable nested collections of nodes | ||
## 0.1.2 | ||
@@ -4,0 +10,0 @@ |
@@ -229,3 +229,3 @@ export declare type ValidationError = { | ||
type: 'array'; | ||
values: RemoveNameField<Field>; | ||
values: RemoveNameField<Field> | string; | ||
} & FieldBase; | ||
@@ -232,0 +232,0 @@ export declare type OutboundEdgesAst = { |
{ | ||
"name": "@aphro/schema-api", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -296,3 +296,3 @@ export type ValidationError = { | ||
// Ideally we use `Omit` on name but see https://github.com/microsoft/TypeScript/issues/31501 | ||
values: RemoveNameField<Field>; | ||
values: RemoveNameField<Field> | string; | ||
} & FieldBase; | ||
@@ -299,0 +299,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28727