json-schema-to-atd 0.74.1 → 0.75.0
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/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
@@ -187,7 +187,7 @@ function jsonSchemaObjectToJtdObject(input, _) {
|
|
187
187
|
const result = {
|
188
188
|
properties: {},
|
189
189
|
nullable: input.nullable,
|
190
|
-
strict: typeof input.additionalProperties === "boolean" ? !input.additionalProperties :
|
190
|
+
strict: typeof input.additionalProperties === "boolean" ? !input.additionalProperties : void 0,
|
191
191
|
metadata: {
|
192
192
|
id: input.$id ?? input.title,
|
193
193
|
description: input.description
|
package/dist/index.mjs
CHANGED
@@ -185,7 +185,7 @@ function jsonSchemaObjectToJtdObject(input, _) {
|
|
185
185
|
const result = {
|
186
186
|
properties: {},
|
187
187
|
nullable: input.nullable,
|
188
|
-
strict: typeof input.additionalProperties === "boolean" ? !input.additionalProperties :
|
188
|
+
strict: typeof input.additionalProperties === "boolean" ? !input.additionalProperties : void 0,
|
189
189
|
metadata: {
|
190
190
|
id: input.$id ?? input.title,
|
191
191
|
description: input.description
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "json-schema-to-atd",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.75.0",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": {
|
6
6
|
"name": "joshmossas",
|
@@ -22,6 +22,6 @@
|
|
22
22
|
"dist"
|
23
23
|
],
|
24
24
|
"dependencies": {
|
25
|
-
"@arrirpc/type-defs": "0.
|
25
|
+
"@arrirpc/type-defs": "0.75.0"
|
26
26
|
}
|
27
27
|
}
|