diff --git a/extension/package.json b/extension/package.json index bad3227f9d..cd4f53be33 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1646,7 +1646,6 @@ "lodash.isequal": "4.5.0", "lodash.merge": "4.6.2", "lodash.omit": "4.5.0", - "node-fetch": "2.6.9", "process-exists": "5.0.0", "tree-kill": "1.2.2", "uuid": "9.0.0", @@ -1654,7 +1653,7 @@ "vscode-languageclient": "8.1.0" }, "devDependencies": { - "@swc/core": "1.3.56", + "@swc/core": "1.3.58", "@swc/jest": "0.2.26", "@types/chai": "4.3.5", "@types/chai-as-promised": "7.1.5", diff --git a/extension/src/test/fixtures/expShow/base/workspaceChanges.ts b/extension/src/test/fixtures/expShow/base/workspaceChanges.ts index 27842a3abe..7b8ec75c90 100644 --- a/extension/src/test/fixtures/expShow/base/workspaceChanges.ts +++ b/extension/src/test/fixtures/expShow/base/workspaceChanges.ts @@ -1,5 +1,3 @@ -import { buildDepPath } from '../../../../experiments/columns/paths' - const data = [ 'metrics:summary.json:accuracy', 'metrics:summary.json:loss', diff --git a/extension/src/test/fixtures/expShow/dataTypes/rows.ts b/extension/src/test/fixtures/expShow/dataTypes/rows.ts index b8b10413e2..75d1b4a9e2 100644 --- a/extension/src/test/fixtures/expShow/dataTypes/rows.ts +++ b/extension/src/test/fixtures/expShow/dataTypes/rows.ts @@ -1,7 +1,4 @@ -import { - ExperimentStatus, - EXPERIMENT_WORKSPACE_ID -} from '../../../../cli/dvc/contract' +import { EXPERIMENT_WORKSPACE_ID } from '../../../../cli/dvc/contract' import { Commit } from '../../../../experiments/webview/contract' const data: Commit[] = [ diff --git a/extension/src/test/fixtures/expShow/dataTypes/tableData.ts b/extension/src/test/fixtures/expShow/dataTypes/tableData.ts index 701dd54c9e..0584cab3ea 100644 --- a/extension/src/test/fixtures/expShow/dataTypes/tableData.ts +++ b/extension/src/test/fixtures/expShow/dataTypes/tableData.ts @@ -1,26 +1,15 @@ import columns from './columns' +import defaultData from '../base/tableData' import rows from './rows' import { TableData } from '../../../../experiments/webview/contract' export const data: TableData = { - changes: [], - columnOrder: [], + ...defaultData, columns, - columnWidths: {}, - filteredCount: 0, - filters: [], - hasBranchesToSelect: true, hasCheckpoints: false, - hasColumns: true, - hasConfig: true, - hasMoreCommits: true, hasRunningWorkspaceExperiment: false, - hasValidDvcYaml: true, - isShowingMoreCommits: true, - isBranchesView: false, rows, - selectedForPlotsCount: 0, - sorts: [] + selectedForPlotsCount: 0 } export default data diff --git a/extension/src/test/fixtures/expShow/deeplyNested/tableData.ts b/extension/src/test/fixtures/expShow/deeplyNested/tableData.ts index f5e4b0c9ac..c89ba4f8c5 100644 --- a/extension/src/test/fixtures/expShow/deeplyNested/tableData.ts +++ b/extension/src/test/fixtures/expShow/deeplyNested/tableData.ts @@ -1,26 +1,17 @@ import columns from './columns' import rows from './rows' +import defaultData from '../base/tableData' import { TableData } from '../../../../experiments/webview/contract' const data: TableData = { - changes: [], - columnOrder: [], + ...defaultData, columns, - columnWidths: {}, - filteredCount: 0, filters: [ 'params:params.yaml:nested1.doubled', 'params:params.yaml:nested1%2Enested2%2Enested3.nested4.nested5b.doubled' ], - hasBranchesToSelect: true, hasCheckpoints: false, - hasColumns: true, - hasConfig: true, - hasMoreCommits: true, hasRunningWorkspaceExperiment: false, - hasValidDvcYaml: true, - isBranchesView: false, - isShowingMoreCommits: true, rows, selectedForPlotsCount: 0, sorts: [ diff --git a/extension/src/test/fixtures/expShow/survival/tableData.ts b/extension/src/test/fixtures/expShow/survival/tableData.ts index dbc9433924..a2aa859be8 100644 --- a/extension/src/test/fixtures/expShow/survival/tableData.ts +++ b/extension/src/test/fixtures/expShow/survival/tableData.ts @@ -1,26 +1,12 @@ import { TableData } from '../../../../experiments/webview/contract' import rowsFixture from './rows' import columnsFixture from './columns' +import defaultData from '../base/tableData' const data: TableData = { - changes: [], - columnOrder: [], + ...defaultData, columns: columnsFixture, - columnWidths: {}, - filteredCount: 0, - filters: [], - hasBranchesToSelect: true, - hasCheckpoints: true, - hasColumns: true, - hasConfig: true, - hasMoreCommits: true, - hasRunningWorkspaceExperiment: true, - hasValidDvcYaml: true, - isBranchesView: false, - isShowingMoreCommits: true, - rows: rowsFixture, - selectedForPlotsCount: 0, - sorts: [] + rows: rowsFixture } export default data diff --git a/extension/src/test/suite/experiments/model/filterBy/tree.test.ts b/extension/src/test/suite/experiments/model/filterBy/tree.test.ts index 47e0cc0782..7c6f18aa86 100644 --- a/extension/src/test/suite/experiments/model/filterBy/tree.test.ts +++ b/extension/src/test/suite/experiments/model/filterBy/tree.test.ts @@ -102,18 +102,9 @@ suite('Experiments Filter By Tree Test Suite', () => { const filteredTableData: Partial = { changes: workspaceChangesFixture, - columnOrder: columnsOrderFixture, - columnWidths: {}, - columns: columnsFixture, filteredCount: 1, filters: [accuracyPath], - hasCheckpoints: true, - hasColumns: true, - hasConfig: true, - hasRunningWorkspaceExperiment: true, - hasValidDvcYaml: true, - rows: filteredRows, - sorts: [] + rows: filteredRows } expect(messageSpy).to.be.calledWithMatch(filteredTableData) @@ -135,18 +126,10 @@ suite('Experiments Filter By Tree Test Suite', () => { const unfilteredTableData: Partial = { changes: workspaceChangesFixture, - columnOrder: columnsOrderFixture, - columnWidths: {}, columns: columnsFixture, filteredCount: 0, filters: [], - hasCheckpoints: true, - hasColumns: true, - hasConfig: true, - hasRunningWorkspaceExperiment: true, - hasValidDvcYaml: true, - rows: [workspace, main], - sorts: [] + rows: [workspace, main] } expect(messageSpy).to.be.calledWithMatch(unfilteredTableData) @@ -379,17 +362,10 @@ suite('Experiments Filter By Tree Test Suite', () => { const filteredTableData: Partial = { changes: workspaceChangesFixture, columnOrder: columnsOrderFixture, - columnWidths: {}, columns: columnsFixture, filteredCount: 6, filters: ['starred'], - hasCheckpoints: true, - hasColumns: true, - hasConfig: true, - hasRunningWorkspaceExperiment: true, - hasValidDvcYaml: true, - rows: filteredRows, - sorts: [] + rows: filteredRows } expect(messageSpy).to.be.calledWithMatch(filteredTableData) diff --git a/languageServer/package.json b/languageServer/package.json index f5f16871bf..8c446048c6 100644 --- a/languageServer/package.json +++ b/languageServer/package.json @@ -25,7 +25,7 @@ "test": "jest --collect-coverage" }, "devDependencies": { - "@swc/core": "1.3.56", + "@swc/core": "1.3.58", "@swc/jest": "0.2.26", "@types/jest": "29.5.1", "clean-webpack-plugin": "4.0.0", diff --git a/package.json b/package.json index 88e7ea3872..ed0cf7dbf4 100644 --- a/package.json +++ b/package.json @@ -34,8 +34,8 @@ "svgr": "yarn workspace dvc-vscode-webview svgr" }, "devDependencies": { - "@typescript-eslint/eslint-plugin": "5.59.2", - "@typescript-eslint/parser": "5.59.2", + "@typescript-eslint/eslint-plugin": "5.59.5", + "@typescript-eslint/parser": "5.59.5", "@vscode/codicons": "0.0.33", "eslint": "8.40.0", "eslint-config-prettier": "8.8.0", diff --git a/webview/package.json b/webview/package.json index f19d27c107..15016e4c9b 100644 --- a/webview/package.json +++ b/webview/package.json @@ -51,7 +51,7 @@ "@svgr/core": "^8.0.0", "@svgr/plugin-jsx": "^8.0.1", "@svgr/plugin-prettier": "^8.0.1", - "@swc/core": "1.3.56", + "@swc/core": "1.3.58", "@swc/jest": "0.2.26", "@testing-library/jest-dom": "5.16.5", "@testing-library/react": "14.0.0", diff --git a/webview/src/test/sort.ts b/webview/src/test/sort.ts index 4ff436d123..61410e4c91 100644 --- a/webview/src/test/sort.ts +++ b/webview/src/test/sort.ts @@ -5,6 +5,7 @@ import { ColumnType, TableData } from 'dvc/src/experiments/webview/contract' +import defaultTableData from 'dvc/src/test/fixtures/expShow/base/tableData' const defaultColumn = ['Experiment', 'Created'] @@ -40,21 +41,9 @@ const columns = [ ] export const tableData: TableData = { - changes: [], - columnOrder: [], - columnWidths: {}, + ...defaultTableData, columns: columns as Column[], - filteredCount: 0, - filters: [], - hasBranchesToSelect: true, - hasCheckpoints: false, - hasColumns: true, - hasConfig: true, - hasMoreCommits: true, hasRunningWorkspaceExperiment: false, - hasValidDvcYaml: true, - isBranchesView: false, - isShowingMoreCommits: true, rows: [ { branch: 'current', @@ -67,8 +56,7 @@ export const tableData: TableData = { label: 'main' } ], - selectedForPlotsCount: 0, - sorts: [] + selectedForPlotsCount: 0 } export const getHeaders = async () => { diff --git a/yarn.lock b/yarn.lock index 2d5718ae09..b5bcf6893f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4654,71 +4654,71 @@ deepmerge "^4.3.1" prettier "^2.8.7" -"@swc/core-darwin-arm64@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.56.tgz#a846f7fdbc274aa7d299568031dde025d44a3b4c" - integrity sha512-DZcu7BzDaLEdWHabz9DRTP0yEBLqkrWmskFcD5BX0lGAvoIvE4duMnAqi5F2B3X7630QioHRCYFoRw2WkeE3Cw== - -"@swc/core-darwin-x64@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.3.56.tgz#793865f14f07f5eff6a6e6764aa6c766983fa007" - integrity sha512-VH5saqYFasdRXJy6RAT+MXm0+IjkMZvOkohJwUei+oA65cKJofQwrJ1jZro8yOJFYvUSI3jgNRGsdBkmo/4hMw== - -"@swc/core-linux-arm-gnueabihf@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.56.tgz#6942e9a4f6086da66d995c46c2ab2b0f7fa86a1d" - integrity sha512-LWwPo6NnJkH01+ukqvkoNIOpMdw+Zundm4vBeicwyVrkP+mC3kwVfi03TUFpQUz3kRKdw/QEnxGTj+MouCPbtw== - -"@swc/core-linux-arm64-gnu@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.56.tgz#21c3f8083c2d0a8028a07bf42cdd2a345e5108e9" - integrity sha512-GzsUy/4egJ4cMlxbM+Ub7AMi5CKAc+pxBxrh8MUPQbyStW8jGgnQsJouTnGy0LHawtdEnsCOl6PcO6OgvktXuQ== - -"@swc/core-linux-arm64-musl@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.56.tgz#87c9781f0814bca65074f357e5cfdcdd7fb09845" - integrity sha512-9gxL09BIiAv8zY0DjfnFf19bo8+P4T9tdhzPwcm+1yPJcY5yr1+YFWLNFzz01agtOj6VlZ2/wUJTaOfdjjtc+A== - -"@swc/core-linux-x64-gnu@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.56.tgz#55edae77d1c6a2b6230abbc79bccd175cb7c2208" - integrity sha512-n0ORNknl50vMRkll3BDO1E4WOqY6iISlPV1ZQCRLWQ6YQ2q8/WAryBxc2OAybcGHBUFkxyACpJukeU1QZ/9tNw== - -"@swc/core-linux-x64-musl@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.56.tgz#45bf5a6611350bcbe3bdd1eac6f5fcfe69502137" - integrity sha512-r+D34WLAOAlJtfw1gaVWpHRwCncU9nzW9i7w9kSw4HpWYnHJOz54jLGSEmNsrhdTCz1VK2ar+V2ktFUsrlGlDA== - -"@swc/core-win32-arm64-msvc@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.56.tgz#28853170b9e4f57a793d617aab75ef4b9c4b8a7f" - integrity sha512-29Yt75Is6X24z3x8h/xZC1HnDPkPpyLH9mDQiM6Cuc0I9mVr1XSriPEUB2N/awf5IE4SA8c+3IVq1DtKWbkJIw== - -"@swc/core-win32-ia32-msvc@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.56.tgz#dfa120fece0741c6ccc24885d4c155c9593a956e" - integrity sha512-mplp0zbYDrcHtfvkniXlXdB04e2qIjz2Gq/XHKr4Rnc6xVORJjjXF91IemXKpavx2oZYJws+LNJL7UFQ8jyCdQ== - -"@swc/core-win32-x64-msvc@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.56.tgz#23b601b9afcdc435e2e4d66767ac5fa6bb50d640" - integrity sha512-zp8MBnrw/bjdLenO/ifYzHrImSjKunqL0C2IF4LXYNRfcbYFh2NwobsVQMZ20IT0474lKRdlP8Oxdt+bHuXrzA== - -"@swc/core@1.3.56": - version "1.3.56" - resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.3.56.tgz#b12e98bc9ef39dc6092e71ea922f8073f7bec50f" - integrity sha512-yz/EeXT+PMZucUNrYceRUaTfuNS4IIu5EDZSOlvCEvm4jAmZi7CYH1B/kvzEzoAOzr7zkQiDPNJftcQXLkjbjA== +"@swc/core-darwin-arm64@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.58.tgz#0d87c46a0d18ded014a8b3c212cc3303f0f9f44a" + integrity sha512-NwX9768gcM4HjBEE+2VCMB+h/5bwNDF4DngOTJa9w02l3AwGZXWE66X4ulJQ3Oxv8EAz1nzWb8lbi3XT+WCtmQ== + +"@swc/core-darwin-x64@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.3.58.tgz#5c2a73e0e688e3e4d71477994b7aec92ce1ee8fe" + integrity sha512-XUdKXRIu8S7N5kmrtd0Nxf3uPIgZhQbgVHPhkvYH+Qwb+uXsdltKPiRwhvLI9M0yF3fvIrKtGJ8qUJdH5ih4zw== + +"@swc/core-linux-arm-gnueabihf@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.58.tgz#0c03afc6cf279562bd53a53e5191ed6608ae4779" + integrity sha512-9M3/5RzjCXnz94a1kxb+0eBzqyZkxzeYTMmvcjIJSy7MVvWNuy0wHuh+x96X/6197g40P9LkzAiZ7q0DvxSPQQ== + +"@swc/core-linux-arm64-gnu@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.58.tgz#79797b0ede57803781146ecaa1cf521b979de2e4" + integrity sha512-hRjJIJdnYUAZlUi9ACCrsfS/hSFP4MmZRaUVOlQOif578Rw4kQlxsxFd1Rh1bhzUCid0KyZOyCvRzHSD/2ONgw== + +"@swc/core-linux-arm64-musl@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.58.tgz#4de5e07f1a16c0bcd789bf080fe74c164b499ad0" + integrity sha512-3wrqZbRhbTKtxcQebMAMGKtyypL6BQU0OwqzAk4dBIgm9GaH45xu7sH2OekfHMp3vuj4uWuere+tYtr9HU7xcQ== + +"@swc/core-linux-x64-gnu@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.58.tgz#a924eecc77ef2035c6ff2d58e9631efd28b54027" + integrity sha512-yOI5ucB+8g+gtp4L2AydPBThobZ2I3WR/dU2T+x2DFIE5Qpe/fqt6HPTFb02qmvqvOw36TLT45pRwAe4cY5LAw== + +"@swc/core-linux-x64-musl@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.58.tgz#b5d04049d3b404035cc0a261754d95a938f10323" + integrity sha512-xPwxgPLxSWXsK9Yf792SsUmLKISdShAI9o/Kk6jjv0r7PRBS25hZ5FyOjAb/rMbAzDcmyGKHevKc3TMUPSMjwg== + +"@swc/core-win32-arm64-msvc@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.58.tgz#cb75b087b8a85eca6ef7a9fe22be8e13d91fcb1c" + integrity sha512-HW61trwkYGiaFprc+fJay6IKJ3scdquSdJaXsyumGF+jc/5kokQzNfY+JH6RWpk0/8zHnUWI4e+iNGuMYxYGeA== + +"@swc/core-win32-ia32-msvc@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.58.tgz#f2cc7a0b451dd283110a7b1f57d3f1675b9f045a" + integrity sha512-nODSJgHCY8GU6qHR9ieoxshaFD5GYGrPen/6VUvQkGwnV/yMI2Yvecgd1vLSUV4v67ZruPhIkP9OJruD+Juwhg== + +"@swc/core-win32-x64-msvc@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.58.tgz#5fb1c9a7b529fbb906868bb48a5545ed444b9ad9" + integrity sha512-If/uQ3MW6Pdtah2FHhfBY2xBdBXBJzOusXpFQAkwNbaxnrJgpqIIxpYphwsJMDQp6ooSS3U90YizW7mJNxb6UA== + +"@swc/core@1.3.58": + version "1.3.58" + resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.3.58.tgz#3371c6c660694124c2f1cc60ce6b99fd3df3f8c3" + integrity sha512-tSDcHXMBQIo2ohQ/0ryZnUA+0mBrVhe49+cR+QsFru+XEhCok1BLqdE6cZ2a+sgZ1I+Dmw8aTxYm8Ox64PSKPQ== optionalDependencies: - "@swc/core-darwin-arm64" "1.3.56" - "@swc/core-darwin-x64" "1.3.56" - "@swc/core-linux-arm-gnueabihf" "1.3.56" - "@swc/core-linux-arm64-gnu" "1.3.56" - "@swc/core-linux-arm64-musl" "1.3.56" - "@swc/core-linux-x64-gnu" "1.3.56" - "@swc/core-linux-x64-musl" "1.3.56" - "@swc/core-win32-arm64-msvc" "1.3.56" - "@swc/core-win32-ia32-msvc" "1.3.56" - "@swc/core-win32-x64-msvc" "1.3.56" + "@swc/core-darwin-arm64" "1.3.58" + "@swc/core-darwin-x64" "1.3.58" + "@swc/core-linux-arm-gnueabihf" "1.3.58" + "@swc/core-linux-arm64-gnu" "1.3.58" + "@swc/core-linux-arm64-musl" "1.3.58" + "@swc/core-linux-x64-gnu" "1.3.58" + "@swc/core-linux-x64-musl" "1.3.58" + "@swc/core-win32-arm64-msvc" "1.3.58" + "@swc/core-win32-ia32-msvc" "1.3.58" + "@swc/core-win32-x64-msvc" "1.3.58" "@swc/jest@0.2.26": version "0.2.26" @@ -5597,15 +5597,15 @@ dependencies: "@types/node" "*" -"@typescript-eslint/eslint-plugin@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz#684a2ce7182f3b4dac342eef7caa1c2bae476abd" - integrity sha512-yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A== +"@typescript-eslint/eslint-plugin@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz#f156827610a3f8cefc56baeaa93cd4a5f32966b4" + integrity sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg== dependencies: "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.59.2" - "@typescript-eslint/type-utils" "5.59.2" - "@typescript-eslint/utils" "5.59.2" + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/type-utils" "5.59.5" + "@typescript-eslint/utils" "5.59.5" debug "^4.3.4" grapheme-splitter "^1.0.4" ignore "^5.2.0" @@ -5620,14 +5620,14 @@ dependencies: "@typescript-eslint/utils" "5.25.0" -"@typescript-eslint/parser@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.2.tgz#c2c443247901d95865b9f77332d9eee7c55655e8" - integrity sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ== +"@typescript-eslint/parser@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.5.tgz#63064f5eafbdbfb5f9dfbf5c4503cdf949852981" + integrity sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw== dependencies: - "@typescript-eslint/scope-manager" "5.59.2" - "@typescript-eslint/types" "5.59.2" - "@typescript-eslint/typescript-estree" "5.59.2" + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/typescript-estree" "5.59.5" debug "^4.3.4" "@typescript-eslint/scope-manager@5.17.0": @@ -5654,21 +5654,21 @@ "@typescript-eslint/types" "5.59.0" "@typescript-eslint/visitor-keys" "5.59.0" -"@typescript-eslint/scope-manager@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz#f699fe936ee4e2c996d14f0fdd3a7da5ba7b9a4c" - integrity sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA== +"@typescript-eslint/scope-manager@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz#33ffc7e8663f42cfaac873de65ebf65d2bce674d" + integrity sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A== dependencies: - "@typescript-eslint/types" "5.59.2" - "@typescript-eslint/visitor-keys" "5.59.2" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/visitor-keys" "5.59.5" -"@typescript-eslint/type-utils@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz#0729c237503604cd9a7084b5af04c496c9a4cdcf" - integrity sha512-b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ== +"@typescript-eslint/type-utils@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz#485b0e2c5b923460bc2ea6b338c595343f06fc9b" + integrity sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg== dependencies: - "@typescript-eslint/typescript-estree" "5.59.2" - "@typescript-eslint/utils" "5.59.2" + "@typescript-eslint/typescript-estree" "5.59.5" + "@typescript-eslint/utils" "5.59.5" debug "^4.3.4" tsutils "^3.21.0" @@ -5687,10 +5687,10 @@ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.0.tgz#3fcdac7dbf923ec5251545acdd9f1d42d7c4fe32" integrity sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA== -"@typescript-eslint/types@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.2.tgz#b511d2b9847fe277c5cb002a2318bd329ef4f655" - integrity sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w== +"@typescript-eslint/types@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.5.tgz#e63c5952532306d97c6ea432cee0981f6d2258c7" + integrity sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w== "@typescript-eslint/typescript-estree@5.17.0": version "5.17.0" @@ -5731,13 +5731,13 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz#6e2fabd3ba01db5d69df44e0b654c0b051fe9936" - integrity sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q== +"@typescript-eslint/typescript-estree@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz#9b252ce55dd765e972a7a2f99233c439c5101e42" + integrity sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg== dependencies: - "@typescript-eslint/types" "5.59.2" - "@typescript-eslint/visitor-keys" "5.59.2" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/visitor-keys" "5.59.5" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" @@ -5756,17 +5756,17 @@ eslint-scope "^5.1.1" eslint-utils "^3.0.0" -"@typescript-eslint/utils@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.2.tgz#0c45178124d10cc986115885688db6abc37939f4" - integrity sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ== +"@typescript-eslint/utils@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.5.tgz#15b3eb619bb223302e60413adb0accd29c32bcae" + integrity sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@types/json-schema" "^7.0.9" "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.59.2" - "@typescript-eslint/types" "5.59.2" - "@typescript-eslint/typescript-estree" "5.59.2" + "@typescript-eslint/scope-manager" "5.59.5" + "@typescript-eslint/types" "5.59.5" + "@typescript-eslint/typescript-estree" "5.59.5" eslint-scope "^5.1.1" semver "^7.3.7" @@ -5820,12 +5820,12 @@ "@typescript-eslint/types" "5.59.0" eslint-visitor-keys "^3.3.0" -"@typescript-eslint/visitor-keys@5.59.2": - version "5.59.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz#37a419dc2723a3eacbf722512b86d6caf7d3b750" - integrity sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig== +"@typescript-eslint/visitor-keys@5.59.5": + version "5.59.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz#ba5b8d6791a13cf9fea6716af1e7626434b29b9b" + integrity sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA== dependencies: - "@typescript-eslint/types" "5.59.2" + "@typescript-eslint/types" "5.59.5" eslint-visitor-keys "^3.3.0" "@ungap/promise-all-settled@1.1.2": @@ -15321,7 +15321,7 @@ node-fetch@2.6.7, node-fetch@^2.6.7: dependencies: whatwg-url "^5.0.0" -node-fetch@2.6.9, node-fetch@^2.6.1: +node-fetch@^2.6.1: version "2.6.9" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==