diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
new file mode 100644
index 0000000..6999baf
--- /dev/null
+++ b/.github/workflows/codeql-analysis.yml
@@ -0,0 +1,67 @@
+# For most projects, this workflow file will not need changing; you simply need
+# to commit it to your repository.
+#
+# You may wish to alter this file to override the set of languages analyzed,
+# or to provide custom queries or build logic.
+#
+# ******** NOTE ********
+# We have attempted to detect the languages in your repository. Please check
+# the `language` matrix defined below to confirm you have the correct set of
+# supported CodeQL languages.
+#
+name: "CodeQL"
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ # The branches below must be a subset of the branches above
+ branches: [ master ]
+ schedule:
+ - cron: '21 7 * * 5'
+
+jobs:
+ analyze:
+ name: Analyze
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+ matrix:
+ language: [ 'javascript' ]
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
+ # Learn more:
+ # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ # Initializes the CodeQL tools for scanning.
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v1
+ with:
+ languages: ${{ matrix.language }}
+ # If you wish to specify custom queries, you can do so here or in a config file.
+ # By default, queries listed here will override any specified in a config file.
+ # Prefix the list here with "+" to use these queries and those in the config file.
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
+
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
+ # If this step fails, then you should remove it and run the build manually (see below)
+ - name: Autobuild
+ uses: github/codeql-action/autobuild@v1
+
+ # âšī¸ Command-line programs to run using the OS shell.
+ # đ https://git.io/JvXDl
+
+ # âī¸ If the Autobuild fails above, remove it and uncomment the following three lines
+ # and modify them (or add more) to build your code if your project
+ # uses a compiled language
+
+ #- run: |
+ # make bootstrap
+ # make release
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v1
diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
new file mode 100644
index 0000000..a73904c
--- /dev/null
+++ b/.github/workflows/deployment.yml
@@ -0,0 +1,101 @@
+name: Tests and publishing
+env:
+ FORCE_COLOR: 1
+on:
+ push:
+ branches:
+ - master
+ - main
+ - develop
+ pull_request:
+ branches:
+ - master
+ - main
+jobs:
+ test_linux:
+ name: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [ubuntu-20.04]
+ # os: [ubuntu-18.04, ubuntu-20.04]
+ runs-on: ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v1
+ with:
+ node-version: 14
+ - uses: microsoft/playwright-github-action@v1
+ - uses: actions/cache@v1
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-
+ - name: Install dependencies
+ run: npm ci
+ - name: Run tests
+ run: npm test
+ test_win:
+ name: "Windows"
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v1
+ with:
+ node-version: 14
+ - uses: microsoft/playwright-github-action@v1
+ - uses: actions/cache@v1
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-
+ - name: Install dependencies
+ run: npm ci
+ - name: Run tests
+ run: npm test
+ tag:
+ name: "Publishing release"
+ if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
+ needs:
+ - test_linux
+ - test_win
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14.x'
+ registry-url: 'https://registry.npmjs.org'
+ - uses: actions/cache@v1
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-node-
+ - run: npm install
+ - name: Read version from package.json
+ uses: culshaw/read-package-node-version-actions@v1
+ id: package-node-version
+ - name: Changelog
+ uses: scottbrenner/generate-changelog-action@master
+ id: Changelog
+ - name: Github Release
+ id: create_release
+ uses: actions/create-release@latest
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ tag_name: v${{ steps.package-node-version.outputs.version }}
+ release_name: v${{ steps.package-node-version.outputs.version }}
+ body: |
+ ${{ steps.Changelog.outputs.changelog }}
+ draft: false
+ prerelease: false
+ - run: npm publish --access public
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
deleted file mode 100644
index 5ae8523..0000000
--- a/.github/workflows/tests.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-name: tests
-
-env:
- FORCE_COLOR: 1
-
-on:
- push:
- pull_request:
- branches:
- - stage
- - master
-jobs:
- test_linux:
- name: ${{ matrix.os }} (${{ matrix.browser }})
- strategy:
- fail-fast: false
- matrix:
- os: [ubuntu-18.04, ubuntu-20.04]
- runs-on: ${{ matrix.os }}
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v1
- with:
- node-version: 14
- - uses: microsoft/playwright-github-action@v1
- - name: Install dependencies
- run: npm ci
- - name: Run tests
- run: npm test
- # test_win:
- # name: "Windows"
- # strategy:
- # fail-fast: false
- # runs-on: windows-latest
- # steps:
- # - uses: actions/checkout@v2
- # - uses: actions/setup-node@v1
- # with:
- # node-version: 14
- # - uses: microsoft/playwright-github-action@v1
- # - name: Install dependencies
- # run: npm ci
- # - name: Run tests
- # run: npm test
diff --git a/.npmignore b/.npmignore
index b0c8d13..91ac71c 100644
--- a/.npmignore
+++ b/.npmignore
@@ -2,8 +2,6 @@ coverage/
test/
demo/
CONTRIBUTING.md
-polymer.json
karma.*
.*
web-test-runner.config.mjs
-es-dev-server.config.js
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index dc81d17..0000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,1412 +0,0 @@
-
-## 2.0.3 (2018-12-28)
-
-
-### Breaking
-
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### Update
-
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-
-
-
-
-## 2.0.2 (2018-09-08)
-
-
-### Breaking
-
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### Update
-
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-
-
-
-
-## 2.0.1 (2018-06-26)
-
-
-### Breaking
-
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Update
-
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-
-
-
-
-# 2.0.0 (2018-05-18)
-
-
-### Update
-
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-
-
-
-## 2.0.4 (2019-01-25)
-
-
-### Breaking
-
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### Update
-
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-
-
-
-# 2.1.0 (2019-02-01)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### New
-
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-
-
-
-## 2.1.1 (2019-02-02)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### New
-
-* Adding `no-actions` attributye and checking for valid JSON values ([0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0))
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-
-
-
-## 2.1.2 (2019-03-14)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### New
-
-* Adding `no-actions` attributye and checking for valid JSON values ([0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0))
-* Adding local storage support recognition. ([a62f5a10da01f883bab0cb70e513c12ad00bf956](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956))
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding `noAutho` to observable list. ([84be331d8cd4fca9083a3839aaf1764f3d6d2c82](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82))
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-
-
-
-## 2.1.3 (2019-04-09)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### New
-
-* Adding `no-actions` attributye and checking for valid JSON values ([0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0))
-* Adding `payloadId` to generate examples from Payload definition ([ff0bfda9893b7f823f0b57c45b62a952c84cd173](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173))
-* Adding local storage support recognition. ([a62f5a10da01f883bab0cb70e513c12ad00bf956](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956))
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding `noAutho` to observable list. ([84be331d8cd4fca9083a3839aaf1764f3d6d2c82](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82))
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating AMF version and the models ([327d074712fb80fdc03c0fb8dbbad80640b0cff4](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-
-
-
-## 2.1.3 (2019-05-29)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### New
-
-* Adding `no-actions` attributye and checking for valid JSON values ([0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0))
-* Adding `payloadId` to generate examples from Payload definition ([ff0bfda9893b7f823f0b57c45b62a952c84cd173](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173))
-* Adding local storage support recognition. ([a62f5a10da01f883bab0cb70e513c12ad00bf956](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956))
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding `noAutho` to observable list. ([84be331d8cd4fca9083a3839aaf1764f3d6d2c82](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82))
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating AMF version and the models ([327d074712fb80fdc03c0fb8dbbad80640b0cff4](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-* Upgrading AMF version and models ([cdea7f17ba56180b12bcd41ab69401faaed71cb4](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4))
-
-
-
-# 3.0.0 (2019-06-16)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-* Upgrading component to Polymer 3 ([daad86972b5c866845d384f6c7ee95a956113762](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### Fix
-
-* Fixing test coverage ([807f93bb94d8e14a1b1b003da5791e78a957577f](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f))
-
-### New
-
-* Adding `no-actions` attributye and checking for valid JSON values ([0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0))
-* Adding `payloadId` to generate examples from Payload definition ([2abbcd7269d51d07a033430d93bdba56f190ecbc](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc))
-* Adding `payloadId` to generate examples from Payload definition ([ff0bfda9893b7f823f0b57c45b62a952c84cd173](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173))
-* Adding local storage support recognition. ([a62f5a10da01f883bab0cb70e513c12ad00bf956](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956))
-* Adding local storage support recognition. ([c60909158cb34f2dca92814707e7908107ad7270](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270))
-* Adding npm ignore file ([d80fff5835d0baaaf6a184e3fcd852ee98848d5d](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d))
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding `noAutho` to observable list. ([b801a61d7472e60a4256ec2088c5e40dde8186a2](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2))
-* Adding `noAutho` to observable list. ([84be331d8cd4fca9083a3839aaf1764f3d6d2c82](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82))
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Changing clipboard-copy scope ([63beb9944d9658263a663d30a641f09c90911e35](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35))
-* Regenerating AMF models after AMF upgrade ([fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a))
-* Removing static `is` property ([24da06f91051a399cd13129f1b9cb2ebd9d109db](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating AMF version and the models ([327d074712fb80fdc03c0fb8dbbad80640b0cff4](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating import paths to match web spec ([c725cfb6f1d638d14ccc035cc07b3313151a673a](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-* Updating tests configuration ([66098d9ee6c96e9ea38caeff02acd661a471ba55](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55))
-* Upgrading AMF version and models ([cdea7f17ba56180b12bcd41ab69401faaed71cb4](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4))
-* Upgrading dependencies ([6d9776d5bab062b3ff473bca212118fbabbabcad](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad))
-
-
-
-## 3.0.1 (2019-06-17)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-* Upgrading component to Polymer 3 ([daad86972b5c866845d384f6c7ee95a956113762](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### Fix
-
-* Fixing test coverage ([807f93bb94d8e14a1b1b003da5791e78a957577f](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f))
-
-### New
-
-* Adding `no-actions` attributye and checking for valid JSON values ([0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0))
-* Adding `payloadId` to generate examples from Payload definition ([2abbcd7269d51d07a033430d93bdba56f190ecbc](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc))
-* Adding `payloadId` to generate examples from Payload definition ([ff0bfda9893b7f823f0b57c45b62a952c84cd173](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173))
-* Adding local storage support recognition. ([a62f5a10da01f883bab0cb70e513c12ad00bf956](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956))
-* Adding local storage support recognition. ([c60909158cb34f2dca92814707e7908107ad7270](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270))
-* Adding npm ignore file ([d80fff5835d0baaaf6a184e3fcd852ee98848d5d](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d))
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding `noAutho` to observable list. ([84be331d8cd4fca9083a3839aaf1764f3d6d2c82](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82))
-* Adding `noAutho` to observable list. ([b801a61d7472e60a4256ec2088c5e40dde8186a2](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2))
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Changing clipboard-copy scope ([63beb9944d9658263a663d30a641f09c90911e35](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35))
-* Regenerating AMF models after AMF upgrade ([fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a))
-* Removing static `is` property ([24da06f91051a399cd13129f1b9cb2ebd9d109db](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating AMF version and the models ([327d074712fb80fdc03c0fb8dbbad80640b0cff4](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4))
-* Updating condition checking for code value ([7236307313ea9308cadf9eb3945491db2ec24fe3](https://github.com/advanced-rest-client/api-resource-example-document/commit/7236307313ea9308cadf9eb3945491db2ec24fe3))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating import paths to match web spec ([c725cfb6f1d638d14ccc035cc07b3313151a673a](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-* Updating tests configuration ([66098d9ee6c96e9ea38caeff02acd661a471ba55](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55))
-* Upgrading AMF version and models ([cdea7f17ba56180b12bcd41ab69401faaed71cb4](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4))
-* Upgrading dependencies ([6d9776d5bab062b3ff473bca212118fbabbabcad](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad))
-
-
-
-## 3.0.1 (2019-06-18)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-* Upgrading component to Polymer 3 ([daad86972b5c866845d384f6c7ee95a956113762](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### Fix
-
-* Fixing linter issue ([7fd6cce499278fab7b94b41dd18ed9d0a101b23f](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fd6cce499278fab7b94b41dd18ed9d0a101b23f))
-* Fixing test coverage ([807f93bb94d8e14a1b1b003da5791e78a957577f](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f))
-
-### New
-
-* Adding `no-actions` attributye and checking for valid JSON values ([0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0))
-* Adding `payloadId` to generate examples from Payload definition ([2abbcd7269d51d07a033430d93bdba56f190ecbc](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc))
-* Adding `payloadId` to generate examples from Payload definition ([ff0bfda9893b7f823f0b57c45b62a952c84cd173](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173))
-* Adding CSS parts styles rules and demo page ([7ff81f2bfadb64f11a175a7988b346a4147870a0](https://github.com/advanced-rest-client/api-resource-example-document/commit/7ff81f2bfadb64f11a175a7988b346a4147870a0))
-* Adding local storage support recognition. ([a62f5a10da01f883bab0cb70e513c12ad00bf956](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956))
-* Adding local storage support recognition. ([c60909158cb34f2dca92814707e7908107ad7270](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270))
-* Adding new action / union button styles to include border ([b475239d7249b886b4fe338131ebdd29e93747dc](https://github.com/advanced-rest-client/api-resource-example-document/commit/b475239d7249b886b4fe338131ebdd29e93747dc))
-* Adding npm ignore file ([d80fff5835d0baaaf6a184e3fcd852ee98848d5d](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d))
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding `noAutho` to observable list. ([84be331d8cd4fca9083a3839aaf1764f3d6d2c82](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82))
-* Adding `noAutho` to observable list. ([b801a61d7472e60a4256ec2088c5e40dde8186a2](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2))
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Changing clipboard-copy scope ([63beb9944d9658263a663d30a641f09c90911e35](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35))
-* Regenerating AMF models after AMF upgrade ([fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a))
-* Removing static `is` property ([24da06f91051a399cd13129f1b9cb2ebd9d109db](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating AMF version and the models ([327d074712fb80fdc03c0fb8dbbad80640b0cff4](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4))
-* Updating condition checking for code value ([7236307313ea9308cadf9eb3945491db2ec24fe3](https://github.com/advanced-rest-client/api-resource-example-document/commit/7236307313ea9308cadf9eb3945491db2ec24fe3))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating import paths to match web spec ([c725cfb6f1d638d14ccc035cc07b3313151a673a](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-* Updating tests configuration ([66098d9ee6c96e9ea38caeff02acd661a471ba55](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55))
-* Updating typpings ([d0b1d265721f0ad1e57ec84a184e4129e00dfc85](https://github.com/advanced-rest-client/api-resource-example-document/commit/d0b1d265721f0ad1e57ec84a184e4129e00dfc85))
-* Upgrading AMF version and models ([cdea7f17ba56180b12bcd41ab69401faaed71cb4](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4))
-* Upgrading dependencies ([6d9776d5bab062b3ff473bca212118fbabbabcad](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad))
-* Upgrading dependencies ([23dc4557495cc06ae8a19935449e1062bb742403](https://github.com/advanced-rest-client/api-resource-example-document/commit/23dc4557495cc06ae8a19935449e1062bb742403))
-
-
-
-## 3.0.2 (2019-06-18)
-
-
-### Breaking
-
-* Changing the API to work with new version of example generator ([c6ce34f0675489fac1e956819230c3347aafe0b1](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1))
-* Updating AMF data model ([3d397c3e178a6010a79871f01c542549eeb2c31c](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c))
-* Upgrading component to Polymer 3 ([daad86972b5c866845d384f6c7ee95a956113762](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762))
-
-### Docs
-
-* Updating docs ([20a4600e58ac34ac60bfeb4a66e7def4c0f48c05](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05))
-
-### Fix
-
-* Fixing linter issue ([7fd6cce499278fab7b94b41dd18ed9d0a101b23f](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fd6cce499278fab7b94b41dd18ed9d0a101b23f))
-* Fixing test coverage ([807f93bb94d8e14a1b1b003da5791e78a957577f](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f))
-
-### New
-
-* Adding `no-actions` attributye and checking for valid JSON values ([0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0))
-* Adding `payloadId` to generate examples from Payload definition ([2abbcd7269d51d07a033430d93bdba56f190ecbc](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc))
-* Adding `payloadId` to generate examples from Payload definition ([ff0bfda9893b7f823f0b57c45b62a952c84cd173](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173))
-* Adding CSS parts styles rules and demo page ([7ff81f2bfadb64f11a175a7988b346a4147870a0](https://github.com/advanced-rest-client/api-resource-example-document/commit/7ff81f2bfadb64f11a175a7988b346a4147870a0))
-* Adding local storage support recognition. ([a62f5a10da01f883bab0cb70e513c12ad00bf956](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956))
-* Adding local storage support recognition. ([c60909158cb34f2dca92814707e7908107ad7270](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270))
-* Adding new action / union button styles to include border ([b475239d7249b886b4fe338131ebdd29e93747dc](https://github.com/advanced-rest-client/api-resource-example-document/commit/b475239d7249b886b4fe338131ebdd29e93747dc))
-* Adding npm ignore file ([d80fff5835d0baaaf6a184e3fcd852ee98848d5d](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d))
-* hasExamples not reflect to attribute ([41b432a6a01ff1f43f2693d526a54bc5c39e89fe](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe))
-
-### Update
-
-* Adding `noAutho` to observable list. ([84be331d8cd4fca9083a3839aaf1764f3d6d2c82](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82))
-* Adding `noAutho` to observable list. ([b801a61d7472e60a4256ec2088c5e40dde8186a2](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2))
-* Adding example generator ([b65e13cdcc5dcf788d7b883db086d80a68829127](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127))
-* Adding tests for parts styling API ([529c525b9c81406b18069a51303353ef4dd0164f](https://github.com/advanced-rest-client/api-resource-example-document/commit/529c525b9c81406b18069a51303353ef4dd0164f))
-* Changing clipboard-copy scope ([63beb9944d9658263a663d30a641f09c90911e35](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35))
-* Regenerating AMF models after AMF upgrade ([fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a))
-* Removing static `is` property ([24da06f91051a399cd13129f1b9cb2ebd9d109db](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db))
-* Updated Travis configuration to connect to Sauce Labs. ([f45db4aa1fe547b859225eb2b073881599410eed](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed))
-* Updating AMF version and the models ([327d074712fb80fdc03c0fb8dbbad80640b0cff4](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4))
-* Updating condition checking for code value ([7236307313ea9308cadf9eb3945491db2ec24fe3](https://github.com/advanced-rest-client/api-resource-example-document/commit/7236307313ea9308cadf9eb3945491db2ec24fe3))
-* Updating demo page to use compact model ([097072b62011164b595821d882a9b334309069bb](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb))
-* Updating import paths to match web spec ([c725cfb6f1d638d14ccc035cc07b3313151a673a](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a))
-* Updating project dev dependencies. ([261f0af8daa11cb7a21c986e202ee0830e491588](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588))
-* Updating tests configuration ([66098d9ee6c96e9ea38caeff02acd661a471ba55](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55))
-* Updating typpings ([d0b1d265721f0ad1e57ec84a184e4129e00dfc85](https://github.com/advanced-rest-client/api-resource-example-document/commit/d0b1d265721f0ad1e57ec84a184e4129e00dfc85))
-* Upgrading AMF version and models ([cdea7f17ba56180b12bcd41ab69401faaed71cb4](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4))
-* Upgrading dependencies ([6d9776d5bab062b3ff473bca212118fbabbabcad](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad))
-* Upgrading dependencies ([23dc4557495cc06ae8a19935449e1062bb742403](https://github.com/advanced-rest-client/api-resource-example-document/commit/23dc4557495cc06ae8a19935449e1062bb742403))
-
-
-
-## 3.0.3 (2019-07-29)
-
-
-### Bug Fixes
-
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-
-## 3.0.5 (2019-08-26)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d2457))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-
-## 3.0.6 (2019-08-29)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d2457))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-
-## 3.0.7 (2019-09-13)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d2457))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-### Features
-
-* titles and buttons are now hidden for scalar values ([0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622))
-
-
-
-## 3.0.8 (2019-09-13)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d2457))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-### Features
-
-* redesigning title with actions placed on the right hand side ([c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee4))
-* titles and buttons are now hidden for scalar values ([0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622))
-
-
-
-## 3.0.9 (2019-09-13)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d2457))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-### Features
-
-* adding "example" title if there's more than one example ([9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed))
-* redesigning title with actions placed on the right hand side ([c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee4))
-* titles and buttons are now hidden for scalar values ([0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622))
-
-
-
-## 3.0.10 (2019-10-07)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d2457))
-* fixing a typo ([102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ec))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-### Features
-
-* adding "example" title if there's more than one example ([9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed))
-* redesigning title with actions placed on the right hand side ([c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee4))
-* titles and buttons are now hidden for scalar values ([0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622))
-
-
-
-# 4.0.0 (2019-10-12)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d2457))
-* fixing a typo ([102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ec))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-### Features
-
-* adding "example" title if there's more than one example ([9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed))
-* redesigning title with actions placed on the right hand side ([c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee4))
-* titles and buttons are now hidden for scalar values ([0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622))
-
-
-
-## 4.0.1 (2019-10-12)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d2457))
-* fixing a typo ([102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ec))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab))
-
-
-### Features
-
-* adding "example" title if there's more than one example ([9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed))
-* redesigning title with actions placed on the right hand side ([c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee4))
-* titles and buttons are now hidden for scalar values ([0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622))
-
-
-
-## 4.0.2 (2019-11-08)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d245731db14819459ff4943a3ba72516ecda4e))
-* fixing a typo ([102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ecc678347c75e074968d98f09893f5f96bb))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab39cd322ab612d0b061639531bfdebf5f9))
-
-
-### Features
-
-* adding "example" title if there's more than one example ([9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed917139f4a6861daf34755e3983d442803))
-* redesigning title with actions placed on the right hand side ([c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee44438e34a4a326f094d149e633f8b7a222))
-* titles and buttons are now hidden for scalar values ([0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622381a95e33dee971100a97632e91e2855d))
-
-
-
-## 4.0.3 (2019-11-09)
-
-
-### Bug Fixes
-
-* adding missing `legacy` property on the document ([c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d245731db14819459ff4943a3ba72516ecda4e))
-* fixing a typo ([102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ecc678347c75e074968d98f09893f5f96bb))
-* fixing linter errors ([4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab39cd322ab612d0b061639531bfdebf5f9))
-
-
-### Features
-
-* adding "example" title if there's more than one example ([9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed917139f4a6861daf34755e3983d442803))
-* redesigning title with actions placed on the right hand side ([c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee44438e34a4a326f094d149e633f8b7a222))
-* titles and buttons are now hidden for scalar values ([0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622381a95e33dee971100a97632e91e2855d))
-
-
-
-
-## [4.0.4](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.2...4.0.4) (2019-11-16)
-
-### Build
-
-* bumping version [13bc2ac](https://github.com/advanced-rest-client/api-resource-example-document/commit/13bc2ac11f30b28daef093034442c07d363a176d) by Pawel
-* bumping version [e531bc2](https://github.com/advanced-rest-client/api-resource-example-document/commit/e531bc24ad410cf1ca7d9236f305d6603e1b668f) by Pawel
-* bumping version [249ff41](https://github.com/advanced-rest-client/api-resource-example-document/commit/249ff410d87566b5ddcadf27266dffbc11eee017) by Pawel
-* bumping version [cf32971](https://github.com/advanced-rest-client/api-resource-example-document/commit/cf3297113744e6ebf6d13b002b94f425a578bdb6) by Pawel Psztyc
-* bumping version [b098234](https://github.com/advanced-rest-client/api-resource-example-document/commit/b09823449ab6a8e83d431b174b41cd9c7efb17c2) by Pawel
-* bumping version [fcf95a7](https://github.com/advanced-rest-client/api-resource-example-document/commit/fcf95a7bf9c02a300d52cd5ddbb553ac46585345) by Pawel
-* bumping version [52103ea](https://github.com/advanced-rest-client/api-resource-example-document/commit/52103ead5dc1a55263a001e146e102740ba17d36) by Pawel
-
-
-### Update
-
-* upgrading dependencies [7f39dbd](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f39dbd9ad4399e995604eb21189836998abd5c5) by Pawel
-* adding overflow to avoid pushing JSON table outside screen [4563f1e](https://github.com/advanced-rest-client/api-resource-example-document/commit/4563f1e578ffc7ec966e0f289ca617ad50a5467f) by Pawel
-* updating depdnencies [a7b1462](https://github.com/advanced-rest-client/api-resource-example-document/commit/a7b1462c1b90545173fe2b76c1f995cd78e8e444) by Pawel
-* updating SL configuration [ac51bc6](https://github.com/advanced-rest-client/api-resource-example-document/commit/ac51bc60e819ac6724b08dc3f0152eb4e5f213e4) by Pawel
-* upgrading dependencies and models [d027f25](https://github.com/advanced-rest-client/api-resource-example-document/commit/d027f25a63d31c6963a8e2edc5d2bf4818acc657) by Pawel
-* embed css styles in render method [66561f7](https://github.com/advanced-rest-client/api-resource-example-document/commit/66561f760f0ad0373ce23cceb8ff80c98cd117ef) by TwoPlusTwoOne
-* updating types [55c92c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/55c92c3ec578d6d907c638a1fdb78046ca7f4e12) by Pawel
-* adding styles to break words when rendering example [fec0ed2](https://github.com/advanced-rest-client/api-resource-example-document/commit/fec0ed2e02663a34c2f2a160c1a0262177574f68) by Pawel
-* replaced prism default theme with ARC's version [7a7565f](https://github.com/advanced-rest-client/api-resource-example-document/commit/7a7565f8f4d6b5666f5fb6f5f449edb6928e2113) by Pawel
-* upgrading project to latest ARC standards [f333ac6](https://github.com/advanced-rest-client/api-resource-example-document/commit/f333ac63039556d6c3f6a56d3eba7e6f6c7ec860) by Pawel
-
-
-### Documentation
-
-* adding component name to the demo page [d86eba1](https://github.com/advanced-rest-client/api-resource-example-document/commit/d86eba1b9dc06958a241779ad1f55bbf35e32262) by Pawel
-
-
-### Features
-
-* adding "example" title if there's more than one example [9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed917139f4a6861daf34755e3983d442803) by Pawel Psztyc
-* redesigning title with actions placed on the right hand side [c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee44438e34a4a326f094d149e633f8b7a222) by Pawel Psztyc
-* titles and buttons are now hidden for scalar values [0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622381a95e33dee971100a97632e91e2855d) by Pawel Psztyc
-
-
-### Bug Fixes
-
-* fixing a typo [102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ecc678347c75e074968d98f09893f5f96bb) by Pawel Psztyc
-* adding missing `legacy` property on the document [c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d245731db14819459ff4943a3ba72516ecda4e) by Pawel
-* fixing linter errors [4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab39cd322ab612d0b061639531bfdebf5f9) by Pawel
-
-
-### Refactor
-
-* renaming `legacy` to `compatibility` [379435f](https://github.com/advanced-rest-client/api-resource-example-document/commit/379435f98060c1318d00c71f014537c1c3a32913) by Pawel
-* redesigning example to match annotations design [ee137d8](https://github.com/advanced-rest-client/api-resource-example-document/commit/ee137d860b98705ca604a853192663422ec91b2a) by Pawel
-* upgraded to AMF 4 [719c2f5](https://github.com/advanced-rest-client/api-resource-example-document/commit/719c2f5c280bddff47ecc017e7c6648d26e47d06) by Pawel
-* replacing paper with anypoint button [eda5b2b](https://github.com/advanced-rest-client/api-resource-example-document/commit/eda5b2b93cac75b6841d5fbcc7f772ae5d577f10) by Pawel
-
-
-### Testing
-
-* removing safari and edge - waiting to issue to be resolved [fc17522](https://github.com/advanced-rest-client/api-resource-example-document/commit/fc1752202293904d8cac52551fa688feabd469c4) by Pawel
-* removing edge until SL test fix is ready [6f84950](https://github.com/advanced-rest-client/api-resource-example-document/commit/6f84950d27d5653de9083f795780c2c207408546) by Pawel
-* fixing test configuration [7f7e12d](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f7e12d0ce8bf3a5eddfe07c08915baccdfddf3d) by Pawel
-* updating a test [70f7f3c](https://github.com/advanced-rest-client/api-resource-example-document/commit/70f7f3cce3c7eacfaf371702f8c67fae450dd4dd) by Pawel
-* adding a11y tests [7233fa1](https://github.com/advanced-rest-client/api-resource-example-document/commit/7233fa1f1bfbe9755c016523b7f4ca2b1eb1b5fd) by Pawel
-
-
-### Other
-
-* Update: Adding tests for parts styling API
- [529c525](https://github.com/advanced-rest-client/api-resource-example-document/commit/529c525b9c81406b18069a51303353ef4dd0164f) by Pawel Psztyc
-* Update: Upgrading dependencies
- [23dc455](https://github.com/advanced-rest-client/api-resource-example-document/commit/23dc4557495cc06ae8a19935449e1062bb742403) by Pawel Psztyc
-* Update: Updating typpings
- [d0b1d26](https://github.com/advanced-rest-client/api-resource-example-document/commit/d0b1d265721f0ad1e57ec84a184e4129e00dfc85) by Pawel Psztyc
-* New: Adding CSS parts styles rules and demo page
- [7ff81f2](https://github.com/advanced-rest-client/api-resource-example-document/commit/7ff81f2bfadb64f11a175a7988b346a4147870a0) by Pawel Psztyc
-* Fix: Fixing linter issue
- [7fd6cce](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fd6cce499278fab7b94b41dd18ed9d0a101b23f) by Pawel Psztyc
-* New: Adding new action / union button styles to include border
- [b475239](https://github.com/advanced-rest-client/api-resource-example-document/commit/b475239d7249b886b4fe338131ebdd29e93747dc) by Pawel Psztyc
-* Update: Updating condition checking for code value
- [7236307](https://github.com/advanced-rest-client/api-resource-example-document/commit/7236307313ea9308cadf9eb3945491db2ec24fe3) by Pawel
-* Update: Removing static `is` property
- [24da06f](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db) by Pawel Psztyc
-* Update: Regenerating AMF models after AMF upgrade
- [fa3b5cc](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a) by Pawel Psztyc
-* Update: Upgrading dependencies
- [6d9776d](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad) by Pawel Psztyc
-* Update: Upgrading AMF version and models
- [cdea7f1](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4) by Pawel Psztyc
-* Update: Updating AMF version and the models
- [327d074](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [ff0bfda](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [2abbcd7](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc) by Pawel Psztyc
-* Fix: Fixing test coverage
- [807f93b](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f) by Pawel Psztyc
-* Update: Updating import paths to match web spec
- [c725cfb](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a) by Pawel Psztyc
-* Update: Changing clipboard-copy scope
- [63beb99](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [c609091](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [b801a61](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2) by Pawel Psztyc
-* New: Adding npm ignore file
- [d80fff5](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [a62f5a1](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [84be331](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82) by Pawel Psztyc
-* Update: Updating tests configuration
- [66098d9](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55) by Pawel Psztyc
-* Breaking: Upgrading component to Polymer 3
- [daad869](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762) by Pawel Psztyc
-* New: Adding `no-actions` attributye and checking for valid JSON values
- [0095e0b](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0) by Pawel Psztyc
-* New: hasExamples not reflect to attribute
- [41b432a](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe) by Pawel
-* Breaking: Changing the API to work with new version of example generator
- [c6ce34f](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1) by Pawel
-* Update: Updating project dev dependencies.
-Bumping version so the changes will be deliver do maaster.
- [261f0af](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588) by Pawel Psztyc
-* Docs: Updating docs
- [20a4600](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05) by Pawel Psztyc
-* Update: Updating demo page to use compact model
- [097072b](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb) by Pawel Psztyc
-* Update: Adding example generator
- [b65e13c](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127) by Pawel Psztyc
-* Breaking: Updating AMF data model
- [3d397c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c) by Pawel Psztyc
-* Update: Updated Travis configuration to connect to Sauce Labs.
- [f45db4a](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed) by Pawel Psztyc
-
-
-
-## [4.0.5](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.3...4.0.5) (2019-11-21)
-
-### Build
-
-* bumping version [0c1b7a3](https://github.com/advanced-rest-client/api-resource-example-document/commit/0c1b7a3d0e142d461a9a8f4b00859866ccfd3f24) by Pawel Psztyc
-* bumping version [13bc2ac](https://github.com/advanced-rest-client/api-resource-example-document/commit/13bc2ac11f30b28daef093034442c07d363a176d) by Pawel
-* bumping version [e531bc2](https://github.com/advanced-rest-client/api-resource-example-document/commit/e531bc24ad410cf1ca7d9236f305d6603e1b668f) by Pawel
-* bumping version [249ff41](https://github.com/advanced-rest-client/api-resource-example-document/commit/249ff410d87566b5ddcadf27266dffbc11eee017) by Pawel
-* bumping version [cf32971](https://github.com/advanced-rest-client/api-resource-example-document/commit/cf3297113744e6ebf6d13b002b94f425a578bdb6) by Pawel Psztyc
-* bumping version [b098234](https://github.com/advanced-rest-client/api-resource-example-document/commit/b09823449ab6a8e83d431b174b41cd9c7efb17c2) by Pawel
-* bumping version [fcf95a7](https://github.com/advanced-rest-client/api-resource-example-document/commit/fcf95a7bf9c02a300d52cd5ddbb553ac46585345) by Pawel
-* bumping version [52103ea](https://github.com/advanced-rest-client/api-resource-example-document/commit/52103ead5dc1a55263a001e146e102740ba17d36) by Pawel
-
-
-### Update
-
-* upgrading depdnencies [a6c0316](https://github.com/advanced-rest-client/api-resource-example-document/commit/a6c031682f02e21fbd78d0ddaf42b9fb6e3dc822) by Pawel Psztyc
-* upgrading dependencies [7f39dbd](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f39dbd9ad4399e995604eb21189836998abd5c5) by Pawel
-* adding overflow to avoid pushing JSON table outside screen [4563f1e](https://github.com/advanced-rest-client/api-resource-example-document/commit/4563f1e578ffc7ec966e0f289ca617ad50a5467f) by Pawel
-* updating depdnencies [a7b1462](https://github.com/advanced-rest-client/api-resource-example-document/commit/a7b1462c1b90545173fe2b76c1f995cd78e8e444) by Pawel
-* updating SL configuration [ac51bc6](https://github.com/advanced-rest-client/api-resource-example-document/commit/ac51bc60e819ac6724b08dc3f0152eb4e5f213e4) by Pawel
-* upgrading dependencies and models [d027f25](https://github.com/advanced-rest-client/api-resource-example-document/commit/d027f25a63d31c6963a8e2edc5d2bf4818acc657) by Pawel
-* embed css styles in render method [66561f7](https://github.com/advanced-rest-client/api-resource-example-document/commit/66561f760f0ad0373ce23cceb8ff80c98cd117ef) by TwoPlusTwoOne
-* updating types [55c92c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/55c92c3ec578d6d907c638a1fdb78046ca7f4e12) by Pawel
-* adding styles to break words when rendering example [fec0ed2](https://github.com/advanced-rest-client/api-resource-example-document/commit/fec0ed2e02663a34c2f2a160c1a0262177574f68) by Pawel
-* replaced prism default theme with ARC's version [7a7565f](https://github.com/advanced-rest-client/api-resource-example-document/commit/7a7565f8f4d6b5666f5fb6f5f449edb6928e2113) by Pawel
-* upgrading project to latest ARC standards [f333ac6](https://github.com/advanced-rest-client/api-resource-example-document/commit/f333ac63039556d6c3f6a56d3eba7e6f6c7ec860) by Pawel
-
-
-### Documentation
-
-* adding component name to the demo page [d86eba1](https://github.com/advanced-rest-client/api-resource-example-document/commit/d86eba1b9dc06958a241779ad1f55bbf35e32262) by Pawel
-
-
-### Features
-
-* adding "example" title if there's more than one example [9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed917139f4a6861daf34755e3983d442803) by Pawel Psztyc
-* redesigning title with actions placed on the right hand side [c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee44438e34a4a326f094d149e633f8b7a222) by Pawel Psztyc
-* titles and buttons are now hidden for scalar values [0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622381a95e33dee971100a97632e91e2855d) by Pawel Psztyc
-
-
-### Bug Fixes
-
-* fixing a typo [102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ecc678347c75e074968d98f09893f5f96bb) by Pawel Psztyc
-* adding missing `legacy` property on the document [c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d245731db14819459ff4943a3ba72516ecda4e) by Pawel
-* fixing linter errors [4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab39cd322ab612d0b061639531bfdebf5f9) by Pawel
-
-
-### Refactor
-
-* renaming `legacy` to `compatibility` [379435f](https://github.com/advanced-rest-client/api-resource-example-document/commit/379435f98060c1318d00c71f014537c1c3a32913) by Pawel
-* redesigning example to match annotations design [ee137d8](https://github.com/advanced-rest-client/api-resource-example-document/commit/ee137d860b98705ca604a853192663422ec91b2a) by Pawel
-* upgraded to AMF 4 [719c2f5](https://github.com/advanced-rest-client/api-resource-example-document/commit/719c2f5c280bddff47ecc017e7c6648d26e47d06) by Pawel
-* replacing paper with anypoint button [eda5b2b](https://github.com/advanced-rest-client/api-resource-example-document/commit/eda5b2b93cac75b6841d5fbcc7f772ae5d577f10) by Pawel
-
-
-### Testing
-
-* upgrading test configuration to try Safari tests [561a45e](https://github.com/advanced-rest-client/api-resource-example-document/commit/561a45e5f98710e210c37ae169221f6ea69c1315) by Pawel Psztyc
-* removing safari and edge - waiting to issue to be resolved [fc17522](https://github.com/advanced-rest-client/api-resource-example-document/commit/fc1752202293904d8cac52551fa688feabd469c4) by Pawel
-* removing edge until SL test fix is ready [6f84950](https://github.com/advanced-rest-client/api-resource-example-document/commit/6f84950d27d5653de9083f795780c2c207408546) by Pawel
-* fixing test configuration [7f7e12d](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f7e12d0ce8bf3a5eddfe07c08915baccdfddf3d) by Pawel
-* updating a test [70f7f3c](https://github.com/advanced-rest-client/api-resource-example-document/commit/70f7f3cce3c7eacfaf371702f8c67fae450dd4dd) by Pawel
-* adding a11y tests [7233fa1](https://github.com/advanced-rest-client/api-resource-example-document/commit/7233fa1f1bfbe9755c016523b7f4ca2b1eb1b5fd) by Pawel
-
-
-### Other
-
-* Update: Adding tests for parts styling API
- [529c525](https://github.com/advanced-rest-client/api-resource-example-document/commit/529c525b9c81406b18069a51303353ef4dd0164f) by Pawel Psztyc
-* Update: Upgrading dependencies
- [23dc455](https://github.com/advanced-rest-client/api-resource-example-document/commit/23dc4557495cc06ae8a19935449e1062bb742403) by Pawel Psztyc
-* Update: Updating typpings
- [d0b1d26](https://github.com/advanced-rest-client/api-resource-example-document/commit/d0b1d265721f0ad1e57ec84a184e4129e00dfc85) by Pawel Psztyc
-* New: Adding CSS parts styles rules and demo page
- [7ff81f2](https://github.com/advanced-rest-client/api-resource-example-document/commit/7ff81f2bfadb64f11a175a7988b346a4147870a0) by Pawel Psztyc
-* Fix: Fixing linter issue
- [7fd6cce](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fd6cce499278fab7b94b41dd18ed9d0a101b23f) by Pawel Psztyc
-* New: Adding new action / union button styles to include border
- [b475239](https://github.com/advanced-rest-client/api-resource-example-document/commit/b475239d7249b886b4fe338131ebdd29e93747dc) by Pawel Psztyc
-* Update: Updating condition checking for code value
- [7236307](https://github.com/advanced-rest-client/api-resource-example-document/commit/7236307313ea9308cadf9eb3945491db2ec24fe3) by Pawel
-* Update: Removing static `is` property
- [24da06f](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db) by Pawel Psztyc
-* Update: Regenerating AMF models after AMF upgrade
- [fa3b5cc](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a) by Pawel Psztyc
-* Update: Upgrading dependencies
- [6d9776d](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad) by Pawel Psztyc
-* Update: Upgrading AMF version and models
- [cdea7f1](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4) by Pawel Psztyc
-* Update: Updating AMF version and the models
- [327d074](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [ff0bfda](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [2abbcd7](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc) by Pawel Psztyc
-* Fix: Fixing test coverage
- [807f93b](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f) by Pawel Psztyc
-* Update: Updating import paths to match web spec
- [c725cfb](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a) by Pawel Psztyc
-* Update: Changing clipboard-copy scope
- [63beb99](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [c609091](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [b801a61](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2) by Pawel Psztyc
-* New: Adding npm ignore file
- [d80fff5](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [a62f5a1](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [84be331](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82) by Pawel Psztyc
-* Update: Updating tests configuration
- [66098d9](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55) by Pawel Psztyc
-* Breaking: Upgrading component to Polymer 3
- [daad869](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762) by Pawel Psztyc
-* New: Adding `no-actions` attributye and checking for valid JSON values
- [0095e0b](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0) by Pawel Psztyc
-* New: hasExamples not reflect to attribute
- [41b432a](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe) by Pawel
-* Breaking: Changing the API to work with new version of example generator
- [c6ce34f](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1) by Pawel
-* Update: Updating project dev dependencies.
-Bumping version so the changes will be deliver do maaster.
- [261f0af](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588) by Pawel Psztyc
-* Docs: Updating docs
- [20a4600](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05) by Pawel Psztyc
-* Update: Updating demo page to use compact model
- [097072b](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb) by Pawel Psztyc
-* Update: Adding example generator
- [b65e13c](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127) by Pawel Psztyc
-* Breaking: Updating AMF data model
- [3d397c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c) by Pawel Psztyc
-* Update: Updated Travis configuration to connect to Sauce Labs.
- [f45db4a](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed) by Pawel Psztyc
-
-
-
-## [4.0.6](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.4...4.0.6) (2019-12-03)
-
-### Build
-
-* bumping version [8710a37](https://github.com/advanced-rest-client/api-resource-example-document/commit/8710a37672d73e901294bef94cad8ca0f647f77b) by Pawel
-* bumping version [0c1b7a3](https://github.com/advanced-rest-client/api-resource-example-document/commit/0c1b7a3d0e142d461a9a8f4b00859866ccfd3f24) by Pawel Psztyc
-* bumping version [13bc2ac](https://github.com/advanced-rest-client/api-resource-example-document/commit/13bc2ac11f30b28daef093034442c07d363a176d) by Pawel
-* bumping version [e531bc2](https://github.com/advanced-rest-client/api-resource-example-document/commit/e531bc24ad410cf1ca7d9236f305d6603e1b668f) by Pawel
-* bumping version [249ff41](https://github.com/advanced-rest-client/api-resource-example-document/commit/249ff410d87566b5ddcadf27266dffbc11eee017) by Pawel
-* bumping version [cf32971](https://github.com/advanced-rest-client/api-resource-example-document/commit/cf3297113744e6ebf6d13b002b94f425a578bdb6) by Pawel Psztyc
-* bumping version [b098234](https://github.com/advanced-rest-client/api-resource-example-document/commit/b09823449ab6a8e83d431b174b41cd9c7efb17c2) by Pawel
-* bumping version [fcf95a7](https://github.com/advanced-rest-client/api-resource-example-document/commit/fcf95a7bf9c02a300d52cd5ddbb553ac46585345) by Pawel
-* bumping version [52103ea](https://github.com/advanced-rest-client/api-resource-example-document/commit/52103ead5dc1a55263a001e146e102740ba17d36) by Pawel
-
-
-### Update
-
-* fixing test [dc32eac](https://github.com/advanced-rest-client/api-resource-example-document/commit/dc32eacb1c6d8331a2d487dcc8a06ae25cbb68cf) by Pawel
-* upgrading depdnencies [a6c0316](https://github.com/advanced-rest-client/api-resource-example-document/commit/a6c031682f02e21fbd78d0ddaf42b9fb6e3dc822) by Pawel Psztyc
-* upgrading dependencies [7f39dbd](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f39dbd9ad4399e995604eb21189836998abd5c5) by Pawel
-* adding overflow to avoid pushing JSON table outside screen [4563f1e](https://github.com/advanced-rest-client/api-resource-example-document/commit/4563f1e578ffc7ec966e0f289ca617ad50a5467f) by Pawel
-* updating depdnencies [a7b1462](https://github.com/advanced-rest-client/api-resource-example-document/commit/a7b1462c1b90545173fe2b76c1f995cd78e8e444) by Pawel
-* updating SL configuration [ac51bc6](https://github.com/advanced-rest-client/api-resource-example-document/commit/ac51bc60e819ac6724b08dc3f0152eb4e5f213e4) by Pawel
-* upgrading dependencies and models [d027f25](https://github.com/advanced-rest-client/api-resource-example-document/commit/d027f25a63d31c6963a8e2edc5d2bf4818acc657) by Pawel
-* embed css styles in render method [66561f7](https://github.com/advanced-rest-client/api-resource-example-document/commit/66561f760f0ad0373ce23cceb8ff80c98cd117ef) by TwoPlusTwoOne
-* updating types [55c92c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/55c92c3ec578d6d907c638a1fdb78046ca7f4e12) by Pawel
-* adding styles to break words when rendering example [fec0ed2](https://github.com/advanced-rest-client/api-resource-example-document/commit/fec0ed2e02663a34c2f2a160c1a0262177574f68) by Pawel
-* replaced prism default theme with ARC's version [7a7565f](https://github.com/advanced-rest-client/api-resource-example-document/commit/7a7565f8f4d6b5666f5fb6f5f449edb6928e2113) by Pawel
-* upgrading project to latest ARC standards [f333ac6](https://github.com/advanced-rest-client/api-resource-example-document/commit/f333ac63039556d6c3f6a56d3eba7e6f6c7ec860) by Pawel
-
-
-### Documentation
-
-* adding component name to the demo page [d86eba1](https://github.com/advanced-rest-client/api-resource-example-document/commit/d86eba1b9dc06958a241779ad1f55bbf35e32262) by Pawel
-
-
-### Features
-
-* adding "example" title if there's more than one example [9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed917139f4a6861daf34755e3983d442803) by Pawel Psztyc
-* redesigning title with actions placed on the right hand side [c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee44438e34a4a326f094d149e633f8b7a222) by Pawel Psztyc
-* titles and buttons are now hidden for scalar values [0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622381a95e33dee971100a97632e91e2855d) by Pawel Psztyc
-
-
-### Bug Fixes
-
-* fixing IE11 support 3 [a0c2575](https://github.com/advanced-rest-client/api-resource-example-document/commit/a0c25751651a1a303f96bf9feef5fc77f0a0eb1a) by Pawel
-* fixing a typo [102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ecc678347c75e074968d98f09893f5f96bb) by Pawel Psztyc
-* adding missing `legacy` property on the document [c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d245731db14819459ff4943a3ba72516ecda4e) by Pawel
-* fixing linter errors [4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab39cd322ab612d0b061639531bfdebf5f9) by Pawel
-
-
-### Refactor
-
-* renaming `legacy` to `compatibility` [379435f](https://github.com/advanced-rest-client/api-resource-example-document/commit/379435f98060c1318d00c71f014537c1c3a32913) by Pawel
-* redesigning example to match annotations design [ee137d8](https://github.com/advanced-rest-client/api-resource-example-document/commit/ee137d860b98705ca604a853192663422ec91b2a) by Pawel
-* upgraded to AMF 4 [719c2f5](https://github.com/advanced-rest-client/api-resource-example-document/commit/719c2f5c280bddff47ecc017e7c6648d26e47d06) by Pawel
-* replacing paper with anypoint button [eda5b2b](https://github.com/advanced-rest-client/api-resource-example-document/commit/eda5b2b93cac75b6841d5fbcc7f772ae5d577f10) by Pawel
-
-
-### Testing
-
-* upgrading test configuration to try Safari tests [561a45e](https://github.com/advanced-rest-client/api-resource-example-document/commit/561a45e5f98710e210c37ae169221f6ea69c1315) by Pawel Psztyc
-* removing safari and edge - waiting to issue to be resolved [fc17522](https://github.com/advanced-rest-client/api-resource-example-document/commit/fc1752202293904d8cac52551fa688feabd469c4) by Pawel
-* removing edge until SL test fix is ready [6f84950](https://github.com/advanced-rest-client/api-resource-example-document/commit/6f84950d27d5653de9083f795780c2c207408546) by Pawel
-* fixing test configuration [7f7e12d](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f7e12d0ce8bf3a5eddfe07c08915baccdfddf3d) by Pawel
-* updating a test [70f7f3c](https://github.com/advanced-rest-client/api-resource-example-document/commit/70f7f3cce3c7eacfaf371702f8c67fae450dd4dd) by Pawel
-* adding a11y tests [7233fa1](https://github.com/advanced-rest-client/api-resource-example-document/commit/7233fa1f1bfbe9755c016523b7f4ca2b1eb1b5fd) by Pawel
-
-
-### Other
-
-* Update: Adding tests for parts styling API
- [529c525](https://github.com/advanced-rest-client/api-resource-example-document/commit/529c525b9c81406b18069a51303353ef4dd0164f) by Pawel Psztyc
-* Update: Upgrading dependencies
- [23dc455](https://github.com/advanced-rest-client/api-resource-example-document/commit/23dc4557495cc06ae8a19935449e1062bb742403) by Pawel Psztyc
-* Update: Updating typpings
- [d0b1d26](https://github.com/advanced-rest-client/api-resource-example-document/commit/d0b1d265721f0ad1e57ec84a184e4129e00dfc85) by Pawel Psztyc
-* New: Adding CSS parts styles rules and demo page
- [7ff81f2](https://github.com/advanced-rest-client/api-resource-example-document/commit/7ff81f2bfadb64f11a175a7988b346a4147870a0) by Pawel Psztyc
-* Fix: Fixing linter issue
- [7fd6cce](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fd6cce499278fab7b94b41dd18ed9d0a101b23f) by Pawel Psztyc
-* New: Adding new action / union button styles to include border
- [b475239](https://github.com/advanced-rest-client/api-resource-example-document/commit/b475239d7249b886b4fe338131ebdd29e93747dc) by Pawel Psztyc
-* Update: Updating condition checking for code value
- [7236307](https://github.com/advanced-rest-client/api-resource-example-document/commit/7236307313ea9308cadf9eb3945491db2ec24fe3) by Pawel
-* Update: Removing static `is` property
- [24da06f](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db) by Pawel Psztyc
-* Update: Regenerating AMF models after AMF upgrade
- [fa3b5cc](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a) by Pawel Psztyc
-* Update: Upgrading dependencies
- [6d9776d](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad) by Pawel Psztyc
-* Update: Upgrading AMF version and models
- [cdea7f1](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4) by Pawel Psztyc
-* Update: Updating AMF version and the models
- [327d074](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [ff0bfda](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [2abbcd7](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc) by Pawel Psztyc
-* Fix: Fixing test coverage
- [807f93b](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f) by Pawel Psztyc
-* Update: Updating import paths to match web spec
- [c725cfb](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a) by Pawel Psztyc
-* Update: Changing clipboard-copy scope
- [63beb99](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [c609091](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [b801a61](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2) by Pawel Psztyc
-* New: Adding npm ignore file
- [d80fff5](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [a62f5a1](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [84be331](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82) by Pawel Psztyc
-* Update: Updating tests configuration
- [66098d9](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55) by Pawel Psztyc
-* Breaking: Upgrading component to Polymer 3
- [daad869](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762) by Pawel Psztyc
-* New: Adding `no-actions` attributye and checking for valid JSON values
- [0095e0b](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0) by Pawel Psztyc
-* New: hasExamples not reflect to attribute
- [41b432a](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe) by Pawel
-* Breaking: Changing the API to work with new version of example generator
- [c6ce34f](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1) by Pawel
-* Update: Updating project dev dependencies.
-Bumping version so the changes will be deliver do maaster.
- [261f0af](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588) by Pawel Psztyc
-* Docs: Updating docs
- [20a4600](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05) by Pawel Psztyc
-* Update: Updating demo page to use compact model
- [097072b](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb) by Pawel Psztyc
-* Update: Adding example generator
- [b65e13c](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127) by Pawel Psztyc
-* Breaking: Updating AMF data model
- [3d397c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c) by Pawel Psztyc
-* Update: Updated Travis configuration to connect to Sauce Labs.
- [f45db4a](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed) by Pawel Psztyc
-
-
-
-## [4.0.6](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.5...4.0.6) (2019-12-18)
-
-### Build
-
-* bumping version [8710a37](https://github.com/advanced-rest-client/api-resource-example-document/commit/8710a37672d73e901294bef94cad8ca0f647f77b) by Pawel
-* bumping version [0c1b7a3](https://github.com/advanced-rest-client/api-resource-example-document/commit/0c1b7a3d0e142d461a9a8f4b00859866ccfd3f24) by Pawel Psztyc
-* bumping version [13bc2ac](https://github.com/advanced-rest-client/api-resource-example-document/commit/13bc2ac11f30b28daef093034442c07d363a176d) by Pawel
-* bumping version [e531bc2](https://github.com/advanced-rest-client/api-resource-example-document/commit/e531bc24ad410cf1ca7d9236f305d6603e1b668f) by Pawel
-* bumping version [249ff41](https://github.com/advanced-rest-client/api-resource-example-document/commit/249ff410d87566b5ddcadf27266dffbc11eee017) by Pawel
-* bumping version [cf32971](https://github.com/advanced-rest-client/api-resource-example-document/commit/cf3297113744e6ebf6d13b002b94f425a578bdb6) by Pawel Psztyc
-* bumping version [b098234](https://github.com/advanced-rest-client/api-resource-example-document/commit/b09823449ab6a8e83d431b174b41cd9c7efb17c2) by Pawel
-* bumping version [fcf95a7](https://github.com/advanced-rest-client/api-resource-example-document/commit/fcf95a7bf9c02a300d52cd5ddbb553ac46585345) by Pawel
-* bumping version [52103ea](https://github.com/advanced-rest-client/api-resource-example-document/commit/52103ead5dc1a55263a001e146e102740ba17d36) by Pawel
-
-
-### Update
-
-* updating dependnecies [4f0e8e7](https://github.com/advanced-rest-client/api-resource-example-document/commit/4f0e8e753f5ff416437f064277895952006cef35) by Pawel Psztyc
-* fixing test [dc32eac](https://github.com/advanced-rest-client/api-resource-example-document/commit/dc32eacb1c6d8331a2d487dcc8a06ae25cbb68cf) by Pawel
-* upgrading depdnencies [a6c0316](https://github.com/advanced-rest-client/api-resource-example-document/commit/a6c031682f02e21fbd78d0ddaf42b9fb6e3dc822) by Pawel Psztyc
-* upgrading dependencies [7f39dbd](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f39dbd9ad4399e995604eb21189836998abd5c5) by Pawel
-* adding overflow to avoid pushing JSON table outside screen [4563f1e](https://github.com/advanced-rest-client/api-resource-example-document/commit/4563f1e578ffc7ec966e0f289ca617ad50a5467f) by Pawel
-* updating depdnencies [a7b1462](https://github.com/advanced-rest-client/api-resource-example-document/commit/a7b1462c1b90545173fe2b76c1f995cd78e8e444) by Pawel
-* updating SL configuration [ac51bc6](https://github.com/advanced-rest-client/api-resource-example-document/commit/ac51bc60e819ac6724b08dc3f0152eb4e5f213e4) by Pawel
-* upgrading dependencies and models [d027f25](https://github.com/advanced-rest-client/api-resource-example-document/commit/d027f25a63d31c6963a8e2edc5d2bf4818acc657) by Pawel
-* embed css styles in render method [66561f7](https://github.com/advanced-rest-client/api-resource-example-document/commit/66561f760f0ad0373ce23cceb8ff80c98cd117ef) by TwoPlusTwoOne
-* updating types [55c92c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/55c92c3ec578d6d907c638a1fdb78046ca7f4e12) by Pawel
-* adding styles to break words when rendering example [fec0ed2](https://github.com/advanced-rest-client/api-resource-example-document/commit/fec0ed2e02663a34c2f2a160c1a0262177574f68) by Pawel
-* replaced prism default theme with ARC's version [7a7565f](https://github.com/advanced-rest-client/api-resource-example-document/commit/7a7565f8f4d6b5666f5fb6f5f449edb6928e2113) by Pawel
-* upgrading project to latest ARC standards [f333ac6](https://github.com/advanced-rest-client/api-resource-example-document/commit/f333ac63039556d6c3f6a56d3eba7e6f6c7ec860) by Pawel
-
-
-### Documentation
-
-* adding descriptions to examples [d6af2e7](https://github.com/advanced-rest-client/api-resource-example-document/commit/d6af2e7b095ced5df2718ae322ee9f2bee2b6546) by Pawel Psztyc
-* adding component name to the demo page [d86eba1](https://github.com/advanced-rest-client/api-resource-example-document/commit/d86eba1b9dc06958a241779ad1f55bbf35e32262) by Pawel
-
-
-### Features
-
-* adding "example" title if there's more than one example [9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed917139f4a6861daf34755e3983d442803) by Pawel Psztyc
-* redesigning title with actions placed on the right hand side [c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee44438e34a4a326f094d149e633f8b7a222) by Pawel Psztyc
-* titles and buttons are now hidden for scalar values [0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622381a95e33dee971100a97632e91e2855d) by Pawel Psztyc
-
-
-### Bug Fixes
-
-* fixing IE11 support 3 [a0c2575](https://github.com/advanced-rest-client/api-resource-example-document/commit/a0c25751651a1a303f96bf9feef5fc77f0a0eb1a) by Pawel
-* fixing a typo [102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ecc678347c75e074968d98f09893f5f96bb) by Pawel Psztyc
-* adding missing `legacy` property on the document [c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d245731db14819459ff4943a3ba72516ecda4e) by Pawel
-* fixing linter errors [4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab39cd322ab612d0b061639531bfdebf5f9) by Pawel
-
-
-### Refactor
-
-* renaming `legacy` to `compatibility` [379435f](https://github.com/advanced-rest-client/api-resource-example-document/commit/379435f98060c1318d00c71f014537c1c3a32913) by Pawel
-* redesigning example to match annotations design [ee137d8](https://github.com/advanced-rest-client/api-resource-example-document/commit/ee137d860b98705ca604a853192663422ec91b2a) by Pawel
-* upgraded to AMF 4 [719c2f5](https://github.com/advanced-rest-client/api-resource-example-document/commit/719c2f5c280bddff47ecc017e7c6648d26e47d06) by Pawel
-* replacing paper with anypoint button [eda5b2b](https://github.com/advanced-rest-client/api-resource-example-document/commit/eda5b2b93cac75b6841d5fbcc7f772ae5d577f10) by Pawel
-
-
-### Testing
-
-* upgrading test configuration to try Safari tests [561a45e](https://github.com/advanced-rest-client/api-resource-example-document/commit/561a45e5f98710e210c37ae169221f6ea69c1315) by Pawel Psztyc
-* removing safari and edge - waiting to issue to be resolved [fc17522](https://github.com/advanced-rest-client/api-resource-example-document/commit/fc1752202293904d8cac52551fa688feabd469c4) by Pawel
-* removing edge until SL test fix is ready [6f84950](https://github.com/advanced-rest-client/api-resource-example-document/commit/6f84950d27d5653de9083f795780c2c207408546) by Pawel
-* fixing test configuration [7f7e12d](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f7e12d0ce8bf3a5eddfe07c08915baccdfddf3d) by Pawel
-* updating a test [70f7f3c](https://github.com/advanced-rest-client/api-resource-example-document/commit/70f7f3cce3c7eacfaf371702f8c67fae450dd4dd) by Pawel
-* adding a11y tests [7233fa1](https://github.com/advanced-rest-client/api-resource-example-document/commit/7233fa1f1bfbe9755c016523b7f4ca2b1eb1b5fd) by Pawel
-
-
-### Other
-
-* Update: Adding tests for parts styling API
- [529c525](https://github.com/advanced-rest-client/api-resource-example-document/commit/529c525b9c81406b18069a51303353ef4dd0164f) by Pawel Psztyc
-* Update: Upgrading dependencies
- [23dc455](https://github.com/advanced-rest-client/api-resource-example-document/commit/23dc4557495cc06ae8a19935449e1062bb742403) by Pawel Psztyc
-* Update: Updating typpings
- [d0b1d26](https://github.com/advanced-rest-client/api-resource-example-document/commit/d0b1d265721f0ad1e57ec84a184e4129e00dfc85) by Pawel Psztyc
-* New: Adding CSS parts styles rules and demo page
- [7ff81f2](https://github.com/advanced-rest-client/api-resource-example-document/commit/7ff81f2bfadb64f11a175a7988b346a4147870a0) by Pawel Psztyc
-* Fix: Fixing linter issue
- [7fd6cce](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fd6cce499278fab7b94b41dd18ed9d0a101b23f) by Pawel Psztyc
-* New: Adding new action / union button styles to include border
- [b475239](https://github.com/advanced-rest-client/api-resource-example-document/commit/b475239d7249b886b4fe338131ebdd29e93747dc) by Pawel Psztyc
-* Update: Updating condition checking for code value
- [7236307](https://github.com/advanced-rest-client/api-resource-example-document/commit/7236307313ea9308cadf9eb3945491db2ec24fe3) by Pawel
-* Update: Removing static `is` property
- [24da06f](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db) by Pawel Psztyc
-* Update: Regenerating AMF models after AMF upgrade
- [fa3b5cc](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a) by Pawel Psztyc
-* Update: Upgrading dependencies
- [6d9776d](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad) by Pawel Psztyc
-* Update: Upgrading AMF version and models
- [cdea7f1](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4) by Pawel Psztyc
-* Update: Updating AMF version and the models
- [327d074](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [ff0bfda](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [2abbcd7](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc) by Pawel Psztyc
-* Fix: Fixing test coverage
- [807f93b](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f) by Pawel Psztyc
-* Update: Updating import paths to match web spec
- [c725cfb](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a) by Pawel Psztyc
-* Update: Changing clipboard-copy scope
- [63beb99](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [c609091](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [b801a61](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2) by Pawel Psztyc
-* New: Adding npm ignore file
- [d80fff5](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [a62f5a1](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [84be331](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82) by Pawel Psztyc
-* Update: Updating tests configuration
- [66098d9](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55) by Pawel Psztyc
-* Breaking: Upgrading component to Polymer 3
- [daad869](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762) by Pawel Psztyc
-* New: Adding `no-actions` attributye and checking for valid JSON values
- [0095e0b](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0) by Pawel Psztyc
-* New: hasExamples not reflect to attribute
- [41b432a](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe) by Pawel
-* Breaking: Changing the API to work with new version of example generator
- [c6ce34f](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1) by Pawel
-* Update: Updating project dev dependencies.
-Bumping version so the changes will be deliver do maaster.
- [261f0af](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588) by Pawel Psztyc
-* Docs: Updating docs
- [20a4600](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05) by Pawel Psztyc
-* Update: Updating demo page to use compact model
- [097072b](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb) by Pawel Psztyc
-* Update: Adding example generator
- [b65e13c](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127) by Pawel Psztyc
-* Breaking: Updating AMF data model
- [3d397c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c) by Pawel Psztyc
-* Update: Updated Travis configuration to connect to Sauce Labs.
- [f45db4a](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed) by Pawel Psztyc
-
-
-
-## [4.0.7](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.5...4.0.7) (2020-03-16)
-
-### Build
-
-* bumping version [b77581c](https://github.com/advanced-rest-client/api-resource-example-document/commit/b77581c174512339624408c4c21a156cf952d0e2) by Pawel Psztyc
-* bumping version [8710a37](https://github.com/advanced-rest-client/api-resource-example-document/commit/8710a37672d73e901294bef94cad8ca0f647f77b) by Pawel
-* bumping version [0c1b7a3](https://github.com/advanced-rest-client/api-resource-example-document/commit/0c1b7a3d0e142d461a9a8f4b00859866ccfd3f24) by Pawel Psztyc
-* bumping version [13bc2ac](https://github.com/advanced-rest-client/api-resource-example-document/commit/13bc2ac11f30b28daef093034442c07d363a176d) by Pawel
-* bumping version [e531bc2](https://github.com/advanced-rest-client/api-resource-example-document/commit/e531bc24ad410cf1ca7d9236f305d6603e1b668f) by Pawel
-* bumping version [249ff41](https://github.com/advanced-rest-client/api-resource-example-document/commit/249ff410d87566b5ddcadf27266dffbc11eee017) by Pawel
-* bumping version [cf32971](https://github.com/advanced-rest-client/api-resource-example-document/commit/cf3297113744e6ebf6d13b002b94f425a578bdb6) by Pawel Psztyc
-* bumping version [b098234](https://github.com/advanced-rest-client/api-resource-example-document/commit/b09823449ab6a8e83d431b174b41cd9c7efb17c2) by Pawel
-* bumping version [fcf95a7](https://github.com/advanced-rest-client/api-resource-example-document/commit/fcf95a7bf9c02a300d52cd5ddbb553ac46585345) by Pawel
-* bumping version [52103ea](https://github.com/advanced-rest-client/api-resource-example-document/commit/52103ead5dc1a55263a001e146e102740ba17d36) by Pawel
-
-
-### Update
-
-* removing demo api model files from the repository [e800852](https://github.com/advanced-rest-client/api-resource-example-document/commit/e800852706fabf75e63c87f088bb8cc849e727a2) by Pawel Psztyc
-* removing git add from lint staged [a98bcfd](https://github.com/advanced-rest-client/api-resource-example-document/commit/a98bcfd478fde7e0485c96ad9b1d0a4347531bec) by Pawel Psztyc
-* upgrading dependencies [a986c48](https://github.com/advanced-rest-client/api-resource-example-document/commit/a986c483ae60c1fbfb24e29e7e38c4a094f69978) by Pawel Psztyc
-* bump amf-helper-mixin and amf version to 4.0.6 [8b207c0](https://github.com/advanced-rest-client/api-resource-example-document/commit/8b207c03832f7297003c62e727878891d04765a6) by Leandro Bauret
-* updating dependnecies [4f0e8e7](https://github.com/advanced-rest-client/api-resource-example-document/commit/4f0e8e753f5ff416437f064277895952006cef35) by Pawel Psztyc
-* fixing test [dc32eac](https://github.com/advanced-rest-client/api-resource-example-document/commit/dc32eacb1c6d8331a2d487dcc8a06ae25cbb68cf) by Pawel
-* upgrading depdnencies [a6c0316](https://github.com/advanced-rest-client/api-resource-example-document/commit/a6c031682f02e21fbd78d0ddaf42b9fb6e3dc822) by Pawel Psztyc
-* upgrading dependencies [7f39dbd](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f39dbd9ad4399e995604eb21189836998abd5c5) by Pawel
-* adding overflow to avoid pushing JSON table outside screen [4563f1e](https://github.com/advanced-rest-client/api-resource-example-document/commit/4563f1e578ffc7ec966e0f289ca617ad50a5467f) by Pawel
-* updating depdnencies [a7b1462](https://github.com/advanced-rest-client/api-resource-example-document/commit/a7b1462c1b90545173fe2b76c1f995cd78e8e444) by Pawel
-* updating SL configuration [ac51bc6](https://github.com/advanced-rest-client/api-resource-example-document/commit/ac51bc60e819ac6724b08dc3f0152eb4e5f213e4) by Pawel
-* upgrading dependencies and models [d027f25](https://github.com/advanced-rest-client/api-resource-example-document/commit/d027f25a63d31c6963a8e2edc5d2bf4818acc657) by Pawel
-* embed css styles in render method [66561f7](https://github.com/advanced-rest-client/api-resource-example-document/commit/66561f760f0ad0373ce23cceb8ff80c98cd117ef) by TwoPlusTwoOne
-* updating types [55c92c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/55c92c3ec578d6d907c638a1fdb78046ca7f4e12) by Pawel
-* adding styles to break words when rendering example [fec0ed2](https://github.com/advanced-rest-client/api-resource-example-document/commit/fec0ed2e02663a34c2f2a160c1a0262177574f68) by Pawel
-* replaced prism default theme with ARC's version [7a7565f](https://github.com/advanced-rest-client/api-resource-example-document/commit/7a7565f8f4d6b5666f5fb6f5f449edb6928e2113) by Pawel
-* upgrading project to latest ARC standards [f333ac6](https://github.com/advanced-rest-client/api-resource-example-document/commit/f333ac63039556d6c3f6a56d3eba7e6f6c7ec860) by Pawel
-
-
-### Documentation
-
-* adding descriptions to examples [d6af2e7](https://github.com/advanced-rest-client/api-resource-example-document/commit/d6af2e7b095ced5df2718ae322ee9f2bee2b6546) by Pawel Psztyc
-* adding component name to the demo page [d86eba1](https://github.com/advanced-rest-client/api-resource-example-document/commit/d86eba1b9dc06958a241779ad1f55bbf35e32262) by Pawel
-
-
-### Features
-
-* adding "example" title if there's more than one example [9b80fed](https://github.com/advanced-rest-client/api-resource-example-document/commit/9b80fed917139f4a6861daf34755e3983d442803) by Pawel Psztyc
-* redesigning title with actions placed on the right hand side [c085ee4](https://github.com/advanced-rest-client/api-resource-example-document/commit/c085ee44438e34a4a326f094d149e633f8b7a222) by Pawel Psztyc
-* titles and buttons are now hidden for scalar values [0a82622](https://github.com/advanced-rest-client/api-resource-example-document/commit/0a82622381a95e33dee971100a97632e91e2855d) by Pawel Psztyc
-
-
-### Bug Fixes
-
-* fixing IE11 support 3 [a0c2575](https://github.com/advanced-rest-client/api-resource-example-document/commit/a0c25751651a1a303f96bf9feef5fc77f0a0eb1a) by Pawel
-* fixing a typo [102c4ec](https://github.com/advanced-rest-client/api-resource-example-document/commit/102c4ecc678347c75e074968d98f09893f5f96bb) by Pawel Psztyc
-* adding missing `legacy` property on the document [c9d2457](https://github.com/advanced-rest-client/api-resource-example-document/commit/c9d245731db14819459ff4943a3ba72516ecda4e) by Pawel
-* fixing linter errors [4be70ab](https://github.com/advanced-rest-client/api-resource-example-document/commit/4be70ab39cd322ab612d0b061639531bfdebf5f9) by Pawel
-
-
-### Refactor
-
-* renaming `legacy` to `compatibility` [379435f](https://github.com/advanced-rest-client/api-resource-example-document/commit/379435f98060c1318d00c71f014537c1c3a32913) by Pawel
-* redesigning example to match annotations design [ee137d8](https://github.com/advanced-rest-client/api-resource-example-document/commit/ee137d860b98705ca604a853192663422ec91b2a) by Pawel
-* upgraded to AMF 4 [719c2f5](https://github.com/advanced-rest-client/api-resource-example-document/commit/719c2f5c280bddff47ecc017e7c6648d26e47d06) by Pawel
-* replacing paper with anypoint button [eda5b2b](https://github.com/advanced-rest-client/api-resource-example-document/commit/eda5b2b93cac75b6841d5fbcc7f772ae5d577f10) by Pawel
-
-
-### Testing
-
-* adding ignored rule again [7fb05ae](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fb05aea9e4bc5d6df76ee21536720e3e09eb0f2) by Pawel Psztyc
-* adding color contrast to ignored a11y rules [ef9acbd](https://github.com/advanced-rest-client/api-resource-example-document/commit/ef9acbd5baecb447b2ae386ccf77a8a6e492318c) by Pawel Psztyc
-* upgrading test configuration to try Safari tests [561a45e](https://github.com/advanced-rest-client/api-resource-example-document/commit/561a45e5f98710e210c37ae169221f6ea69c1315) by Pawel Psztyc
-* removing safari and edge - waiting to issue to be resolved [fc17522](https://github.com/advanced-rest-client/api-resource-example-document/commit/fc1752202293904d8cac52551fa688feabd469c4) by Pawel
-* removing edge until SL test fix is ready [6f84950](https://github.com/advanced-rest-client/api-resource-example-document/commit/6f84950d27d5653de9083f795780c2c207408546) by Pawel
-* fixing test configuration [7f7e12d](https://github.com/advanced-rest-client/api-resource-example-document/commit/7f7e12d0ce8bf3a5eddfe07c08915baccdfddf3d) by Pawel
-* updating a test [70f7f3c](https://github.com/advanced-rest-client/api-resource-example-document/commit/70f7f3cce3c7eacfaf371702f8c67fae450dd4dd) by Pawel
-* adding a11y tests [7233fa1](https://github.com/advanced-rest-client/api-resource-example-document/commit/7233fa1f1bfbe9755c016523b7f4ca2b1eb1b5fd) by Pawel
-
-
-### Other
-
-* Update: Adding tests for parts styling API
- [529c525](https://github.com/advanced-rest-client/api-resource-example-document/commit/529c525b9c81406b18069a51303353ef4dd0164f) by Pawel Psztyc
-* Update: Upgrading dependencies
- [23dc455](https://github.com/advanced-rest-client/api-resource-example-document/commit/23dc4557495cc06ae8a19935449e1062bb742403) by Pawel Psztyc
-* Update: Updating typpings
- [d0b1d26](https://github.com/advanced-rest-client/api-resource-example-document/commit/d0b1d265721f0ad1e57ec84a184e4129e00dfc85) by Pawel Psztyc
-* New: Adding CSS parts styles rules and demo page
- [7ff81f2](https://github.com/advanced-rest-client/api-resource-example-document/commit/7ff81f2bfadb64f11a175a7988b346a4147870a0) by Pawel Psztyc
-* Fix: Fixing linter issue
- [7fd6cce](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fd6cce499278fab7b94b41dd18ed9d0a101b23f) by Pawel Psztyc
-* New: Adding new action / union button styles to include border
- [b475239](https://github.com/advanced-rest-client/api-resource-example-document/commit/b475239d7249b886b4fe338131ebdd29e93747dc) by Pawel Psztyc
-* Update: Updating condition checking for code value
- [7236307](https://github.com/advanced-rest-client/api-resource-example-document/commit/7236307313ea9308cadf9eb3945491db2ec24fe3) by Pawel
-* Update: Removing static `is` property
- [24da06f](https://github.com/advanced-rest-client/api-resource-example-document/commit/24da06f91051a399cd13129f1b9cb2ebd9d109db) by Pawel Psztyc
-* Update: Regenerating AMF models after AMF upgrade
- [fa3b5cc](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa3b5cc4d6607ca8e6075bf8eb2100a53dbacd0a) by Pawel Psztyc
-* Update: Upgrading dependencies
- [6d9776d](https://github.com/advanced-rest-client/api-resource-example-document/commit/6d9776d5bab062b3ff473bca212118fbabbabcad) by Pawel Psztyc
-* Update: Upgrading AMF version and models
- [cdea7f1](https://github.com/advanced-rest-client/api-resource-example-document/commit/cdea7f17ba56180b12bcd41ab69401faaed71cb4) by Pawel Psztyc
-* Update: Updating AMF version and the models
- [327d074](https://github.com/advanced-rest-client/api-resource-example-document/commit/327d074712fb80fdc03c0fb8dbbad80640b0cff4) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [ff0bfda](https://github.com/advanced-rest-client/api-resource-example-document/commit/ff0bfda9893b7f823f0b57c45b62a952c84cd173) by Pawel Psztyc
-* New: Adding `payloadId` to generate examples from Payload definition
- [2abbcd7](https://github.com/advanced-rest-client/api-resource-example-document/commit/2abbcd7269d51d07a033430d93bdba56f190ecbc) by Pawel Psztyc
-* Fix: Fixing test coverage
- [807f93b](https://github.com/advanced-rest-client/api-resource-example-document/commit/807f93bb94d8e14a1b1b003da5791e78a957577f) by Pawel Psztyc
-* Update: Updating import paths to match web spec
- [c725cfb](https://github.com/advanced-rest-client/api-resource-example-document/commit/c725cfb6f1d638d14ccc035cc07b3313151a673a) by Pawel Psztyc
-* Update: Changing clipboard-copy scope
- [63beb99](https://github.com/advanced-rest-client/api-resource-example-document/commit/63beb9944d9658263a663d30a641f09c90911e35) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [c609091](https://github.com/advanced-rest-client/api-resource-example-document/commit/c60909158cb34f2dca92814707e7908107ad7270) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [b801a61](https://github.com/advanced-rest-client/api-resource-example-document/commit/b801a61d7472e60a4256ec2088c5e40dde8186a2) by Pawel Psztyc
-* New: Adding npm ignore file
- [d80fff5](https://github.com/advanced-rest-client/api-resource-example-document/commit/d80fff5835d0baaaf6a184e3fcd852ee98848d5d) by Pawel Psztyc
-* New: Adding local storage support recognition.
- [a62f5a1](https://github.com/advanced-rest-client/api-resource-example-document/commit/a62f5a10da01f883bab0cb70e513c12ad00bf956) by Pawel Psztyc
-* Update: Adding `noAutho` to observable list.
- [84be331](https://github.com/advanced-rest-client/api-resource-example-document/commit/84be331d8cd4fca9083a3839aaf1764f3d6d2c82) by Pawel Psztyc
-* Update: Updating tests configuration
- [66098d9](https://github.com/advanced-rest-client/api-resource-example-document/commit/66098d9ee6c96e9ea38caeff02acd661a471ba55) by Pawel Psztyc
-* Breaking: Upgrading component to Polymer 3
- [daad869](https://github.com/advanced-rest-client/api-resource-example-document/commit/daad86972b5c866845d384f6c7ee95a956113762) by Pawel Psztyc
-* New: Adding `no-actions` attributye and checking for valid JSON values
- [0095e0b](https://github.com/advanced-rest-client/api-resource-example-document/commit/0095e0bb228c8a4827b7f91af9b7ab8cfd5da1d0) by Pawel Psztyc
-* New: hasExamples not reflect to attribute
- [41b432a](https://github.com/advanced-rest-client/api-resource-example-document/commit/41b432a6a01ff1f43f2693d526a54bc5c39e89fe) by Pawel
-* Breaking: Changing the API to work with new version of example generator
- [c6ce34f](https://github.com/advanced-rest-client/api-resource-example-document/commit/c6ce34f0675489fac1e956819230c3347aafe0b1) by Pawel
-* Update: Updating project dev dependencies.
-Bumping version so the changes will be deliver do maaster.
- [261f0af](https://github.com/advanced-rest-client/api-resource-example-document/commit/261f0af8daa11cb7a21c986e202ee0830e491588) by Pawel Psztyc
-* Docs: Updating docs
- [20a4600](https://github.com/advanced-rest-client/api-resource-example-document/commit/20a4600e58ac34ac60bfeb4a66e7def4c0f48c05) by Pawel Psztyc
-* Update: Updating demo page to use compact model
- [097072b](https://github.com/advanced-rest-client/api-resource-example-document/commit/097072b62011164b595821d882a9b334309069bb) by Pawel Psztyc
-* Update: Adding example generator
- [b65e13c](https://github.com/advanced-rest-client/api-resource-example-document/commit/b65e13cdcc5dcf788d7b883db086d80a68829127) by Pawel Psztyc
-* Breaking: Updating AMF data model
- [3d397c3](https://github.com/advanced-rest-client/api-resource-example-document/commit/3d397c3e178a6010a79871f01c542549eeb2c31c) by Pawel Psztyc
-* Update: Updated Travis configuration to connect to Sauce Labs.
- [f45db4a](https://github.com/advanced-rest-client/api-resource-example-document/commit/f45db4aa1fe547b859225eb2b073881599410eed) by Pawel Psztyc
-
-
-
-## [4.0.8](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.6...4.0.8) (2020-04-25)
-
-### Build
-
-* bumping version [1b54d5a](https://github.com/advanced-rest-client/api-resource-example-document/commit/1b54d5ac77004ce00927cc96c7f3a92771504063) by Pawel
-* bumping version [b77581c](https://github.com/advanced-rest-client/api-resource-example-document/commit/b77581c174512339624408c4c21a156cf952d0e2) by Pawel Psztyc
-
-
-### Update
-
-* adding types support [46e1250](https://github.com/advanced-rest-client/api-resource-example-document/commit/46e1250e0a308b685f97d0c41015e326bbdc2ffd) by Pawel
-* upgrading demo page [509971a](https://github.com/advanced-rest-client/api-resource-example-document/commit/509971abe08601140d4fbbab79c3427acf9e84fa) by Pawel
-* upgrading example generator [ad0a335](https://github.com/advanced-rest-client/api-resource-example-document/commit/ad0a335b3a56c06c6483016efebd8faf15062f48) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [ba44b9d](https://github.com/advanced-rest-client/api-resource-example-document/commit/ba44b9da33966d1b84773591236d1b3d4d76c7cf) by Ci agent
-* removing demo api model files from the repository [e800852](https://github.com/advanced-rest-client/api-resource-example-document/commit/e800852706fabf75e63c87f088bb8cc849e727a2) by Pawel Psztyc
-* removing git add from lint staged [a98bcfd](https://github.com/advanced-rest-client/api-resource-example-document/commit/a98bcfd478fde7e0485c96ad9b1d0a4347531bec) by Pawel Psztyc
-* upgrading dependencies [a986c48](https://github.com/advanced-rest-client/api-resource-example-document/commit/a986c483ae60c1fbfb24e29e7e38c4a094f69978) by Pawel Psztyc
-* bump amf-helper-mixin and amf version to 4.0.6 [8b207c0](https://github.com/advanced-rest-client/api-resource-example-document/commit/8b207c03832f7297003c62e727878891d04765a6) by Leandro Bauret
-* updating dependnecies [4f0e8e7](https://github.com/advanced-rest-client/api-resource-example-document/commit/4f0e8e753f5ff416437f064277895952006cef35) by Pawel Psztyc
-
-
-### Documentation
-
-* updating travis badge [fa5342b](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa5342b3a46bd70a3a283a99f1b4690dc1e3c588) by Pawel
-* adding descriptions to examples [d6af2e7](https://github.com/advanced-rest-client/api-resource-example-document/commit/d6af2e7b095ced5df2718ae322ee9f2bee2b6546) by Pawel Psztyc
-
-
-### Testing
-
-* adding ignored rule again [7fb05ae](https://github.com/advanced-rest-client/api-resource-example-document/commit/7fb05aea9e4bc5d6df76ee21536720e3e09eb0f2) by Pawel Psztyc
-* adding color contrast to ignored a11y rules [ef9acbd](https://github.com/advanced-rest-client/api-resource-example-document/commit/ef9acbd5baecb447b2ae386ccf77a8a6e492318c) by Pawel Psztyc
-
-
-
-## [4.1.0](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.7...4.1.0) (2020-06-30)
-
-### Build
-
-* bumping version [1b54d5a](https://github.com/advanced-rest-client/api-resource-example-document/commit/1b54d5ac77004ce00927cc96c7f3a92771504063) by Pawel
-
-
-### Update
-
-* [ci skip] automated merge master->stage. syncing main branches [ea0b2b2](https://github.com/advanced-rest-client/api-resource-example-document/commit/ea0b2b2e293c65d0c2ac4f8689c5057e886e7a4a) by Ci agent
-* adding types support [46e1250](https://github.com/advanced-rest-client/api-resource-example-document/commit/46e1250e0a308b685f97d0c41015e326bbdc2ffd) by Pawel
-* upgrading demo page [509971a](https://github.com/advanced-rest-client/api-resource-example-document/commit/509971abe08601140d4fbbab79c3427acf9e84fa) by Pawel
-* upgrading example generator [ad0a335](https://github.com/advanced-rest-client/api-resource-example-document/commit/ad0a335b3a56c06c6483016efebd8faf15062f48) by Pawel
-* [ci skip] automated merge master->stage. syncing main branches [ba44b9d](https://github.com/advanced-rest-client/api-resource-example-document/commit/ba44b9da33966d1b84773591236d1b3d4d76c7cf) by Ci agent
-
-
-### Documentation
-
-* updating travis badge [fa5342b](https://github.com/advanced-rest-client/api-resource-example-document/commit/fa5342b3a46bd70a3a283a99f1b4690dc1e3c588) by Pawel
-
-
-
-## [4.1.0](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.8...4.1.0) (2020-06-30)
-
-### Update
-
-* [ci skip] automated merge master->stage. syncing main branches [16fd51d](https://github.com/advanced-rest-client/api-resource-example-document/commit/16fd51d09252242a5fa4f4e98d1634785a2df4c6) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [ea0b2b2](https://github.com/advanced-rest-client/api-resource-example-document/commit/ea0b2b2e293c65d0c2ac4f8689c5057e886e7a4a) by Ci agent
-
-
-
-## [4.1.1](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.0.8...4.1.1) (2020-07-30)
-
-### Build
-
-* bump version [8be779f](https://github.com/advanced-rest-client/api-resource-example-document/commit/8be779fca0f06f578c71e5cd1b0fe443706b041c) by Carolina Wright
-
-
-### Update
-
-* [ci skip] automated merge master->stage. syncing main branches [17d323e](https://github.com/advanced-rest-client/api-resource-example-document/commit/17d323e6335ac095c11d95ab9009ab0ebe1c8f89) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [16fd51d](https://github.com/advanced-rest-client/api-resource-example-document/commit/16fd51d09252242a5fa4f4e98d1634785a2df4c6) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [ea0b2b2](https://github.com/advanced-rest-client/api-resource-example-document/commit/ea0b2b2e293c65d0c2ac4f8689c5057e886e7a4a) by Ci agent
-
-
-### Bug Fixes
-
-* apic-348 render json table for example when value is json [91b081f](https://github.com/advanced-rest-client/api-resource-example-document/commit/91b081f43c178c2f5f3ff373eb1df3e8d09832ad) by Carolina Wright
-
-
-### Testing
-
-* render code wrapper or json table depending on example value [a854ccc](https://github.com/advanced-rest-client/api-resource-example-document/commit/a854ccc68f54638bd0c9a1ecf711f705090f7aac) by Carolina Wright
-
-
-
-## [4.1.2](https://github.com/advanced-rest-client/api-resource-example-document/compare/4.1.0...4.1.2) (2021-01-12)
-
-### Build
-
-* bump version [8be779f](https://github.com/advanced-rest-client/api-resource-example-document/commit/8be779fca0f06f578c71e5cd1b0fe443706b041c) by Carolina Wright
-
-
-### Update
-
-* updating dependencies and types [75b62d3](https://github.com/advanced-rest-client/api-resource-example-document/commit/75b62d3d693f1f4fcf3674f12860c19b721730e7) by Pawel Psztyc
-* [ci skip] automated merge master->stage. syncing main branches [cb4b6f7](https://github.com/advanced-rest-client/api-resource-example-document/commit/cb4b6f7631cac4ef0bb1a170e87f742c13baa14b) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [17d323e](https://github.com/advanced-rest-client/api-resource-example-document/commit/17d323e6335ac095c11d95ab9009ab0ebe1c8f89) by Ci agent
-* [ci skip] automated merge master->stage. syncing main branches [16fd51d](https://github.com/advanced-rest-client/api-resource-example-document/commit/16fd51d09252242a5fa4f4e98d1634785a2df4c6) by Ci agent
-
-
-### Bug Fixes
-
-* apic-348 render json table for example when value is json [91b081f](https://github.com/advanced-rest-client/api-resource-example-document/commit/91b081f43c178c2f5f3ff373eb1df3e8d09832ad) by Carolina Wright
-
-
-### Testing
-
-* render code wrapper or json table depending on example value [a854ccc](https://github.com/advanced-rest-client/api-resource-example-document/commit/a854ccc68f54638bd0c9a1ecf711f705090f7aac) by Carolina Wright
-
-
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
deleted file mode 100644
index 6c7da44..0000000
--- a/CONTRIBUTING.md
+++ /dev/null
@@ -1,74 +0,0 @@
-# Guide for Contributors
-
-The Advanced REST client is open and we encourage the community to contribute in the project. However, it is very important to follow couple of simple rules when you create an issue report or send a pull request.
-
-## Issue reporting
-**If this is feature request**, please provide a clear description of the feature. I've created a [document][87714bdc] that may help you fill up a feature request. But basically you should answer this questions:
-
-- Who will benefit from this feature? _("Someone who is trying to...")_
-- What's the use cases (when the feature will be used)? _("When the HTTP response is...")_
-- What the user gain by having this feature? _("I should be able to see...")_
-
-An overview of the feature would be nice as well.
-
-**When you're filling a bug report**, please be as much specific as you can and:
-
-- A clear description of the bug, logs if available and your expectations. You're welcome to use following template:
-```markdown
-The send button causes the app to close itself.
-
-## Expected outcome
-The app is not closing itself when I try to send a request.
-
-## Actual outcome
-After click it is working for couple of second and the it closes itself.
-
-# Versions
-App: 1.2.3 (check it in app's about page)
-Chrome: Stable (or) 47.0.111.111 (check it in Chrome's about page)
-
-# Steps to reproduce
-1. Turn off CodeMirror
-2. Set method to "PUT"
-3. Use "raw" tab for both payload and headers
-4. Paste following data into the headers field: ...
-5. Paste following data into the payload field: ...
-6. Run the request.
-```
-
-## Submitting Pull Requests
-**While developing**, be sure that you follow the [design guidelines] for ARC.
-
-**Before creating a pull request**, fill up `changelog.md` file inside the elements folder. It is the best way of keeping track of change reasons. Try be very specific and put there only essential information about the changes.
-
-Then a good idea is to test your code. See testing paragraph in the dev-start file. It will save all of us a lot of trouble.
-
-Please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with ARC authors and community before diving into a pull request.
-
-When submitting pull requests, please provide:
-1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues using the following syntax:
-
- ```markdown
- (For a single issue)
- Fixes #20
-
- (For multiple issues)
- Fixes #32, #40
- ```
- Github automatically close the issues after merging it to the master. So please, keep the format.
-
- 2. **A succinct description of the design** used to fix any related issues. For example:
-
- ```markdown
- This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
- ```
-
- 3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered.
-
-If a proposed change contains multiple commits, please [squash commits](http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change.
-
-_Part of this document has been copied from Polymer repository. Thanks guys!_
-
-
- [87714bdc]: https://docs.google.com/document/d/10OPWl9Hagk6Oz--VUztQBTOpm3QP2Vv__PrH3zZ7wFQ/edit?usp=sharing "Feature request file"
- [Design guidelines]:
diff --git a/README.md b/README.md
index f4d5577..bbc2c81 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,8 @@
-[](https://www.npmjs.com/package/@api-components/api-resource-example-document)
-
-[](https://travis-ci.org/advanced-rest-client/api-resource-example-document)
+# api-resource-example-document
-[](https://www.webcomponents.org/element/advanced-rest-client/api-resource-example-document)
+[](https://www.npmjs.com/package/@api-components/api-resource-example-document)
-# api-resource-example-document
+[](https://github.com/advanced-rest-client/api-resource-example-document/actions/workflows/deployment.yml)
A viewer for examples in a resource based on AMF model
@@ -20,7 +18,8 @@ For compatibility with previous model version use `3.x.x` version of the compone
## Usage
### Installation
-```
+
+```sh
npm install --save @api-components/api-resource-example-document
```
@@ -73,10 +72,7 @@ npm start
```
### Running the tests
+
```sh
npm test
```
-
-### API components
-
-This components is a part of [API components ecosystem](https://elements.advancedrestclient.com/)
diff --git a/package-lock.json b/package-lock.json
index 538946f..9c07c61 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,24 +1,24 @@
{
"name": "@api-components/api-resource-example-document",
- "version": "4.1.2",
+ "version": "4.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@advanced-rest-client/arc-demo-helper": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-demo-helper/-/arc-demo-helper-2.2.5.tgz",
- "integrity": "sha512-8iyBofWPeTzycGrnIyR2M173sMi3MCVAPz63IGBlwvqkf/nERyHF3l7UtAleHEbvvudq2nUHT3L3icEMlMwJSg==",
+ "version": "2.2.6",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-demo-helper/-/arc-demo-helper-2.2.6.tgz",
+ "integrity": "sha512-xNJ+253nZUY85/xCJtli7TntmniMXwGklOw9AFQj3UA8TDulT1eTA815z7GdaLzoKfVI7+lGBE+Kvl2kwfe/NQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.2.2",
- "@anypoint-web-components/anypoint-button": "^1.1.1",
+ "@anypoint-web-components/anypoint-button": "^1.2.0",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.20",
- "@anypoint-web-components/anypoint-item": "^1.0.8",
+ "@anypoint-web-components/anypoint-item": "^1.1.0",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@anypoint-web-components/anypoint-menu-button": "^0.1.4",
"@anypoint-web-components/anypoint-switch": "^0.1.4",
"@anypoint-web-components/anypoint-tabs": "^0.1.12",
- "@api-components/amf-helper-mixin": "^4.3.2",
+ "@api-components/amf-helper-mixin": "^4.3.4",
"@api-components/api-navigation": "^4.2.4",
"@api-components/raml-aware": "^3.0.0",
"@open-wc/dedupe-mixin": "^1.3.0",
@@ -29,53 +29,51 @@
}
},
"@advanced-rest-client/arc-fit-mixin": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-fit-mixin/-/arc-fit-mixin-1.2.1.tgz",
- "integrity": "sha512-r7QWIOKRRY4+Cn7/cILJKMf63V5nlb/Ej6B58DftLXOMJ5hqKPKdJWuXB+DRHAwAEfF+FhCmY5HfibSmCskj+Q==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-fit-mixin/-/arc-fit-mixin-1.2.2.tgz",
+ "integrity": "sha512-fakoD1QuLM3QswgnlZXEWJ3SAHEFziF8BnNLWGN4BpBF1vu6y9nJDBEC+SpOaz0yvMa07BCRD7InJ+2ZEX41vA==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@advanced-rest-client/arc-icons": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-icons/-/arc-icons-3.2.2.tgz",
- "integrity": "sha512-4KC2Amg7Bzaty0q0H2QsyZlfx0ceFdyN/WGrj1UXF98RdXtmKX8tBK9PrgHSnuaBWw1l/u/ZmjmXle6uXG6xvA==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-icons/-/arc-icons-3.3.2.tgz",
+ "integrity": "sha512-PGVNGuTFtUiMyVWHZ7b2WP9KvYXV3Zf9aoERD4e+bKJ1MGkg+p3kMnW3sbfhFDB3sJTKifaB9/dmEPwWiKB2gg==",
"requires": {
- "@polymer/iron-icon": "^3.0.1",
- "@polymer/iron-iconset-svg": "^3.0.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/arc-overlay-mixin": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-overlay-mixin/-/arc-overlay-mixin-1.1.7.tgz",
- "integrity": "sha512-Q3JHK2F0S5lFv3Xrp9DYuswzXC0O421i3PkGELfaznvRnuOD/0r8irlgShWXWltQbl9A79uKG11mnfU37aRXUA==",
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-overlay-mixin/-/arc-overlay-mixin-1.1.8.tgz",
+ "integrity": "sha512-BvHwaTex8xa+AzIn9aZ1Cj0NCzoU4Yi5nqF0vwCkSN7zIKGbCGoP7/foZepKeHJdod7EmH4Uyz/vG5H6aMsI5A==",
"requires": {
- "@advanced-rest-client/arc-fit-mixin": "^1.2.1",
- "@advanced-rest-client/arc-resizable-mixin": "^1.1.2",
+ "@advanced-rest-client/arc-fit-mixin": "^1.2.2",
+ "@advanced-rest-client/arc-resizable-mixin": "^1.2.0",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/arc-resizable-mixin": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-resizable-mixin/-/arc-resizable-mixin-1.2.0.tgz",
- "integrity": "sha512-hc8XjY6CfQDANuf0TfsfE6EWJwlXBZTtmv2h4luLZgHz55XPlWO7w2XI/YAZX6xQpcsR3cGv0eDnj9CkOaCcCQ==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-resizable-mixin/-/arc-resizable-mixin-1.2.1.tgz",
+ "integrity": "sha512-ZRYsgq7FTjU0EnBWsoTbS30LwzsusZY4K7xoLnXWU9x1vHeFuezh4JAG73Z3FKLcIyxxi3CTSjuPsuyIjJk++A==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@advanced-rest-client/arc-types": {
- "version": "0.2.47",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-types/-/arc-types-0.2.47.tgz",
- "integrity": "sha512-SvndHSMFap8nTSmxev3cu8at/WYxox6EIAXj7e4YXYCIRiYv8Ge+BlftD9lhiKjqoiojOv70V74rHsj83XSl3w=="
+ "version": "0.2.50",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-types/-/arc-types-0.2.50.tgz",
+ "integrity": "sha512-dM8IMwBFNB63nAOJLJoTTCITNvHOSbPi2YrxhtvLgXE+L4LE/AemxHjlF4cFDBZx9qpmrLgXpGjm3ltIi42d8w=="
},
"@advanced-rest-client/clipboard-copy": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/clipboard-copy/-/clipboard-copy-3.0.1.tgz",
- "integrity": "sha512-nuadCt6g/bhhbiUcC64yyPsZIgyWwSJvB6dD2Xpoe1G78FhqYU3bCLPco4iN5voFlo9TgDryxOaagPwcz/AUqA=="
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/clipboard-copy/-/clipboard-copy-3.1.0.tgz",
+ "integrity": "sha512-Fn5GV5ba5yjgL7FhYlIM8XbR1PB/A7c7j8eiMNG+vzWNUcHqH80ZahkNgfplBxDUvCGCoIp4DnnUCDIyXaxYqQ=="
},
"@advanced-rest-client/json-table": {
"version": "3.2.0",
@@ -92,22 +90,33 @@
}
},
"@advanced-rest-client/prism-highlight": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/@advanced-rest-client/prism-highlight/-/prism-highlight-4.0.2.tgz",
- "integrity": "sha512-wk9u0wLgkap21140jYfyhy6O88L8o7VTgd1auPQTLncHcoMN3r6MCcIVi6xqsKebhJpO4TxkbERLfU9F2r+f9w==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/@advanced-rest-client/prism-highlight/-/prism-highlight-4.0.4.tgz",
+ "integrity": "sha512-As47uPRnMRg0qxhsdY3GPWlMF2ScutB1zcLdf9n8oVZCcA9EiOmiABnraQQ8Q/LYYkR/msCyOumtuslrRv9iyg==",
"requires": {
- "lit-element": "^2.0.1",
- "prismjs": "^1.11.0"
+ "lit-element": "^2.4.0",
+ "prismjs": "^1.23.0"
}
},
"@anypoint-web-components/anypoint-button": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-button/-/anypoint-button-1.1.1.tgz",
- "integrity": "sha512-S+cfMd5GRepD+133ajGwCNGG+nzTQnH88kcXzbG+Nsl2yC7FQRNNO6N0VQFsfuRl7e+FwWAp3W2iM/HxoAO1kg==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-button/-/anypoint-button-1.2.0.tgz",
+ "integrity": "sha512-z3og4oxSlwo37ISbg4S32/NeOqtJcsEfAk4CQ1c4tJM/TsI+lTFLZHwNELeunRg8yoGGnjhrnrxTbin+YKfYBQ==",
"requires": {
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.1",
+ "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@polymer/paper-ripple": "^3.0.2",
- "lit-element": "^2.3.1"
+ "lit-element": "^2.4.0"
+ }
+ },
+ "@anypoint-web-components/anypoint-collapse": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-collapse/-/anypoint-collapse-0.1.0.tgz",
+ "integrity": "sha512-EVl5sVD3ErRN2MNOcWNck/huuRW5/RJVGuK/YK+dWwg602OQ9L2RbLLJrS0GQ7hh8al/1DmhdmGauK73QkTM1A==",
+ "dev": true,
+ "requires": {
+ "@advanced-rest-client/arc-resizable-mixin": "^1.1.0",
+ "lit-element": "^2.2.1",
+ "lit-html": "^1.1.2"
}
},
"@anypoint-web-components/anypoint-control-mixins": {
@@ -153,11 +162,11 @@
}
},
"@anypoint-web-components/anypoint-item": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-item/-/anypoint-item-1.0.8.tgz",
- "integrity": "sha512-eqS74CXXIHHyU0Q9QbubfOqURQBLlZETRSJ/qs3AE47Hg6qO1Hr8DNy15qwECGsdm/rZ611K73ZJCuQtC0FRSA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-item/-/anypoint-item-1.1.0.tgz",
+ "integrity": "sha512-a4Lz1p5vpdgxeQ4sTAr23kiV9cvKAQ6aVGXRbrEOVYpXKkBJVlkWPvIJ44i14e6APW9F4kY0nczQayAn83QDfg==",
"requires": {
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.2",
+ "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
@@ -216,27 +225,26 @@
}
},
"@anypoint-web-components/anypoint-switch": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-switch/-/anypoint-switch-0.1.4.tgz",
- "integrity": "sha512-ltjgMHFuWC80V1+FDI34M+Q6gnNXs0+skfuM6/bbL0SPup5wttQc5OGrZcje7PwxExstUNHIF9+oLzPbHjfShQ==",
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-switch/-/anypoint-switch-0.1.5.tgz",
+ "integrity": "sha512-1suznLBwEEZe0x3qaxmxLTwSkYnmI1uMLjRUV3jcAUBPT5xhuBwA3dCcKriT5qhVyUiwkDqVgl0jDZcd6oLmiA==",
"dev": true,
"requires": {
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.1",
- "@anypoint-web-components/anypoint-form-mixins": "^1.2.0",
- "lit-element": "^2.3.1"
+ "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
+ "@anypoint-web-components/anypoint-form-mixins": "^1.2.2",
+ "lit-element": "^2.4.0"
}
},
"@anypoint-web-components/anypoint-tabs": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-tabs/-/anypoint-tabs-0.1.12.tgz",
- "integrity": "sha512-t3Qe9JPRJCof5LMMVDcOqltDnGvpigUboxASVrovuf0iPeDYgPWjJ59pNgeLFnT20LGsZVgEAGWBnOuuK5XGuw==",
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-tabs/-/anypoint-tabs-0.1.13.tgz",
+ "integrity": "sha512-30o7lG8hyXNfZ15SB8RfHNUMgv/X5bteGGn8Xc4OlmDTKsCE9yXZX8bAzccxSyFLmUuC+/VV2/EWAM7q6s2/HQ==",
"dev": true,
"requires": {
- "@advanced-rest-client/arc-resizable-mixin": "^1.1.1",
- "@anypoint-web-components/anypoint-button": "^1.1.1",
- "@anypoint-web-components/anypoint-control-mixins": "^1.1.2",
- "@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
- "@polymer/iron-icon": "^3.0.1",
+ "@advanced-rest-client/arc-resizable-mixin": "^1.2.0",
+ "@anypoint-web-components/anypoint-button": "^1.2.0",
+ "@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
+ "@anypoint-web-components/anypoint-menu-mixin": "^1.1.8",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
@@ -252,22 +260,22 @@
}
},
"@anypoint-web-components/validator-mixin": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@anypoint-web-components/validator-mixin/-/validator-mixin-1.1.1.tgz",
- "integrity": "sha512-SHBFXn/uHP5ptQY/ZV/DzEb0dBYldQF1Rti1q+3lfbUcYiA59QdfsPvOmre6a64NeaHagV/aMd4zj3FNH5hAXg==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@anypoint-web-components/validator-mixin/-/validator-mixin-1.1.2.tgz",
+ "integrity": "sha512-J5dqcdwW47W+7B10stowMsaQclV2VEe2vZ3SD6lVnQS63MWEZeCa2jTdaJ3RuE5+vSBoKoUfBiHqOdcpnGLL2w==",
"requires": {
- "@open-wc/dedupe-mixin": "^1.2.17"
+ "@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@api-components/amf-helper-mixin": {
- "version": "4.3.3",
- "resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.3.3.tgz",
- "integrity": "sha512-whyqv55KswiNjs2OvXkd1GOoh0uodBQQ2PdavIQmMx6WXuMtK1M/WeWK+ae4oSrLjSfMZIElwHrhaENg+0pmDQ=="
+ "version": "4.3.6",
+ "resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.3.6.tgz",
+ "integrity": "sha512-tP9fZqD4xlAUhz4f+HfJ4FsssJGVDnu5q+mjxtvJkZwJdj8WLOJUAbMPfWXjiRLu+L4YaeE9QWmzlFXz9R2AcQ=="
},
"@api-components/api-example-generator": {
- "version": "4.4.6",
- "resolved": "https://registry.npmjs.org/@api-components/api-example-generator/-/api-example-generator-4.4.6.tgz",
- "integrity": "sha512-5C2oVvtrw1AO487nbReOjxJLCDV8r72ggJloqHwY9/U232iq0zumKKQ5zZUIlilRyNQvGj//n8ck4oItcmpVEQ==",
+ "version": "4.4.8",
+ "resolved": "https://registry.npmjs.org/@api-components/api-example-generator/-/api-example-generator-4.4.8.tgz",
+ "integrity": "sha512-Qp+UeESM7P8g6GCDvHgeDbpwf7ktmKhwGCpSgJ85GSJ79mMVJkLDrcUhnKPDddjghz/XoMGUzaAH8B7gPjrdow==",
"requires": {
"@api-components/amf-helper-mixin": "^4.1.8",
"lit-element": "^2.4.0"
@@ -284,25 +292,25 @@
}
},
"@api-components/api-navigation": {
- "version": "4.2.4",
- "resolved": "https://registry.npmjs.org/@api-components/api-navigation/-/api-navigation-4.2.4.tgz",
- "integrity": "sha512-TB/3aQ3s0d3Cr2mYG9cKWWzXEI/rEQb2KAu7lvSNzEBKmlKz8HbhLhyBMio22CZXwQPoQgmZlsnkFZZDT386Hw==",
+ "version": "4.2.7",
+ "resolved": "https://registry.npmjs.org/@api-components/api-navigation/-/api-navigation-4.2.7.tgz",
+ "integrity": "sha512-FGmA61Ma4vgPbbUlEFv/6dBnWDwzcUbZ7dzsfGd62UTv9Df4SSlUpwnzLcQHvODi/lnWX8rhMT1GsMO1WbZzLA==",
"dev": true,
"requires": {
- "@advanced-rest-client/arc-icons": "^3.1.0",
+ "@advanced-rest-client/arc-icons": "^3.2.2",
"@anypoint-web-components/anypoint-button": "^1.1.1",
- "@api-components/amf-helper-mixin": "^4.1.2",
- "@api-components/http-method-label": "^3.1.1",
+ "@anypoint-web-components/anypoint-collapse": "^0.1.0",
+ "@api-components/amf-helper-mixin": "^4.3.4",
+ "@api-components/http-method-label": "^3.1.3",
"@api-components/raml-aware": "^3.0.0",
- "@polymer/iron-collapse": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/http-method-label": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/@api-components/http-method-label/-/http-method-label-3.1.3.tgz",
- "integrity": "sha512-Pz1vpq26kntclfxj0Ym5e/6h4DN2CZWFR4DHJidK5hUj3SJskPK9J4jzh6Wx1F1poHmrDSmbvfJPEYERNg6ipA==",
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/@api-components/http-method-label/-/http-method-label-3.1.4.tgz",
+ "integrity": "sha512-KKLSoTkRDWhdSYAcHQQdsd/F1Gx0Xp+GuyzFZZv+4twjCX7UAoabOrdef6+6IBSlw3bc9ec3npfFr2Ko6D+gFg==",
"dev": true,
"requires": {
"lit-element": "^2.4.0",
@@ -316,12 +324,12 @@
"dev": true
},
"@babel/code-frame": {
- "version": "7.12.11",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
- "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
+ "version": "7.12.13",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz",
+ "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==",
"dev": true,
"requires": {
- "@babel/highlight": "^7.10.4"
+ "@babel/highlight": "^7.12.13"
}
},
"@babel/helper-validator-identifier": {
@@ -331,12 +339,12 @@
"dev": true
},
"@babel/highlight": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
- "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
+ "version": "7.13.10",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz",
+ "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==",
"dev": true,
"requires": {
- "@babel/helper-validator-identifier": "^7.10.4",
+ "@babel/helper-validator-identifier": "^7.12.11",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
@@ -361,21 +369,6 @@
"supports-color": "^5.3.0"
}
},
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
- "dev": true
- },
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
@@ -394,18 +387,18 @@
}
},
"@babel/runtime": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
- "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
+ "version": "7.13.10",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz",
+ "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==",
"dev": true,
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs3": {
- "version": "7.12.5",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz",
- "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==",
+ "version": "7.13.10",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz",
+ "integrity": "sha512-x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg==",
"dev": true,
"requires": {
"core-js-pure": "^3.0.0",
@@ -413,134 +406,134 @@
}
},
"@commitlint/cli": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-11.0.0.tgz",
- "integrity": "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==",
- "dev": true,
- "requires": {
- "@babel/runtime": "^7.11.2",
- "@commitlint/format": "^11.0.0",
- "@commitlint/lint": "^11.0.0",
- "@commitlint/load": "^11.0.0",
- "@commitlint/read": "^11.0.0",
- "chalk": "4.1.0",
- "core-js": "^3.6.1",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-12.0.1.tgz",
+ "integrity": "sha512-V+cMYNHJOr40XT9Kvz3Vrz1Eh7QE1rjQrUbifawDAqcOrBJFuoXwU2SAcRtYFCSqFy9EhbreQGhZFs8dYb90KA==",
+ "dev": true,
+ "requires": {
+ "@commitlint/format": "^12.0.1",
+ "@commitlint/lint": "^12.0.1",
+ "@commitlint/load": "^12.0.1",
+ "@commitlint/read": "^12.0.1",
+ "@commitlint/types": "^12.0.1",
"get-stdin": "8.0.0",
"lodash": "^4.17.19",
"resolve-from": "5.0.0",
"resolve-global": "1.0.0",
- "yargs": "^15.1.0"
+ "yargs": "^16.2.0"
}
},
"@commitlint/config-conventional": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-11.0.0.tgz",
- "integrity": "sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-12.0.1.tgz",
+ "integrity": "sha512-1ZhB135lh47zVmf1orwcjxuKuam11fJIH/bdVxW9XiQv8XPwC6iIp19knfl8FcOT78AVBnes1z6EVxgUeP2/4Q==",
"dev": true,
"requires": {
"conventional-changelog-conventionalcommits": "^4.3.1"
}
},
"@commitlint/ensure": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-11.0.0.tgz",
- "integrity": "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-12.0.1.tgz",
+ "integrity": "sha512-XdBq+q1YBBDxWIAEjE3Y1YMbzhUnUuSLAEWD8SU1xsvEpQXWRYwDlMBRkjO7funNWTdL0ZQSkZDzme70imYjbw==",
"dev": true,
"requires": {
- "@commitlint/types": "^11.0.0",
+ "@commitlint/types": "^12.0.1",
"lodash": "^4.17.19"
}
},
"@commitlint/execute-rule": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz",
- "integrity": "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.0.1.tgz",
+ "integrity": "sha512-JzyweYfZlFLtXpgP+btzSY3YAkGPg61TqUSYQqBr4+5IaVf1FruMm5v4D5eLu9dAJuNKUfHbM3AEfuEPiZ79pg==",
"dev": true
},
"@commitlint/format": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-11.0.0.tgz",
- "integrity": "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-12.0.1.tgz",
+ "integrity": "sha512-rF79ipAxR8yFzPzG5tRoEZ//MRkyxCXj4JhpEjtdaCMBAXMssI8uazn3e5D8z4UFgSDe9qOnL0OmQvql7HTMoA==",
"dev": true,
"requires": {
- "@commitlint/types": "^11.0.0",
+ "@commitlint/types": "^12.0.1",
"chalk": "^4.0.0"
}
},
"@commitlint/is-ignored": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-11.0.0.tgz",
- "integrity": "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-12.0.1.tgz",
+ "integrity": "sha512-AplfLn5mX/kWTIiSolcOhTYcgphuGLX8FUr+HmyHBEqUkO36jt0z9caysH47fqU71ePtH63v1DWm+RYQ5RPDjg==",
"dev": true,
"requires": {
- "@commitlint/types": "^11.0.0",
- "semver": "7.3.2"
+ "@commitlint/types": "^12.0.1",
+ "semver": "7.3.4"
}
},
"@commitlint/lint": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-11.0.0.tgz",
- "integrity": "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-12.0.1.tgz",
+ "integrity": "sha512-1lKyRCq4ahJrY+Xxo8LsqCbALeJkodtEfpmYHeA5HpPMnK7lRSplLqOLcTCjoPfd4vO+gl6aDEZN+ow3YGQBOg==",
"dev": true,
"requires": {
- "@commitlint/is-ignored": "^11.0.0",
- "@commitlint/parse": "^11.0.0",
- "@commitlint/rules": "^11.0.0",
- "@commitlint/types": "^11.0.0"
+ "@commitlint/is-ignored": "^12.0.1",
+ "@commitlint/parse": "^12.0.1",
+ "@commitlint/rules": "^12.0.1",
+ "@commitlint/types": "^12.0.1"
}
},
"@commitlint/load": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-11.0.0.tgz",
- "integrity": "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-12.0.1.tgz",
+ "integrity": "sha512-dX8KdCWn7w0bTkkk3zKQpe9X8vsTRa5EM+1ffF313wCX9b6tGa9vujhEHCkSzKAbbE2tFV64CHZygE7rtlHdIA==",
"dev": true,
"requires": {
- "@commitlint/execute-rule": "^11.0.0",
- "@commitlint/resolve-extends": "^11.0.0",
- "@commitlint/types": "^11.0.0",
- "chalk": "4.1.0",
+ "@commitlint/execute-rule": "^12.0.1",
+ "@commitlint/resolve-extends": "^12.0.1",
+ "@commitlint/types": "^12.0.1",
+ "chalk": "^4.0.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0"
}
},
"@commitlint/message": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-11.0.0.tgz",
- "integrity": "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-12.0.1.tgz",
+ "integrity": "sha512-fXuoxRC+NT1wEQi6p8oHfT7wvWIRgTk+udlRJnWTjmMpiYzVnMmmZfasdShirWr4TtxQtMyL+5DVgh7Y98kURw==",
"dev": true
},
"@commitlint/parse": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-11.0.0.tgz",
- "integrity": "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-12.0.1.tgz",
+ "integrity": "sha512-7oEGASmzBnHir5jSIR7KephXrKh7rIi9a6RpH1tOT+CIENYvhe8EDtIy29qMt+RLa2LlaPF7YrAgaJRfzG0YDQ==",
"dev": true,
"requires": {
- "conventional-changelog-angular": "^5.0.0",
+ "@commitlint/types": "^12.0.1",
+ "conventional-changelog-angular": "^5.0.11",
"conventional-commits-parser": "^3.0.0"
}
},
"@commitlint/read": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-11.0.0.tgz",
- "integrity": "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-12.0.1.tgz",
+ "integrity": "sha512-baa0YeD4QOctEuthLpExQSi9xPiw0kDPfUVHqp8I88iuIXJECeS8S1+1GBiz89e8dLN9zmEE+sN9vtJHdAp9YA==",
"dev": true,
"requires": {
- "@commitlint/top-level": "^11.0.0",
+ "@commitlint/top-level": "^12.0.1",
+ "@commitlint/types": "^12.0.1",
"fs-extra": "^9.0.0",
"git-raw-commits": "^2.0.0"
},
"dependencies": {
"fs-extra": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz",
- "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==",
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
"dev": true,
"requires": {
"at-least-node": "^1.0.0",
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
- "universalify": "^1.0.0"
+ "universalify": "^2.0.0"
}
},
"jsonfile": {
@@ -551,28 +544,20 @@
"requires": {
"graceful-fs": "^4.1.6",
"universalify": "^2.0.0"
- },
- "dependencies": {
- "universalify": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
- "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
- "dev": true
- }
}
},
"universalify": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz",
- "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
"dev": true
}
}
},
"@commitlint/resolve-extends": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz",
- "integrity": "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.0.1.tgz",
+ "integrity": "sha512-Mvg0GDi/68Cqw893ha8uhxE8myHfPmiSSSi7d1x4VJNR4hoS37lBdX89kyx4i9NPmLfviY2cUJKTyK8ZrFznZw==",
"dev": true,
"requires": {
"import-fresh": "^3.0.0",
@@ -582,27 +567,27 @@
}
},
"@commitlint/rules": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-11.0.0.tgz",
- "integrity": "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-12.0.1.tgz",
+ "integrity": "sha512-A5O0ubNGugZR9WWxk5IVOLo07lpdUwhG5WkAW2lYpgZ7Z/2U4PLob9b4Ih1eHbQu+gnVeFr91k7F0DrpM7B8EQ==",
"dev": true,
"requires": {
- "@commitlint/ensure": "^11.0.0",
- "@commitlint/message": "^11.0.0",
- "@commitlint/to-lines": "^11.0.0",
- "@commitlint/types": "^11.0.0"
+ "@commitlint/ensure": "^12.0.1",
+ "@commitlint/message": "^12.0.1",
+ "@commitlint/to-lines": "^12.0.1",
+ "@commitlint/types": "^12.0.1"
}
},
"@commitlint/to-lines": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-11.0.0.tgz",
- "integrity": "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-12.0.1.tgz",
+ "integrity": "sha512-XwcJ1jY7x2fhudzbGMpNQkTSMVrxWrI8bRMbVe3Abuu7RfYpFf7VXAlhtnLfxBoagaK7RxjC2+eRidp/3txQBg==",
"dev": true
},
"@commitlint/top-level": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-11.0.0.tgz",
- "integrity": "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==",
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-12.0.1.tgz",
+ "integrity": "sha512-rHdgt7U24GEau2/9i2vEAbksxkBRiVjHj5ECFL5dd0AJOIvaK++vMg4EF/ME0X/1yd9qVTHTNOl2Q4tTFK7VBQ==",
"dev": true,
"requires": {
"find-up": "^5.0.0"
@@ -648,15 +633,18 @@
}
},
"@commitlint/types": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-11.0.0.tgz",
- "integrity": "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==",
- "dev": true
+ "version": "12.0.1",
+ "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-12.0.1.tgz",
+ "integrity": "sha512-FsNDMV0W7D19/ZbR412klpqAilXASx75Neqh7jPtK278IEwdukOg3vth1r5kTm+BjDScM7wMUEOwIW3NNfAtwg==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0"
+ }
},
"@comunica/actor-abstract-bindings-hash": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.18.1.tgz",
- "integrity": "sha512-MlbUzTc05NUBaKqD7WzAusARPRWiAjyHaBiXKE3YQT0QOCdmCvcDQ26lvyXSJiQHb+tnHfMxDclC1Id3QC3nJQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.19.2.tgz",
+ "integrity": "sha512-Rf5DH43+inBhI/IlmKILQGTYWCWWmK/s3YM+O/wmxO3M38OXFspv4fyIfUYrfBHeYKaq78w64vPH43umw+DOAQ==",
"dev": true,
"requires": {
"canonicalize": "^1.0.1",
@@ -666,15 +654,15 @@
}
},
"@comunica/actor-abstract-mediatyped": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.18.1.tgz",
- "integrity": "sha512-pjAf0agOpADEVBKp11XhFGH33FML4LTxO08JJmr6Qf6FlbMAhU3KFBrK34nYZ/5QNdhZwE2i8eFmjNC/2CbOKA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.19.2.tgz",
+ "integrity": "sha512-BER87Niq4dqLxfF3JtYCZ1lCHB+MB/N3yNUq5GnInzdisAQBT/T7dwmps1eqF435DyiDS/j0VOJpnPmWV8bRlA==",
"dev": true
},
"@comunica/actor-abstract-path": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.18.1.tgz",
- "integrity": "sha512-WGRRvpdkGFytDZUdLZrd/r81migly3OE+qcFzFmuk7Qucqr1a7Kq/WbcejqtdSgnvCfBGQTug0gpDW9bf8q6qQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.19.2.tgz",
+ "integrity": "sha512-0pqfYotFtXIDyNjmqqGyxrVwrS7pNY9R5he3PugilzZCOrHy19Zr8bofr24xTXgEP8VdQR1uD2vE1H43JE/6HA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -685,9 +673,9 @@
}
},
"@comunica/actor-http-memento": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.18.1.tgz",
- "integrity": "sha512-QfhTsenZj4No6BfGKNe+gjA07wtLcTKLua8MaaprPxK6aN/xwdodOyz0Fj/bTZ1On4ixsozbFKNPGFMaB9vNVQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.19.2.tgz",
+ "integrity": "sha512-3d8cviX1i1CKXkaV0u0C9S/jzmViZTMd3kwVUOwaqJW8EH4dpJkADtxaly32qtRfUp2suNQ/dcG8DlAcHUPNNg==",
"dev": true,
"requires": {
"@types/parse-link-header": "^1.0.0",
@@ -696,9 +684,9 @@
}
},
"@comunica/actor-http-native": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.18.1.tgz",
- "integrity": "sha512-nQ7dlB3GkP46h28XVyOi43Q4fuc1pUaYWFz6YQeTOgyJMnm/fgNvu9ECsFdG4rYVo3377VVxpvCylGx936S+wQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.19.2.tgz",
+ "integrity": "sha512-/eLeL3/MCuoTpYqMKM4f6VNIgBMtduOHc7DHxw/p6I/mL9mRZp848+MyhKFEN4W4gVk8aKVlMCI4MI52bKXWLw==",
"dev": true,
"requires": {
"@types/parse-link-header": "^1.0.0",
@@ -708,122 +696,122 @@
}
},
"@comunica/actor-http-proxy": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.18.1.tgz",
- "integrity": "sha512-waZ8XeXA+A734fIqx8K0MW+9R3Meb+CyRzAKsVf9OQxDlRoCSD3jovpoLMz9L3Cc+4Qb4RuTn/ddw1vFy1pW0Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.19.2.tgz",
+ "integrity": "sha512-b/yP6TbpEBOac5gtX+4lxF6cd+/mI0WQiYUZGhRQZ2gUEcU0js0Gte9uqz1wCVxIQJnMbOryso3tCVFw/CZNJg==",
"dev": true
},
"@comunica/actor-init-sparql": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.18.1.tgz",
- "integrity": "sha512-5MYRw4/bgXxo9WKw6xlbUBHMjyNAEyaq9XT2O+WlkX67vORqzC/HE5PFdr65Qg9nSdSby6hspnsu6D2xJ1aHuQ==",
- "dev": true,
- "requires": {
- "@comunica/actor-abstract-bindings-hash": "^1.18.1",
- "@comunica/actor-abstract-mediatyped": "^1.18.1",
- "@comunica/actor-http-memento": "^1.18.1",
- "@comunica/actor-http-native": "^1.18.1",
- "@comunica/actor-http-proxy": "^1.18.1",
- "@comunica/actor-optimize-query-operation-join-bgp": "^1.18.1",
- "@comunica/actor-query-operation-ask": "^1.18.1",
- "@comunica/actor-query-operation-bgp-empty": "^1.18.1",
- "@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.18.1",
- "@comunica/actor-query-operation-bgp-single": "^1.18.1",
- "@comunica/actor-query-operation-construct": "^1.18.1",
- "@comunica/actor-query-operation-describe-subject": "^1.18.1",
- "@comunica/actor-query-operation-distinct-hash": "^1.18.1",
- "@comunica/actor-query-operation-extend": "^1.18.1",
- "@comunica/actor-query-operation-filter-sparqlee": "^1.18.1",
- "@comunica/actor-query-operation-from-quad": "^1.18.1",
- "@comunica/actor-query-operation-group": "^1.18.1",
- "@comunica/actor-query-operation-join": "^1.18.1",
- "@comunica/actor-query-operation-leftjoin-left-deep": "^1.18.1",
- "@comunica/actor-query-operation-leftjoin-nestedloop": "^1.18.1",
- "@comunica/actor-query-operation-minus": "^1.18.1",
- "@comunica/actor-query-operation-orderby-sparqlee": "^1.18.1",
- "@comunica/actor-query-operation-path-alt": "^1.18.1",
- "@comunica/actor-query-operation-path-inv": "^1.18.1",
- "@comunica/actor-query-operation-path-link": "^1.18.1",
- "@comunica/actor-query-operation-path-nps": "^1.18.1",
- "@comunica/actor-query-operation-path-one-or-more": "^1.18.1",
- "@comunica/actor-query-operation-path-seq": "^1.18.1",
- "@comunica/actor-query-operation-path-zero-or-more": "^1.18.1",
- "@comunica/actor-query-operation-path-zero-or-one": "^1.18.1",
- "@comunica/actor-query-operation-project": "^1.18.1",
- "@comunica/actor-query-operation-quadpattern": "^1.18.1",
- "@comunica/actor-query-operation-reduced-hash": "^1.18.1",
- "@comunica/actor-query-operation-service": "^1.18.1",
- "@comunica/actor-query-operation-slice": "^1.18.1",
- "@comunica/actor-query-operation-sparql-endpoint": "^1.18.1",
- "@comunica/actor-query-operation-union": "^1.18.1",
- "@comunica/actor-query-operation-values": "^1.18.1",
- "@comunica/actor-rdf-dereference-http-parse": "^1.18.1",
- "@comunica/actor-rdf-join-multi-smallest": "^1.18.1",
- "@comunica/actor-rdf-join-nestedloop": "^1.18.1",
- "@comunica/actor-rdf-join-symmetrichash": "^1.18.1",
- "@comunica/actor-rdf-metadata-all": "^1.18.1",
- "@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.18.1",
- "@comunica/actor-rdf-metadata-extract-hydra-count": "^1.18.1",
- "@comunica/actor-rdf-metadata-extract-sparql-service": "^1.18.1",
- "@comunica/actor-rdf-metadata-primary-topic": "^1.18.1",
- "@comunica/actor-rdf-parse-html": "^1.18.1",
- "@comunica/actor-rdf-parse-html-microdata": "^1.18.1",
- "@comunica/actor-rdf-parse-html-rdfa": "^1.18.1",
- "@comunica/actor-rdf-parse-html-script": "^1.18.1",
- "@comunica/actor-rdf-parse-jsonld": "^1.18.1",
- "@comunica/actor-rdf-parse-n3": "^1.18.1",
- "@comunica/actor-rdf-parse-rdfxml": "^1.18.1",
- "@comunica/actor-rdf-parse-xml-rdfa": "^1.18.1",
- "@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.18.1",
- "@comunica/actor-rdf-resolve-hypermedia-none": "^1.18.1",
- "@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.18.1",
- "@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.18.1",
- "@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.18.1",
- "@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.18.1",
- "@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.18.1",
- "@comunica/actor-rdf-serialize-jsonld": "^1.18.1",
- "@comunica/actor-rdf-serialize-n3": "^1.18.1",
- "@comunica/actor-sparql-parse-algebra": "^1.18.1",
- "@comunica/actor-sparql-parse-graphql": "^1.18.1",
- "@comunica/actor-sparql-serialize-json": "^1.18.1",
- "@comunica/actor-sparql-serialize-rdf": "^1.18.1",
- "@comunica/actor-sparql-serialize-simple": "^1.18.1",
- "@comunica/actor-sparql-serialize-sparql-csv": "^1.18.1",
- "@comunica/actor-sparql-serialize-sparql-json": "^1.18.1",
- "@comunica/actor-sparql-serialize-sparql-tsv": "^1.18.1",
- "@comunica/actor-sparql-serialize-sparql-xml": "^1.18.1",
- "@comunica/actor-sparql-serialize-stats": "^1.18.1",
- "@comunica/actor-sparql-serialize-table": "^1.18.1",
- "@comunica/actor-sparql-serialize-tree": "^1.18.1",
- "@comunica/bus-context-preprocess": "^1.18.1",
- "@comunica/bus-http": "^1.18.1",
- "@comunica/bus-http-invalidate": "^1.18.1",
- "@comunica/bus-init": "^1.18.1",
- "@comunica/bus-optimize-query-operation": "^1.18.1",
- "@comunica/bus-query-operation": "^1.18.1",
- "@comunica/bus-rdf-dereference": "^1.18.1",
- "@comunica/bus-rdf-dereference-paged": "^1.18.1",
- "@comunica/bus-rdf-join": "^1.18.1",
- "@comunica/bus-rdf-metadata": "^1.18.1",
- "@comunica/bus-rdf-metadata-extract": "^1.18.1",
- "@comunica/bus-rdf-parse": "^1.18.1",
- "@comunica/bus-rdf-parse-html": "^1.18.1",
- "@comunica/bus-rdf-resolve-hypermedia": "^1.18.1",
- "@comunica/bus-rdf-resolve-hypermedia-links": "^1.18.1",
- "@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
- "@comunica/bus-rdf-serialize": "^1.18.1",
- "@comunica/bus-sparql-parse": "^1.18.1",
- "@comunica/bus-sparql-serialize": "^1.18.1",
- "@comunica/core": "^1.18.1",
- "@comunica/logger-pretty": "^1.18.1",
- "@comunica/logger-void": "^1.18.1",
- "@comunica/mediator-all": "^1.18.1",
- "@comunica/mediator-combine-pipeline": "^1.18.1",
- "@comunica/mediator-combine-union": "^1.18.1",
- "@comunica/mediator-number": "^1.18.1",
- "@comunica/mediator-race": "^1.18.1",
- "@comunica/runner": "^1.18.1",
- "@comunica/runner-cli": "^1.18.1",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.19.2.tgz",
+ "integrity": "sha512-TUYde50lcJOVbIkY+sJb9B1OuaKB8yvy8oyeNXF8nF3rOdFT0hnjmPcyT9KRKKJXmG7t4ywygDSbyaGqPnlyUA==",
+ "dev": true,
+ "requires": {
+ "@comunica/actor-abstract-bindings-hash": "^1.19.2",
+ "@comunica/actor-abstract-mediatyped": "^1.19.2",
+ "@comunica/actor-http-memento": "^1.19.2",
+ "@comunica/actor-http-native": "^1.19.2",
+ "@comunica/actor-http-proxy": "^1.19.2",
+ "@comunica/actor-optimize-query-operation-join-bgp": "^1.19.2",
+ "@comunica/actor-query-operation-ask": "^1.19.2",
+ "@comunica/actor-query-operation-bgp-empty": "^1.19.2",
+ "@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.19.2",
+ "@comunica/actor-query-operation-bgp-single": "^1.19.2",
+ "@comunica/actor-query-operation-construct": "^1.19.2",
+ "@comunica/actor-query-operation-describe-subject": "^1.19.2",
+ "@comunica/actor-query-operation-distinct-hash": "^1.19.2",
+ "@comunica/actor-query-operation-extend": "^1.19.2",
+ "@comunica/actor-query-operation-filter-sparqlee": "^1.19.2",
+ "@comunica/actor-query-operation-from-quad": "^1.19.2",
+ "@comunica/actor-query-operation-group": "^1.19.2",
+ "@comunica/actor-query-operation-join": "^1.19.2",
+ "@comunica/actor-query-operation-leftjoin-left-deep": "^1.19.2",
+ "@comunica/actor-query-operation-leftjoin-nestedloop": "^1.19.2",
+ "@comunica/actor-query-operation-minus": "^1.19.2",
+ "@comunica/actor-query-operation-orderby-sparqlee": "^1.19.2",
+ "@comunica/actor-query-operation-path-alt": "^1.19.2",
+ "@comunica/actor-query-operation-path-inv": "^1.19.2",
+ "@comunica/actor-query-operation-path-link": "^1.19.2",
+ "@comunica/actor-query-operation-path-nps": "^1.19.2",
+ "@comunica/actor-query-operation-path-one-or-more": "^1.19.2",
+ "@comunica/actor-query-operation-path-seq": "^1.19.2",
+ "@comunica/actor-query-operation-path-zero-or-more": "^1.19.2",
+ "@comunica/actor-query-operation-path-zero-or-one": "^1.19.2",
+ "@comunica/actor-query-operation-project": "^1.19.2",
+ "@comunica/actor-query-operation-quadpattern": "^1.19.2",
+ "@comunica/actor-query-operation-reduced-hash": "^1.19.2",
+ "@comunica/actor-query-operation-service": "^1.19.2",
+ "@comunica/actor-query-operation-slice": "^1.19.2",
+ "@comunica/actor-query-operation-sparql-endpoint": "^1.19.2",
+ "@comunica/actor-query-operation-union": "^1.19.2",
+ "@comunica/actor-query-operation-values": "^1.19.2",
+ "@comunica/actor-rdf-dereference-http-parse": "^1.19.2",
+ "@comunica/actor-rdf-join-multi-smallest": "^1.19.2",
+ "@comunica/actor-rdf-join-nestedloop": "^1.19.2",
+ "@comunica/actor-rdf-join-symmetrichash": "^1.19.2",
+ "@comunica/actor-rdf-metadata-all": "^1.19.2",
+ "@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.19.2",
+ "@comunica/actor-rdf-metadata-extract-hydra-count": "^1.19.2",
+ "@comunica/actor-rdf-metadata-extract-sparql-service": "^1.19.2",
+ "@comunica/actor-rdf-metadata-primary-topic": "^1.19.2",
+ "@comunica/actor-rdf-parse-html": "^1.19.2",
+ "@comunica/actor-rdf-parse-html-microdata": "^1.19.2",
+ "@comunica/actor-rdf-parse-html-rdfa": "^1.19.2",
+ "@comunica/actor-rdf-parse-html-script": "^1.19.2",
+ "@comunica/actor-rdf-parse-jsonld": "^1.19.2",
+ "@comunica/actor-rdf-parse-n3": "^1.19.2",
+ "@comunica/actor-rdf-parse-rdfxml": "^1.19.2",
+ "@comunica/actor-rdf-parse-xml-rdfa": "^1.19.2",
+ "@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.19.2",
+ "@comunica/actor-rdf-resolve-hypermedia-none": "^1.19.2",
+ "@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.19.2",
+ "@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.19.2",
+ "@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.19.2",
+ "@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.19.2",
+ "@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.2",
+ "@comunica/actor-rdf-serialize-jsonld": "^1.19.2",
+ "@comunica/actor-rdf-serialize-n3": "^1.19.2",
+ "@comunica/actor-sparql-parse-algebra": "^1.19.2",
+ "@comunica/actor-sparql-parse-graphql": "^1.19.2",
+ "@comunica/actor-sparql-serialize-json": "^1.19.2",
+ "@comunica/actor-sparql-serialize-rdf": "^1.19.2",
+ "@comunica/actor-sparql-serialize-simple": "^1.19.2",
+ "@comunica/actor-sparql-serialize-sparql-csv": "^1.19.2",
+ "@comunica/actor-sparql-serialize-sparql-json": "^1.19.2",
+ "@comunica/actor-sparql-serialize-sparql-tsv": "^1.19.2",
+ "@comunica/actor-sparql-serialize-sparql-xml": "^1.19.2",
+ "@comunica/actor-sparql-serialize-stats": "^1.19.2",
+ "@comunica/actor-sparql-serialize-table": "^1.19.2",
+ "@comunica/actor-sparql-serialize-tree": "^1.19.2",
+ "@comunica/bus-context-preprocess": "^1.19.2",
+ "@comunica/bus-http": "^1.19.2",
+ "@comunica/bus-http-invalidate": "^1.19.2",
+ "@comunica/bus-init": "^1.19.2",
+ "@comunica/bus-optimize-query-operation": "^1.19.2",
+ "@comunica/bus-query-operation": "^1.19.2",
+ "@comunica/bus-rdf-dereference": "^1.19.2",
+ "@comunica/bus-rdf-dereference-paged": "^1.19.2",
+ "@comunica/bus-rdf-join": "^1.19.2",
+ "@comunica/bus-rdf-metadata": "^1.19.2",
+ "@comunica/bus-rdf-metadata-extract": "^1.19.2",
+ "@comunica/bus-rdf-parse": "^1.19.2",
+ "@comunica/bus-rdf-parse-html": "^1.19.2",
+ "@comunica/bus-rdf-resolve-hypermedia": "^1.19.2",
+ "@comunica/bus-rdf-resolve-hypermedia-links": "^1.19.2",
+ "@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
+ "@comunica/bus-rdf-serialize": "^1.19.2",
+ "@comunica/bus-sparql-parse": "^1.19.2",
+ "@comunica/bus-sparql-serialize": "^1.19.2",
+ "@comunica/core": "^1.19.2",
+ "@comunica/logger-pretty": "^1.19.2",
+ "@comunica/logger-void": "^1.19.2",
+ "@comunica/mediator-all": "^1.19.2",
+ "@comunica/mediator-combine-pipeline": "^1.19.2",
+ "@comunica/mediator-combine-union": "^1.19.2",
+ "@comunica/mediator-number": "^1.19.2",
+ "@comunica/mediator-race": "^1.19.2",
+ "@comunica/runner": "^1.19.2",
+ "@comunica/runner-cli": "^1.19.2",
"@types/minimist": "^1.2.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
@@ -837,89 +825,89 @@
}
},
"@comunica/actor-init-sparql-rdfjs": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-rdfjs/-/actor-init-sparql-rdfjs-1.18.1.tgz",
- "integrity": "sha512-AelBSYfYltkvuARPd79zikmLKBmJk3WLhxmWH1Bdlb7kp7VLeT8t+8XB5O0uHr/B+D3LJLHrz7/4a2iJUrFp1g==",
- "dev": true,
- "requires": {
- "@comunica/actor-abstract-mediatyped": "^1.18.1",
- "@comunica/actor-init-sparql": "^1.18.1",
- "@comunica/actor-query-operation-ask": "^1.18.1",
- "@comunica/actor-query-operation-bgp-empty": "^1.18.1",
- "@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.18.1",
- "@comunica/actor-query-operation-bgp-single": "^1.18.1",
- "@comunica/actor-query-operation-construct": "^1.18.1",
- "@comunica/actor-query-operation-describe-subject": "^1.18.1",
- "@comunica/actor-query-operation-distinct-hash": "^1.18.1",
- "@comunica/actor-query-operation-extend": "^1.18.1",
- "@comunica/actor-query-operation-filter-sparqlee": "^1.18.1",
- "@comunica/actor-query-operation-from-quad": "^1.18.1",
- "@comunica/actor-query-operation-join": "^1.18.1",
- "@comunica/actor-query-operation-leftjoin-nestedloop": "^1.18.1",
- "@comunica/actor-query-operation-orderby-sparqlee": "^1.18.1",
- "@comunica/actor-query-operation-path-alt": "^1.18.1",
- "@comunica/actor-query-operation-path-inv": "^1.18.1",
- "@comunica/actor-query-operation-path-link": "^1.18.1",
- "@comunica/actor-query-operation-path-nps": "^1.18.1",
- "@comunica/actor-query-operation-path-one-or-more": "^1.18.1",
- "@comunica/actor-query-operation-path-seq": "^1.18.1",
- "@comunica/actor-query-operation-path-zero-or-more": "^1.18.1",
- "@comunica/actor-query-operation-path-zero-or-one": "^1.18.1",
- "@comunica/actor-query-operation-project": "^1.18.1",
- "@comunica/actor-query-operation-quadpattern": "^1.18.1",
- "@comunica/actor-query-operation-service": "^1.18.1",
- "@comunica/actor-query-operation-slice": "^1.18.1",
- "@comunica/actor-query-operation-union": "^1.18.1",
- "@comunica/actor-query-operation-values": "^1.18.1",
- "@comunica/actor-rdf-join-nestedloop": "^1.18.1",
- "@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.18.1",
- "@comunica/actor-rdf-serialize-jsonld": "^1.18.1",
- "@comunica/actor-rdf-serialize-n3": "^1.18.1",
- "@comunica/actor-sparql-parse-algebra": "^1.18.1",
- "@comunica/actor-sparql-serialize-json": "^1.18.1",
- "@comunica/actor-sparql-serialize-rdf": "^1.18.1",
- "@comunica/actor-sparql-serialize-simple": "^1.18.1",
- "@comunica/actor-sparql-serialize-sparql-json": "^1.18.1",
- "@comunica/actor-sparql-serialize-sparql-xml": "^1.18.1",
- "@comunica/bus-context-preprocess": "^1.18.1",
- "@comunica/bus-init": "^1.18.1",
- "@comunica/bus-query-operation": "^1.18.1",
- "@comunica/bus-rdf-join": "^1.18.1",
- "@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
- "@comunica/bus-rdf-serialize": "^1.18.1",
- "@comunica/bus-sparql-parse": "^1.18.1",
- "@comunica/bus-sparql-serialize": "^1.18.1",
- "@comunica/core": "^1.18.1",
- "@comunica/mediator-combine-pipeline": "^1.18.1",
- "@comunica/mediator-combine-union": "^1.18.1",
- "@comunica/mediator-number": "^1.18.1",
- "@comunica/mediator-race": "^1.18.1",
- "@comunica/runner": "^1.18.1",
- "@comunica/runner-cli": "^1.18.1"
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-rdfjs/-/actor-init-sparql-rdfjs-1.19.2.tgz",
+ "integrity": "sha512-8UWNPF5bCNRMigIJEK0rA9urmv2JTMz7PygB/ZZ2fGCGSuIJjdoeu+CGoQufqZSlloQpWooDqVxqPTGI1x+kuw==",
+ "dev": true,
+ "requires": {
+ "@comunica/actor-abstract-mediatyped": "^1.19.2",
+ "@comunica/actor-init-sparql": "^1.19.2",
+ "@comunica/actor-query-operation-ask": "^1.19.2",
+ "@comunica/actor-query-operation-bgp-empty": "^1.19.2",
+ "@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.19.2",
+ "@comunica/actor-query-operation-bgp-single": "^1.19.2",
+ "@comunica/actor-query-operation-construct": "^1.19.2",
+ "@comunica/actor-query-operation-describe-subject": "^1.19.2",
+ "@comunica/actor-query-operation-distinct-hash": "^1.19.2",
+ "@comunica/actor-query-operation-extend": "^1.19.2",
+ "@comunica/actor-query-operation-filter-sparqlee": "^1.19.2",
+ "@comunica/actor-query-operation-from-quad": "^1.19.2",
+ "@comunica/actor-query-operation-join": "^1.19.2",
+ "@comunica/actor-query-operation-leftjoin-nestedloop": "^1.19.2",
+ "@comunica/actor-query-operation-orderby-sparqlee": "^1.19.2",
+ "@comunica/actor-query-operation-path-alt": "^1.19.2",
+ "@comunica/actor-query-operation-path-inv": "^1.19.2",
+ "@comunica/actor-query-operation-path-link": "^1.19.2",
+ "@comunica/actor-query-operation-path-nps": "^1.19.2",
+ "@comunica/actor-query-operation-path-one-or-more": "^1.19.2",
+ "@comunica/actor-query-operation-path-seq": "^1.19.2",
+ "@comunica/actor-query-operation-path-zero-or-more": "^1.19.2",
+ "@comunica/actor-query-operation-path-zero-or-one": "^1.19.2",
+ "@comunica/actor-query-operation-project": "^1.19.2",
+ "@comunica/actor-query-operation-quadpattern": "^1.19.2",
+ "@comunica/actor-query-operation-service": "^1.19.2",
+ "@comunica/actor-query-operation-slice": "^1.19.2",
+ "@comunica/actor-query-operation-union": "^1.19.2",
+ "@comunica/actor-query-operation-values": "^1.19.2",
+ "@comunica/actor-rdf-join-nestedloop": "^1.19.2",
+ "@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.2",
+ "@comunica/actor-rdf-serialize-jsonld": "^1.19.2",
+ "@comunica/actor-rdf-serialize-n3": "^1.19.2",
+ "@comunica/actor-sparql-parse-algebra": "^1.19.2",
+ "@comunica/actor-sparql-serialize-json": "^1.19.2",
+ "@comunica/actor-sparql-serialize-rdf": "^1.19.2",
+ "@comunica/actor-sparql-serialize-simple": "^1.19.2",
+ "@comunica/actor-sparql-serialize-sparql-json": "^1.19.2",
+ "@comunica/actor-sparql-serialize-sparql-xml": "^1.19.2",
+ "@comunica/bus-context-preprocess": "^1.19.2",
+ "@comunica/bus-init": "^1.19.2",
+ "@comunica/bus-query-operation": "^1.19.2",
+ "@comunica/bus-rdf-join": "^1.19.2",
+ "@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
+ "@comunica/bus-rdf-serialize": "^1.19.2",
+ "@comunica/bus-sparql-parse": "^1.19.2",
+ "@comunica/bus-sparql-serialize": "^1.19.2",
+ "@comunica/core": "^1.19.2",
+ "@comunica/mediator-combine-pipeline": "^1.19.2",
+ "@comunica/mediator-combine-union": "^1.19.2",
+ "@comunica/mediator-number": "^1.19.2",
+ "@comunica/mediator-race": "^1.19.2",
+ "@comunica/runner": "^1.19.2",
+ "@comunica/runner-cli": "^1.19.2"
}
},
"@comunica/actor-optimize-query-operation-join-bgp": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.18.1.tgz",
- "integrity": "sha512-4W9zkiUdENs0oy9natFr7OFHeneNz5XxPfWnBcKFAvx99anMvrwPp0zTtbu2pEmZaavu+xS96cmYB7+f1d4gTQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.19.2.tgz",
+ "integrity": "sha512-MyC//Cl9SwQNKQeaULea8ViU1ehn68hL6CuqqwDHL/0M6lLi45aMFUBs9iK/Vw330uzFjbLjTc1epo1fFb2tLA==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-ask": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.18.1.tgz",
- "integrity": "sha512-B0fliw0Lk9qMRrTLYeGsT+hpKNbygivvLF/jZ0sUby5yF4HkVT3hZuuz2zdKjIwFKmqkXDPuHA+K2M0rqXMlGQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.19.2.tgz",
+ "integrity": "sha512-ogRkDwuPxDBRV8By20OHSkB89MblNM4YVfkMT2pPDhWrPojKGQVvedi58LpnfWX1NmTN63fhm9F8TyaG+jwsew==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-bgp-empty": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.18.1.tgz",
- "integrity": "sha512-QeG7TvHs7e+zYMOSDXRkFV+FhZAUSYAwVkN/BA2H5RD539QOneOE3ucPU+iui3b20fJE1FC3BpRpvJFpRg0++A==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.19.2.tgz",
+ "integrity": "sha512-Lbv7XC1Jct0FMIat4ZwVH73M2KttaSKbiVCN27ef97HTlveHS5IJ0TXUBcf/sn3YGXhQcaF9zFiLozZ9cD7o0g==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
@@ -929,9 +917,9 @@
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.18.1.tgz",
- "integrity": "sha512-4A2giRgzsQUBnxaMBe7ksGxxnrGnoKcqxw67nOQCbeGA28Tyro16tWnll0dKkP9eQNb2ssy521ecOL+I5WBAtA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.19.2.tgz",
+ "integrity": "sha512-KuyPkY47MFBYcZIwE2shJYTpd1ERGOLuwEVG3UOXz/ON6tosklQOAbuGHe0bFk0fZTrM2e3SLVdPMeWaetf7QA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -942,18 +930,18 @@
}
},
"@comunica/actor-query-operation-bgp-single": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.18.1.tgz",
- "integrity": "sha512-XUkjrPoBKxnoNwAdWoUo5RgsdLi7pgYKfu1VD3pQl2lg9tYBNYlxOXTaOpeJeAqqVmtWuJlTt4QX8kDhD9iMjg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.19.2.tgz",
+ "integrity": "sha512-Z9mdfGg/blqzh9wDEusnwwpTpP7Eb3GdbIOAxaMzIe3fo3PDuTadariXPzliho9tprC1dF/JN78i/1QM5MYqUA==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-construct": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.18.1.tgz",
- "integrity": "sha512-onpgJcq2zeCixTe0UCqkNr3vSCNPNUl1VCgCwT+E68J87/ShTa+Pr6E4icHJTwPNgkBDiRMbweF89upzS7LcyQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.19.2.tgz",
+ "integrity": "sha512-wNktY1yUVFCQBqvcr4xD52hlMmDzrB0VOJ9aEHQdvjmCs4P2AsLCG5Ty+qiz7va3HC1nT1qV4qRNLkeUYS93GQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -964,12 +952,12 @@
}
},
"@comunica/actor-query-operation-describe-subject": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.18.1.tgz",
- "integrity": "sha512-v5lMT9BEwq1wP8JvVHJcs0p1WY5/V7zqy01oiASYdJklc5N0Vj94m+44hb9f0V2khtKAJmDqSpEaGph18wiCUg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.19.2.tgz",
+ "integrity": "sha512-AVNiPI/k6HM+fSRxcTodsHLld+lADxzKDnjUGk4ckcWSqVsmzwlWUJ1DZfp8xqVj/3uWkIeG1oaY8h5Ph15ssg==",
"dev": true,
"requires": {
- "@comunica/actor-query-operation-union": "^1.18.1",
+ "@comunica/actor-query-operation-union": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
@@ -977,19 +965,19 @@
}
},
"@comunica/actor-query-operation-distinct-hash": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.18.1.tgz",
- "integrity": "sha512-JIqgeIv808BuUTmu9Dx2PD+dL3N2cX2s3dMTZrkYmxtZfb09qbj1W+VbEhsflYFN7DndfiMKl6+2hOEa4xA+JA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.19.2.tgz",
+ "integrity": "sha512-LO+hAW0tGRthAUKOkUM7ODjIsUbdNgPh+3cdVr4vkb2OcI/bJy1i5owIKUotepg8SuwekjDgOz0DxF2Mr5rjtw==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-bindings-hash": "^1.18.1",
+ "@comunica/actor-abstract-bindings-hash": "^1.19.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-extend": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.18.1.tgz",
- "integrity": "sha512-vkkQAeOpTm49TEcCqAg3MIa8m+kxBHXuxU/UvYm+y5+eyH97jvNiYK6BtarCgZcSVXQ3PYKS5sW/b4nVL5ydMg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.19.2.tgz",
+ "integrity": "sha512-6n2vY/QvOc4QreT3I/yf8jVryJgOo6czAGL/UelqS00BO/uOwRK1TjUsylGzeCTtp0w0j7SF6UiCp3PueIAi5g==",
"dev": true,
"requires": {
"rdf-string": "^1.5.0",
@@ -998,9 +986,9 @@
}
},
"@comunica/actor-query-operation-filter-sparqlee": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.18.1.tgz",
- "integrity": "sha512-Ku2nEWbnzQ2d1bG8qS7iYJT4N4qRkMP63A5LWDWs6veYP+bvMhVn2bP8Wahg88Q/KvKBa6WQOWKkc8RmvyqHbw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.19.2.tgz",
+ "integrity": "sha512-J+YZ8jzgpXVuKOJt1wEXiu5ZuynvSJ7USVqPbv3rqgmA86cXKL/ko5JNf6aT3kGIkHsxmXHtxKYfZ0xv0g07HA==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0",
@@ -1008,9 +996,9 @@
}
},
"@comunica/actor-query-operation-from-quad": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.18.1.tgz",
- "integrity": "sha512-380vmQCMVcsS3+qby7lVkgp3iBhmZelGm+kRNXrBkJPD9dR4zB3/AjgNEVpEOJxxtR/5po9V41899Yud/M/PiA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.19.2.tgz",
+ "integrity": "sha512-bao1/9lBBOHTnkORdfxpRrvvxHoJGEBTH06/E5CQPod7SkVlYs4cSBqy8UikkqNpehoXXHgQsOzncue8vlu2rQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1018,12 +1006,12 @@
}
},
"@comunica/actor-query-operation-group": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-1.18.1.tgz",
- "integrity": "sha512-cLWvlbAVww0SfNX2pT8BUJcosKS1zcb2Y655ymGiYyxfVksiDPoApvghMzSxgZpfSnED4bWwlJJ1kkqDhPSpWA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-1.19.2.tgz",
+ "integrity": "sha512-1h32gBva2Dd1SIbnhoEQizCzQkhRxI4r0lotDTtiijF/Wl/yvqc4FSaJ5ieeEVKSlPLpxmAvRKiGoGVT1FxA5A==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-bindings-hash": "^1.18.1",
+ "@comunica/actor-abstract-bindings-hash": "^1.19.2",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
@@ -1031,30 +1019,30 @@
}
},
"@comunica/actor-query-operation-join": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.18.1.tgz",
- "integrity": "sha512-41+trHjLvLc1RrrapconECLEWggZAhURFVXD/L3HWatmRTq71WlV7JdsSFMrZkDpHNNgRvUna1AvjCuaGlvowQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.19.2.tgz",
+ "integrity": "sha512-va0/UJyVojEDnmXON16zre5i6zhX1bFPeA0MmndTMxVaUSHPpknZkRq1VnSKxE6jb8bejVEfjgcU9JxRnPd+uQ==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-leftjoin-left-deep": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-left-deep/-/actor-query-operation-leftjoin-left-deep-1.18.1.tgz",
- "integrity": "sha512-qcGFFeuzgDJEOR1Tcei2oLXS+dm5R6gikcHWpAEVgapP2Ia2AySW2lKHcV62xPVnVkwXd0OcLw3JDPHXYmKTwg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-left-deep/-/actor-query-operation-leftjoin-left-deep-1.19.2.tgz",
+ "integrity": "sha512-j3Ah5oz+K6m3Tj+mBLK5qt20BKnMimEOKy1WNic/Z48CshJU8lH/jCivTOrg/AYjx3+5fi4JfsKEVY/o8olHyA==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-join": "^1.18.1",
+ "@comunica/bus-rdf-join": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.18.1.tgz",
- "integrity": "sha512-e67UxQXodEVK0LZDSyKJg+0v2tcsbAEHjCywlHRzRdKPls4KuxhvT0Mj2vt5SHQ01rR5evNvaYA4BNB+n2BH4g==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.19.2.tgz",
+ "integrity": "sha512-KYG+3HeBzzY2INVHERMvaCjuymxjfHvrmfmhrjidWzHsjyaEefaDKaZcp6zIRBGRKmHsN/+03c6cVm7ZMru7wg==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
@@ -1063,12 +1051,12 @@
}
},
"@comunica/actor-query-operation-minus": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.18.1.tgz",
- "integrity": "sha512-icRsegxaRjXk6fd4eXRmGH7qUtzB5snld2LxoD4yFu/kSbOKupPJJZQjMcR/KkNNuHR+o+lo8B+PS5hJ7HUPYw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.19.2.tgz",
+ "integrity": "sha512-UdsMEUzjEyLI7Zz9uAAcRwdQgFXNpKA7Kr/9T8bIC65Ta3g1r2WmOm6Bf/NIeAaoB0gMTm/vZObj2Ey5+OSIWg==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-bindings-hash": "^1.18.1",
+ "@comunica/actor-abstract-bindings-hash": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
@@ -1076,9 +1064,9 @@
}
},
"@comunica/actor-query-operation-orderby-sparqlee": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.18.1.tgz",
- "integrity": "sha512-Qk2PQYQ0RkZ2K4SIRYoz5+fwG7exXV/wY06eAXIXxmlD0fviTF6bYlUr3h238VV0QhYMjsRrdcSPmT2MnVl5kQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.19.2.tgz",
+ "integrity": "sha512-jB9UE+wmOPvZl00BjzuRKv38/4iXcExhhgSB8UetG0XM2jmaz68XjJwHHOntoAD+XO6jyKR/cIIriVYTMfu7JQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1089,53 +1077,53 @@
}
},
"@comunica/actor-query-operation-path-alt": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.18.1.tgz",
- "integrity": "sha512-BBIQ5oYr/1mLmZXxevLbRvjzLHbrUyZlFG22jx/8fk51ikAynyAGkV4EHi0TJs7+Zy0RuFwfVccOnscL7bWURQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.19.2.tgz",
+ "integrity": "sha512-5Lqtt5qfnkJx+vL0g7rZAXoA4wEWCjSmkhTLWdZU+4+YvXhfY0S3aQ8W1Ik/Q93O5u+pRFje1z49AMpWuk83MQ==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-path": "^1.18.1",
+ "@comunica/actor-abstract-path": "^1.19.2",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-inv": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.18.1.tgz",
- "integrity": "sha512-Ezdl8bcjOkv2t8rjG0MU/CeJYcxQR7mUmMN8bvLebHQlUp95OgZ34yiwMCVBLWkn7xycD1Rzqq4Nk33zs8P3Rw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.19.2.tgz",
+ "integrity": "sha512-R4FJAQAMkIqTNxX4aLxvkx2UeQXGbBle6kWNC9z9LiOaBorXERw22xTOlG9viNkn+3iRPVCIcxJyJ+Lw+msTTw==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-path": "^1.18.1"
+ "@comunica/actor-abstract-path": "^1.19.2"
}
},
"@comunica/actor-query-operation-path-link": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.18.1.tgz",
- "integrity": "sha512-yTQwxyBt0xuq0QEhJdPB6GFyoyUkRC7C76oXtdw1ocJV48NPBfHVeQ6AjQR6S6mcWA6LvUQd1oUj5pwe4AU+zw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.19.2.tgz",
+ "integrity": "sha512-+efbj6CH81KFXt4oy4PXM23HoOSj9SEvxPG+l4zmpnrjzsoGgpBT21bZeqwuGUYnCXmqCkljjMvEv7w0UwfA9w==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-path": "^1.18.1",
+ "@comunica/actor-abstract-path": "^1.19.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-nps": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.18.1.tgz",
- "integrity": "sha512-52qzXYVRR7y4DeR5MNzoN9ahpvTICSx7U9pQGczX5be52bc0keyQsmUf3ReOApuK2Ru700GmAiu5sXYW7+5JOw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.19.2.tgz",
+ "integrity": "sha512-j2R31+DtnDjWpzY6SNv7xezCzhQ3HuGLuAnwqpy22wQgLSev7D8jbe/1NSl9GTQZL62MnF39JrHLc0bSQwXWQw==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-path": "^1.18.1",
+ "@comunica/actor-abstract-path": "^1.19.2",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.18.1.tgz",
- "integrity": "sha512-CFekd04zUrjuALf+zEkGiRD0+z1R0uFIX2b0PxQ8bkXWfBf4AcsgaUU3TKZwTt5LsXcCvUQ4Opm6miYV7Yr25Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.19.2.tgz",
+ "integrity": "sha512-0c2EjNb7gSwyRxD6VMhqefrm3trOAVePIxWui7Dc0R8/Y50s9rZAmM9C2Yv+8V8eRgJdqPpZrDa6ck+CWLnrUA==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-path": "^1.18.1",
+ "@comunica/actor-abstract-path": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
@@ -1143,44 +1131,44 @@
}
},
"@comunica/actor-query-operation-path-seq": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.18.1.tgz",
- "integrity": "sha512-NKKM970D65XWyzw6am5B/WQKeNg7p3BHZHCAlokwyicJK4kHwEivT8/5TkUdZk3pGpmKCN4dGTHwKzTmNFoifw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.19.2.tgz",
+ "integrity": "sha512-rGuTL2JsbwXVsplIhrZgbilmpeirDTBXOETkPJHcwsVtZV6MBZGNfVTK36V6bHUJXQAZJpukLuuO27SaUMwVqg==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-path": "^1.18.1",
+ "@comunica/actor-abstract-path": "^1.19.2",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-zero-or-more": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.18.1.tgz",
- "integrity": "sha512-PrSJ39sSUELTDz5gOIfueJNqaiNHJTx5Ou5QsVs1VPNduvgmMUPu93+0SUGPo3qPC3UEkN/tu7XVo5aq9DaH8Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.19.2.tgz",
+ "integrity": "sha512-cJI7xCyb1j9VLeyEnGtOfNOi7yvIbJ+Zm7eztG/jHRgBWEKDfVrVhlSKrctMvZjFzvbZBiYuMdrCE+56mXydSA==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-path": "^1.18.1",
+ "@comunica/actor-abstract-path": "^1.19.2",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-zero-or-one": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.18.1.tgz",
- "integrity": "sha512-+oqEZtNn9XC4WSJkA18zouH4Wl5NhMujFEBDNG3Ga3FuZC87TmIGi93AUBaYOMGexocoajhNJLM4N3RyRuCQHw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.19.2.tgz",
+ "integrity": "sha512-r/hn3jUVWHExyICMyeobVvyrVIvZAB7SpB00nO1r1xx/JdJdUAlPP72oKioX8UcKcT5WVt1D3b3+6ZFwaQKz1w==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-path": "^1.18.1",
+ "@comunica/actor-abstract-path": "^1.19.2",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-project": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.18.1.tgz",
- "integrity": "sha512-FW6rtWaaAPtwB3Z4PlnBtaumqNOCEoecBriDdZ49tZHWiEL7sadBkbAPhDr01z0DEazaWKiBzyk+rBqN+XXWOw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.19.2.tgz",
+ "integrity": "sha512-u3X3Vc9Sj/s5LgrFoymaFXc6fyI6XAO7XQRVpO+1F5jKmY+oFQwK/jRi6J6JluTZNtjlmzfIyY0EsHoRSMnPfw==",
"dev": true,
"requires": {
"@comunica/data-factory": "^1.17.0",
@@ -1190,9 +1178,9 @@
}
},
"@comunica/actor-query-operation-quadpattern": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.18.1.tgz",
- "integrity": "sha512-qk1Bcwd4QkEOXl0yf6QnBxtOl9Q3K70lcoUDjknPO9ArBZrXADvVaRqhTck/aoEIkAziPKCtwR8Va9txEx42zw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.19.2.tgz",
+ "integrity": "sha512-LAKMVsaMJP1uZUl8aFWnFg1pbhIwu4b+CRvIj0hHf7iaC1ng6wwRLIDF7c/6gDlzsDD9BRZg0r0XmJQPF0/DFg==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1203,32 +1191,32 @@
}
},
"@comunica/actor-query-operation-reduced-hash": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.18.1.tgz",
- "integrity": "sha512-epk4IP2XTf6V97o2XNH1wmEOac8JCR6eb+HyvPhhmzeu+YixmgQ3AX4s8KmRLZUKc+zfBf6+tKErQvXXQCfYhA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.19.2.tgz",
+ "integrity": "sha512-owHWzME+V9uhsJrdU7jKJCWh4wfGrGL+iuf+wlFvbSp8Z2EZdRYAtymAvItCmFzVeTTGlPlff89xdWqg/apxLA==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-bindings-hash": "^1.18.1",
+ "@comunica/actor-abstract-bindings-hash": "^1.19.2",
"@types/lru-cache": "^5.1.0",
"lru-cache": "^6.0.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-service": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.18.1.tgz",
- "integrity": "sha512-IvolDGGrc2qJXk5XlBBVtKe1rF5s5zhIXU5bNd3RlqpNr1vtLjPylrgQ7a/gvlt4BzaD5GwV5zprnIXWoK+ptQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.19.2.tgz",
+ "integrity": "sha512-YA4T/dO09HecfNri8JRveg6hRst79Wfb5dZqmBshj4zh/zzZFABDWI+XMXbwbX6wuG1q7wJDCRzO2Ku3X1WV6A==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
+ "@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-slice": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.18.1.tgz",
- "integrity": "sha512-GjdJ+PUAByWI0InogOqh22IKJ3qV7lVB1TwCzwSMeQdY+67TU0dx7V2PtEGSvWEgw8OId0GBQ0e+isi8I6vT1w==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.19.2.tgz",
+ "integrity": "sha512-Cq+uBRQKzbOa5uJUCP7O00lyPQ6TtYn2dOT+5VCdnjAbuk3DyVqR614tih3SAgA5LRYTUxfX+WePlvOoIq6eRA==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
@@ -1236,13 +1224,13 @@
}
},
"@comunica/actor-query-operation-sparql-endpoint": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.18.1.tgz",
- "integrity": "sha512-YcLSSTmou73kLOlM5P+Lug31sQf3X3T7WtADy8ZF99GLxTh3Sx1anluN0q6Ngn7P472K/G8Ab0fX1xj9fg5gdg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.19.2.tgz",
+ "integrity": "sha512-VC4VLMA9zAckci3S/Smw2ebQe0JJoDB1La/EcSidI1RJNittlf5fw79wbCYGxZuTi0tCmTCYRyarMqDZpQrp7Q==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
- "@comunica/utils-datasource": "^1.18.1",
+ "@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
+ "@comunica/utils-datasource": "^1.19.2",
"@types/rdf-js": "*",
"arrayify-stream": "^1.0.0",
"asynciterator": "^3.0.3",
@@ -1253,9 +1241,9 @@
}
},
"@comunica/actor-query-operation-union": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.18.1.tgz",
- "integrity": "sha512-IA+QsPDsPdVjFKNPd5sKcaEwqa1KT3WlONiUWpvpy8kUzDW8MnVHvg9ffVJ8DX1nqiijOJBj7aJr6w5Ejb2iAg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.19.2.tgz",
+ "integrity": "sha512-4swo5gN/XzqPIPEzw2rf5EsbB7jqywS56pjz1R4zt9ar1vHGgsiwkngEM6iWfWkrFbZF/gUnSQMIo/F9oLtPPg==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
@@ -1263,9 +1251,9 @@
}
},
"@comunica/actor-query-operation-values": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.18.1.tgz",
- "integrity": "sha512-BzjqvYNi6pqHZFDKBZTjeVtoCBDX/c8Jf/1L3taOUgjT7M7ZpO3RXebMlLzXd8a0UgqPGLlW2VEwto4PUi38LQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.19.2.tgz",
+ "integrity": "sha512-JZfuffeWhX/Ss6FDeQBR+H/OtCh/iI4nl+ElFRjfJ8OfHU/r5cU7R5ecXb+U0cZ780/PltgfKyq6wtannRYnLg==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
@@ -1274,9 +1262,9 @@
}
},
"@comunica/actor-rdf-dereference-http-parse": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.18.1.tgz",
- "integrity": "sha512-Pu8sGAcmuJicFK09piXpvDtRvLV8A7FCwhrgSv1vjZPhiorSrav1ihVQaVAVmthp8mJepXh1ZmOWJVn7+cwQGA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.19.2.tgz",
+ "integrity": "sha512-2/b6YgILmYf+tR5GZ/3JRGxY9xqExVJnaRx6qOJ3ay/98MRRjhQxtDxAIClMZNFlc+gwJb1T5vPoX1H8dnfDNg==",
"dev": true,
"requires": {
"cross-fetch": "^3.0.5",
@@ -1284,46 +1272,46 @@
}
},
"@comunica/actor-rdf-join-multi-smallest": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-multi-smallest/-/actor-rdf-join-multi-smallest-1.18.1.tgz",
- "integrity": "sha512-80Od3BHbwSdqpTF3Fj13FSvvc8k/76jeAO90FI1iRuE9ppKjTEtg/4CqOyoORKs8gHiQIywSiH4BsnSYMZEIxQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-multi-smallest/-/actor-rdf-join-multi-smallest-1.19.2.tgz",
+ "integrity": "sha512-Vr2ZwBsKRY3TMRta+AI009zrdk+1pUrgsyw4kUQmQ4EbzJQ1VfoUQ8sg23A8rDNAIcBdq+1skHRhWOxfPAvaiw==",
"dev": true,
"requires": {
- "@comunica/bus-query-operation": "^1.18.1",
- "@comunica/mediatortype-iterations": "^1.18.1"
+ "@comunica/bus-query-operation": "^1.19.2",
+ "@comunica/mediatortype-iterations": "^1.19.2"
}
},
"@comunica/actor-rdf-join-nestedloop": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.18.1.tgz",
- "integrity": "sha512-EmLKcIM1ZYwzOXZFEZ2TQRKf1ERmBPkiNuZf+ZFEFhtFO7PrBMVjmvfs426vE0d40rNnxZdMxCMb9BQQp+87ag==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.19.2.tgz",
+ "integrity": "sha512-Rt7FJ8s+HMMiY3F4qoXL4/WX0JGEFktfFv6o2OZyTrJ+T+CRYhw/ikQX0upVZpdT0xqjGxRzAZbdVfyAezHyNQ==",
"dev": true,
"requires": {
"asyncjoin": "^1.0.1"
}
},
"@comunica/actor-rdf-join-symmetrichash": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-symmetrichash/-/actor-rdf-join-symmetrichash-1.18.1.tgz",
- "integrity": "sha512-HPXGmzqsc2SDtfmJ76fREdejb0rbk7KsDDWHBTLDvqi/JR8BD1xzhf0e6NmQf5oZYyPlNNOnpsTWruFeuE7Ung==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-symmetrichash/-/actor-rdf-join-symmetrichash-1.19.2.tgz",
+ "integrity": "sha512-uXgh74oDrbEqflgUzEadwKu/X4EARZUPkLkHSyHgTVkwwlr2uNhvNmve931nXjt0OBZ80THiVEcYit4roHd8LA==",
"dev": true,
"requires": {
"asyncjoin": "^1.0.1"
}
},
"@comunica/actor-rdf-metadata-all": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-all/-/actor-rdf-metadata-all-1.18.1.tgz",
- "integrity": "sha512-XLdUMWnq7rnnb+wqqnCVmrscwohJvB8cfQsw9Px8aQFON3cIcn8jqeaKsTE3HAtJGP0JwHhYdGVpoBwMkS3vVg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-all/-/actor-rdf-metadata-all-1.19.2.tgz",
+ "integrity": "sha512-2oTtZOUFs2PyILht0J6Ma9/x5srjyvijbobgCSfcrENkv+r1wRDriyHMOfiuWLlvFlksumJ17gerp8iehPorqQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-controls": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.18.1.tgz",
- "integrity": "sha512-kw2UIbdKVenu1wYxFlxANjkfsAO8cDFANtJWUyg2WTBrNv5l+hO88w1YHBuhiweBB4yQQ0GyI6HlEyjWNt5UFA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.19.2.tgz",
+ "integrity": "sha512-3Qt7NhG0AJUnDM7537G8lyryPdykpdIqGERs0EEPzvfOtiCbPXoBtvVfj82hdIcIXKEgqrpgyt4CuJoGGSK6zQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1332,73 +1320,73 @@
}
},
"@comunica/actor-rdf-metadata-extract-hydra-count": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.18.1.tgz",
- "integrity": "sha512-tobQNXfl+tgRcyfYjPmyCSSj3m5cAUQGIoJMVkRD6UxqGUpsIKJ73X1fUwtitDqfA8tXDcNF0dtAqxQcS5E4TA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.19.2.tgz",
+ "integrity": "sha512-7sD2BNiyDhjjUmavmy0xUX0EgI5DNacKUa8xX5xzZj5WC/glKtSFMO/nUpiqzosmdaZ3vryICm4mXVFS3eKmRA==",
"dev": true
},
"@comunica/actor-rdf-metadata-extract-sparql-service": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-sparql-service/-/actor-rdf-metadata-extract-sparql-service-1.18.1.tgz",
- "integrity": "sha512-ZspKJqpd/1dTRv9IQOpBn6rb+BF7T6ErWkyZBN6tfLDVbSCtDQLBr9guVVCxPeEvxIfx+jCJi1sZ1tqauPqGlQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-sparql-service/-/actor-rdf-metadata-extract-sparql-service-1.19.2.tgz",
+ "integrity": "sha512-hVr1RPf+kryRkDGVwK1DX3mwskVtJhDI8Jhr5u2Y0CmtvelucNpo8mivvNgV5M5M4FhX+4jSUp17ndnJTizHUw==",
"dev": true,
"requires": {
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-metadata-primary-topic": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.18.1.tgz",
- "integrity": "sha512-16UMt95xL+IvYBAPd+9JeABrWeDdYHbm53QeNnQfspXhv27aMZvrn+l13hp2dozuS2MYe9PCmfIQIFzo4z+AxA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.19.2.tgz",
+ "integrity": "sha512-mh50SL2p5+eo9CbNJOysUe0C7ThoA8x5Y8994Plo3p/c0HfT2G8KsTM/vyIYIkKr54lDZ7I8izmd41dDicJ49w==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/actor-rdf-parse-html": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html/-/actor-rdf-parse-html-1.18.1.tgz",
- "integrity": "sha512-Wx5c/4bN7ohJjsp397JeX8YTDZXMp3VWEFilIjl4/CtAoGV4BzYlHPFo3ZCuRjRpn2EPyJF0Itxedio0b30u3A==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html/-/actor-rdf-parse-html-1.19.2.tgz",
+ "integrity": "sha512-E7eJH5CR9cvYoaK78OwA8wkc46FsU7hbDHIkXy3fKktooXOcOJxoMU3+0xZ0n6qFRRzMQjzNzh+KnR+0ZgZWIg==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-parse-html": "^1.18.1",
+ "@comunica/bus-rdf-parse-html": "^1.19.2",
"@types/rdf-js": "*",
- "htmlparser2": "^5.0.0"
+ "htmlparser2": "^6.0.0"
}
},
"@comunica/actor-rdf-parse-html-microdata": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-microdata/-/actor-rdf-parse-html-microdata-1.18.1.tgz",
- "integrity": "sha512-ErW0ngwOnEXbGr2fskQYBvau1ZsvB3IbQimAcNAx9m+pIeoDF51+qjpTTZpcckgbTN9wUsNfGCwxk9jbKH2nTQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-microdata/-/actor-rdf-parse-html-microdata-1.19.2.tgz",
+ "integrity": "sha512-i+FfdPRsd1wT5yrnFORo1eFbL2G+YyeG3dQtC7bEuTf3pW9wXJCUWarLZ0dBbCK3WaPR+J+zdM+fss4j++0bNA==",
"dev": true,
"requires": {
"microdata-rdf-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-html-rdfa": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-rdfa/-/actor-rdf-parse-html-rdfa-1.18.1.tgz",
- "integrity": "sha512-c1ae+6F+ohTIAscItsVI/+dKY5tKx7sJwKrrznwgXoPlkFxk7aI9W03Du8X1FsT+spNlk3+CIA/lUPrZ53Lhhw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-rdfa/-/actor-rdf-parse-html-rdfa-1.19.2.tgz",
+ "integrity": "sha512-Sx9vDZwHnXbcAkKOTQj0mIeablIQO1W6O92Vl1u0eStuaMyB2xBIFnPDpHpM9oQ8Yg14xwdGnSfqfCRW1Ar/mQ==",
"dev": true,
"requires": {
"rdfa-streaming-parser": "^1.4.0"
}
},
"@comunica/actor-rdf-parse-html-script": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-script/-/actor-rdf-parse-html-script-1.18.1.tgz",
- "integrity": "sha512-KI3h3Qb+/IibzFJjLWYVFn43pM0oyRaDovm9VzyGass4wbxmMUVm69lgOLTEcsmOVmTPNcvNI4dYa03g/zjwjA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-script/-/actor-rdf-parse-html-script-1.19.2.tgz",
+ "integrity": "sha512-GgJF1cZpFWJ7ga3g/BxuxpPQeASf07eZd3TiLRlQ5Mll4sVVqU9CO+oebQXbtnzJYnxPrSP85YCP9Ez9TnfFkQ==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-parse-html": "^1.18.1",
+ "@comunica/bus-rdf-parse-html": "^1.19.2",
"@types/rdf-js": "*",
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-parse-jsonld": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.18.1.tgz",
- "integrity": "sha512-3X3REVIqRTgjzWUsfVgJQsyZ75J/SSl7mHfFchNncxRdm14hq67RApO0gztdSLj4t4Kv1HtciEm/zs+nEuKmNw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.19.2.tgz",
+ "integrity": "sha512-t2rLKtiUV0ku0ZkxjzIDUfPV/SOfeYmdR6DRBDMM/b44xda+fxeSIsYEsxjNMsz0GWUppgWi/+dmBbioO38qDQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1408,9 +1396,9 @@
}
},
"@comunica/actor-rdf-parse-n3": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.18.1.tgz",
- "integrity": "sha512-5GQ+PaabjXSgu3mR8tN2ZWyy+pSaq6rIyHDNKAbh3AkG70j6tQWxfa4OZIk2+ImDEjtPVofYsJZnY5VSZhZEwg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.19.2.tgz",
+ "integrity": "sha512-IReAuHq1H0xNOMO0fd1mbbkgnfw1VS/Q5+hK0WJA3j5lII/nrSKRIbmdyP6jYLNHwj2F3i6aGTCRr9Z75/86kA==",
"dev": true,
"requires": {
"@types/n3": "^1.4.4",
@@ -1418,47 +1406,47 @@
}
},
"@comunica/actor-rdf-parse-rdfxml": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.18.1.tgz",
- "integrity": "sha512-qCn8UovKW6xNCoYgR13MBPi8mOOSorRxPLpSOt7eVFEADFMkjzVJAbyExN+8EzHgrJj2DIwQixD2kYnGaEkz+Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.19.2.tgz",
+ "integrity": "sha512-vC4RVTe6RTsRD32ZJR5NEOUGiHACCVvlO2/NUFy3g9/H6aQdiKen/iAqfDo03jq4yJO2UTFx8zj5l5fLvzL9yA==",
"dev": true,
"requires": {
"rdfxml-streaming-parser": "^1.4.0"
}
},
"@comunica/actor-rdf-parse-xml-rdfa": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-xml-rdfa/-/actor-rdf-parse-xml-rdfa-1.18.1.tgz",
- "integrity": "sha512-99g5zw57ZbxSKiv0daZiEWhu70Efs0dqKQsf4hIHl+1mZJ7gjYdXrA1gSb2h/bnvezZKyiqjkc9VxzD+J7dv0A==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-xml-rdfa/-/actor-rdf-parse-xml-rdfa-1.19.2.tgz",
+ "integrity": "sha512-y9dYBawjAxBfHZw3ITByq/+N/pkLmIqUcXc9ypiQEx1C2iZvlkgKiShhYK7b/Qzvx8FXqfhXKRknup8/yZicww==",
"dev": true,
"requires": {
"rdfa-streaming-parser": "^1.3.0"
}
},
"@comunica/actor-rdf-resolve-hypermedia-links-next": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-links-next/-/actor-rdf-resolve-hypermedia-links-next-1.18.1.tgz",
- "integrity": "sha512-PV7OGjCe5PDXO1xkJq96z6KHuLQF7+XB48MitkYcK80b5fNyzVK/RKUEwe9m99asZXg2GqTGtLmbzbUQ9XdYrg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-links-next/-/actor-rdf-resolve-hypermedia-links-next-1.19.2.tgz",
+ "integrity": "sha512-VhtNZmQMwphmEukNOC+RyNHY0DXpC7pqRQ7wNFC310y1emRUuvHCuA2fMyKkbBJe1Hm5tOt60inqAudYMz/eew==",
"dev": true
},
"@comunica/actor-rdf-resolve-hypermedia-none": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-none/-/actor-rdf-resolve-hypermedia-none-1.18.1.tgz",
- "integrity": "sha512-8lZLGyZGLF1XjhXwmOlGMD9xsFfc69YD1gh2elUeSTRF2F9xMFc0ynBqMQZ12CaNPK2k2/dRljMhLsvkGHK/Sg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-none/-/actor-rdf-resolve-hypermedia-none-1.19.2.tgz",
+ "integrity": "sha512-Apur7/rfUdTn/O91ojGP2F4ZOwGzyHhv1rvg2AFbWUDsRIWu51AGur4/FVytRygR2QY14ZQf5DJu3gwRjeH5SA==",
"dev": true,
"requires": {
- "@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.18.1",
+ "@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.2",
"@types/rdf-js": "*",
"rdf-store-stream": "^1.0.1"
}
},
"@comunica/actor-rdf-resolve-hypermedia-qpf": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-qpf/-/actor-rdf-resolve-hypermedia-qpf-1.18.1.tgz",
- "integrity": "sha512-tAK6qh91gohbOUF6/NyNrL2qFl3wV0PtoryJRfGGRO4GYEHK358hkSh0bfwjq/MXeQIyzogllk2xyPPv69fT6g==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-qpf/-/actor-rdf-resolve-hypermedia-qpf-1.19.2.tgz",
+ "integrity": "sha512-FTPmc3UNcq70a1CJyre5XzyhausfnvWGeAEtnfi+ML7GD+xFZ0MM/lHEqdMHGakX1d7M3F9+muLetaS/zz+0HA==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-dereference": "^1.18.1",
+ "@comunica/bus-rdf-dereference": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
@@ -1467,14 +1455,14 @@
}
},
"@comunica/actor-rdf-resolve-hypermedia-sparql": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-sparql/-/actor-rdf-resolve-hypermedia-sparql-1.18.1.tgz",
- "integrity": "sha512-ifLBrxcBw3Pw5Y+wxdswnnvblquKdGH24evsXiZuhkbBCR7Lazubqdty7q25P4nZ6yQIzQpFBbwVa+J5zVwwfw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-sparql/-/actor-rdf-resolve-hypermedia-sparql-1.19.2.tgz",
+ "integrity": "sha512-jXpEiZU6Fc2/qHHEhpRwbIeU4sAPGQuP7fzlLvdmatbk78iI6l+G/u32R3tl0Vi/qETxi5Hhnr37v30msdqWXg==",
"dev": true,
"requires": {
- "@comunica/actor-rdf-resolve-quad-pattern-sparql-json": "^1.18.1",
- "@comunica/bus-query-operation": "^1.18.1",
- "@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
+ "@comunica/actor-rdf-resolve-quad-pattern-sparql-json": "^1.19.2",
+ "@comunica/bus-query-operation": "^1.19.2",
+ "@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
@@ -1483,9 +1471,9 @@
}
},
"@comunica/actor-rdf-resolve-quad-pattern-federated": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.18.1.tgz",
- "integrity": "sha512-rKCVHcRs1ZIVDDg68i+6bSoYkJXsBMXyUX22TLmx7AUWgNk/LuhRbSKoujXkiemnqPycK/eJhT+MfP95nbBDGg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.19.2.tgz",
+ "integrity": "sha512-7txxy/D2//uMBQh204Oqfe3YfS2U9r+ftHvHWT+uVi+M4DX5kx7gO5LrhSl4KjqkjMUj9XicU2ZUWQbXsjkkJA==",
"dev": true,
"requires": {
"@comunica/data-factory": "^1.17.0",
@@ -1497,14 +1485,14 @@
}
},
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-hypermedia/-/actor-rdf-resolve-quad-pattern-hypermedia-1.18.1.tgz",
- "integrity": "sha512-tCkzY0wRy1NFp+d9jE0G4fPNvRq5VPOexU8WFXWeY1AILApOJ5SDi4FdsM9dfq+Iey6Bx+diw8WmuHF+zHFlag==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-hypermedia/-/actor-rdf-resolve-quad-pattern-hypermedia-1.19.2.tgz",
+ "integrity": "sha512-RI5LYX18R74QQYPIeMyeXXlvrIzLFGPSFr6JCvuNDXlYsiq9ilL/5AePv1TsuLIgyxixK2N4KzAyZ0hO1maAdQ==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-metadata": "^1.18.1",
- "@comunica/bus-rdf-metadata-extract": "^1.18.1",
- "@comunica/utils-datasource": "^1.18.1",
+ "@comunica/bus-rdf-metadata": "^1.19.2",
+ "@comunica/bus-rdf-metadata-extract": "^1.19.2",
+ "@comunica/utils-datasource": "^1.19.2",
"@types/lru-cache": "^5.1.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
@@ -1516,9 +1504,9 @@
}
},
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source/-/actor-rdf-resolve-quad-pattern-rdfjs-source-1.18.1.tgz",
- "integrity": "sha512-XvSRjeBuq0TsdjzmAq+9g9QlVB8fS8XBmBOgu60NSoDR3h1SDQK1A2T6B8CHvX9CtX0o8Xcx9MH5rbrw+FUhug==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source/-/actor-rdf-resolve-quad-pattern-rdfjs-source-1.19.2.tgz",
+ "integrity": "sha512-+kTCV2So+GUoRxdSsYjuks2i2HjsfjXlzCKK0uYRGLXLmqUozf0zHh1ZfIZqdxDAFMwYiaTgPw2P9+MjICBYUw==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1526,9 +1514,9 @@
}
},
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-sparql-json/-/actor-rdf-resolve-quad-pattern-sparql-json-1.18.1.tgz",
- "integrity": "sha512-wXtKCutF9dedgMSLk4R0ionaio9ZSg6yCN7nEdrcF9pFbOnW5ItrdNH59aDpJT6MDFXTglcgyKoee6y/fDTDfw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-sparql-json/-/actor-rdf-resolve-quad-pattern-sparql-json-1.19.2.tgz",
+ "integrity": "sha512-XuNdqnDp2PegpZg6/9gs3V9XXmouQWTiD5yLBdFs55y+hUs+Y8ditaVXjqxfi7nCZhb+seqKupeWbDPQgOLpeg==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1540,18 +1528,18 @@
}
},
"@comunica/actor-rdf-serialize-jsonld": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.18.1.tgz",
- "integrity": "sha512-kKzg0a0oEy8ESg9Thv9sVg0gEdGILPv6tXB4eJToPlSb9W03xSfUS7wA12/59xAncCmnhDyfRgpAzXWHAlcxlg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.19.2.tgz",
+ "integrity": "sha512-JHrJcT6TeyUbs4JniOioTK8fNcvWCFbIvuAQnOKJQySVn4Y+spflui7eopp0xlTVzAqXQ1RXwhfO+pM9HIaM4g==",
"dev": true,
"requires": {
"jsonld-streaming-serializer": "^1.2.0"
}
},
"@comunica/actor-rdf-serialize-n3": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-n3/-/actor-rdf-serialize-n3-1.18.1.tgz",
- "integrity": "sha512-0DelCUSdjWnd6i21yCfQ6b8e2HX/fkupXh534xByjZTiOj8LlRr+memE7LM2IOUx8GgGMn6fK0cZi+edT10q/g==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-n3/-/actor-rdf-serialize-n3-1.19.2.tgz",
+ "integrity": "sha512-ZEsh1OVAUNbpUdybEqnc0eWQvQG8XekVkWhExIfOsRNIz3wm/echO62pXJqc5vILTP1d+dk5I0KkgibhPKQMMA==",
"dev": true,
"requires": {
"@types/n3": "^1.4.4",
@@ -1561,9 +1549,9 @@
}
},
"@comunica/actor-sparql-parse-algebra": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-algebra/-/actor-sparql-parse-algebra-1.18.1.tgz",
- "integrity": "sha512-us7rpHgqj+bfZ2Ac9ObqcRUi4rKEeH30pk7ZcPeDuQLzcha8dCr8QetqUL3vl94TpYuG9KhkBLRJuTGjIPjvkw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-algebra/-/actor-sparql-parse-algebra-1.19.2.tgz",
+ "integrity": "sha512-P0LT4AtTYUjlmMh+mPAjhDs4rdebmbiExJtKoyVnVB1zeb4jhz/PlcxxcKslk1SWCEYYggcgTky5IM4XexZ/yQ==",
"dev": true,
"requires": {
"@types/sparqljs": "^3.0.0",
@@ -1573,18 +1561,18 @@
}
},
"@comunica/actor-sparql-parse-graphql": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-graphql/-/actor-sparql-parse-graphql-1.18.1.tgz",
- "integrity": "sha512-CxXzNbSixjLPOJFKK7tjz+KRizX4/LAdVP2yx3JUx67FYmXO4UCz5D+8s1MQTbk+QrQvV2lmAzAz60Iw58Rp2w==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-graphql/-/actor-sparql-parse-graphql-1.19.2.tgz",
+ "integrity": "sha512-F8VnaH9fkLf2bRNfgsRfuvGLr6WBEgDrQ7WhYr17eYKDlEcb3S0fm8iCgjdde7j6jk7K+fGn5MoiorM4Koqpzg==",
"dev": true,
"requires": {
"graphql-to-sparql": "^2.2.0"
}
},
"@comunica/actor-sparql-serialize-json": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-json/-/actor-sparql-serialize-json-1.18.1.tgz",
- "integrity": "sha512-C30LwcuGoomvrFQHzxnSn4NhWyy+98+yvVtzidIYzoOlZFF2mNiTLb6IRYM5cXKk8cy7i82fuOamr8EJEzVEMA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-json/-/actor-sparql-serialize-json-1.19.2.tgz",
+ "integrity": "sha512-YQ/Zd1Z+2am3uG42M/R65nag9KajJREyhr4Nq4ABIQqt1f6JDHV7ccyxo1mU8S+sRKsakjB3uUmRb+8A790ceA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1592,54 +1580,54 @@
}
},
"@comunica/actor-sparql-serialize-rdf": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-rdf/-/actor-sparql-serialize-rdf-1.18.1.tgz",
- "integrity": "sha512-3UU7ozaXovG8Wn35MPcOg7lPsqFw2CdR45HOkxCJ/9jLHGeVajMRFJdQNbexQwnYgAq++BanpPMzU8VD4uUUQA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-rdf/-/actor-sparql-serialize-rdf-1.19.2.tgz",
+ "integrity": "sha512-eTWm77j1j0gTacajE/W51lT4CKL+x6rRvfTkRnrKNkyCuVZd/j8gIT1f82Yf6K4TqxO6LJ6VwFFXF3sxx6nVmQ==",
"dev": true
},
"@comunica/actor-sparql-serialize-simple": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-simple/-/actor-sparql-serialize-simple-1.18.1.tgz",
- "integrity": "sha512-kj7z/SXw99a0zLteU8zuLNjqNXsMCGMSgsbWRCls/BS/fxuN0JgJWXoKikXHhPLCV/lL5bSGVXnM6I6ROHfdUQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-simple/-/actor-sparql-serialize-simple-1.19.2.tgz",
+ "integrity": "sha512-OwCWS25PxcskYd0V0GMVJEXb7GQzGZufN2fBYSpodtl98rTiCbC3c7sMShoqCm79GkuHhNLOjT6hLcJCFettAQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/actor-sparql-serialize-sparql-csv": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-csv/-/actor-sparql-serialize-sparql-csv-1.18.1.tgz",
- "integrity": "sha512-F3m735pDV9patpi3NSDRe7Zsu7l8LHcwg2hyo9SNbka/gnsFQQjGX0avS/mXI1tPfXbzpYYRdfw3uyGm7X9X7Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-csv/-/actor-sparql-serialize-sparql-csv-1.19.2.tgz",
+ "integrity": "sha512-jYlWfAghrApzDF2YUR3gkLuBQ4qMeDUZDKnEimIFDGfN1IgQUrrkyeui6YEXEbDwd3tu171QjNsEr/5DZFmr/A==",
"dev": true,
"requires": {
- "@comunica/bus-query-operation": "^1.18.1",
+ "@comunica/bus-query-operation": "^1.19.2",
"@types/rdf-js": "*"
}
},
"@comunica/actor-sparql-serialize-sparql-json": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-json/-/actor-sparql-serialize-sparql-json-1.18.1.tgz",
- "integrity": "sha512-aMeRClMGwbeEpuuKXQN+nQr9n0M27uQgLvMSjQaNu9l5EXzm3TZX+TJe4OANIQSGhiQtP7Hb2agegBV9JFaZJg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-json/-/actor-sparql-serialize-sparql-json-1.19.2.tgz",
+ "integrity": "sha512-va/hIXJnCPnex+bq8/MABQrM4TWB1FKGhUlrSKdaOpmNgMAbKr6ylPbO1XOtNcqLfwGK2phVvPbPipGjTJEllw==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/actor-sparql-serialize-sparql-tsv": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-tsv/-/actor-sparql-serialize-sparql-tsv-1.18.1.tgz",
- "integrity": "sha512-c6SYtiu2Ba7zIdzRnS+Q7TOZX6DeaS9vO8mMDRqqXf0oQytWpx2RQ9cUjY2eveF3RbZewwuSkN8sbLmHM2T2Hg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-tsv/-/actor-sparql-serialize-sparql-tsv-1.19.2.tgz",
+ "integrity": "sha512-J8AgOeWUGSi1xWVjz/pd5MPkZlbBoOVhWShEob4MuzOb8ZvOd1K3hCi8IA2ZGH2FE4TMJcryB5RK7PAEal42uw==",
"dev": true,
"requires": {
- "@comunica/bus-query-operation": "^1.18.1",
+ "@comunica/bus-query-operation": "^1.19.2",
"@types/rdf-js": "*",
"rdf-string-ttl": "^1.1.0"
}
},
"@comunica/actor-sparql-serialize-sparql-xml": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-xml/-/actor-sparql-serialize-sparql-xml-1.18.1.tgz",
- "integrity": "sha512-EsRUrPOVGW4hrCfdq5ovk1Igp5+lXNNOQnX/hW840Zp3xcexzmXrIDI6d4qh0Z0Mex0Gw4q4dnQTXEcJHR5s7g==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-xml/-/actor-sparql-serialize-sparql-xml-1.19.2.tgz",
+ "integrity": "sha512-DDpmjaHX+BTkLmXlaNp++U3heIF08tV36jVaLqaV2OXTlg2sdMBL67Lupd2ZRv/lYSAnwwiTr+WFimMcnptQpQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1648,18 +1636,18 @@
}
},
"@comunica/actor-sparql-serialize-stats": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-stats/-/actor-sparql-serialize-stats-1.18.1.tgz",
- "integrity": "sha512-YUS86F5HMuK9Ew+gvj+z1nbssOBQevPN2QKiejK+7K4dFnkiyuUjP9hGwU9Llm4/QzqPbw9EbGx6MzD7ECufkw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-stats/-/actor-sparql-serialize-stats-1.19.2.tgz",
+ "integrity": "sha512-NkrLai5Q8UEJCNYMK5/W5DGpVoSdIm8bBYrIY1ONfuS6keizROAE0Fz86yzmAxPSlVKZOoqCjCCaLemO7cAsIg==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/actor-sparql-serialize-table": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-table/-/actor-sparql-serialize-table-1.18.1.tgz",
- "integrity": "sha512-V8DIuQILpnUPsO3pQT+5AUdVf7nD10oBWQM4q0nXokYsLRah6UYxfj8f931tsp9sot3n5mlN5XIQ/47B5N/AAA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-table/-/actor-sparql-serialize-table-1.19.2.tgz",
+ "integrity": "sha512-gcMAXVmuatSc5COY7A4bIS/kxry4EvzIhdJ6upf5p0Z+TL65nWSsFPUvr2erRBWjl3rlDPFHfBmn2vTtggumFA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1667,9 +1655,9 @@
}
},
"@comunica/actor-sparql-serialize-tree": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-tree/-/actor-sparql-serialize-tree-1.18.1.tgz",
- "integrity": "sha512-W/aOVaalZHnTD0S0yEka/ieJXo2Ofj+BKnlL7Isi/IBnZA4pIuas7XdGK/JUl/DmBeQ1HyKM4Pt1N58JSzBolA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-tree/-/actor-sparql-serialize-tree-1.19.2.tgz",
+ "integrity": "sha512-PyYBxruXKVVVRTdkU1fGhddaT6FXLtBY0rAPbd/ve0V4Ddte6Ey8ZXlUlsuoo/xAR6N6e6yV9bfc+QZ9rdnpvA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1677,15 +1665,15 @@
}
},
"@comunica/bus-context-preprocess": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-1.18.1.tgz",
- "integrity": "sha512-Kk0xWo2dw/OM4HwWiQ263DloziHlWxvGWwNzp4gOzJjkVFF55ooHypfNrdJglCq6elG4bDZsjvqRkyYsKHRK9Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-1.19.2.tgz",
+ "integrity": "sha512-CNYFubbQeCnhf2ZsIqLC/0u3zF0tJwqhvMc3rF9qnHw3SWtttGsBQpYtaOZR3uR7FSVJvJqKV65qLedumQdOog==",
"dev": true
},
"@comunica/bus-http": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-1.18.1.tgz",
- "integrity": "sha512-ovEy1HEagq2cla3WSCLyrA6LGMsfNyc7sm9UBJUnaX4KnYlOoombibsCwqiJhGfvHHV019yFj1l7NDICF3ZD3Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-1.19.2.tgz",
+ "integrity": "sha512-dRvN7k/ZjHly+Dr+baanvHPP3MjZINE6j7Zp8TAvV2wq6KQaJhUWRSfAVbzw3AkSWy2txtC3zXUpTYGJYYiV3Q==",
"dev": true,
"requires": {
"is-stream": "^2.0.0",
@@ -1693,30 +1681,30 @@
}
},
"@comunica/bus-http-invalidate": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-http-invalidate/-/bus-http-invalidate-1.18.1.tgz",
- "integrity": "sha512-M0l7y0Vid+68DStc3DRhuWpJd7XqZh60OKbJfwSBeCp5ZOFhKcCjjcuOzPJC5fBzZg+7/O74U1xqXJGnYusX0A==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-http-invalidate/-/bus-http-invalidate-1.19.2.tgz",
+ "integrity": "sha512-eekin3KzdJeTxwsaX3XJ31eoNfc13mN4KXSpn5Unuu5lo8VmM8+CQauA4sJqkUwjbSlFqny60QZlUOPYZ/wOeA==",
"dev": true
},
"@comunica/bus-init": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-init/-/bus-init-1.18.1.tgz",
- "integrity": "sha512-eXIfQM4cl3dKwSd5GVt2lxcTxiSqxZZ/u8rjQeS/vncdRDfIAY7WS1qBHARUXEgeLRu5LX5W4Bq13TGwn+dkNQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-init/-/bus-init-1.19.2.tgz",
+ "integrity": "sha512-SVIcKPSrPlHxrndsKX650ijrOPMyBdZZkDe/mLXUKNq7cSerdQZtP6w95u7/fnBwjwXOAMjPiyP3L07rD6KAcA==",
"dev": true
},
"@comunica/bus-optimize-query-operation": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-1.18.1.tgz",
- "integrity": "sha512-pOhLRHYnqGTKMcS0W0pHrG54LqsGpMfNXzoTftvZtn5WbsUh3BrV5jrJ5E6SIIcjtW9l0vN1cF19ze+Ofv/rUg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-1.19.2.tgz",
+ "integrity": "sha512-Y5CevNB+NYO+PHwTOOWCDYh9YF53BWZi0OFsX26HdqxnqODYSt56pYFMDozeb+OBWTX0NN68CH4QUCjvNSPJbg==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/bus-query-operation": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-query-operation/-/bus-query-operation-1.18.1.tgz",
- "integrity": "sha512-ZNlywwaKh8tRHQFwDvSYqXoRjT0QYOiZANWZDpkw4orliGQZJUA8X95yYhf0JGOftY2FBzznKOZvFtYPXnqesA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-query-operation/-/bus-query-operation-1.19.2.tgz",
+ "integrity": "sha512-s9vzwYcgaRuOGWUA1WDGcOO+j7pjB2Vf1bCOUR/4Xdoz795ev415q3qtSqQISvNVwj5LM4pk0mcXDHsISRDn2Q==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1727,18 +1715,18 @@
}
},
"@comunica/bus-rdf-dereference": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference/-/bus-rdf-dereference-1.18.1.tgz",
- "integrity": "sha512-BvgD4YXpII7I1X23agOwj55lX2bz5RRNDlsX84yudQIFO8xj0QiX7LkDoZad4MnEfj06cxipERh3ZfLNbEYD+g==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference/-/bus-rdf-dereference-1.19.2.tgz",
+ "integrity": "sha512-vK73nWJh1xF5Br1NFNX0Lx8nF6NDwKwgMzxqIxOj/gOxUJgTFOaWm7/brYc38ITSrDfYOAmlL4p2bGMNkdfm2A==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/bus-rdf-dereference-paged": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference-paged/-/bus-rdf-dereference-paged-1.18.1.tgz",
- "integrity": "sha512-ezgTpvA5Rknh+lzyfS0hbMkbD/tpgonxMI6iCJrcGua/4X0d7dRwPTLtnDI3j8V7pK0tHEKTwR3vt2B2Utt1lw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference-paged/-/bus-rdf-dereference-paged-1.19.2.tgz",
+ "integrity": "sha512-wn/bLMxDeWVyuT9zbrpFPpO0DtWVSrTB4R0j+DLOM1mk2PiLqW1LaxCQoUQl6+yxf9kwM7DOnNDgCLb/PhKmlw==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1746,9 +1734,9 @@
}
},
"@comunica/bus-rdf-join": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-join/-/bus-rdf-join-1.18.1.tgz",
- "integrity": "sha512-5ZhoqsTp3G49pIQZD3lyeK6RSE8bRcYBzEty8YiN41CH77wWksx+AXhjCNtYsDtCadlftqzPw17PB+59P/nb7A==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-join/-/bus-rdf-join-1.19.2.tgz",
+ "integrity": "sha512-2/W25J2UmCTj9J3Dy46DRZRVxyeyDDRt4LmNevdSyYSsp8RhhXHTWkqzhJQekgRK/AALofy3b6xWJTBpbfX7cQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1756,18 +1744,18 @@
}
},
"@comunica/bus-rdf-metadata": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata/-/bus-rdf-metadata-1.18.1.tgz",
- "integrity": "sha512-sDBLK0pICbIlsH0AL9XLboDAZ9RVT02dgKB1+8BHOAM/4DsXVBJpQ9rUG2T3JjK60UMGhYr4+CQemRiXd7mGiw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata/-/bus-rdf-metadata-1.19.2.tgz",
+ "integrity": "sha512-4HlBnOMy6VgCCsVA4yNAGavE3fxEHJ3AUxMUQSfh3Si38Ww1fUp1BVo39vLMb/rbxfVyGMDWqfB31wHYXFjnHA==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/bus-rdf-metadata-extract": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata-extract/-/bus-rdf-metadata-extract-1.18.1.tgz",
- "integrity": "sha512-x0i2Egy0gmvMhS3j3OANHKN/a2/IBxXX+l16MdvNHFTNXaTjvRCSsMC6jdPkekg7L2oirPhPrg4E7g1oBRR8IA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata-extract/-/bus-rdf-metadata-extract-1.19.2.tgz",
+ "integrity": "sha512-yo8HR4oidch0x0teAtnyKE+NDE07l8GiiU2anmgHS+fkZ8NlBBpbwT780kjpeTfHm2XuJzDCiYJR7Lhnbj8HZQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1778,45 +1766,45 @@
}
},
"@comunica/bus-rdf-parse": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse/-/bus-rdf-parse-1.18.1.tgz",
- "integrity": "sha512-GNNCd1cEp+mjVeUG8eHI3u1x8+ic6MatHRET/ujMeouC0kI1jX31R57PoX9QWzopOx73tueI2i9E+5xLQDa29A==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse/-/bus-rdf-parse-1.19.2.tgz",
+ "integrity": "sha512-tXTAWFHdmrZXmze9tWOyih0dgxaCL1qusJHIdtLW3Krt9BZhhUjPVckoHTFB+LSexmOEDHF91+WrkTwBxIDGpg==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-mediatyped": "^1.18.1",
+ "@comunica/actor-abstract-mediatyped": "^1.19.2",
"@types/rdf-js": "*"
}
},
"@comunica/bus-rdf-parse-html": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse-html/-/bus-rdf-parse-html-1.18.1.tgz",
- "integrity": "sha512-bV4N7ABCshWi0S4VliibGLtazYGiToVyeMqhFBMyl/v8IaPOW+2QbE4JfXcen8+ieHqonFt28W/x9gbh7VEZeA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse-html/-/bus-rdf-parse-html-1.19.2.tgz",
+ "integrity": "sha512-TdhTZ7/UKQl75kndpHlIWHPQVxuRg2wbViEhQgvZBu7nyWR0F39Sh4A9iGhmdiwgZkQ8MdGIjQEdwbcSPtxN4w==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/bus-rdf-resolve-hypermedia": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-hypermedia/-/bus-rdf-resolve-hypermedia-1.18.1.tgz",
- "integrity": "sha512-xxs4LITJFYFHoap2b4i2ijIAqqsmcb8nJdJn4xby0h6Lh+MCS0wJzM/bl+tVduT1TzBw4u6UCCmxBIj1ESwW0w==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-hypermedia/-/bus-rdf-resolve-hypermedia-1.19.2.tgz",
+ "integrity": "sha512-BqQDrIIdIExA3pRmmxRrWc87XUpbbayL1OZf/eiXFa3qWgqmtUuhRtzom3BYO2Oy59yVcK7wZm/hMXQQX1aaAA==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
+ "@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3"
}
},
"@comunica/bus-rdf-resolve-hypermedia-links": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-hypermedia-links/-/bus-rdf-resolve-hypermedia-links-1.18.1.tgz",
- "integrity": "sha512-UEjgHl/GFvZyfiZYNzsagJ1IdBQGUzuEHwFx3QKg3YPocOF3+sBop1de4QEWJMbXWvHvtJJdYKZ9c3iMb6V46w==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-hypermedia-links/-/bus-rdf-resolve-hypermedia-links-1.19.2.tgz",
+ "integrity": "sha512-mW2iarewZz3nuFagbvN04JDj9MHrP7QCT9h0B8gBot7fUibZtn2n6yJPK7LOJHaLditQ+8zOMoAH2SDwjakq/Q==",
"dev": true
},
"@comunica/bus-rdf-resolve-quad-pattern": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-quad-pattern/-/bus-rdf-resolve-quad-pattern-1.18.1.tgz",
- "integrity": "sha512-J4rNLk9uk/anSnvgTuD/cVeUPlkJQtSiRfaYOn+AbK+kABdtvr8xNyIBcjAKVjeqQjE7gdd42Sbdo+IJ6f08lQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-quad-pattern/-/bus-rdf-resolve-quad-pattern-1.19.2.tgz",
+ "integrity": "sha512-x2QeGGK6ktG/UJCx5nuJqLjxl1RizSdTS6biEzcO4ZtXZ+S2K03PCFKd1YgufLPWXtajr32WnKAvD//wpTO6mg==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
@@ -1825,37 +1813,37 @@
}
},
"@comunica/bus-rdf-serialize": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-serialize/-/bus-rdf-serialize-1.18.1.tgz",
- "integrity": "sha512-HYXVGfggEP05IGJZHXzUBszPe/y8PPqbs8BfMafrB/20Rz3CJu9fiLVZmkWH3FcdcE7ihkw8Omc1PVdMuFP00A==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-serialize/-/bus-rdf-serialize-1.19.2.tgz",
+ "integrity": "sha512-HrtI/6CZ4Oi2L9zvGJqFH3DABAHtW9EmhqLGispLoGSwPLUO79hPOnyZw9TjTaEYHnO5uI2tjacXQm1fd7BHNQ==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-mediatyped": "^1.18.1",
+ "@comunica/actor-abstract-mediatyped": "^1.19.2",
"@types/rdf-js": "*"
}
},
"@comunica/bus-sparql-parse": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-sparql-parse/-/bus-sparql-parse-1.18.1.tgz",
- "integrity": "sha512-0fDpmOgOMtGxDFnwbXzjqXEP0iv7M7eDwHuDtM+ZIAAXzwD+wbd/2wqMj2JauVnI3Z6DlxNTilsi70amEgNfrQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-sparql-parse/-/bus-sparql-parse-1.19.2.tgz",
+ "integrity": "sha512-rFlVGxX2ThYGEdmTC9ZkV6rtxUF41ShuyrK89/n7lyRzJH8oBbXsjUwymG5oEEsYc3PWLTVirCQCnZvbT8VCeg==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/bus-sparql-serialize": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/bus-sparql-serialize/-/bus-sparql-serialize-1.18.1.tgz",
- "integrity": "sha512-F7XtYjYN2fWGjbolA6outKKzE2b4V28MfVtKuTIApYgq8GWWQu/2FZE0q681xyv2x26cFHMzqUsiqlGIliFoXg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/bus-sparql-serialize/-/bus-sparql-serialize-1.19.2.tgz",
+ "integrity": "sha512-104o/7ya4+raft6Ofw/CXGa2LzJfZMLELyK0LOqXvDY1/VBT5KWwtZbsbRaWB90oX0hbvJAxun8f37XP00hCmQ==",
"dev": true,
"requires": {
- "@comunica/actor-abstract-mediatyped": "^1.18.1"
+ "@comunica/actor-abstract-mediatyped": "^1.19.2"
}
},
"@comunica/core": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/core/-/core-1.18.1.tgz",
- "integrity": "sha512-wXLOu/Wkt0zUy6XwI4W7IaXkcLmEkxs0P/xWY3huMdG5ixvFxVlOz+EuKz5sNCpeGiqZsMON4I9YvgiUlnZv0Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/core/-/core-1.19.2.tgz",
+ "integrity": "sha512-BmUZiuCbR2T/sFlmKW6mRRBIH7hef2irNIB2nA3dDbRj5MyHVOEDDh0cJdbgMtWaHyM4m2Bw8gk8c63fQsfMPA==",
"dev": true,
"requires": {
"immutable": "^3.8.2"
@@ -1871,81 +1859,92 @@
}
},
"@comunica/logger-pretty": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/logger-pretty/-/logger-pretty-1.18.1.tgz",
- "integrity": "sha512-x0MPfyFyvB51h5O82iNt958fgF1Jw2hOb9ex60XrkHeb+++Bpg83c3RuVmcGEtWGUndNydPgugeaz2zY/OEEkw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/logger-pretty/-/logger-pretty-1.19.2.tgz",
+ "integrity": "sha512-Vd206zfJGkYePIfa/InY83VVd5VPx/tfwdq7brAPQjL668W8UPsfVBHwvib1/unTB1cDvp0Xv76MigjfwMZ1XA==",
"dev": true
},
"@comunica/logger-void": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/logger-void/-/logger-void-1.18.1.tgz",
- "integrity": "sha512-IHZL2KLagkJ3g+yQ1Bi34HTe9F1pN4cKXQQUuJdl0mSyPV1nAjlexXOU33K5NC6nuejYKHmM6KuKG6QOjYMJjQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/logger-void/-/logger-void-1.19.2.tgz",
+ "integrity": "sha512-FK8C26HaMz4XSIT3iiP6SYb5oNNBR2+OPc3Fq6yCBfx/Nzyw6pK69A9DszxKNZ7R4BACSZRYJqbhvqyxEBK2CA==",
"dev": true
},
"@comunica/mediator-all": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/mediator-all/-/mediator-all-1.18.1.tgz",
- "integrity": "sha512-G8J3O6WPQmGLrODD+qJ6yx43fgGgoSaXXwpw+PYaQAviQ1fHH0BWU4RHCKADqAYLYkHWjM4NpGOPAlWTMCjFKA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/mediator-all/-/mediator-all-1.19.2.tgz",
+ "integrity": "sha512-NgVXh9aRsFaurXh5BElLYYn1R+90q4itq+DcJbHKJsC87ysuLUazVKe1vNLohvJbdfst0Ga1WUH7Q9RpB75Uhw==",
"dev": true
},
"@comunica/mediator-combine-pipeline": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/mediator-combine-pipeline/-/mediator-combine-pipeline-1.18.1.tgz",
- "integrity": "sha512-ZLqgTXjKc2WX+udGZun07eMhUYZACOL04ME0u0J0RwudOahQX6wnC4qR32UpFN9pS/n3kMBBHCye4ZtJHDrzsQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/mediator-combine-pipeline/-/mediator-combine-pipeline-1.19.2.tgz",
+ "integrity": "sha512-j9YXmKJH350lBy2vkjYC2ouikkPXDllEdr0xUl3uVUcz56Gr0Jn/tUUl/kGteLHSb+wMzmBvpbbedBoVpfhLbQ==",
"dev": true
},
"@comunica/mediator-combine-union": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/mediator-combine-union/-/mediator-combine-union-1.18.1.tgz",
- "integrity": "sha512-w4S4WNwjh+8zjz154YaEL1p4VWYYD5yNhPTH/mIvk5IS2R6TLqTQ0qlk5JvOvDA5aL8IiOndG0rTPXxFS8dhxw==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/mediator-combine-union/-/mediator-combine-union-1.19.2.tgz",
+ "integrity": "sha512-UHC0yS8rVbSqyg8ndyKSxd8lLnQYiMzyYwbTQyMSSOJCc7WCYPXME1IMlNlsO7c0BC7hxXLZPkeIGLAYh5/CEg==",
"dev": true
},
"@comunica/mediator-number": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/mediator-number/-/mediator-number-1.18.1.tgz",
- "integrity": "sha512-nJNrMi01l9eLEttWlcIvabLoOEr31Dw19VoOClYvPC315e60DYuX4b5PTZNIuTTjv5x39DVRQ2qjFVMdFjn3sQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/mediator-number/-/mediator-number-1.19.2.tgz",
+ "integrity": "sha512-VMT2yM++DxQUhR7IJp1yS1rOXzIyXY3si4SQQMzAKIUGwgVWvW/SnB9Ds3JLXnNl4Ptb7Y+kRQZAffHZzBw41w==",
"dev": true
},
"@comunica/mediator-race": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/mediator-race/-/mediator-race-1.18.1.tgz",
- "integrity": "sha512-UN9yT62mHTbIvCxyMyMx63wbYVB2Z7tq0pzHrVOUTlx09QMHkyIr8wVkaAiTzXfm/PKTX9awNNpmXrAz9Sw8kA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/mediator-race/-/mediator-race-1.19.2.tgz",
+ "integrity": "sha512-F+PxeAWTrMEW0s48oaV5h3YrywoO3vPqCgSKyDfRx2YtjJX3SjJduGVNsKKCK4oWNG/NINOg3eUaTG8p4JMbWQ==",
"dev": true
},
"@comunica/mediatortype-iterations": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/mediatortype-iterations/-/mediatortype-iterations-1.18.1.tgz",
- "integrity": "sha512-FYqUBfu5UYc5dsZp9IxtZ/dp0w2XRoZM1i3nL9xmEM4kiQSM4q2ucTULj+VVBAkAJnDmMf9aajMCbB0+VQBjrA==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/mediatortype-iterations/-/mediatortype-iterations-1.19.2.tgz",
+ "integrity": "sha512-FegoAy36aa3dceqSo747YmDOgUdkLVYb5QvW8I0+uBNkfUcYJAzvne36ERVIcIPrhNkkS5KFYR+P4Nw4mHcHkA==",
"dev": true
},
"@comunica/runner": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/runner/-/runner-1.18.1.tgz",
- "integrity": "sha512-rH+xDg3cMiD0dRLuiwUA131pY6unJjupglReBi6RDvUnQIR4yxD5HZlbx/K7gW/Y+ae1/MV1/gbVQY4DRkh8Rg==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/runner/-/runner-1.19.2.tgz",
+ "integrity": "sha512-BfwVSI1M3/cPxC/006KyR1TDnmuxGY+lENZRAs3BWc1RaCmkcU/V9+yrxWmUHYfSZgVZ4sQovkC/BTwLiMUBaw==",
"dev": true,
"requires": {
- "componentsjs": "^3.4.1"
+ "componentsjs": "^4.0.3"
}
},
"@comunica/runner-cli": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/runner-cli/-/runner-cli-1.18.1.tgz",
- "integrity": "sha512-C0T4esawRcr0RQvd9JUkC0gp/JsNOZtnIBhaILIH2gs/63XfwdYO/JvtyqyOVdppf3f0bP8rSVwGy7/O3xjuGQ==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/runner-cli/-/runner-cli-1.19.2.tgz",
+ "integrity": "sha512-glBNAUURfwmD1/xTwJNfw3vBoBp9Lzagqe/gcpzGhj+62xZ5KBfoE9fMu9gFfc10uXHHuvoXTfIISfxQbWd0SA==",
"dev": true,
"requires": {
- "@comunica/runner": "^1.18.1"
+ "@comunica/runner": "^1.19.2"
}
},
"@comunica/utils-datasource": {
- "version": "1.18.1",
- "resolved": "https://registry.npmjs.org/@comunica/utils-datasource/-/utils-datasource-1.18.1.tgz",
- "integrity": "sha512-MMwidHX8gNm/VRuonNS486RfA6UUWdRSCloEjP7++4we1yOBvjfdrcoB267rKxiKCoNcgSZlhxN6wfBGcg+S0Q==",
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@comunica/utils-datasource/-/utils-datasource-1.19.2.tgz",
+ "integrity": "sha512-XZ/qg5cq/0N/ixqbV9dnYkGK/deELdHUSiWV6Mt6OuRqI1d2m0UEid5SFa1eaaHgjLFAbf01YH0TglVtiOKNfQ==",
"dev": true,
"requires": {
- "@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
+ "@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"asynciterator": "^3.0.3"
}
},
+ "@dabh/diagnostics": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz",
+ "integrity": "sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==",
+ "dev": true,
+ "requires": {
+ "colorspace": "1.1.x",
+ "enabled": "2.0.x",
+ "kuler": "^2.0.0"
+ }
+ },
"@emmetio/extract-abbreviation": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@emmetio/extract-abbreviation/-/extract-abbreviation-0.1.6.tgz",
@@ -1953,9 +1952,9 @@
"dev": true
},
"@eslint/eslintrc": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz",
- "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==",
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz",
+ "integrity": "sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
@@ -1965,7 +1964,6 @@
"ignore": "^4.0.6",
"import-fresh": "^3.2.1",
"js-yaml": "^3.13.1",
- "lodash": "^4.17.19",
"minimatch": "^3.0.4",
"strip-json-comments": "^3.1.1"
},
@@ -1997,16 +1995,25 @@
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
"dev": true
},
+ "globals": {
+ "version": "12.4.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
+ "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.8.1"
+ }
+ },
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
},
- "strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
+ "type-fest": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
"dev": true
}
}
@@ -2077,9 +2084,9 @@
}
},
"@open-wc/scoped-elements": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@open-wc/scoped-elements/-/scoped-elements-1.3.2.tgz",
- "integrity": "sha512-DoP3XA8r03tGx+IrlJwP/voLuDFkyS56kvwhmXIhpESo7M5jMt5e0zScNrawj7EMe4b5gDaJjorx2Jza8FLaLw==",
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@open-wc/scoped-elements/-/scoped-elements-1.3.3.tgz",
+ "integrity": "sha512-vFIQVYYjFw67odUE4JzZOpctnF7S/2DX+S+clrL3bQPql7HvEnV0wMFwOWUavQTuCJi0rfU8GTcNMiUybio+Yg==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0",
@@ -2140,60 +2147,6 @@
"@polymer/polymer": "^3.0.0"
}
},
- "@polymer/iron-collapse": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/iron-collapse/-/iron-collapse-3.0.1.tgz",
- "integrity": "sha512-yg6q5ZyckQR9VL9VmLrSTkSFXWy9AcJC8KtnD5cg0EHRPbakE8I9S/gVAgeP4nMWV2a/BjLLC4IBygcCMDhAGw==",
- "dev": true,
- "requires": {
- "@polymer/iron-resizable-behavior": "^3.0.0-pre.26",
- "@polymer/polymer": "^3.0.0"
- }
- },
- "@polymer/iron-flex-layout": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/iron-flex-layout/-/iron-flex-layout-3.0.1.tgz",
- "integrity": "sha512-7gB869czArF+HZcPTVSgvA7tXYFze9EKckvM95NB7SqYF+NnsQyhoXgKnpFwGyo95lUjUW9TFDLUwDXnCYFtkw==",
- "requires": {
- "@polymer/polymer": "^3.0.0"
- }
- },
- "@polymer/iron-icon": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/iron-icon/-/iron-icon-3.0.1.tgz",
- "integrity": "sha512-QLPwirk+UPZNaLnMew9VludXA4CWUCenRewgEcGYwdzVgDPCDbXxy6vRJjmweZobMQv/oVLppT2JZtJFnPxX6g==",
- "requires": {
- "@polymer/iron-flex-layout": "^3.0.0-pre.26",
- "@polymer/iron-meta": "^3.0.0-pre.26",
- "@polymer/polymer": "^3.0.0"
- }
- },
- "@polymer/iron-iconset-svg": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/iron-iconset-svg/-/iron-iconset-svg-3.0.1.tgz",
- "integrity": "sha512-XNwURbNHRw6u2fJe05O5fMYye6GSgDlDqCO+q6K1zAnKIrpgZwf2vTkBd5uCcZwsN0FyCB3mvNZx4jkh85dRDw==",
- "requires": {
- "@polymer/iron-meta": "^3.0.0-pre.26",
- "@polymer/polymer": "^3.0.0"
- }
- },
- "@polymer/iron-meta": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/iron-meta/-/iron-meta-3.0.1.tgz",
- "integrity": "sha512-pWguPugiLYmWFV9UWxLWzZ6gm4wBwQdDy4VULKwdHCqR7OP7u98h+XDdGZsSlDPv6qoryV/e3tGHlTIT0mbzJA==",
- "requires": {
- "@polymer/polymer": "^3.0.0"
- }
- },
- "@polymer/iron-resizable-behavior": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/iron-resizable-behavior/-/iron-resizable-behavior-3.0.1.tgz",
- "integrity": "sha512-FyHxRxFspVoRaeZSWpT3y0C9awomb4tXXolIJcZ7RvXhMP632V5lez+ch5G5SwK0LpnAPkg35eB0LPMFv+YMMQ==",
- "dev": true,
- "requires": {
- "@polymer/polymer": "^3.0.0"
- }
- },
"@polymer/paper-ripple": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@polymer/paper-ripple/-/paper-ripple-3.0.2.tgz",
@@ -2211,19 +2164,10 @@
"@webcomponents/shadycss": "^1.9.1"
}
},
- "@polymer/prism-element": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@polymer/prism-element/-/prism-element-3.0.1.tgz",
- "integrity": "sha512-mam3oZZwVoxmC8i2srCxaTsvCqZF2HX4yxbm1JN9OGZS2JMwu7bnjjk7O8haoj9u6w+ocUi+vTLjYeIIoPx7vQ==",
- "requires": {
- "@polymer/polymer": "^3.0.0",
- "prismjs": "^1.11.0"
- }
- },
"@rollup/plugin-node-resolve": {
- "version": "11.0.1",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.0.1.tgz",
- "integrity": "sha512-ltlsj/4Bhwwhb+Nb5xCz/6vieuEj2/BAkkqVIKmZwC7pIdl8srmgmglE4S0jFlZa32K4qvdQ6NHdmpRKD/LwoQ==",
+ "version": "11.2.0",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.0.tgz",
+ "integrity": "sha512-qHjNIKYt5pCcn+5RUBQxK8krhRvf1HnyVgUCcFFcweDS7fhkOLZeYh0mhHK6Ery8/bb9tvN/ubPzmfF0qjDCTA==",
"dev": true,
"requires": {
"@rollup/pluginutils": "^3.1.0",
@@ -2232,18 +2176,6 @@
"deepmerge": "^4.2.2",
"is-module": "^1.0.0",
"resolve": "^1.19.0"
- },
- "dependencies": {
- "resolve": {
- "version": "1.19.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
- "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.1.0",
- "path-parse": "^1.0.6"
- }
- }
}
},
"@rollup/pluginutils": {
@@ -2258,9 +2190,9 @@
}
},
"@sinonjs/commons": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz",
- "integrity": "sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==",
+ "version": "1.8.2",
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz",
+ "integrity": "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==",
"dev": true,
"requires": {
"type-detect": "4.0.8"
@@ -2276,9 +2208,9 @@
}
},
"@sinonjs/samsam": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.3.0.tgz",
- "integrity": "sha512-hXpcfx3aq+ETVBwPlRFICld5EnrkexXuXDwqUNhDdr5L8VjvMeSRwyOa0qL7XFmR+jVWR4rUZtnxlG7RX72sBg==",
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.3.1.tgz",
+ "integrity": "sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==",
"dev": true,
"requires": {
"@sinonjs/commons": "^1.6.0",
@@ -2312,9 +2244,9 @@
}
},
"@types/chai": {
- "version": "4.2.14",
- "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.2.14.tgz",
- "integrity": "sha512-G+ITQPXkwTrslfG5L/BksmbLUA0M1iybEsmCWPqzSxsRRhJZimBKJkoMi8fr/CPygPTj4zO5pJH7I2/cm9M7SQ==",
+ "version": "4.2.15",
+ "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.2.15.tgz",
+ "integrity": "sha512-rYff6FI+ZTKAPkJUoyz7Udq3GaoDZnxYDEvdEdFZASiA7PoErltHezDishqQiSDWrGxvxmplH304jyzQmjp0AQ==",
"dev": true
},
"@types/chai-dom": {
@@ -2326,6 +2258,16 @@
"@types/chai": "*"
}
},
+ "@types/co-body": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/@types/co-body/-/co-body-5.1.0.tgz",
+ "integrity": "sha512-iRL97yYTJNGFv495U63ikKG9r60thDtQ403jEzBEFR4IY6kMxw2IfcPoxI8+HY3nRNLrwHFYuCnWGEB/0hFVwg==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "@types/qs": "*"
+ }
+ },
"@types/command-line-args": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@types/command-line-args/-/command-line-args-5.0.0.tgz",
@@ -2347,6 +2289,12 @@
"integrity": "sha512-P1bffQfhD3O4LW0ioENXUhZ9OIa0Zn+P7M+pWgkCKaT53wVLSq0mrKksCID/FGHpFhRSxRGhgrQmfhRuzwtKdg==",
"dev": true
},
+ "@types/convert-source-map": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/@types/convert-source-map/-/convert-source-map-1.5.1.tgz",
+ "integrity": "sha512-laiDIXqqthjJlyAMYAXOtN3N8+UlbM+KvZi4BaY5ZOekmVkBs/UxfK5O0HWeJVG2eW8F+Mu2ww13fTX+kY1FlQ==",
+ "dev": true
+ },
"@types/cookies": {
"version": "0.7.6",
"resolved": "https://registry.npmjs.org/@types/cookies/-/cookies-0.7.6.tgz",
@@ -2359,6 +2307,12 @@
"@types/node": "*"
}
},
+ "@types/debounce": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.0.tgz",
+ "integrity": "sha512-bWG5wapaWgbss9E238T0R6bfo5Fh3OkeoSt245CM7JJwVwpw6MEBCbIxLq5z8KzsE3uJhzcIuQkyiZmzV3M/Dw==",
+ "dev": true
+ },
"@types/estree": {
"version": "0.0.39",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
@@ -2366,21 +2320,21 @@
"dev": true
},
"@types/express": {
- "version": "4.17.10",
- "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.10.tgz",
- "integrity": "sha512-GRwKdE+iV6mA8glCvQ7W5iaoIhd6u1HDsNTF76UPRi7T89SLjOfeCLShVmQSgpXzcpf3zgcz2SbMiCcjnYRRxQ==",
+ "version": "4.17.11",
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz",
+ "integrity": "sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg==",
"dev": true,
"requires": {
"@types/body-parser": "*",
- "@types/express-serve-static-core": "*",
+ "@types/express-serve-static-core": "^4.17.18",
"@types/qs": "*",
"@types/serve-static": "*"
}
},
"@types/express-serve-static-core": {
- "version": "4.17.18",
- "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz",
- "integrity": "sha512-m4JTwx5RUBNZvky/JJ8swEJPKFd8si08pPF2PfizYjGZOKr/svUWPcoUmLow6MmPzhasphB7gSTINY67xn3JNA==",
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz",
+ "integrity": "sha512-DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA==",
"dev": true,
"requires": {
"@types/node": "*",
@@ -2415,6 +2369,24 @@
"integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==",
"dev": true
},
+ "@types/istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "*"
+ }
+ },
+ "@types/istanbul-reports": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
+ "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-report": "*"
+ }
+ },
"@types/json5": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
@@ -2428,9 +2400,9 @@
"dev": true
},
"@types/koa": {
- "version": "2.11.6",
- "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.11.6.tgz",
- "integrity": "sha512-BhyrMj06eQkk04C97fovEDQMpLpd2IxCB4ecitaXwOKGq78Wi2tooaDOWOFGajPk8IkQOAtMppApgSVkYe1F/A==",
+ "version": "2.13.1",
+ "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.13.1.tgz",
+ "integrity": "sha512-Qbno7FWom9nNqu0yHZ6A0+RWt4mrYBhw3wpBAQ3+IuzGcLlfeYkzZrnMq5wsxulN2np8M4KKeUpTodsOsSad5Q==",
"dev": true,
"requires": {
"@types/accepts": "*",
@@ -2452,12 +2424,6 @@
"@types/koa": "*"
}
},
- "@types/lodash": {
- "version": "4.14.167",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.167.tgz",
- "integrity": "sha512-w7tQPjARrvdeBkX/Rwg95S592JwxqOjmms3zWQ0XZgSyxSLdzWaYH3vErBhdVS/lRBX7F8aBYcYJYTr5TMGOzw==",
- "dev": true
- },
"@types/lru-cache": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.0.tgz",
@@ -2465,9 +2431,9 @@
"dev": true
},
"@types/mime": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz",
- "integrity": "sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz",
+ "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==",
"dev": true
},
"@types/minimist": {
@@ -2483,9 +2449,9 @@
"dev": true
},
"@types/n3": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/@types/n3/-/n3-1.4.4.tgz",
- "integrity": "sha512-xsWfwyDh0uAH0CXvwqe9vb2UEDafMjRez/pB7yZwbWpd9Olw2wdxaL32FtdHjmmFE6b9i+j249JfRyZnvWkoqg==",
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/@types/n3/-/n3-1.4.5.tgz",
+ "integrity": "sha512-q1dEdv8YDS90CoMea7veY08ylql6R/BFqyI3v5TOXHUHho5a/UNSuFmfgBipywgxchCvNb5DdqO8PjnZSHGJpw==",
"dev": true,
"requires": {
"@types/node": "*",
@@ -2493,9 +2459,9 @@
}
},
"@types/node": {
- "version": "14.14.20",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.20.tgz",
- "integrity": "sha512-Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A==",
+ "version": "14.14.35",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.35.tgz",
+ "integrity": "sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag==",
"dev": true
},
"@types/normalize-package-data": {
@@ -2526,9 +2492,9 @@
}
},
"@types/qs": {
- "version": "6.9.5",
- "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz",
- "integrity": "sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ==",
+ "version": "6.9.6",
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.6.tgz",
+ "integrity": "sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA==",
"dev": true
},
"@types/range-parser": {
@@ -2538,9 +2504,9 @@
"dev": true
},
"@types/rdf-js": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@types/rdf-js/-/rdf-js-4.0.0.tgz",
- "integrity": "sha512-2uaR7ks0380MqzUWGOPOOk9yZIr/6MOaCcaj3ntKgd2PqNocgi8j5kSHIJTDe+5ABtTHqKMSE0v0UqrsT8ibgQ==",
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@types/rdf-js/-/rdf-js-4.0.1.tgz",
+ "integrity": "sha512-S+28+3RoFI+3arls7dS813gYnhb2HiyLX+gs00rgIvCzHU93DaYajhx4tyT+XEO8SjtzZw90OF4OVdYXBwbvkQ==",
"dev": true,
"requires": {
"@types/node": "*"
@@ -2555,20 +2521,26 @@
"@types/node": "*"
}
},
+ "@types/semver": {
+ "version": "7.3.4",
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.4.tgz",
+ "integrity": "sha512-+nVsLKlcUCeMzD2ufHEYuJ9a2ovstb6Dp52A5VsoKxDXgvE051XgHI/33I1EymwkRGQkwnA0LkhnUzituGs4EQ==",
+ "dev": true
+ },
"@types/serve-static": {
- "version": "1.13.8",
- "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.8.tgz",
- "integrity": "sha512-MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA==",
+ "version": "1.13.9",
+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.9.tgz",
+ "integrity": "sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA==",
"dev": true,
"requires": {
- "@types/mime": "*",
+ "@types/mime": "^1",
"@types/node": "*"
}
},
"@types/sinon": {
- "version": "9.0.10",
- "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-9.0.10.tgz",
- "integrity": "sha512-/faDC0erR06wMdybwI/uR8wEKV/E83T0k4sepIpB7gXuy2gzx2xiOjmztq6a2Y6rIGJ04D+6UU0VBmWy+4HEMA==",
+ "version": "9.0.11",
+ "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-9.0.11.tgz",
+ "integrity": "sha512-PwP4UY33SeeVKodNE37ZlOsR9cReypbMJOhZ7BVE0lB+Hix3efCOxiJWiE5Ia+yL9Cn2Ch72EjFTRze8RZsNtg==",
"dev": true,
"requires": {
"@types/sinonjs__fake-timers": "*"
@@ -2646,9 +2618,9 @@
}
},
"@web/browser-logs": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/@web/browser-logs/-/browser-logs-0.2.0.tgz",
- "integrity": "sha512-BExeD4Rlak10X+R38dDfc3waYu2dHEvMNqIottCwFXXoMvLeQs0+fYB2fqpcQwMoAIhhKRo9NENtuQQLaR1y0A==",
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/@web/browser-logs/-/browser-logs-0.2.1.tgz",
+ "integrity": "sha512-nSfRl/+7XQOtXBBJ9FMdXAb1bzytud1LeJAJmBX4bsfMDDcfrr4vNhiX4OnQ5tBYsXoiQse8ZvwngFM2O6PD3A==",
"dev": true,
"requires": {
"errorstacks": "^2.2.0"
@@ -2661,30 +2633,19 @@
"dev": true,
"requires": {
"semver": "^7.3.4"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz",
- "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
}
},
"@web/dev-server": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/@web/dev-server/-/dev-server-0.1.4.tgz",
- "integrity": "sha512-aYqrUFd6s32QJ4vPJlKGoD66U/I4erMSIzEInvN4IcUqUKQyF7Ol11J+QU0t2lkBAfoH4/yD2PzZXRC51P04dA==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@web/dev-server/-/dev-server-0.1.10.tgz",
+ "integrity": "sha512-5Pj2GPNKO6Uq2aQCq1+/fkXdZ5guALevUb6M324oiTr1srBXHod6QunbzqXovO5Bcgmo79ZOneHMgoQNwxtIYA==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.12.11",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/command-line-args": "^5.0.0",
"@web/config-loader": "^0.1.3",
- "@web/dev-server-core": "^0.3.2",
+ "@web/dev-server-core": "^0.3.8",
"@web/dev-server-rollup": "^0.3.2",
"camelcase": "^6.2.0",
"chalk": "^4.1.0",
@@ -2693,7 +2654,7 @@
"debounce": "^1.2.0",
"deepmerge": "^4.2.2",
"ip": "^1.1.5",
- "open": "^7.3.0",
+ "open": "^8.0.2",
"portfinder": "^1.0.28"
},
"dependencies": {
@@ -2706,17 +2667,17 @@
}
},
"@web/dev-server-core": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@web/dev-server-core/-/dev-server-core-0.3.3.tgz",
- "integrity": "sha512-zj70hj6FBIFAGZfyqrOlDY1bYtqTea5ioTcgGx55tIeHiUmblDCcpbBUIqj4pcw/GjpQPBBFw5oX1WyuiHQNhA==",
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@web/dev-server-core/-/dev-server-core-0.3.8.tgz",
+ "integrity": "sha512-Qbo2ZVUopmjEP8ZDc8v0N/nTW9LbmycuC+uoTwp62PfHfqSN9RgXGzuGMmp5sBPRXi/E1oi1GQ+lMoDWXLjKYA==",
"dev": true,
"requires": {
"@types/koa": "^2.11.6",
"@types/ws": "^7.4.0",
- "@web/parse5-utils": "^1.0.0",
+ "@web/parse5-utils": "^1.2.0",
"chokidar": "^3.4.3",
"clone": "^2.1.2",
- "es-module-lexer": "^0.3.26",
+ "es-module-lexer": "^0.4.0",
"get-stream": "^6.0.0",
"is-stream": "^2.0.0",
"isbinaryfile": "^4.0.6",
@@ -2745,9 +2706,9 @@
}
},
"@web/parse5-utils": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@web/parse5-utils/-/parse5-utils-1.1.2.tgz",
- "integrity": "sha512-/JQHbK53BmYiFK2igr2B+Psl2Ivp2ju75Nx1InZweTbxLQNGG9yUBaudER85aqebIH6smkPkKwVtpdBXBiwy1A==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/@web/parse5-utils/-/parse5-utils-1.2.2.tgz",
+ "integrity": "sha512-B68DoJ5qF8Cu3o7nDA2RQTCf9bslVz2b0WHTk3qir5YCbWfhnPEGhDOedOjbE8xDiHqgzI1zXQsJ2+655aluLA==",
"dev": true,
"requires": {
"@types/parse5": "^5.0.3",
@@ -2763,21 +2724,22 @@
}
},
"@web/test-runner": {
- "version": "0.12.2",
- "resolved": "https://registry.npmjs.org/@web/test-runner/-/test-runner-0.12.2.tgz",
- "integrity": "sha512-7wQ2b3OE4xuAhHOaFbs+9d06bWNKvm9hWjJdHbLczsAkq2+TPbZDynw2b1D2fkTLcOWNbGOyQa742ThWIbXYRw==",
+ "version": "0.12.17",
+ "resolved": "https://registry.npmjs.org/@web/test-runner/-/test-runner-0.12.17.tgz",
+ "integrity": "sha512-wTpczsz+GLh6QRGWNLDTYhXtcj/lr8rsEVHSXvFUDmVzhoGrt0AZJktnPiNJHplgFJ/LbSIiQvXKWk48ogZY5g==",
"dev": true,
"requires": {
"@web/browser-logs": "^0.2.0",
"@web/config-loader": "^0.1.3",
- "@web/dev-server": "^0.1.4",
- "@web/test-runner-chrome": "^0.9.0",
- "@web/test-runner-commands": "^0.4.0",
- "@web/test-runner-core": "^0.10.2",
- "@web/test-runner-mocha": "^0.7.0",
+ "@web/dev-server": "^0.1.8",
+ "@web/test-runner-chrome": "^0.9.4",
+ "@web/test-runner-commands": "^0.4.1",
+ "@web/test-runner-core": "^0.10.13",
+ "@web/test-runner-mocha": "^0.7.2",
"camelcase": "^6.2.0",
"chalk": "^4.1.0",
"command-line-args": "^5.1.1",
+ "command-line-usage": "^6.1.1",
"convert-source-map": "^1.7.0",
"deepmerge": "^4.2.2",
"diff": "^5.0.0",
@@ -2801,38 +2763,46 @@
}
},
"@web/test-runner-chrome": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/@web/test-runner-chrome/-/test-runner-chrome-0.9.0.tgz",
- "integrity": "sha512-Ez0X0h527R1HqW44qlCDid6/ctLs1mg14v1jmXkJ+rhaM67ZbAGF4Lp/ZUeLzVysm3NtNP9Glrj+w5BD3PDYSQ==",
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-chrome/-/test-runner-chrome-0.9.4.tgz",
+ "integrity": "sha512-Ymfp0HqQvELFITdwhdicuzndLY5loePpbDj6teXKKNTILph0ExWl3R3NMPG7pD40pB84GGd9i8wkz9yvyN30Zg==",
"dev": true,
"requires": {
- "@web/test-runner-core": "^0.10.0",
- "@web/test-runner-coverage-v8": "^0.4.0",
+ "@web/test-runner-core": "^0.10.8",
+ "@web/test-runner-coverage-v8": "^0.4.5",
"chrome-launcher": "^0.13.4",
"puppeteer-core": "^5.5.0"
}
},
"@web/test-runner-commands": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/@web/test-runner-commands/-/test-runner-commands-0.4.0.tgz",
- "integrity": "sha512-FsmF4Ya2mK8nlrodSjLMK1iKsSz61l4LeHSNRBjZtlzfjfwoGb38Pq+WehtboKgan+if/daHBjW85QFO1j3O+Q==",
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-commands/-/test-runner-commands-0.4.1.tgz",
+ "integrity": "sha512-y1U9+jucQ1ZB9YRgMFIjXTUSu/in54yt4Lf4GcY9fHoSyGVWDub085ARWipmagsD9SRN1QnIYTkMk+jRa/EiLQ==",
"dev": true,
"requires": {
- "@web/test-runner-core": "^0.10.0"
+ "@web/test-runner-core": "^0.10.8"
}
},
"@web/test-runner-core": {
- "version": "0.10.2",
- "resolved": "https://registry.npmjs.org/@web/test-runner-core/-/test-runner-core-0.10.2.tgz",
- "integrity": "sha512-BLEdRsekHJW02Cq/mezTMFcDwtsTvwoJ0Oo+0q/VxRzvpH2ae5VhySPfAuCA1xXCfttPBb/RYLH0BVq8bp57LA==",
+ "version": "0.10.13",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-core/-/test-runner-core-0.10.13.tgz",
+ "integrity": "sha512-w6seztsj/UKUz9HP5KeMZ1JdUadt293SplsrKKaUJTZDMLO8+xvyo+vpt1Mv7zICu0wyuQN0AdD3GjKKX6dFHw==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.12.11",
- "@web/browser-logs": "^0.2.0",
- "@web/dev-server-core": "^0.3.3",
+ "@types/co-body": "^5.1.0",
+ "@types/convert-source-map": "^1.5.1",
+ "@types/debounce": "^1.2.0",
+ "@types/istanbul-lib-coverage": "^2.0.3",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/uuid": "^8.3.0",
+ "@web/browser-logs": "^0.2.1",
+ "@web/dev-server-core": "^0.3.6",
"chalk": "^4.1.0",
+ "chokidar": "^3.4.3",
"cli-cursor": "^3.1.0",
"co-body": "^6.1.0",
+ "convert-source-map": "^1.7.0",
"debounce": "^1.2.0",
"dependency-graph": "^0.10.0",
"globby": "^11.0.1",
@@ -2841,47 +2811,50 @@
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.2",
"log-update": "^4.0.0",
+ "open": "^8.0.2",
"picomatch": "^2.2.2",
+ "source-map": "^0.7.3",
"uuid": "^8.3.2"
}
},
"@web/test-runner-coverage-v8": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/@web/test-runner-coverage-v8/-/test-runner-coverage-v8-0.4.0.tgz",
- "integrity": "sha512-6dPZBLe69y6Lat3CACo1F0CMZae2s8O/lNLgIJT/LMT8bHtQ/9kZAkLraCwJ+NMHXI6G5Y5t0nSPulSvzTqs7g==",
+ "version": "0.4.6",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-coverage-v8/-/test-runner-coverage-v8-0.4.6.tgz",
+ "integrity": "sha512-Mt8hzLUZfMBrpFlo8PYIkM5H77XmnuiF2VrRXvLRRMBz6sZ+WqZmPT5fOznvTEoqOXh92XG9SsW+G0uV6HjdPQ==",
"dev": true,
"requires": {
- "@web/test-runner-core": "^0.10.0",
+ "@web/test-runner-core": "^0.10.9",
"istanbul-lib-coverage": "^3.0.0",
+ "picomatch": "^2.2.2",
"v8-to-istanbul": "^7.1.0"
}
},
"@web/test-runner-mocha": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/@web/test-runner-mocha/-/test-runner-mocha-0.7.0.tgz",
- "integrity": "sha512-GW/cCXjChBcIaaNnSIH/Yy04jd+mdZPNE2UcWVkl0h3Z/iJu+a10S1jkaoY2SfGFhH/20AbrM+8EGMFbSUpaGA==",
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-mocha/-/test-runner-mocha-0.7.2.tgz",
+ "integrity": "sha512-UsaLvJ0k5Kb53WegF0J0pmKxCLdo6Nxl7GHYykO7m99Irz+jIGXV7VJP9/b8t+HH3fHyqB2Nmd5q9oxXwIJyNw==",
"dev": true,
"requires": {
"@types/mocha": "^8.2.0",
- "@web/test-runner-core": "^0.10.0"
+ "@web/test-runner-core": "^0.10.8"
},
"dependencies": {
"@types/mocha": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.0.tgz",
- "integrity": "sha512-/Sge3BymXo4lKc31C8OINJgXLaw+7vL1/L1pGiBNpGrBiT8FQiaFpSYV0uhTaG4y78vcMBTMFsWaHDvuD+xGzQ==",
+ "version": "8.2.1",
+ "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.1.tgz",
+ "integrity": "sha512-NysN+bNqj6E0Hv4CTGWSlPzMW6vTKjDpOteycDkV4IWBsO+PU48JonrPzV9ODjiI2XrjmA05KInLgF5ivZ/YGQ==",
"dev": true
}
}
},
"@web/test-runner-playwright": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/@web/test-runner-playwright/-/test-runner-playwright-0.8.0.tgz",
- "integrity": "sha512-VoRfBxioOJuUFRROcwKkXL75iRtf4Qc9zVSGUvVlCZoLstG5EuqYyuvIdnGCkcf/sqCXsAh1WbQ+wfRXd7h6Cw==",
+ "version": "0.8.4",
+ "resolved": "https://registry.npmjs.org/@web/test-runner-playwright/-/test-runner-playwright-0.8.4.tgz",
+ "integrity": "sha512-9RCez2kB0AocMasrUsmx/yW7FGSjBI9aEtjYzkFvRJF21IsEyjCrmmGPdBIa75a/gU2ydPaw0EQW4TDF5L4yRw==",
"dev": true,
"requires": {
- "@web/test-runner-core": "^0.10.0",
- "@web/test-runner-coverage-v8": "^0.4.0",
+ "@web/test-runner-core": "^0.10.8",
+ "@web/test-runner-coverage-v8": "^0.4.5",
"playwright": "^1.7.1"
}
},
@@ -2951,9 +2924,9 @@
}
},
"amf-client-js": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/amf-client-js/-/amf-client-js-4.6.0.tgz",
- "integrity": "sha512-hep/WF+qDsVVbCsdNOYjtlWGB60bLhEkfLpZXYjJDB6sYfI2E9rYouUlir3qtGDjuczVCI5HaDoLB5Vjpz6GRA==",
+ "version": "4.7.1",
+ "resolved": "https://registry.npmjs.org/amf-client-js/-/amf-client-js-4.7.1.tgz",
+ "integrity": "sha512-qxd/xILTLA4FyhY0GROo/Pv5ko+dnQZOYVxEx37t3XtKF5Lvy/U5evxqcE/ojkoqccRtzcu8Ds78A81yigS3aA==",
"dev": true,
"requires": {
"ajv": "6.5.2",
@@ -3008,6 +2981,23 @@
"dev": true,
"requires": {
"color-convert": "^2.0.1"
+ },
+ "dependencies": {
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ }
}
},
"any-promise": {
@@ -3064,15 +3054,15 @@
"dev": true
},
"array-includes": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz",
- "integrity": "sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz",
+ "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==",
"dev": true,
"requires": {
- "call-bind": "^1.0.0",
+ "call-bind": "^1.0.2",
"define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
- "get-intrinsic": "^1.0.1",
+ "es-abstract": "^1.18.0-next.2",
+ "get-intrinsic": "^1.1.1",
"is-string": "^1.0.5"
}
},
@@ -3105,21 +3095,6 @@
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
- "asn1": {
- "version": "0.2.4",
- "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
- "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
- "dev": true,
- "requires": {
- "safer-buffer": "~2.1.0"
- }
- },
- "assert-plus": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
- "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
- "dev": true
- },
"assertion-error": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
@@ -3133,13 +3108,10 @@
"dev": true
},
"async": {
- "version": "2.6.3",
- "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
- "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
- "dev": true,
- "requires": {
- "lodash": "^4.17.14"
- }
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz",
+ "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==",
+ "dev": true
},
"asynciterator": {
"version": "3.0.3",
@@ -3148,42 +3120,24 @@
"dev": true
},
"asyncjoin": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/asyncjoin/-/asyncjoin-1.0.1.tgz",
- "integrity": "sha512-FjqqH7H9YUbE51U6xX4hQfzIAbyEKSZLdhdQNvl0kQ2vZvgiYgW1o1Vl4LJIU+3fu7ld3Tdcq72G5/h6OALsBw==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/asyncjoin/-/asyncjoin-1.0.2.tgz",
+ "integrity": "sha512-q5p5mqVXiL7KD6ihJad+6vaLHEQ73u5K5UyKerVGRA3Ec4AuhaoxpRU/qtQiV1eK2gMiO9T4OMSIG90hY1Fl+g==",
"dev": true,
"requires": {
"asynciterator": "^3.0.0"
}
},
- "asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
- "dev": true
- },
"at-least-node": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
"integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
"dev": true
},
- "aws-sign2": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
- "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
- "dev": true
- },
- "aws4": {
- "version": "1.11.0",
- "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz",
- "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==",
- "dev": true
- },
"axe-core": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.1.tgz",
- "integrity": "sha512-5Kgy8Cz6LPC9DJcNb3yjAXTu3XihQgEdnIg50c//zOC/MyLP0Clg+Y8Sh9ZjjnvBrDZU4DgXS9C3T9r4/scGZQ==",
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.3.tgz",
+ "integrity": "sha512-vwPpH4Aj4122EW38mxO/fxhGKtwWTMLDIJfZ1He0Edbtjcfna/R3YB67yVhezUMzqc3Jr3+Ii50KRntlENL4xQ==",
"dev": true
},
"axobject-query": {
@@ -3204,15 +3158,6 @@
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"dev": true
},
- "bcrypt-pbkdf": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
- "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
- "dev": true,
- "requires": {
- "tweetnacl": "^0.14.3"
- }
- },
"binary-extensions": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
@@ -3220,9 +3165,9 @@
"dev": true
},
"bl": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.3.tgz",
- "integrity": "sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
"dev": true,
"requires": {
"buffer": "^5.5.0",
@@ -3332,23 +3277,17 @@
"integrity": "sha512-mAjKJPIyP0xqqv6IAkvso07StOmz6cmGtNDg3pXCSzXVZOqka7StIkAhJl/zHOi4M2CgpYfD6aeRWbnrmtvBEA==",
"dev": true
},
- "caseless": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
- "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
- "dev": true
- },
"chai": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz",
- "integrity": "sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==",
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.4.tgz",
+ "integrity": "sha512-yS5H68VYOCtN1cjfwumDSuzn/9c+yza4f3reKXlE5rUg7SFcCEy90gJvydNgOYtblyf4Zi6jIWRnXOgErta0KA==",
"dev": true,
"requires": {
"assertion-error": "^1.1.0",
"check-error": "^1.0.2",
"deep-eql": "^3.0.1",
"get-func-name": "^2.0.0",
- "pathval": "^1.1.0",
+ "pathval": "^1.1.1",
"type-detect": "^4.0.5"
}
},
@@ -3362,9 +3301,9 @@
}
},
"chai-dom": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/chai-dom/-/chai-dom-1.8.2.tgz",
- "integrity": "sha512-kk2SnCuJliouO5M58OjA7M8VXN338WAxHOm+LbpjeL09pJgRpXugSC5aj8uwFm/6Lmpcdtq7hf+DldTdBm5/Sw==",
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/chai-dom/-/chai-dom-1.9.0.tgz",
+ "integrity": "sha512-UXSbhcGVBWv/5qVqbJY/giTDRyo3wKapUsWluEuVvxcJLFXkyf8l4D2PTd6trzrmca6WWnGdpaFkYdl1P0WjtA==",
"dev": true
},
"chalk": {
@@ -3384,9 +3323,9 @@
"dev": true
},
"chokidar": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.0.tgz",
- "integrity": "sha512-JgQM9JS92ZbFR4P90EvmzNpSGhpPBGBSj10PILeDyYFwp4h2/D9OM03wsJ4zW1fEp4ka2DGrnUeD7FuvQ2aZ2Q==",
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz",
+ "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==",
"dev": true,
"requires": {
"anymatch": "~3.1.1",
@@ -3464,9 +3403,9 @@
}
},
"clipboard": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.6.tgz",
- "integrity": "sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg==",
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz",
+ "integrity": "sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==",
"optional": true,
"requires": {
"good-listener": "^1.2.2",
@@ -3475,14 +3414,14 @@
}
},
"cliui": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
- "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
"dev": true,
"requires": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
+ "wrap-ansi": "^7.0.0"
}
},
"clone": {
@@ -3509,34 +3448,61 @@
"type-is": "^1.6.16"
}
},
+ "color": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz",
+ "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.1",
+ "color-string": "^1.5.2"
+ }
+ },
"color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"requires": {
- "color-name": "~1.1.4"
+ "color-name": "1.1.3"
}
},
"color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"dev": true
},
- "combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "color-string": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz",
+ "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==",
"dev": true,
"requires": {
- "delayed-stream": "~1.0.0"
+ "color-name": "^1.0.0",
+ "simple-swizzle": "^0.2.2"
}
},
- "command-line-args": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz",
- "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==",
+ "colors": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
+ "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
+ "dev": true
+ },
+ "colorspace": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz",
+ "integrity": "sha512-vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ==",
+ "dev": true,
+ "requires": {
+ "color": "3.0.x",
+ "text-hex": "1.0.x"
+ }
+ },
+ "command-line-args": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz",
+ "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==",
"dev": true,
"requires": {
"array-back": "^3.0.1",
@@ -3583,21 +3549,6 @@
"supports-color": "^5.3.0"
}
},
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
- "dev": true
- },
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
@@ -3644,44 +3595,24 @@
"dev": true
},
"componentsjs": {
- "version": "3.6.1",
- "resolved": "https://registry.npmjs.org/componentsjs/-/componentsjs-3.6.1.tgz",
- "integrity": "sha512-Qnnqo9Lx7yBhK8ttkwjFYAkY300P9gvr4S9q50tWU/O01dzSdBxX/rvvx9HBa3PxMOkV1UaBkmztU7Rmq92uZQ==",
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/componentsjs/-/componentsjs-4.0.6.tgz",
+ "integrity": "sha512-MPvKSLVo4SX3PafGMqKPzV+i8JdivYXuaJb2CsEF86TUgniXX3i661D0MDBwMWnd0LXWbI1sNq0kKJBKrL/wBw==",
"dev": true,
"requires": {
- "@types/lodash": "^4.14.56",
"@types/minimist": "^1.2.0",
- "@types/n3": "0.0.3",
- "@types/node": "8.10.21",
- "global-modules": "^1.0.0",
- "jsonld": "^0.4.11",
- "lodash": "^4.17.4",
+ "@types/node": "^14.14.7",
+ "@types/rdf-js": "*",
+ "@types/semver": "^7.3.4",
+ "jsonld-context-parser": "^2.1.1",
"minimist": "^1.2.0",
- "n3": "^0.9.1",
- "requireg": "^0.1.7"
- },
- "dependencies": {
- "@types/n3": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/@types/n3/-/n3-0.0.3.tgz",
- "integrity": "sha512-oqywrU7RdLKO0Ndnrue8smXR+oLW4EgFGrd/ewaYbkZjgr/eRpwpjsJk9D5Z8AF+cZKYbiQtR5BR6LNlLl0HPQ==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "@types/node": {
- "version": "8.10.21",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.21.tgz",
- "integrity": "sha512-87XkD9qDXm8fIax+5y7drx84cXsu34ZZqfB7Cial3Q/2lxSoJ/+DRaWckkCbxP41wFSIrrb939VhzaNxj4eY1w==",
- "dev": true
- },
- "n3": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/n3/-/n3-0.9.1.tgz",
- "integrity": "sha1-QwtUfVjcc4FAjEV4TdgFgXGQOTI=",
- "dev": true
- }
+ "rdf-data-factory": "^1.0.4",
+ "rdf-object": "^1.8.0",
+ "rdf-parse": "^1.7.0",
+ "rdf-quad": "^1.5.0",
+ "rdf-terms": "^1.6.2",
+ "semver": "^7.3.2",
+ "winston": "^3.3.3"
}
},
"concat-map": {
@@ -3747,16 +3678,16 @@
}
},
"conventional-commits-parser": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.0.tgz",
- "integrity": "sha512-XmJiXPxsF0JhAKyfA2Nn+rZwYKJ60nanlbSWwwkGwLQFbugsc0gv1rzc7VbbUWAzJfR1qR87/pNgv9NgmxtBMQ==",
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.1.tgz",
+ "integrity": "sha512-OG9kQtmMZBJD/32NEw5IhN5+HnBqVjy03eC+I71I0oQRFA5rOgA4OtPOYG7mz1GkCfCNxn3gKIX8EiHJYuf1cA==",
"dev": true,
"requires": {
"JSONStream": "^1.0.4",
"is-text-path": "^1.0.1",
"lodash": "^4.17.15",
"meow": "^8.0.0",
- "split2": "^2.0.0",
+ "split2": "^3.0.0",
"through2": "^4.0.0",
"trim-off-newlines": "^1.0.0"
}
@@ -3788,16 +3719,10 @@
"keygrip": "~1.1.0"
}
},
- "core-js": {
- "version": "3.8.2",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.2.tgz",
- "integrity": "sha512-FfApuSRgrR6G5s58casCBd9M2k+4ikuu4wbW6pJyYU7bd9zvFc9qf7vr5xmrZOhT9nn+8uwlH1oRR9jTnFoA3A==",
- "dev": true
- },
"core-js-pure": {
- "version": "3.8.2",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.8.2.tgz",
- "integrity": "sha512-v6zfIQqL/pzTVAbZvYUozsxNfxcFb6Ks3ZfEbuneJl3FW9Jb8F6vLWB6f+qTmAu72msUdyb84V8d/yBFf7FNnw==",
+ "version": "3.9.1",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.9.1.tgz",
+ "integrity": "sha512-laz3Zx0avrw9a4QEIdmIblnVuJz8W51leY9iLThatCsFawWxC3sE4guASC78JbCin+DkwMpCdp1AVAuzL/GN7A==",
"dev": true
},
"core-util-is": {
@@ -3820,9 +3745,9 @@
}
},
"cross-fetch": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz",
- "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.1.tgz",
+ "integrity": "sha512-eIF+IHQpRzoGd/0zPrwQmHwDC90mdvjk+hcbYhKoaRrEk4GEIDqdjs/MljmdPPoHTQudbmWS+f0hZsEpFaEvWw==",
"dev": true,
"requires": {
"node-fetch": "2.6.1"
@@ -3837,17 +3762,6 @@
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
"which": "^2.0.1"
- },
- "dependencies": {
- "which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- }
}
},
"currently-unhandled": {
@@ -3865,19 +3779,10 @@
"integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==",
"dev": true
},
- "dashdash": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
- "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0"
- }
- },
"debounce": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.0.tgz",
- "integrity": "sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz",
+ "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==",
"dev": true
},
"debug": {
@@ -3958,6 +3863,12 @@
"integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
"dev": true
},
+ "define-lazy-prop": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
+ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
+ "dev": true
+ },
"define-properties": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
@@ -3967,12 +3878,6 @@
"object-keys": "^1.0.12"
}
},
- "delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
- "dev": true
- },
"delegate": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
@@ -4042,17 +3947,6 @@
"domelementtype": "^2.0.1",
"domhandler": "^4.0.0",
"entities": "^2.0.0"
- },
- "dependencies": {
- "domhandler": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz",
- "integrity": "sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==",
- "dev": true,
- "requires": {
- "domelementtype": "^2.1.0"
- }
- }
}
},
"dom5": {
@@ -4081,34 +3975,23 @@
"dev": true
},
"domhandler": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz",
- "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz",
+ "integrity": "sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==",
"dev": true,
"requires": {
- "domelementtype": "^2.0.1"
+ "domelementtype": "^2.1.0"
}
},
"domutils": {
- "version": "2.4.4",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.4.4.tgz",
- "integrity": "sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA==",
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.5.0.tgz",
+ "integrity": "sha512-Ho16rzNMOFk2fPwChGh3D2D9OEHAfG19HgmRR2l+WLSsIstNsAYBzePH412bL0y5T44ejABIVfTHQ8nqi/tBCg==",
"dev": true,
"requires": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.0.1",
"domhandler": "^4.0.0"
- },
- "dependencies": {
- "domhandler": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz",
- "integrity": "sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==",
- "dev": true,
- "requires": {
- "domelementtype": "^2.1.0"
- }
- }
}
},
"dot-prop": {
@@ -4120,16 +4003,6 @@
"is-obj": "^2.0.0"
}
},
- "ecc-jsbn": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
- "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
- "dev": true,
- "requires": {
- "jsbn": "~0.1.0",
- "safer-buffer": "^2.1.0"
- }
- },
"ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
@@ -4142,6 +4015,12 @@
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
"dev": true
},
+ "enabled": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz",
+ "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==",
+ "dev": true
+ },
"encodeurl": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
@@ -4167,9 +4046,9 @@
}
},
"entities": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz",
- "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
+ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
"dev": true
},
"error-ex": {
@@ -4179,38 +4058,50 @@
"dev": true,
"requires": {
"is-arrayish": "^0.2.1"
+ },
+ "dependencies": {
+ "is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+ "dev": true
+ }
}
},
"errorstacks": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/errorstacks/-/errorstacks-2.2.0.tgz",
- "integrity": "sha512-d/HXKLrpdLYReAnNq5k/KgZKlfc5J+3DKKvci8WKzuM9MAXFrCoCfVyViHk0aFMLyazU/jYhW2d8zTa99pelIA==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/errorstacks/-/errorstacks-2.3.0.tgz",
+ "integrity": "sha512-VjCIUbEyLymy2N1M/uTniewz+j69YC2R7Sp1UiJn04RHwyIniBib6hUZwgmphAAZTOk7LRg/wryGFEJhblEd7Q==",
"dev": true
},
"es-abstract": {
- "version": "1.18.0-next.1",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
- "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
+ "version": "1.18.0",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz",
+ "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==",
"dev": true,
"requires": {
+ "call-bind": "^1.0.2",
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
+ "get-intrinsic": "^1.1.1",
"has": "^1.0.3",
- "has-symbols": "^1.0.1",
- "is-callable": "^1.2.2",
- "is-negative-zero": "^2.0.0",
- "is-regex": "^1.1.1",
- "object-inspect": "^1.8.0",
+ "has-symbols": "^1.0.2",
+ "is-callable": "^1.2.3",
+ "is-negative-zero": "^2.0.1",
+ "is-regex": "^1.1.2",
+ "is-string": "^1.0.5",
+ "object-inspect": "^1.9.0",
"object-keys": "^1.1.1",
- "object.assign": "^4.1.1",
- "string.prototype.trimend": "^1.0.1",
- "string.prototype.trimstart": "^1.0.1"
+ "object.assign": "^4.1.2",
+ "string.prototype.trimend": "^1.0.4",
+ "string.prototype.trimstart": "^1.0.4",
+ "unbox-primitive": "^1.0.0"
}
},
"es-module-lexer": {
- "version": "0.3.26",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.3.26.tgz",
- "integrity": "sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA==",
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.4.1.tgz",
+ "integrity": "sha512-ooYciCUtfw6/d2w56UVeqHPcoCFAiJdz5XOkYpv/Txl1HMUozpXjz/2RIQgqwKdXNDPSF1W7mJCFse3G+HDyAA==",
"dev": true
},
"es-to-primitive": {
@@ -4224,10 +4115,10 @@
"is-symbol": "^1.0.2"
}
},
- "es6-promise": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz",
- "integrity": "sha1-lu258v2wGZWCKyY92KratnSBgbw=",
+ "escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
"dev": true
},
"escape-html": {
@@ -4243,13 +4134,13 @@
"dev": true
},
"eslint": {
- "version": "7.17.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz",
- "integrity": "sha512-zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ==",
+ "version": "7.22.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.22.0.tgz",
+ "integrity": "sha512-3VawOtjSJUQiiqac8MQc+w457iGLfuNGLFn8JmF051tTKbh5/x/0vlcEj8OgDCaw7Ysa2Jn8paGshV7x2abKXg==",
"dev": true,
"requires": {
- "@babel/code-frame": "^7.0.0",
- "@eslint/eslintrc": "^0.2.2",
+ "@babel/code-frame": "7.12.11",
+ "@eslint/eslintrc": "^0.4.0",
"ajv": "^6.10.0",
"chalk": "^4.0.0",
"cross-spawn": "^7.0.2",
@@ -4260,12 +4151,12 @@
"eslint-utils": "^2.1.0",
"eslint-visitor-keys": "^2.0.0",
"espree": "^7.3.1",
- "esquery": "^1.2.0",
+ "esquery": "^1.4.0",
"esutils": "^2.0.2",
- "file-entry-cache": "^6.0.0",
+ "file-entry-cache": "^6.0.1",
"functional-red-black-tree": "^1.0.1",
"glob-parent": "^5.0.0",
- "globals": "^12.1.0",
+ "globals": "^13.6.0",
"ignore": "^4.0.6",
"import-fresh": "^3.0.0",
"imurmurhash": "^0.1.4",
@@ -4273,7 +4164,7 @@
"js-yaml": "^3.13.1",
"json-stable-stringify-without-jsonify": "^1.0.1",
"levn": "^0.4.1",
- "lodash": "^4.17.19",
+ "lodash": "^4.17.21",
"minimatch": "^3.0.4",
"natural-compare": "^1.4.0",
"optionator": "^0.9.1",
@@ -4287,6 +4178,15 @@
"v8-compile-cache": "^2.0.3"
},
"dependencies": {
+ "@babel/code-frame": {
+ "version": "7.12.11",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
+ "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.10.4"
+ }
+ },
"ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
@@ -4319,12 +4219,6 @@
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
- },
- "strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true
}
}
},
@@ -4340,9 +4234,9 @@
}
},
"eslint-config-prettier": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-7.1.0.tgz",
- "integrity": "sha512-9sm5/PxaFG7qNJvJzTROMM1Bk1ozXVTKI0buKOyb0Bsr1hrwi0H/TzxF/COtf1uxikIK8SwhX7K6zg78jAzbeA==",
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz",
+ "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==",
"dev": true
},
"eslint-import-resolver-node": {
@@ -4353,18 +4247,6 @@
"requires": {
"debug": "^2.6.9",
"resolve": "^1.13.1"
- },
- "dependencies": {
- "resolve": {
- "version": "1.19.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
- "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.1.0",
- "path-parse": "^1.0.6"
- }
- }
}
},
"eslint-module-utils": {
@@ -4378,12 +4260,12 @@
}
},
"eslint-plugin-html": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-html/-/eslint-plugin-html-6.1.1.tgz",
- "integrity": "sha512-JSe3ZDb7feKMnQM27XWGeoIjvP4oWQMJD9GZ6wW67J7/plVL87NK72RBwlvfc3tTZiYUchHhxAwtgEd1GdofDA==",
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-html/-/eslint-plugin-html-6.1.2.tgz",
+ "integrity": "sha512-bhBIRyZFqI4EoF12lGDHAmgfff8eLXx6R52/K3ESQhsxzCzIE6hdebS7Py651f7U3RBotqroUnC3L29bR7qJWQ==",
"dev": true,
"requires": {
- "htmlparser2": "^5.0.1"
+ "htmlparser2": "^6.0.1"
}
},
"eslint-plugin-import": {
@@ -4514,16 +4396,6 @@
"read-pkg": "^2.0.0"
}
},
- "resolve": {
- "version": "1.19.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
- "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.1.0",
- "path-parse": "^1.0.6"
- }
- },
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
@@ -4563,9 +4435,9 @@
},
"dependencies": {
"emoji-regex": {
- "version": "9.2.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.0.tgz",
- "integrity": "sha512-DNc3KFPK18bPdElMJnf/Pkv5TXhxFU3YFDEuGLDRtPmV4rkmCjBkCSEp22u6rBHdSN9Vlp/GK7k98prmE1Jgug==",
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
"dev": true
},
"parse5": {
@@ -4589,9 +4461,9 @@
"dev": true
},
"eslint-plugin-wc": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-wc/-/eslint-plugin-wc-1.2.0.tgz",
- "integrity": "sha512-p1Vv8GkiTS8ZNfsmWvNJfKsGwsfCDteo2QsFE53x5DuHN7YDVf36II46DauP3mBCQ9pZnYD8lZyl/uz3qBtwQw==",
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-wc/-/eslint-plugin-wc-1.3.0.tgz",
+ "integrity": "sha512-jEk9DB7qe/jKNS29OxXpeKnTy4kOu8IEF43GunE2DaRKJtqIj9lMB429V3jCZOTGAxyWXW85ZWBpg1LPiKgSnw==",
"dev": true,
"requires": {
"js-levenshtein-esm": "^1.2.0",
@@ -4663,9 +4535,9 @@
"dev": true
},
"esquery": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz",
- "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==",
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
+ "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
"dev": true,
"requires": {
"estraverse": "^5.1.0"
@@ -4748,21 +4620,6 @@
}
}
},
- "expand-tilde": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
- "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
- "dev": true,
- "requires": {
- "homedir-polyfill": "^1.0.1"
- }
- },
- "extend": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
- "dev": true
- },
"extract-zip": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
@@ -4801,12 +4658,6 @@
}
}
},
- "extsprintf": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
- "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
- "dev": true
- },
"fast-deep-equal": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
@@ -4814,9 +4665,9 @@
"dev": true
},
"fast-glob": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz",
- "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==",
+ "version": "3.2.5",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz",
+ "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==",
"dev": true,
"requires": {
"@nodelib/fs.stat": "^2.0.2",
@@ -4839,10 +4690,16 @@
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
"dev": true
},
+ "fast-safe-stringify": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz",
+ "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==",
+ "dev": true
+ },
"fastq": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.10.0.tgz",
- "integrity": "sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA==",
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz",
+ "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==",
"dev": true,
"requires": {
"reusify": "^1.0.4"
@@ -4857,6 +4714,12 @@
"pend": "~1.2.0"
}
},
+ "fecha": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.0.tgz",
+ "integrity": "sha512-aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg==",
+ "dev": true
+ },
"fetch-sparql-endpoint": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/fetch-sparql-endpoint/-/fetch-sparql-endpoint-1.9.0.tgz",
@@ -4885,9 +4748,9 @@
}
},
"file-entry-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz",
- "integrity": "sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
+ "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
"dev": true,
"requires": {
"flat-cache": "^3.0.4"
@@ -4950,34 +4813,23 @@
}
},
"flatted": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz",
- "integrity": "sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz",
+ "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==",
"dev": true
},
- "follow-redirects": {
- "version": "1.13.1",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz",
- "integrity": "sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==",
+ "fn.name": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz",
+ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==",
"dev": true
},
- "forever-agent": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
- "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
+ "follow-redirects": {
+ "version": "1.13.3",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz",
+ "integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==",
"dev": true
},
- "form-data": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
- "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
- "dev": true,
- "requires": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.6",
- "mime-types": "^2.1.12"
- }
- },
"fresh": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
@@ -5008,9 +4860,9 @@
"dev": true
},
"fsevents": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.1.tgz",
- "integrity": "sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==",
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
"dev": true,
"optional": true
},
@@ -5039,9 +4891,9 @@
"dev": true
},
"get-intrinsic": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz",
- "integrity": "sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
+ "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
"dev": true,
"requires": {
"function-bind": "^1.1.1",
@@ -5067,37 +4919,17 @@
"integrity": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==",
"dev": true
},
- "getpass": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
- "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0"
- }
- },
"git-raw-commits": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.9.tgz",
- "integrity": "sha512-hSpNpxprVno7IOd4PZ93RQ+gNdzPAIrW0x8av6JQDJGV4k1mR9fE01dl8sEqi2P7aKmmwiGUn1BCPuf16Ae0Qw==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.10.tgz",
+ "integrity": "sha512-sHhX5lsbG9SOO6yXdlwgEMQ/ljIn7qMpAbJZCGfXX2fq5T8M5SrDnpYk9/4HswTildcIqatsWa91vty6VhWSaQ==",
"dev": true,
"requires": {
"dargs": "^7.0.0",
- "lodash.template": "^4.0.2",
+ "lodash": "^4.17.15",
"meow": "^8.0.0",
"split2": "^3.0.0",
"through2": "^4.0.0"
- },
- "dependencies": {
- "split2": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz",
- "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==",
- "dev": true,
- "requires": {
- "readable-stream": "^3.0.0"
- }
- }
}
},
"glob": {
@@ -5115,9 +4947,9 @@
}
},
"glob-parent": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
- "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"dev": true,
"requires": {
"is-glob": "^4.0.1"
@@ -5132,43 +4964,19 @@
"ini": "^1.3.4"
}
},
- "global-modules": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
- "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
- "dev": true,
- "requires": {
- "global-prefix": "^1.0.1",
- "is-windows": "^1.0.1",
- "resolve-dir": "^1.0.0"
- }
- },
- "global-prefix": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz",
- "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=",
- "dev": true,
- "requires": {
- "expand-tilde": "^2.0.2",
- "homedir-polyfill": "^1.0.1",
- "ini": "^1.3.4",
- "is-windows": "^1.0.1",
- "which": "^1.2.14"
- }
- },
"globals": {
- "version": "12.4.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
- "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
+ "version": "13.7.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz",
+ "integrity": "sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA==",
"dev": true,
"requires": {
- "type-fest": "^0.8.1"
+ "type-fest": "^0.20.2"
},
"dependencies": {
"type-fest": {
- "version": "0.8.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
- "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"dev": true
}
}
@@ -5205,15 +5013,15 @@
}
},
"graceful-fs": {
- "version": "4.2.4",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
- "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
+ "version": "4.2.6",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz",
+ "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==",
"dev": true
},
"graphql": {
- "version": "15.4.0",
- "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.4.0.tgz",
- "integrity": "sha512-EB3zgGchcabbsU9cFe1j+yxdzKQKAbGUWRb13DsrsMN1yyfmmIq+2+L5MqVWcDCE4V89R5AyUOi7sMOGxdsYtA==",
+ "version": "15.5.0",
+ "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.5.0.tgz",
+ "integrity": "sha512-OmaM7y0kaK31NKG31q4YbD2beNYa6jBBKtMFT6gLYJljHLJr42IqJ8KX08u3Li/0ifzTU5HjmoOOrwa5BRLeDA==",
"dev": true
},
"graphql-ld": {
@@ -5249,42 +5057,6 @@
"integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==",
"dev": true
},
- "har-schema": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
- "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
- "dev": true
- },
- "har-validator": {
- "version": "5.1.5",
- "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
- "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
- "dev": true,
- "requires": {
- "ajv": "^6.12.3",
- "har-schema": "^2.0.0"
- },
- "dependencies": {
- "ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- }
- },
- "fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
- "dev": true
- }
- }
- },
"hard-rejection": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz",
@@ -5317,6 +5089,12 @@
}
}
},
+ "has-bigints": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
+ "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==",
+ "dev": true
+ },
"has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
@@ -5324,9 +5102,9 @@
"dev": true
},
"has-symbols": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
- "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
+ "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
"dev": true
},
"hash.js": {
@@ -5345,19 +5123,10 @@
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
"dev": true
},
- "homedir-polyfill": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
- "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
- "dev": true,
- "requires": {
- "parse-passwd": "^1.0.0"
- }
- },
"hosted-git-info": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz",
- "integrity": "sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ==",
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.1.tgz",
+ "integrity": "sha512-eT7NrxAsppPRQEBSwKSosReE+v8OzABwEScQYk5d4uxaEPlzxTIku7LINXtBGalthkLhJnq5lBI89PfK43zAKg==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
@@ -5370,14 +5139,14 @@
"dev": true
},
"htmlparser2": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-5.0.1.tgz",
- "integrity": "sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.1.tgz",
+ "integrity": "sha512-GDKPd+vk4jvSuvCbyuzx/unmXkk090Azec7LovXP8as1Hn8q9p3hbjmDGbUqqhknw0ajwit6LiiWqfiTUPMK7w==",
"dev": true,
"requires": {
"domelementtype": "^2.0.1",
- "domhandler": "^3.3.0",
- "domutils": "^2.4.2",
+ "domhandler": "^4.0.0",
+ "domutils": "^2.4.4",
"entities": "^2.0.0"
}
},
@@ -5445,17 +5214,6 @@
"integrity": "sha512-nARK1wSKoBBrtcoESlHBx36c1Ln/gnbNQi1eB6MeTUefJIT3NvUOsV15bClga0k38f0q/kN5xxrGSDS3EFnm9w==",
"dev": true
},
- "http-signature": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
- "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0",
- "jsprim": "^1.2.2",
- "sshpk": "^1.7.0"
- }
- },
"https-proxy-agent": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz",
@@ -5490,9 +5248,9 @@
"dev": true
},
"husky": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/husky/-/husky-4.3.7.tgz",
- "integrity": "sha512-0fQlcCDq/xypoyYSJvEuzbDPHFf8ZF9IXKJxlrnvxABTSzK1VPT2RKYQKrcgJ+YD39swgoB6sbzywUqFxUiqjw==",
+ "version": "4.3.8",
+ "resolved": "https://registry.npmjs.org/husky/-/husky-4.3.8.tgz",
+ "integrity": "sha512-LCqqsB0PzJQ/AlCgfrfzRe3e3+NvmefAdKQhRYpxS4u6clblBoDdzzvHi8fmxKRzvMxPY/1WZWzomPZww0Anow==",
"dev": true,
"requires": {
"chalk": "^4.0.0",
@@ -5653,9 +5411,15 @@
"dev": true
},
"is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
+ "dev": true
+ },
+ "is-bigint": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz",
+ "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==",
"dev": true
},
"is-binary-path": {
@@ -5667,6 +5431,15 @@
"binary-extensions": "^2.0.0"
}
},
+ "is-boolean-object": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz",
+ "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.0"
+ }
+ },
"is-buffer": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
@@ -5674,9 +5447,9 @@
"dev": true
},
"is-callable": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
- "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz",
+ "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==",
"dev": true
},
"is-core-module": {
@@ -5751,6 +5524,12 @@
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"dev": true
},
+ "is-number-object": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz",
+ "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==",
+ "dev": true
+ },
"is-obj": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
@@ -5770,11 +5549,12 @@
"dev": true
},
"is-regex": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
- "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz",
+ "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==",
"dev": true,
"requires": {
+ "call-bind": "^1.0.2",
"has-symbols": "^1.0.1"
}
},
@@ -5814,10 +5594,10 @@
"text-extensions": "^1.0.0"
}
},
- "is-typedarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
+ "is-unicode-supported": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
+ "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
"dev": true
},
"is-utf8": {
@@ -5826,12 +5606,6 @@
"integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
"dev": true
},
- "is-windows": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
- "dev": true
- },
"is-wsl": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
@@ -5859,12 +5633,6 @@
"integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
"dev": true
},
- "isstream": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
- "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
- "dev": true
- },
"istanbul-lib-coverage": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz",
@@ -5920,24 +5688,12 @@
"esprima": "^4.0.0"
}
},
- "jsbn": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
- "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
- "dev": true
- },
"json-parse-even-better-errors": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
"dev": true
},
- "json-schema": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
- "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
- "dev": true
- },
"json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
@@ -5950,12 +5706,6 @@
"integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
"dev": true
},
- "json-stringify-safe": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
- "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
- "dev": true
- },
"json5": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
@@ -5980,18 +5730,6 @@
"graceful-fs": "^4.1.6"
}
},
- "jsonld": {
- "version": "0.4.12",
- "resolved": "https://registry.npmjs.org/jsonld/-/jsonld-0.4.12.tgz",
- "integrity": "sha1-oC8gXVNBQU3xtthBTxuWenEgc+g=",
- "dev": true,
- "requires": {
- "es6-promise": "^2.0.0",
- "pkginfo": "~0.4.0",
- "request": "^2.61.0",
- "xmldom": "0.1.19"
- }
- },
"jsonld-context-parser": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/jsonld-context-parser/-/jsonld-context-parser-2.1.1.tgz",
@@ -6007,26 +5745,26 @@
},
"dependencies": {
"@types/node": {
- "version": "13.13.39",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.39.tgz",
- "integrity": "sha512-wct+WgRTTkBm2R3vbrFOqyZM5w0g+D8KnhstG9463CJBVC3UVZHMToge7iMBR1vDl/I+NWFHUeK9X+JcF0rWKw==",
+ "version": "13.13.47",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.47.tgz",
+ "integrity": "sha512-R6851wTjN1YJza8ZIeX6puNBSi/ZULHVh4WVleA7q256l+cP2EtXnKbO455fTs2ytQk3dL9qkU+Wh8l/uROdKg==",
"dev": true
}
}
},
"jsonld-streaming-parser": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/jsonld-streaming-parser/-/jsonld-streaming-parser-2.2.0.tgz",
- "integrity": "sha512-uaBP4sSFqYuupkfsQhRj7U/0KEFTqxElaUPn3CtYGEOsjvqCEexTkrVI7fPLoDERMIC2UfbzdHuN6rmESFGzgw==",
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/jsonld-streaming-parser/-/jsonld-streaming-parser-2.2.1.tgz",
+ "integrity": "sha512-KRCcRQGYDH9AO+VgLgbC1AwUKeVs3SpFONiABhBvcIZjErbsXxmiXiUtSYor0CrtWGLjVMoEZA5jCFUsO3Kezw==",
"dev": true,
"requires": {
"@types/http-link-header": "^1.0.1",
"@types/rdf-js": "*",
"canonicalize": "^1.0.1",
"http-link-header": "^1.0.2",
- "jsonld-context-parser": "^2.0.1",
+ "jsonld-context-parser": "^2.1.1",
"jsonparse": "^1.3.1",
- "rdf-data-factory": "^1.0.2"
+ "rdf-data-factory": "^1.0.4"
}
},
"jsonld-streaming-serializer": {
@@ -6045,18 +5783,6 @@
"integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=",
"dev": true
},
- "jsprim": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
- "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
- "dev": true,
- "requires": {
- "assert-plus": "1.0.0",
- "extsprintf": "1.3.0",
- "json-schema": "0.2.3",
- "verror": "1.10.0"
- }
- },
"just-extend": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.1.1.tgz",
@@ -6211,6 +5937,12 @@
}
}
},
+ "kuler": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz",
+ "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==",
+ "dev": true
+ },
"levn": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
@@ -6238,9 +5970,9 @@
"dev": true
},
"lint-staged": {
- "version": "10.5.3",
- "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.3.tgz",
- "integrity": "sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==",
+ "version": "10.5.4",
+ "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.4.tgz",
+ "integrity": "sha512-EechC3DdFic/TdOPgj/RB3FicqE6932LTHCUm0Y2fsD9KGlLB+RwJl2q1IYBIvEsKzDOgn0D4gll+YxG5RsrKg==",
"dev": true,
"requires": {
"chalk": "^4.1.0",
@@ -6270,12 +6002,13 @@
}
},
"log-symbols": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz",
- "integrity": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
+ "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
"dev": true,
"requires": {
- "chalk": "^4.0.0"
+ "chalk": "^4.1.0",
+ "is-unicode-supported": "^0.1.0"
}
},
"ms": {
@@ -6287,9 +6020,9 @@
}
},
"listr2": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.2.3.tgz",
- "integrity": "sha512-vUb80S2dSUi8YxXahO8/I/s29GqnOL8ozgHVLjfWQXa03BNEeS1TpBLjh2ruaqq5ufx46BRGvfymdBSuoXET5w==",
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.4.3.tgz",
+ "integrity": "sha512-wZmkzNiuinOfwrGqAwTCcPw6aKQGTAMGXwG5xeU1WpDjJNeBA35jGBeWxR3OF+R6Yl5Y3dRG+3vE8t6PDcSNHA==",
"dev": true,
"requires": {
"chalk": "^4.1.0",
@@ -6298,8 +6031,9 @@
"indent-string": "^4.0.0",
"log-update": "^4.0.0",
"p-map": "^4.0.0",
- "rxjs": "^6.6.3",
- "through": "^2.3.8"
+ "rxjs": "^6.6.6",
+ "through": "^2.3.8",
+ "wrap-ansi": "^7.0.0"
}
},
"lit-element": {
@@ -6348,15 +6082,9 @@
}
},
"lodash": {
- "version": "4.17.20",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
- "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==",
- "dev": true
- },
- "lodash._reinterpolate": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
- "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
"dev": true
},
"lodash.camelcase": {
@@ -6377,25 +6105,6 @@
"integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=",
"dev": true
},
- "lodash.template": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
- "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
- "dev": true,
- "requires": {
- "lodash._reinterpolate": "^3.0.0",
- "lodash.templatesettings": "^4.0.0"
- }
- },
- "lodash.templatesettings": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
- "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
- "dev": true,
- "requires": {
- "lodash._reinterpolate": "^3.0.0"
- }
- },
"lodash.uniqwith": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/lodash.uniqwith/-/lodash.uniqwith-4.5.0.tgz",
@@ -6463,6 +6172,40 @@
"cli-cursor": "^3.1.0",
"slice-ansi": "^4.0.0",
"wrap-ansi": "^6.2.0"
+ },
+ "dependencies": {
+ "wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ }
+ }
+ }
+ },
+ "logform": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/logform/-/logform-2.2.0.tgz",
+ "integrity": "sha512-N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg==",
+ "dev": true,
+ "requires": {
+ "colors": "^1.2.1",
+ "fast-safe-stringify": "^2.0.4",
+ "fecha": "^4.2.0",
+ "ms": "^2.1.1",
+ "triple-beam": "^1.3.0"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true
+ }
}
},
"loud-rejection": {
@@ -6502,9 +6245,9 @@
}
},
"map-obj": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.1.0.tgz",
- "integrity": "sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.2.0.tgz",
+ "integrity": "sha512-NAq0fCmZYGz9UFEQyndp7sisrow4GroyGeKluyKC/chuITZsPyOyC1UJZPJlVFImhXdROIP5xqouRLThT3BbpQ==",
"dev": true
},
"marky": {
@@ -6560,6 +6303,29 @@
"htmlparser2": "^5.0.0",
"rdf-data-factory": "^1.0.2",
"relative-to-absolute-iri": "^1.0.2"
+ },
+ "dependencies": {
+ "domhandler": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz",
+ "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1"
+ }
+ },
+ "htmlparser2": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-5.0.1.tgz",
+ "integrity": "sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^3.3.0",
+ "domutils": "^2.4.2",
+ "entities": "^2.0.0"
+ }
+ }
}
},
"micromatch": {
@@ -6573,24 +6339,24 @@
}
},
"mime": {
- "version": "2.4.7",
- "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.7.tgz",
- "integrity": "sha512-dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA==",
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz",
+ "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==",
"dev": true
},
"mime-db": {
- "version": "1.45.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz",
- "integrity": "sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==",
+ "version": "1.46.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz",
+ "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==",
"dev": true
},
"mime-types": {
- "version": "2.1.28",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz",
- "integrity": "sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==",
+ "version": "2.1.29",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz",
+ "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==",
"dev": true,
"requires": {
- "mime-db": "1.45.0"
+ "mime-db": "1.46.0"
}
},
"mimic-fn": {
@@ -6737,21 +6503,6 @@
"wrap-ansi": "^5.1.0"
}
},
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
- "dev": true
- },
"debug": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
@@ -6884,6 +6635,12 @@
"ansi-regex": "^4.1.0"
}
},
+ "strip-json-comments": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
+ "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
+ "dev": true
+ },
"supports-color": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz",
@@ -6893,6 +6650,15 @@
"has-flag": "^3.0.0"
}
},
+ "which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ },
"wrap-ansi": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
@@ -6904,6 +6670,12 @@
"strip-ansi": "^5.0.0"
}
},
+ "y18n": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz",
+ "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==",
+ "dev": true
+ },
"yargs": {
"version": "13.3.2",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz",
@@ -6941,9 +6713,9 @@
"dev": true
},
"n3": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/n3/-/n3-1.7.0.tgz",
- "integrity": "sha512-8R0Qj545WnVLQxOfxxyFKzOpO13hF3jhSMJfO0FNqvbsPZDiR9ZDmGGjXAlcoZDf/88OsCYd7rHML284vm1h6A==",
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/n3/-/n3-1.9.0.tgz",
+ "integrity": "sha512-63+NEVkNjFX77HmA8oifM9LGEOhpFT/fEdnfDDHjqt1CSLuVuK+f31kqkPI0T5m7x+Rdu0rSM4Sx2A0MuNp3rg==",
"dev": true,
"requires": {
"queue-microtask": "^1.1.2",
@@ -6968,16 +6740,10 @@
"integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
"dev": true
},
- "nested-error-stacks": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz",
- "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==",
- "dev": true
- },
"nise": {
- "version": "4.0.4",
- "resolved": "https://registry.npmjs.org/nise/-/nise-4.0.4.tgz",
- "integrity": "sha512-bTTRUNlemx6deJa+ZyoCUTRvH3liK5+N6VQZ4NIw90AgDXY6iPnsqplNFf6STcj+ePk0H/xqxnP75Lr0J0Fq3A==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/nise/-/nise-4.1.0.tgz",
+ "integrity": "sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==",
"dev": true,
"requires": {
"@sinonjs/commons": "^1.7.0",
@@ -7012,27 +6778,15 @@
"dev": true
},
"normalize-package-data": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.0.tgz",
- "integrity": "sha512-6lUjEI0d3v6kFrtgA/lOx4zHCWULXsFNIjHolnZCKCTLA6m/G625cdn3O7eNmT0iD3jfo6HZ9cdImGZwf21prw==",
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.2.tgz",
+ "integrity": "sha512-6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg==",
"dev": true,
"requires": {
- "hosted-git-info": "^3.0.6",
- "resolve": "^1.17.0",
- "semver": "^7.3.2",
+ "hosted-git-info": "^4.0.1",
+ "resolve": "^1.20.0",
+ "semver": "^7.3.4",
"validate-npm-package-license": "^3.0.1"
- },
- "dependencies": {
- "resolve": {
- "version": "1.19.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
- "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.1.0",
- "path-parse": "^1.0.6"
- }
- }
}
},
"normalize-path": {
@@ -7050,12 +6804,6 @@
"path-key": "^3.0.0"
}
},
- "oauth-sign": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
- "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
- "dev": true
- },
"object-assign": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
@@ -7099,25 +6847,25 @@
}
},
"object.getownpropertydescriptors": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz",
- "integrity": "sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==",
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz",
+ "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==",
"dev": true,
"requires": {
- "call-bind": "^1.0.0",
+ "call-bind": "^1.0.2",
"define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1"
+ "es-abstract": "^1.18.0-next.2"
}
},
"object.values": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz",
- "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz",
+ "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==",
"dev": true,
"requires": {
- "call-bind": "^1.0.0",
+ "call-bind": "^1.0.2",
"define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
+ "es-abstract": "^1.18.0-next.2",
"has": "^1.0.3"
}
},
@@ -7139,6 +6887,15 @@
"wrappy": "1"
}
},
+ "one-time": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz",
+ "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==",
+ "dev": true,
+ "requires": {
+ "fn.name": "1.x.x"
+ }
+ },
"onetime": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
@@ -7155,13 +6912,14 @@
"dev": true
},
"open": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/open/-/open-7.3.1.tgz",
- "integrity": "sha512-f2wt9DCBKKjlFbjzGb8MOAW8LH8F0mrs1zc7KTjAJ9PZNQbfenzWbNP1VZJvw6ICMG9r14Ah6yfwPn7T7i646A==",
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/open/-/open-8.0.3.tgz",
+ "integrity": "sha512-7nsHNw3rOIPTwhF5iYkgE+LVM/oUHWC3cgrWNxPqa+W+Wl5Ekvo32qayB5PYX8zNjXzUkrTaJsWpaGmuw8Aspg==",
"dev": true,
"requires": {
- "is-docker": "^2.0.0",
- "is-wsl": "^2.1.1"
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
}
},
"opencollective-postinstall": {
@@ -7227,9 +6985,9 @@
}
},
"parse-json": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz",
- "integrity": "sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==",
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
@@ -7247,12 +7005,6 @@
"xtend": "~4.0.1"
}
},
- "parse-passwd": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
- "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=",
- "dev": true
- },
"parse5": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
@@ -7322,9 +7074,9 @@
"dev": true
},
"pathval": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz",
- "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz",
+ "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==",
"dev": true
},
"pend": {
@@ -7333,12 +7085,6 @@
"integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=",
"dev": true
},
- "performance-now": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
- "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
- "dev": true
- },
"picomatch": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz",
@@ -7426,18 +7172,13 @@
}
}
},
- "pkginfo": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz",
- "integrity": "sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8=",
- "dev": true
- },
"playwright": {
- "version": "1.7.1",
- "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.7.1.tgz",
- "integrity": "sha512-dOSWME42wDedJ/PXv8k0zG0Kxd6d6R2OKA51/05++Z2ISdA4N58gHlWqlVKPDkBog1MI6lu/KNt7QDn19AybWQ==",
+ "version": "1.9.2",
+ "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.9.2.tgz",
+ "integrity": "sha512-Hsgfk3GZO+hgewRNW9xl9/tHjdZvVwxTseHagbiNpDf90PXICEh8UHXy/2eykeIXrZFMA6W6petEtRWNPi3gfQ==",
"dev": true,
"requires": {
+ "commander": "^6.1.0",
"debug": "^4.1.1",
"extract-zip": "^2.0.1",
"https-proxy-agent": "^5.0.0",
@@ -7448,6 +7189,7 @@
"proper-lockfile": "^4.1.1",
"proxy-from-env": "^1.1.0",
"rimraf": "^3.0.2",
+ "stack-utils": "^2.0.3",
"ws": "^7.3.1"
},
"dependencies": {
@@ -7513,6 +7255,15 @@
"mkdirp": "^0.5.5"
},
"dependencies": {
+ "async": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
+ "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.14"
+ }
+ },
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
@@ -7572,12 +7323,12 @@
"dev": true
},
"proper-lockfile": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.1.tgz",
- "integrity": "sha512-1w6rxXodisVpn7QYvLk706mzprPTAPCYAqxMvctmPN3ekuRk/kuGkGc82pangZiAt4R3lwSuUzheTTn0/Yb7Zg==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
+ "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==",
"dev": true,
"requires": {
- "graceful-fs": "^4.1.11",
+ "graceful-fs": "^4.2.4",
"retry": "^0.12.0",
"signal-exit": "^3.0.2"
}
@@ -7588,12 +7339,6 @@
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
"dev": true
},
- "psl": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
- "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
- "dev": true
- },
"pump": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
@@ -7663,10 +7408,13 @@
"dev": true
},
"qs": {
- "version": "6.5.2",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
- "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
- "dev": true
+ "version": "6.10.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.0.tgz",
+ "integrity": "sha512-yjACOWijC6L/kmPZZAsVBNY2zfHSIbpdpL977quseu56/8BZ2LoF5axK2bGhbzhVKt7V9xgWTtpyLbxwIoER0Q==",
+ "dev": true,
+ "requires": {
+ "side-channel": "^1.0.4"
+ }
},
"queue-microtask": {
"version": "1.2.2",
@@ -7713,18 +7461,6 @@
}
}
},
- "rc": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
- "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
- "dev": true,
- "requires": {
- "deep-extend": "^0.6.0",
- "ini": "~1.3.0",
- "minimist": "^1.2.0",
- "strip-json-comments": "~2.0.1"
- }
- },
"rdf-data-factory": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/rdf-data-factory/-/rdf-data-factory-1.0.4.tgz",
@@ -7734,6 +7470,16 @@
"@types/rdf-js": "*"
}
},
+ "rdf-isomorphic": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/rdf-isomorphic/-/rdf-isomorphic-1.2.0.tgz",
+ "integrity": "sha512-Dq+iuWrVuK7q3P4/nychbWhRJ1M5yMAekNJN8f5pjarE8SH9Duy/R0JopVF0I0Q2w0poZlsVKKIBpeG+AdOSAw==",
+ "dev": true,
+ "requires": {
+ "rdf-string": "^1.5.0",
+ "rdf-terms": "^1.6.2"
+ }
+ },
"rdf-literal": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/rdf-literal/-/rdf-literal-1.2.0.tgz",
@@ -7744,6 +7490,45 @@
"rdf-data-factory": "^1.0.1"
}
},
+ "rdf-object": {
+ "version": "1.10.1",
+ "resolved": "https://registry.npmjs.org/rdf-object/-/rdf-object-1.10.1.tgz",
+ "integrity": "sha512-vV07Zqbgac9GOdlSNx/wHMuDwhdtHkPZVGAo+MK1sEoO1WRHiL7cFfwcW8XmPgF+c/DkgYfvTUcRxzXPlsKvcw==",
+ "dev": true,
+ "requires": {
+ "jsonld-context-parser": "^2.0.2",
+ "rdf-data-factory": "^1.0.3",
+ "rdf-string": "^1.5.0",
+ "streamify-array": "^1.0.1"
+ }
+ },
+ "rdf-parse": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/rdf-parse/-/rdf-parse-1.7.0.tgz",
+ "integrity": "sha512-P3meLRU9OkZZz9OYq26VeRrxIDrzEBNAScAWcTX1tsf4Z85WTLhiwP5jC+OZBSzRSlybkkb6EYSVA1M4eykiBg==",
+ "dev": true,
+ "requires": {
+ "@comunica/actor-http-native": "~1.19.0",
+ "@comunica/actor-rdf-parse-html": "~1.19.0",
+ "@comunica/actor-rdf-parse-html-microdata": "~1.19.0",
+ "@comunica/actor-rdf-parse-html-rdfa": "~1.19.0",
+ "@comunica/actor-rdf-parse-html-script": "~1.19.0",
+ "@comunica/actor-rdf-parse-jsonld": "~1.19.0",
+ "@comunica/actor-rdf-parse-n3": "~1.19.0",
+ "@comunica/actor-rdf-parse-rdfxml": "~1.19.0",
+ "@comunica/actor-rdf-parse-xml-rdfa": "~1.19.0",
+ "@comunica/bus-http": "~1.19.0",
+ "@comunica/bus-init": "~1.19.0",
+ "@comunica/bus-rdf-parse": "~1.19.0",
+ "@comunica/bus-rdf-parse-html": "~1.19.0",
+ "@comunica/core": "~1.19.0",
+ "@comunica/mediator-combine-union": "~1.19.0",
+ "@comunica/mediator-number": "~1.19.0",
+ "@comunica/mediator-race": "~1.19.0",
+ "@types/rdf-js": "*",
+ "stream-to-string": "^1.2.0"
+ }
+ },
"rdf-quad": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-quad/-/rdf-quad-1.5.0.tgz",
@@ -7803,6 +7588,29 @@
"htmlparser2": "^5.0.0",
"rdf-data-factory": "^1.0.2",
"relative-to-absolute-iri": "^1.0.2"
+ },
+ "dependencies": {
+ "domhandler": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz",
+ "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1"
+ }
+ },
+ "htmlparser2": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-5.0.1.tgz",
+ "integrity": "sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^3.3.0",
+ "domutils": "^2.4.2",
+ "entities": "^2.0.0"
+ }
+ }
}
},
"rdfxml-streaming-parser": {
@@ -7847,16 +7655,6 @@
"validate-npm-package-license": "^3.0.1"
}
},
- "resolve": {
- "version": "1.19.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
- "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.1.0",
- "path-parse": "^1.0.6"
- }
- },
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
@@ -7959,42 +7757,6 @@
"is-finite": "^1.0.0"
}
},
- "request": {
- "version": "2.88.2",
- "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
- "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
- "dev": true,
- "requires": {
- "aws-sign2": "~0.7.0",
- "aws4": "^1.8.0",
- "caseless": "~0.12.0",
- "combined-stream": "~1.0.6",
- "extend": "~3.0.2",
- "forever-agent": "~0.6.1",
- "form-data": "~2.3.2",
- "har-validator": "~5.1.3",
- "http-signature": "~1.2.0",
- "is-typedarray": "~1.0.0",
- "isstream": "~0.1.2",
- "json-stringify-safe": "~5.0.1",
- "mime-types": "~2.1.19",
- "oauth-sign": "~0.9.0",
- "performance-now": "^2.1.0",
- "qs": "~6.5.2",
- "safe-buffer": "^5.1.2",
- "tough-cookie": "~2.5.0",
- "tunnel-agent": "^0.6.0",
- "uuid": "^3.3.2"
- },
- "dependencies": {
- "uuid": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
- "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
- "dev": true
- }
- }
- },
"require-directory": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
@@ -8013,17 +7775,6 @@
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
"dev": true
},
- "requireg": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/requireg/-/requireg-0.1.8.tgz",
- "integrity": "sha512-qjbwnviLXg4oZiAFEr1ExbevkUPaEiP1uPGSoFCVgCCcbo4PXv9SmiJpXNYmgTBCZ8fY1Jy+sk7F9/kPNepeDw==",
- "dev": true,
- "requires": {
- "nested-error-stacks": "~2.0.1",
- "rc": "~1.2.7",
- "resolve": "~1.7.1"
- }
- },
"requireindex": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz",
@@ -8031,22 +7782,13 @@
"dev": true
},
"resolve": {
- "version": "1.7.1",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz",
- "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==",
+ "version": "1.20.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz",
+ "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==",
"dev": true,
"requires": {
- "path-parse": "^1.0.5"
- }
- },
- "resolve-dir": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz",
- "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=",
- "dev": true,
- "requires": {
- "expand-tilde": "^2.0.0",
- "global-modules": "^1.0.0"
+ "is-core-module": "^2.2.0",
+ "path-parse": "^1.0.6"
}
},
"resolve-from": {
@@ -8138,33 +7880,27 @@
}
},
"rollup": {
- "version": "2.36.1",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.36.1.tgz",
- "integrity": "sha512-eAfqho8dyzuVvrGqpR0ITgEdq0zG2QJeWYh+HeuTbpcaXk8vNFc48B7bJa1xYosTCKx0CuW+447oQOW8HgBIZQ==",
+ "version": "2.41.5",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.41.5.tgz",
+ "integrity": "sha512-uG+WNNxhOYyeuO7oRt98GA2CNVRgQ67zca75UQVMPzMrLG9FUKzTCgvYVWhtB18TNbV7Uqxo97h+wErAnpFNJw==",
"dev": true,
"requires": {
- "fsevents": "~2.1.2"
- },
- "dependencies": {
- "fsevents": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
- "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
- "dev": true,
- "optional": true
- }
+ "fsevents": "~2.3.1"
}
},
"run-parallel": {
- "version": "1.1.10",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz",
- "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==",
- "dev": true
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "requires": {
+ "queue-microtask": "^1.2.2"
+ }
},
"rxjs": {
- "version": "6.6.3",
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz",
- "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==",
+ "version": "6.6.6",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.6.tgz",
+ "integrity": "sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg==",
"dev": true,
"requires": {
"tslib": "^1.9.0"
@@ -8205,10 +7941,13 @@
"optional": true
},
"semver": {
- "version": "7.3.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
- "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
- "dev": true
+ "version": "7.3.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz",
+ "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
},
"semver-compare": {
"version": "1.0.0",
@@ -8249,21 +7988,41 @@
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
"dev": true
},
+ "side-channel": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+ "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.0",
+ "get-intrinsic": "^1.0.2",
+ "object-inspect": "^1.9.0"
+ }
+ },
"signal-exit": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
"integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==",
"dev": true
},
+ "simple-swizzle": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
+ "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
+ "dev": true,
+ "requires": {
+ "is-arrayish": "^0.3.1"
+ }
+ },
"sinon": {
- "version": "9.2.3",
- "resolved": "https://registry.npmjs.org/sinon/-/sinon-9.2.3.tgz",
- "integrity": "sha512-m+DyAWvqVHZtjnjX/nuShasykFeiZ+nPuEfD4G3gpvKGkXRhkF/6NSt2qN2FjZhfrcHXFzUzI+NLnk+42fnLEw==",
+ "version": "9.2.4",
+ "resolved": "https://registry.npmjs.org/sinon/-/sinon-9.2.4.tgz",
+ "integrity": "sha512-zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg==",
"dev": true,
"requires": {
"@sinonjs/commons": "^1.8.1",
"@sinonjs/fake-timers": "^6.0.1",
- "@sinonjs/samsam": "^5.3.0",
+ "@sinonjs/samsam": "^5.3.1",
"diff": "^4.0.2",
"nise": "^4.0.4",
"supports-color": "^7.1.0"
@@ -8313,16 +8072,17 @@
"dev": true
},
"sparqlalgebrajs": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.4.0.tgz",
- "integrity": "sha512-6glKn1uWBsdPuQ4D+4r5m8mgWZoMfiNgip4uyblULTmgISqcbsQzrlrIhWQoZSX95QLLlWlYJufhelQAIRAWKg==",
+ "version": "2.5.5",
+ "resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.5.tgz",
+ "integrity": "sha512-sG9XI5311mS+JPDaeZUwtwYaYDRiTZDzxtHVS1GSrnfcZ2aiK1fa1PX9z16l7dtS35X3z1j1qyHEElzZO5OM3A==",
"dev": true,
"requires": {
- "fast-deep-equal": "^3.1.1",
+ "fast-deep-equal": "^3.1.3",
"minimist": "^1.2.5",
- "rdf-data-factory": "^1.0.0",
+ "rdf-data-factory": "^1.0.4",
+ "rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
- "sparqljs": "^3.1.1"
+ "sparqljs": "^3.3.0"
},
"dependencies": {
"fast-deep-equal": {
@@ -8354,9 +8114,9 @@
}
},
"sparqljs": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
- "integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.4.1.tgz",
+ "integrity": "sha512-JKcKPFdpPLiNnZU4i3f2MUk3LBIh0pCd1mWIP1Zi+Te7umurJLDBYCygsRNPK9Pz8ZI5n66StiQRxzSPYqdxjQ==",
"dev": true,
"requires": {
"rdf-data-factory": "^1.0.4"
@@ -8375,9 +8135,9 @@
},
"dependencies": {
"@types/node": {
- "version": "13.13.39",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.39.tgz",
- "integrity": "sha512-wct+WgRTTkBm2R3vbrFOqyZM5w0g+D8KnhstG9463CJBVC3UVZHMToge7iMBR1vDl/I+NWFHUeK9X+JcF0rWKw==",
+ "version": "13.13.47",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.47.tgz",
+ "integrity": "sha512-R6851wTjN1YJza8ZIeX6puNBSi/ZULHVh4WVleA7q256l+cP2EtXnKbO455fTs2ytQk3dL9qkU+Wh8l/uROdKg==",
"dev": true
}
}
@@ -8405,9 +8165,9 @@
},
"dependencies": {
"@types/node": {
- "version": "13.13.39",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.39.tgz",
- "integrity": "sha512-wct+WgRTTkBm2R3vbrFOqyZM5w0g+D8KnhstG9463CJBVC3UVZHMToge7iMBR1vDl/I+NWFHUeK9X+JcF0rWKw==",
+ "version": "13.13.47",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.47.tgz",
+ "integrity": "sha512-R6851wTjN1YJza8ZIeX6puNBSi/ZULHVh4WVleA7q256l+cP2EtXnKbO455fTs2ytQk3dL9qkU+Wh8l/uROdKg==",
"dev": true
}
}
@@ -8445,54 +8205,12 @@
"dev": true
},
"split2": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz",
- "integrity": "sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==",
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz",
+ "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==",
"dev": true,
"requires": {
- "through2": "^2.0.2"
- },
- "dependencies": {
- "readable-stream": {
- "version": "2.3.7",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
- "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
- "dev": true,
- "requires": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
- "dev": true
- },
- "string_decoder": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "dev": true,
- "requires": {
- "safe-buffer": "~5.1.0"
- }
- },
- "through2": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
- "dev": true,
- "requires": {
- "readable-stream": "~2.3.6",
- "xtend": "~4.0.1"
- }
- }
+ "readable-stream": "^3.0.0"
}
},
"sprintf-js": {
@@ -8501,21 +8219,27 @@
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
"dev": true
},
- "sshpk": {
- "version": "1.16.1",
- "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
- "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
+ "stack-trace": {
+ "version": "0.0.10",
+ "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
+ "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=",
+ "dev": true
+ },
+ "stack-utils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz",
+ "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==",
"dev": true,
"requires": {
- "asn1": "~0.2.3",
- "assert-plus": "^1.0.0",
- "bcrypt-pbkdf": "^1.0.0",
- "dashdash": "^1.12.0",
- "ecc-jsbn": "~0.1.1",
- "getpass": "^0.1.1",
- "jsbn": "~0.1.0",
- "safer-buffer": "^2.0.2",
- "tweetnacl": "~0.14.0"
+ "escape-string-regexp": "^2.0.0"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
+ "dev": true
+ }
}
},
"statuses": {
@@ -8533,6 +8257,12 @@
"promise-polyfill": "^1.1.6"
}
},
+ "streamify-array": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/streamify-array/-/streamify-array-1.0.1.tgz",
+ "integrity": "sha512-ZnswaBcC6B1bhPLSQOlC6CdaDUSzU0wr2lvvHpbHNms8V7+DLd8uEAzDAWpsjxbFkijBHhuObFO/qqu52DZUMA==",
+ "dev": true
+ },
"streamify-string": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/streamify-string/-/streamify-string-1.0.1.tgz",
@@ -8546,9 +8276,9 @@
"dev": true
},
"string-width": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
- "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz",
+ "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==",
"dev": true,
"requires": {
"emoji-regex": "^8.0.0",
@@ -8557,22 +8287,22 @@
}
},
"string.prototype.trimend": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz",
- "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz",
+ "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==",
"dev": true,
"requires": {
- "call-bind": "^1.0.0",
+ "call-bind": "^1.0.2",
"define-properties": "^1.1.3"
}
},
"string.prototype.trimstart": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz",
- "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz",
+ "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==",
"dev": true,
"requires": {
- "call-bind": "^1.0.0",
+ "call-bind": "^1.0.2",
"define-properties": "^1.1.3"
}
},
@@ -8635,9 +8365,9 @@
}
},
"strip-json-comments": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true
},
"supports-color": {
@@ -8662,9 +8392,9 @@
},
"dependencies": {
"ajv": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz",
- "integrity": "sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ==",
+ "version": "7.2.1",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.2.1.tgz",
+ "integrity": "sha512-+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ==",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.1",
@@ -8688,9 +8418,9 @@
}
},
"table-layout": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.1.tgz",
- "integrity": "sha512-dEquqYNJiGwY7iPfZ3wbXDI944iqanTSchrACLL2nOB+1r+h1Nzu2eH+DuPPvWvm5Ry7iAPeFlgEtP5bIp5U7Q==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz",
+ "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==",
"dev": true,
"requires": {
"array-back": "^4.0.1",
@@ -8744,6 +8474,12 @@
"integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==",
"dev": true
},
+ "text-hex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz",
+ "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==",
+ "dev": true
+ },
"text-table": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
@@ -8786,16 +8522,6 @@
"integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==",
"dev": true
},
- "tough-cookie": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
- "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
- "dev": true,
- "requires": {
- "psl": "^1.1.28",
- "punycode": "^2.1.1"
- }
- },
"tr46": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz",
@@ -8817,6 +8543,12 @@
"integrity": "sha1-n5up2e+odkw4dpi8v+sshI8RrbM=",
"dev": true
},
+ "triple-beam": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz",
+ "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==",
+ "dev": true
+ },
"tsconfig-paths": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz",
@@ -8841,21 +8573,6 @@
"integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==",
"dev": true
},
- "tunnel-agent": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
- "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
- "dev": true,
- "requires": {
- "safe-buffer": "^5.0.1"
- }
- },
- "tweetnacl": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
- "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
- "dev": true
- },
"type-check": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
@@ -8888,9 +8605,9 @@
}
},
"typescript": {
- "version": "4.1.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz",
- "integrity": "sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.3.tgz",
+ "integrity": "sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==",
"dev": true
},
"typescript-lit-html-plugin": {
@@ -8929,6 +8646,18 @@
"integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==",
"dev": true
},
+ "unbox-primitive": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz",
+ "integrity": "sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1",
+ "has-bigints": "^1.0.0",
+ "has-symbols": "^1.0.0",
+ "which-boxed-primitive": "^1.0.1"
+ }
+ },
"unbzip2-stream": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
@@ -8979,9 +8708,9 @@
"dev": true
},
"v8-compile-cache": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz",
- "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz",
+ "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==",
"dev": true
},
"v8-to-istanbul": {
@@ -9162,16 +8891,6 @@
"strip-indent": "^1.0.1"
}
},
- "resolve": {
- "version": "1.19.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
- "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.1.0",
- "path-parse": "^1.0.6"
- }
- },
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
@@ -9220,17 +8939,6 @@
"integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
"dev": true
},
- "verror": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
- "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
- "dev": true,
- "requires": {
- "assert-plus": "^1.0.0",
- "core-util-is": "1.0.2",
- "extsprintf": "^1.2.0"
- }
- },
"vscode-css-languageservice": {
"version": "3.0.13",
"resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-3.0.13.tgz",
@@ -9324,14 +9032,27 @@
}
},
"which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dev": true,
"requires": {
"isexe": "^2.0.0"
}
},
+ "which-boxed-primitive": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
+ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
+ "dev": true,
+ "requires": {
+ "is-bigint": "^1.0.1",
+ "is-boolean-object": "^1.1.0",
+ "is-number-object": "^1.0.4",
+ "is-string": "^1.0.5",
+ "is-symbol": "^1.0.3"
+ }
+ },
"which-module": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
@@ -9386,6 +9107,65 @@
}
}
},
+ "winston": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz",
+ "integrity": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==",
+ "dev": true,
+ "requires": {
+ "@dabh/diagnostics": "^2.0.2",
+ "async": "^3.1.0",
+ "is-stream": "^2.0.0",
+ "logform": "^2.2.0",
+ "one-time": "^1.0.0",
+ "readable-stream": "^3.4.0",
+ "stack-trace": "0.0.x",
+ "triple-beam": "^1.3.0",
+ "winston-transport": "^4.4.0"
+ }
+ },
+ "winston-transport": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz",
+ "integrity": "sha512-Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw==",
+ "dev": true,
+ "requires": {
+ "readable-stream": "^2.3.7",
+ "triple-beam": "^1.2.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "dev": true
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
"word-wrap": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
@@ -9393,13 +9173,13 @@
"dev": true
},
"wordwrapjs": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.0.tgz",
- "integrity": "sha512-Svqw723a3R34KvsMgpjFBYCgNOSdcW3mQFK4wIfhGQhtaFVOJmdYoXgi63ne3dTlWgatVcUc7t4HtQ/+bUVIzQ==",
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz",
+ "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==",
"dev": true,
"requires": {
"reduce-flatten": "^2.0.0",
- "typical": "^5.0.0"
+ "typical": "^5.2.0"
},
"dependencies": {
"typical": {
@@ -9411,9 +9191,9 @@
}
},
"wrap-ansi": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"dev": true,
"requires": {
"ansi-styles": "^4.0.0",
@@ -9428,9 +9208,9 @@
"dev": true
},
"ws": {
- "version": "7.4.2",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.2.tgz",
- "integrity": "sha512-T4tewALS3+qsrpGI/8dqNMLIVdq/g/85U98HPMa6F0m6xTbvhXU6RCQLqPH3+SlomNV/LdY6RXEbBpMH6EOJnA==",
+ "version": "7.4.4",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz",
+ "integrity": "sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw==",
"dev": true
},
"xml": {
@@ -9439,12 +9219,6 @@
"integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=",
"dev": true
},
- "xmldom": {
- "version": "0.1.19",
- "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz",
- "integrity": "sha1-Yx/Ad3bv2EEYvyUXGzftTQdaCrw=",
- "dev": true
- },
"xtend": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
@@ -9452,9 +9226,9 @@
"dev": true
},
"y18n": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz",
- "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==",
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz",
+ "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==",
"dev": true
},
"yallist": {
@@ -9464,46 +9238,30 @@
"dev": true
},
"yaml": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz",
- "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==",
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
"dev": true
},
"yargs": {
- "version": "15.4.1",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
- "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
"dev": true,
"requires": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
"require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
"string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "dependencies": {
- "yargs-parser": {
- "version": "18.1.3",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
- "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
- "dev": true,
- "requires": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
- }
- }
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
}
},
"yargs-parser": {
- "version": "20.2.4",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz",
- "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
+ "version": "20.2.7",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz",
+ "integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==",
"dev": true
},
"yargs-unparser": {
@@ -9543,21 +9301,6 @@
"wrap-ansi": "^5.1.0"
}
},
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
- "dev": true
- },
"emoji-regex": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
@@ -9635,6 +9378,12 @@
"strip-ansi": "^5.0.0"
}
},
+ "y18n": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz",
+ "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==",
+ "dev": true
+ },
"yargs": {
"version": "13.3.2",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz",
diff --git a/package.json b/package.json
index c132559..5ba8475 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "@api-components/api-resource-example-document",
"description": "A viewer for examples in a resource based on AMF model",
- "version": "4.1.2",
+ "version": "4.2.0",
"license": "Apache-2.0",
"main": "index.js",
"module": "index.js",
@@ -12,11 +12,11 @@
"operation"
],
"authors": [
- "Pawel Psztyc",
- "Carolina Wright",
- "Francisco Di Giandomenico"
+ "Pawel Psztyc"
],
"contributors": [
+ "Carolina Wright",
+ "Francisco Di Giandomenico",
"Your name can be here!"
],
"repository": {
@@ -28,34 +28,33 @@
"email": "arc@mulesoft.com"
},
"dependencies": {
- "@advanced-rest-client/arc-icons": "^3.2.2",
- "@advanced-rest-client/arc-types": "^0.2.47",
- "@advanced-rest-client/clipboard-copy": "^3.0.1",
+ "@advanced-rest-client/arc-icons": "^3.3.2",
+ "@advanced-rest-client/arc-types": "^0.2.50",
+ "@advanced-rest-client/clipboard-copy": "^3.1.0",
"@advanced-rest-client/json-table": "^3.2.0",
- "@advanced-rest-client/prism-highlight": "^4.0.2",
- "@anypoint-web-components/anypoint-button": "^1.0.15",
- "@api-components/amf-helper-mixin": "^4.3.3",
- "@api-components/api-example-generator": "^4.4.6",
- "@polymer/prism-element": "^3.0.0",
+ "@advanced-rest-client/prism-highlight": "^4.0.4",
+ "@anypoint-web-components/anypoint-button": "^1.2.0",
+ "@api-components/amf-helper-mixin": "^4.3.6",
+ "@api-components/api-example-generator": "^4.4.8",
"lit-element": "^2.4.0"
},
"devDependencies": {
- "@advanced-rest-client/arc-demo-helper": "^2.2.5",
+ "@advanced-rest-client/arc-demo-helper": "^2.2.6",
"@api-components/api-model-generator": "^0.2.9",
- "@api-components/api-navigation": "^4.2.4",
- "@commitlint/cli": "^11.0.0",
- "@commitlint/config-conventional": "^11.0.0",
+ "@api-components/api-navigation": "^4.2.7",
+ "@commitlint/cli": "^12.0.1",
+ "@commitlint/config-conventional": "^12.0.1",
"@open-wc/eslint-config": "^4.2.0",
"@open-wc/testing": "^2.5.15",
- "@web/dev-server": "^0.1.3",
- "@web/test-runner": "^0.12.1",
- "@web/test-runner-playwright": "^0.8.0",
- "eslint": "^7.16.0",
- "eslint-config-prettier": "^7.1.0",
- "husky": "^4.3.7",
- "lint-staged": "^10.5.3",
- "sinon": "^9.2.3",
- "typescript": "^4.1.3",
+ "@web/dev-server": "^0.1.10",
+ "@web/test-runner": "^0.12.17",
+ "@web/test-runner-playwright": "^0.8.4",
+ "eslint": "^7.22.0",
+ "eslint-config-prettier": "^8.1.0",
+ "husky": "^4.3.8",
+ "lint-staged": "^10.5.4",
+ "sinon": "^9.2.4",
+ "typescript": "^4.2.3",
"typescript-lit-html-plugin": "^0.9.0"
},
"scripts": {
diff --git a/polymer.json b/polymer.json
deleted file mode 100644
index 6111e49..0000000
--- a/polymer.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "npm": true,
- "lint": {
- "rules": [
- "polymer-3"
- ]
- }
-}
diff --git a/src/ApiExampleRender.d.ts b/src/ApiExampleRender.d.ts
index 00f30d4..15a1db4 100644
--- a/src/ApiExampleRender.d.ts
+++ b/src/ApiExampleRender.d.ts
@@ -4,20 +4,6 @@ import '@advanced-rest-client/json-table/json-table.js';
import '@anypoint-web-components/anypoint-button/anypoint-button.js';
import { Example } from '@advanced-rest-client/arc-types/src/forms/FormTypes';
-/**
- * Transforms input into a content to be rendered in the code view.
- */
-declare interface SafeHtmlUtils {
- AMP_RE: RegExp;
- GT_RE: RegExp;
- LT_RE: RegExp;
- SQUOT_RE: RegExp;
- QUOT_RE: RegExp;
- htmlEscape(s: any): string;
-}
-
-export declare const SafeHtmlUtils: SafeHtmlUtils;
-
/**
* `api-example-render`
*
@@ -99,6 +85,9 @@ export class ApiExampleRender extends LitElement {
*/
compatibility: boolean;
+ _codeValue: string;
+ _langValue: string;
+
constructor();
/**
@@ -118,14 +107,6 @@ export class ApiExampleRender extends LitElement {
_renderCode(): void;
- /**
- * Dispatches `syntax-highlight` custom event
- * @param code Code to highlight
- * @param type Mime type of the code
- * @returns Highlighted code.
- */
- highlight(code: string, type: string): string;
-
/**
* Copies the current response text value to clipboard.
*
@@ -155,10 +136,8 @@ export class ApiExampleRender extends LitElement {
_renderUnion(example: Example): TemplateResult|string;
-
_headerTemplate(example: Example): TemplateResult|string;
-
_renderExample(example: Example): TemplateResult;
render(): TemplateResult;
diff --git a/src/ApiExampleRender.js b/src/ApiExampleRender.js
index 8e17f75..3a49c56 100644
--- a/src/ApiExampleRender.js
+++ b/src/ApiExampleRender.js
@@ -1,46 +1,16 @@
/* eslint-disable no-plusplus */
/* eslint-disable class-methods-use-this */
/* eslint-disable no-param-reassign */
-import { LitElement, html, css } from 'lit-element';
+import { LitElement, html } from 'lit-element';
import '@advanced-rest-client/clipboard-copy/clipboard-copy.js';
import '@advanced-rest-client/json-table/json-table.js';
import '@anypoint-web-components/anypoint-button/anypoint-button.js';
-import styles from '@advanced-rest-client/prism-highlight/prism-styles.js';
+import '@advanced-rest-client/prism-highlight/prism-highlight.js';
+import elementStyles from './styles/Render.js';
/** @typedef {import('lit-element').TemplateResult} TemplateResult */
/** @typedef {import('@advanced-rest-client/arc-types').FormTypes.Example} Example */
-
-/**
- * Transforms input into a content to be rendered in the code view.
- */
-export const SafeHtmlUtils = {
- AMP_RE: new RegExp(/&/g),
- GT_RE: new RegExp(/>/g),
- LT_RE: new RegExp(/') !== -1) {
- s = s.replace(SafeHtmlUtils.GT_RE, '>');
- }
- if (s.indexOf('"') !== -1) {
- s = s.replace(SafeHtmlUtils.QUOT_RE, '"');
- }
- if (s.indexOf("'") !== -1) {
- s = s.replace(SafeHtmlUtils.SQUOT_RE, ''');
- }
- return s;
- }
-};
+/** @typedef {import('@advanced-rest-client/clipboard-copy').ClipboardCopyElement} ClipboardCopyElement */
/**
* `api-example-render`
@@ -72,86 +42,7 @@ export const SafeHtmlUtils = {
*/
export class ApiExampleRender extends LitElement {
get styles() {
- return [
- styles,
- css`
- :host {
- display: block;
- background-color: inherit;
- }
-
- .code-wrapper {
- padding: 0px;
- }
-
- #output {
- white-space: pre-wrap;
- word-wrap: var(--code-block-word-wrap, break-word);
- word-break: var(--code-block-word-break, break-all);
- font-family: var(--arc-font-code-family);
- }
-
- [hidden] {
- display: none !important;
- }
-
- .union-toggle {
- outline: none;
- background-color: var(--api-type-document-union-button-background-color, transparent);
- color: var(--api-type-document-union-button-color, #000);
- border-width: 1px;
- border-color: var(--api-body-document-media-button-border-color, #a3b11d);
- border-style: solid;
- }
-
- .union-toggle[activated] {
- background-color: var(--api-type-document-union-button-active-background-color, #CDDC39);
- color: var(--api-type-document-union-button-active-color, #000);
- }
-
- .action-button[active] {
- background-color: var(--api-resource-example-document-button-active-background-color, #CDDC39);
- color: var(--api-resource-example-document-button-active-color, currentColor);
- }
-
- .union-toggle[focused],
- .action-button[active][focused] {
- outline: auto;
- }
-
- .union-type-selector {
- margin: 0px 8px 12px 0px;
- }
-
- .code-wrapper.scalar {
- padding-top: 1px;
- }
-
- .example-actions {
- display: flex;
- align-items: center;
- flex-direction: row;
- justify-content: flex-end;
- flex-wrap: wrap;
- flex: 1;
- }
-
- anypoint-button {
- margin-bottom: 8px;
- height: 28px;
- }
-
- api-example-render {
- background-color: inherit;
- }
-
- json-table,
- api-example-render {
- overflow: auto;
- max-width: 100%;
- }
- `
- ];
+ return elementStyles;
}
static get properties() {
@@ -233,7 +124,7 @@ export class ApiExampleRender extends LitElement {
}
this._mediaType = value;
this.requestUpdate('mediaType', old);
- this._dataChanged(this._example);
+ this._dataChanged();
}
get example() {
@@ -250,7 +141,7 @@ export class ApiExampleRender extends LitElement {
}
this._example = value;
this.requestUpdate('example', old);
- this._dataChanged(value);
+ this._dataChanged();
this.selectedUnion = 0;
}
@@ -268,7 +159,7 @@ export class ApiExampleRender extends LitElement {
}
this._sourceOpened = value;
this.requestUpdate('sourceOpened', old);
- this._dataChanged(this._example);
+ this._dataChanged();
}
constructor() {
@@ -316,11 +207,8 @@ export class ApiExampleRender extends LitElement {
return String(raw) !== String(value);
}
- /**
- * @param {Example} example
- */
- _dataChanged(example) {
- if (this.__changeDebouncer || !example) {
+ _dataChanged() {
+ if (this.__changeDebouncer) {
return;
}
this.__changeDebouncer = true;
@@ -332,57 +220,38 @@ export class ApiExampleRender extends LitElement {
_renderCode() {
const { example } = this;
+ this._langValue = undefined;
+ this._codeValue = undefined;
if (!example || (!example.value && example.values)) {
return;
}
- const output = /** @type HTMLOutputElement */ (this.shadowRoot.querySelector('#output'));
- if (!output) {
- setTimeout(() => this._renderCode());
- return;
- }
if (this.sourceOpened) {
- output.innerHTML = this.highlight(String(example.raw), 'yaml');
+ this._codeValue = String(example.raw);
+ this._langValue = 'yaml';
} else {
const value = String(example.value);
- // @ts-ignore
- if (value || value === false || value === 0) {
- output.innerHTML = this.highlight(value, this.mediaType);
+ if (value.length > 10000) {
+ // examples that are huge causes browser to choke or hang.
+ // This just sanitizes the schema and renders unprocessed data.
+ this._codeValue = value;
+ // @ts-ignore
+ } else if (value || value === false || value === 0) {
+ let lang;
+ const type = this.mediaType;
+ if (type) {
+ if (type.indexOf('json') !== -1) {
+ lang = 'json';
+ } else if (type.indexOf('xml') !== -1) {
+ lang = 'xml';
+ }
+ }
+ this._codeValue = value
+ this._langValue = lang || this.mediaType;
} else {
- output.innerText = '(no value in example)';
+ this._codeValue = '(no value in example)';
}
}
- }
-
- /**
- * Dispatches `syntax-highlight` custom event
- * @param {string} code Code to highlight
- * @param {string} type Mime type of the code
- * @return {string} Highlighted code.
- */
- highlight(code, type) {
- if (code.length > 10000) {
- // examples that are huge causes browser to choke or hang.
- // This just sanitizes the schema and renders unprocessed data.
- return SafeHtmlUtils.htmlEscape(code);
- }
- let lang;
- if (type) {
- if (type.indexOf('json') !== -1) {
- lang = 'json';
- } else if (type.indexOf('xml') !== -1) {
- lang = 'xml';
- }
- }
- const ev = new CustomEvent('syntax-highlight', {
- bubbles: true,
- composed: true,
- detail: {
- code,
- lang
- }
- });
- this.dispatchEvent(ev);
- return ev.detail.code;
+ this.requestUpdate();
}
/**
@@ -392,7 +261,7 @@ export class ApiExampleRender extends LitElement {
*/
_copyToClipboard(e) {
const button = /** @type HTMLButtonElement */ (e.target);
- const copy = this.shadowRoot.querySelector('clipboard-copy');
+ const copy = /** @type ClipboardCopyElement */ (this.shadowRoot.querySelector('clipboard-copy'));
if (copy.copy()) {
button.innerText = 'Done';
} else {
@@ -587,7 +456,7 @@ export class ApiExampleRender extends LitElement {
${this._headerTemplate(example)}
${renderJsonTable ? html``: ''}
`;
}
@@ -599,7 +468,7 @@ export class ApiExampleRender extends LitElement {
const isUnion = !!(example && example.hasUnion);
return html`
${isUnion ? this._renderUnion(example) : this._renderExample(example)}
-
+
`;
}
}
diff --git a/src/ApiResourceExampleDocument.d.ts b/src/ApiResourceExampleDocument.d.ts
index 2f0d558..34d4cf0 100644
--- a/src/ApiResourceExampleDocument.d.ts
+++ b/src/ApiResourceExampleDocument.d.ts
@@ -1,6 +1,5 @@
import { LitElement, TemplateResult, CSSResult } from 'lit-element';
import { AmfHelperMixin } from '@api-components/amf-helper-mixin/amf-helper-mixin.js';
-import '@polymer/prism-element/prism-highlighter.js';
import '@advanced-rest-client/arc-icons/arc-icon.js';
import '../api-example-render.js';
import { Example } from '@advanced-rest-client/arc-types/src/forms/FormTypes';
diff --git a/src/ApiResourceExampleDocument.js b/src/ApiResourceExampleDocument.js
index fd96b45..c754c5c 100644
--- a/src/ApiResourceExampleDocument.js
+++ b/src/ApiResourceExampleDocument.js
@@ -1,11 +1,11 @@
/* eslint-disable no-plusplus */
/* eslint-disable class-methods-use-this */
-import { LitElement, html, css } from 'lit-element';
+import { LitElement, html } from 'lit-element';
import { AmfHelperMixin } from '@api-components/amf-helper-mixin/amf-helper-mixin.js';
import { ExampleGenerator } from '@api-components/api-example-generator';
-import '@polymer/prism-element/prism-highlighter.js';
import '@advanced-rest-client/arc-icons/arc-icon.js';
import '../api-example-render.js';
+import elementStyles from './styles/Document.js';
/** @typedef {import('lit-element').TemplateResult} TemplateResult */
/** @typedef {import('@advanced-rest-client/arc-types').FormTypes.Example} Example */
@@ -34,52 +34,7 @@ import '../api-example-render.js';
*/
export class ApiResourceExampleDocument extends AmfHelperMixin(LitElement) {
get styles() {
- return css`
- :host {
- display: block;
- }
-
- .example:not(:last-of-type) {
- margin-bottom: 24px;
- }
-
- .item-container {
- border-left: 3px var(--api-example-accent-color, #FF9800) solid;
- border-radius: 2px;
- background-color: var(--api-example-background-color, var(--code-background-color, #f5f7f9));
- margin: 20px 0;
- }
-
- .example-title {
- font-weight: var(--arc-font-body1-font-weight);
- line-height: var(--arc-font-body1-line-height);
- font-size: 1rem;
- display: block;
- padding: 8px 12px;
- background-color: var(--api-example-title-background-color, #ff9800);
- color: var(--api-example-title-color, #000);
- border-top-right-radius: 2px;
- border-top-left-radius: 2px;
- }
-
- .renderer {
- padding: 8px 0;
- display: flex;
- }
-
- .info-icon {
- margin: 0 12px;
- fill: var(--api-example-accent-color, #FF9800);
- width: 24px;
- height: 24px;
- }
-
- api-example-render {
- flex: 1;
- background-color: inherit;
- overflow: auto;
- max-width: 100%;
- }`;
+ return elementStyles;
}
static get properties() {
@@ -639,7 +594,6 @@ export class ApiResourceExampleDocument extends AmfHelperMixin(LitElement) {
render() {
const examples = (this.renderedExamples || []);
return html`
-
${examples.length ? this._examplesTemplate(examples) : ''}`;
}
}
diff --git a/src/styles/Document.js b/src/styles/Document.js
new file mode 100644
index 0000000..deb4b15
--- /dev/null
+++ b/src/styles/Document.js
@@ -0,0 +1,49 @@
+import { css } from 'lit-element';
+
+export default css`
+:host {
+ display: block;
+}
+
+.example:not(:last-of-type) {
+ margin-bottom: 24px;
+}
+
+.item-container {
+ border-left: 3px var(--api-example-accent-color, #FF9800) solid;
+ border-radius: 2px;
+ background-color: var(--api-example-background-color, var(--code-background-color, #f5f7f9));
+ margin: 20px 0;
+}
+
+.example-title {
+ font-weight: var(--arc-font-body1-font-weight);
+ line-height: var(--arc-font-body1-line-height);
+ font-size: 1rem;
+ display: block;
+ padding: 8px 12px;
+ background-color: var(--api-example-title-background-color, #ff9800);
+ color: var(--api-example-title-color, #000);
+ border-top-right-radius: 2px;
+ border-top-left-radius: 2px;
+}
+
+.renderer {
+ padding: 8px 0;
+ display: flex;
+}
+
+.info-icon {
+ margin: 0 12px;
+ fill: var(--api-example-accent-color, #FF9800);
+ width: 24px;
+ height: 24px;
+}
+
+api-example-render {
+ flex: 1;
+ background-color: inherit;
+ overflow: auto;
+ max-width: 100%;
+}
+`;
diff --git a/src/styles/Render.js b/src/styles/Render.js
new file mode 100644
index 0000000..4d8f2db
--- /dev/null
+++ b/src/styles/Render.js
@@ -0,0 +1,72 @@
+import { css } from 'lit-element';
+
+export default css`
+:host {
+ display: block;
+ background-color: inherit;
+}
+
+.code-wrapper {
+ padding: 0px;
+}
+
+[hidden] {
+ display: none !important;
+}
+
+.union-toggle {
+ outline: none;
+ background-color: var(--api-type-document-union-button-background-color, transparent);
+ color: var(--api-type-document-union-button-color, #000);
+ border-width: 1px;
+ border-color: var(--api-body-document-media-button-border-color, #a3b11d);
+ border-style: solid;
+}
+
+.union-toggle[activated] {
+ background-color: var(--api-type-document-union-button-active-background-color, #CDDC39);
+ color: var(--api-type-document-union-button-active-color, #000);
+}
+
+.action-button[active] {
+ background-color: var(--api-resource-example-document-button-active-background-color, #CDDC39);
+ color: var(--api-resource-example-document-button-active-color, currentColor);
+}
+
+.union-toggle[focused],
+.action-button[active][focused] {
+ outline: auto;
+}
+
+.union-type-selector {
+ margin: 0px 8px 12px 0px;
+}
+
+.code-wrapper.scalar {
+ padding-top: 1px;
+}
+
+.example-actions {
+ display: flex;
+ align-items: center;
+ flex-direction: row;
+ justify-content: flex-end;
+ flex-wrap: wrap;
+ flex: 1;
+}
+
+anypoint-button {
+ margin-bottom: 8px;
+ height: 28px;
+}
+
+api-example-render {
+ background-color: inherit;
+}
+
+json-table,
+api-example-render {
+ overflow: auto;
+ max-width: 100%;
+}
+`;
diff --git a/test/api-example-render.test.js b/test/api-example-render.test.js
index adacd3c..4d6fa86 100644
--- a/test/api-example-render.test.js
+++ b/test/api-example-render.test.js
@@ -1,9 +1,8 @@
-import { fixture, assert, nextFrame, aTimeout, html } from '@open-wc/testing';
+import { fixture, assert, nextFrame, html, aTimeout } from '@open-wc/testing';
import sinon from 'sinon';
-import '@polymer/prism-element/prism-highlighter.js';
-import { SafeHtmlUtils } from '../src/ApiExampleRender.js';
import '../api-example-render.js';
+/** @typedef {import('@advanced-rest-client/clipboard-copy').ClipboardCopyElement} ClipboardCopyElement */
/** @typedef {import('..').ApiExampleRender} ApiExampleRender */
const highlighter = document.createElement('prism-highlighter');
@@ -21,7 +20,7 @@ describe('ApiExampleRender', () => {
* @returns {Promise}
*/
async function jsonFixture() {
- return (fixture(html``));
+ return (fixture(html``));
}
/**
@@ -29,37 +28,9 @@ describe('ApiExampleRender', () => {
*/
async function noActionsFixture() {
return (fixture(html`
- `));
+ `));
}
- describe('Basics', () => {
- let element = /** @type ApiExampleRender */ (null);
- beforeEach(async () => {
- element = await jsonFixture();
- element.example = {
- value: '',
- hasRaw: false,
- hasTitle: false,
- hasUnion: false,
- isScalar: false,
- };
- await nextFrame();
- });
-
- it('Calls highlight() when code change', async () => {
- const spy = sinon.spy(element, 'highlight');
- element.example = {
- value: 'test',
- hasRaw: false,
- hasTitle: false,
- hasUnion: false,
- isScalar: false,
- };
- await aTimeout(10);
- assert.isTrue(spy.called);
- });
- });
-
describe('View rendering', () => {
let element = /** @type ApiExampleRender */ (null);
@@ -122,54 +93,56 @@ describe('ApiExampleRender', () => {
});
});
- describe('highlight()', () => {
+ describe('_renderCode()', () => {
let element = /** @type ApiExampleRender */ (null);
+ const baseExample = {
+ hasUnion: false,
+ hasRaw: false,
+ hasTitle: false,
+ isScalar: false,
+ value: '{"test": true}',
+ };
beforeEach(async () => {
element = await basicFixture();
});
- it('Dispatches syntax-highlight event', () => {
- const spy = sinon.spy();
- element.addEventListener('syntax-highlight', spy);
- element.highlight('{}', 'application/json');
- assert.isTrue(spy.called);
- });
-
- it('Event has "code" property', () => {
- const spy = sinon.spy();
- element.addEventListener('syntax-highlight', spy);
- element.highlight('{}', 'application/json');
- const e = spy.args[0][0];
- assert.typeOf(e.detail.code, 'string');
- });
+ function getString(size=10001) {
+ let result = '&"\'';
+ for (let i = 0; i < size; i++) {
+ result += 'a';
+ }
+ result += '';
+ return result;
+ }
- it('Event has "lang" property set to json', () => {
- const spy = sinon.spy();
- element.addEventListener('syntax-highlight', spy);
- element.highlight('{}', 'application/json');
- const e = spy.args[0][0];
- assert.equal(e.detail.lang, 'json');
+ it('sets the _codeValue property', async () => {
+ element.example = { ...baseExample };
+ await aTimeout(0);
+ assert.equal(element._codeValue, baseExample.value);
});
- it('Event has "lang" property set to xml', () => {
- const spy = sinon.spy();
- element.addEventListener('syntax-highlight', spy);
- element.highlight('{}', 'application/xml');
- const e = spy.args[0][0];
- assert.equal(e.detail.lang, 'xml');
+ it('sets the _langValue property to json', async () => {
+ element.example = { ...baseExample };
+ element.mediaType = 'application/json';
+ await aTimeout(0);
+ assert.equal(element._langValue, 'json');
});
- it('Event has no "lang" property', () => {
- const spy = sinon.spy();
- element.addEventListener('syntax-highlight', spy);
- element.highlight('{}', 'application/other');
- const e = spy.args[0][0];
- assert.isUndefined(e.detail.lang);
+ it('sets the _langValue property to xml', async () => {
+ element.example = { ...baseExample };
+ element.example.value = '';
+ element.mediaType = 'application/xml';
+ await aTimeout(0);
+ assert.equal(element._langValue, 'xml');
});
- it('Returns parsed code', () => {
- const result = element.highlight('{}', 'application/json');
- assert.equal(result, '{}');
+ it('does not set the lang property for a huge example', async () => {
+ element.example = { ...baseExample };
+ element.example.value = getString();
+ element.mediaType = 'application/xml';
+ await aTimeout(0);
+ const out = element.shadowRoot.querySelector('prism-highlight');
+ assert.isUndefined(out.lang);
});
});
@@ -313,7 +286,7 @@ describe('ApiExampleRender', () => {
isScalar: false,
};
await nextFrame();
- const copy = element.shadowRoot.querySelector('clipboard-copy');
+ const copy = /** @type ClipboardCopyElement */ (element.shadowRoot.querySelector('clipboard-copy'));
const spy = sinon.spy(copy, 'copy');
const button = element.shadowRoot.querySelector('[data-action="copy"]');
/** @type HTMLElement */ (button).click();
@@ -694,76 +667,6 @@ describe('ApiExampleRender', () => {
});
});
- describe('SafeHtmlUtils', () => {
- describe('htmlEscape()', () => {
- it('returns the same input when no string', () => {
- const result = SafeHtmlUtils.htmlEscape(22);
- // @ts-ignore
- assert.equal(result, 22);
- });
-
- it('replaces "&" characters', () => {
- const result = SafeHtmlUtils.htmlEscape('&a&');
- assert.equal(result, '&a&');
- });
-
- it('replaces "<" characters', () => {
- const result = SafeHtmlUtils.htmlEscape('" characters', () => {
- const result = SafeHtmlUtils.htmlEscape('>a>');
- assert.equal(result, '>a>');
- });
-
- it('replaces quote characters', () => {
- const result = SafeHtmlUtils.htmlEscape('"a"');
- assert.equal(result, '"a"');
- });
-
- it('replaces single quote characters', () => {
- const result = SafeHtmlUtils.htmlEscape("'a'");
- assert.equal(result, ''a'');
- });
- });
- });
-
- describe('Huge example rendering', () => {
- let element = /** @type ApiExampleRender */ (null);
- let out;
- beforeEach(async () => {
- element = await basicFixture();
- await nextFrame();
- });
-
- function getString(size=10001) {
- let result = '&"\'';
- for (let i = 0; i < size; i++) {
- result += 'a';
- }
- result += '';
- return result;
- }
-
- it('renders sanitized code', async () => {
- element.example = {
- value: getString(),
- hasTitle: true,
- hasRaw: false,
- title: 'test',
- hasUnion: false,
- isScalar: false,
- };
- await nextFrame();
- out = element.shadowRoot.querySelector('#output');
- const result = out.innerHTML;
- // even though the " and ' characters are replaced when reading them back
- // from the output element they are converted to " and '
- assert.equal(result.substr(0, 20), '<element>&');
- });
- });
-
describe('a11y', () => {
let element = /** @type ApiExampleRender */ (null);
beforeEach(async () => {