You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Test for multiple failures (with minimal changes to tests)
* Do not attempt to iterate on `Generator`s more than once, fixesianstormtaylor#394
* Refine public types: StructError.failures & StructContext.check
* Update documentation regarding StructError.failures
* Clean up tests: Have all fixtures export `failures` instead of `error`
Co-authored-by: Ian Storm Taylor <[email protected]>
| `branch` | `Array<any>` | `[{...}, false]` | An array of the values being validated at every layer. The first element in the array is the root value, and the last element is the current value that failed. This allows you to inspect the entire validation tree. |
552
-
| `path` | `Array<string \|number>` | `['address', 'street']` | The path to the invalid value relative to the root value. |
| `type` | `string` | `'string'` | The expected type of the invalid value. |
555
-
| `failures` | `Array<StructFailure>`| `[{...}]`| All the validation failures that were encountered. The error object always represents the first failure, but you can write more complex logic involving other failures if you need to. |
| `branch` | `Array<any>`| `[{...}, false]` | An array of the values being validated at every layer. The first element in the array is the root value, and the last element is the current value that failed. This allows you to inspect the entire validation tree. |
552
+
| `path` | `Array<string \|number>`| `['address', 'street']` | The path to the invalid value relative to the root value. |
553
+
| `value` | `any`| `false` | The invalid value. |
554
+
| `type` | `string`| `'string'` | The expected type of the invalid value. |
555
+
| `failures` | `() =>Array<StructFailure>`| | A function that returns all the validation failures that were encountered. The error object always represents the first failure, but you can write more complex logic involving other failures if you need to. |
556
556
557
557
### Multiple Errors
558
558
559
-
The error thrown by Superstruct is always the first validation failure that was encountered, because this makes for convenient and simple logic in the majority of cases. However, the `failures`property is available with a list of all of the validation failures that occurred in case you want to add support for multiple error handling.
559
+
The error thrown by Superstruct is always the first validation failure that was encountered, because this makes for convenient and simple logic in the majority of cases. However, the `failures`method will return a list of all of the validation failures that occurred in case you want to add support for multiple error handling.
0 commit comments