diff --git a/.github/workflows/deploy-doc.yml b/.github/workflows/deploy-doc.yml index 336605419..3c4bddb65 100644 --- a/.github/workflows/deploy-doc.yml +++ b/.github/workflows/deploy-doc.yml @@ -44,7 +44,7 @@ jobs: cache: 'pnpm' - name: Setup Pages id: pages - uses: actions/configure-pages@v1 + uses: actions/configure-pages@v2 - name: Install dependencies run: pnpm install - name: Build doc diff --git a/package.json b/package.json index b101ef030..0b46e30de 100644 --- a/package.json +++ b/package.json @@ -71,14 +71,14 @@ "@babel/plugin-transform-runtime": "^7.18.10", "@babel/preset-env": "^7.18.10", "@babel/preset-typescript": "^7.18.6", - "@commitlint/cli": "^17.0.3", - "@commitlint/config-conventional": "^17.0.3", + "@commitlint/cli": "^17.1.2", + "@commitlint/config-conventional": "^17.1.0", "@jest/globals": "^28.1.3", "@rollup/plugin-babel": "^5.3.1", "@rollup/plugin-commonjs": "^22.0.2", "@rollup/plugin-inject": "^4.0.4", "@rollup/plugin-node-resolve": "^13.3.0", - "@scaleway/eslint-config-react": "^3.5.5", + "@scaleway/eslint-config-react": "^3.5.8", "@types/jest": "^28.1.7", "babel-plugin-annotate-pure-calls": "^0.4.0", "cross-env": "^7.0.3", @@ -94,10 +94,10 @@ "lint-staged": "^13.0.3", "prettier": "^2.7.1", "read-pkg": "^7.1.0", - "rollup": "^2.78.1", + "rollup": "^2.79.0", "rollup-plugin-dts": "^4.2.2", - "rollup-plugin-visualizer": "^5.8.0", - "typedoc": "^0.23.11", + "rollup-plugin-visualizer": "^5.8.1", + "typedoc": "^0.23.14", "typescript": "^4.8.2" }, "packageManager": "pnpm@7.9.5" diff --git a/packages/clients/CHANGELOG.md b/packages/clients/CHANGELOG.md index 951a81fe4..3064a41b9 100644 --- a/packages/clients/CHANGELOG.md +++ b/packages/clients/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.9](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/sdk@0.1.0-beta.8...@scaleway/sdk@0.1.0-beta.9) (2022-09-05) + +**Note:** Version bump only for package @scaleway/sdk + + + + + ## [0.1.0-beta.8](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/sdk@0.1.0-beta.7...@scaleway/sdk@0.1.0-beta.8) (2022-08-26) diff --git a/packages/clients/package.json b/packages/clients/package.json index a0daeb46d..7c2e0de87 100644 --- a/packages/clients/package.json +++ b/packages/clients/package.json @@ -1,6 +1,6 @@ { "name": "@scaleway/sdk", - "version": "0.1.0-beta.8", + "version": "0.1.0-beta.9", "license": "Apache-2.0", "description": "Scaleway SDK.", "keywords": [ diff --git a/packages/clients/src/api/rdb/v1/api.gen.ts b/packages/clients/src/api/rdb/v1/api.gen.ts index fbe9780b6..950093819 100644 --- a/packages/clients/src/api/rdb/v1/api.gen.ts +++ b/packages/clients/src/api/rdb/v1/api.gen.ts @@ -777,9 +777,10 @@ export class RdbV1GenAPI extends API { ) /** - * Resetting a read replica resyncs data from the leader node. This operation - * can take some time, depending on the database's size. During this - * operation, the read replica will not be available. Endpoints will not change. + * When you resync a read replica, first it is reset, and then its data is + * resynchronized from the primary node. Your read replica will be unavailable + * during the resync process. The duration of this process is proportional to + * your Database Instance size. The configured endpoints will not change. * * @param request - The request {@link ResetReadReplicaRequest} * @returns A Promise of ReadReplica diff --git a/packages/clients/src/api/redis/v1alpha1/api.gen.ts b/packages/clients/src/api/redis/v1alpha1/api.gen.ts index 3ba8bd90b..b12492212 100644 --- a/packages/clients/src/api/redis/v1alpha1/api.gen.ts +++ b/packages/clients/src/api/redis/v1alpha1/api.gen.ts @@ -210,7 +210,9 @@ export class RedisV1Alpha1GenAPI extends API { enrichForPagination('clusters', this.pageOfListClusters, request) /** - * Migrate a cluster + * Upgrade your Database for RedisĀ® cluster to a new version or scale it + * vertically / horizontally. Please note: scaling horizontally your Database + * for RedisĀ® cluster will renew its TLS certificate. * * @param request - The request {@link MigrateClusterRequest} * @returns A Promise of Cluster diff --git a/packages/clients/src/scw/constants.ts b/packages/clients/src/scw/constants.ts index 2a0cfe0ee..3630ca2a9 100644 --- a/packages/clients/src/scw/constants.ts +++ b/packages/clients/src/scw/constants.ts @@ -1,3 +1,3 @@ -export const version = 'v0.1.0-beta.8' +export const version = 'v0.1.0-beta.9' export const userAgent = `scaleway-sdk-js/${version}` diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f656922b9..f0ed7daa3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,14 +8,14 @@ importers: '@babel/plugin-transform-runtime': ^7.18.10 '@babel/preset-env': ^7.18.10 '@babel/preset-typescript': ^7.18.6 - '@commitlint/cli': ^17.0.3 - '@commitlint/config-conventional': ^17.0.3 + '@commitlint/cli': ^17.1.2 + '@commitlint/config-conventional': ^17.1.0 '@jest/globals': ^28.1.3 '@rollup/plugin-babel': ^5.3.1 '@rollup/plugin-commonjs': ^22.0.2 '@rollup/plugin-inject': ^4.0.4 '@rollup/plugin-node-resolve': ^13.3.0 - '@scaleway/eslint-config-react': ^3.5.5 + '@scaleway/eslint-config-react': ^3.5.8 '@types/jest': ^28.1.7 babel-plugin-annotate-pure-calls: ^0.4.0 cross-env: ^7.0.3 @@ -31,24 +31,24 @@ importers: lint-staged: ^13.0.3 prettier: ^2.7.1 read-pkg: ^7.1.0 - rollup: ^2.78.1 + rollup: ^2.79.0 rollup-plugin-dts: ^4.2.2 - rollup-plugin-visualizer: ^5.8.0 - typedoc: ^0.23.11 + rollup-plugin-visualizer: ^5.8.1 + typedoc: ^0.23.14 typescript: ^4.8.2 devDependencies: '@babel/core': 7.18.13 '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.13 '@babel/preset-env': 7.18.10_@babel+core@7.18.13 '@babel/preset-typescript': 7.18.6_@babel+core@7.18.13 - '@commitlint/cli': 17.0.3 - '@commitlint/config-conventional': 17.0.3 + '@commitlint/cli': 17.1.2 + '@commitlint/config-conventional': 17.1.0 '@jest/globals': 28.1.3 - '@rollup/plugin-babel': 5.3.1_2uin6pbxavst3oir53roxbd5qi - '@rollup/plugin-commonjs': 22.0.2_rollup@2.78.1 - '@rollup/plugin-inject': 4.0.4_rollup@2.78.1 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.78.1 - '@scaleway/eslint-config-react': 3.5.5_yqf6kl63nyoq5megxukfnom5rm + '@rollup/plugin-babel': 5.3.1_qa5xd24o3tymwictiiptlhxtom + '@rollup/plugin-commonjs': 22.0.2_rollup@2.79.0 + '@rollup/plugin-inject': 4.0.4_rollup@2.79.0 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.79.0 + '@scaleway/eslint-config-react': 3.5.8_yqf6kl63nyoq5megxukfnom5rm '@types/jest': 28.1.7 babel-plugin-annotate-pure-calls: 0.4.0_@babel+core@7.18.13 cross-env: 7.0.3 @@ -64,10 +64,10 @@ importers: lint-staged: 13.0.3 prettier: 2.7.1 read-pkg: 7.1.0 - rollup: 2.78.1 - rollup-plugin-dts: 4.2.2_rusrl3yqfuqle4tcyjzane2tmq - rollup-plugin-visualizer: 5.8.0_rollup@2.78.1 - typedoc: 0.23.11_typescript@4.8.2 + rollup: 2.79.0 + rollup-plugin-dts: 4.2.2_id3sp2lbl4kx3dskm7teaj32um + rollup-plugin-visualizer: 5.8.1_rollup@2.79.0 + typedoc: 0.23.14_typescript@4.8.2 typescript: 4.8.2 packages/clients: @@ -1379,15 +1379,15 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@commitlint/cli/17.0.3: - resolution: {integrity: sha512-oAo2vi5d8QZnAbtU5+0cR2j+A7PO8zuccux65R/EycwvsZrDVyW518FFrnJK2UQxbRtHFFIG+NjQ6vOiJV0Q8A==} + /@commitlint/cli/17.1.2: + resolution: {integrity: sha512-h/4Hlka3bvCLbnxf0Er2ri5A44VMlbMSkdTRp8Adv2tRiklSTRIoPGs7OEXDv3EoDs2AAzILiPookgM4Gi7LOw==} engines: {node: '>=v14'} hasBin: true dependencies: '@commitlint/format': 17.0.0 - '@commitlint/lint': 17.0.3 - '@commitlint/load': 17.0.3 - '@commitlint/read': 17.0.0 + '@commitlint/lint': 17.1.0 + '@commitlint/load': 17.1.2 + '@commitlint/read': 17.1.0 '@commitlint/types': 17.0.0 execa: 5.1.1 lodash: 4.17.21 @@ -1399,15 +1399,15 @@ packages: - '@swc/wasm' dev: true - /@commitlint/config-conventional/17.0.3: - resolution: {integrity: sha512-HCnzTm5ATwwwzNVq5Y57poS0a1oOOcd5pc1MmBpLbGmSysc4i7F/++JuwtdFPu16sgM3H9J/j2zznRLOSGVO2A==} + /@commitlint/config-conventional/17.1.0: + resolution: {integrity: sha512-WU2p0c9/jLi8k2q2YrDV96Y8XVswQOceIQ/wyJvQxawJSCasLdRB3kUIYdNjOCJsxkpoUlV/b90ZPxp1MYZDiA==} engines: {node: '>=v14'} dependencies: conventional-changelog-conventionalcommits: 5.0.0 dev: true - /@commitlint/config-validator/17.0.3: - resolution: {integrity: sha512-3tLRPQJKapksGE7Kee9axv+9z5I2GDHitDH4q63q7NmNA0wkB+DAorJ0RHz2/K00Zb1/MVdHzhCga34FJvDihQ==} + /@commitlint/config-validator/17.1.0: + resolution: {integrity: sha512-Q1rRRSU09ngrTgeTXHq6ePJs2KrI+axPTgkNYDWSJIuS1Op4w3J30vUfSXjwn5YEJHklK3fSqWNHmBhmTR7Vdg==} engines: {node: '>=v14'} dependencies: '@commitlint/types': 17.0.0 @@ -1435,39 +1435,40 @@ packages: chalk: 4.1.2 dev: true - /@commitlint/is-ignored/17.0.3: - resolution: {integrity: sha512-/wgCXAvPtFTQZxsVxj7owLeRf5wwzcXLaYmrZPR4a87iD4sCvUIRl1/ogYrtOyUmHwWfQsvjqIB4mWE/SqWSnA==} + /@commitlint/is-ignored/17.1.0: + resolution: {integrity: sha512-JITWKDMHhIh8IpdIbcbuH9rEQJty1ZWelgjleTFrVRAcEwN/sPzk1aVUXRIZNXMJWbZj8vtXRJnFihrml8uECQ==} engines: {node: '>=v14'} dependencies: '@commitlint/types': 17.0.0 semver: 7.3.7 dev: true - /@commitlint/lint/17.0.3: - resolution: {integrity: sha512-2o1fk7JUdxBUgszyt41sHC/8Nd5PXNpkmuOo9jvGIjDHzOwXyV0PSdbEVTH3xGz9NEmjohFHr5l+N+T9fcxong==} + /@commitlint/lint/17.1.0: + resolution: {integrity: sha512-ltpqM2ogt/+SDhUaScFo0MdscncEF96lvQTPMM/VTTWlw7sTGLLWkOOppsee2MN/uLNNWjQ7kqkd4h6JqoM9AQ==} engines: {node: '>=v14'} dependencies: - '@commitlint/is-ignored': 17.0.3 + '@commitlint/is-ignored': 17.1.0 '@commitlint/parse': 17.0.0 '@commitlint/rules': 17.0.0 '@commitlint/types': 17.0.0 dev: true - /@commitlint/load/17.0.3: - resolution: {integrity: sha512-3Dhvr7GcKbKa/ey4QJ5MZH3+J7QFlARohUow6hftQyNjzoXXROm+RwpBes4dDFrXG1xDw9QPXA7uzrOShCd4bw==} + /@commitlint/load/17.1.2: + resolution: {integrity: sha512-sk2p/jFYAWLChIfOIp/MGSIn/WzZ0vkc3afw+l4X8hGEYkvDe4gQUUAVxjl/6xMRn0HgnSLMZ04xXh5pkTsmgg==} engines: {node: '>=v14'} requiresBuild: true dependencies: - '@commitlint/config-validator': 17.0.3 + '@commitlint/config-validator': 17.1.0 '@commitlint/execute-rule': 17.0.0 - '@commitlint/resolve-extends': 17.0.3 + '@commitlint/resolve-extends': 17.1.0 '@commitlint/types': 17.0.0 - '@types/node': 18.0.3 + '@types/node': 14.18.26 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 2.0.2_a5dsltsyicrgovqfd3lpwjfrqi + cosmiconfig-typescript-loader: 4.0.0_wc7xolkoqoukw4cci6lkpmtet4 lodash: 4.17.21 resolve-from: 5.0.0 + ts-node: 10.8.2_ys5ibmf2vqsgufkwyky27zwkd4 typescript: 4.8.2 transitivePeerDependencies: - '@swc/core' @@ -1488,21 +1489,22 @@ packages: conventional-commits-parser: 3.2.4 dev: true - /@commitlint/read/17.0.0: - resolution: {integrity: sha512-zkuOdZayKX3J6F6mPnVMzohK3OBrsEdOByIqp4zQjA9VLw1hMsDEFQ18rKgUc2adkZar+4S01QrFreDCfZgbxA==} + /@commitlint/read/17.1.0: + resolution: {integrity: sha512-73BoFNBA/3Ozo2JQvGsE0J8SdrJAWGfZQRSHqvKaqgmY042Su4gXQLqvAzgr55S9DI1l9TiU/5WDuh8IE86d/g==} engines: {node: '>=v14'} dependencies: '@commitlint/top-level': 17.0.0 '@commitlint/types': 17.0.0 fs-extra: 10.1.0 git-raw-commits: 2.0.11 + minimist: 1.2.6 dev: true - /@commitlint/resolve-extends/17.0.3: - resolution: {integrity: sha512-H/RFMvrcBeJCMdnVC4i8I94108UDccIHrTke2tyQEg9nXQnR5/Hd6MhyNWkREvcrxh9Y+33JLb+PiPiaBxCtBA==} + /@commitlint/resolve-extends/17.1.0: + resolution: {integrity: sha512-jqKm00LJ59T0O8O4bH4oMa4XyJVEOK4GzH8Qye9XKji+Q1FxhZznxMV/bDLyYkzbTodBt9sL0WLql8wMtRTbqQ==} engines: {node: '>=v14'} dependencies: - '@commitlint/config-validator': 17.0.3 + '@commitlint/config-validator': 17.1.0 '@commitlint/types': 17.0.0 import-fresh: 3.3.0 lodash: 4.17.21 @@ -2919,7 +2921,7 @@ packages: node-gyp-build: 4.5.0 dev: true - /@rollup/plugin-babel/5.3.1_2uin6pbxavst3oir53roxbd5qi: + /@rollup/plugin-babel/5.3.1_qa5xd24o3tymwictiiptlhxtom: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -2932,53 +2934,53 @@ packages: dependencies: '@babel/core': 7.18.13 '@babel/helper-module-imports': 7.18.6 - '@rollup/pluginutils': 3.1.0_rollup@2.78.1 - rollup: 2.78.1 + '@rollup/pluginutils': 3.1.0_rollup@2.79.0 + rollup: 2.79.0 dev: true - /@rollup/plugin-commonjs/22.0.2_rollup@2.78.1: + /@rollup/plugin-commonjs/22.0.2_rollup@2.79.0: resolution: {integrity: sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==} engines: {node: '>= 12.0.0'} peerDependencies: rollup: ^2.68.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.78.1 + '@rollup/pluginutils': 3.1.0_rollup@2.79.0 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 resolve: 1.22.1 - rollup: 2.78.1 + rollup: 2.79.0 dev: true - /@rollup/plugin-inject/4.0.4_rollup@2.78.1: + /@rollup/plugin-inject/4.0.4_rollup@2.79.0: resolution: {integrity: sha512-4pbcU4J/nS+zuHk+c+OL3WtmEQhqxlZ9uqfjQMQDOHOPld7PsCd8k5LWs8h5wjwJN7MgnAn768F2sDxEP4eNFQ==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.78.1 + '@rollup/pluginutils': 3.1.0_rollup@2.79.0 estree-walker: 2.0.2 magic-string: 0.25.9 - rollup: 2.78.1 + rollup: 2.79.0 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.78.1: + /@rollup/plugin-node-resolve/13.3.0_rollup@2.79.0: resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^2.42.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.78.1 + '@rollup/pluginutils': 3.1.0_rollup@2.79.0 '@types/resolve': 1.17.1 deepmerge: 4.2.2 is-builtin-module: 3.1.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 2.78.1 + rollup: 2.79.0 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.78.1: + /@rollup/pluginutils/3.1.0_rollup@2.79.0: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -2987,24 +2989,24 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 2.78.1 + rollup: 2.79.0 dev: true - /@scaleway/eslint-config-react/3.5.5_yqf6kl63nyoq5megxukfnom5rm: - resolution: {integrity: sha512-9j2ECt3nOlrqShq8CMhGvjDXWmx8Ezpatssl78wYF2SnpgJu4Vf0CmweRksmkjFZQu5zxV6dRBNJC/R1jAKpNw==} + /@scaleway/eslint-config-react/3.5.8_yqf6kl63nyoq5megxukfnom5rm: + resolution: {integrity: sha512-kT7OGFF0SYk+Kkz+VupFQpdKQSlFaj/723Ln2gq3I+Xx6Iibf+1MSMI2rVQC1/Eo+tn8gKA7ZDTWQQtCV1hffQ==} peerDependencies: eslint: '>= 8.5' dependencies: - '@typescript-eslint/eslint-plugin': 5.35.1_pfwtupu3r4wxmgbx6hj7gwmyuu - '@typescript-eslint/parser': 5.35.1_yqf6kl63nyoq5megxukfnom5rm + '@typescript-eslint/eslint-plugin': 5.36.1_lbwfnm54o3pmr3ypeqp3btnera + '@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm eslint: 8.23.0 - eslint-config-airbnb: 19.0.4_3qsl27dotdfpywgduohb2pwdcy - eslint-config-airbnb-typescript: 17.0.0_3qqlytu6rb7huebrsztl7qeduq + eslint-config-airbnb: 19.0.4_dc5unztgy7cri6hrpc62vxgf2u + eslint-config-airbnb-typescript: 17.0.0_nwt6qmnsbmuicuvak5hafgwebq eslint-config-prettier: 8.5.0_eslint@8.23.0 eslint-plugin-eslint-comments: 3.2.0_eslint@8.23.0 - eslint-plugin-import: 2.26.0_kavhtzjob4obuugpatbfgsyfbm + eslint-plugin-import: 2.26.0_wyxuyzvlfep3lsyoibc4fosfq4 eslint-plugin-jsx-a11y: 6.6.1_eslint@8.23.0 - eslint-plugin-react: 7.30.1_eslint@8.23.0 + eslint-plugin-react: 7.31.1_eslint@8.23.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.23.0 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -3136,6 +3138,10 @@ packages: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} dev: true + /@types/node/14.18.26: + resolution: {integrity: sha512-0b+utRBSYj8L7XAp0d+DX7lI4cSmowNaaTkk6/1SKzbKkG+doLuPusB9EOvzLJ8ahJSk03bTLIL6cWaEd4dBKA==} + dev: true + /@types/node/17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} dev: true @@ -3176,8 +3182,8 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.35.1_pfwtupu3r4wxmgbx6hj7gwmyuu: - resolution: {integrity: sha512-RBZZXZlI4XCY4Wzgy64vB+0slT9+yAPQRjj/HSaRwUot33xbDjF1oN9BLwOLTewoOI0jothIltZRe9uJCHf8gg==} + /@typescript-eslint/eslint-plugin/5.36.1_lbwfnm54o3pmr3ypeqp3btnera: + resolution: {integrity: sha512-iC40UK8q1tMepSDwiLbTbMXKDxzNy+4TfPWgIL661Ym0sD42vRcQU93IsZIrmi+x292DBr60UI/gSwfdVYexCA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -3187,10 +3193,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.35.1_yqf6kl63nyoq5megxukfnom5rm - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/type-utils': 5.35.1_yqf6kl63nyoq5megxukfnom5rm - '@typescript-eslint/utils': 5.35.1_yqf6kl63nyoq5megxukfnom5rm + '@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm + '@typescript-eslint/scope-manager': 5.36.1 + '@typescript-eslint/type-utils': 5.36.1_yqf6kl63nyoq5megxukfnom5rm + '@typescript-eslint/utils': 5.36.1_yqf6kl63nyoq5megxukfnom5rm debug: 4.3.4 eslint: 8.23.0 functional-red-black-tree: 1.0.1 @@ -3203,8 +3209,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.35.1_yqf6kl63nyoq5megxukfnom5rm: - resolution: {integrity: sha512-XL2TBTSrh3yWAsMYpKseBYTVpvudNf69rPOWXWVBI08My2JVT5jR66eTt4IgQFHA/giiKJW5dUD4x/ZviCKyGg==} + /@typescript-eslint/parser/5.36.1_yqf6kl63nyoq5megxukfnom5rm: + resolution: {integrity: sha512-/IsgNGOkBi7CuDfUbwt1eOqUXF9WGVBW9dwEe1pi+L32XrTsZIgmDFIi2RxjzsvB/8i+MIf5JIoTEH8LOZ368A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -3213,9 +3219,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/typescript-estree': 5.35.1_typescript@4.8.2 + '@typescript-eslint/scope-manager': 5.36.1 + '@typescript-eslint/types': 5.36.1 + '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.8.2 debug: 4.3.4 eslint: 8.23.0 typescript: 4.8.2 @@ -3223,16 +3229,16 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/5.35.1: - resolution: {integrity: sha512-kCYRSAzIW9ByEIzmzGHE50NGAvAP3wFTaZevgWva7GpquDyFPFcmvVkFJGWJJktg/hLwmys/FZwqM9EKr2u24Q==} + /@typescript-eslint/scope-manager/5.36.1: + resolution: {integrity: sha512-pGC2SH3/tXdu9IH3ItoqciD3f3RRGCh7hb9zPdN2Drsr341zgd6VbhP5OHQO/reUqihNltfPpMpTNihFMarP2w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/visitor-keys': 5.35.1 + '@typescript-eslint/types': 5.36.1 + '@typescript-eslint/visitor-keys': 5.36.1 dev: true - /@typescript-eslint/type-utils/5.35.1_yqf6kl63nyoq5megxukfnom5rm: - resolution: {integrity: sha512-8xT8ljvo43Mp7BiTn1vxLXkjpw8wS4oAc00hMSB4L1/jIiYbjjnc3Qp2GAUOG/v8zsNCd1qwcqfCQ0BuishHkw==} + /@typescript-eslint/type-utils/5.36.1_yqf6kl63nyoq5megxukfnom5rm: + resolution: {integrity: sha512-xfZhfmoQT6m3lmlqDvDzv9TiCYdw22cdj06xY0obSznBsT///GK5IEZQdGliXpAOaRL34o8phEvXzEo/VJx13Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -3241,7 +3247,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.35.1_yqf6kl63nyoq5megxukfnom5rm + '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.8.2 + '@typescript-eslint/utils': 5.36.1_yqf6kl63nyoq5megxukfnom5rm debug: 4.3.4 eslint: 8.23.0 tsutils: 3.21.0_typescript@4.8.2 @@ -3250,13 +3257,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.35.1: - resolution: {integrity: sha512-FDaujtsH07VHzG0gQ6NDkVVhi1+rhq0qEvzHdJAQjysN+LHDCKDKCBRlZFFE0ec0jKxiv0hN63SNfExy0KrbQQ==} + /@typescript-eslint/types/5.36.1: + resolution: {integrity: sha512-jd93ShpsIk1KgBTx9E+hCSEuLCUFwi9V/urhjOWnOaksGZFbTOxAT47OH2d4NLJnLhkVD+wDbB48BuaycZPLBg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.35.1_typescript@4.8.2: - resolution: {integrity: sha512-JUqE1+VRTGyoXlDWWjm6MdfpBYVq+hixytrv1oyjYIBEOZhBCwtpp5ZSvBt4wIA1MKWlnaC2UXl2XmYGC3BoQA==} + /@typescript-eslint/typescript-estree/5.36.1_typescript@4.8.2: + resolution: {integrity: sha512-ih7V52zvHdiX6WcPjsOdmADhYMDN15SylWRZrT2OMy80wzKbc79n8wFW0xpWpU0x3VpBz/oDgTm2xwDAnFTl+g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -3264,8 +3271,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/visitor-keys': 5.35.1 + '@typescript-eslint/types': 5.36.1 + '@typescript-eslint/visitor-keys': 5.36.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -3276,16 +3283,16 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.35.1_yqf6kl63nyoq5megxukfnom5rm: - resolution: {integrity: sha512-v6F8JNXgeBWI4pzZn36hT2HXXzoBBBJuOYvoQiaQaEEjdi5STzux3Yj8v7ODIpx36i/5s8TdzuQ54TPc5AITQQ==} + /@typescript-eslint/utils/5.36.1_yqf6kl63nyoq5megxukfnom5rm: + resolution: {integrity: sha512-lNj4FtTiXm5c+u0pUehozaUWhh7UYKnwryku0nxJlYUEWetyG92uw2pr+2Iy4M/u0ONMKzfrx7AsGBTCzORmIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/typescript-estree': 5.35.1_typescript@4.8.2 + '@typescript-eslint/scope-manager': 5.36.1 + '@typescript-eslint/types': 5.36.1 + '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.8.2 eslint: 8.23.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.23.0 @@ -3294,11 +3301,11 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.35.1: - resolution: {integrity: sha512-cEB1DvBVo1bxbW/S5axbGPE6b7FIMAbo3w+AGq6zNDA7+NYJOIkKj/sInfTv4edxd4PxJSgdN4t6/pbvgA+n5g==} + /@typescript-eslint/visitor-keys/5.36.1: + resolution: {integrity: sha512-ojB9aRyRFzVMN3b5joSYni6FAS10BBSCAfKJhjJAV08t/a95aM6tAhz+O1jF+EtgxktuSO3wJysp2R+Def/IWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.35.1 + '@typescript-eslint/types': 5.36.1 eslint-visitor-keys: 3.3.0 dev: true @@ -4250,20 +4257,19 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true - /cosmiconfig-typescript-loader/2.0.2_a5dsltsyicrgovqfd3lpwjfrqi: - resolution: {integrity: sha512-KmE+bMjWMXJbkWCeY4FJX/npHuZPNr9XF9q9CIQ/bpFwi1qHfCmSiKarrCcRa0LO4fWjk93pVoeRtJAkTGcYNw==} + /cosmiconfig-typescript-loader/4.0.0_wc7xolkoqoukw4cci6lkpmtet4: + resolution: {integrity: sha512-cVpucSc2Tf+VPwCCR7SZzmQTQkPbkk4O01yXsYqXBIbjE1bhwqSyAgYQkRK1un4i0OPziTleqFhdkmOc4RQ/9g==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@types/node': '*' + cosmiconfig: '>=7' + ts-node: '>=10' typescript: '>=3' dependencies: - '@types/node': 18.0.3 + '@types/node': 14.18.26 cosmiconfig: 7.0.1 - ts-node: 10.8.2_a5dsltsyicrgovqfd3lpwjfrqi + ts-node: 10.8.2_ys5ibmf2vqsgufkwyky27zwkd4 typescript: 4.8.2 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' dev: true /cosmiconfig/7.0.1: @@ -4316,7 +4322,7 @@ packages: longest: 2.0.1 word-wrap: 1.2.3 optionalDependencies: - '@commitlint/load': 17.0.3 + '@commitlint/load': 17.1.2 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -4333,7 +4339,7 @@ packages: longest: 2.0.1 word-wrap: 1.2.3 optionalDependencies: - '@commitlint/load': 17.0.3 + '@commitlint/load': 17.1.2 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -4670,13 +4676,13 @@ packages: dependencies: confusing-browser-globals: 1.0.11 eslint: 8.23.0 - eslint-plugin-import: 2.26.0_kavhtzjob4obuugpatbfgsyfbm + eslint-plugin-import: 2.26.0_wyxuyzvlfep3lsyoibc4fosfq4 object.assign: 4.1.2 object.entries: 1.1.5 semver: 6.3.0 dev: true - /eslint-config-airbnb-typescript/17.0.0_3qqlytu6rb7huebrsztl7qeduq: + /eslint-config-airbnb-typescript/17.0.0_nwt6qmnsbmuicuvak5hafgwebq: resolution: {integrity: sha512-elNiuzD0kPAPTXjFWg+lE24nMdHMtuxgYoD30OyMD6yrW1AhFZPAg27VX7d3tzOErw+dgJTNWfRSDqEcXb4V0g==} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.13.0 @@ -4684,14 +4690,14 @@ packages: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.3 dependencies: - '@typescript-eslint/eslint-plugin': 5.35.1_pfwtupu3r4wxmgbx6hj7gwmyuu - '@typescript-eslint/parser': 5.35.1_yqf6kl63nyoq5megxukfnom5rm + '@typescript-eslint/eslint-plugin': 5.36.1_lbwfnm54o3pmr3ypeqp3btnera + '@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm eslint: 8.23.0 eslint-config-airbnb-base: 15.0.0_faomjyrlgqmwswvqymymzkxcqi - eslint-plugin-import: 2.26.0_kavhtzjob4obuugpatbfgsyfbm + eslint-plugin-import: 2.26.0_wyxuyzvlfep3lsyoibc4fosfq4 dev: true - /eslint-config-airbnb/19.0.4_3qsl27dotdfpywgduohb2pwdcy: + /eslint-config-airbnb/19.0.4_dc5unztgy7cri6hrpc62vxgf2u: resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4703,9 +4709,9 @@ packages: dependencies: eslint: 8.23.0 eslint-config-airbnb-base: 15.0.0_faomjyrlgqmwswvqymymzkxcqi - eslint-plugin-import: 2.26.0_kavhtzjob4obuugpatbfgsyfbm + eslint-plugin-import: 2.26.0_wyxuyzvlfep3lsyoibc4fosfq4 eslint-plugin-jsx-a11y: 6.6.1_eslint@8.23.0 - eslint-plugin-react: 7.30.1_eslint@8.23.0 + eslint-plugin-react: 7.31.1_eslint@8.23.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.23.0 object.assign: 4.1.2 object.entries: 1.1.5 @@ -4739,7 +4745,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_v26d7mdxwhyqykunawffqp7s2m: + /eslint-module-utils/2.7.3_632zrvmnhpkgiajg2zqauquf6u: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -4757,7 +4763,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.35.1_yqf6kl63nyoq5megxukfnom5rm + '@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -4776,7 +4782,7 @@ packages: ignore: 5.2.0 dev: true - /eslint-plugin-import/2.26.0_kavhtzjob4obuugpatbfgsyfbm: + /eslint-plugin-import/2.26.0_wyxuyzvlfep3lsyoibc4fosfq4: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -4786,14 +4792,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.35.1_yqf6kl63nyoq5megxukfnom5rm + '@typescript-eslint/parser': 5.36.1_yqf6kl63nyoq5megxukfnom5rm array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.23.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_v26d7mdxwhyqykunawffqp7s2m + eslint-module-utils: 2.7.3_632zrvmnhpkgiajg2zqauquf6u has: 1.0.3 is-core-module: 2.9.0 is-glob: 4.0.3 @@ -4838,8 +4844,8 @@ packages: eslint: 8.23.0 dev: true - /eslint-plugin-react/7.30.1_eslint@8.23.0: - resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==} + /eslint-plugin-react/7.31.1_eslint@8.23.0: + resolution: {integrity: sha512-j4/2xWqt/R7AZzG8CakGHA6Xa/u7iR8Q3xCxY+AUghdT92bnIDOBEefV456OeH0QvBcroVc0eyvrrLSyQGYIfg==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 @@ -8244,7 +8250,7 @@ packages: glob: 7.2.3 dev: true - /rollup-plugin-dts/4.2.2_rusrl3yqfuqle4tcyjzane2tmq: + /rollup-plugin-dts/4.2.2_id3sp2lbl4kx3dskm7teaj32um: resolution: {integrity: sha512-A3g6Rogyko/PXeKoUlkjxkP++8UDVpgA7C+Tdl77Xj4fgEaIjPSnxRmR53EzvoYy97VMVwLAOcWJudaVAuxneQ==} engines: {node: '>=v12.22.11'} peerDependencies: @@ -8252,28 +8258,31 @@ packages: typescript: ^4.1 dependencies: magic-string: 0.26.2 - rollup: 2.78.1 + rollup: 2.79.0 typescript: 4.8.2 optionalDependencies: '@babel/code-frame': 7.18.6 dev: true - /rollup-plugin-visualizer/5.8.0_rollup@2.78.1: - resolution: {integrity: sha512-pY6j/7qHz5I9rB7d/bQoA5gX+2FbV3MBG055wrsFxDn550bgl0FNViRj6wDHh85PMswv+JVdZjhnMBzz/hdAHA==} + /rollup-plugin-visualizer/5.8.1_rollup@2.79.0: + resolution: {integrity: sha512-NBT/xN/LWCwDM2/j5vYmjzpEAKHyclo/8Cv8AfTCwgADAG+tLJDy1vzxMw6NO0dSDjmTeRELD9UU3FwknLv0GQ==} engines: {node: '>=14'} hasBin: true peerDependencies: rollup: ^2.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: nanoid: 3.3.4 open: 8.4.0 - rollup: 2.78.1 + rollup: 2.79.0 source-map: 0.7.4 yargs: 17.5.1 dev: true - /rollup/2.78.1: - resolution: {integrity: sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==} + /rollup/2.79.0: + resolution: {integrity: sha512-x4KsrCgwQ7ZJPcFA/SUu6QVcYlO7uRLfLAy0DSA4NS2eG8japdbpM50ToH7z4iObodRYOJ0soneF0iaQRJ6zhA==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -8846,7 +8855,7 @@ packages: engines: {node: '>=8'} dev: true - /ts-node/10.8.2_a5dsltsyicrgovqfd3lpwjfrqi: + /ts-node/10.8.2_ys5ibmf2vqsgufkwyky27zwkd4: resolution: {integrity: sha512-LYdGnoGddf1D6v8REPtIH+5iq/gTDuZqv2/UJUU7tKjuEU8xVZorBM+buCGNjj+pGEud+sOoM4CX3/YzINpENA==} hasBin: true peerDependencies: @@ -8865,7 +8874,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 18.0.3 + '@types/node': 14.18.26 acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -8961,8 +8970,8 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /typedoc/0.23.11_typescript@4.8.2: - resolution: {integrity: sha512-FhZ2HfqlS++53UwHk4txCsTrTlpYR0So/0osMyBeP1E7llRNRqycJGfYK1qx9Wvvv5VO8tGdpwzOwDW5FrTi7A==} + /typedoc/0.23.14_typescript@4.8.2: + resolution: {integrity: sha512-s2I+ZKBET38EctZvbXp2GooHrNaKjWZkrwGEK/sttnOGiKJqU0vHrsdcwLgKZGuo2aedNL3RRPj1LnAAeYscig==} engines: {node: '>= 14.14'} hasBin: true peerDependencies: