Skip to content

Commit 0b6daae

Browse files
committed
Merge branch 'deiteris-add-missing-keys'
2 parents 7ae73d9 + ad9a2c3 commit 0b6daae

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/Namespace.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ interface Shapes {
191191
discriminatorValue: string;
192192
format: string;
193193
multipleOf: string;
194+
uniqueItems: string;
194195
}
195196

196197
interface Data {

src/Namespace.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ ns.aml.vocabularies.shapes.discriminator = `${shapesKey}discriminator`;
206206
ns.aml.vocabularies.shapes.discriminatorValue = `${shapesKey}discriminatorValue`;
207207
ns.aml.vocabularies.shapes.format = `${shapesKey}format`;
208208
ns.aml.vocabularies.shapes.multipleOf = `${shapesKey}multipleOf`;
209+
ns.aml.vocabularies.shapes.uniqueItems = `${shapesKey}uniqueItems`;
209210
ns.aml.vocabularies.data = {};
210211
ns.aml.vocabularies.data.key = `${ns.aml.vocabularies.key}data#`;
211212
const dataKey = ns.aml.vocabularies.data.key;

test/helper/Namepsace.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@ describe('Namespace', () => {
384384
['discriminatorValue', `${key}discriminatorValue`],
385385
['format', `${key}format`],
386386
['multipleOf', `${key}multipleOf`],
387+
['uniqueItems', `${key}uniqueItems`],
387388
].forEach(([property, value]) => {
388389
it(`has value for ${property}`, () => {
389390
const result = ns.aml.vocabularies.shapes[property];

0 commit comments

Comments
 (0)