-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: adding support for OAS' external documentation * chore: updating dev dependencies * chore: major upgrading dev dependencies * chore: deep-updating dependencies * build: bumping version * fix: fixing api-response event registration on the request panel * fix: updating component to dix diplicated headers issue * chore: updating dependencies * chore: adding types declaration files * chore: adding index.js file * chore: updating dependencies for authorization * fix: fixing passing the `amf` property in the request panel * chore(demo): add multi-server to element demo * fix: override base servers with operation servers * fix: tests, update deps * test: increase timeout to 25s * test: should be last test fixing * fix(server): set type before value * test: debugging SL tests * test: debugging SL tests * Revert "test: debugging SL tests" This reverts commit 532f6ed. * Revert "test: debugging SL tests" This reverts commit 4cfd9a7. * Revert "fix(server): set type before value" This reverts commit 9140820. * Revert "test: should be last test fixing" This reverts commit 26a1549. * Revert "test: increase timeout to 25s" This reverts commit 613c895. * chore: add .idea to .gitignore * test: increase timeout to 25s * test: should be last test fixing * fix(server): set type before value * fix(type-document): update to version 4.1.0 Fixes APIC-405 * test: change test to use custom instead of server * test: skip a server test Co-authored-by: Francisco Di Giandomenico <[email protected]>
- Loading branch information
1 parent
0ffcc85
commit 189d5c5
Showing
23 changed files
with
4,357 additions
and
1,319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,3 +61,5 @@ dist/ | |
|
||
# AMF models | ||
demo/models/*.json | ||
|
||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { ApiConsoleApp } from './src/ApiConsoleApp'; | ||
|
||
declare global { | ||
interface HTMLElementTagNameMap { | ||
"api-console-app": ApiConsoleApp; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,3 @@ | ||
/** | ||
@license | ||
Copyright 2018 The Advanced REST client authors <[email protected]> | ||
Licensed 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. | ||
*/ | ||
import { ApiConsoleApp } from './src/ApiConsoleApp.js'; | ||
|
||
window.customElements.define('api-console-app', ApiConsoleApp); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { ApiConsole } from './src/ApiConsole'; | ||
|
||
declare global { | ||
interface HTMLElementTagNameMap { | ||
"api-console": ApiConsole; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,3 @@ | ||
/** | ||
@license | ||
Copyright 2018 The Advanced REST client authors <[email protected]> | ||
Licensed 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. | ||
*/ | ||
import { ApiConsole } from './src/ApiConsole.js'; | ||
|
||
window.customElements.define('api-console', ApiConsole); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { ApiConsole } from './src/ApiConsole'; | ||
export { ApiConsoleApp } from './src/ApiConsoleApp'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { ApiConsole } from './src/ApiConsole.js'; | ||
export { ApiConsoleApp } from './src/ApiConsoleApp.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,7 +89,7 @@ module.exports = (config) => { | |
|
||
client: { | ||
mocha: { | ||
timeout: 20000 | ||
timeout: 25000 | ||
} | ||
}, | ||
|
||
|
Oops, something went wrong.