@kravc/schema 2.8.0-alpha.6 → 2.8.0-alpha.8
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/CredentialFactory.d.ts +5 -318
- package/dist/CredentialFactory.d.ts.map +1 -1
- package/dist/CredentialFactory.js +5 -317
- package/dist/CredentialFactory.js.map +1 -1
- package/dist/Schema.d.ts +15 -420
- package/dist/Schema.d.ts.map +1 -1
- package/dist/Schema.js +13 -384
- package/dist/Schema.js.map +1 -1
- package/dist/ValidationError.d.ts +3 -49
- package/dist/ValidationError.d.ts.map +1 -1
- package/dist/ValidationError.js +3 -48
- package/dist/ValidationError.js.map +1 -1
- package/dist/Validator.d.ts +6 -470
- package/dist/Validator.d.ts.map +1 -1
- package/dist/Validator.js +50 -478
- package/dist/Validator.js.map +1 -1
- package/dist/helpers/cleanupAttributes.d.ts +3 -32
- package/dist/helpers/cleanupAttributes.d.ts.map +1 -1
- package/dist/helpers/cleanupAttributes.js +1 -30
- package/dist/helpers/cleanupAttributes.js.map +1 -1
- package/dist/helpers/cleanupNulls.d.ts +1 -25
- package/dist/helpers/cleanupNulls.d.ts.map +1 -1
- package/dist/helpers/cleanupNulls.js +2 -61
- package/dist/helpers/cleanupNulls.js.map +1 -1
- package/dist/helpers/createSchemasMap.d.ts +2 -93
- package/dist/helpers/createSchemasMap.d.ts.map +1 -1
- package/dist/helpers/createSchemasMap.js +4 -162
- package/dist/helpers/createSchemasMap.js.map +1 -1
- package/dist/helpers/getReferenceIds.d.ts +1 -165
- package/dist/helpers/getReferenceIds.d.ts.map +1 -1
- package/dist/helpers/getReferenceIds.js +2 -166
- package/dist/helpers/getReferenceIds.js.map +1 -1
- package/dist/helpers/got.d.ts +2 -58
- package/dist/helpers/got.d.ts.map +1 -1
- package/dist/helpers/got.js +1 -57
- package/dist/helpers/got.js.map +1 -1
- package/dist/helpers/mapObjectProperties.d.ts +2 -144
- package/dist/helpers/mapObjectProperties.d.ts.map +1 -1
- package/dist/helpers/mapObjectProperties.js +1 -142
- package/dist/helpers/mapObjectProperties.js.map +1 -1
- package/dist/helpers/normalizeAttributes.d.ts +3 -211
- package/dist/helpers/normalizeAttributes.d.ts.map +1 -1
- package/dist/helpers/normalizeAttributes.js +1 -209
- package/dist/helpers/normalizeAttributes.js.map +1 -1
- package/dist/helpers/normalizeProperties.d.ts +1 -165
- package/dist/helpers/normalizeProperties.d.ts.map +1 -1
- package/dist/helpers/normalizeProperties.js +1 -164
- package/dist/helpers/normalizeProperties.js.map +1 -1
- package/dist/helpers/normalizeRequired.d.ts +1 -153
- package/dist/helpers/normalizeRequired.d.ts.map +1 -1
- package/dist/helpers/normalizeRequired.js +0 -151
- package/dist/helpers/normalizeRequired.js.map +1 -1
- package/dist/helpers/normalizeType.d.ts +1 -77
- package/dist/helpers/normalizeType.d.ts.map +1 -1
- package/dist/helpers/normalizeType.js +11 -139
- package/dist/helpers/normalizeType.js.map +1 -1
- package/dist/helpers/nullifyEmptyValues.d.ts +1 -135
- package/dist/helpers/nullifyEmptyValues.d.ts.map +1 -1
- package/dist/helpers/nullifyEmptyValues.js +13 -143
- package/dist/helpers/nullifyEmptyValues.js.map +1 -1
- package/dist/helpers/removeRequiredAndDefault.d.ts +2 -102
- package/dist/helpers/removeRequiredAndDefault.d.ts.map +1 -1
- package/dist/helpers/removeRequiredAndDefault.js +1 -100
- package/dist/helpers/removeRequiredAndDefault.js.map +1 -1
- package/dist/helpers/validateId.d.ts +1 -36
- package/dist/helpers/validateId.d.ts.map +1 -1
- package/dist/helpers/validateId.js +1 -36
- package/dist/helpers/validateId.js.map +1 -1
- package/dist/ld/documentLoader.d.ts +1 -1
- package/dist/ld/documentLoader.d.ts.map +1 -1
- package/dist/ld/documentLoader.js +1 -1
- package/dist/ld/documentLoader.js.map +1 -1
- package/dist/ld/getLinkedDataAttributeType.d.ts +1 -1
- package/dist/ld/getLinkedDataAttributeType.d.ts.map +1 -1
- package/dist/ld/getLinkedDataAttributeType.js +1 -1
- package/dist/ld/getLinkedDataAttributeType.js.map +1 -1
- package/dist/ld/getLinkedDataContext.d.ts +1 -1
- package/dist/ld/getLinkedDataContext.d.ts.map +1 -1
- package/dist/ld/getLinkedDataContext.js +1 -1
- package/dist/ld/getLinkedDataContext.js.map +1 -1
- package/package.json +2 -2
- package/src/CredentialFactory.ts +5 -318
- package/src/Schema.ts +17 -427
- package/src/ValidationError.ts +5 -52
- package/src/Validator.ts +19 -483
- package/src/__tests__/CredentialFactory.test.ts +1 -1
- package/src/__tests__/Schema.test.ts +3 -8
- package/src/__tests__/ValidationError.test.ts +4 -2
- package/src/__tests__/Validator.test.ts +21 -4
- package/src/helpers/__tests__/cleanupAttributes.test.ts +3 -1
- package/src/helpers/__tests__/createSchemasMap.test.ts +1 -1
- package/src/helpers/__tests__/mapObjectProperties.test.ts +2 -1
- package/src/helpers/__tests__/normalizeAttributes.test.ts +4 -2
- package/src/helpers/__tests__/normalizeProperties.test.ts +3 -1
- package/src/helpers/__tests__/normalizeRequired.test.ts +4 -9
- package/src/helpers/__tests__/nullifyEmptyValues.test.ts +43 -12
- package/src/helpers/__tests__/removeRequiredAndDefault.test.ts +3 -10
- package/src/helpers/cleanupAttributes.ts +6 -44
- package/src/helpers/cleanupNulls.ts +2 -63
- package/src/helpers/createSchemasMap.ts +4 -163
- package/src/helpers/getReferenceIds.ts +2 -173
- package/src/helpers/got.ts +3 -59
- package/src/helpers/mapObjectProperties.ts +4 -156
- package/src/helpers/normalizeAttributes.ts +7 -211
- package/src/helpers/normalizeProperties.ts +1 -172
- package/src/helpers/normalizeRequired.ts +1 -161
- package/src/helpers/normalizeType.ts +11 -139
- package/src/helpers/nullifyEmptyValues.ts +10 -145
- package/src/helpers/removeRequiredAndDefault.ts +1 -106
- package/src/helpers/validateId.ts +1 -36
- package/src/ld/documentLoader.ts +1 -1
- package/src/ld/getLinkedDataAttributeType.ts +1 -1
- package/src/ld/getLinkedDataContext.ts +1 -1
- package/src/{helpers/JsonSchema.ts → types.d.ts} +12 -16
- package/dist/helpers/JsonSchema.d.ts +0 -99
- package/dist/helpers/JsonSchema.d.ts.map +0 -1
- package/dist/helpers/JsonSchema.js +0 -3
- package/dist/helpers/JsonSchema.js.map +0 -1
package/src/ld/documentLoader.ts
CHANGED
|
@@ -7,7 +7,7 @@ export type PropertySchema = {
|
|
|
7
7
|
format?: string;
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
-
/** Returns linked data attribute type for a property schema, unless @type is defined */
|
|
10
|
+
/** Returns linked data attribute type for a property schema, unless @type is defined. */
|
|
11
11
|
const getLinkedDataAttributeType = (propertySchema: PropertySchema): string | undefined => {
|
|
12
12
|
const isOverriden = !!get(propertySchema, '@type');
|
|
13
13
|
|
|
@@ -26,7 +26,7 @@ export type LinkedDataContext = ContextHeader & {
|
|
|
26
26
|
[key: string]: ContextProperty | string | number | boolean | undefined;
|
|
27
27
|
};
|
|
28
28
|
|
|
29
|
-
/** Returns linked data context for a properties object */
|
|
29
|
+
/** Returns linked data context for a properties object. */
|
|
30
30
|
const getLinkedDataContext = (properties: Record<string, PropertySchema>, vocabUri: string): LinkedDataContext => {
|
|
31
31
|
const context = {} as Record<string, ContextProperty>;
|
|
32
32
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
type EnumSchema = {
|
|
2
2
|
id?: string;
|
|
3
3
|
enum: string[] | number[];
|
|
4
4
|
type?: 'string' | 'number';
|
|
@@ -10,7 +10,7 @@ export type EnumSchema = {
|
|
|
10
10
|
'x-required'?: boolean;
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
type ReferencePropertySchema = {
|
|
14
14
|
$ref: string;
|
|
15
15
|
default?: string | number | Record<string, unknown>;
|
|
16
16
|
example?: string | number | Record<string, unknown>;
|
|
@@ -20,7 +20,7 @@ export type ReferencePropertySchema = {
|
|
|
20
20
|
'x-required'?: boolean;
|
|
21
21
|
};
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
type StringPropertySchema = {
|
|
24
24
|
'@type'?: string;
|
|
25
25
|
type?: 'string';
|
|
26
26
|
format?: 'date' | 'date-time' | 'url' | 'email',
|
|
@@ -35,7 +35,7 @@ export type StringPropertySchema = {
|
|
|
35
35
|
'x-required'?: boolean;
|
|
36
36
|
};
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
type NumberPropertySchema = {
|
|
39
39
|
type: 'number';
|
|
40
40
|
minimum?: number;
|
|
41
41
|
maximum?: number;
|
|
@@ -47,7 +47,7 @@ export type NumberPropertySchema = {
|
|
|
47
47
|
'x-required'?: boolean;
|
|
48
48
|
};
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
type IntegerPropertySchema = {
|
|
51
51
|
type: 'integer';
|
|
52
52
|
minimum?: number;
|
|
53
53
|
maximum?: number;
|
|
@@ -59,7 +59,7 @@ export type IntegerPropertySchema = {
|
|
|
59
59
|
'x-required'?: boolean;
|
|
60
60
|
};
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
type BooleanPropertySchema = {
|
|
63
63
|
type: 'boolean';
|
|
64
64
|
default?: boolean;
|
|
65
65
|
example?: boolean;
|
|
@@ -69,7 +69,7 @@ export type BooleanPropertySchema = {
|
|
|
69
69
|
'x-required'?: boolean;
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
type ObjectPropertySchema = {
|
|
73
73
|
type?: 'object';
|
|
74
74
|
default?: Record<string, unknown>;
|
|
75
75
|
example?: unknown;
|
|
@@ -80,7 +80,7 @@ export type ObjectPropertySchema = {
|
|
|
80
80
|
'x-required'?: boolean;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
type ArrayPropertySchema = {
|
|
84
84
|
type?: 'array';
|
|
85
85
|
items?: (ReferencePropertySchema | ObjectPropertySchema | StringPropertySchema | EnumSchema) & {
|
|
86
86
|
minItems?: number;
|
|
@@ -94,7 +94,7 @@ export type ArrayPropertySchema = {
|
|
|
94
94
|
'x-required'?: boolean;
|
|
95
95
|
};
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
type PropertySchema =
|
|
98
98
|
EnumSchema |
|
|
99
99
|
ReferencePropertySchema |
|
|
100
100
|
ObjectPropertySchema |
|
|
@@ -104,16 +104,12 @@ export type PropertySchema =
|
|
|
104
104
|
IntegerPropertySchema |
|
|
105
105
|
BooleanPropertySchema;
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
type PropertiesSchema = Record<string, PropertySchema>;
|
|
108
108
|
|
|
109
|
-
|
|
109
|
+
type ObjectSchema = {
|
|
110
110
|
id: string;
|
|
111
111
|
required?: string[];
|
|
112
112
|
properties: PropertiesSchema;
|
|
113
113
|
};
|
|
114
114
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
export type JsonSchemasMap = Record<string, JsonSchema>;
|
|
118
|
-
|
|
119
|
-
export type TargetObject = Record<string, unknown>;
|
|
115
|
+
type TargetObject = Record<string, unknown>;
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
export type EnumSchema = {
|
|
2
|
-
id?: string;
|
|
3
|
-
enum: string[] | number[];
|
|
4
|
-
type?: 'string' | 'number';
|
|
5
|
-
default?: string | number;
|
|
6
|
-
example?: string | number;
|
|
7
|
-
required?: boolean;
|
|
8
|
-
'x-title'?: string;
|
|
9
|
-
description?: string;
|
|
10
|
-
'x-required'?: boolean;
|
|
11
|
-
};
|
|
12
|
-
export type ReferencePropertySchema = {
|
|
13
|
-
$ref: string;
|
|
14
|
-
default?: string | number | Record<string, unknown>;
|
|
15
|
-
example?: string | number | Record<string, unknown>;
|
|
16
|
-
required?: boolean;
|
|
17
|
-
'x-title'?: string;
|
|
18
|
-
description?: string;
|
|
19
|
-
'x-required'?: boolean;
|
|
20
|
-
};
|
|
21
|
-
export type StringPropertySchema = {
|
|
22
|
-
'@type'?: string;
|
|
23
|
-
type?: 'string';
|
|
24
|
-
format?: 'date' | 'date-time' | 'url' | 'email';
|
|
25
|
-
default?: string;
|
|
26
|
-
example?: string;
|
|
27
|
-
pattern?: string;
|
|
28
|
-
required?: boolean;
|
|
29
|
-
minLength?: number;
|
|
30
|
-
maxLength?: number;
|
|
31
|
-
'x-title'?: string;
|
|
32
|
-
description?: string;
|
|
33
|
-
'x-required'?: boolean;
|
|
34
|
-
};
|
|
35
|
-
export type NumberPropertySchema = {
|
|
36
|
-
type: 'number';
|
|
37
|
-
minimum?: number;
|
|
38
|
-
maximum?: number;
|
|
39
|
-
default?: number;
|
|
40
|
-
example?: number;
|
|
41
|
-
required?: boolean;
|
|
42
|
-
'x-title'?: string;
|
|
43
|
-
description?: string;
|
|
44
|
-
'x-required'?: boolean;
|
|
45
|
-
};
|
|
46
|
-
export type IntegerPropertySchema = {
|
|
47
|
-
type: 'integer';
|
|
48
|
-
minimum?: number;
|
|
49
|
-
maximum?: number;
|
|
50
|
-
default?: number;
|
|
51
|
-
example?: number;
|
|
52
|
-
required?: boolean;
|
|
53
|
-
'x-title'?: string;
|
|
54
|
-
description?: string;
|
|
55
|
-
'x-required'?: boolean;
|
|
56
|
-
};
|
|
57
|
-
export type BooleanPropertySchema = {
|
|
58
|
-
type: 'boolean';
|
|
59
|
-
default?: boolean;
|
|
60
|
-
example?: boolean;
|
|
61
|
-
required?: boolean;
|
|
62
|
-
'x-title'?: string;
|
|
63
|
-
description?: string;
|
|
64
|
-
'x-required'?: boolean;
|
|
65
|
-
};
|
|
66
|
-
export type ObjectPropertySchema = {
|
|
67
|
-
type?: 'object';
|
|
68
|
-
default?: Record<string, unknown>;
|
|
69
|
-
example?: unknown;
|
|
70
|
-
required?: boolean;
|
|
71
|
-
properties?: PropertiesSchema;
|
|
72
|
-
'x-title'?: string;
|
|
73
|
-
description?: string;
|
|
74
|
-
'x-required'?: boolean;
|
|
75
|
-
};
|
|
76
|
-
export type ArrayPropertySchema = {
|
|
77
|
-
type?: 'array';
|
|
78
|
-
items?: (ReferencePropertySchema | ObjectPropertySchema | StringPropertySchema | EnumSchema) & {
|
|
79
|
-
minItems?: number;
|
|
80
|
-
maxItems?: number;
|
|
81
|
-
};
|
|
82
|
-
default?: unknown[];
|
|
83
|
-
example?: unknown[];
|
|
84
|
-
required?: boolean;
|
|
85
|
-
'x-title'?: string;
|
|
86
|
-
description?: string;
|
|
87
|
-
'x-required'?: boolean;
|
|
88
|
-
};
|
|
89
|
-
export type PropertySchema = EnumSchema | ReferencePropertySchema | ObjectPropertySchema | ArrayPropertySchema | StringPropertySchema | NumberPropertySchema | IntegerPropertySchema | BooleanPropertySchema;
|
|
90
|
-
export type PropertiesSchema = Record<string, PropertySchema>;
|
|
91
|
-
export type ObjectSchema = {
|
|
92
|
-
id: string;
|
|
93
|
-
required?: string[];
|
|
94
|
-
properties: PropertiesSchema;
|
|
95
|
-
};
|
|
96
|
-
export type JsonSchema = EnumSchema | ObjectSchema;
|
|
97
|
-
export type JsonSchemasMap = Record<string, JsonSchema>;
|
|
98
|
-
export type TargetObject = Record<string, unknown>;
|
|
99
|
-
//# sourceMappingURL=JsonSchema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"JsonSchema.d.ts","sourceRoot":"","sources":["../../src/helpers/JsonSchema.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"JsonSchema.js","sourceRoot":"","sources":["../../src/helpers/JsonSchema.ts"],"names":[],"mappings":""}
|