docusaurus-theme-openapi-docs 0.0.0-736 → 0.0.0-737

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/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-736",
4
+ "version": "0.0.0-737",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -41,7 +41,7 @@
41
41
  "clsx": "^1.1.1",
42
42
  "copy-text-to-clipboard": "^3.1.0",
43
43
  "crypto-js": "^4.1.1",
44
- "docusaurus-plugin-openapi-docs": "0.0.0-736",
44
+ "docusaurus-plugin-openapi-docs": "0.0.0-737",
45
45
  "docusaurus-plugin-sass": "^0.2.3",
46
46
  "file-saver": "^2.0.5",
47
47
  "lodash": "^4.17.20",
@@ -68,5 +68,5 @@
68
68
  "engines": {
69
69
  "node": ">=14"
70
70
  },
71
- "gitHead": "ac63a892a690324697897289720d42d4bd3989fa"
71
+ "gitHead": "c6c79eab0f5ec52c4ef3b15207140a351a0a456f"
72
72
  }
@@ -48,6 +48,7 @@ declare module "docusaurus-theme-openapi-docs" {
48
48
  }
49
49
 
50
50
  declare module "@theme/ApiItem/hooks" {
51
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
51
52
  export { useTypedDispatch, useTypedSelector };
52
53
  }
53
54
 
@@ -56,6 +57,7 @@ declare module "@theme/ApiItem/Layout" {
56
57
  }
57
58
 
58
59
  declare module "@theme/ApiItem/store" {
60
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
59
61
  export { AppDispatch, RootState };
60
62
  }
61
63
 
@@ -80,6 +82,7 @@ declare module "@theme/ApiExplorer/Authorization" {
80
82
  }
81
83
 
82
84
  declare module "@theme/ApiExplorer/Authorization/slice" {
85
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
83
86
  export { AuthState, Scheme, setAuthData, setSelectedAuth, createAuth };
84
87
  export default auth as Reducer<State, AnyAction>;
85
88
  }
@@ -117,6 +120,7 @@ declare module "@theme/ApiExplorer/ContentType" {
117
120
  }
118
121
 
119
122
  declare module "@theme/ApiExplorer/ContentType/slice" {
123
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
120
124
  export { setContentType };
121
125
  export default contentType as Reducer<State, AnyAction>;
122
126
  }
@@ -227,12 +231,14 @@ declare module "@theme/ApiExplorer/ParamOptions/ParamFormItems/ParamTextFormItem
227
231
  }
228
232
 
229
233
  declare module "@theme/ApiExplorer/ParamOptions/slice" {
234
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
230
235
  export type { Param };
231
236
  export const setParam;
232
237
  export default params as Reducer<State, AnyAction>;
233
238
  }
234
239
 
235
240
  declare module "@theme/ApiExplorer/persistanceMiddleware" {
241
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
236
242
  export { createPersistanceMiddleware };
237
243
  }
238
244
 
@@ -256,6 +262,7 @@ declare module "@theme/ApiExplorer/Response" {
256
262
  }
257
263
 
258
264
  declare module "@theme/ApiExplorer/Response/slice" {
265
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
259
266
  export { setResponse, setCode, setHeaders, clearCode, clearHeaders };
260
267
  export default response as Reducer<State, AnyAction>;
261
268
  }
@@ -277,5 +284,6 @@ declare module "@theme/ApiExplorer/Server/slice" {
277
284
  }
278
285
 
279
286
  declare module "@theme/ApiExplorer/storage-utils" {
287
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
280
288
  export { createStorage, hashArray };
281
289
  }