Merge pull request #96 from mCaptcha/update-deps
chore: update swagger ui
This commit is contained in:
commit
376a9348cb
27 changed files with 7014 additions and 2266 deletions
4
Makefile
4
Makefile
|
@ -46,8 +46,8 @@ endef
|
|||
|
||||
|
||||
define test_frontend ## run frontend tests
|
||||
cd $(OPENAPI)&& yarn test
|
||||
yarn test
|
||||
# cd $(OPENAPI)&& yarn test
|
||||
endef
|
||||
|
||||
define test_db_sqlx_postgres
|
||||
|
@ -146,7 +146,7 @@ lint: ## Lint codebase
|
|||
cargo fmt -v --all -- --emit files
|
||||
cargo clippy --workspace --tests --all-features
|
||||
yarn lint
|
||||
cd $(OPENAPI)&& yarn test
|
||||
#cd $(OPENAPI)&& yarn test
|
||||
|
||||
migrate: ## Run database migrations
|
||||
$(call run_migrations)
|
||||
|
|
5789
docs/openapi/package-lock.json
generated
Normal file
5789
docs/openapi/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -4,10 +4,7 @@
|
|||
"description": "mCaptcha CAPTCHA service's API",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "swagger-cli bundle openapi.yaml --outfile dist/openapi.yaml --type yaml",
|
||||
"test": "npm run build && spectral lint dist/openapi.yaml",
|
||||
"serve": "npm run build && redoc-cli serve dist/openapi.yaml --port 7000 --options.onlyRequiredInSamples",
|
||||
"html": "npm run build && redoc-cli bundle dist/openapi.yaml --output dist/index.html --options.onlyRequiredInSamples",
|
||||
"build": "redocly bundle openapi.yaml --output dist/openapi.yaml",
|
||||
"clean": "rm -r dist"
|
||||
},
|
||||
"repository": {
|
||||
|
@ -19,9 +16,7 @@
|
|||
"url": "https://github.com/mCaptcha/mCaptcha/issues"
|
||||
},
|
||||
"homepage": "https://github.com/mCaptcha/mCaptcha#readme",
|
||||
"dependencies": {
|
||||
"@apidevtools/swagger-cli": "^4.0.4",
|
||||
"@stoplight/spectral": "^6.1.0",
|
||||
"redoc-cli": "^0.13.0"
|
||||
"devDependencies": {
|
||||
"@redocly/cli": "^1.0.0-beta.129"
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
16
static/openapi/index.css
Normal file
16
static/openapi/index.css
Normal file
|
@ -0,0 +1,16 @@
|
|||
html {
|
||||
box-sizing: border-box;
|
||||
overflow: -moz-scrollbars-vertical;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
background: #fafafa;
|
||||
}
|
|
@ -2,59 +2,45 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta charset="UTF-8" />
|
||||
<title>Swagger UI</title>
|
||||
<link rel="stylesheet" type="text/css" href="./swagger-ui.css" />
|
||||
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
|
||||
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
|
||||
<style>
|
||||
html
|
||||
{
|
||||
box-sizing: border-box;
|
||||
overflow: -moz-scrollbars-vertical;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after
|
||||
{
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
margin:0;
|
||||
background: #fafafa;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="index.css" />
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
href="./favicon-32x32.png"
|
||||
sizes="32x32"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
href="./favicon-16x16.png"
|
||||
sizes="16x16"
|
||||
/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="swagger-ui"></div>
|
||||
<script src="./swagger-ui-bundle.js" charset="UTF-8"></script>
|
||||
<script src="./swagger-ui-standalone-preset.js" charset="UTF-8"></script>
|
||||
<script src="./swagger-initializer.js" charset="UTF-8"></script>
|
||||
</body>
|
||||
|
||||
<script src="./swagger-ui-bundle.js" charset="UTF-8"> </script>
|
||||
<script src="./swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
|
||||
<script>
|
||||
window.onload = function() {
|
||||
<script>
|
||||
window.onload = function () {
|
||||
// Begin Swagger UI call region
|
||||
const ui = SwaggerUIBundle({
|
||||
url: "/docs/openapi.yaml",
|
||||
dom_id: '#swagger-ui',
|
||||
dom_id: "#swagger-ui",
|
||||
deepLinking: true,
|
||||
presets: [
|
||||
SwaggerUIBundle.presets.apis,
|
||||
SwaggerUIStandalonePreset
|
||||
],
|
||||
plugins: [
|
||||
SwaggerUIBundle.plugins.DownloadUrl
|
||||
],
|
||||
layout: "StandaloneLayout"
|
||||
presets: [SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset],
|
||||
plugins: [SwaggerUIBundle.plugins.DownloadUrl],
|
||||
layout: "StandaloneLayout",
|
||||
});
|
||||
// End Swagger UI call region
|
||||
|
||||
window.ui = ui;
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
99
static/openapi/log.bundle-sizes.swagger-ui.txt
Normal file
99
static/openapi/log.bundle-sizes.swagger-ui.txt
Normal file
|
@ -0,0 +1,99 @@
|
|||
ramda: 361.65 KB (6.14%)
|
||||
core-js-pure: 300.89 KB (5.11%)
|
||||
ramda-adjunct: 255.42 KB (4.34%)
|
||||
lodash: 253.56 KB (4.30%)
|
||||
@swagger-api/apidom-ns-openapi-3-0: 204.6 KB (3.47%)
|
||||
autolinker: 203.32 KB (3.45%)
|
||||
swagger-client: 159.41 KB (2.71%)
|
||||
is-plain-object: 758 B (0.464%)
|
||||
<self>: 158.67 KB (99.5%)
|
||||
@swagger-api/apidom-ns-openapi-3-1: 154.72 KB (2.63%)
|
||||
immutable: 139.01 KB (2.36%)
|
||||
remarkable: 125.56 KB (2.13%)
|
||||
react-dom: 119.19 KB (2.02%)
|
||||
highlight.js: 111.85 KB (1.90%)
|
||||
js-yaml: 105.01 KB (1.78%)
|
||||
readable-stream: 96.66 KB (1.64%)
|
||||
@swagger-api/apidom-reference: 84.72 KB (1.44%)
|
||||
dompurify: 61.27 KB (1.04%)
|
||||
@swagger-api/apidom-ns-json-schema-draft-4: 58.11 KB (0.987%)
|
||||
minim: 57.35 KB (0.974%)
|
||||
buffer: 56.99 KB (0.967%)
|
||||
@swagger-api/apidom-core: 47.72 KB (0.810%)
|
||||
@swagger-api/apidom-ast: 44.47 KB (0.755%)
|
||||
react-redux: 43.7 KB (0.742%)
|
||||
react-syntax-highlighter: 38.01 KB (0.645%)
|
||||
url: 37.24 KB (0.632%)
|
||||
punycode: 14.33 KB (38.5%)
|
||||
<self>: 22.92 KB (61.5%)
|
||||
fast-json-patch: 31.89 KB (0.541%)
|
||||
redux: 27.59 KB (0.468%)
|
||||
qs: 26.61 KB (0.452%)
|
||||
sha.js: 18.57 KB (0.315%)
|
||||
object-inspect: 18.15 KB (0.308%)
|
||||
url-parse: 16.23 KB (0.276%)
|
||||
events: 14.54 KB (0.247%)
|
||||
cross-fetch: 14.31 KB (0.243%)
|
||||
tslib: 14.21 KB (0.241%)
|
||||
@babel/runtime-corejs3: 13.24 KB (0.225%)
|
||||
get-intrinsic: 13.01 KB (0.221%)
|
||||
reselect: 12.51 KB (0.212%)
|
||||
zenscroll: 12.31 KB (0.209%)
|
||||
react-debounce-input: 11.95 KB (0.203%)
|
||||
react-immutable-proptypes: 11.82 KB (0.201%)
|
||||
ret: 10.82 KB (0.184%)
|
||||
lodash.debounce: 10.53 KB (0.179%)
|
||||
unraw: 10.27 KB (0.174%)
|
||||
string_decoder: 9.24 KB (0.157%)
|
||||
short-unique-id: 8.29 KB (0.141%)
|
||||
xml: 7.39 KB (0.125%)
|
||||
react-copy-to-clipboard: 7.33 KB (0.124%)
|
||||
traverse: 7.15 KB (0.121%)
|
||||
react: 6.48 KB (0.110%)
|
||||
@babel/runtime: 6.29 KB (0.107%)
|
||||
randexp: 6.15 KB (0.104%)
|
||||
react-immutable-pure-component: 6.01 KB (0.102%)
|
||||
redux-immutable: 5.43 KB (0.0922%)
|
||||
process: 5.29 KB (0.0898%)
|
||||
cookie: 5.1 KB (0.0866%)
|
||||
scheduler: 4.91 KB (0.0834%)
|
||||
drange: 4.8 KB (0.0815%)
|
||||
lowlight: 4.42 KB (0.0751%)
|
||||
deep-extend: 4.19 KB (0.0712%)
|
||||
deepmerge: 3.95 KB (0.0671%)
|
||||
base64-js: 3.84 KB (0.0652%)
|
||||
stream-browserify: 3.76 KB (0.0638%)
|
||||
@swagger-api/apidom-json-pointer: 3.68 KB (0.0625%)
|
||||
side-channel: 3.31 KB (0.0562%)
|
||||
copy-to-clipboard: 3.29 KB (0.0558%)
|
||||
format: 3.26 KB (0.0553%)
|
||||
stampit: 3.16 KB (0.0536%)
|
||||
css.escape: 3.08 KB (0.0523%)
|
||||
serialize-error: 2.93 KB (0.0497%)
|
||||
hoist-non-react-statics: 2.68 KB (0.0455%)
|
||||
prop-types: 2.6 KB (0.0441%)
|
||||
use-sync-external-store: 2.59 KB (0.0440%)
|
||||
querystringify: 2.5 KB (0.0425%)
|
||||
react-is: 2.48 KB (0.0422%)
|
||||
xml-but-prettier: 2.17 KB (0.0368%)
|
||||
has-symbols: 2.13 KB (0.0362%)
|
||||
ieee754: 2.1 KB (0.0357%)
|
||||
object-assign: 2.06 KB (0.0349%)
|
||||
call-bind: 1.68 KB (0.0285%)
|
||||
safe-buffer: 1.63 KB (0.0277%)
|
||||
util-deprecate: 1.58 KB (0.0268%)
|
||||
function-bind: 1.55 KB (0.0263%)
|
||||
randombytes: 1.54 KB (0.0261%)
|
||||
js-file-download: 1.52 KB (0.0258%)
|
||||
classnames: 1.38 KB (0.0235%)
|
||||
@braintree/sanitize-url: 1.38 KB (0.0234%)
|
||||
repeat-string: 1.18 KB (0.0201%)
|
||||
toggle-selection: 780 B (0.0129%)
|
||||
inherits: 753 B (0.0125%)
|
||||
requires-port: 753 B (0.0125%)
|
||||
fault: 691 B (0.0115%)
|
||||
formdata-node: 259 B (0.00429%)
|
||||
has-proto: 197 B (0.00327%)
|
||||
has: 129 B (0.00214%)
|
||||
object-inspect|.: 15 B (0.000249%)
|
||||
<self>: 2.26 MB (39.2%)
|
16
static/openapi/log.es-bundle-core-sizes.swagger-ui.txt
Normal file
16
static/openapi/log.es-bundle-core-sizes.swagger-ui.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
readable-stream: 96.66 KB (7.62%)
|
||||
buffer: 56.99 KB (4.49%)
|
||||
core-js-pure: 25.99 KB (2.05%)
|
||||
sha.js: 18.57 KB (1.46%)
|
||||
events: 14.54 KB (1.15%)
|
||||
string_decoder: 9.24 KB (0.728%)
|
||||
xml: 7.39 KB (0.582%)
|
||||
process: 5.29 KB (0.417%)
|
||||
deep-extend: 4.19 KB (0.330%)
|
||||
stream-browserify: 3.76 KB (0.296%)
|
||||
safe-buffer: 1.63 KB (0.129%)
|
||||
util-deprecate: 1.58 KB (0.124%)
|
||||
randombytes: 1.54 KB (0.121%)
|
||||
inherits: 753 B (0.0579%)
|
||||
@babel/runtime-corejs3: 71 B (0.00546%)
|
||||
<self>: 1020.83 KB (80.4%)
|
99
static/openapi/log.es-bundle-sizes.swagger-ui.txt
Normal file
99
static/openapi/log.es-bundle-sizes.swagger-ui.txt
Normal file
|
@ -0,0 +1,99 @@
|
|||
ramda: 361.65 KB (6.14%)
|
||||
core-js-pure: 300.89 KB (5.11%)
|
||||
ramda-adjunct: 255.42 KB (4.34%)
|
||||
lodash: 253.56 KB (4.30%)
|
||||
@swagger-api/apidom-ns-openapi-3-0: 204.6 KB (3.47%)
|
||||
autolinker: 203.32 KB (3.45%)
|
||||
swagger-client: 159.41 KB (2.71%)
|
||||
is-plain-object: 758 B (0.464%)
|
||||
<self>: 158.67 KB (99.5%)
|
||||
@swagger-api/apidom-ns-openapi-3-1: 154.72 KB (2.63%)
|
||||
immutable: 139.01 KB (2.36%)
|
||||
remarkable: 125.56 KB (2.13%)
|
||||
react-dom: 119.19 KB (2.02%)
|
||||
highlight.js: 111.85 KB (1.90%)
|
||||
js-yaml: 105.01 KB (1.78%)
|
||||
readable-stream: 96.66 KB (1.64%)
|
||||
@swagger-api/apidom-reference: 84.72 KB (1.44%)
|
||||
dompurify: 61.27 KB (1.04%)
|
||||
@swagger-api/apidom-ns-json-schema-draft-4: 58.11 KB (0.987%)
|
||||
minim: 57.35 KB (0.974%)
|
||||
buffer: 56.99 KB (0.967%)
|
||||
@swagger-api/apidom-core: 47.72 KB (0.810%)
|
||||
@swagger-api/apidom-ast: 44.47 KB (0.755%)
|
||||
react-redux: 43.7 KB (0.742%)
|
||||
react-syntax-highlighter: 38.01 KB (0.645%)
|
||||
url: 37.24 KB (0.632%)
|
||||
punycode: 14.33 KB (38.5%)
|
||||
<self>: 22.92 KB (61.5%)
|
||||
fast-json-patch: 31.89 KB (0.541%)
|
||||
redux: 27.59 KB (0.468%)
|
||||
qs: 26.61 KB (0.452%)
|
||||
sha.js: 18.57 KB (0.315%)
|
||||
object-inspect: 18.15 KB (0.308%)
|
||||
url-parse: 16.23 KB (0.276%)
|
||||
events: 14.54 KB (0.247%)
|
||||
cross-fetch: 14.31 KB (0.243%)
|
||||
tslib: 14.21 KB (0.241%)
|
||||
@babel/runtime-corejs3: 13.24 KB (0.225%)
|
||||
get-intrinsic: 13.01 KB (0.221%)
|
||||
reselect: 12.51 KB (0.212%)
|
||||
zenscroll: 12.31 KB (0.209%)
|
||||
react-debounce-input: 11.95 KB (0.203%)
|
||||
react-immutable-proptypes: 11.82 KB (0.201%)
|
||||
ret: 10.82 KB (0.184%)
|
||||
lodash.debounce: 10.53 KB (0.179%)
|
||||
unraw: 10.27 KB (0.174%)
|
||||
string_decoder: 9.24 KB (0.157%)
|
||||
short-unique-id: 8.29 KB (0.141%)
|
||||
xml: 7.39 KB (0.125%)
|
||||
react-copy-to-clipboard: 7.33 KB (0.124%)
|
||||
traverse: 7.15 KB (0.121%)
|
||||
react: 6.48 KB (0.110%)
|
||||
@babel/runtime: 6.29 KB (0.107%)
|
||||
randexp: 6.15 KB (0.104%)
|
||||
react-immutable-pure-component: 6.01 KB (0.102%)
|
||||
redux-immutable: 5.43 KB (0.0922%)
|
||||
process: 5.29 KB (0.0898%)
|
||||
cookie: 5.1 KB (0.0866%)
|
||||
scheduler: 4.91 KB (0.0834%)
|
||||
drange: 4.8 KB (0.0815%)
|
||||
lowlight: 4.42 KB (0.0751%)
|
||||
deep-extend: 4.19 KB (0.0712%)
|
||||
deepmerge: 3.95 KB (0.0671%)
|
||||
base64-js: 3.84 KB (0.0652%)
|
||||
stream-browserify: 3.76 KB (0.0638%)
|
||||
@swagger-api/apidom-json-pointer: 3.68 KB (0.0625%)
|
||||
side-channel: 3.31 KB (0.0562%)
|
||||
copy-to-clipboard: 3.29 KB (0.0558%)
|
||||
format: 3.26 KB (0.0553%)
|
||||
stampit: 3.16 KB (0.0536%)
|
||||
css.escape: 3.08 KB (0.0523%)
|
||||
serialize-error: 2.93 KB (0.0497%)
|
||||
hoist-non-react-statics: 2.68 KB (0.0455%)
|
||||
prop-types: 2.6 KB (0.0441%)
|
||||
use-sync-external-store: 2.59 KB (0.0440%)
|
||||
querystringify: 2.5 KB (0.0425%)
|
||||
react-is: 2.48 KB (0.0422%)
|
||||
xml-but-prettier: 2.17 KB (0.0368%)
|
||||
has-symbols: 2.13 KB (0.0362%)
|
||||
ieee754: 2.1 KB (0.0357%)
|
||||
object-assign: 2.06 KB (0.0349%)
|
||||
call-bind: 1.68 KB (0.0285%)
|
||||
safe-buffer: 1.63 KB (0.0277%)
|
||||
util-deprecate: 1.58 KB (0.0268%)
|
||||
function-bind: 1.55 KB (0.0263%)
|
||||
randombytes: 1.54 KB (0.0261%)
|
||||
js-file-download: 1.52 KB (0.0258%)
|
||||
classnames: 1.38 KB (0.0235%)
|
||||
@braintree/sanitize-url: 1.38 KB (0.0234%)
|
||||
repeat-string: 1.18 KB (0.0201%)
|
||||
toggle-selection: 780 B (0.0129%)
|
||||
inherits: 753 B (0.0125%)
|
||||
requires-port: 753 B (0.0125%)
|
||||
fault: 691 B (0.0115%)
|
||||
formdata-node: 259 B (0.00429%)
|
||||
has-proto: 197 B (0.00327%)
|
||||
has: 129 B (0.00214%)
|
||||
object-inspect|.: 15 B (0.000249%)
|
||||
<self>: 2.26 MB (39.2%)
|
|
@ -13,7 +13,7 @@
|
|||
var isValid, qp, arr;
|
||||
|
||||
if (/code|token|error/.test(window.location.hash)) {
|
||||
qp = window.location.hash.substring(1);
|
||||
qp = window.location.hash.substring(1).replace('?', '&');
|
||||
} else {
|
||||
qp = location.search.substring(1);
|
||||
}
|
||||
|
@ -38,7 +38,7 @@
|
|||
authId: oauth2.auth.name,
|
||||
source: "auth",
|
||||
level: "warning",
|
||||
message: "Authorization may be unsafe, passed state was changed in server Passed state wasn't returned from auth server"
|
||||
message: "Authorization may be unsafe, passed state was changed in server. The passed state wasn't returned from auth server."
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -58,7 +58,7 @@
|
|||
authId: oauth2.auth.name,
|
||||
source: "auth",
|
||||
level: "error",
|
||||
message: oauthErrorMsg || "[Authorization failed]: no accessCode received from the server"
|
||||
message: oauthErrorMsg || "[Authorization failed]: no accessCode received from the server."
|
||||
});
|
||||
}
|
||||
} else {
|
||||
|
@ -67,9 +67,13 @@
|
|||
window.close();
|
||||
}
|
||||
|
||||
window.addEventListener('DOMContentLoaded', function () {
|
||||
run();
|
||||
});
|
||||
if (document.readyState !== 'loading') {
|
||||
run();
|
||||
} else {
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
run();
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
20
static/openapi/swagger-initializer.js
Normal file
20
static/openapi/swagger-initializer.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
window.onload = function() {
|
||||
//<editor-fold desc="Changeable Configuration Block">
|
||||
|
||||
// the following lines will be replaced by docker/configurator, when it runs in a docker-container
|
||||
window.ui = SwaggerUIBundle({
|
||||
url: "https://petstore.swagger.io/v2/swagger.json",
|
||||
dom_id: '#swagger-ui',
|
||||
deepLinking: true,
|
||||
presets: [
|
||||
SwaggerUIBundle.presets.apis,
|
||||
SwaggerUIStandalonePreset
|
||||
],
|
||||
plugins: [
|
||||
SwaggerUIBundle.plugins.DownloadUrl
|
||||
],
|
||||
layout: "StandaloneLayout"
|
||||
});
|
||||
|
||||
//</editor-fold>
|
||||
};
|
File diff suppressed because one or more lines are too long
138
static/openapi/swagger-ui-bundle.js.LICENSE.txt
Normal file
138
static/openapi/swagger-ui-bundle.js.LICENSE.txt
Normal file
|
@ -0,0 +1,138 @@
|
|||
/*
|
||||
object-assign
|
||||
(c) Sindre Sorhus
|
||||
@license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
Copyright (c) 2018 Jed Watson.
|
||||
Licensed under the MIT License (MIT), see
|
||||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*!
|
||||
* @description Recursive object extending
|
||||
* @author Viacheslav Lotsmanov <lotsmanov89@gmail.com>
|
||||
* @license MIT
|
||||
*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2013-2018 Viacheslav Lotsmanov
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <https://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
* cookie
|
||||
* Copyright(c) 2012-2014 Roman Shtylman
|
||||
* Copyright(c) 2015 Douglas Christopher Wilson
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
/*!
|
||||
* https://github.com/Starcounter-Jack/JSON-Patch
|
||||
* (c) 2017-2021 Joachim Wester
|
||||
* MIT license
|
||||
*/
|
||||
|
||||
/*!
|
||||
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
||||
*
|
||||
* Copyright (c) 2014-2017, Jon Schlinkert.
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* repeat-string <https://github.com/jonschlinkert/repeat-string>
|
||||
*
|
||||
* Copyright (c) 2014-2015, Jon Schlinkert.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
|
||||
/*! @license DOMPurify 3.0.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.3/LICENSE */
|
||||
|
||||
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
||||
|
||||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
|
||||
|
||||
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* use-sync-external-store-shim.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* use-sync-external-store-shim/with-selector.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v0.20.2
|
||||
* scheduler.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react-dom.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react-is.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
35
static/openapi/swagger-ui-es-bundle-core.js.LICENSE.txt
Normal file
35
static/openapi/swagger-ui-es-bundle-core.js.LICENSE.txt
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*!
|
||||
* @description Recursive object extending
|
||||
* @author Viacheslav Lotsmanov <lotsmanov89@gmail.com>
|
||||
* @license MIT
|
||||
*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2013-2018 Viacheslav Lotsmanov
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <https://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
138
static/openapi/swagger-ui-es-bundle.js.LICENSE.txt
Normal file
138
static/openapi/swagger-ui-es-bundle.js.LICENSE.txt
Normal file
|
@ -0,0 +1,138 @@
|
|||
/*
|
||||
object-assign
|
||||
(c) Sindre Sorhus
|
||||
@license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
Copyright (c) 2018 Jed Watson.
|
||||
Licensed under the MIT License (MIT), see
|
||||
http://jedwatson.github.io/classnames
|
||||
*/
|
||||
|
||||
/*!
|
||||
* @description Recursive object extending
|
||||
* @author Viacheslav Lotsmanov <lotsmanov89@gmail.com>
|
||||
* @license MIT
|
||||
*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2013-2018 Viacheslav Lotsmanov
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <https://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
* cookie
|
||||
* Copyright(c) 2012-2014 Roman Shtylman
|
||||
* Copyright(c) 2015 Douglas Christopher Wilson
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
/*!
|
||||
* https://github.com/Starcounter-Jack/JSON-Patch
|
||||
* (c) 2017-2021 Joachim Wester
|
||||
* MIT license
|
||||
*/
|
||||
|
||||
/*!
|
||||
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
||||
*
|
||||
* Copyright (c) 2014-2017, Jon Schlinkert.
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* repeat-string <https://github.com/jonschlinkert/repeat-string>
|
||||
*
|
||||
* Copyright (c) 2014-2015, Jon Schlinkert.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
|
||||
/*! @license DOMPurify 3.0.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.3/LICENSE */
|
||||
|
||||
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
||||
|
||||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
|
||||
|
||||
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* use-sync-external-store-shim.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @license React
|
||||
* use-sync-external-store-shim/with-selector.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v0.20.2
|
||||
* scheduler.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react-dom.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react-is.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
27
static/openapi/swagger-ui-standalone-preset.js.LICENSE.txt
Normal file
27
static/openapi/swagger-ui-standalone-preset.js.LICENSE.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
object-assign
|
||||
(c) Sindre Sorhus
|
||||
@license MIT
|
||||
*/
|
||||
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <https://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
|
||||
|
||||
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/** @license React v17.0.2
|
||||
* react.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue