docusaurus-theme-openapi-docs 0.0.0-1253 → 0.0.0-1258
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/lib/markdown/schema.js +1 -1
- package/lib/markdown/schema.test.d.ts +1 -0
- package/lib/markdown/schema.test.js +51 -0
- package/lib/theme/Schema/index.js +61 -1
- package/package.json +3 -3
- package/src/markdown/schema.test.ts +61 -0
- package/src/markdown/schema.ts +1 -1
- package/src/theme/Schema/index.tsx +61 -1
- package/tsconfig.tsbuildinfo +1 -1
package/lib/markdown/schema.js
CHANGED
|
@@ -87,7 +87,7 @@ function prettyName(schema, circular) {
|
|
|
87
87
|
}
|
|
88
88
|
function getSchemaName(schema, circular) {
|
|
89
89
|
if (schema.items) {
|
|
90
|
-
return
|
|
90
|
+
return getSchemaName(schema.items, circular) + "[]";
|
|
91
91
|
}
|
|
92
92
|
return prettyName(schema, circular) ?? "";
|
|
93
93
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* ============================================================================
|
|
3
|
+
* Copyright (c) Palo Alto Networks
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
* ========================================================================== */
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
jest.mock("@docusaurus/Translate", () => ({
|
|
10
|
+
translate: ({ message }) => message,
|
|
11
|
+
}), { virtual: true });
|
|
12
|
+
const schema_1 = require("./schema");
|
|
13
|
+
describe("getSchemaName", () => {
|
|
14
|
+
it("returns the type for a primitive schema", () => {
|
|
15
|
+
expect((0, schema_1.getSchemaName)({ type: "string" })).toBe("string");
|
|
16
|
+
});
|
|
17
|
+
it("appends [] for an array of primitives", () => {
|
|
18
|
+
const schema = {
|
|
19
|
+
type: "array",
|
|
20
|
+
items: { type: "string" },
|
|
21
|
+
};
|
|
22
|
+
expect((0, schema_1.getSchemaName)(schema)).toBe("string[]");
|
|
23
|
+
});
|
|
24
|
+
it("appends [][] for an array of arrays of primitives", () => {
|
|
25
|
+
const schema = {
|
|
26
|
+
type: "array",
|
|
27
|
+
items: { type: "array", items: { type: "string" } },
|
|
28
|
+
};
|
|
29
|
+
expect((0, schema_1.getSchemaName)(schema)).toBe("string[][]");
|
|
30
|
+
});
|
|
31
|
+
it("appends [][] for an array of arrays of objects (issue #1114)", () => {
|
|
32
|
+
const schema = {
|
|
33
|
+
type: "array",
|
|
34
|
+
items: {
|
|
35
|
+
type: "array",
|
|
36
|
+
items: { type: "object", properties: { foo: { type: "string" } } },
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
expect((0, schema_1.getSchemaName)(schema)).toBe("object[][]");
|
|
40
|
+
});
|
|
41
|
+
it("handles three levels of array nesting", () => {
|
|
42
|
+
const schema = {
|
|
43
|
+
type: "array",
|
|
44
|
+
items: {
|
|
45
|
+
type: "array",
|
|
46
|
+
items: { type: "array", items: { type: "integer" } },
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
expect((0, schema_1.getSchemaName)(schema)).toBe("integer[][][]");
|
|
50
|
+
});
|
|
51
|
+
});
|
|
@@ -89,11 +89,71 @@ const isEmpty_1 = __importDefault(require("lodash/isEmpty"));
|
|
|
89
89
|
const schema_1 = require("../../markdown/schema");
|
|
90
90
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
91
91
|
// const jsonSchemaMergeAllOf = require("json-schema-merge-allof");
|
|
92
|
+
/**
|
|
93
|
+
* Strip `additionalProperties: false` from sibling allOf members so the
|
|
94
|
+
* strict-AND semantics of `allof-merge` don't collapse the result to an
|
|
95
|
+
* unsatisfiable empty schema.
|
|
96
|
+
*
|
|
97
|
+
* Per JSON Schema, two allOf members that each set `additionalProperties: false`
|
|
98
|
+
* with disjoint `properties` sets define an unsatisfiable schema (no value can
|
|
99
|
+
* satisfy both — each member rejects the other's properties). `allof-merge` is
|
|
100
|
+
* technically correct to drop all properties in that case, but it leaves the
|
|
101
|
+
* rendered schema blank.
|
|
102
|
+
*
|
|
103
|
+
* NSwag and Swashbuckle emit this pattern by default whenever a model uses
|
|
104
|
+
* inheritance/composition, so it's the dominant style for .NET-generated specs.
|
|
105
|
+
* Redoc, Swagger UI, and Stoplight all union the properties and ignore the
|
|
106
|
+
* conflicting flag — the approach this helper emulates by stripping the flag
|
|
107
|
+
* before delegating to `allof-merge`. The flag is render-irrelevant anyway:
|
|
108
|
+
* `additionalProperties: false` is treated identically to `undefined` by the
|
|
109
|
+
* AdditionalProperties component below (line ~641).
|
|
110
|
+
*
|
|
111
|
+
* Strips from every allOf member whenever the parent has ≥2 members. The
|
|
112
|
+
* collapse triggers symmetrically (both siblings strict) or asymmetrically
|
|
113
|
+
* (one strict member rejects another's properties as "additional"), so the
|
|
114
|
+
* presence of multiple members is the right gate. Single-member allOf is left
|
|
115
|
+
* alone — it can't conflict with anything.
|
|
116
|
+
*
|
|
117
|
+
* See https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/issues/1119
|
|
118
|
+
* Mirrored in plugin: docusaurus-plugin-openapi-docs/src/markdown/createSchema.ts
|
|
119
|
+
*/
|
|
120
|
+
const stripConflictingAdditionalProps = (node) => {
|
|
121
|
+
if (Array.isArray(node)) return node.map(stripConflictingAdditionalProps);
|
|
122
|
+
if (!node || typeof node !== "object") return node;
|
|
123
|
+
let working = node;
|
|
124
|
+
if (Array.isArray(node.allOf) && node.allOf.length > 1) {
|
|
125
|
+
const hasStrictMember = node.allOf.some(
|
|
126
|
+
(m) => m && m.additionalProperties === false
|
|
127
|
+
);
|
|
128
|
+
if (hasStrictMember) {
|
|
129
|
+
working = {
|
|
130
|
+
...node,
|
|
131
|
+
allOf: node.allOf.map((m) => {
|
|
132
|
+
if (m && m.additionalProperties === false) {
|
|
133
|
+
const { additionalProperties: _drop, ...rest } = m;
|
|
134
|
+
return rest;
|
|
135
|
+
}
|
|
136
|
+
return m;
|
|
137
|
+
}),
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
const result = {};
|
|
142
|
+
for (const [k, v] of Object.entries(working)) {
|
|
143
|
+
result[k] = stripConflictingAdditionalProps(v);
|
|
144
|
+
}
|
|
145
|
+
return result;
|
|
146
|
+
};
|
|
92
147
|
const mergeAllOf = (allOf) => {
|
|
93
148
|
const onMergeError = (msg) => {
|
|
94
149
|
console.warn(msg);
|
|
95
150
|
};
|
|
96
|
-
const mergedSchemas = (0, allof_merge_1.merge)(
|
|
151
|
+
const mergedSchemas = (0, allof_merge_1.merge)(
|
|
152
|
+
stripConflictingAdditionalProps(allOf),
|
|
153
|
+
{
|
|
154
|
+
onMergeError,
|
|
155
|
+
}
|
|
156
|
+
);
|
|
97
157
|
return mergedSchemas ?? {};
|
|
98
158
|
};
|
|
99
159
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docusaurus-theme-openapi-docs",
|
|
3
3
|
"description": "OpenAPI theme for Docusaurus.",
|
|
4
|
-
"version": "0.0.0-
|
|
4
|
+
"version": "0.0.0-1258",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"openapi",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@types/postman-collection": "^3.5.11",
|
|
39
39
|
"@types/react-modal": "^3.16.3",
|
|
40
40
|
"concurrently": "^9.2.0",
|
|
41
|
-
"docusaurus-plugin-openapi-docs": "0.0.0-
|
|
41
|
+
"docusaurus-plugin-openapi-docs": "0.0.0-1258",
|
|
42
42
|
"docusaurus-plugin-sass": "^0.2.6",
|
|
43
43
|
"eslint-plugin-prettier": "^5.5.1"
|
|
44
44
|
},
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"engines": {
|
|
83
83
|
"node": ">=14"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "54019febae5105135595ecb0eef0e1a88ec2eeb0"
|
|
86
86
|
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/* ============================================================================
|
|
2
|
+
* Copyright (c) Palo Alto Networks
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
* ========================================================================== */
|
|
7
|
+
|
|
8
|
+
jest.mock(
|
|
9
|
+
"@docusaurus/Translate",
|
|
10
|
+
() => ({
|
|
11
|
+
translate: ({ message }: { message: string }) => message,
|
|
12
|
+
}),
|
|
13
|
+
{ virtual: true }
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
import { getSchemaName } from "./schema";
|
|
17
|
+
import { SchemaObject } from "../types";
|
|
18
|
+
|
|
19
|
+
describe("getSchemaName", () => {
|
|
20
|
+
it("returns the type for a primitive schema", () => {
|
|
21
|
+
expect(getSchemaName({ type: "string" } as SchemaObject)).toBe("string");
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it("appends [] for an array of primitives", () => {
|
|
25
|
+
const schema: SchemaObject = {
|
|
26
|
+
type: "array",
|
|
27
|
+
items: { type: "string" },
|
|
28
|
+
} as SchemaObject;
|
|
29
|
+
expect(getSchemaName(schema)).toBe("string[]");
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
it("appends [][] for an array of arrays of primitives", () => {
|
|
33
|
+
const schema: SchemaObject = {
|
|
34
|
+
type: "array",
|
|
35
|
+
items: { type: "array", items: { type: "string" } },
|
|
36
|
+
} as SchemaObject;
|
|
37
|
+
expect(getSchemaName(schema)).toBe("string[][]");
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
it("appends [][] for an array of arrays of objects (issue #1114)", () => {
|
|
41
|
+
const schema: SchemaObject = {
|
|
42
|
+
type: "array",
|
|
43
|
+
items: {
|
|
44
|
+
type: "array",
|
|
45
|
+
items: { type: "object", properties: { foo: { type: "string" } } },
|
|
46
|
+
},
|
|
47
|
+
} as SchemaObject;
|
|
48
|
+
expect(getSchemaName(schema)).toBe("object[][]");
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
it("handles three levels of array nesting", () => {
|
|
52
|
+
const schema: SchemaObject = {
|
|
53
|
+
type: "array",
|
|
54
|
+
items: {
|
|
55
|
+
type: "array",
|
|
56
|
+
items: { type: "array", items: { type: "integer" } },
|
|
57
|
+
},
|
|
58
|
+
} as SchemaObject;
|
|
59
|
+
expect(getSchemaName(schema)).toBe("integer[][][]");
|
|
60
|
+
});
|
|
61
|
+
});
|
package/src/markdown/schema.ts
CHANGED
|
@@ -105,7 +105,7 @@ export function getSchemaName(
|
|
|
105
105
|
circular?: boolean
|
|
106
106
|
): string {
|
|
107
107
|
if (schema.items) {
|
|
108
|
-
return
|
|
108
|
+
return getSchemaName(schema.items as SchemaObject, circular) + "[]";
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
return prettyName(schema, circular) ?? "";
|
|
@@ -34,12 +34,72 @@ import type { SchemaObject } from "../../types.d";
|
|
|
34
34
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
35
35
|
// const jsonSchemaMergeAllOf = require("json-schema-merge-allof");
|
|
36
36
|
|
|
37
|
+
/**
|
|
38
|
+
* Strip `additionalProperties: false` from sibling allOf members so the
|
|
39
|
+
* strict-AND semantics of `allof-merge` don't collapse the result to an
|
|
40
|
+
* unsatisfiable empty schema.
|
|
41
|
+
*
|
|
42
|
+
* Per JSON Schema, two allOf members that each set `additionalProperties: false`
|
|
43
|
+
* with disjoint `properties` sets define an unsatisfiable schema (no value can
|
|
44
|
+
* satisfy both — each member rejects the other's properties). `allof-merge` is
|
|
45
|
+
* technically correct to drop all properties in that case, but it leaves the
|
|
46
|
+
* rendered schema blank.
|
|
47
|
+
*
|
|
48
|
+
* NSwag and Swashbuckle emit this pattern by default whenever a model uses
|
|
49
|
+
* inheritance/composition, so it's the dominant style for .NET-generated specs.
|
|
50
|
+
* Redoc, Swagger UI, and Stoplight all union the properties and ignore the
|
|
51
|
+
* conflicting flag — the approach this helper emulates by stripping the flag
|
|
52
|
+
* before delegating to `allof-merge`. The flag is render-irrelevant anyway:
|
|
53
|
+
* `additionalProperties: false` is treated identically to `undefined` by the
|
|
54
|
+
* AdditionalProperties component below (line ~641).
|
|
55
|
+
*
|
|
56
|
+
* Strips from every allOf member whenever the parent has ≥2 members. The
|
|
57
|
+
* collapse triggers symmetrically (both siblings strict) or asymmetrically
|
|
58
|
+
* (one strict member rejects another's properties as "additional"), so the
|
|
59
|
+
* presence of multiple members is the right gate. Single-member allOf is left
|
|
60
|
+
* alone — it can't conflict with anything.
|
|
61
|
+
*
|
|
62
|
+
* See https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/issues/1119
|
|
63
|
+
* Mirrored in plugin: docusaurus-plugin-openapi-docs/src/markdown/createSchema.ts
|
|
64
|
+
*/
|
|
65
|
+
const stripConflictingAdditionalProps = (node: any): any => {
|
|
66
|
+
if (Array.isArray(node)) return node.map(stripConflictingAdditionalProps);
|
|
67
|
+
if (!node || typeof node !== "object") return node;
|
|
68
|
+
|
|
69
|
+
let working: any = node;
|
|
70
|
+
if (Array.isArray(node.allOf) && node.allOf.length > 1) {
|
|
71
|
+
const hasStrictMember = node.allOf.some(
|
|
72
|
+
(m: any) => m && m.additionalProperties === false
|
|
73
|
+
);
|
|
74
|
+
if (hasStrictMember) {
|
|
75
|
+
working = {
|
|
76
|
+
...node,
|
|
77
|
+
allOf: node.allOf.map((m: any) => {
|
|
78
|
+
if (m && m.additionalProperties === false) {
|
|
79
|
+
const { additionalProperties: _drop, ...rest } = m;
|
|
80
|
+
return rest;
|
|
81
|
+
}
|
|
82
|
+
return m;
|
|
83
|
+
}),
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
const result: any = {};
|
|
89
|
+
for (const [k, v] of Object.entries(working)) {
|
|
90
|
+
result[k] = stripConflictingAdditionalProps(v);
|
|
91
|
+
}
|
|
92
|
+
return result;
|
|
93
|
+
};
|
|
94
|
+
|
|
37
95
|
const mergeAllOf = (allOf: any) => {
|
|
38
96
|
const onMergeError = (msg: string) => {
|
|
39
97
|
console.warn(msg);
|
|
40
98
|
};
|
|
41
99
|
|
|
42
|
-
const mergedSchemas = merge(allOf, {
|
|
100
|
+
const mergedSchemas = merge(stripConflictingAdditionalProps(allOf), {
|
|
101
|
+
onMergeError,
|
|
102
|
+
});
|
|
43
103
|
|
|
44
104
|
return mergedSchemas ?? {};
|
|
45
105
|
};
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/index.ts","./src/plugin-content-docs.d.ts","./src/postman-code-generators.d.ts","./src/react-magic-dropzone.d.ts","./src/theme-classic.d.ts","./src/theme-openapi.d.ts","./src/types.d.ts","./src/markdown/createDescription.ts","./src/markdown/schema.ts","./src/markdown/utils.test.ts","./src/markdown/utils.ts","./src/theme/translationIds.ts","./src/theme/ApiExplorer/buildPostmanRequest.ts","./src/theme/ApiExplorer/index.tsx","./src/theme/ApiExplorer/persistenceMiddleware.ts","./src/theme/ApiExplorer/storage-utils.ts","./src/theme/ApiExplorer/Accept/index.tsx","./src/theme/ApiExplorer/Accept/slice.ts","./src/theme/ApiExplorer/ApiCodeBlock/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Container/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Content/Element.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Content/String.tsx","./src/theme/ApiExplorer/ApiCodeBlock/CopyButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/ExitButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/ExpandButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Line/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/index.tsx","./src/theme/ApiExplorer/Authorization/auth-types.ts","./src/theme/ApiExplorer/Authorization/index.tsx","./src/theme/ApiExplorer/Authorization/slice.ts","./src/theme/ApiExplorer/Body/index.tsx","./src/theme/ApiExplorer/Body/json2xml.d.ts","./src/theme/ApiExplorer/Body/resolveSchemaWithSelections.ts","./src/theme/ApiExplorer/Body/slice.ts","./src/theme/ApiExplorer/Body/FileArrayFormBodyItem/index.tsx","./src/theme/ApiExplorer/Body/FormBodyItem/index.tsx","./src/theme/ApiExplorer/CodeSnippets/code-snippets-types.ts","./src/theme/ApiExplorer/CodeSnippets/index.tsx","./src/theme/ApiExplorer/CodeSnippets/languages.test.ts","./src/theme/ApiExplorer/CodeSnippets/languages.ts","./src/theme/ApiExplorer/CodeTabs/index.tsx","./src/theme/ApiExplorer/ContentType/index.tsx","./src/theme/ApiExplorer/ContentType/slice.ts","./src/theme/ApiExplorer/EncodingSelection/slice.ts","./src/theme/ApiExplorer/EncodingSelection/useResolvedEncoding.ts","./src/theme/ApiExplorer/Export/index.tsx","./src/theme/ApiExplorer/FloatingButton/index.tsx","./src/theme/ApiExplorer/FormFileUpload/index.tsx","./src/theme/ApiExplorer/FormItem/index.tsx","./src/theme/ApiExplorer/FormLabel/index.tsx","./src/theme/ApiExplorer/FormMultiSelect/index.tsx","./src/theme/ApiExplorer/FormSelect/index.tsx","./src/theme/ApiExplorer/FormTextInput/index.tsx","./src/theme/ApiExplorer/LiveEditor/index.tsx","./src/theme/ApiExplorer/MethodEndpoint/index.tsx","./src/theme/ApiExplorer/ParamOptions/index.tsx","./src/theme/ApiExplorer/ParamOptions/slice.ts","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.tsx","./src/theme/ApiExplorer/Request/index.tsx","./src/theme/ApiExplorer/Request/makeRequest.ts","./src/theme/ApiExplorer/Response/index.tsx","./src/theme/ApiExplorer/Response/slice.ts","./src/theme/ApiExplorer/SchemaSelection/index.ts","./src/theme/ApiExplorer/SchemaSelection/slice.ts","./src/theme/ApiExplorer/SecuritySchemes/index.tsx","./src/theme/ApiExplorer/Server/index.tsx","./src/theme/ApiExplorer/Server/slice.ts","./src/theme/ApiItem/hooks.ts","./src/theme/ApiItem/index.tsx","./src/theme/ApiItem/store.ts","./src/theme/ApiItem/Layout/index.tsx","./src/theme/ApiLogo/index.tsx","./src/theme/ApiTabs/index.tsx","./src/theme/ArrayBrackets/index.tsx","./src/theme/CodeSamples/index.tsx","./src/theme/DiscriminatorTabs/index.tsx","./src/theme/Example/index.tsx","./src/theme/Markdown/index.d.ts","./src/theme/MimeTabs/index.tsx","./src/theme/OperationTabs/index.tsx","./src/theme/ParamsDetails/index.tsx","./src/theme/ParamsItem/index.tsx","./src/theme/RequestSchema/index.tsx","./src/theme/ResponseExamples/index.tsx","./src/theme/ResponseHeaders/index.tsx","./src/theme/ResponseSchema/index.tsx","./src/theme/Schema/index.tsx","./src/theme/SchemaExpansion/context.tsx","./src/theme/SchemaExpansion/index.tsx","./src/theme/SchemaItem/index.tsx","./src/theme/SchemaTabs/index.tsx","./src/theme/SkeletonLoader/index.tsx","./src/theme/StatusCodes/index.tsx"],"version":"5.9.3"}
|
|
1
|
+
{"root":["./src/index.ts","./src/plugin-content-docs.d.ts","./src/postman-code-generators.d.ts","./src/react-magic-dropzone.d.ts","./src/theme-classic.d.ts","./src/theme-openapi.d.ts","./src/types.d.ts","./src/markdown/createDescription.ts","./src/markdown/schema.test.ts","./src/markdown/schema.ts","./src/markdown/utils.test.ts","./src/markdown/utils.ts","./src/theme/translationIds.ts","./src/theme/ApiExplorer/buildPostmanRequest.ts","./src/theme/ApiExplorer/index.tsx","./src/theme/ApiExplorer/persistenceMiddleware.ts","./src/theme/ApiExplorer/storage-utils.ts","./src/theme/ApiExplorer/Accept/index.tsx","./src/theme/ApiExplorer/Accept/slice.ts","./src/theme/ApiExplorer/ApiCodeBlock/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Container/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Content/Element.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Content/String.tsx","./src/theme/ApiExplorer/ApiCodeBlock/CopyButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/ExitButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/ExpandButton/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/Line/index.tsx","./src/theme/ApiExplorer/ApiCodeBlock/WordWrapButton/index.tsx","./src/theme/ApiExplorer/Authorization/auth-types.ts","./src/theme/ApiExplorer/Authorization/index.tsx","./src/theme/ApiExplorer/Authorization/slice.ts","./src/theme/ApiExplorer/Body/index.tsx","./src/theme/ApiExplorer/Body/json2xml.d.ts","./src/theme/ApiExplorer/Body/resolveSchemaWithSelections.ts","./src/theme/ApiExplorer/Body/slice.ts","./src/theme/ApiExplorer/Body/FileArrayFormBodyItem/index.tsx","./src/theme/ApiExplorer/Body/FormBodyItem/index.tsx","./src/theme/ApiExplorer/CodeSnippets/code-snippets-types.ts","./src/theme/ApiExplorer/CodeSnippets/index.tsx","./src/theme/ApiExplorer/CodeSnippets/languages.test.ts","./src/theme/ApiExplorer/CodeSnippets/languages.ts","./src/theme/ApiExplorer/CodeTabs/index.tsx","./src/theme/ApiExplorer/ContentType/index.tsx","./src/theme/ApiExplorer/ContentType/slice.ts","./src/theme/ApiExplorer/EncodingSelection/slice.ts","./src/theme/ApiExplorer/EncodingSelection/useResolvedEncoding.ts","./src/theme/ApiExplorer/Export/index.tsx","./src/theme/ApiExplorer/FloatingButton/index.tsx","./src/theme/ApiExplorer/FormFileUpload/index.tsx","./src/theme/ApiExplorer/FormItem/index.tsx","./src/theme/ApiExplorer/FormLabel/index.tsx","./src/theme/ApiExplorer/FormMultiSelect/index.tsx","./src/theme/ApiExplorer/FormSelect/index.tsx","./src/theme/ApiExplorer/FormTextInput/index.tsx","./src/theme/ApiExplorer/LiveEditor/index.tsx","./src/theme/ApiExplorer/MethodEndpoint/index.tsx","./src/theme/ApiExplorer/ParamOptions/index.tsx","./src/theme/ApiExplorer/ParamOptions/slice.ts","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamArrayFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamBooleanFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamMultiSelectFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamSelectFormItem.tsx","./src/theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem.tsx","./src/theme/ApiExplorer/Request/index.tsx","./src/theme/ApiExplorer/Request/makeRequest.ts","./src/theme/ApiExplorer/Response/index.tsx","./src/theme/ApiExplorer/Response/slice.ts","./src/theme/ApiExplorer/SchemaSelection/index.ts","./src/theme/ApiExplorer/SchemaSelection/slice.ts","./src/theme/ApiExplorer/SecuritySchemes/index.tsx","./src/theme/ApiExplorer/Server/index.tsx","./src/theme/ApiExplorer/Server/slice.ts","./src/theme/ApiItem/hooks.ts","./src/theme/ApiItem/index.tsx","./src/theme/ApiItem/store.ts","./src/theme/ApiItem/Layout/index.tsx","./src/theme/ApiLogo/index.tsx","./src/theme/ApiTabs/index.tsx","./src/theme/ArrayBrackets/index.tsx","./src/theme/CodeSamples/index.tsx","./src/theme/DiscriminatorTabs/index.tsx","./src/theme/Example/index.tsx","./src/theme/Markdown/index.d.ts","./src/theme/MimeTabs/index.tsx","./src/theme/OperationTabs/index.tsx","./src/theme/ParamsDetails/index.tsx","./src/theme/ParamsItem/index.tsx","./src/theme/RequestSchema/index.tsx","./src/theme/ResponseExamples/index.tsx","./src/theme/ResponseHeaders/index.tsx","./src/theme/ResponseSchema/index.tsx","./src/theme/Schema/index.tsx","./src/theme/SchemaExpansion/context.tsx","./src/theme/SchemaExpansion/index.tsx","./src/theme/SchemaItem/index.tsx","./src/theme/SchemaTabs/index.tsx","./src/theme/SkeletonLoader/index.tsx","./src/theme/StatusCodes/index.tsx"],"version":"5.9.3"}
|