This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git
The following commit(s) were added to refs/heads/master by this push:
new 99964f4075 ISIS-3291: Bump swagger-ui 3.24.3 -> 4.15.5
99964f4075 is described below
commit 99964f407566a05f106a1a7e867c26530202baad
Author: Andi Huber <[email protected]>
AuthorDate: Tue Nov 22 11:03:04 2022 +0100
ISIS-3291: Bump swagger-ui 3.24.3 -> 4.15.5
---
.../static/swagger-ui/index-ORIG-3.24.3.html | 60 ---------
.../static/swagger-ui/index-ORIG-4.15.5.html | 19 +++
.../src/main/resources/static/swagger-ui/index.css | 16 +++
.../static/swagger-ui/oauth2-redirect.html | 41 ++++---
.../static/swagger-ui/swagger-initializer.js | 20 +++
.../static/swagger-ui/swagger-ui-bundle.js | 135 +--------------------
.../static/swagger-ui/swagger-ui-bundle.js.map | 2 +-
.../static/swagger-ui/swagger-ui-es-bundle-core.js | 3 +
.../swagger-ui/swagger-ui-es-bundle-core.js.map | 1 +
.../static/swagger-ui/swagger-ui-es-bundle.js | 3 +
.../static/swagger-ui/swagger-ui-es-bundle.js.map | 1 +
.../swagger-ui/swagger-ui-standalone-preset.js | 23 +---
.../swagger-ui/swagger-ui-standalone-preset.js.map | 2 +-
.../resources/static/swagger-ui/swagger-ui.css | 3 +-
.../resources/static/swagger-ui/swagger-ui.css.map | 2 +-
.../main/resources/static/swagger-ui/swagger-ui.js | 9 +-
.../resources/static/swagger-ui/swagger-ui.js.map | 2 +-
.../src/main/resources/swagger-ui/index.thtml | 4 +-
18 files changed, 102 insertions(+), 244 deletions(-)
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index-ORIG-3.24.3.html
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index-ORIG-3.24.3.html
deleted file mode 100644
index 32169e3613..0000000000
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index-ORIG-3.24.3.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!-- HTML for static distribution bundle build -->
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <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>
- </head>
-
- <body>
- <div id="swagger-ui"></div>
-
- <script src="./swagger-ui-bundle.js"> </script>
- <script src="./swagger-ui-standalone-preset.js"> </script>
- <script>
- window.onload = function() {
- // Begin Swagger UI call region
- const 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"
- })
- // End Swagger UI call region
-
- window.ui = ui
- }
- </script>
- </body>
-</html>
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index-ORIG-4.15.5.html
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index-ORIG-4.15.5.html
new file mode 100644
index 0000000000..84ae62d3da
--- /dev/null
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index-ORIG-4.15.5.html
@@ -0,0 +1,19 @@
+<!-- HTML for static distribution bundle build -->
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <title>Swagger UI</title>
+ <link rel="stylesheet" type="text/css" href="./swagger-ui.css" />
+ <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>
+</html>
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index.css
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index.css
new file mode 100644
index 0000000000..f2376fdaa8
--- /dev/null
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/index.css
@@ -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;
+}
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/oauth2-redirect.html
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/oauth2-redirect.html
index a013fc82ee..5640917181 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/oauth2-redirect.html
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/oauth2-redirect.html
@@ -1,9 +1,9 @@
<!doctype html>
<html lang="en-US">
-<title>Swagger UI: OAuth2 Redirect</title>
-<body onload="run()">
-</body>
-</html>
+<head>
+ <title>Swagger UI: OAuth2 Redirect</title>
+</head>
+<body>
<script>
'use strict';
function run () {
@@ -13,31 +13,32 @@
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);
}
- arr = qp.split("&")
- arr.forEach(function (v,i,_arr) { _arr[i] = '"' + v.replace('=',
'":"') + '"';})
+ arr = qp.split("&");
+ arr.forEach(function (v,i,_arr) { _arr[i] = '"' + v.replace('=',
'":"') + '"';});
qp = qp ? JSON.parse('{' + arr.join() + '}',
function (key, value) {
- return key === "" ? value : decodeURIComponent(value)
+ return key === "" ? value : decodeURIComponent(value);
}
- ) : {}
+ ) : {};
- isValid = qp.state === sentState
+ isValid = qp.state === sentState;
if ((
- oauth2.auth.schema.get("flow") === "accessCode"||
- oauth2.auth.schema.get("flow") === "authorizationCode"
+ oauth2.auth.schema.get("flow") === "accessCode" ||
+ oauth2.auth.schema.get("flow") === "authorizationCode" ||
+ oauth2.auth.schema.get("flow") === "authorization_code"
) && !oauth2.auth.code) {
if (!isValid) {
oauth2.errCb({
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."
});
}
@@ -46,7 +47,7 @@
oauth2.auth.code = qp.code;
oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
} else {
- let oauthErrorMsg
+ let oauthErrorMsg;
if (qp.error) {
oauthErrorMsg = "["+qp.error+"]: " +
(qp.error_description ? qp.error_description+ ". " :
"no accessCode received from the server. ") +
@@ -57,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 {
@@ -65,4 +66,14 @@
}
window.close();
}
+
+ if (document.readyState !== 'loading') {
+ run();
+ } else {
+ document.addEventListener('DOMContentLoaded', function () {
+ run();
+ });
+ }
</script>
+</body>
+</html>
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-initializer.js
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-initializer.js
new file mode 100644
index 0000000000..8ea0ea3afc
--- /dev/null
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-initializer.js
@@ -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>
+};
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-bundle.js
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-bundle.js
index 559df3caf2..763a116685 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-bundle.js
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-bundle.js
@@ -1,134 +1,3 @@
-!function(e,t){"object"==typeof exports&&"object"==typeof
module?module.exports=t(function(){try{return
require("esprima")}catch(e){}}()):"function"==typeof
define&&define.amd?define(["esprima"],t):"object"==typeof
exports?exports.SwaggerUIBundle=t(function(){try{return
require("esprima")}catch(e){}}()):e.SwaggerUIBundle=t(e.esprima)}(window,function(e){return
function(e){var t={};function n(r){if(t[r])return t[r].exports;var
o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.ex [...]
-/*
-object-assign
-(c) Sindre Sorhus
-@license MIT
-*/var
r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function
a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null
or undefined");return
Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new
String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var
t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){ret
[...]
-/*!
- Copyright (c) 2017 Jed Watson.
- Licensed under the MIT License (MIT), see
- http://jedwatson.github.io/classnames
-*/
-/*!
- Copyright (c) 2017 Jed Watson.
- Licensed under the MIT License (MIT), see
- http://jedwatson.github.io/classnames
-*/
-!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var
e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof
r;if("string"===i||"number"===i)e.push(r);else
if(Array.isArray(r)&&r.length){var a=o.apply(null,r);a&&e.push(a)}else
if("object"===i)for(var s in r)n.call(r,s)&&r[s]&&e.push(s)}}return e.join("
")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return
o}.apply(t,[]))||(e.exports=r)}()},function(e,t,n){e.exports=n(765)},function(e,t,n){e.
[...]
-/*!
- * The buffer module from node.js, for the browser.
- *
- * @author Feross Aboukhadijeh <[email protected]> <http://feross.org>
- * @license MIT
- */
-var r=n(569),o=n(570),i=n(355);function a(){return
u.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(e,t){if(a()<t)throw new
RangeError("Invalid typed array length");return u.TYPED_ARRAY_SUPPORT?(e=new
Uint8Array(t)).__proto__=u.prototype:(null===e&&(e=new
u(t)),e.length=t),e}function u(e,t,n){if(!(u.TYPED_ARRAY_SUPPORT||this
instanceof u))return new u(e,t,n);if("number"==typeof e){if("string"==typeof
t)throw new Error("If encoding is specified then the first argument must be a
stri [...]
-/*!
- * @description Recursive object extending
- * @author Viacheslav Lotsmanov <[email protected]>
- * @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.
- */
-function n(e){return e instanceof t||e instanceof Date||e instanceof
RegExp}function r(e){if(e instanceof t){var n=t.alloc?t.alloc(e.length):new
t(e.length);return e.copy(n),n}if(e instanceof Date)return new
Date(e.getTime());if(e instanceof RegExp)return new RegExp(e);throw new
Error("Unexpected situation")}function o(e){var t=[];return
e.forEach(function(e,i){"object"==typeof
e&&null!==e?Array.isArray(e)?t[i]=o(e):n(e)?t[i]=r(e):t[i]=a({},e):t[i]=e}),t}function
i(e,t){return"__proto__" [...]
-/**
- * Checks if an event is supported in the current execution environment.
- *
- * NOTE: This will not work correctly for non-generic events such as `change`,
- * `reset`, `load`, `error`, and `select`.
- *
- * Borrows from Modernizr.
- *
- * @param {string} eventNameSuffix Event name, e.g. "click".
- * @param {?boolean} capture Check if the capture phase is supported.
- * @return {boolean} True if the event is supported.
- * @internal
- * @license Modernizr 3.0.0pre (Custom Build) | MIT
- */,e.exports=function(e,t){if(!o.canUseDOM||t&&!("addEventListener"in
document))return!1;var n="on"+e,i=n in document;if(!i){var
a=document.createElement("div");a.setAttribute(n,"return;"),i="function"==typeof
a[n]}return!i&&r&&"wheel"===e&&(i=document.implementation.hasFeature("Events.wheel","3.0")),i}},function(e,t,n){"use
strict";var
r={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function
o(e){var t=this.nativeEvent;if(t.getModifierState)return t.getModifierState(
[...]
-/*!
- * https://github.com/Starcounter-Jack/JSON-Patch
- * (c) 2017 Joachim Wester
- * MIT license
- */
-var n=this&&this.__extends||function(e,t){for(var n in
t)t.hasOwnProperty(n)&&(e[n]=t[n]);function
r(){this.constructor=e}e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new
r)},r=Object.prototype.hasOwnProperty;function o(e,t){return
r.call(e,t)}function i(e){if(Array.isArray(e)){for(var t=new
Array(e.length),n=0;n<t.length;n++)t[n]=""+n;return t}if(Object.keys)return
Object.keys(e);t=[];for(var r in e)o(e,r)&&t.push(r);return t}function
a(e){return-1===e.indexOf("/")&&-1 [...]
"!="
"[e]()}),u=o[e]=s?t(p):a[e];n&&(o[n]=u),r(r.P+r.F*s,"String",o)},p=l.trim=function(e,t){return
e=String(o(e)),1&t&&(e=e.replace(u,"")),2&t&&(e=e.replace(c,"")),e};e.exports=l},function(e,t){e.exports="\t\n\v\f\r
\u2028\u2029\ufeff"},function(e,t,n){"use strict";var
r=n(35),o=n(201)(!1);r(r.P,"String",{codePointAt:function(e){return
o(this,e)}})},function(e,t,n){"use strict";var
r=n(35),o=n(74),i=n(206),a="".endsWith;r(r.P+r.F*n(207)("endsWith"),"String",{endsWith:function
[...]
-/** @license React v16.8.6
- * 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.
- */Object.defineProperty(t,"__esModule",{value:!0});var r="function"==typeof
Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,i=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):60108,u=r?Symbol.for("react.profiler"):60114,c=r?Symbol.for("react.provider"):60109,l=r?Symbol.for("react.context"):60110,p=r?Symbol.for("react.async_mode"):60111,f=r?Symbol.for("react.concurrent_mode"):60111,h=r?Symbol.for("react.forward_ref"):6
[...]
":95===e?" ":76===e?"\u2028":80===e?"\u2029":""}function A(e){return
e<=65535?String.fromCharCode(e):String.fromCharCode(55296+(e-65536>>10),56320+(e-65536&1023))}for(var
T=new Array(256),j=new
Array(256),P=0;P<256;P++)T[P]=O(P)?1:0,j[P]=O(P);function
I(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||s,this.onWarning=t.onWarning||null,this.legacy=t.legacy||!1,this.json=t.json||!1,this.listener=t.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typ
[...]
\u2028\u2029".indexOf(this.buffer.charAt(o-1));)if(o-=1,this.position-o>t/2-1){n="
... ",o+=5;break}for(i="",a=this.position;a<this.buffer.length&&-1==="\0\r\n
\u2028\u2029".indexOf(this.buffer.charAt(a));)if((a+=1)-this.position>t/2-1){i="
... ",a-=5;break}return s=this.buffer.slice(o,a),r.repeat("
",e)+n+s+i+"\n"+r.repeat("
",e+this.position-o+n.length)+"^"},o.prototype.toString=function(e){var
t,n="";return this.name&&(n+='in "'+this.name+'" '),n+="at line
"+(this.line+1)+", column
"+(this.column+1),e||(t=this.getSnippet())&&(n+=":\n"+t),n},e.exports=o},function(e,t,n){"use
strict";var r=n(31);e.exports=new r("tag:yaml.org,2002:str",{kind:"sc [...]
-/*!
- * https://github.com/Starcounter-Jack/JSON-Patch
- * (c) 2017 Joachim Wester
- * MIT license
- */
-var
r=n(267),o=n(456),i=n(456);t.applyOperation=i.applyOperation,t.applyPatch=i.applyPatch,t.applyReducer=i.applyReducer,t.getValueByPointer=i.getValueByPointer,t.validate=i.validate,t.validator=i.validator;var
a=n(267);t.JsonPatchError=a.PatchError,t.deepClone=a._deepClone,t.escapePathComponent=a.escapePathComponent,t.unescapePathComponent=a.unescapePathComponent;var
s=new WeakMap,u=function(e){this.observers=new
Map,this.obj=e},c=function(e,t){this.callback=e,this.observer=t};function [...]
-/*!
- * @description Recursive object extending
- * @author Viacheslav Lotsmanov <[email protected]>
- * @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.
- */
-function n(e){return e instanceof t||e instanceof Date||e instanceof
RegExp}function r(e){if(e instanceof t){var n=t.alloc?t.alloc(e.length):new
t(e.length);return e.copy(n),n}if(e instanceof Date)return new
Date(e.getTime());if(e instanceof RegExp)return new RegExp(e);throw new
Error("Unexpected situation")}function o(e){var t=[];return
e.forEach(function(e,i){"object"==typeof
e&&null!==e?Array.isArray(e)?t[i]=o(e):n(e)?t[i]=r(e):t[i]=a({},e):t[i]=e}),t}function
i(e,t){return"__proto__" [...]
-/*!
- * cookie
- * Copyright(c) 2012-2014 Roman Shtylman
- * Copyright(c) 2015 Douglas Christopher Wilson
- * MIT Licensed
- */t.parse=function(e,t){if("string"!=typeof e)throw new TypeError("argument
str must be a string");for(var
n={},o=t||{},a=e.split(i),u=o.decode||r,c=0;c<a.length;c++){var
l=a[c],p=l.indexOf("=");if(!(p<0)){var
f=l.substr(0,p).trim(),h=l.substr(++p,l.length).trim();'"'==h[0]&&(h=h.slice(1,-1)),null==n[f]&&(n[f]=s(h,u))}}return
n},t.serialize=function(e,t,n){var r=n||{},i=r.encode||o;if("function"!=typeof
i)throw new TypeError("option encode is invalid");if(!a.test(e))throw new
TypeError( [...]
-/*!
- * repeat-string <https://github.com/jonschlinkert/repeat-string>
- *
- * Copyright (c) 2014-2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */var r,o="";e.exports=function(e,t){if("string"!=typeof e)throw new
TypeError("expected a string");if(1===t)return e;if(2===t)return e+e;var
n=e.length*t;if(r!==e||void 0===r)r=e,o="";else if(o.length>=n)return
o.substr(0,n);for(;n>o.length&&t>1;)1&t&&(o+=e),t>>=1,e+=e;return
o=(o+=e).substr(0,n)}},function(e,t,n){"use strict";var
r=n(39).assign,o=n(981),i=n(983),a=n(994),s=n(1009),u=n(190),c={default:n(1028),full:n(1029),commonmark:n(1030)};function
l(e,t,n){this.src=t,this.env=n,this [...]
-/*!
- * Autolinker.js
- * 0.28.1
- *
- * Copyright(c) 2016 Gregory Jacobs <[email protected]>
- * MIT License
- *
- * https://github.com/gregjacobs/Autolinker.js
- */o=[],void 0===(i="function"==typeof(r=function(){var
e,t,n,r,o,i,a,s=function(e){e=e||{},this.version=s.version,this.urls=this.normalizeUrlsCfg(e.urls),this.email="boolean"!=typeof
e.email||e.email,this.twitter="boolean"!=typeof
e.twitter||e.twitter,this.phone="boolean"!=typeof
e.phone||e.phone,this.hashtag=e.hashtag||!1,this.newWindow="boolean"!=typeof
e.newWindow||e.newWindow,this.stripPrefix="boolean"!=typeof
e.stripPrefix||e.stripPrefix;var t=this.hashtag;if(!1!==t&&"twitter"!==t& [...]
+/*! For license information please see swagger-ui-bundle.js.LICENSE.txt */
+!function(e,t){"object"==typeof exports&&"object"==typeof
module?module.exports=t():"function"==typeof
define&&define.amd?define([],t):"object"==typeof
exports?exports.SwaggerUIBundle=t():e.SwaggerUIBundle=t()}(this,(function(){return(()=>{var
e={17967:(e,t)=>{"use strict";t.N=void 0;var
r=/^([^\w]*)(javascript|data|vbscript)/im,n=/&#(\w+)(^\w|;)?/g,o=/[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim,a=/^([^:]+):/gm,i=[".","/"];t.N=function(e){var
t,s=(t=e||"",t.replace(n,(function(e, [...]
"!=="
"[e]()||n&&a[e].name!==e}))}},74853:(e,t,r)=>{var
n=r(95329),o=r(48219),a=r(85803),i=r(73483),s=n("".replace),l="["+i+"]",u=RegExp("^"+l+l+"*"),c=RegExp(l+l+"*$"),p=function(e){return
function(t){var r=a(o(t));return
1&e&&(r=s(r,u,"")),2&e&&(r=s(r,c,"")),r}};e.exports={start:p(1),end:p(2),trim:p(3)}},42941:(e,t,r)=>{var
n,o,a,i,s=r(21899),l=r(79730),u=r(86843),c=r(57475),p=r(90953),f=r(95981),h=r(15463),d=r(93765),m=r(61333),g=r(22749),v=r(6049),y=s.setImmediate,b=s.clearImmediate,w=s.pr
[...]
":95===e?" ":76===e?"\u2028":80===e?"\u2029":""}function oe(e){return
e<=65535?String.fromCharCode(e):String.fromCharCode(55296+(e-65536>>10),56320+(e-65536&1023))}for(var
ae=new Array(256),ie=new
Array(256),se=0;se<256;se++)ae[se]=ne(se)?1:0,ie[se]=ne(se);function
le(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||$,this.onWarning=t.onWarning||null,this.legacy=t.legacy||!1,this.json=t.json||!1,this.listener=t.listener||null,this.implicitTypes=this.schema.compiledIm
[...]
//# sourceMappingURL=swagger-ui-bundle.js.map
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-bundle.js.map
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-bundle.js.map
index 0110f2031f..e09bdec65e 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-bundle.js.map
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-bundle.js.map
@@ -1 +1 @@
-{"version":3,"sources":["webpack://SwaggerUIBundle/webpack/universalModuleDefinition","webpack://SwaggerUIBundle/webpack/bootstrap","webpack://SwaggerUIBundle/./node_modules/react/react.js","webpack://SwaggerUIBundle/./node_modules/immutable/dist/immutable.js","webpack://SwaggerUIBundle/./node_modules/@babel/runtime-corejs2/helpers/defineProperty.js","webpack://SwaggerUIBundle/./src/core/utils.js","webpack://SwaggerUIBundle/./node_modules/@babel/runtime-corejs2/helpers/classCallCheck.js"
[...]
\ No newline at end of file
+{"version":3,"file":"swagger-ui-bundle.js","mappings":";CAAA,SAA2CA,EAAMC,GAC1B,iBAAZC,SAA0C,iBAAXC,OACxCA,OAAOD,QAAUD,IACQ,mBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIH,GACe,iBAAZC,QACdA,QAAyB,gBAAID,IAE7BD,EAAsB,gBAAIC,GAC3B,CATD,CASGK,MAAM,WACT,8CCRAJ,EAAQ,OAAc,EACtB,IAAIK,EAAuB,wCACvBC,EAAoB,mBACpBC,EAAsB,qDACtBC,EAAiB,cACjBC,EAA0B,CAAC,IAAK,KA8BpCT,EAAQ,EApBR,SAAqBU,GACjB,IAN0BC,EAMtBC,GANsBD,EAMcD,GAAO,GALxCC,EAAIE,QAAQP,GAAmB,SAAUQ,EAAOC,GACnD,OAAOC,OAAOC,aAAaF,EAC/B,KAIKF,QAAQN,EAAqB,IAC
[...]
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle-core.js
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle-core.js
new file mode 100644
index 0000000000..51f0bc5249
--- /dev/null
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle-core.js
@@ -0,0 +1,3 @@
+/*! For license information please see
swagger-ui-es-bundle-core.js.LICENSE.txt */
+import*as e from"react-immutable-pure-component";import*as t
from"remarkable/linkify";import*as r from"dompurify";import*as a
from"zenscroll";import*as n from"lodash/reduce";import*as l
from"@babel/runtime-corejs3/core-js-stable/instance/repeat";import*as s
from"@babel/runtime-corejs3/core-js-stable/instance/fill";import*as o
from"lodash/zipObject";import*as i from"randexp";import*as u
from"lodash/isEmpty";import*as c
from"@babel/runtime-corejs3/core-js-stable/promise";import*as d from"@ [...]
+//# sourceMappingURL=swagger-ui-es-bundle-core.js.map
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle-core.js.map
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle-core.js.map
new file mode 100644
index 0000000000..91e9e1fe13
--- /dev/null
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle-core.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"swagger-ui-es-bundle-core.js","mappings":";+uKAEA,MAAM,EAFEA,KAAO,IAAIC,EAAI,CAAC,EAAgC,OAA7BC,EAAoBC,EAAEF,EAAGD,GAAWC,CAAC,EAE3BA,CAAE,CAAE,QAAa,IAAMG,EAA6E,kCCG1H,MAAMC,UAAcC,EAAAA,QAAwB,cAAD,uDAiBxCC,IAC0B,KAAnC,aAAAA,GAAG,KAAHA,EAAY,kBACRA,EAAIC,QAAQ,sBAAuB,KAEG,KAA1C,aAAAD,GAAG,KAAHA,EAAY,yBACRA,EAAIC,QAAQ,8BAA+B,SADpD,KAGD,kCAEeC,IACd,IAAI,cAAEC,GAAkBC,KAAKC,MAE7B,OAAOF,EAAcG,eAAeJ,EAAM,GAC3C,CAEDK,SACE,IAAI,aAAEC,EAAY,WAAEC,EAAU,cAAEN,EAAa,OAAEO,EAAM,SAAEC,EA
[...]
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle.js
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle.js
new file mode 100644
index 0000000000..45c9dfb1bc
--- /dev/null
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle.js
@@ -0,0 +1,3 @@
+/*! For license information please see swagger-ui-es-bundle.js.LICENSE.txt */
+(()=>{var e={17967:(e,t)=>{"use strict";t.N=void 0;var
r=/^([^\w]*)(javascript|data|vbscript)/im,n=/&#(\w+)(^\w|;)?/g,o=/[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim,a=/^([^:]+):/gm,i=[".","/"];t.N=function(e){var
t,s=(t=e||"",t.replace(n,(function(e,t){return
String.fromCharCode(t)}))).replace(o,"").trim();if(!s)return"about:blank";if(function(e){return
i.indexOf(e[0])>-1}(s))return s;var l=s.match(a);if(!l)return s;var
u=l[0];return r.test(u)?"about:blank":s}},53795:(e,t,r)=>{"u [...]
"!=="
"[e]()||n&&a[e].name!==e}))}},74853:(e,t,r)=>{var
n=r(95329),o=r(48219),a=r(85803),i=r(73483),s=n("".replace),l="["+i+"]",u=RegExp("^"+l+l+"*"),c=RegExp(l+l+"*$"),p=function(e){return
function(t){var r=a(o(t));return
1&e&&(r=s(r,u,"")),2&e&&(r=s(r,c,"")),r}};e.exports={start:p(1),end:p(2),trim:p(3)}},42941:(e,t,r)=>{var
n,o,a,i,s=r(21899),l=r(79730),u=r(86843),c=r(57475),p=r(90953),f=r(95981),h=r(15463),d=r(93765),m=r(61333),g=r(22749),v=r(6049),y=s.setImmediate,b=s.clearImmediate,w=s.pr
[...]
":95===e?" ":76===e?"\u2028":80===e?"\u2029":""}function oe(e){return
e<=65535?String.fromCharCode(e):String.fromCharCode(55296+(e-65536>>10),56320+(e-65536&1023))}for(var
ae=new Array(256),ie=new
Array(256),se=0;se<256;se++)ae[se]=ne(se)?1:0,ie[se]=ne(se);function
le(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||$,this.onWarning=t.onWarning||null,this.legacy=t.legacy||!1,this.json=t.json||!1,this.listener=t.listener||null,this.implicitTypes=this.schema.compiledIm
[...]
+//# sourceMappingURL=swagger-ui-es-bundle.js.map
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle.js.map
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle.js.map
new file mode 100644
index 0000000000..2e50d05ef4
--- /dev/null
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-es-bundle.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"swagger-ui-es-bundle.js","mappings":";wCAEAA,EAAQ,OAAc,EACtB,IAAIC,EAAuB,wCACvBC,EAAoB,mBACpBC,EAAsB,qDACtBC,EAAiB,cACjBC,EAA0B,CAAC,IAAK,KA8BpCL,EAAQ,EApBR,SAAqBM,GACjB,IAN0BC,EAMtBC,GANsBD,EAMcD,GAAO,GALxCC,EAAIE,QAAQP,GAAmB,SAAUQ,EAAOC,GACnD,OAAOC,OAAOC,aAAaF,EAC/B,KAIKF,QAAQN,EAAqB,IAC7BW,OACL,IAAKN,EACD,MAAO,cAEX,GAhBJ,SAAsCF,GAClC,OAAOD,EAAwBU,QAAQT,EAAI,KAAO,CACtD,CAcQU,CAA6BR,GAC7B,OAAOA,EAEX,IAAIS,EAAwBT,EAAaE,MAAMN,GAC/C,IAAKa,EACD,OAAOT,EAEX,IAAIU,EAAYD,EA
[...]
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-standalone-preset.js
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-standalone-preset.js
index 66f7007f74..73e257220f 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-standalone-preset.js
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-standalone-preset.js
@@ -1,22 +1,3 @@
-!function(t,e){"object"==typeof exports&&"object"==typeof
module?module.exports=e(function(){try{return
require("esprima")}catch(t){}}()):"function"==typeof
define&&define.amd?define(["esprima"],e):"object"==typeof
exports?exports.SwaggerUIStandalonePreset=e(function(){try{return
require("esprima")}catch(t){}}()):t.SwaggerUIStandalonePreset=e(t.esprima)}(window,function(t){return
function(t){var e={};function n(r){if(e[r])return e[r].exports;var
i=e[r]={i:r,l:!1,exports:{}};return t[r].c [...]
-/*
-object-assign
-(c) Sindre Sorhus
-@license MIT
-*/var
r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function
u(t){if(null==t)throw new TypeError("Object.assign cannot be called with null
or undefined");return
Object(t)}t.exports=function(){try{if(!Object.assign)return!1;var t=new
String("abc");if(t[5]="de","5"===Object.getOwnPropertyNames(t)[0])return!1;for(var
e={},n=0;n<10;n++)e["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(e).map(function(t){ret
[...]
-/*!
- * The buffer module from node.js, for the browser.
- *
- * @author Feross Aboukhadijeh <[email protected]> <http://feross.org>
- * @license MIT
- */
-var r=n(237),i=n(238),o=n(135);function u(){return
a.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(t,e){if(u()<e)throw new
RangeError("Invalid typed array length");return a.TYPED_ARRAY_SUPPORT?(t=new
Uint8Array(e)).__proto__=a.prototype:(null===t&&(t=new
a(e)),t.length=e),t}function a(t,e,n){if(!(a.TYPED_ARRAY_SUPPORT||this
instanceof a))return new a(t,e,n);if("number"==typeof t){if("string"==typeof
e)throw new Error("If encoding is specified then the first argument must be a
stri [...]
-/** @license React v16.8.6
- * 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.
- */Object.defineProperty(e,"__esModule",{value:!0});var r="function"==typeof
Symbol&&Symbol.for,i=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,u=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):60108,a=r?Symbol.for("react.profiler"):60114,c=r?Symbol.for("react.provider"):60109,f=r?Symbol.for("react.context"):60110,l=r?Symbol.for("react.async_mode"):60111,h=r?Symbol.for("react.concurrent_mode"):60111,p=r?Symbol.for("react.forward_ref"):6
[...]
":95===t?" ":76===t?"\u2028":80===t?"\u2029":""}function D(t){return
t<=65535?String.fromCharCode(t):String.fromCharCode(55296+(t-65536>>10),56320+(t-65536&1023))}for(var
I=new Array(256),E=new
Array(256),C=0;C<256;C++)I[C]=S(C)?1:0,E[C]=S(C);function
T(t,e){this.input=t,this.filename=e.filename||null,this.schema=e.schema||s,this.onWarning=e.onWarning||null,this.legacy=e.legacy||!1,this.json=e.json||!1,this.listener=e.listener||null,this.implicitTypes=this.schema.compiledImplicit,this.typ
[...]
\u2028\u2029".indexOf(this.buffer.charAt(i-1));)if(i-=1,this.position-i>e/2-1){n="
... ",i+=5;break}for(o="",u=this.position;u<this.buffer.length&&-1==="\0\r\n
\u2028\u2029".indexOf(this.buffer.charAt(u));)if((u+=1)-this.position>e/2-1){o="
... ",u-=5;break}return s=this.buffer.slice(i,u),r.repeat("
",t)+n+s+o+"\n"+r.repeat("
",t+this.position-i+n.length)+"^"},i.prototype.toString=function(t){var
e,n="";return this.name&&(n+='in "'+this.name+'" '),n+="at line
"+(this.line+1)+", column
"+(this.column+1),t||(e=this.getSnippet())&&(n+=":\n"+e),n},t.exports=i},function(t,e,n){"use
strict";var r=n(3);t.exports=new r("tag:yaml.org,2002:str",{kind:"sca [...]
+/*! For license information please see
swagger-ui-standalone-preset.js.LICENSE.txt */
+!function(t,e){"object"==typeof exports&&"object"==typeof
module?module.exports=e():"function"==typeof
define&&define.amd?define([],e):"object"==typeof
exports?exports.SwaggerUIStandalonePreset=e():t.SwaggerUIStandalonePreset=e()}(this,(function(){return(()=>{var
t={7967:(t,e)=>{"use strict";var
r=/^([^\w]*)(javascript|data|vbscript)/im,n=/&#(\w+)(^\w|;)?/g,i=/[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim,o=/^([^:]+):/gm,s=[".","/"]},9742:(t,e)=>{"use
strict";e.byteLength=function( [...]
"!=="
"[t]()||n&&o[t].name!==t}))}},4853:(t,e,r)=>{var
n=r(5329),i=r(8219),o=r(5803),s=r(3483),u=n("".replace),a="["+s+"]",c=RegExp("^"+a+a+"*"),f=RegExp(a+a+"*$"),l=function(t){return
function(e){var r=o(i(e));return
1&t&&(r=u(r,c,"")),2&t&&(r=u(r,f,"")),r}};t.exports={start:l(1),end:l(2),trim:l(3)}},9413:(t,e,r)=>{var
n=r(2435),i=Math.max,o=Math.min;t.exports=function(t,e){var r=n(t);return
r<0?i(r+e,0):o(r,e)}},4529:(t,e,r)=>{var
n=r(7026),i=r(8219);t.exports=function(t){return n(i(t))}},24 [...]
":95===t?" ":76===t?"\u2028":80===t?"\u2029":""}function ye(t){return
t<=65535?String.fromCharCode(t):String.fromCharCode(55296+(t-65536>>10),56320+(t-65536&1023))}for(var
ge=new Array(256),ve=new
Array(256),we=0;we<256;we++)ge[we]=de(we)?1:0,ve[we]=de(we);function
Me(t,e){this.input=t,this.filename=e.filename||null,this.schema=e.schema||ee,this.onWarning=e.onWarning||null,this.legacy=e.legacy||!1,this.json=e.json||!1,this.listener=e.listener||null,this.implicitTypes=this.schema.compiledI
[...]
//# sourceMappingURL=swagger-ui-standalone-preset.js.map
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-standalone-preset.js.map
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-standalone-preset.js.map
index 672eed8a27..82d6abf6d0 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-standalone-preset.js.map
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui-standalone-preset.js.map
@@ -1 +1 @@
-{"version":3,"sources":["webpack://SwaggerUIStandalonePreset/webpack/universalModuleDefinition","webpack://SwaggerUIStandalonePreset/webpack/bootstrap","webpack://SwaggerUIStandalonePreset/./node_modules/immutable/dist/immutable.js","webpack://SwaggerUIStandalonePreset/./node_modules/react/react.js","webpack://SwaggerUIStandalonePreset/./node_modules/@babel/runtime-corejs2/core-js/array/is-array.js","webpack://SwaggerUIStandalonePreset/./node_modules/js-yaml/lib/js-yaml/type.js","webpack
[...]
\ No newline at end of file
+{"version":3,"file":"swagger-ui-standalone-preset.js","mappings":";CAAA,SAA2CA,EAAMC,GAC1B,iBAAZC,SAA0C,iBAAXC,OACxCA,OAAOD,QAAUD,IACQ,mBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIH,GACe,iBAAZC,QACdA,QAAmC,0BAAID,IAEvCD,EAAgC,0BAAIC,GACrC,CATD,CASGK,MAAM,WACT,6CCPA,IAAIC,EAAuB,wCACvBC,EAAoB,mBACpBC,EAAsB,qDACtBC,EAAiB,cACjBC,EAA0B,CAAC,IAAK,gCCLpCT,EAAQU,WAuCR,SAAqBC,GACnB,IAAIC,EAAOC,EAAQF,GACfG,EAAWF,EAAK,GAChBG,EAAkBH,EAAK,GAC3B,OAAuC,GAA9BE,EAAWC,GAAuB,EAAKA,CAClD,EA3CAf,EAAQgB,YAiDR,SAAsBL,G
[...]
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.css
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.css
index c61e5a85f7..9de8b5df3d 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.css
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.css
@@ -1,4 +1,3 @@
-.swagger-ui{
- /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css
*/font-family:sans-serif;color:#3b4151}.swagger-ui
html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.swagger-ui
body{margin:0}.swagger-ui article,.swagger-ui aside,.swagger-ui
footer,.swagger-ui header,.swagger-ui nav,.swagger-ui
section{display:block}.swagger-ui h1{font-size:2em;margin:.67em 0}.swagger-ui
figcaption,.swagger-ui figure,.swagger-ui main{display:block}.swagger-ui figure
[...]
+.swagger-ui{color:#3b4151;font-family:sans-serif/*! normalize.css v7.0.0 | MIT
License | github.com/necolas/normalize.css */}.swagger-ui
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.15}.swagger-ui
body{margin:0}.swagger-ui article,.swagger-ui aside,.swagger-ui
footer,.swagger-ui header,.swagger-ui nav,.swagger-ui
section{display:block}.swagger-ui h1{font-size:2em;margin:.67em 0}.swagger-ui
figcaption,.swagger-ui figure,.swagger-ui main{display:block}.swagger [...]
/*# sourceMappingURL=swagger-ui.css.map*/
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.css.map
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.css.map
index 5f2d91ea4f..9739204577 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.css.map
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.css.map
@@ -1 +1 @@
-{"version":3,"sources":["webpack:///./src/style/main.scss","webpack:///./node_modules/tachyons-sass/scss/_normalize.scss","webpack:///./src/style/_type.scss","webpack:///main.scss","webpack:///./node_modules/tachyons-sass/scss/_debug-children.scss","webpack:///./node_modules/tachyons-sass/scss/_debug-grid.scss","webpack:///./node_modules/tachyons-sass/scss/_box-sizing.scss","webpack:///./node_modules/tachyons-sass/scss/_aspect-ratios.scss","webpack:///./node_modules/tachyons-sass/scss/_i
[...]
\ No newline at end of file
+{"version":3,"file":"swagger-ui.css","mappings":"AAAA,YCII,aCYU,CDdV,sBEKJ,4EDSc,CCEd,iBAEE,0BACA,8BAFA,gBAEA,CAUF,iBACE,SAOF,gHAME,cAQF,eACE,cACA,eAWF,2DAGE,cAOF,mBACE,gBAQF,eACE,uBACA,SACA,iBAQF,gBACE,gCACA,cAWF,cAEE,qCADA,4BACA,CAQF,wBACE,mBACA,0BACA,0EAOF,iCAEE,oBASA,kBATA,CAiBF,kDAGE,gCACA,cAOF,gBACE,kBAOF,iBACE,sBACA,WAOF,kBACE,cAQF,gCAEE,cACA,cACA,kBACA,wBAGF,gBACE,cAGF,gBACE,UAUF,oCAEE,qBAOF,kCACE,aACA,SAOF,gBACE,kBAOF,2BACE,gBAWF,kGAKE,uBACA,eACA,iBACA,SAQF,qCAEE,iBAQF,sCAEE,oBA
[...]
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.js
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.js
index e457ea5bd3..883c169abc 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.js
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.js
@@ -1,9 +1,2 @@
-!function(e,t){"object"==typeof exports&&"object"==typeof
module?module.exports=t():"function"==typeof
define&&define.amd?define([],t):"object"==typeof
exports?exports.SwaggerUICore=t():e.SwaggerUICore=t()}(window,function(){return
function(e){var t={};function n(r){if(t[r])return t[r].exports;var
o=t[r]={i:r,l:!1,exports:{}};return
e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return
n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=fu
[...]
"!="
"[e]()}),c=o[e]=u?t(p):i[e];n&&(o[n]=c),r(r.P+r.F*u,"String",o)},p=l.trim=function(e,t){return
e=String(o(e)),1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(s,"")),e};e.exports=l},function(e,t){e.exports="\t\n\v\f\r
\u2028\u2029\ufeff"},function(e,t,n){"use strict";var
r=n(29),o=n(137)(!1);r(r.P,"String",{codePointAt:function(e){return
o(this,e)}})},function(e,t,n){"use strict";var
r=n(29),o=n(55),a=n(142),i="".endsWith;r(r.P+r.F*n(143)("endsWith"),"String",{endsWith:function
[...]
-/*!
- * The buffer module from node.js, for the browser.
- *
- * @author Feross Aboukhadijeh <[email protected]> <http://feross.org>
- * @license MIT
- */
-var r=n(418),o=n(419),a=n(420);function i(){return
c.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function u(e,t){if(i()<t)throw new
RangeError("Invalid typed array length");return c.TYPED_ARRAY_SUPPORT?(e=new
Uint8Array(t)).__proto__=c.prototype:(null===e&&(e=new
c(t)),e.length=t),e}function c(e,t,n){if(!(c.TYPED_ARRAY_SUPPORT||this
instanceof c))return new c(e,t,n);if("number"==typeof e){if("string"==typeof
t)throw new Error("If encoding is specified then the first argument must be a
stri [...]
+!function(e,t){"object"==typeof exports&&"object"==typeof
module?module.exports=t():"function"==typeof
define&&define.amd?define([],t):"object"==typeof
exports?exports.SwaggerUICore=t():e.SwaggerUICore=t()}(this,(function(){return(()=>{var
e={6024:(e,t,r)=>{"use strict";r.d(t,{Z:()=>E});var
n=r(4250),s=r.n(n),a=r(1093),o=r.n(a),l=r(8493),i=r.n(l),c=r(3942),p=r.n(c),u=r(6689),d=r.n(u);const
m=require("react-immutable-pure-component");var
h=r.n(m),g=r(8082),f=r.n(g),y=r(580),v=r.n(y);class [...]
//# sourceMappingURL=swagger-ui.js.map
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.js.map
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.js.map
index 5071098fb9..703d37ab17 100644
---
a/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.js.map
+++
b/viewers/restfulobjects/viewer/src/main/resources/static/swagger-ui/swagger-ui.js.map
@@ -1 +1 @@
-{"version":3,"sources":["webpack://SwaggerUICore/webpack/universalModuleDefinition","webpack://SwaggerUICore/webpack/bootstrap","webpack://SwaggerUICore/external
\"react\"","webpack://SwaggerUICore/external
\"immutable\"","webpack://SwaggerUICore/./node_modules/@babel/runtime-corejs2/helpers/defineProperty.js","webpack://SwaggerUICore/./src/core/utils.js","webpack://SwaggerUICore/./node_modules/@babel/runtime-corejs2/helpers/classCallCheck.js","webpack://SwaggerUICore/./node_modules/@bab
[...]
\ No newline at end of file
+{"version":3,"file":"swagger-ui.js","mappings":"CAAA,SAA2CA,EAAMC,GAC1B,iBAAZC,SAA0C,iBAAXC,OACxCA,OAAOD,QAAUD,IACQ,mBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIH,GACe,iBAAZC,QACdA,QAAuB,cAAID,IAE3BD,EAAoB,cAAIC,GACzB,CATD,CASGK,MAAM,WACT,M,6JCVA,MAAM,EAA+BC,QAAQ,kC,kDCK9B,MAAMC,UAAcC,KAAwB,cAAD,6CAiBxCC,IAC0B,IAAnC,IAAAA,GAAG,KAAHA,EAAY,kBACRA,EAAIC,QAAQ,sBAAuB,KAEG,IAA1C,IAAAD,GAAG,KAAHA,EAAY,yBACRA,EAAIC,QAAQ,8BAA+B,SADpD,IAGD,yBAEeC,IACd,IAAI,cAAEC,GAAkBP,KAAKQ,MAE7B,OAAOD,EAAcE,eAAeH,EAAM,GA
[...]
\ No newline at end of file
diff --git
a/viewers/restfulobjects/viewer/src/main/resources/swagger-ui/index.thtml
b/viewers/restfulobjects/viewer/src/main/resources/swagger-ui/index.thtml
index ea39b68430..669c0d44c6 100644
--- a/viewers/restfulobjects/viewer/src/main/resources/swagger-ui/index.thtml
+++ b/viewers/restfulobjects/viewer/src/main/resources/swagger-ui/index.thtml
@@ -4,7 +4,8 @@
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
- <link rel="stylesheet" type="text/css" href="./swagger-ui.css" >
+ <link rel="stylesheet" type="text/css" href="./swagger-ui.css" />
+ <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"
/>
<style>
@@ -37,6 +38,7 @@
<script src="./swagger-ui-bundle.js"> </script>
<script src="./swagger-ui-standalone-preset.js"> </script>
+ <script src="./swagger-initializer.js" charset="UTF-8"> </script>
<script>
window.onload = function() {
// Begin Swagger UI call region