Skip to content

Commit 8cf6aca

Browse files
committed
generated build
1 parent a310c11 commit 8cf6aca

File tree

10 files changed

+18
-10
lines changed

10 files changed

+18
-10
lines changed

dist/rapidoc-min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rapidoc-min.js.gz

17 Bytes
Binary file not shown.

dist/rapidoc-min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rapidoc-min.js.map.gz

86 Bytes
Binary file not shown.

dist/rapidoc.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12278,6 +12278,10 @@ function schemaInObjectNotation(schema, obj, level = 0, suffix = '') {
1227812278
obj[`[pattern: ${key}]`] = schemaInObjectNotation(schema.patternProperties[key], obj, level + 1);
1227912279
}
1228012280
if (schema.additionalProperties) {
12281+
if (typeof schema.additionalProperties === 'boolean' && schema.additionalProperties === true) {
12282+
// true and {} are equivalent but a primitive value will not be handled properly by schemaInObjectNotation
12283+
schema.additionalProperties = {};
12284+
}
1228112285
obj['[any-key]'] = schemaInObjectNotation(schema.additionalProperties, {});
1228212286
}
1228312287
}
@@ -19612,7 +19616,7 @@ JsonSchemaViewer = json_schema_viewer_decorate([
1961219616
/******/
1961319617
/******/ /* webpack/runtime/getFullHash */
1961419618
/******/ (() => {
19615-
/******/ __webpack_require__.h = () => ("0b424840756550b7a7e0")
19619+
/******/ __webpack_require__.h = () => ("cd7f7834d5c89831c7f9")
1961619620
/******/ })();
1961719621
/******/
1961819622
/******/ /* webpack/runtime/global */

dist/report.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

dist/types/utils/schema-utils.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 Bytes
Binary file not shown.

docs/rapidoc-min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/rapidoc.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12278,6 +12278,10 @@ function schemaInObjectNotation(schema, obj, level = 0, suffix = '') {
1227812278
obj[`[pattern: ${key}]`] = schemaInObjectNotation(schema.patternProperties[key], obj, level + 1);
1227912279
}
1228012280
if (schema.additionalProperties) {
12281+
if (typeof schema.additionalProperties === 'boolean' && schema.additionalProperties === true) {
12282+
// true and {} are equivalent but a primitive value will not be handled properly by schemaInObjectNotation
12283+
schema.additionalProperties = {};
12284+
}
1228112285
obj['[any-key]'] = schemaInObjectNotation(schema.additionalProperties, {});
1228212286
}
1228312287
}
@@ -19612,7 +19616,7 @@ JsonSchemaViewer = json_schema_viewer_decorate([
1961219616
/******/
1961319617
/******/ /* webpack/runtime/getFullHash */
1961419618
/******/ (() => {
19615-
/******/ __webpack_require__.h = () => ("0b424840756550b7a7e0")
19619+
/******/ __webpack_require__.h = () => ("cd7f7834d5c89831c7f9")
1961619620
/******/ })();
1961719621
/******/
1961819622
/******/ /* webpack/runtime/global */

0 commit comments

Comments
 (0)