This is an automated email from the ASF dual-hosted git repository.

smolnar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git


The following commit(s) were added to refs/heads/master by this push:
     new eea698e7d KNOX-3116: Update swagger-ui to 5.29.0 (#1085)
eea698e7d is described below

commit eea698e7df408f965e25c7d268a63b475bf5b62a
Author: bonampak <[email protected]>
AuthorDate: Thu Sep 25 11:21:16 2025 +0200

    KNOX-3116: Update swagger-ui to 5.29.0 (#1085)
---
 .../main/resources/swagger/oauth2-redirect.html    | 70 +---------------------
 .../src/main/resources/swagger/oauth2-redirect.js  | 17 ++++++
 .../main/resources/swagger/swagger-ui-bundle.js    |  3 +-
 .../resources/swagger/swagger-ui-es-bundle-core.js |  2 +-
 .../main/resources/swagger/swagger-ui-es-bundle.js |  3 +-
 .../swagger/swagger-ui-standalone-preset.js        |  3 +-
 .../src/main/resources/swagger/swagger-ui.css      |  3 +-
 .../src/main/resources/swagger/swagger-ui.js       |  2 +-
 8 files changed, 24 insertions(+), 79 deletions(-)

diff --git a/gateway-openapi-ui/src/main/resources/swagger/oauth2-redirect.html 
b/gateway-openapi-ui/src/main/resources/swagger/oauth2-redirect.html
index 2d7a3807c..fd35b2977 100644
--- a/gateway-openapi-ui/src/main/resources/swagger/oauth2-redirect.html
+++ b/gateway-openapi-ui/src/main/resources/swagger/oauth2-redirect.html
@@ -14,75 +14,7 @@
 -->
 <!doctype html>
 <html lang="en-US">
-<head>
-    <title>Swagger UI: OAuth2 Redirect</title>
-</head>
 <body>
 </body>
 </html>
-<script>
-    'use strict';
-    function run () {
-        var oauth2 = window.opener.swaggerUIRedirectOauth2;
-        var sentState = oauth2.state;
-        var redirectUrl = oauth2.redirectUrl;
-        var isValid, qp, arr;
-
-        if (/code|token|error/.test(window.location.hash)) {
-            qp = window.location.hash.substring(1);
-        } else {
-            qp = location.search.substring(1);
-        }
-
-        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)
-                }
-        ) : {}
-
-        isValid = qp.state === sentState
-
-        if ((
-          oauth2.auth.schema.get("flow") === "accessCode"||
-          oauth2.auth.schema.get("flow") === "authorizationCode"
-        ) && !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"
-                });
-            }
-
-            if (qp.code) {
-                delete oauth2.state;
-                oauth2.auth.code = qp.code;
-                oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
-            } else {
-                let oauthErrorMsg
-                if (qp.error) {
-                    oauthErrorMsg = "["+qp.error+"]: " +
-                        (qp.error_description ? qp.error_description+ ". " : 
"no accessCode received from the server. ") +
-                        (qp.error_uri ? "More info: "+qp.error_uri : "");
-                }
-
-                oauth2.errCb({
-                    authId: oauth2.auth.name,
-                    source: "auth",
-                    level: "error",
-                    message: oauthErrorMsg || "[Authorization failed]: no 
accessCode received from the server"
-                });
-            }
-        } else {
-            oauth2.callback({auth: oauth2.auth, token: qp, isValid: isValid, 
redirectUrl: redirectUrl});
-        }
-        window.close();
-    }
-
-    window.addEventListener('DOMContentLoaded', function () {
-      run();
-    });
-</script>
+<script src="oauth2-redirect.js"></script>
\ No newline at end of file
diff --git a/gateway-openapi-ui/src/main/resources/swagger/oauth2-redirect.js 
b/gateway-openapi-ui/src/main/resources/swagger/oauth2-redirect.js
new file mode 100644
index 000000000..47da5d66c
--- /dev/null
+++ b/gateway-openapi-ui/src/main/resources/swagger/oauth2-redirect.js
@@ -0,0 +1,17 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+"use strict";function run(){var 
e,r,t,a=window.opener.swaggerUIRedirectOauth2,o=a.state,n=a.redirectUrl;if((t=(r=/code|token|error/.test(window.location.hash)?window.location.hash.substring(1).replace("?","&"):location.search.substring(1)).split("&")).forEach((function(e,r,t){t[r]='"'+e.replace("=",'":"')+'"'})),e=(r=r?JSON.parse("{"+t.join()+"}",(function(e,r){return""===e?r:decodeURIComponent(r)})):{}).state===o,"accessCode"!==a.auth.schema.get("flow")&&"authorizationCode"!==a.auth.sch
 [...]
\ No newline at end of file
diff --git a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-bundle.js 
b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-bundle.js
index efcc0b95d..a00665950 100644
--- a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-bundle.js
+++ b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-bundle.js
@@ -15,5 +15,4 @@
  * limitations under the License.
  */
 
-!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)}(this,(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.exp [...]
᠎"!="​…᠎"[e]()||o[e].name!==e}))}},function(e,t,n){var 
r=n(633);e.exports=r},function(e,t,n){var 
r=n(634),o=String.prototype;e.exports=function(e){var 
t=e.startsWith;return"string"==typeof e||e===o||e instanceof 
String&&t===o.startsWith?r:t}},function(e,t,n){n(635);var 
r=n(42);e.exports=r("String").startsWith},function(e,t,n){"use strict";var 
r,o=n(24),a=n(106).f,i=n(80),s=n(386),u=n(127),c=n(387),l=n(97),p="".startsWith,f=Math.min,h=c("startsWith");o({target:"String",proto:!0,forced:!!(l||h||(r
 [...]
":95===e?" ":76===e?"\u2028":80===e?"\u2029":""}function w(e){return 
e<=65535?String.fromCharCode(e):String.fromCharCode(55296+(e-65536>>10),56320+(e-65536&1023))}for(var
 x=new Array(256),E=new 
Array(256),C=0;C<256;C++)x[C]=_(C)?1:0,E[C]=_(C);function 
S(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(a="",i=this.position;i<this.buffer.length&&-1==="\0\r\n…
\u2028\u2029".indexOf(this.buffer.charAt(i));)if((i+=1)-this.position>t/2-1){a="
 ... ",i-=5;break}return s=this.buffer.slice(o,i),r.repeat(" 
",e)+n+s+a+"\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(50);e.exports=new r("tag:yaml.org,2002:str",{kind:"sc [...]
-//# sourceMappingURL=swagger-ui-bundle.js.map
\ No newline at end of file
+!function webpackUniversalModuleDefinition(s,o){"object"==typeof 
exports&&"object"==typeof module?module.exports=o():"function"==typeof 
define&&define.amd?define([],o):"object"==typeof 
exports?exports.SwaggerUIBundle=o():s.SwaggerUIBundle=o()}(this,(()=>(()=>{var 
s={251:(s,o)=>{o.read=function(s,o,i,a,u){var 
_,w,x=8*u-a-1,C=(1<<x)-1,j=C>>1,L=-7,B=i?u-1:0,$=i?-1:1,U=s[o+B];for(B+=$,_=U&(1<<-L)-1,U>>=-L,L+=x;L>0;_=256*_+s[o+B],B+=$,L-=8);for(w=_&(1<<-L)-1,_>>=-L,L+=a;L>0;w=256*w+s[o+B],B+=
 [...]
":95===s?" ":76===s?"\u2028":80===s?"\u2029":""}function 
charFromCodepoint(s){return 
s<=65535?String.fromCharCode(s):String.fromCharCode(55296+(s-65536>>10),56320+(s-65536&1023))}for(var
 qr=new Array(256),Ur=new 
Array(256),Vr=0;Vr<256;Vr++)qr[Vr]=simpleEscapeSequence(Vr)?1:0,Ur[Vr]=simpleEscapeSequence(Vr);function
 
State$1(s,o){this.input=s,this.filename=o.filename||null,this.schema=o.schema||Mr,this.onWarning=o.onWarning||null,this.legacy=o.legacy||!1,this.json=o.json||!1,this.listener=o
 [...]
\ No newline at end of file
diff --git 
a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-es-bundle-core.js 
b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-es-bundle-core.js
index 00ffc2f87..bed1f5a33 100644
--- a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-es-bundle-core.js
+++ b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-es-bundle-core.js
@@ -15,5 +15,5 @@
  * limitations under the License.
  */
 
-module.exports=function(e){var t={};function n(r){if(t[r])return 
t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return 
e[r].call(a.exports,a,a.exports,n),a.l=!0,a.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=function(e){"undefined"!=typeof
 
Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return
 e; [...]
᠎"!="​…᠎"[e]()||a[e].name!==e}))}},function(e,t,n){var 
r=n(483);e.exports=r},function(e,t,n){var 
r=n(484),a=String.prototype;e.exports=function(e){var 
t=e.startsWith;return"string"==typeof e||e===a||e instanceof 
String&&t===a.startsWith?r:t}},function(e,t,n){n(485);var 
r=n(38);e.exports=r("String").startsWith},function(e,t,n){"use strict";var 
r,a=n(24),o=n(89).f,i=n(68),c=n(302),s=n(105),u=n(303),l=n(80),p="".startsWith,f=Math.min,d=u("startsWith");a({target:"String",proto:!0,forced:!!(l||d||(r=
 [...]
+import*as e from"ieee754";import*as t from"to-buffer";import*as r 
from"base64-js";import*as n from"react";import*as a from"redux";import*as o 
from"immutable";import*as s from"redux-immutable";import*as l 
from"serialize-error";import*as i from"lodash/merge";import*as c 
from"lodash/camelCase";import*as u from"lodash/upperFirst";import*as d 
from"lodash/memoize";import*as p from"lodash/find";import*as m 
from"lodash/some";import*as f from"lodash/eq";import*as h 
from"lodash/isFunction";import* [...]
 //# sourceMappingURL=swagger-ui-es-bundle-core.js.map
\ No newline at end of file
diff --git 
a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-es-bundle.js 
b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-es-bundle.js
index 14c1349c7..c179fa85a 100644
--- a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-es-bundle.js
+++ b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-es-bundle.js
@@ -15,5 +15,4 @@
  * limitations under the License.
  */
 
-module.exports=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=function(e){"undefined"!=typeof
 
Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return
 e; [...]
᠎"!="​…᠎"[e]()||o[e].name!==e}))}},function(e,t,n){var 
r=n(633);e.exports=r},function(e,t,n){var 
r=n(634),o=String.prototype;e.exports=function(e){var 
t=e.startsWith;return"string"==typeof e||e===o||e instanceof 
String&&t===o.startsWith?r:t}},function(e,t,n){n(635);var 
r=n(42);e.exports=r("String").startsWith},function(e,t,n){"use strict";var 
r,o=n(24),a=n(106).f,i=n(80),s=n(386),u=n(127),c=n(387),l=n(97),p="".startsWith,f=Math.min,h=c("startsWith");o({target:"String",proto:!0,forced:!!(l||h||(r
 [...]
":95===e?" ":76===e?"\u2028":80===e?"\u2029":""}function w(e){return 
e<=65535?String.fromCharCode(e):String.fromCharCode(55296+(e-65536>>10),56320+(e-65536&1023))}for(var
 x=new Array(256),E=new 
Array(256),C=0;C<256;C++)x[C]=_(C)?1:0,E[C]=_(C);function 
S(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(a="",i=this.position;i<this.buffer.length&&-1==="\0\r\n…
\u2028\u2029".indexOf(this.buffer.charAt(i));)if((i+=1)-this.position>t/2-1){a="
 ... ",i-=5;break}return s=this.buffer.slice(o,i),r.repeat(" 
",e)+n+s+a+"\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(50);e.exports=new r("tag:yaml.org,2002:str",{kind:"sc [...]
-//# sourceMappingURL=swagger-ui-es-bundle.js.map
\ No newline at end of file
+(()=>{var s={251:(s,o)=>{o.read=function(s,o,i,a,u){var 
_,w,x=8*u-a-1,C=(1<<x)-1,j=C>>1,L=-7,B=i?u-1:0,$=i?-1:1,U=s[o+B];for(B+=$,_=U&(1<<-L)-1,U>>=-L,L+=x;L>0;_=256*_+s[o+B],B+=$,L-=8);for(w=_&(1<<-L)-1,_>>=-L,L+=a;L>0;w=256*w+s[o+B],B+=$,L-=8);if(0===_)_=1-j;else{if(_===C)return
 
w?NaN:1/0*(U?-1:1);w+=Math.pow(2,a),_-=j}return(U?-1:1)*w*Math.pow(2,_-a)},o.write=function(s,o,i,a,u,_){var
 
w,x,C,j=8*_-u-1,L=(1<<j)-1,B=L>>1,$=23===u?Math.pow(2,-24)-Math.pow(2,-77):0,U=a?0:_-1,V=a?1:-1,z=o<0
 [...]
":95===s?" ":76===s?"\u2028":80===s?"\u2029":""}function 
charFromCodepoint(s){return 
s<=65535?String.fromCharCode(s):String.fromCharCode(55296+(s-65536>>10),56320+(s-65536&1023))}for(var
 qr=new Array(256),Ur=new 
Array(256),Vr=0;Vr<256;Vr++)qr[Vr]=simpleEscapeSequence(Vr)?1:0,Ur[Vr]=simpleEscapeSequence(Vr);function
 
State$1(s,o){this.input=s,this.filename=o.filename||null,this.schema=o.schema||Mr,this.onWarning=o.onWarning||null,this.legacy=o.legacy||!1,this.json=o.json||!1,this.listener=o
 [...]
\ No newline at end of file
diff --git 
a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-standalone-preset.js 
b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-standalone-preset.js
index e12f9eed4..94b847d44 100644
--- 
a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-standalone-preset.js
+++ 
b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui-standalone-preset.js
@@ -15,5 +15,4 @@
  * limitations under the License.
  */
 
-!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)}(this,(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].ca [...]
᠎"!="​…᠎"[t]()||i[t].name!==t}))}},function(t,e,n){var 
r=n(344);t.exports=r},function(t,e,n){var 
r=n(345),i=String.prototype;t.exports=function(t){var 
e=t.startsWith;return"string"==typeof t||t===i||t instanceof 
String&&e===i.startsWith?r:e}},function(t,e,n){n(346);var 
r=n(9);t.exports=r("String").startsWith},function(t,e,n){"use strict";var 
r,i=n(1),o=n(106).f,u=n(35),s=n(184),a=n(42),c=n(185),f=n(57),l="".startsWith,p=Math.min,h=c("startsWith");i({target:"String",proto:!0,forced:!!(f||h||(r=o(
 [...]
":95===t?" ":76===t?"\u2028":80===t?"\u2029":""}function _(t){return 
t<=65535?String.fromCharCode(t):String.fromCharCode(55296+(t-65536>>10),56320+(t-65536&1023))}for(var
 L=new Array(256),b=new 
Array(256),x=0;x<256;x++)L[x]=m(x)?1:0,b[x]=m(x);function 
j(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(7);t.exports=new r("tag:yaml.org,2002:str",{kind:"sca [...]
-//# sourceMappingURL=swagger-ui-standalone-preset.js.map
\ No newline at end of file
+!function webpackUniversalModuleDefinition(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,(()=>(()=>{var
 t={2:(t,e,r)=>{var n=r(2199),o=r(4664),i=r(5950);t.exports=function 
getAllKeys(t){return n(t,i,o)}},41:(t,e,r)=>{"use strict";var 
n=r(655),o=r(8068),i=r(9675),a=r(5795);t.exports=function defineDataProperty(t 
[...]
":95===t?" ":76===t?"\u2028":80===t?"\u2029":""}function 
charFromCodepoint(t){return 
t<=65535?String.fromCharCode(t):String.fromCharCode(55296+(t-65536>>10),56320+(t-65536&1023))}for(var
 Ft=new Array(256),Ut=new 
Array(256),Dt=0;Dt<256;Dt++)Ft[Dt]=simpleEscapeSequence(Dt)?1:0,Ut[Dt]=simpleEscapeSequence(Dt);function
 
State$1(t,e){this.input=t,this.filename=e.filename||null,this.schema=e.schema||jt,this.onWarning=e.onWarning||null,this.legacy=e.legacy||!1,this.json=e.json||!1,this.listener=e
 [...]
\ No newline at end of file
diff --git a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui.css 
b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui.css
index 34bf24a1e..5a6247366 100644
--- a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui.css
+++ b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui.css
@@ -15,7 +15,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-.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}.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{margin:1em 40px}.swagger-ui hr{box-sizing:content-box;height:0;ov [...]
 
 /*# sourceMappingURL=swagger-ui.css.map*/
\ No newline at end of file
diff --git a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui.js 
b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui.js
index 5b326d21f..384c91a8d 100644
--- a/gateway-openapi-ui/src/main/resources/swagger/swagger-ui.js
+++ b/gateway-openapi-ui/src/main/resources/swagger/swagger-ui.js
@@ -15,5 +15,5 @@
  * limitations under the License.
  */
 
-!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 
function(e){var t={};function n(r){if(t[r])return t[r].exports;var 
a=t[r]={i:r,l:!1,exports:{}};return 
e[r].call(a.exports,a,a.exports,n),a.l=!0,a.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=fun
 [...]
᠎"!="​…᠎"[e]()||a[e].name!==e}))}},function(e,t,n){var 
r=n(483);e.exports=r},function(e,t,n){var 
r=n(484),a=String.prototype;e.exports=function(e){var 
t=e.startsWith;return"string"==typeof e||e===a||e instanceof 
String&&t===a.startsWith?r:t}},function(e,t,n){n(485);var 
r=n(38);e.exports=r("String").startsWith},function(e,t,n){"use strict";var 
r,a=n(24),o=n(89).f,i=n(68),c=n(302),s=n(105),u=n(303),l=n(80),p="".startsWith,f=Math.min,d=u("startsWith");a({target:"String",proto:!0,forced:!!(l||d||(r=
 [...]
+!function webpackUniversalModuleDefinition(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,(()=>(()=>{"use 
strict";var e={158:e=>{e.exports=require("buffer")}},t={};function 
__webpack_require__(r){var a=t[r];if(void 0!==a)return a.exports;var 
n=t[r]={exports:{}};return 
e[r](n,n.exports,__webpack_require__),n.exports}__webpack_require__. [...]
 //# sourceMappingURL=swagger-ui.js.map
\ No newline at end of file

Reply via email to