openapi-explorer 0.10.426 → 0.10.427
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -0
- package/dist/browser/openapi-explorer.min.js +3 -3
- package/dist/es/openapi-explorer.js +9 -0
- package/dist/es/templates/endpoint-template.js +3 -1
- package/dist/es/templates/expanded-endpoint-template.js +3 -1
- package/dist/es/utils/spec-parser.js +5 -6
- package/dist/lib/openapi-explorer.js +9 -0
- package/dist/lib/templates/endpoint-template.js +3 -1
- package/dist/lib/templates/expanded-endpoint-template.js +3 -1
- package/dist/lib/utils/spec-parser.js +5 -6
- package/package.json +1 -1
|
@@ -390,6 +390,15 @@ export default class OpenApiExplorer extends LitElement {
|
|
|
390
390
|
}
|
|
391
391
|
}
|
|
392
392
|
|
|
393
|
+
if (name === 'server-url' && newVal) {
|
|
394
|
+
var _this$resolvedSpec;
|
|
395
|
+
|
|
396
|
+
this.selectedServer = ((_this$resolvedSpec = this.resolvedSpec) === null || _this$resolvedSpec === void 0 ? void 0 : _this$resolvedSpec.servers.find(s => s.url === newVal || !newVal)) || {
|
|
397
|
+
url: newVal,
|
|
398
|
+
computedUrl: newVal
|
|
399
|
+
};
|
|
400
|
+
}
|
|
401
|
+
|
|
393
402
|
if (name === 'render-style') {
|
|
394
403
|
if (newVal === 'read') {
|
|
395
404
|
window.setTimeout(() => {
|
|
@@ -64,6 +64,8 @@ function endpointHeadTemplate(path) {
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
function endpointBodyTemplate(path) {
|
|
67
|
+
var _path$servers, _path$servers$;
|
|
68
|
+
|
|
67
69
|
const acceptContentTypes = new Set();
|
|
68
70
|
|
|
69
71
|
for (const respStatus in path.responses) {
|
|
@@ -76,7 +78,7 @@ function endpointBodyTemplate(path) {
|
|
|
76
78
|
|
|
77
79
|
const nonEmptyApiKeys = this.resolvedSpec.securitySchemes.filter(v => v.finalKeyValue && path.security && path.security.some(ps => ps[v.apiKeyId])) || [];
|
|
78
80
|
const codeSampleTabPanel = path.xCodeSamples ? codeSamplesTemplate(path.xCodeSamples) : '';
|
|
79
|
-
return html` <div class="endpoint-body ${path.method}"> <div class="summary"> ${path.summary ? html`<div class="title">${path.summary}<div></div></div>` : path.shortSummary !== path.description ? html`<div class="title">${path.shortSummary}</div>` : ''} ${path.description ? html`<div class="m-markdown"> ${unsafeHTML(marked(path.description))}</div>` : ''} <slot name="${path.elementId}"></slot> ${pathSecurityTemplate.call(this, path.security)} ${codeSampleTabPanel} </div> <div class="req-resp-container"> <div style="display:flex;flex-direction:column" class="request"> <api-request class="request-panel" style="width:100%" method="${path.method}" , path="${path.path}" element-id="${path.elementId}" .parameters="${path.parameters}" .request_body="${path.requestBody}" .api_keys="${nonEmptyApiKeys}" .servers="${path.servers}" server-url="${
|
|
81
|
+
return html` <div class="endpoint-body ${path.method}"> <div class="summary"> ${path.summary ? html`<div class="title">${path.summary}<div></div></div>` : path.shortSummary !== path.description ? html`<div class="title">${path.shortSummary}</div>` : ''} ${path.description ? html`<div class="m-markdown"> ${unsafeHTML(marked(path.description))}</div>` : ''} <slot name="${path.elementId}"></slot> ${pathSecurityTemplate.call(this, path.security)} ${codeSampleTabPanel} </div> <div class="req-resp-container"> <div style="display:flex;flex-direction:column" class="request"> <api-request class="request-panel" style="width:100%" method="${path.method}" , path="${path.path}" element-id="${path.elementId}" .parameters="${path.parameters}" .request_body="${path.requestBody}" .api_keys="${nonEmptyApiKeys}" .servers="${path.servers}" server-url="${((_path$servers = path.servers) === null || _path$servers === void 0 ? void 0 : (_path$servers$ = _path$servers[0]) === null || _path$servers$ === void 0 ? void 0 : _path$servers$.url) || this.selectedServer.computedUrl}" active-schema-tab="${this.defaultSchemaTab}" fill-defaults="${this.fillRequestWithDefault}" display-nulls="${!!this.includeNulls}" enable-console="${this.allowTry}" accept="${accept}" render-style="${this.renderStyle}" schema-style="${this.displaySchemaAsTable ? 'table' : 'tree'}" schema-expand-level="${this.schemaExpandLevel}" schema-hide-read-only="${this.schemaHideReadOnly}" fetch-credentials="${this.fetchCredentials}" exportparts="btn btn-fill btn-outline btn-try"> </api-request> </div> ${path.callbacks ? callbackTemplate.call(this, path.callbacks) : ''} <api-response class="request response" .responses="${path.responses}" display-nulls="${!!this.includeNulls}" active-schema-tab="${this.defaultSchemaTab}" render-style="${this.renderStyle}" schema-style="${this.displaySchemaAsTable ? 'table' : 'tree'}" schema-expand-level="${this.schemaExpandLevel}" schema-hide-write-only="${this.schemaHideWriteOnly}" selected-status="${Object.keys(path.responses || {})[0] || ''}" exportparts="btn--resp btn-fill--resp btn-outline--resp"> </api-response> </div> </div>`;
|
|
80
82
|
}
|
|
81
83
|
|
|
82
84
|
export default function endpointTemplate() {
|
|
@@ -9,6 +9,8 @@ import '../components/api-response';
|
|
|
9
9
|
/* eslint-disable indent */
|
|
10
10
|
|
|
11
11
|
export function expandedEndpointBodyTemplate(path, tagName = '') {
|
|
12
|
+
var _path$servers, _path$servers$;
|
|
13
|
+
|
|
12
14
|
const acceptContentTypes = new Set();
|
|
13
15
|
|
|
14
16
|
for (const respStatus in path.responses) {
|
|
@@ -21,7 +23,7 @@ export function expandedEndpointBodyTemplate(path, tagName = '') {
|
|
|
21
23
|
|
|
22
24
|
const nonEmptyApiKeys = this.resolvedSpec.securitySchemes.filter(v => v.finalKeyValue && path.security && path.security.some(ps => ps[v.apiKeyId])) || [];
|
|
23
25
|
const codeSampleTabPanel = path.xCodeSamples ? codeSamplesTemplate.call(this, path.xCodeSamples) : '';
|
|
24
|
-
return html` ${this.renderStyle === 'read' ? html`<div class="divider" part="operation-divider"></div>` : ''} <div class="expanded-endpoint-body observe-me ${path.method}" part="section-operation ${path.elementId}" id="${path.elementId}"> ${this.renderStyle === 'focused' && tagName && tagName !== 'General ⦂' ? html`<h3 class="upper" style="font-weight:700"> ${tagName} </h3>` : ''} ${path.deprecated ? html`<div class="bold-text red-text"> DEPRECATED </div>` : ''} ${html` <h2> ${path.shortSummary || `${path.method.toUpperCase()} ${path.path}`}</h2> <div class='mono-font part="section-operation-url" regular-font-size' style="padding:8px 0;color:var(--fg3)"> ${path.isWebhook ? html`<span style="color:var(--primary-color)"> WEBHOOK </span>` : ''} <span part="label-operation-method" class="regular-font upper method-fg bold-text ${path.method}">${path.method}</span> <span part="label-operation-path">${path.path}</span> </div>`} ${path.description ? html`<div class="m-markdown"> ${unsafeHTML(marked(path.description))}</div>` : ''} <slot name="${path.elementId}"></slot> ${pathSecurityTemplate.call(this, path.security)} ${codeSampleTabPanel} <div class="expanded-req-resp-container"> <api-request class="request-panel" method="${path.method}" path="${path.path}" element-id="${path.elementId}" .parameters="${path.parameters}" .request_body="${path.requestBody}" .api_keys="${nonEmptyApiKeys}" .servers="${path.servers}" server-url="${
|
|
26
|
+
return html` ${this.renderStyle === 'read' ? html`<div class="divider" part="operation-divider"></div>` : ''} <div class="expanded-endpoint-body observe-me ${path.method}" part="section-operation ${path.elementId}" id="${path.elementId}"> ${this.renderStyle === 'focused' && tagName && tagName !== 'General ⦂' ? html`<h3 class="upper" style="font-weight:700"> ${tagName} </h3>` : ''} ${path.deprecated ? html`<div class="bold-text red-text"> DEPRECATED </div>` : ''} ${html` <h2> ${path.shortSummary || `${path.method.toUpperCase()} ${path.path}`}</h2> <div class='mono-font part="section-operation-url" regular-font-size' style="padding:8px 0;color:var(--fg3)"> ${path.isWebhook ? html`<span style="color:var(--primary-color)"> WEBHOOK </span>` : ''} <span part="label-operation-method" class="regular-font upper method-fg bold-text ${path.method}">${path.method}</span> <span part="label-operation-path">${path.path}</span> </div>`} ${path.description ? html`<div class="m-markdown"> ${unsafeHTML(marked(path.description))}</div>` : ''} <slot name="${path.elementId}"></slot> ${pathSecurityTemplate.call(this, path.security)} ${codeSampleTabPanel} <div class="expanded-req-resp-container"> <api-request class="request-panel" method="${path.method}" path="${path.path}" element-id="${path.elementId}" .parameters="${path.parameters}" .request_body="${path.requestBody}" .api_keys="${nonEmptyApiKeys}" .servers="${path.servers}" server-url="${((_path$servers = path.servers) === null || _path$servers === void 0 ? void 0 : (_path$servers$ = _path$servers[0]) === null || _path$servers$ === void 0 ? void 0 : _path$servers$.url) || this.selectedServer.computedUrl}" fill-defaults="${this.fillRequestWithDefault}" display-nulls="${!!this.includeNulls}" enable-console="${this.allowTry}" accept="${accept}" render-style="${this.renderStyle}" schema-style="${this.displaySchemaAsTable ? 'table' : 'tree'}" active-schema-tab="${this.defaultSchemaTab}" schema-expand-level="${this.schemaExpandLevel}" schema-hide-read-only="${this.schemaHideReadOnly}" fetch-credentials="${this.fetchCredentials}" exportparts="btn btn-fill btn-outline btn-try"> </api-request> ${path.callbacks ? callbackTemplate.call(this, path.callbacks) : ''} <api-response class="response-panel" .responses="${path.responses}" display-nulls="${!!this.includeNulls}" render-style="${this.renderStyle}" schema-style="${this.displaySchemaAsTable ? 'table' : 'tree'}" active-schema-tab="${this.defaultSchemaTab}" schema-expand-level="${this.schemaExpandLevel}" schema-hide-write-only="${this.schemaHideWriteOnly}" selected-status="${Object.keys(path.responses || {})[0] || ''}" exportparts="btn--resp btn-fill--resp btn-outline--resp"> </api-response> </div> </div> `;
|
|
25
27
|
}
|
|
26
28
|
export function expandedTagTemplate(tagId, subsectionFullId) {
|
|
27
29
|
const tag = (this.resolvedSpec.tags || []).find(t => t.elementId === tagId);
|
|
@@ -90,34 +90,33 @@ export default async function ProcessSpec(specUrlOrObject, serverUrl = '') {
|
|
|
90
90
|
});
|
|
91
91
|
|
|
92
92
|
if (serverUrl && !jsonParsedSpec.servers.some(s => s.url === serverUrl || s.computedUrl === serverUrl)) {
|
|
93
|
-
|
|
93
|
+
servers = [{
|
|
94
94
|
url: serverUrl,
|
|
95
95
|
computedUrl: serverUrl
|
|
96
96
|
}].concat(jsonParsedSpec.servers);
|
|
97
97
|
}
|
|
98
98
|
} else if (serverUrl) {
|
|
99
|
-
|
|
99
|
+
servers = [{
|
|
100
100
|
url: serverUrl,
|
|
101
101
|
computedUrl: serverUrl
|
|
102
102
|
}];
|
|
103
103
|
} else if (inputSpecIsAUrl) {
|
|
104
|
-
|
|
104
|
+
servers = [{
|
|
105
105
|
url: new URL(specUrlOrObject).origin,
|
|
106
106
|
computedUrl: new URL(specUrlOrObject).origin
|
|
107
107
|
}];
|
|
108
108
|
} else if (window.location.origin.startsWith('http')) {
|
|
109
|
-
|
|
109
|
+
servers = [{
|
|
110
110
|
url: window.location.origin,
|
|
111
111
|
computedUrl: window.location.origin
|
|
112
112
|
}];
|
|
113
113
|
} else {
|
|
114
|
-
|
|
114
|
+
servers = [{
|
|
115
115
|
url: 'http://localhost',
|
|
116
116
|
computedUrl: 'http://localhost'
|
|
117
117
|
}];
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
-
servers = jsonParsedSpec.servers;
|
|
121
120
|
const parsedSpec = {
|
|
122
121
|
info: jsonParsedSpec.info,
|
|
123
122
|
infoDescriptionHeaders,
|
|
@@ -429,6 +429,15 @@ class OpenApiExplorer extends _lit.LitElement {
|
|
|
429
429
|
}
|
|
430
430
|
}
|
|
431
431
|
|
|
432
|
+
if (name === 'server-url' && newVal) {
|
|
433
|
+
var _this$resolvedSpec;
|
|
434
|
+
|
|
435
|
+
this.selectedServer = ((_this$resolvedSpec = this.resolvedSpec) === null || _this$resolvedSpec === void 0 ? void 0 : _this$resolvedSpec.servers.find(s => s.url === newVal || !newVal)) || {
|
|
436
|
+
url: newVal,
|
|
437
|
+
computedUrl: newVal
|
|
438
|
+
};
|
|
439
|
+
}
|
|
440
|
+
|
|
432
441
|
if (name === 'render-style') {
|
|
433
442
|
if (newVal === 'read') {
|
|
434
443
|
window.setTimeout(() => {
|
|
@@ -81,6 +81,8 @@ function endpointHeadTemplate(path) {
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
function endpointBodyTemplate(path) {
|
|
84
|
+
var _path$servers, _path$servers$;
|
|
85
|
+
|
|
84
86
|
const acceptContentTypes = new Set();
|
|
85
87
|
|
|
86
88
|
for (const respStatus in path.responses) {
|
|
@@ -93,7 +95,7 @@ function endpointBodyTemplate(path) {
|
|
|
93
95
|
|
|
94
96
|
const nonEmptyApiKeys = this.resolvedSpec.securitySchemes.filter(v => v.finalKeyValue && path.security && path.security.some(ps => ps[v.apiKeyId])) || [];
|
|
95
97
|
const codeSampleTabPanel = path.xCodeSamples ? (0, _codeSamplesTemplate.default)(path.xCodeSamples) : '';
|
|
96
|
-
return (0, _lit.html)` <div class="endpoint-body ${path.method}"> <div class="summary"> ${path.summary ? (0, _lit.html)`<div class="title">${path.summary}<div></div></div>` : path.shortSummary !== path.description ? (0, _lit.html)`<div class="title">${path.shortSummary}</div>` : ''} ${path.description ? (0, _lit.html)`<div class="m-markdown"> ${(0, _unsafeHtml.unsafeHTML)((0, _marked.marked)(path.description))}</div>` : ''} <slot name="${path.elementId}"></slot> ${_securitySchemeTemplate.pathSecurityTemplate.call(this, path.security)} ${codeSampleTabPanel} </div> <div class="req-resp-container"> <div style="display:flex;flex-direction:column" class="request"> <api-request class="request-panel" style="width:100%" method="${path.method}" , path="${path.path}" element-id="${path.elementId}" .parameters="${path.parameters}" .request_body="${path.requestBody}" .api_keys="${nonEmptyApiKeys}" .servers="${path.servers}" server-url="${
|
|
98
|
+
return (0, _lit.html)` <div class="endpoint-body ${path.method}"> <div class="summary"> ${path.summary ? (0, _lit.html)`<div class="title">${path.summary}<div></div></div>` : path.shortSummary !== path.description ? (0, _lit.html)`<div class="title">${path.shortSummary}</div>` : ''} ${path.description ? (0, _lit.html)`<div class="m-markdown"> ${(0, _unsafeHtml.unsafeHTML)((0, _marked.marked)(path.description))}</div>` : ''} <slot name="${path.elementId}"></slot> ${_securitySchemeTemplate.pathSecurityTemplate.call(this, path.security)} ${codeSampleTabPanel} </div> <div class="req-resp-container"> <div style="display:flex;flex-direction:column" class="request"> <api-request class="request-panel" style="width:100%" method="${path.method}" , path="${path.path}" element-id="${path.elementId}" .parameters="${path.parameters}" .request_body="${path.requestBody}" .api_keys="${nonEmptyApiKeys}" .servers="${path.servers}" server-url="${((_path$servers = path.servers) === null || _path$servers === void 0 ? void 0 : (_path$servers$ = _path$servers[0]) === null || _path$servers$ === void 0 ? void 0 : _path$servers$.url) || this.selectedServer.computedUrl}" active-schema-tab="${this.defaultSchemaTab}" fill-defaults="${this.fillRequestWithDefault}" display-nulls="${!!this.includeNulls}" enable-console="${this.allowTry}" accept="${accept}" render-style="${this.renderStyle}" schema-style="${this.displaySchemaAsTable ? 'table' : 'tree'}" schema-expand-level="${this.schemaExpandLevel}" schema-hide-read-only="${this.schemaHideReadOnly}" fetch-credentials="${this.fetchCredentials}" exportparts="btn btn-fill btn-outline btn-try"> </api-request> </div> ${path.callbacks ? _callbackTemplate.default.call(this, path.callbacks) : ''} <api-response class="request response" .responses="${path.responses}" display-nulls="${!!this.includeNulls}" active-schema-tab="${this.defaultSchemaTab}" render-style="${this.renderStyle}" schema-style="${this.displaySchemaAsTable ? 'table' : 'tree'}" schema-expand-level="${this.schemaExpandLevel}" schema-hide-write-only="${this.schemaHideWriteOnly}" selected-status="${Object.keys(path.responses || {})[0] || ''}" exportparts="btn--resp btn-fill--resp btn-outline--resp"> </api-response> </div> </div>`;
|
|
97
99
|
}
|
|
98
100
|
|
|
99
101
|
function endpointTemplate() {
|
|
@@ -24,6 +24,8 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
24
24
|
|
|
25
25
|
/* eslint-disable indent */
|
|
26
26
|
function expandedEndpointBodyTemplate(path, tagName = '') {
|
|
27
|
+
var _path$servers, _path$servers$;
|
|
28
|
+
|
|
27
29
|
const acceptContentTypes = new Set();
|
|
28
30
|
|
|
29
31
|
for (const respStatus in path.responses) {
|
|
@@ -36,7 +38,7 @@ function expandedEndpointBodyTemplate(path, tagName = '') {
|
|
|
36
38
|
|
|
37
39
|
const nonEmptyApiKeys = this.resolvedSpec.securitySchemes.filter(v => v.finalKeyValue && path.security && path.security.some(ps => ps[v.apiKeyId])) || [];
|
|
38
40
|
const codeSampleTabPanel = path.xCodeSamples ? _codeSamplesTemplate.default.call(this, path.xCodeSamples) : '';
|
|
39
|
-
return (0, _lit.html)` ${this.renderStyle === 'read' ? (0, _lit.html)`<div class="divider" part="operation-divider"></div>` : ''} <div class="expanded-endpoint-body observe-me ${path.method}" part="section-operation ${path.elementId}" id="${path.elementId}"> ${this.renderStyle === 'focused' && tagName && tagName !== 'General ⦂' ? (0, _lit.html)`<h3 class="upper" style="font-weight:700"> ${tagName} </h3>` : ''} ${path.deprecated ? (0, _lit.html)`<div class="bold-text red-text"> DEPRECATED </div>` : ''} ${(0, _lit.html)` <h2> ${path.shortSummary || `${path.method.toUpperCase()} ${path.path}`}</h2> <div class='mono-font part="section-operation-url" regular-font-size' style="padding:8px 0;color:var(--fg3)"> ${path.isWebhook ? (0, _lit.html)`<span style="color:var(--primary-color)"> WEBHOOK </span>` : ''} <span part="label-operation-method" class="regular-font upper method-fg bold-text ${path.method}">${path.method}</span> <span part="label-operation-path">${path.path}</span> </div>`} ${path.description ? (0, _lit.html)`<div class="m-markdown"> ${(0, _unsafeHtml.unsafeHTML)((0, _marked.marked)(path.description))}</div>` : ''} <slot name="${path.elementId}"></slot> ${_securitySchemeTemplate.pathSecurityTemplate.call(this, path.security)} ${codeSampleTabPanel} <div class="expanded-req-resp-container"> <api-request class="request-panel" method="${path.method}" path="${path.path}" element-id="${path.elementId}" .parameters="${path.parameters}" .request_body="${path.requestBody}" .api_keys="${nonEmptyApiKeys}" .servers="${path.servers}" server-url="${
|
|
41
|
+
return (0, _lit.html)` ${this.renderStyle === 'read' ? (0, _lit.html)`<div class="divider" part="operation-divider"></div>` : ''} <div class="expanded-endpoint-body observe-me ${path.method}" part="section-operation ${path.elementId}" id="${path.elementId}"> ${this.renderStyle === 'focused' && tagName && tagName !== 'General ⦂' ? (0, _lit.html)`<h3 class="upper" style="font-weight:700"> ${tagName} </h3>` : ''} ${path.deprecated ? (0, _lit.html)`<div class="bold-text red-text"> DEPRECATED </div>` : ''} ${(0, _lit.html)` <h2> ${path.shortSummary || `${path.method.toUpperCase()} ${path.path}`}</h2> <div class='mono-font part="section-operation-url" regular-font-size' style="padding:8px 0;color:var(--fg3)"> ${path.isWebhook ? (0, _lit.html)`<span style="color:var(--primary-color)"> WEBHOOK </span>` : ''} <span part="label-operation-method" class="regular-font upper method-fg bold-text ${path.method}">${path.method}</span> <span part="label-operation-path">${path.path}</span> </div>`} ${path.description ? (0, _lit.html)`<div class="m-markdown"> ${(0, _unsafeHtml.unsafeHTML)((0, _marked.marked)(path.description))}</div>` : ''} <slot name="${path.elementId}"></slot> ${_securitySchemeTemplate.pathSecurityTemplate.call(this, path.security)} ${codeSampleTabPanel} <div class="expanded-req-resp-container"> <api-request class="request-panel" method="${path.method}" path="${path.path}" element-id="${path.elementId}" .parameters="${path.parameters}" .request_body="${path.requestBody}" .api_keys="${nonEmptyApiKeys}" .servers="${path.servers}" server-url="${((_path$servers = path.servers) === null || _path$servers === void 0 ? void 0 : (_path$servers$ = _path$servers[0]) === null || _path$servers$ === void 0 ? void 0 : _path$servers$.url) || this.selectedServer.computedUrl}" fill-defaults="${this.fillRequestWithDefault}" display-nulls="${!!this.includeNulls}" enable-console="${this.allowTry}" accept="${accept}" render-style="${this.renderStyle}" schema-style="${this.displaySchemaAsTable ? 'table' : 'tree'}" active-schema-tab="${this.defaultSchemaTab}" schema-expand-level="${this.schemaExpandLevel}" schema-hide-read-only="${this.schemaHideReadOnly}" fetch-credentials="${this.fetchCredentials}" exportparts="btn btn-fill btn-outline btn-try"> </api-request> ${path.callbacks ? _callbackTemplate.default.call(this, path.callbacks) : ''} <api-response class="response-panel" .responses="${path.responses}" display-nulls="${!!this.includeNulls}" render-style="${this.renderStyle}" schema-style="${this.displaySchemaAsTable ? 'table' : 'tree'}" active-schema-tab="${this.defaultSchemaTab}" schema-expand-level="${this.schemaExpandLevel}" schema-hide-write-only="${this.schemaHideWriteOnly}" selected-status="${Object.keys(path.responses || {})[0] || ''}" exportparts="btn--resp btn-fill--resp btn-outline--resp"> </api-response> </div> </div> `;
|
|
40
42
|
}
|
|
41
43
|
|
|
42
44
|
function expandedTagTemplate(tagId, subsectionFullId) {
|
|
@@ -102,34 +102,33 @@ async function ProcessSpec(specUrlOrObject, serverUrl = '') {
|
|
|
102
102
|
});
|
|
103
103
|
|
|
104
104
|
if (serverUrl && !jsonParsedSpec.servers.some(s => s.url === serverUrl || s.computedUrl === serverUrl)) {
|
|
105
|
-
|
|
105
|
+
servers = [{
|
|
106
106
|
url: serverUrl,
|
|
107
107
|
computedUrl: serverUrl
|
|
108
108
|
}].concat(jsonParsedSpec.servers);
|
|
109
109
|
}
|
|
110
110
|
} else if (serverUrl) {
|
|
111
|
-
|
|
111
|
+
servers = [{
|
|
112
112
|
url: serverUrl,
|
|
113
113
|
computedUrl: serverUrl
|
|
114
114
|
}];
|
|
115
115
|
} else if (inputSpecIsAUrl) {
|
|
116
|
-
|
|
116
|
+
servers = [{
|
|
117
117
|
url: new URL(specUrlOrObject).origin,
|
|
118
118
|
computedUrl: new URL(specUrlOrObject).origin
|
|
119
119
|
}];
|
|
120
120
|
} else if (window.location.origin.startsWith('http')) {
|
|
121
|
-
|
|
121
|
+
servers = [{
|
|
122
122
|
url: window.location.origin,
|
|
123
123
|
computedUrl: window.location.origin
|
|
124
124
|
}];
|
|
125
125
|
} else {
|
|
126
|
-
|
|
126
|
+
servers = [{
|
|
127
127
|
url: 'http://localhost',
|
|
128
128
|
computedUrl: 'http://localhost'
|
|
129
129
|
}];
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
-
servers = jsonParsedSpec.servers;
|
|
133
132
|
const parsedSpec = {
|
|
134
133
|
info: jsonParsedSpec.info,
|
|
135
134
|
infoDescriptionHeaders,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openapi-explorer",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.427",
|
|
4
4
|
"description": "OpenAPI Explorer - API viewer with dynamically generated components, documentation, and interaction console",
|
|
5
5
|
"author": "Rhosys Developers <developers@rhosys.ch>",
|
|
6
6
|
"type": "module",
|