We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
t.exact
t.strict
1 parent fe2967e commit 76c48cdCopy full SHA for 76c48cd
packages/openapi-generator/src/knownImports.ts
@@ -53,8 +53,8 @@ export const KNOWN_IMPORTS: KnownImports = {
53
}, {});
54
return E.right({ type: 'object', properties: props, required: [] });
55
},
56
- strict: (_, schema) => E.right(schema),
57
- exact: (_, schema) => {
+ exact: (_, schema) => E.right(schema),
+ strict: (_, schema) => {
58
if (schema.type !== 'object') {
59
return E.left('exactC parameter must be object');
60
}
0 commit comments