@aeriajs/types 0.0.138 → 0.0.139
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/validation.d.ts +1 -1
- package/dist/validation.js +1 -1
- package/package.json +1 -1
package/dist/validation.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const ValidationErrorCode: {
|
|
|
6
6
|
export declare const PropertyValidationErrorCode: {
|
|
7
7
|
readonly Missing: "MISSING_PROPERTY";
|
|
8
8
|
readonly Extraneous: "EXTRANEOUS_PROPERTY";
|
|
9
|
-
readonly Unmatching: "
|
|
9
|
+
readonly Unmatching: "UNMATCHING_PROPERTY";
|
|
10
10
|
readonly ExtraneousElement: "EXTRANEOUS_ELEMENT";
|
|
11
11
|
readonly MoreItemsExpected: "MORE_ITEMS_EXPECTED";
|
|
12
12
|
readonly LessItemsExpected: "LESS_ITEMS_EXPECTED";
|
package/dist/validation.js
CHANGED
|
@@ -6,7 +6,7 @@ export const ValidationErrorCode = {
|
|
|
6
6
|
export const PropertyValidationErrorCode = {
|
|
7
7
|
Missing: 'MISSING_PROPERTY',
|
|
8
8
|
Extraneous: 'EXTRANEOUS_PROPERTY',
|
|
9
|
-
Unmatching: '
|
|
9
|
+
Unmatching: 'UNMATCHING_PROPERTY',
|
|
10
10
|
ExtraneousElement: 'EXTRANEOUS_ELEMENT',
|
|
11
11
|
MoreItemsExpected: 'MORE_ITEMS_EXPECTED',
|
|
12
12
|
LessItemsExpected: 'LESS_ITEMS_EXPECTED',
|