docusaurus-theme-openapi-docs 0.0.0-1082 → 0.0.0-1084

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.
@@ -40,7 +40,9 @@ const auth_types_1 = require("./auth-types");
40
40
  // BearerAuth -> { token: xxx }
41
41
  // BasicAuth -> { username: xxx, password: xxx }
42
42
  function createAuth({ security, securitySchemes, options: opts }) {
43
- const storage = (0, storage_utils_1.createStorage)("sessionStorage");
43
+ const storage = (0, storage_utils_1.createStorage)(
44
+ opts?.authPersistence ?? "sessionStorage"
45
+ );
44
46
  let data = {};
45
47
  let options = {};
46
48
  for (const option of security ?? []) {
@@ -1,6 +1,6 @@
1
- import { Middleware } from "@reduxjs/toolkit";
2
- import { ThemeConfig } from "docusaurus-theme-openapi-docs/src/types";
3
- export declare function createPersistanceMiddleware(options: ThemeConfig["api"]): Middleware<{}, {
1
+ import type { Middleware } from "@reduxjs/toolkit";
2
+ import type { ThemeConfig } from "docusaurus-theme-openapi-docs/src/types";
3
+ export declare function createPersistenceMiddleware(options: ThemeConfig["api"]): Middleware<{}, {
4
4
  accept: import("./Accept/slice").State;
5
5
  contentType: import("./ContentType/slice").State;
6
6
  response: import("./Response/slice").State;
@@ -6,14 +6,16 @@
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  * ========================================================================== */
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.createPersistanceMiddleware = createPersistanceMiddleware;
9
+ exports.createPersistenceMiddleware = createPersistenceMiddleware;
10
10
  const slice_1 = require("@theme/ApiExplorer/Authorization/slice");
11
11
  const storage_utils_1 = require("./storage-utils");
12
- function createPersistanceMiddleware(options) {
13
- const persistanceMiddleware = (storeAPI) => (next) => (action) => {
12
+ function createPersistenceMiddleware(options) {
13
+ const persistenceMiddleware = (storeAPI) => (next) => (action) => {
14
14
  const result = next(action);
15
15
  const state = storeAPI.getState();
16
- const storage = (0, storage_utils_1.createStorage)("sessionStorage");
16
+ const storage = (0, storage_utils_1.createStorage)(
17
+ options?.authPersistence ?? "sessionStorage"
18
+ );
17
19
  if (action.type === slice_1.setAuthData.type) {
18
20
  for (const [key, value] of Object.entries(state.auth.data)) {
19
21
  if (Object.values(value).filter(Boolean).length > 0) {
@@ -42,13 +44,18 @@ function createPersistanceMiddleware(options) {
42
44
  storage.setItem("server", action.payload);
43
45
  }
44
46
  if (action.type === "server/setServerVariable") {
45
- const server = storage.getItem("server") ?? "{}";
47
+ const server = storage.getItem("server");
48
+ if (!server) {
49
+ return result;
50
+ }
46
51
  const variables = JSON.parse(action.payload);
47
- let serverObject = JSON.parse(server);
48
- serverObject.variables[variables.key].default = variables.value;
49
- storage.setItem("server", JSON.stringify(serverObject));
52
+ const serverObject = JSON.parse(server) ?? {};
53
+ if (serverObject.variables?.[variables.key]) {
54
+ serverObject.variables[variables.key].default = variables.value;
55
+ storage.setItem("server", JSON.stringify(serverObject));
56
+ }
50
57
  }
51
58
  return result;
52
59
  };
53
- return persistanceMiddleware;
60
+ return persistenceMiddleware;
54
61
  }
@@ -1,4 +1,4 @@
1
1
  export declare function hashArray(arr: string[]): string;
2
- type Persistance = false | "localStorage" | "sessionStorage" | undefined;
3
- export declare function createStorage(persistance: Persistance): Storage;
2
+ type Persistence = false | "localStorage" | "sessionStorage" | undefined;
3
+ export declare function createStorage(persistence: Persistence): Storage;
4
4
  export {};
@@ -23,8 +23,8 @@ function hashArray(arr) {
23
23
  const res = hashed.join();
24
24
  return hash(res);
25
25
  }
26
- function createStorage(persistance) {
27
- if (persistance === false) {
26
+ function createStorage(persistence) {
27
+ if (persistence === false) {
28
28
  return {
29
29
  getItem: () => null,
30
30
  setItem: () => {},
@@ -34,7 +34,7 @@ function createStorage(persistance) {
34
34
  length: 0,
35
35
  };
36
36
  }
37
- if (persistance === "sessionStorage") {
37
+ if (persistence === "sessionStorage") {
38
38
  return sessionStorage;
39
39
  }
40
40
  return localStorage;
@@ -24,7 +24,8 @@ const useDocusaurusContext_1 = __importDefault(
24
24
  );
25
25
  const useIsBrowser_1 = __importDefault(require("@docusaurus/useIsBrowser"));
26
26
  const slice_1 = require("@theme/ApiExplorer/Authorization/slice");
27
- const persistanceMiddleware_1 = require("@theme/ApiExplorer/persistanceMiddleware");
27
+ const persistenceMiddleware_1 = require("@theme/ApiExplorer/persistenceMiddleware");
28
+ const storage_utils_1 = require("@theme/ApiExplorer/storage-utils");
28
29
  const Layout_1 = __importDefault(require("@theme/ApiItem/Layout"));
29
30
  const CodeBlock_1 = __importDefault(require("@theme/CodeBlock"));
30
31
  const Metadata_1 = __importDefault(require("@theme/DocItem/Metadata"));
@@ -71,11 +72,11 @@ function ApiItem(props) {
71
72
  const statusRegex = new RegExp("(20[0-9]|2[1-9][0-9])");
72
73
  // Define store2
73
74
  let store2 = {};
74
- const persistanceMiddleware = (0,
75
- persistanceMiddleware_1.createPersistanceMiddleware)(options);
75
+ const persistenceMiddleware = (0,
76
+ persistenceMiddleware_1.createPersistenceMiddleware)(options);
76
77
  // Init store for SSR
77
78
  if (!isBrowser) {
78
- store2 = (0, store_1.createStoreWithoutState)({}, [persistanceMiddleware]);
79
+ store2 = (0, store_1.createStoreWithoutState)({}, [persistenceMiddleware]);
79
80
  }
80
81
  // Init store for CSR to hydrate components
81
82
  if (isBrowser) {
@@ -106,11 +107,14 @@ function ApiItem(props) {
106
107
  securitySchemes: api?.securitySchemes,
107
108
  options,
108
109
  });
110
+ const storage = (0, storage_utils_1.createStorage)(
111
+ options?.authPersistence ?? "sessionStorage"
112
+ );
109
113
  // TODO: determine way to rehydrate without flashing
110
114
  // const acceptValue = window?.sessionStorage.getItem("accept");
111
115
  // const contentTypeValue = window?.sessionStorage.getItem("contentType");
112
- const server = window?.sessionStorage.getItem("server");
113
- const serverObject = JSON.parse(server) ?? {};
116
+ const server = storage.getItem("server");
117
+ const serverObject = server ? JSON.parse(server) : undefined;
114
118
  store2 = (0, store_1.createStoreWithState)(
115
119
  {
116
120
  accept: {
@@ -122,7 +126,7 @@ function ApiItem(props) {
122
126
  options: contentTypeArray,
123
127
  },
124
128
  server: {
125
- value: serverObject.url ? serverObject : undefined,
129
+ value: serverObject?.url ? serverObject : undefined,
126
130
  options: servers,
127
131
  },
128
132
  response: { value: undefined },
@@ -130,7 +134,7 @@ function ApiItem(props) {
130
134
  params,
131
135
  auth,
132
136
  },
133
- [persistanceMiddleware]
137
+ [persistenceMiddleware]
134
138
  );
135
139
  }
136
140
  if (api) {
package/lib/types.d.ts CHANGED
@@ -3,7 +3,13 @@ import type { JSONSchema4, JSONSchema6, JSONSchema7 } from "json-schema";
3
3
  export interface ThemeConfig {
4
4
  api?: {
5
5
  proxy?: string;
6
- authPersistance?: false | "localStorage" | "sessionStorage";
6
+ /**
7
+ * Controls how authentication credentials are persisted in the API explorer.
8
+ * - `false`: No persistence (in-memory only)
9
+ * - `"sessionStorage"`: Persist for the browser session (default)
10
+ * - `"localStorage"`: Persist across browser sessions
11
+ */
12
+ authPersistence?: false | "sessionStorage" | "localStorage";
7
13
  /** Request timeout in milliseconds. Defaults to 30000 (30 seconds). */
8
14
  requestTimeout?: number;
9
15
  };
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-1082",
4
+ "version": "0.0.0-1084",
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-1082",
41
+ "docusaurus-plugin-openapi-docs": "0.0.0-1084",
42
42
  "docusaurus-plugin-sass": "^0.2.6",
43
43
  "eslint-plugin-prettier": "^5.5.1"
44
44
  },
@@ -81,5 +81,5 @@
81
81
  "engines": {
82
82
  "node": ">=14"
83
83
  },
84
- "gitHead": "7e23eae947f6c077f3a087f2b42368dbbadcb6bb"
84
+ "gitHead": "0f4596a4e9c32f3d0e79cb45eac01958bbb11e9d"
85
85
  }
@@ -58,7 +58,7 @@ export function createAuth({
58
58
  };
59
59
  options?: ThemeConfig["api"];
60
60
  }): AuthState {
61
- const storage = createStorage("sessionStorage");
61
+ const storage = createStorage(opts?.authPersistence ?? "sessionStorage");
62
62
 
63
63
  let data: AuthState["data"] = {};
64
64
  let options: AuthState["options"] = {};
@@ -5,19 +5,19 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  * ========================================================================== */
7
7
 
8
- import { Middleware } from "@reduxjs/toolkit";
8
+ import type { Middleware } from "@reduxjs/toolkit";
9
9
  import {
10
10
  setAuthData,
11
11
  setSelectedAuth,
12
12
  } from "@theme/ApiExplorer/Authorization/slice";
13
- import { AppDispatch, RootState } from "@theme/ApiItem/store";
14
- /* eslint-disable import/no-extraneous-dependencies*/
15
- import { ThemeConfig } from "docusaurus-theme-openapi-docs/src/types";
13
+ import type { AppDispatch, RootState } from "@theme/ApiItem/store";
14
+ import type { ServerObject } from "docusaurus-plugin-openapi-docs/src/openapi/types";
15
+ import type { ThemeConfig } from "docusaurus-theme-openapi-docs/src/types";
16
16
 
17
17
  import { createStorage, hashArray } from "./storage-utils";
18
18
 
19
- export function createPersistanceMiddleware(options: ThemeConfig["api"]) {
20
- const persistanceMiddleware: Middleware<{}, RootState, AppDispatch> =
19
+ export function createPersistenceMiddleware(options: ThemeConfig["api"]) {
20
+ const persistenceMiddleware: Middleware<{}, RootState, AppDispatch> =
21
21
  (storeAPI) =>
22
22
  (next) =>
23
23
  (action: ReturnType<typeof setAuthData | typeof setSelectedAuth> | any) => {
@@ -25,7 +25,9 @@ export function createPersistanceMiddleware(options: ThemeConfig["api"]) {
25
25
 
26
26
  const state = storeAPI.getState();
27
27
 
28
- const storage = createStorage("sessionStorage");
28
+ const storage = createStorage(
29
+ options?.authPersistence ?? "sessionStorage"
30
+ );
29
31
 
30
32
  if (action.type === setAuthData.type) {
31
33
  for (const [key, value] of Object.entries(state.auth.data)) {
@@ -60,14 +62,20 @@ export function createPersistanceMiddleware(options: ThemeConfig["api"]) {
60
62
  }
61
63
 
62
64
  if (action.type === "server/setServerVariable") {
63
- const server = storage.getItem("server") ?? "{}";
65
+ const server = storage.getItem("server");
66
+ if (!server) {
67
+ return result;
68
+ }
64
69
  const variables = JSON.parse(action.payload);
65
- let serverObject = JSON.parse(server);
66
- serverObject.variables[variables.key].default = variables.value;
67
- storage.setItem("server", JSON.stringify(serverObject));
70
+
71
+ const serverObject = (JSON.parse(server) as ServerObject) ?? {};
72
+ if (serverObject.variables?.[variables.key]) {
73
+ serverObject.variables[variables.key].default = variables.value;
74
+ storage.setItem("server", JSON.stringify(serverObject));
75
+ }
68
76
  }
69
77
 
70
78
  return result;
71
79
  };
72
- return persistanceMiddleware;
80
+ return persistenceMiddleware;
73
81
  }
@@ -17,10 +17,10 @@ export function hashArray(arr: string[]) {
17
17
  return hash(res);
18
18
  }
19
19
 
20
- type Persistance = false | "localStorage" | "sessionStorage" | undefined;
20
+ type Persistence = false | "localStorage" | "sessionStorage" | undefined;
21
21
 
22
- export function createStorage(persistance: Persistance): Storage {
23
- if (persistance === false) {
22
+ export function createStorage(persistence: Persistence): Storage {
23
+ if (persistence === false) {
24
24
  return {
25
25
  getItem: () => null,
26
26
  setItem: () => {},
@@ -31,7 +31,7 @@ export function createStorage(persistance: Persistance): Storage {
31
31
  };
32
32
  }
33
33
 
34
- if (persistance === "sessionStorage") {
34
+ if (persistence === "sessionStorage") {
35
35
  return sessionStorage;
36
36
  }
37
37
 
@@ -14,7 +14,8 @@ import { HtmlClassNameProvider } from "@docusaurus/theme-common";
14
14
  import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
15
15
  import useIsBrowser from "@docusaurus/useIsBrowser";
16
16
  import { createAuth } from "@theme/ApiExplorer/Authorization/slice";
17
- import { createPersistanceMiddleware } from "@theme/ApiExplorer/persistanceMiddleware";
17
+ import { createPersistenceMiddleware } from "@theme/ApiExplorer/persistenceMiddleware";
18
+ import { createStorage } from "@theme/ApiExplorer/storage-utils";
18
19
  import DocItemLayout from "@theme/ApiItem/Layout";
19
20
  import CodeBlock from "@theme/CodeBlock";
20
21
  import type { Props } from "@theme/DocItem";
@@ -90,11 +91,11 @@ export default function ApiItem(props: Props): JSX.Element {
90
91
 
91
92
  // Define store2
92
93
  let store2: any = {};
93
- const persistanceMiddleware = createPersistanceMiddleware(options);
94
+ const persistenceMiddleware = createPersistenceMiddleware(options);
94
95
 
95
96
  // Init store for SSR
96
97
  if (!isBrowser) {
97
- store2 = createStoreWithoutState({}, [persistanceMiddleware]);
98
+ store2 = createStoreWithoutState({}, [persistenceMiddleware]);
98
99
  }
99
100
 
100
101
  // Init store for CSR to hydrate components
@@ -129,11 +130,15 @@ export default function ApiItem(props: Props): JSX.Element {
129
130
  securitySchemes: api?.securitySchemes,
130
131
  options,
131
132
  });
133
+
134
+ const storage = createStorage(options?.authPersistence ?? "sessionStorage");
132
135
  // TODO: determine way to rehydrate without flashing
133
136
  // const acceptValue = window?.sessionStorage.getItem("accept");
134
137
  // const contentTypeValue = window?.sessionStorage.getItem("contentType");
135
- const server = window?.sessionStorage.getItem("server");
136
- const serverObject = (JSON.parse(server!) as ServerObject) ?? {};
138
+ const server = storage.getItem("server");
139
+ const serverObject = server
140
+ ? (JSON.parse(server) as ServerObject)
141
+ : undefined;
137
142
 
138
143
  store2 = createStoreWithState(
139
144
  {
@@ -146,7 +151,7 @@ export default function ApiItem(props: Props): JSX.Element {
146
151
  options: contentTypeArray,
147
152
  },
148
153
  server: {
149
- value: serverObject.url ? serverObject : undefined,
154
+ value: serverObject?.url ? serverObject : undefined,
150
155
  options: servers,
151
156
  },
152
157
  response: { value: undefined },
@@ -154,7 +159,7 @@ export default function ApiItem(props: Props): JSX.Element {
154
159
  params,
155
160
  auth,
156
161
  },
157
- [persistanceMiddleware]
162
+ [persistenceMiddleware]
158
163
  );
159
164
  }
160
165
 
package/src/types.ts CHANGED
@@ -11,7 +11,13 @@ import type { JSONSchema4, JSONSchema6, JSONSchema7 } from "json-schema";
11
11
  export interface ThemeConfig {
12
12
  api?: {
13
13
  proxy?: string;
14
- authPersistance?: false | "localStorage" | "sessionStorage";
14
+ /**
15
+ * Controls how authentication credentials are persisted in the API explorer.
16
+ * - `false`: No persistence (in-memory only)
17
+ * - `"sessionStorage"`: Persist for the browser session (default)
18
+ * - `"localStorage"`: Persist across browser sessions
19
+ */
20
+ authPersistence?: false | "sessionStorage" | "localStorage";
15
21
  /** Request timeout in milliseconds. Defaults to 30000 (30 seconds). */
16
22
  requestTimeout?: number;
17
23
  };
@@ -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.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/persistanceMiddleware.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/slice.ts","./src/theme/ApiExplorer/CodeSnippets/code-snippets-types.ts","./src/theme/ApiExplorer/CodeSnippets/index.tsx","./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/Export/index.tsx","./src/theme/ApiExplorer/FloatingButton/index.tsx","./src/theme/ApiExplorer/FormFileUpload/index.tsx","./src/theme/ApiExplorer/FormItem/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/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/SchemaItem/index.tsx","./src/theme/SchemaTabs/index.tsx","./src/theme/SkeletonLoader/index.tsx","./src/theme/StatusCodes/index.tsx"],"version":"5.8.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.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/slice.ts","./src/theme/ApiExplorer/CodeSnippets/code-snippets-types.ts","./src/theme/ApiExplorer/CodeSnippets/index.tsx","./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/Export/index.tsx","./src/theme/ApiExplorer/FloatingButton/index.tsx","./src/theme/ApiExplorer/FormFileUpload/index.tsx","./src/theme/ApiExplorer/FormItem/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/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/SchemaItem/index.tsx","./src/theme/SchemaTabs/index.tsx","./src/theme/SkeletonLoader/index.tsx","./src/theme/StatusCodes/index.tsx"],"version":"5.8.3"}