diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 545d6fa..04dca67 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -28,11 +28,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -43,7 +43,7 @@ jobs: # 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@v3 + uses: github/codeql-action/autobuild@v4 # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -57,4 +57,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b7bab0f..aa2d580 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,6 +11,7 @@ jobs: id: slack uses: slackapi/slack-github-action@v3 with: + webhook-type: incoming-webhook payload: | { "text": "New release ${{github.ref_name}} for ${{github.event.repository.name}}.", diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index 7dbd0e5..57ae068 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -1,7 +1,7 @@ name: Release on: push: - branches: [ main, beta, prerelease ] + branches: [ main, beta, prerelease, oclif4 ] pull_request: branches: [ main ] jobs: @@ -12,16 +12,16 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: false - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 with: version: latest - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 'lts/*' cache: 'pnpm' diff --git a/.releaserc b/.releaserc index 414090f..e5bb865 100644 --- a/.releaserc +++ b/.releaserc @@ -5,7 +5,8 @@ { "name": "main", "channel": "latest" }, "+([0-9])?(.{+([0-9]),x}).x", { "name": "beta", "prerelease": true }, - { "name": "prerelease", "prerelease": "rc" } + { "name": "prerelease", "prerelease": "rc" }, + { "name": "oclif", "prerelease": true } ], "plugins": [ "@semantic-release/commit-analyzer", diff --git a/README.md b/README.md index 04c98da..c9ccad1 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ USAGE ARGUMENTS RESOURCE the resource type - ID id of the resource to delete + [ID] id of the resource to delete FLAGS -H, --headers show response headers @@ -138,8 +138,8 @@ USAGE ARGUMENTS RESOURCE the resource type - ID id of the resource on which to execute the action - ACTION action to execute on resource + [ID] id of the resource on which to execute the action + [ACTION] action to execute on resource FLAGS -a, --attribute=... define a resource attribute @@ -173,7 +173,7 @@ USAGE ARGUMENTS RESOURCE... the resource type PATH... path (or URL) of the resource(s) to fetch - ID... resource id + [ID...] resource id FLAGS -H, --headers show response headers @@ -228,7 +228,7 @@ USAGE ARGUMENTS RESOURCE... the resource type - ID... id of the resource to retrieve + [ID...] id of the resource to retrieve FLAGS -H, --headers show response headers @@ -360,7 +360,7 @@ USAGE ARGUMENTS RESOURCE the resource type - ID id of the resource to retrieve + [ID] id of the resource to retrieve FLAGS -H, --headers show response headers @@ -411,7 +411,7 @@ USAGE ARGUMENTS RESOURCE the resource type - ID id of the resource to update + [ID] id of the resource to update FLAGS -D, --data= the data file to use as request body diff --git a/package.json b/package.json index 05de149..23c2b1b 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "repository": "commercelayer/commercelayer-cli-plugin-provisioning", "bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-provisioning/issues", "engines": { - "node": ">=20" + "node": ">=22" }, "files": [ "/bin/run.*", @@ -55,13 +55,14 @@ "release": "pnpm upgrade && pnpm prepack && pnpm postpack && pnpm test" }, "devDependencies": { - "@biomejs/biome": "^2.4.11", - "@commercelayer/cli-dev": "^3.1.1", - "@oclif/plugin-help": "^6.2.44", - "@oclif/test": "^3.2.15", + "@biomejs/biome": "^2.4.14", + "@commercelayer/cli-dev": "oclif4", + "@oclif/plugin-help": "^6.2.46", + "@oclif/test": "^4.1.18", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@types/chai": "^5.2.3", + "@types/cli-progress": "^3.11.6", "@types/inquirer": "^8.2.12", "@types/mocha": "^10.0.10", "@types/node": "^25.6.0", @@ -71,12 +72,13 @@ "oclif": "^4.23.0", "semantic-release": "^25.0.3", "tsx": "^4.21.0", - "typescript": "^6.0.2" + "typescript": "^6.0.3" }, "dependencies": { - "@commercelayer/cli-core": "^5.11.1", + "@commercelayer/cli-core": "oclif4", + "@commercelayer/cli-ux": "oclif4", "@commercelayer/provisioning-sdk": "^2.10.2", - "@oclif/core": "^3.27.0", + "@oclif/core": "^4.11.0", "inquirer": "^8.2.7", "json-2-csv": "^5.5.10", "tslib": "^2.8.1" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3d22ea9..8b54317 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,14 +9,17 @@ importers: .: dependencies: '@commercelayer/cli-core': - specifier: ^5.11.1 - version: 5.11.1 + specifier: oclif4 + version: 6.0.0-oclif4.11 + '@commercelayer/cli-ux': + specifier: oclif4 + version: 2.0.0-oclif4.12(@oclif/core@4.11.0) '@commercelayer/provisioning-sdk': specifier: ^2.10.2 version: 2.10.2 '@oclif/core': - specifier: ^3.27.0 - version: 3.27.0 + specifier: ^4.11.0 + version: 4.11.0 inquirer: specifier: ^8.2.7 version: 8.2.7(@types/node@25.6.0) @@ -28,26 +31,29 @@ importers: version: 2.8.1 devDependencies: '@biomejs/biome': - specifier: ^2.4.11 - version: 2.4.11 + specifier: ^2.4.14 + version: 2.4.14 '@commercelayer/cli-dev': - specifier: ^3.1.1 - version: 3.1.1 + specifier: oclif4 + version: 4.0.0-oclif4.7 '@oclif/plugin-help': - specifier: ^6.2.44 - version: 6.2.44 + specifier: ^6.2.46 + version: 6.2.46 '@oclif/test': - specifier: ^3.2.15 - version: 3.2.15 + specifier: ^4.1.18 + version: 4.1.18(@oclif/core@4.11.0) '@semantic-release/changelog': specifier: ^6.0.3 - version: 6.0.3(semantic-release@25.0.3(typescript@6.0.2)) + version: 6.0.3(semantic-release@25.0.3(typescript@6.0.3)) '@semantic-release/git': specifier: ^10.0.1 - version: 10.0.1(semantic-release@25.0.3(typescript@6.0.2)) + version: 10.0.1(semantic-release@25.0.3(typescript@6.0.3)) '@types/chai': specifier: ^5.2.3 version: 5.2.3 + '@types/cli-progress': + specifier: ^3.11.6 + version: 3.11.6 '@types/inquirer': specifier: ^8.2.12 version: 8.2.12 @@ -71,24 +77,24 @@ importers: version: 4.23.0(@types/node@25.6.0) semantic-release: specifier: ^25.0.3 - version: 25.0.3(typescript@6.0.2) + version: 25.0.3(typescript@6.0.3) tsx: specifier: ^4.21.0 version: 4.21.0 typescript: - specifier: ^6.0.2 - version: 6.0.2 + specifier: ^6.0.3 + version: 6.0.3 packages: - '@actions/core@3.0.0': - resolution: {integrity: sha512-zYt6cz+ivnTmiT/ksRVriMBOiuoUpDCJJlZ5KPl2/FRdvwU3f7MPh9qftvbkXJThragzUZieit2nyHUyw53Seg==} + '@actions/core@3.0.1': + resolution: {integrity: sha512-a6d/Nwahm9fliVGRhdhofo40HjHQasUPusmc7vBfyky+7Z+P2A1J68zyFVaNcEclc/Se+eO595oAr5nwEIoIUA==} '@actions/exec@3.0.0': resolution: {integrity: sha512-6xH/puSoNBXb72VPlZVm7vQ+svQpFyA96qdDBvhB8eNZOE8LtPf9L4oAsfzK/crCL8YZ+19fKYVnM63Sl+Xzlw==} - '@actions/http-client@4.0.0': - resolution: {integrity: sha512-QuwPsgVMsD6qaPD57GLZi9sqzAZCtiJT8kVBCDpLtxhL5MydQ4gS+DrejtZZPdIYyB1e95uCK9Luyds7ybHI3g==} + '@actions/http-client@4.0.1': + resolution: {integrity: sha512-+Nvd1ImaOZBSoPbsUtEhv+1z99H12xzncCkz0a3RuehINE81FZSe2QTj3uvAPTcJX/SCzUQHQ0D1GrPMbrPitg==} '@actions/io@3.0.2': resolution: {integrity: sha512-nRBchcMM+QK1pdjO7/idu86rbJI5YHUKCvKs0KxnSYbVe3F51UfGxuZX4Qy/fWlp6l7gWFwIkrOzN+oUK03kfw==} @@ -124,123 +130,123 @@ packages: resolution: {integrity: sha512-0XLrOT4Cm3NEhhiME7l/8LbTXS4KdsbR4dSrY207KNKTcHLLTZ9EXt4ZpgnTfLvWQF3pGP2us4Zi1fYLo0N+Ow==} engines: {node: '>=20.0.0'} - '@aws-sdk/core@3.973.27': - resolution: {integrity: sha512-CUZ5m8hwMCH6OYI4Li/WgMfIEx10Q2PLI9Y3XOUTPGZJ53aZ0007jCv+X/ywsaERyKPdw5MRZWk877roQksQ4A==} + '@aws-sdk/core@3.974.8': + resolution: {integrity: sha512-njR2qoG6ZuB0kvAS2FyICsFZJ6gmCcf2X/7JcD14sUvGDm26wiZ5BrA6LOiUxKFEF+IVe7kdroxyE00YlkiYsw==} engines: {node: '>=20.0.0'} - '@aws-sdk/crc64-nvme@3.972.6': - resolution: {integrity: sha512-NMbiqKdruhwwgI6nzBVe2jWMkXjaoQz2YOs3rFX+2F3gGyrJDkDPwMpV/RsTFeq2vAQ055wZNtOXFK4NYSkM8g==} + '@aws-sdk/crc64-nvme@3.972.7': + resolution: {integrity: sha512-QUagVVBbC8gODCF6e1aV0mE2TXWB9Opz4k8EJFdNrujUVQm5R4AjJa1mpOqzwOuROBzqJU9zawzig7M96L8Ejg==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-env@3.972.25': - resolution: {integrity: sha512-6QfI0wv4jpG5CrdO/AO0JfZ2ux+tKwJPrUwmvxXF50vI5KIypKVGNF6b4vlkYEnKumDTI1NX2zUBi8JoU5QU3A==} + '@aws-sdk/credential-provider-env@3.972.34': + resolution: {integrity: sha512-XT0jtf8Fw9JE6ppsQeoNnZRiG+jqRixMT1v1ZR17G60UvVdsQmTG8nbEyHuEPfMxDXEhfdARaM/XiEhca4lGHQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-http@3.972.27': - resolution: {integrity: sha512-3V3Usj9Gs93h865DqN4M2NWJhC5kXU9BvZskfN3+69omuYlE3TZxOEcVQtBGLOloJB7BVfJKXVLqeNhOzHqSlQ==} + '@aws-sdk/credential-provider-http@3.972.36': + resolution: {integrity: sha512-DPoGWfy7J7RKxvbf5kOKIGQkD2ek3dbKgzKIGrnLuvZBz5myU+Im/H6pmc14QcnFbqHMqxvtWSgRDSJW3qXLQg==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-ini@3.972.29': - resolution: {integrity: sha512-SiBuAnXecCbT/OpAf3vqyI/AVE3mTaYr9ShXLybxZiPLBiPCCOIWSGAtYYGQWMRvobBTiqOewaB+wcgMMZI2Aw==} + '@aws-sdk/credential-provider-ini@3.972.38': + resolution: {integrity: sha512-oDzUBu2MGJFgoar05sPMCwSrhw44ASyccrHzj66vO69OZqi7I6hZZxXfuPLC8OCzW7C+sU+bI73XHij41yekgQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-login@3.972.29': - resolution: {integrity: sha512-OGOslTbOlxXexKMqhxCEbBQbUIfuhGxU5UXw3Fm56ypXHvrXH4aTt/xb5Y884LOoteP1QST1lVZzHfcTnWhiPQ==} + '@aws-sdk/credential-provider-login@3.972.38': + resolution: {integrity: sha512-g1NosS8qe4OF++G2UFCM5ovSkgipC7YYor5KCWatG0UoMSO5YFj9C8muePlyVmOBV/WTI16Jo3/s1NUo/o1Bww==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-node@3.972.30': - resolution: {integrity: sha512-FMnAnWxc8PG+ZrZ2OBKzY4luCUJhe9CG0B9YwYr4pzrYGLXBS2rl+UoUvjGbAwiptxRL6hyA3lFn03Bv1TLqTw==} + '@aws-sdk/credential-provider-node@3.972.39': + resolution: {integrity: sha512-HEswDQyxUtadoZ/bJsPPENHg7R0Lzym5LuMksJeHvqhCOpP+rtkDLKI4/ZChH4w3cf5kG8n6bZuI8PzajoiqMg==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-process@3.972.25': - resolution: {integrity: sha512-HR7ynNRdNhNsdVCOCegy1HsfsRzozCOPtD3RzzT1JouuaHobWyRfJzCBue/3jP7gECHt+kQyZUvwg/cYLWurNQ==} + '@aws-sdk/credential-provider-process@3.972.34': + resolution: {integrity: sha512-T3IFs4EVmVi1dVN5RciFnklCANSzvrQd/VuHY9ThHSQmYkTogjcGkoJEr+oNUPQZnso52183088NqysMPji1/Q==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-sso@3.972.29': - resolution: {integrity: sha512-HWv4SEq3jZDYPlwryZVef97+U8CxxRos5mK8sgGO1dQaFZpV5giZLzqGE5hkDmh2csYcBO2uf5XHjPTpZcJlig==} + '@aws-sdk/credential-provider-sso@3.972.38': + resolution: {integrity: sha512-5ZxG+t0+3Q3QPh8KEjX6syskhgNf7I0MN7oGioTf6Lm1NTjfP7sIcYGNsthXC2qR8vcD3edNZwCr2ovfSSWuRA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-web-identity@3.972.29': - resolution: {integrity: sha512-PdMBza1WEKEUPFEmMGCfnU2RYCz9MskU2e8JxjyUOsMKku7j9YaDKvbDi2dzC0ihFoM6ods2SbhfAAro+Gwlew==} + '@aws-sdk/credential-provider-web-identity@3.972.38': + resolution: {integrity: sha512-lYHFF30DGI20jZcYX8cm6Ns0V7f1dDN6g/MBDLTyD/5iw+bXs3yBr2iAiHDkx4RFU5JgsnZvCHYKiRVPRdmOgw==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-bucket-endpoint@3.972.9': - resolution: {integrity: sha512-COToYKgquDyligbcAep7ygs48RK+mwe/IYprq4+TSrVFzNOYmzWvHf6werpnKV5VYpRiwdn+Wa5ZXkPqLVwcTg==} + '@aws-sdk/middleware-bucket-endpoint@3.972.10': + resolution: {integrity: sha512-Vbc2frZH7wXlMNd+ZZSXUEs/l1Sv8Jj4zUnIfwrYF5lwaLdXHZ9xx4U3rjUcaye3HRhFVc+E5DbBxpRAbB16BA==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-expect-continue@3.972.9': - resolution: {integrity: sha512-V/FNCjFxnh4VGu+HdSiW4Yg5GELihA1MIDSAdsEPvuayXBVmr0Jaa6jdLAZLH38KYXl/vVjri9DQJWnTAujHEA==} + '@aws-sdk/middleware-expect-continue@3.972.10': + resolution: {integrity: sha512-2Yn0f1Qiq/DjxYR3wfI3LokXnjOhFM7Ssn4LTdFDIxRMCE6I32MAsVnhPX1cUZsuVA9tiZtwwhlSLAtFGxAZlQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-flexible-checksums@3.974.7': - resolution: {integrity: sha512-uU4/ch2CLHB8Phu1oTKnnQ4e8Ujqi49zEnQYBhWYT53zfFvtJCdGsaOoypBr8Fm/pmCBssRmGoIQ4sixgdLP9w==} + '@aws-sdk/middleware-flexible-checksums@3.974.16': + resolution: {integrity: sha512-6ru8doI0/XzszqLIPXf0E/V7HhAw1Pu94010XCKYtBUfD0LxF0BuOzrUf8OQGR6j2o6wgKTHUniOmndQycHwCA==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-host-header@3.972.9': - resolution: {integrity: sha512-je5vRdNw4SkuTnmRbFZLdye4sQ0faLt8kwka5wnnSU30q1mHO4X+idGEJOOE+Tn1ME7Oryn05xxkDvIb3UaLaQ==} + '@aws-sdk/middleware-host-header@3.972.10': + resolution: {integrity: sha512-IJSsIMeVQ8MMCPbuh1AbltkFhLBLXn7aejzfX5YKT/VLDHn++Dcz8886tXckE+wQssyPUhaXrJhdakO2VilRhg==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-location-constraint@3.972.9': - resolution: {integrity: sha512-TyfOi2XNdOZpNKeTJwRUsVAGa+14nkyMb2VVGG+eDgcWG/ed6+NUo72N3hT6QJioxym80NSinErD+LBRF0Ir1w==} + '@aws-sdk/middleware-location-constraint@3.972.10': + resolution: {integrity: sha512-rI3NZvJcEvjoD0+0PI0iUAwlPw2IlSlhyvgBK/3WkKJQE/YiKFedd9dMN2lVacdNxPNhxL/jzQaKQdrGtQagjQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-logger@3.972.9': - resolution: {integrity: sha512-HsVgDrruhqI28RkaXALm8grJ7Agc1wF6Et0xh6pom8NdO2VdO/SD9U/tPwUjewwK/pVoka+EShBxyCvgsPCtog==} + '@aws-sdk/middleware-logger@3.972.10': + resolution: {integrity: sha512-OOuGvvz1Dm20SjZo5oEBePFqxt5nf8AwkNDSyUHvD9/bfNASmstcYxFAHUowy4n6Io7mWUZ04JURZwSBvyQanQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-recursion-detection@3.972.10': - resolution: {integrity: sha512-RVQQbq5orQ/GHUnXvqEOj2HHPBJm+mM+ySwZKS5UaLBwra5ugRtiH09PLUoOZRl7a1YzaOzXSuGbn9iD5j60WQ==} + '@aws-sdk/middleware-recursion-detection@3.972.11': + resolution: {integrity: sha512-+zz6f79Kj9V5qFK2P+D8Ehjnw4AhphAlCAsPjUqEcInA9umtSSKMrHbSagEeOIsDNuvVrH98bjRHcyQukTrhaQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-sdk-s3@3.972.28': - resolution: {integrity: sha512-qJHcJQH9UNPUrnPlRtCozKjtqAaypQ5IgQxTNoPsVYIQeuwNIA8Rwt3NvGij1vCDYDfCmZaPLpnJEHlZXeFqmg==} + '@aws-sdk/middleware-sdk-s3@3.972.37': + resolution: {integrity: sha512-Km7M+i8DrLArVzrid1gfxeGhYHBd3uxvE77g0s5a52zPSVosxzQBnJ0gwWb6NIp/DOk8gsBMhi7V+cpJG0ndTA==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-ssec@3.972.9': - resolution: {integrity: sha512-wSA2BR7L0CyBNDJeSrleIIzC+DzL93YNTdfU0KPGLiocK6YsRv1nPAzPF+BFSdcs0Qa5ku5Kcf4KvQcWwKGenQ==} + '@aws-sdk/middleware-ssec@3.972.10': + resolution: {integrity: sha512-Gli9A0u8EVVb+5bFDGS/QbSVg28w/wpEidg1ggVcSj65BDTdGR6punsOcVjqdiu1i42WHWo51MCvARPIIz9juw==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-user-agent@3.972.29': - resolution: {integrity: sha512-f/sIRzuTfEjg6NsbMYvye2VsmnQoNgntntleQyx5uGacUYzszbfIlO3GcI6G6daWUmTm0IDZc11qMHWwF0o0mQ==} + '@aws-sdk/middleware-user-agent@3.972.38': + resolution: {integrity: sha512-iz+B29TXcAZsJpwB+AwG/TTGA5l/VnmMZ2UxtiySOZjI6gCdmviXPwdgzcmuazMy16rXoPY4mYCGe7zdNKfx5A==} engines: {node: '>=20.0.0'} - '@aws-sdk/nested-clients@3.996.19': - resolution: {integrity: sha512-uFkmCDXvmQYLanlYdOFS0+MQWkrj9wPMt/ZCc/0J0fjPim6F5jBVBmEomvGY/j77ILW6GTPwN22Jc174Mhkw6Q==} + '@aws-sdk/nested-clients@3.997.6': + resolution: {integrity: sha512-WBDnqatJl+kGObpfmfSxqnXeYTu3Me8wx8WCtvoxX3pfWrrTv8I4WTMSSs7PZqcRcVh8WeUKMgGFjMG+52SR1w==} engines: {node: '>=20.0.0'} - '@aws-sdk/region-config-resolver@3.972.11': - resolution: {integrity: sha512-6Q8B1dcx6BBqUTY1Mc/eROKA0FImEEY5VPSd6AGPEUf0ErjExz4snVqa9kNJSoVDV1rKaNf3qrWojgcKW+SdDg==} + '@aws-sdk/region-config-resolver@3.972.13': + resolution: {integrity: sha512-CvJ2ZIjK/jVD/lbOpowBVElJyC1YxLTIJ13yM0AEo0t2v7swOzGjSA6lJGH+DwZXQhcjUjoYwc8bVYCX5MDr1A==} engines: {node: '>=20.0.0'} - '@aws-sdk/signature-v4-multi-region@3.996.16': - resolution: {integrity: sha512-EMdXYB4r/k5RWq86fugjRhid5JA+Z6MpS7n4sij4u5/C+STrkvuf9aFu41rJA9MjUzxCLzv8U2XL8cH2GSRYpQ==} + '@aws-sdk/signature-v4-multi-region@3.996.25': + resolution: {integrity: sha512-+CMIt3e1VzlklAECmG+DtP1sV8iKq25FuA0OKpnJ4KA0kxUtd7CgClY7/RU6VzJBQwbN4EJ9Ue6plvqx1qGadw==} engines: {node: '>=20.0.0'} - '@aws-sdk/token-providers@3.1026.0': - resolution: {integrity: sha512-Ieq/HiRrbEtrYP387Nes0XlR7H1pJiJOZKv+QyQzMYpvTiDs0VKy2ZB3E2Zf+aFovWmeE7lRE4lXyF7dYM6GgA==} + '@aws-sdk/token-providers@3.1041.0': + resolution: {integrity: sha512-Th7kPI6YPtvJUcdznooXJMy+9rQWjmEF81LxaJssngBzuysK4a/x+l8kjm1zb7nYsUPbndnBdUnwng/3PLvtGw==} engines: {node: '>=20.0.0'} - '@aws-sdk/types@3.973.7': - resolution: {integrity: sha512-reXRwoJ6CfChoqAsBszUYajAF8Z2LRE+CRcKocvFSMpIiLOtYU3aJ9trmn6VVPAzbbY5LXF+FfmUslbXk1SYFg==} + '@aws-sdk/types@3.973.8': + resolution: {integrity: sha512-gjlAdtHMbtR9X5iIhVUvbVcy55KnznpC6bkDUWW9z915bi0ckdUr5cjf16Kp6xq0bP5HBD2xzgbL9F9Quv5vUw==} engines: {node: '>=20.0.0'} '@aws-sdk/util-arn-parser@3.972.3': resolution: {integrity: sha512-HzSD8PMFrvgi2Kserxuff5VitNq2sgf3w9qxmskKDiDTThWfVteJxuCS9JXiPIPtmCrp+7N9asfIaVhBFORllA==} engines: {node: '>=20.0.0'} - '@aws-sdk/util-endpoints@3.996.6': - resolution: {integrity: sha512-2nUQ+2ih7CShuKHpGSIYvvAIOHy52dOZguYG36zptBukhw6iFwcvGfG0tes0oZFWQqEWvgZe9HLWaNlvXGdOrg==} + '@aws-sdk/util-endpoints@3.996.8': + resolution: {integrity: sha512-oOZHcRDihk5iEe5V25NVWg45b3qEA8OpHWVdU/XQh8Zj4heVPAJqWvMphQnU7LkufmUo10EpvFPZuQMiFLJK3g==} engines: {node: '>=20.0.0'} '@aws-sdk/util-locate-window@3.965.5': resolution: {integrity: sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/util-user-agent-browser@3.972.9': - resolution: {integrity: sha512-sn/LMzTbGjYqCCF24390WxPd6hkpoSptiUn5DzVp4cD71yqw+yGEGm1YCxyEoPXyc8qciM8UzLJcZBFslxo5Uw==} + '@aws-sdk/util-user-agent-browser@3.972.10': + resolution: {integrity: sha512-FAzqXvfEssGdSIz8ejatan0bOdx1qefBWKF/gWmVBXIP1HkS7v/wjjaqrAGGKvyihrXTXW00/2/1nTJtxpXz7g==} - '@aws-sdk/util-user-agent-node@3.973.15': - resolution: {integrity: sha512-fYn3s9PtKdgQkczGZCFMgkNEe8aq1JCVbnRqjqN9RSVW43xn2RV9xdcZ3z01a48Jpkuh/xCmBKJxdLOo4Ozg7w==} + '@aws-sdk/util-user-agent-node@3.973.24': + resolution: {integrity: sha512-ZWwlkjcIp7cEL8ZfTpTAPNkwx25p7xol0xlKoWVVf22+nsjwmLcHYtTPjIV1cSpmB/b6DaK4cb1fSkvCXHgRdw==} engines: {node: '>=20.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -248,8 +254,8 @@ packages: aws-crt: optional: true - '@aws-sdk/xml-builder@3.972.17': - resolution: {integrity: sha512-Ra7hjqAZf1OXRRMueB13qex7mFJRDK/pgCvdSFemXBT8KCGnQDPoKzHY1SjN+TjJVmnpSF14W5tJ1vDamFu+Gg==} + '@aws-sdk/xml-builder@3.972.22': + resolution: {integrity: sha512-PMYKKtJd70IsSG0yHrdAbxBr+ZWBKLvzFZfD3/urxgf6hXVMzuU5M+3MJ5G67RpOmLBu1fAUN65SbWuKUCOlAA==} engines: {node: '>=20.0.0'} '@aws/lambda-invoke-store@0.2.4': @@ -260,8 +266,8 @@ packages: resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.29.0': - resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==} + '@babel/compat-data@7.29.3': + resolution: {integrity: sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==} engines: {node: '>=6.9.0'} '@babel/core@7.29.0': @@ -306,8 +312,8 @@ packages: resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==} engines: {node: '>=6.9.0'} - '@babel/parser@7.29.2': - resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==} + '@babel/parser@7.29.3': + resolution: {integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==} engines: {node: '>=6.0.0'} hasBin: true @@ -323,59 +329,59 @@ packages: resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} engines: {node: '>=6.9.0'} - '@biomejs/biome@2.4.11': - resolution: {integrity: sha512-nWxHX8tf3Opb/qRgZpBbsTOqOodkbrkJ7S+JxJAruxOReaDPPmPuLBAGQ8vigyUgo0QBB+oQltNEAvalLcjggA==} + '@biomejs/biome@2.4.14': + resolution: {integrity: sha512-TmAvxOEgrpLypzVGJ8FulIZnlyA9TxrO1hyqYrCz9r+bwma9xXxuLA5IuYnj55XQneFx460KjRbx6SWGLkg3bQ==} engines: {node: '>=14.21.3'} hasBin: true - '@biomejs/cli-darwin-arm64@2.4.11': - resolution: {integrity: sha512-wOt+ed+L2dgZanWyL6i29qlXMc088N11optzpo10peayObBaAshbTcxKUchzEMp9QSY8rh5h6VfAFE3WTS1rqg==} + '@biomejs/cli-darwin-arm64@2.4.14': + resolution: {integrity: sha512-XvgoE9XOawUOQPdmvs4J7wPhi/DLwSCGks3AlPJDmh34O0awRTqCED1HRcRDdpf1Zrp4us4MGOOdIxNpbqNF5Q==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [darwin] - '@biomejs/cli-darwin-x64@2.4.11': - resolution: {integrity: sha512-gZ6zR8XmZlExfi/Pz/PffmdpWOQ8Qhy7oBztgkR8/ylSRyLwfRPSadmiVCV8WQ8PoJ2MWUy2fgID9zmtgUUJmw==} + '@biomejs/cli-darwin-x64@2.4.14': + resolution: {integrity: sha512-jE7hKBCFhOx3uUh+ZkWBfOHxAcILPfhFplNkuID/eZeSTLHzfZzoZxW8fbqY9xXRnPi7jGNAf1iPVR+0yWsM/Q==} engines: {node: '>=14.21.3'} cpu: [x64] os: [darwin] - '@biomejs/cli-linux-arm64-musl@2.4.11': - resolution: {integrity: sha512-+Sbo1OAmlegtdwqFE8iOxFIWLh1B3OEgsuZfBpyyN/kWuqZ8dx9ZEes6zVnDMo+zRHF2wLynRVhoQmV7ohxl2Q==} + '@biomejs/cli-linux-arm64-musl@2.4.14': + resolution: {integrity: sha512-/z+6gqAqqUQTHazwStxSXKHg9b8UvqBmDFRp+c4wYbq2KXhELQDon9EoC9RpmQ8JWkqQx/lIUy/cs+MhzDZp6A==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] libc: [musl] - '@biomejs/cli-linux-arm64@2.4.11': - resolution: {integrity: sha512-avdJaEElXrKceK0va9FkJ4P5ci3N01TGkc6ni3P8l3BElqbOz42Wg2IyX3gbh0ZLEd4HVKEIrmuVu/AMuSeFFA==} + '@biomejs/cli-linux-arm64@2.4.14': + resolution: {integrity: sha512-2TELhZnW5RSLL063l9rc5xLpA0ZIw0Ccwy/0q384rvNAgFw3yI76bd59547yxowdQr5MNPET/xDLrLuvgSeeWQ==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] libc: [glibc] - '@biomejs/cli-linux-x64-musl@2.4.11': - resolution: {integrity: sha512-bexd2IklK7ZgPhrz6jXzpIL6dEAH9MlJU1xGTrypx+FICxrXUp4CqtwfiuoDKse+UlgAlWtzML3jrMqeEAHEhA==} + '@biomejs/cli-linux-x64-musl@2.4.14': + resolution: {integrity: sha512-R6BWgJdQOwW9ulJatuTVrQkjnODjqHZkKNOqb1sz++3Noe5LYd0i3PchnOBUCYAPHoPWHhjJqbdZlHEu0hpjdA==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] libc: [musl] - '@biomejs/cli-linux-x64@2.4.11': - resolution: {integrity: sha512-TagWV0iomp5LnEnxWFg4nQO+e52Fow349vaX0Q/PIcX6Zhk4GGBgp3qqZ8PVkpC+cuehRctMf3+6+FgQ8jCEFQ==} + '@biomejs/cli-linux-x64@2.4.14': + resolution: {integrity: sha512-zHrlQZDBDUz4OLAraYpWKcnLS6HOewBFWYOzY91d1ZjdqZwibOyb6BEu6WuWLugyo0P3riCmsbV9UqV1cSXwQg==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] libc: [glibc] - '@biomejs/cli-win32-arm64@2.4.11': - resolution: {integrity: sha512-RJhaTnY8byzxDt4bDVb7AFPHkPcjOPK3xBip4ZRTrN3TEfyhjLRm3r3mqknqydgVTB74XG8l4jMLwEACEeihVg==} + '@biomejs/cli-win32-arm64@2.4.14': + resolution: {integrity: sha512-M3EH5hqOI/F/FUA2u4xcLoUgmxd218mvuj/6JL7Hv2toQvr2/AdOvKSpGkoRuWFCtQPVa+ZqkEV3Q5xBA9+XSA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [win32] - '@biomejs/cli-win32-x64@2.4.11': - resolution: {integrity: sha512-A8D3JM/00C2KQgUV3oj8Ba15EHEYwebAGCy5Sf9GAjr5Y3+kJIYOiESoqRDeuRZueuMdCsbLZIUqmPhpYXJE9A==} + '@biomejs/cli-win32-x64@2.4.14': + resolution: {integrity: sha512-WL0EG5qE+EAKomGXbf2g6VnSKJhTL3tXC0QRzWRwA5VpjxNYa6H4P7ZWfymbGE4IhZZQi1KXQ2R0YjwInmz2fA==} engines: {node: '>=14.21.3'} cpu: [x64] os: [win32] @@ -384,18 +390,24 @@ packages: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} - '@commercelayer/cli-core@5.11.1': - resolution: {integrity: sha512-wbnE02yp5jOYY/UUNNFjEkvzScgVU5cJoGrPjXvJow/Vk25i9FXzgFcMSHpMtYJ8IlNFQhCdyx031P1rZx7Rog==} - engines: {node: '>=20'} + '@commercelayer/cli-core@6.0.0-oclif4.11': + resolution: {integrity: sha512-HD4NjYdvkXoeASapO+kkcwYAVw3M29hkVyY1w0SHjozX40tWJwUGFhw97RMV8B6kNuqBZuj/SkS0tX7F/76VNg==} + engines: {node: '>=22'} - '@commercelayer/cli-dev@3.1.1': - resolution: {integrity: sha512-MPnX5i/Y0atRB+sYKLp2LMmAjl6mAT7D8S06lDb4vjlhNMPGd60yF+QyKA+Iz18c5BJhSNRLzwVlDN4ShwGEHQ==} - engines: {node: '>=20'} + '@commercelayer/cli-dev@4.0.0-oclif4.7': + resolution: {integrity: sha512-cztBoqz5by+2z7DX319gS79LJ1QvqX9h7UvORQ3FAQ29CZTr8cTCvWna6k/ZzFVmiWRqf258PUV1N4GGsLaUQA==} + engines: {node: '>=22'} hasBin: true - '@commercelayer/js-auth@6.7.2': - resolution: {integrity: sha512-kk4VqN2iEOreXFq76YqTP83KhBs09Z5Ez9nZNlikXWf5DXzkrOfShqqEwq8ezHjSOlqs4xVyxgQzsEdPP35CeQ==} - engines: {node: '>=18.0.0'} + '@commercelayer/cli-ux@2.0.0-oclif4.12': + resolution: {integrity: sha512-yPqyFiM911s54z+kljYyA3VhTY8MaV2HgTYMB2U/xyPTrWLusjAi32GiCJFXVllzsOK7KHm8rsrS6RkbjtJPqA==} + engines: {node: '>=22'} + peerDependencies: + '@oclif/core': ^4 + + '@commercelayer/js-auth@7.4.1': + resolution: {integrity: sha512-5OLk7EknJowznEEEBBPfcl1uhx5apJ0OESyzqocjCXY3sPma9pabGCMJWelmGIU/esoqvdwNIFGIc2EIeVea6A==} + engines: {node: '>=20.0.0'} '@commercelayer/provisioning-sdk@2.10.2': resolution: {integrity: sha512-5uqqH5CXXAQPuMrz+IGbF2HcQaKzgMzF7z4ye/mdo9Ygp8uMMNYH5jnaPB4QvYBVOMSi8r20egF3B9sFvqILLQ==} @@ -743,45 +755,34 @@ packages: '@jridgewell/trace-mapping@0.3.31': resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@oclif/core@3.27.0': - resolution: {integrity: sha512-Fg93aNFvXzBq5L7ztVHFP2nYwWU1oTCq48G0TjF/qC1UN36KWa2H5Hsm72kERd5x/sjy2M2Tn4kDEorUlpXOlw==} - engines: {node: '>=18.0.0'} + '@nodable/entities@2.1.0': + resolution: {integrity: sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA==} - '@oclif/core@4.10.5': - resolution: {integrity: sha512-qcdCF7NrdWPfme6Kr34wwljRCXbCVpL1WVxiNy0Ep6vbWKjxAjFQwuhqkoyL0yjI+KdwtLcOCGn5z2yzdijc8w==} + '@oclif/core@4.11.0': + resolution: {integrity: sha512-nTkRMgxFlIKQIIYGvhO2JMsLSQ1aHPHblHfFgxgoBrGK8Ao/8wxc4eNOIv/+t8dMXliZd7mREVr6la4aXXXg5A==} engines: {node: '>=18.0.0'} '@oclif/core@4.9.0': resolution: {integrity: sha512-k/ntRgDcUprTT+aaNoF+whk3cY3f9fRD2lkF6ul7JeCUg2MaMXVXZXfbRhJCfsiX51X8/5Pqo0LGdO9SLYXNHg==} engines: {node: '>=18.0.0'} - '@oclif/plugin-help@6.2.44': - resolution: {integrity: sha512-x03Se2LtlOOlGfTuuubt5C4Z8NHeR4zKXtVnfycuLU+2VOMu2WpsGy9nbs3nYuInuvsIY1BizjVaTjUz060Sig==} + '@oclif/plugin-help@6.2.46': + resolution: {integrity: sha512-KmuMFt/fURCVxor0rrRjEqs2nLN0Y3ixcixo/M5VjKcN920gbuw5T+AF23FBeyUDuW/Dg79YPcTWy/Rtz0Dg/A==} engines: {node: '>=18.0.0'} - '@oclif/plugin-not-found@3.2.80': - resolution: {integrity: sha512-yTLjWvR1r/Rd/cO2LxHdMCDoL5sQhBYRUcOMCmxZtWVWhx4rAZ8KVUPDVsb+SvjJDV5ADTDBgt1H52fFx7YWqg==} + '@oclif/plugin-not-found@3.2.82': + resolution: {integrity: sha512-6heNFE2gadcDYijWy4XJc6ZLzPd1qKe0i8sb8uyrR3mX0o5IFA+5KSAx/BFBkGS8j/tKOsCYvvmMKVdReeb1Gg==} engines: {node: '>=18.0.0'} - '@oclif/plugin-warn-if-update-available@3.1.60': - resolution: {integrity: sha512-cRKBZm14IuA6G8W84dfd3iXj3BTAoxQ5o3pUE8DKEQ4n/tVha20t5nkVeD+ISC68e0Fuw5koTMvRwXb1lJSnzg==} + '@oclif/plugin-warn-if-update-available@3.1.62': + resolution: {integrity: sha512-g1tOOf9tJ3RE4dqhUynw3TH8Gea78IkzG9hq2lcUJ5wIdOSzcp8+3SWVzzpKfHgwBGgFupmj8peCjypybJVIrg==} engines: {node: '>=18.0.0'} - '@oclif/test@3.2.15': - resolution: {integrity: sha512-XqG3RosozNqySkxSXInU12Xec2sPSOkqYHJDfdFZiWG3a8Cxu4dnPiAQvms+BJsOlLQmfEQlSHqiyVUKOMHhXA==} + '@oclif/test@4.1.18': + resolution: {integrity: sha512-SIy/8x8OHKh5Z32aS8jpzTDc+FC9531mMyypoH5HiZ0vXNjKJ9+SpbW4nYK2c/X44WcPdmjIImStZ/Wgc2zZnQ==} engines: {node: '>=18.0.0'} + peerDependencies: + '@oclif/core': '>= 3.0.0' '@octokit/auth-token@6.0.0': resolution: {integrity: sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==} @@ -910,24 +911,6 @@ packages: resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} engines: {node: '>=18'} - '@sinonjs/commons@3.0.1': - resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} - - '@sinonjs/fake-timers@10.3.0': - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - - '@sinonjs/fake-timers@11.3.1': - resolution: {integrity: sha512-EVJO7nW5M/F5Tur0Rf2z/QoMo+1Ia963RiMtapiQrEWvY0iBUvADo8Beegwjpnle5BHkyHuoxSTW3jF43H1XRA==} - - '@sinonjs/samsam@8.0.3': - resolution: {integrity: sha512-hw6HbX+GyVZzmaYNh82Ecj1vdGZrqVIn/keDTg63IgAwiQPO+xCz99uG6Woqgb4tM0mUiFENKZ4cqd7IX94AXQ==} - - '@sinonjs/text-encoding@0.7.3': - resolution: {integrity: sha512-DE427ROAphMQzU4ENbliGYrBSYPXF+TtLg9S8vzeA+OF4ZKzoDdzfL8sxuMUGS/lgRhM6j1URSk9ghf7Xo1tyA==} - deprecated: |- - Deprecated: no longer maintained and no longer used by Sinon packages. See - https://github.com/sinonjs/nise/issues/243 for replacement details. - '@smithy/chunked-blob-reader-native@4.2.3': resolution: {integrity: sha512-jA5k5Udn7Y5717L86h4EIv06wIr3xn8GM1qHRi/Nf31annXcXHJjBKvgztnbn2TxH3xWrPBfgwHsOwZf0UmQWw==} engines: {node: '>=18.0.0'} @@ -936,56 +919,56 @@ packages: resolution: {integrity: sha512-St+kVicSyayWQca+I1rGitaOEH6uKgE8IUWoYnnEX26SWdWQcL6LvMSD19Lg+vYHKdT9B2Zuu7rd3i6Wnyb/iw==} engines: {node: '>=18.0.0'} - '@smithy/config-resolver@4.4.15': - resolution: {integrity: sha512-BJdMBY5YO9iHh+lPLYdHv6LbX+J8IcPCYMl1IJdBt2KDWNHwONHrPVHk3ttYBqJd9wxv84wlbN0f7GlQzcQtNQ==} + '@smithy/config-resolver@4.4.17': + resolution: {integrity: sha512-TzDZcAnhTyAHbXVxWZo7/tEcrIeFq20IBk8So3OLOetWpR8EwY/yEqBMBFaJMeyEiREDq4NfEl+qO3OAUD+vbQ==} engines: {node: '>=18.0.0'} - '@smithy/core@3.23.14': - resolution: {integrity: sha512-vJ0IhpZxZAkFYOegMKSrxw7ujhhT2pass/1UEcZ4kfl5srTAqtPU5I7MdYQoreVas3204ykCiNhY1o7Xlz6Yyg==} + '@smithy/core@3.23.17': + resolution: {integrity: sha512-x7BlLbUFL8NWCGjMF9C+1N5cVCxcPa7g6Tv9B4A2luWx3be3oU8hQ96wIwxe/s7OhIzvoJH73HAUSg5JXVlEtQ==} engines: {node: '>=18.0.0'} - '@smithy/credential-provider-imds@4.2.13': - resolution: {integrity: sha512-wboCPijzf6RJKLOvnjDAiBxGSmSnGXj35o5ZAWKDaHa/cvQ5U3ZJ13D4tMCE8JG4dxVAZFy/P0x/V9CwwdfULQ==} + '@smithy/credential-provider-imds@4.2.14': + resolution: {integrity: sha512-Au28zBN48ZAoXdooGUHemuVBrkE+Ie6RPmGNIAJsFqj33Vhb6xAgRifUydZ2aY+M+KaMAETAlKk5NC5h1G7wpg==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-codec@4.2.13': - resolution: {integrity: sha512-vYahwBAtRaAcFbOmE9aLr12z7RiHYDSLcnogSdxfm7kKfsNa3wH+NU5r7vTeB5rKvLsWyPjVX8iH94brP7umiQ==} + '@smithy/eventstream-codec@4.2.14': + resolution: {integrity: sha512-erZq0nOIpzfeZdCyzZjdJb4nVSKLUmSkaQUVkRGQTXs30gyUGeKnrYEg+Xe1W5gE3aReS7IgsvANwVPxSzY6Pw==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-serde-browser@4.2.13': - resolution: {integrity: sha512-wwybfcOX0tLqCcBP378TIU9IqrDuZq/tDV48LlZNydMpCnqnYr+hWBAYbRE+rFFf/p7IkDJySM3bgiMKP2ihPg==} + '@smithy/eventstream-serde-browser@4.2.14': + resolution: {integrity: sha512-8IelTCtTctWRbb+0Dcy+C0aICh1qa0qWXqgjcXDmMuCvPJRnv26hiDZoAau2ILOniki65mCPKqOQs/BaWvO4CQ==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-serde-config-resolver@4.3.13': - resolution: {integrity: sha512-ied1lO559PtAsMJzg2TKRlctLnEi1PfkNeMMpdwXDImk1zV9uvS/Oxoy/vcy9uv1GKZAjDAB5xT6ziE9fzm5wA==} + '@smithy/eventstream-serde-config-resolver@4.3.14': + resolution: {integrity: sha512-sqHiHpYRYo3FJlaIxD1J8PhbcmJAm7IuM16mVnwSkCToD7g00IBZzKuiLNMGmftULmEUX6/UAz8/NN5uMP8bVA==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-serde-node@4.2.13': - resolution: {integrity: sha512-hFyK+ORJrxAN3RYoaD6+gsGDQjeix8HOEkosoajvXYZ4VeqonM3G4jd9IIRm/sWGXUKmudkY9KdYjzosUqdM8A==} + '@smithy/eventstream-serde-node@4.2.14': + resolution: {integrity: sha512-Ht/8BuGlKfFTy0H3+8eEu0vdpwGztCnaLLXtpXNdQqiR7Hj4vFScU3T436vRAjATglOIPjJXronY+1WxxNLSiw==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-serde-universal@4.2.13': - resolution: {integrity: sha512-kRrq4EKLGeOxhC2CBEhRNcu1KSzNJzYY7RK3S7CxMPgB5dRrv55WqQOtRwQxQLC04xqORFLUgnDlc6xrNUULaA==} + '@smithy/eventstream-serde-universal@4.2.14': + resolution: {integrity: sha512-lWyt4T2XQZUZgK3tQ3Wn0w3XBvZsK/vjTuJl6bXbnGZBHH0ZUSONTYiK9TgjTTzU54xQr3DRFwpjmhp0oLm3gg==} engines: {node: '>=18.0.0'} - '@smithy/fetch-http-handler@5.3.16': - resolution: {integrity: sha512-nYDRUIvNd4mFmuXraRWt6w5UsZTNqtj4hXJA/iiOD4tuseIdLP9Lq38teH/SZTcIFCa2f+27o7hYpIsWktJKEQ==} + '@smithy/fetch-http-handler@5.3.17': + resolution: {integrity: sha512-bXOvQzaSm6MnmLaWA1elgfQcAtN4UP3vXqV97bHuoOrHQOJiLT3ds6o9eo5bqd0TJfRFpzdGnDQdW3FACiAVdw==} engines: {node: '>=18.0.0'} - '@smithy/hash-blob-browser@4.2.14': - resolution: {integrity: sha512-rtQ5es8r/5v4rav7q5QTsfx9CtCyzrz/g7ZZZBH2xtMmd6G/KQrLOWfSHTvFOUPlVy59RQvxeBYJaLRoybMEyA==} + '@smithy/hash-blob-browser@4.2.15': + resolution: {integrity: sha512-0PJ4Al3fg2nM4qKrAIxyNcApgqHAXcBkN8FeizOz69z0rb26uZ6lMESYtxegaTlXB5Hj84JfwMPavMrwDMjucA==} engines: {node: '>=18.0.0'} - '@smithy/hash-node@4.2.13': - resolution: {integrity: sha512-4/oy9h0jjmY80a2gOIo75iLl8TOPhmtx4E2Hz+PfMjvx/vLtGY4TMU/35WRyH2JHPfT5CVB38u4JRow7gnmzJA==} + '@smithy/hash-node@4.2.14': + resolution: {integrity: sha512-8ZBDY2DD4wr+GGjTpPtiglEsqr0lUP+KHqgZcWczFf6qeZ/YRjMIOoQWVQlmwu7EtxKTd8YXD8lblmYcpBIA1g==} engines: {node: '>=18.0.0'} - '@smithy/hash-stream-node@4.2.13': - resolution: {integrity: sha512-WdQ7HwUjINXETeh6dqUeob1UHIYx8kAn9PSp1HhM2WWegiZBYVy2WXIs1lB07SZLan/udys9SBnQGt9MQbDpdg==} + '@smithy/hash-stream-node@4.2.14': + resolution: {integrity: sha512-tw4GANWkZPb6+BdD4Fgucqzey2+r73Z/GRo9zklsCdwrnxxumUV83ZIaBDdudV4Ylazw3EPTiJZhpX42105ruQ==} engines: {node: '>=18.0.0'} - '@smithy/invalid-dependency@4.2.13': - resolution: {integrity: sha512-jvC0RB/8BLj2SMIkY0Npl425IdnxZJxInpZJbu563zIRnVjpDMXevU3VMCRSabaLB0kf/eFIOusdGstrLJ8IDg==} + '@smithy/invalid-dependency@4.2.14': + resolution: {integrity: sha512-c21qJiTSb25xvvOp+H2TNZzPCngrvl5vIPqPB8zQ/DmJF4QWXO19x1dWfMJZ6wZuuWUPPm0gV8C0cU3+ifcWuw==} engines: {node: '>=18.0.0'} '@smithy/is-array-buffer@2.2.0': @@ -996,76 +979,76 @@ packages: resolution: {integrity: sha512-n6rQ4N8Jj4YTQO3YFrlgZuwKodf4zUFs7EJIWH86pSCWBaAtAGBFfCM7Wx6D2bBJ2xqFNxGBSrUWswT3M0VJow==} engines: {node: '>=18.0.0'} - '@smithy/md5-js@4.2.13': - resolution: {integrity: sha512-cNm7I9NXolFxtS20ojROddOEpSAeI1Obq6pd1Kj5HtHws3s9Fkk8DdHDfQSs5KuxCewZuVK6UqrJnfJmiMzDuQ==} + '@smithy/md5-js@4.2.14': + resolution: {integrity: sha512-V2v0vx+h0iUSNG1Alt+GNBMSLGCrl9iVsdd+Ap67HPM9PN479x12V8LkuMoKImNZxn3MXeuyUjls+/7ZACZghA==} engines: {node: '>=18.0.0'} - '@smithy/middleware-content-length@4.2.13': - resolution: {integrity: sha512-IPMLm/LE4AZwu6qiE8Rr8vJsWhs9AtOdySRXrOM7xnvclp77Tyh7hMs/FRrMf26kgIe67vFJXXOSmVxS7oKeig==} + '@smithy/middleware-content-length@4.2.14': + resolution: {integrity: sha512-xhHq7fX4/3lv5NHxLUk3OeEvl0xZ+Ek3qIbWaCL4f9JwgDZEclPBElljaZCAItdGPQl/kSM4LPMOpy1MYgprpw==} engines: {node: '>=18.0.0'} - '@smithy/middleware-endpoint@4.4.29': - resolution: {integrity: sha512-R9Q/58U+qBiSARGWbAbFLczECg/RmysRksX6Q8BaQEpt75I7LI6WGDZnjuC9GXSGKljEbA7N118LhGaMbfrTXw==} + '@smithy/middleware-endpoint@4.4.32': + resolution: {integrity: sha512-ZZkgyjnJppiZbIm6Qbx92pbXYi1uzenIvGhBSCDlc7NwuAkiqSgS75j1czAD25ZLs2FjMjYy1q7gyRVWG6JA0Q==} engines: {node: '>=18.0.0'} - '@smithy/middleware-retry@4.5.1': - resolution: {integrity: sha512-/zY+Gp7Qj2D2hVm3irkCyONER7E9MiX3cUUm/k2ZmhkzZkrPgwVS4aJ5NriZUEN/M0D1hhjrgjUmX04HhRwdWA==} + '@smithy/middleware-retry@4.5.7': + resolution: {integrity: sha512-bRt6ZImqVSeTk39Nm81K20ObIiAZ3WefY7G6+iz/0tZjs4dgRRjvRX2sgsH+zi6iDCRR/aQvQofLKxxz4rPBZg==} engines: {node: '>=18.0.0'} - '@smithy/middleware-serde@4.2.17': - resolution: {integrity: sha512-0T2mcaM6v9W1xku86Dk0bEW7aEseG6KenFkPK98XNw0ZhOqOiD1MrMsdnQw9QsL3/Oa85T53iSMlm0SZdSuIEQ==} + '@smithy/middleware-serde@4.2.20': + resolution: {integrity: sha512-Lx9JMO9vArPtiChE3wbEZ5akMIDQpWQtlu90lhACQmNOXcGXRbaDywMHDzuDZ2OkZzP+9wQfZi3YJT9F67zTQQ==} engines: {node: '>=18.0.0'} - '@smithy/middleware-stack@4.2.13': - resolution: {integrity: sha512-g72jN/sGDLyTanrCLH9fhg3oysO3f7tQa6eWWsMyn2BiYNCgjF24n4/I9wff/5XidFvjj9ilipAoQrurTUrLvw==} + '@smithy/middleware-stack@4.2.14': + resolution: {integrity: sha512-2dvkUKLuFdKsCRmOE4Mn63co0Djtsm+JMh0bYZQupN1pJwMeE8FmQmRLLzzEMN0dnNi7CDCYYH8F0EVwWiPBeA==} engines: {node: '>=18.0.0'} - '@smithy/node-config-provider@4.3.13': - resolution: {integrity: sha512-iGxQ04DsKXLckbgnX4ipElrOTk+IHgTyu0q0WssZfYhDm9CQWHmu6cOeI5wmWRxpXbBDhIIfXMWz5tPEtcVqbw==} + '@smithy/node-config-provider@4.3.14': + resolution: {integrity: sha512-S+gFjyo/weSVL0P1b9Ts8C/CwIfNCgUPikk3sl6QVsfE/uUuO+QsF+NsE/JkpvWqqyz1wg7HFdiaZuj5CoBMRg==} engines: {node: '>=18.0.0'} - '@smithy/node-http-handler@4.5.2': - resolution: {integrity: sha512-/oD7u8M0oj2ZTFw7GkuuHWpIxtWdLlnyNkbrWcyVYhd5RJNDuczdkb0wfnQICyNFrVPlr8YHOhamjNy3zidhmA==} + '@smithy/node-http-handler@4.6.1': + resolution: {integrity: sha512-iB+orM4x3xrr57X3YaXazfKnntl0LHlZB1kcXSGzMV1Tt0+YwEjGlbjk/44qEGtBzXAz6yFDzkYTKSV6Pj2HUg==} engines: {node: '>=18.0.0'} - '@smithy/property-provider@4.2.13': - resolution: {integrity: sha512-bGzUCthxRmezuxkbu9wD33wWg9KX3hJpCXpQ93vVkPrHn9ZW6KNNdY5xAUWNuRCwQ+VyboFuWirG1lZhhkcyRQ==} + '@smithy/property-provider@4.2.14': + resolution: {integrity: sha512-WuM31CgfsnQ/10i7NYr0PyxqknD72Y5uMfUMVSniPjbEPceiTErb4eIqJQ+pdxNEAUEWrewrGjIRjVbVHsxZiQ==} engines: {node: '>=18.0.0'} - '@smithy/protocol-http@5.3.13': - resolution: {integrity: sha512-+HsmuJUF4u8POo6s8/a2Yb/AQ5t/YgLovCuHF9oxbocqv+SZ6gd8lC2duBFiCA/vFHoHQhoq7QjqJqZC6xOxxg==} + '@smithy/protocol-http@5.3.14': + resolution: {integrity: sha512-dN5F8kHx8RNU0r+pCwNmFZyz6ChjMkzShy/zup6MtkRmmix4vZzJdW+di7x//b1LiynIev88FM18ie+wwPcQtQ==} engines: {node: '>=18.0.0'} - '@smithy/querystring-builder@4.2.13': - resolution: {integrity: sha512-tG4aOYFCZdPMjbgfhnIQ322H//ojujldp1SrHPHpBSb3NqgUp3dwiUGRJzie87hS1DYwWGqDuPaowoDF+rYCbQ==} + '@smithy/querystring-builder@4.2.14': + resolution: {integrity: sha512-XYA5Z0IqTeF+5XDdh4BBmSA0HvbgVZIyv4cmOoUheDNR57K1HgBp9ukUMx3Cr3XpDHHpLBnexPE3LAtDsZkj2A==} engines: {node: '>=18.0.0'} - '@smithy/querystring-parser@4.2.13': - resolution: {integrity: sha512-hqW3Q4P+CDzUyQ87GrboGMeD7XYNMOF+CuTwu936UQRB/zeYn3jys8C3w+wMkDfY7CyyyVwZQ5cNFoG0x1pYmA==} + '@smithy/querystring-parser@4.2.14': + resolution: {integrity: sha512-hr+YyqBD23GVvRxGGrcc/oOeNlK3PzT5Fu4dzrDXxzS1LpFiuL2PQQqKPs87M79aW7ziMs+nvB3qdw77SqE7Lw==} engines: {node: '>=18.0.0'} - '@smithy/service-error-classification@4.2.13': - resolution: {integrity: sha512-a0s8XZMfOC/qpqq7RCPvJlk93rWFrElH6O++8WJKz0FqnA4Y7fkNi/0mnGgSH1C4x6MFsuBA8VKu4zxFrMe5Vw==} + '@smithy/service-error-classification@4.3.1': + resolution: {integrity: sha512-aUQuDGh760ts/8MU+APjIZhlLPKhIIfqyzZaJikLEIMrdxFvxuLYD0WxWzaYWpmLbQlXDe9p7EWM3HsBe0K6Gw==} engines: {node: '>=18.0.0'} - '@smithy/shared-ini-file-loader@4.4.8': - resolution: {integrity: sha512-VZCZx2bZasxdqxVgEAhREvDSlkatTPnkdWy1+Kiy8w7kYPBosW0V5IeDwzDUMvWBt56zpK658rx1cOBFOYaPaw==} + '@smithy/shared-ini-file-loader@4.4.9': + resolution: {integrity: sha512-495/V2I15SHgedSJoDPD23JuSfKAp726ZI1V0wtjB07Wh7q/0tri/0e0DLefZCHgxZonrGKt/OCTpAtP1wE1kQ==} engines: {node: '>=18.0.0'} - '@smithy/signature-v4@5.3.13': - resolution: {integrity: sha512-YpYSyM0vMDwKbHD/JA7bVOF6kToVRpa+FM5ateEVRpsTNu564g1muBlkTubXhSKKYXInhpADF46FPyrZcTLpXg==} + '@smithy/signature-v4@5.3.14': + resolution: {integrity: sha512-1D9Y/nmlVjCeSivCbhZ7hgEpmHyY1h0GvpSZt3l0xcD9JjmjVC1CHOozS6+Gh+/ldMH8JuJ6cujObQqfayAVFA==} engines: {node: '>=18.0.0'} - '@smithy/smithy-client@4.12.9': - resolution: {integrity: sha512-ovaLEcTU5olSeHcRXcxV6viaKtpkHZumn6Ps0yn7dRf2rRSfy794vpjOtrWDO0d1auDSvAqxO+lyhERSXQ03EQ==} + '@smithy/smithy-client@4.12.13': + resolution: {integrity: sha512-y/Pcj1V9+qG98gyu1gvftHB7rDpdh+7kIBIggs55yGm3JdtBV8GT8IFF3a1qxZ79QnaJHX9GXzvBG6tAd+czJA==} engines: {node: '>=18.0.0'} - '@smithy/types@4.14.0': - resolution: {integrity: sha512-OWgntFLW88kx2qvf/c/67Vno1yuXm/f9M7QFAtVkkO29IJXGBIg0ycEaBTH0kvCtwmvZxRujrgP5a86RvsXJAQ==} + '@smithy/types@4.14.1': + resolution: {integrity: sha512-59b5HtSVrVR/eYNei3BUj3DCPKD/G7EtDDe7OEJE7i7FtQFugYo6MxbotS8mVJkLNVf8gYaAlEBwwtJ9HzhWSg==} engines: {node: '>=18.0.0'} - '@smithy/url-parser@4.2.13': - resolution: {integrity: sha512-2G03yoboIRZlZze2+PT4GZEjgwQsJjUgn6iTsvxA02bVceHR6vp4Cuk7TUnPFWKF+ffNUk3kj4COwkENS2K3vw==} + '@smithy/url-parser@4.2.14': + resolution: {integrity: sha512-p06BiBigJ8bTA3MgnOfCtDUWnAMY0YfedO/GRpmc7p+wg3KW8vbXy1xwSu5ASy0wV7rRYtlfZOIKH4XqfhjSQQ==} engines: {node: '>=18.0.0'} '@smithy/util-base64@4.3.2': @@ -1092,32 +1075,32 @@ packages: resolution: {integrity: sha512-dWU03V3XUprJwaUIFVv4iOnS1FC9HnMHDfUrlNDSh4315v0cWyaIErP8KiqGVbf5z+JupoVpNM7ZB3jFiTejvQ==} engines: {node: '>=18.0.0'} - '@smithy/util-defaults-mode-browser@4.3.45': - resolution: {integrity: sha512-ag9sWc6/nWZAuK3Wm9KlFJUnRkXLrXn33RFjIAmCTFThqLHY+7wCst10BGq56FxslsDrjhSie46c8OULS+BiIw==} + '@smithy/util-defaults-mode-browser@4.3.49': + resolution: {integrity: sha512-a5bNrdiONYB/qE2BuKegvUMd/+ZDwdg4vsNuuSzYE8qs2EYAdK9CynL+Rzn29PbPiUqoz/cbpRbcLzD5lEevHw==} engines: {node: '>=18.0.0'} - '@smithy/util-defaults-mode-node@4.2.50': - resolution: {integrity: sha512-xpjncL5XozFA3No7WypTsPU1du0fFS8flIyO+Wh2nhCy7bpEapvU7BR55Bg+wrfw+1cRA+8G8UsTjaxgzrMzXg==} + '@smithy/util-defaults-mode-node@4.2.54': + resolution: {integrity: sha512-g1cvrJvOnzeJgEdf7AE4luI7gp6L8weE0y9a9wQUSGtjb8QRHDbCJYuE4Sy0SD9N8RrnNPFsPltAz/OSoBR9Zw==} engines: {node: '>=18.0.0'} - '@smithy/util-endpoints@3.4.0': - resolution: {integrity: sha512-QQHGPKkw6NPcU6TJ1rNEEa201srPtZiX4k61xL163vvs9sTqW/XKz+UEuJ00uvPqoN+5Rs4Ka1UJ7+Mp03IXJw==} + '@smithy/util-endpoints@3.4.2': + resolution: {integrity: sha512-a55Tr+3OKld4TTtnT+RhKOQHyPxm3j/xL4OR83WBUhLJaKDS9dnJ7arRMOp3t31dcLhApwG9bgvrRXBHlLdIkg==} engines: {node: '>=18.0.0'} '@smithy/util-hex-encoding@4.2.2': resolution: {integrity: sha512-Qcz3W5vuHK4sLQdyT93k/rfrUwdJ8/HZ+nMUOyGdpeGA1Wxt65zYwi3oEl9kOM+RswvYq90fzkNDahPS8K0OIg==} engines: {node: '>=18.0.0'} - '@smithy/util-middleware@4.2.13': - resolution: {integrity: sha512-GTooyrlmRTqvUen4eK7/K1p6kryF7bnDfq6XsAbIsf2mo51B/utaH+XThY6dKgNCWzMAaH/+OLmqaBuLhLWRow==} + '@smithy/util-middleware@4.2.14': + resolution: {integrity: sha512-1Su2vj9RYNDEv/V+2E+jXkkwGsgR7dc4sfHn9Z7ruzQHJIEni9zzw5CauvRXlFJfmgcqYP8fWa0dkh2Q2YaQyw==} engines: {node: '>=18.0.0'} - '@smithy/util-retry@4.3.1': - resolution: {integrity: sha512-FwmicpgWOkP5kZUjN3y+3JIom8NLGqSAJBeoIgK0rIToI817TEBHCrd0A2qGeKQlgDeP+Jzn4i0H/NLAXGy9uQ==} + '@smithy/util-retry@4.3.8': + resolution: {integrity: sha512-LUIxbTBi+OpvXpg91poGA6BdyoleMDLnfXjVDqyi2RvZmTveY5loE/FgYUBCR5LU2BThW2SoZRh8dTIIy38IPw==} engines: {node: '>=18.0.0'} - '@smithy/util-stream@4.5.22': - resolution: {integrity: sha512-3H8iq/0BfQjUs2/4fbHZ9aG9yNzcuZs24LPkcX1Q7Z+qpqaGM8+qbGmE8zo9m2nCRgamyvS98cHdcWvR6YUsew==} + '@smithy/util-stream@4.5.25': + resolution: {integrity: sha512-/PFpG4k8Ze8Ei+mMKj3oiPICYekthuzePZMgZbCqMiXIHHf4n2aZ4Ps0aSRShycFTGuj/J6XldmC0x0DwednIA==} engines: {node: '>=18.0.0'} '@smithy/util-uri-escape@4.2.2': @@ -1132,8 +1115,8 @@ packages: resolution: {integrity: sha512-75MeYpjdWRe8M5E3AW0O4Cx3UadweS+cwdXjwYGBW5h/gxxnbeZ877sLPX/ZJA9GVTlL/qG0dXP29JWFCD1Ayw==} engines: {node: '>=18.0.0'} - '@smithy/util-waiter@4.2.15': - resolution: {integrity: sha512-oUt9o7n8hBv3BL56sLSneL0XeigZSuem0Hr78JaoK33D9oKieyCvVP8eTSe3j7g2mm/S1DvzxKieG7JEWNJUNg==} + '@smithy/util-waiter@4.3.0': + resolution: {integrity: sha512-JyjYmLAfS+pdxF92o4yLgEoy0zhayKTw73FU1aofLWwLcJw7iSqIY2exGmMTrl/lmZugP5p/zxdFSippJDfKWA==} engines: {node: '>=18.0.0'} '@smithy/uuid@1.1.2': @@ -1159,9 +1142,6 @@ packages: '@types/inquirer@8.2.12': resolution: {integrity: sha512-YxURZF2ZsSjU5TAe06tW0M3sL4UI9AMPA6dd8I72uOtppzNafcY38xkYgCZ/vsVOAyNdzHmvtTpLWilOrbP0dQ==} - '@types/lodash@4.17.24': - resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==} - '@types/mocha@10.0.10': resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==} @@ -1177,12 +1157,6 @@ packages: '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - '@types/sinon@21.0.1': - resolution: {integrity: sha512-5yoJSqLbjH8T9V2bksgRayuhpZy+723/z6wBOR+Soe4ZlXC0eW8Na71TeaZPUWDQvM7LYKa9UGFc6LRqxiR5fQ==} - - '@types/sinonjs__fake-timers@15.0.1': - resolution: {integrity: sha512-Ko2tjWJq8oozHzHV+reuvS5KYIRAokHnGbDwGh/J64LntgpbuylF74ipEL24HCyRjf9FOlBiBHWBR1RlVKsI1w==} - '@types/through@0.0.33': resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} @@ -1261,13 +1235,6 @@ packages: array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - - assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - assertion-error@2.0.1: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} @@ -1292,8 +1259,8 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.10.19: - resolution: {integrity: sha512-qCkNLi2sfBOn8XhZQ0FXsT1Ki/Yo5P90hrkRamVFRS7/KV9hpfA4HkoWNU152+8w0zPjnxo5psx5NL3PSGgv5g==} + baseline-browser-mapping@2.10.27: + resolution: {integrity: sha512-zEs/ufmZoUd7WftKpKyXaT6RFxpQ5Qm9xytKRHvJfxFV9DFJkZph9RvJ1LcOUi0Z1ZVijMte65JbILeV+8QQEA==} engines: {node: '>=6.0.0'} hasBin: true @@ -1365,8 +1332,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001788: - resolution: {integrity: sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==} + caniuse-lite@1.0.30001791: + resolution: {integrity: sha512-yk0l/YSrOnFZk3UROpDLQD9+kC1l4meK/wed583AXrzoarMGJcbRi2Q4RaUYbKxYAsZ8sWmaSa/DsLmdBeI1vQ==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -1375,10 +1342,6 @@ packages: resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} hasBin: true - chai@4.5.0: - resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} - engines: {node: '>=4'} - chai@6.2.2: resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} engines: {node: '>=18'} @@ -1405,9 +1368,6 @@ packages: chardet@2.1.1: resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==} - check-error@1.0.3: - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} - chokidar@4.0.3: resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} engines: {node: '>= 14.16.0'} @@ -1595,10 +1555,6 @@ packages: resolution: {integrity: sha512-e7oWH1LzIdv/prMQ7pmlDlaVoL64glqzvNgkgQNgyec9ORPHrT2jaOqMtRyqJuwWjtfb6v+2rk9pmaHj+F137A==} engines: {node: '>= 16'} - deep-eql@4.1.4: - resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} - engines: {node: '>=6'} - deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} @@ -1622,10 +1578,6 @@ packages: resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - diff@5.2.2: - resolution: {integrity: sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==} - engines: {node: '>=0.3.1'} - diff@7.0.0: resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==} engines: {node: '>=0.3.1'} @@ -1659,8 +1611,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.336: - resolution: {integrity: sha512-AbH9q9J455r/nLmdNZes0G0ZKcRX73FicwowalLs6ijwOmCJSRRrLX63lcAlzy9ux3dWK1w1+1nsBJEWN11hcQ==} + electron-to-chromium@1.5.349: + resolution: {integrity: sha512-QsWVGyRuY07Aqb234QytTfwd5d9AJlfNIQ5wIOl1L+PZDzI9d9+Fn0FRale/QYlFxt/bUnB0/nLd1jFPGxGK1A==} emoji-regex@10.6.0: resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} @@ -1734,35 +1686,23 @@ packages: resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==} engines: {node: ^18.19.0 || >=20.5.0} - fancy-test@3.0.16: - resolution: {integrity: sha512-y1xZFpyYbE2TMiT+agOW2Emv8gr73zvDrKKbcXc8L+gMyIVJFn71cc4ICfzu2zEXjHirpHpdDJN0JBX99wwDXQ==} - engines: {node: '>=18.0.0'} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - fast-content-type-parse@3.0.0: resolution: {integrity: sha512-ZvLdcY8P+N8mGQJahJV5G4U88CSvT1rP8ApL6uETe88MBXrBHAkZlSEySdUlyztF7ccb+Znos3TFqaepHxdhBg==} - fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} - engines: {node: '>=8.6.0'} - fast-levenshtein@3.0.0: resolution: {integrity: sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==} - fast-xml-builder@1.1.4: - resolution: {integrity: sha512-f2jhpN4Eccy0/Uz9csxh3Nu6q4ErKxf0XIsasomfOihuSUa3/xw6w8dnOtCDgEItQFJG8KyXPzQXzcODDrrbOg==} + fast-xml-builder@1.1.8: + resolution: {integrity: sha512-sDVBc2gg8pSKvcbE8rBmOyjSGQf0AdsbqvHeIOv3D/uYNoV4eCReQXyDF8Pdv8+m1FHazACypSz2hR7O2S1LLw==} - fast-xml-parser@5.5.8: - resolution: {integrity: sha512-Z7Fh2nVQSb2d+poDViM063ix2ZGt9jmY1nWhPfHBOK2Hgnb/OW3P4Et3P/81SEej0J7QbWtJqxO05h8QYfK7LQ==} + fast-xml-parser@5.7.2: + resolution: {integrity: sha512-P7oW7tLbYnhOLQk/Gv7cZgzgMPP/XN03K02/Jy6Y/NHzyIAIpxuZIM/YqAkfiXFPxA2CTm7NtCijK9EDu09u2w==} hasBin: true fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} - fastq@1.20.1: - resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==} - fdir@6.5.0: resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} engines: {node: '>=12.0.0'} @@ -1876,9 +1816,6 @@ packages: resolution: {integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==} engines: {node: '>=18'} - get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} @@ -1903,8 +1840,8 @@ packages: resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} engines: {node: '>=18'} - get-tsconfig@4.13.7: - resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==} + get-tsconfig@4.14.0: + resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==} git-hooks-list@3.2.0: resolution: {integrity: sha512-ZHG9a1gEhUMX1TvGrLdyWb9kDopCBbTnI8z4JgRMYxsijWipgjSEYoPWqBuIB0DnRnvqlQSEeVmzpeuPm7NdFQ==} @@ -1918,10 +1855,6 @@ packages: github-slugger@2.0.0: resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - glob@10.5.0: resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me @@ -1935,10 +1868,6 @@ packages: resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} engines: {node: '>=10'} - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - got@13.0.0: resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==} engines: {node: '>=16'} @@ -1970,8 +1899,8 @@ packages: resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} engines: {node: '>=8'} - hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + hasown@2.0.3: + resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==} engines: {node: '>= 0.4'} he@1.2.0: @@ -1996,8 +1925,8 @@ packages: resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} engines: {node: ^16.14.0 || >=18.0.0} - hosted-git-info@9.0.2: - resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==} + hosted-git-info@9.0.3: + resolution: {integrity: sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==} engines: {node: ^20.17.0 || >=22.9.0} html-escaper@2.0.2: @@ -2045,10 +1974,6 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore@5.3.2: - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} - engines: {node: '>= 4'} - import-fresh@3.3.1: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} engines: {node: '>=6'} @@ -2117,18 +2042,10 @@ packages: engines: {node: '>=8'} hasBin: true - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - is-installed-globally@0.4.0: resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} engines: {node: '>=10'} @@ -2208,8 +2125,8 @@ packages: isomorphic-fetch@3.0.0: resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} - issue-parser@7.0.1: - resolution: {integrity: sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==} + issue-parser@7.0.2: + resolution: {integrity: sha512-7atWPjhGEIX3JEtMrOYd8TKzboYlq+5sNbdl9POiLYOI14G5HZiQbZP0Xj5EZdrufQVXfJlpTV0hys0CuxwxZw==} engines: {node: ^18.17 || >=20.6.1} istanbul-lib-coverage@3.2.2: @@ -2281,9 +2198,6 @@ packages: json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - json-with-bigint@3.5.8: resolution: {integrity: sha512-eq/4KP6K34kwa7TcFdtvnftvHCD9KvHOGGICWwMFc4dOOKF5t4iYqnfLK8otCRCRv06FXOzGGyqE8h8ElMvvdw==} @@ -2295,16 +2209,13 @@ packages: jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} - jsonfile@6.2.0: - resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==} + jsonfile@6.2.1: + resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==} jsonwebtoken@9.0.3: resolution: {integrity: sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==} engines: {node: '>=12', npm: '>=6'} - just-extend@6.2.0: - resolution: {integrity: sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==} - jwa@2.0.1: resolution: {integrity: sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==} @@ -2380,9 +2291,6 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} - loupe@2.3.7: - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} - lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} @@ -2393,8 +2301,8 @@ packages: lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - lru-cache@11.3.5: - resolution: {integrity: sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw==} + lru-cache@11.3.6: + resolution: {integrity: sha512-Gf/KoL3C/MlI7Bt0PGI9I+TeTC/I6r/csU58N4BSNc4lppLBeKsOdFYkK+dX0ABDUMJNfCHTyPpzwwO21Awd3A==} engines: {node: 20 || >=22} lru-cache@5.1.1: @@ -2434,10 +2342,6 @@ packages: merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - micromatch@4.0.8: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} @@ -2487,9 +2391,6 @@ packages: engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true - mock-stdin@1.0.0: - resolution: {integrity: sha512-tukRdb9Beu27t6dN+XztSRHq9J0B/CoAOySGzHfn8UTfmqipA5yNT/sDUEyYdAV3Hpka6Wx6kOMxuObdOex60Q==} - ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} @@ -2516,16 +2417,9 @@ packages: nerf-dart@1.0.0: resolution: {integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==} - nise@5.1.9: - resolution: {integrity: sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==} - no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - nock@13.5.6: - resolution: {integrity: sha512-o2zOYiCpzRqSzPj0Zt/dQ/DqZeYoaQ7TUonc/xUPjCGl9WeHpNbxgVvOquXYAaJzI0M9BXV3HTzG0p8IUAbBTQ==} - engines: {node: '>= 10.13'} - node-emoji@2.2.0: resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==} engines: {node: '>=18'} @@ -2543,8 +2437,8 @@ packages: resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} engines: {node: '>=8'} - node-releases@2.0.37: - resolution: {integrity: sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==} + node-releases@2.0.38: + resolution: {integrity: sha512-3qT/88Y3FbH/Kx4szpQQ4HzUbVrHPKTLVpVocKiLfoYvw9XSGOX2FmD2d6DrXbVYyAQTF2HeF6My8jmzx7/CRw==} normalize-package-data@5.0.0: resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} @@ -2578,8 +2472,8 @@ packages: resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==} engines: {node: '>=18'} - npm@11.12.1: - resolution: {integrity: sha512-zcoUuF1kezGSAo0CqtvoLXX3mkRqzuqYdL6Y5tdo8g69NVV3CkjQ6ZBhBgB4d7vGkPcV6TcvLi3GRKPDFX+xTA==} + npm@11.13.0: + resolution: {integrity: sha512-cRmhaghDWA1lFgl3Ug4/VxDJdPBK/U+tNtnrl9kXunFqhWw1x4xL5txkNn7qzPuVfvXOmXyjHpMwsuk2uisbkg==} engines: {node: ^20.17.0 || >=22.9.0} hasBin: true bundledDependencies: @@ -2827,16 +2721,10 @@ packages: resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==} engines: {node: 18 || 20 || >=22} - path-to-regexp@6.3.0: - resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} - path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - pathval@1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -2871,10 +2759,6 @@ packages: resolution: {integrity: sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==} engines: {node: '>=8'} - propagate@2.0.1: - resolution: {integrity: sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==} - engines: {node: '>= 8'} - proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} @@ -2882,9 +2766,6 @@ packages: resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} engines: {node: '>=8'} - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} engines: {node: '>=10'} @@ -2971,10 +2852,6 @@ packages: resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} engines: {node: '>= 4'} - reusify@1.1.0: - resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rimraf@6.1.3: resolution: {integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==} engines: {node: 20 || >=22} @@ -2984,9 +2861,6 @@ packages: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - rxjs@7.8.2: resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} @@ -3052,17 +2926,10 @@ packages: simple-swizzle@0.2.4: resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==} - sinon@16.1.3: - resolution: {integrity: sha512-mjnWWeyxcAf9nC0bXcPmiDut+oE8HYridTNzBbF98AYVLmWwGRp2ISEpyhYflG1ifILT+eNn3BmKUJPxjXUPlA==} - skin-tone@2.0.0: resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} engines: {node: '>=8'} - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - slice-ansi@4.0.0: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} engines: {node: '>=10'} @@ -3106,10 +2973,6 @@ packages: sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - stdout-stderr@0.1.13: - resolution: {integrity: sha512-Xnt9/HHHYfjZ7NeQLvuQDyL1LnbsbddgMFKCuaQKwGCdJm8LnstZIXop+uOY36UR1UXXoHXfMbC1KlVdVd2JLA==} - engines: {node: '>=8.0.0'} - stream-combiner2@1.1.1: resolution: {integrity: sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==} @@ -3260,14 +3123,6 @@ packages: resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} - type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - - type-detect@4.1.0: - resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} - engines: {node: '>=4'} - type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} @@ -3292,15 +3147,15 @@ packages: resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} engines: {node: '>=16'} - type-fest@5.5.0: - resolution: {integrity: sha512-PlBfpQwiUvGViBNX84Yxwjsdhd1TUlXr6zjX7eoirtCPIr08NAmxwa+fcYBTeRQxHo9YC9wwF3m9i700sHma8g==} + type-fest@5.6.0: + resolution: {integrity: sha512-8ZiHFm91orbSAe2PSAiSVBVko18pbhbiB3U9GglSzF/zCGkR+rxpHx6sEMCUm4kxY4LjDIUGgCfUMtwfZfjfUA==} engines: {node: '>=20'} typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} - typescript@6.0.2: - resolution: {integrity: sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==} + typescript@6.0.3: + resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==} engines: {node: '>=14.17'} hasBin: true @@ -3383,6 +3238,7 @@ packages: uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true validate-npm-package-license@3.0.4: @@ -3512,16 +3368,16 @@ packages: snapshots: - '@actions/core@3.0.0': + '@actions/core@3.0.1': dependencies: '@actions/exec': 3.0.0 - '@actions/http-client': 4.0.0 + '@actions/http-client': 4.0.1 '@actions/exec@3.0.0': dependencies: '@actions/io': 3.0.2 - '@actions/http-client@4.0.0': + '@actions/http-client@4.0.1': dependencies: tunnel: 0.0.6 undici: 6.25.0 @@ -3531,20 +3387,20 @@ snapshots: '@aws-crypto/crc32@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.7 + '@aws-sdk/types': 3.973.8 tslib: 2.8.1 '@aws-crypto/crc32c@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.7 + '@aws-sdk/types': 3.973.8 tslib: 2.8.1 '@aws-crypto/sha1-browser@5.2.0': dependencies: '@aws-crypto/supports-web-crypto': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.7 + '@aws-sdk/types': 3.973.8 '@aws-sdk/util-locate-window': 3.965.5 '@smithy/util-utf8': 2.3.0 tslib: 2.8.1 @@ -3554,7 +3410,7 @@ snapshots: '@aws-crypto/sha256-js': 5.2.0 '@aws-crypto/supports-web-crypto': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.7 + '@aws-sdk/types': 3.973.8 '@aws-sdk/util-locate-window': 3.965.5 '@smithy/util-utf8': 2.3.0 tslib: 2.8.1 @@ -3562,7 +3418,7 @@ snapshots: '@aws-crypto/sha256-js@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.7 + '@aws-sdk/types': 3.973.8 tslib: 2.8.1 '@aws-crypto/supports-web-crypto@5.2.0': @@ -3571,7 +3427,7 @@ snapshots: '@aws-crypto/util@5.2.0': dependencies: - '@aws-sdk/types': 3.973.7 + '@aws-sdk/types': 3.973.8 '@smithy/util-utf8': 2.3.0 tslib: 2.8.1 @@ -3579,44 +3435,44 @@ snapshots: dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.973.27 - '@aws-sdk/credential-provider-node': 3.972.30 - '@aws-sdk/middleware-host-header': 3.972.9 - '@aws-sdk/middleware-logger': 3.972.9 - '@aws-sdk/middleware-recursion-detection': 3.972.10 - '@aws-sdk/middleware-user-agent': 3.972.29 - '@aws-sdk/region-config-resolver': 3.972.11 - '@aws-sdk/types': 3.973.7 - '@aws-sdk/util-endpoints': 3.996.6 - '@aws-sdk/util-user-agent-browser': 3.972.9 - '@aws-sdk/util-user-agent-node': 3.973.15 - '@smithy/config-resolver': 4.4.15 - '@smithy/core': 3.23.14 - '@smithy/fetch-http-handler': 5.3.16 - '@smithy/hash-node': 4.2.13 - '@smithy/invalid-dependency': 4.2.13 - '@smithy/middleware-content-length': 4.2.13 - '@smithy/middleware-endpoint': 4.4.29 - '@smithy/middleware-retry': 4.5.1 - '@smithy/middleware-serde': 4.2.17 - '@smithy/middleware-stack': 4.2.13 - '@smithy/node-config-provider': 4.3.13 - '@smithy/node-http-handler': 4.5.2 - '@smithy/protocol-http': 5.3.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 - '@smithy/url-parser': 4.2.13 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/credential-provider-node': 3.972.39 + '@aws-sdk/middleware-host-header': 3.972.10 + '@aws-sdk/middleware-logger': 3.972.10 + '@aws-sdk/middleware-recursion-detection': 3.972.11 + '@aws-sdk/middleware-user-agent': 3.972.38 + '@aws-sdk/region-config-resolver': 3.972.13 + '@aws-sdk/types': 3.973.8 + '@aws-sdk/util-endpoints': 3.996.8 + '@aws-sdk/util-user-agent-browser': 3.972.10 + '@aws-sdk/util-user-agent-node': 3.973.24 + '@smithy/config-resolver': 4.4.17 + '@smithy/core': 3.23.17 + '@smithy/fetch-http-handler': 5.3.17 + '@smithy/hash-node': 4.2.14 + '@smithy/invalid-dependency': 4.2.14 + '@smithy/middleware-content-length': 4.2.14 + '@smithy/middleware-endpoint': 4.4.32 + '@smithy/middleware-retry': 4.5.7 + '@smithy/middleware-serde': 4.2.20 + '@smithy/middleware-stack': 4.2.14 + '@smithy/node-config-provider': 4.3.14 + '@smithy/node-http-handler': 4.6.1 + '@smithy/protocol-http': 5.3.14 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 + '@smithy/url-parser': 4.2.14 '@smithy/util-base64': 4.3.2 '@smithy/util-body-length-browser': 4.2.2 '@smithy/util-body-length-node': 4.2.3 - '@smithy/util-defaults-mode-browser': 4.3.45 - '@smithy/util-defaults-mode-node': 4.2.50 - '@smithy/util-endpoints': 3.4.0 - '@smithy/util-middleware': 4.2.13 - '@smithy/util-retry': 4.3.1 - '@smithy/util-stream': 4.5.22 + '@smithy/util-defaults-mode-browser': 4.3.49 + '@smithy/util-defaults-mode-node': 4.2.54 + '@smithy/util-endpoints': 3.4.2 + '@smithy/util-middleware': 4.2.14 + '@smithy/util-retry': 4.3.8 + '@smithy/util-stream': 4.5.25 '@smithy/util-utf8': 4.2.2 - '@smithy/util-waiter': 4.2.15 + '@smithy/util-waiter': 4.3.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -3626,394 +3482,397 @@ snapshots: '@aws-crypto/sha1-browser': 5.2.0 '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.973.27 - '@aws-sdk/credential-provider-node': 3.972.30 - '@aws-sdk/middleware-bucket-endpoint': 3.972.9 - '@aws-sdk/middleware-expect-continue': 3.972.9 - '@aws-sdk/middleware-flexible-checksums': 3.974.7 - '@aws-sdk/middleware-host-header': 3.972.9 - '@aws-sdk/middleware-location-constraint': 3.972.9 - '@aws-sdk/middleware-logger': 3.972.9 - '@aws-sdk/middleware-recursion-detection': 3.972.10 - '@aws-sdk/middleware-sdk-s3': 3.972.28 - '@aws-sdk/middleware-ssec': 3.972.9 - '@aws-sdk/middleware-user-agent': 3.972.29 - '@aws-sdk/region-config-resolver': 3.972.11 - '@aws-sdk/signature-v4-multi-region': 3.996.16 - '@aws-sdk/types': 3.973.7 - '@aws-sdk/util-endpoints': 3.996.6 - '@aws-sdk/util-user-agent-browser': 3.972.9 - '@aws-sdk/util-user-agent-node': 3.973.15 - '@smithy/config-resolver': 4.4.15 - '@smithy/core': 3.23.14 - '@smithy/eventstream-serde-browser': 4.2.13 - '@smithy/eventstream-serde-config-resolver': 4.3.13 - '@smithy/eventstream-serde-node': 4.2.13 - '@smithy/fetch-http-handler': 5.3.16 - '@smithy/hash-blob-browser': 4.2.14 - '@smithy/hash-node': 4.2.13 - '@smithy/hash-stream-node': 4.2.13 - '@smithy/invalid-dependency': 4.2.13 - '@smithy/md5-js': 4.2.13 - '@smithy/middleware-content-length': 4.2.13 - '@smithy/middleware-endpoint': 4.4.29 - '@smithy/middleware-retry': 4.5.1 - '@smithy/middleware-serde': 4.2.17 - '@smithy/middleware-stack': 4.2.13 - '@smithy/node-config-provider': 4.3.13 - '@smithy/node-http-handler': 4.5.2 - '@smithy/protocol-http': 5.3.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 - '@smithy/url-parser': 4.2.13 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/credential-provider-node': 3.972.39 + '@aws-sdk/middleware-bucket-endpoint': 3.972.10 + '@aws-sdk/middleware-expect-continue': 3.972.10 + '@aws-sdk/middleware-flexible-checksums': 3.974.16 + '@aws-sdk/middleware-host-header': 3.972.10 + '@aws-sdk/middleware-location-constraint': 3.972.10 + '@aws-sdk/middleware-logger': 3.972.10 + '@aws-sdk/middleware-recursion-detection': 3.972.11 + '@aws-sdk/middleware-sdk-s3': 3.972.37 + '@aws-sdk/middleware-ssec': 3.972.10 + '@aws-sdk/middleware-user-agent': 3.972.38 + '@aws-sdk/region-config-resolver': 3.972.13 + '@aws-sdk/signature-v4-multi-region': 3.996.25 + '@aws-sdk/types': 3.973.8 + '@aws-sdk/util-endpoints': 3.996.8 + '@aws-sdk/util-user-agent-browser': 3.972.10 + '@aws-sdk/util-user-agent-node': 3.973.24 + '@smithy/config-resolver': 4.4.17 + '@smithy/core': 3.23.17 + '@smithy/eventstream-serde-browser': 4.2.14 + '@smithy/eventstream-serde-config-resolver': 4.3.14 + '@smithy/eventstream-serde-node': 4.2.14 + '@smithy/fetch-http-handler': 5.3.17 + '@smithy/hash-blob-browser': 4.2.15 + '@smithy/hash-node': 4.2.14 + '@smithy/hash-stream-node': 4.2.14 + '@smithy/invalid-dependency': 4.2.14 + '@smithy/md5-js': 4.2.14 + '@smithy/middleware-content-length': 4.2.14 + '@smithy/middleware-endpoint': 4.4.32 + '@smithy/middleware-retry': 4.5.7 + '@smithy/middleware-serde': 4.2.20 + '@smithy/middleware-stack': 4.2.14 + '@smithy/node-config-provider': 4.3.14 + '@smithy/node-http-handler': 4.6.1 + '@smithy/protocol-http': 5.3.14 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 + '@smithy/url-parser': 4.2.14 '@smithy/util-base64': 4.3.2 '@smithy/util-body-length-browser': 4.2.2 '@smithy/util-body-length-node': 4.2.3 - '@smithy/util-defaults-mode-browser': 4.3.45 - '@smithy/util-defaults-mode-node': 4.2.50 - '@smithy/util-endpoints': 3.4.0 - '@smithy/util-middleware': 4.2.13 - '@smithy/util-retry': 4.3.1 - '@smithy/util-stream': 4.5.22 + '@smithy/util-defaults-mode-browser': 4.3.49 + '@smithy/util-defaults-mode-node': 4.2.54 + '@smithy/util-endpoints': 3.4.2 + '@smithy/util-middleware': 4.2.14 + '@smithy/util-retry': 4.3.8 + '@smithy/util-stream': 4.5.25 '@smithy/util-utf8': 4.2.2 - '@smithy/util-waiter': 4.2.15 + '@smithy/util-waiter': 4.3.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/core@3.973.27': - dependencies: - '@aws-sdk/types': 3.973.7 - '@aws-sdk/xml-builder': 3.972.17 - '@smithy/core': 3.23.14 - '@smithy/node-config-provider': 4.3.13 - '@smithy/property-provider': 4.2.13 - '@smithy/protocol-http': 5.3.13 - '@smithy/signature-v4': 5.3.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 + '@aws-sdk/core@3.974.8': + dependencies: + '@aws-sdk/types': 3.973.8 + '@aws-sdk/xml-builder': 3.972.22 + '@smithy/core': 3.23.17 + '@smithy/node-config-provider': 4.3.14 + '@smithy/property-provider': 4.2.14 + '@smithy/protocol-http': 5.3.14 + '@smithy/signature-v4': 5.3.14 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 '@smithy/util-base64': 4.3.2 - '@smithy/util-middleware': 4.2.13 + '@smithy/util-middleware': 4.2.14 + '@smithy/util-retry': 4.3.8 '@smithy/util-utf8': 4.2.2 tslib: 2.8.1 - '@aws-sdk/crc64-nvme@3.972.6': + '@aws-sdk/crc64-nvme@3.972.7': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-env@3.972.25': + '@aws-sdk/credential-provider-env@3.972.34': dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/types': 3.973.7 - '@smithy/property-provider': 4.2.13 - '@smithy/types': 4.14.0 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/types': 3.973.8 + '@smithy/property-provider': 4.2.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-http@3.972.27': - dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/types': 3.973.7 - '@smithy/fetch-http-handler': 5.3.16 - '@smithy/node-http-handler': 4.5.2 - '@smithy/property-provider': 4.2.13 - '@smithy/protocol-http': 5.3.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 - '@smithy/util-stream': 4.5.22 + '@aws-sdk/credential-provider-http@3.972.36': + dependencies: + '@aws-sdk/core': 3.974.8 + '@aws-sdk/types': 3.973.8 + '@smithy/fetch-http-handler': 5.3.17 + '@smithy/node-http-handler': 4.6.1 + '@smithy/property-provider': 4.2.14 + '@smithy/protocol-http': 5.3.14 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 + '@smithy/util-stream': 4.5.25 tslib: 2.8.1 - '@aws-sdk/credential-provider-ini@3.972.29': - dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/credential-provider-env': 3.972.25 - '@aws-sdk/credential-provider-http': 3.972.27 - '@aws-sdk/credential-provider-login': 3.972.29 - '@aws-sdk/credential-provider-process': 3.972.25 - '@aws-sdk/credential-provider-sso': 3.972.29 - '@aws-sdk/credential-provider-web-identity': 3.972.29 - '@aws-sdk/nested-clients': 3.996.19 - '@aws-sdk/types': 3.973.7 - '@smithy/credential-provider-imds': 4.2.13 - '@smithy/property-provider': 4.2.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 + '@aws-sdk/credential-provider-ini@3.972.38': + dependencies: + '@aws-sdk/core': 3.974.8 + '@aws-sdk/credential-provider-env': 3.972.34 + '@aws-sdk/credential-provider-http': 3.972.36 + '@aws-sdk/credential-provider-login': 3.972.38 + '@aws-sdk/credential-provider-process': 3.972.34 + '@aws-sdk/credential-provider-sso': 3.972.38 + '@aws-sdk/credential-provider-web-identity': 3.972.38 + '@aws-sdk/nested-clients': 3.997.6 + '@aws-sdk/types': 3.973.8 + '@smithy/credential-provider-imds': 4.2.14 + '@smithy/property-provider': 4.2.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/credential-provider-login@3.972.29': + '@aws-sdk/credential-provider-login@3.972.38': dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/nested-clients': 3.996.19 - '@aws-sdk/types': 3.973.7 - '@smithy/property-provider': 4.2.13 - '@smithy/protocol-http': 5.3.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/nested-clients': 3.997.6 + '@aws-sdk/types': 3.973.8 + '@smithy/property-provider': 4.2.14 + '@smithy/protocol-http': 5.3.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/credential-provider-node@3.972.30': - dependencies: - '@aws-sdk/credential-provider-env': 3.972.25 - '@aws-sdk/credential-provider-http': 3.972.27 - '@aws-sdk/credential-provider-ini': 3.972.29 - '@aws-sdk/credential-provider-process': 3.972.25 - '@aws-sdk/credential-provider-sso': 3.972.29 - '@aws-sdk/credential-provider-web-identity': 3.972.29 - '@aws-sdk/types': 3.973.7 - '@smithy/credential-provider-imds': 4.2.13 - '@smithy/property-provider': 4.2.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 + '@aws-sdk/credential-provider-node@3.972.39': + dependencies: + '@aws-sdk/credential-provider-env': 3.972.34 + '@aws-sdk/credential-provider-http': 3.972.36 + '@aws-sdk/credential-provider-ini': 3.972.38 + '@aws-sdk/credential-provider-process': 3.972.34 + '@aws-sdk/credential-provider-sso': 3.972.38 + '@aws-sdk/credential-provider-web-identity': 3.972.38 + '@aws-sdk/types': 3.973.8 + '@smithy/credential-provider-imds': 4.2.14 + '@smithy/property-provider': 4.2.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/credential-provider-process@3.972.25': + '@aws-sdk/credential-provider-process@3.972.34': dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/types': 3.973.7 - '@smithy/property-provider': 4.2.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/types': 3.973.8 + '@smithy/property-provider': 4.2.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-sso@3.972.29': + '@aws-sdk/credential-provider-sso@3.972.38': dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/nested-clients': 3.996.19 - '@aws-sdk/token-providers': 3.1026.0 - '@aws-sdk/types': 3.973.7 - '@smithy/property-provider': 4.2.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/nested-clients': 3.997.6 + '@aws-sdk/token-providers': 3.1041.0 + '@aws-sdk/types': 3.973.8 + '@smithy/property-provider': 4.2.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/credential-provider-web-identity@3.972.29': + '@aws-sdk/credential-provider-web-identity@3.972.38': dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/nested-clients': 3.996.19 - '@aws-sdk/types': 3.973.7 - '@smithy/property-provider': 4.2.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/nested-clients': 3.997.6 + '@aws-sdk/types': 3.973.8 + '@smithy/property-provider': 4.2.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/middleware-bucket-endpoint@3.972.9': + '@aws-sdk/middleware-bucket-endpoint@3.972.10': dependencies: - '@aws-sdk/types': 3.973.7 + '@aws-sdk/types': 3.973.8 '@aws-sdk/util-arn-parser': 3.972.3 - '@smithy/node-config-provider': 4.3.13 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 + '@smithy/node-config-provider': 4.3.14 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 '@smithy/util-config-provider': 4.2.2 tslib: 2.8.1 - '@aws-sdk/middleware-expect-continue@3.972.9': + '@aws-sdk/middleware-expect-continue@3.972.10': dependencies: - '@aws-sdk/types': 3.973.7 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 + '@aws-sdk/types': 3.973.8 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/middleware-flexible-checksums@3.974.7': + '@aws-sdk/middleware-flexible-checksums@3.974.16': dependencies: '@aws-crypto/crc32': 5.2.0 '@aws-crypto/crc32c': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/core': 3.973.27 - '@aws-sdk/crc64-nvme': 3.972.6 - '@aws-sdk/types': 3.973.7 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/crc64-nvme': 3.972.7 + '@aws-sdk/types': 3.973.8 '@smithy/is-array-buffer': 4.2.2 - '@smithy/node-config-provider': 4.3.13 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 - '@smithy/util-middleware': 4.2.13 - '@smithy/util-stream': 4.5.22 + '@smithy/node-config-provider': 4.3.14 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 + '@smithy/util-middleware': 4.2.14 + '@smithy/util-stream': 4.5.25 '@smithy/util-utf8': 4.2.2 tslib: 2.8.1 - '@aws-sdk/middleware-host-header@3.972.9': + '@aws-sdk/middleware-host-header@3.972.10': dependencies: - '@aws-sdk/types': 3.973.7 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 + '@aws-sdk/types': 3.973.8 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/middleware-location-constraint@3.972.9': + '@aws-sdk/middleware-location-constraint@3.972.10': dependencies: - '@aws-sdk/types': 3.973.7 - '@smithy/types': 4.14.0 + '@aws-sdk/types': 3.973.8 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/middleware-logger@3.972.9': + '@aws-sdk/middleware-logger@3.972.10': dependencies: - '@aws-sdk/types': 3.973.7 - '@smithy/types': 4.14.0 + '@aws-sdk/types': 3.973.8 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/middleware-recursion-detection@3.972.10': + '@aws-sdk/middleware-recursion-detection@3.972.11': dependencies: - '@aws-sdk/types': 3.973.7 + '@aws-sdk/types': 3.973.8 '@aws/lambda-invoke-store': 0.2.4 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/middleware-sdk-s3@3.972.28': + '@aws-sdk/middleware-sdk-s3@3.972.37': dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/types': 3.973.7 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/types': 3.973.8 '@aws-sdk/util-arn-parser': 3.972.3 - '@smithy/core': 3.23.14 - '@smithy/node-config-provider': 4.3.13 - '@smithy/protocol-http': 5.3.13 - '@smithy/signature-v4': 5.3.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 + '@smithy/core': 3.23.17 + '@smithy/node-config-provider': 4.3.14 + '@smithy/protocol-http': 5.3.14 + '@smithy/signature-v4': 5.3.14 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 '@smithy/util-config-provider': 4.2.2 - '@smithy/util-middleware': 4.2.13 - '@smithy/util-stream': 4.5.22 + '@smithy/util-middleware': 4.2.14 + '@smithy/util-stream': 4.5.25 '@smithy/util-utf8': 4.2.2 tslib: 2.8.1 - '@aws-sdk/middleware-ssec@3.972.9': + '@aws-sdk/middleware-ssec@3.972.10': dependencies: - '@aws-sdk/types': 3.973.7 - '@smithy/types': 4.14.0 + '@aws-sdk/types': 3.973.8 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/middleware-user-agent@3.972.29': + '@aws-sdk/middleware-user-agent@3.972.38': dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/types': 3.973.7 - '@aws-sdk/util-endpoints': 3.996.6 - '@smithy/core': 3.23.14 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 - '@smithy/util-retry': 4.3.1 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/types': 3.973.8 + '@aws-sdk/util-endpoints': 3.996.8 + '@smithy/core': 3.23.17 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 + '@smithy/util-retry': 4.3.8 tslib: 2.8.1 - '@aws-sdk/nested-clients@3.996.19': + '@aws-sdk/nested-clients@3.997.6': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.973.27 - '@aws-sdk/middleware-host-header': 3.972.9 - '@aws-sdk/middleware-logger': 3.972.9 - '@aws-sdk/middleware-recursion-detection': 3.972.10 - '@aws-sdk/middleware-user-agent': 3.972.29 - '@aws-sdk/region-config-resolver': 3.972.11 - '@aws-sdk/types': 3.973.7 - '@aws-sdk/util-endpoints': 3.996.6 - '@aws-sdk/util-user-agent-browser': 3.972.9 - '@aws-sdk/util-user-agent-node': 3.973.15 - '@smithy/config-resolver': 4.4.15 - '@smithy/core': 3.23.14 - '@smithy/fetch-http-handler': 5.3.16 - '@smithy/hash-node': 4.2.13 - '@smithy/invalid-dependency': 4.2.13 - '@smithy/middleware-content-length': 4.2.13 - '@smithy/middleware-endpoint': 4.4.29 - '@smithy/middleware-retry': 4.5.1 - '@smithy/middleware-serde': 4.2.17 - '@smithy/middleware-stack': 4.2.13 - '@smithy/node-config-provider': 4.3.13 - '@smithy/node-http-handler': 4.5.2 - '@smithy/protocol-http': 5.3.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 - '@smithy/url-parser': 4.2.13 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/middleware-host-header': 3.972.10 + '@aws-sdk/middleware-logger': 3.972.10 + '@aws-sdk/middleware-recursion-detection': 3.972.11 + '@aws-sdk/middleware-user-agent': 3.972.38 + '@aws-sdk/region-config-resolver': 3.972.13 + '@aws-sdk/signature-v4-multi-region': 3.996.25 + '@aws-sdk/types': 3.973.8 + '@aws-sdk/util-endpoints': 3.996.8 + '@aws-sdk/util-user-agent-browser': 3.972.10 + '@aws-sdk/util-user-agent-node': 3.973.24 + '@smithy/config-resolver': 4.4.17 + '@smithy/core': 3.23.17 + '@smithy/fetch-http-handler': 5.3.17 + '@smithy/hash-node': 4.2.14 + '@smithy/invalid-dependency': 4.2.14 + '@smithy/middleware-content-length': 4.2.14 + '@smithy/middleware-endpoint': 4.4.32 + '@smithy/middleware-retry': 4.5.7 + '@smithy/middleware-serde': 4.2.20 + '@smithy/middleware-stack': 4.2.14 + '@smithy/node-config-provider': 4.3.14 + '@smithy/node-http-handler': 4.6.1 + '@smithy/protocol-http': 5.3.14 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 + '@smithy/url-parser': 4.2.14 '@smithy/util-base64': 4.3.2 '@smithy/util-body-length-browser': 4.2.2 '@smithy/util-body-length-node': 4.2.3 - '@smithy/util-defaults-mode-browser': 4.3.45 - '@smithy/util-defaults-mode-node': 4.2.50 - '@smithy/util-endpoints': 3.4.0 - '@smithy/util-middleware': 4.2.13 - '@smithy/util-retry': 4.3.1 + '@smithy/util-defaults-mode-browser': 4.3.49 + '@smithy/util-defaults-mode-node': 4.2.54 + '@smithy/util-endpoints': 3.4.2 + '@smithy/util-middleware': 4.2.14 + '@smithy/util-retry': 4.3.8 '@smithy/util-utf8': 4.2.2 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/region-config-resolver@3.972.11': + '@aws-sdk/region-config-resolver@3.972.13': dependencies: - '@aws-sdk/types': 3.973.7 - '@smithy/config-resolver': 4.4.15 - '@smithy/node-config-provider': 4.3.13 - '@smithy/types': 4.14.0 + '@aws-sdk/types': 3.973.8 + '@smithy/config-resolver': 4.4.17 + '@smithy/node-config-provider': 4.3.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/signature-v4-multi-region@3.996.16': + '@aws-sdk/signature-v4-multi-region@3.996.25': dependencies: - '@aws-sdk/middleware-sdk-s3': 3.972.28 - '@aws-sdk/types': 3.973.7 - '@smithy/protocol-http': 5.3.13 - '@smithy/signature-v4': 5.3.13 - '@smithy/types': 4.14.0 + '@aws-sdk/middleware-sdk-s3': 3.972.37 + '@aws-sdk/types': 3.973.8 + '@smithy/protocol-http': 5.3.14 + '@smithy/signature-v4': 5.3.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@aws-sdk/token-providers@3.1026.0': + '@aws-sdk/token-providers@3.1041.0': dependencies: - '@aws-sdk/core': 3.973.27 - '@aws-sdk/nested-clients': 3.996.19 - '@aws-sdk/types': 3.973.7 - '@smithy/property-provider': 4.2.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 + '@aws-sdk/core': 3.974.8 + '@aws-sdk/nested-clients': 3.997.6 + '@aws-sdk/types': 3.973.8 + '@smithy/property-provider': 4.2.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/types@3.973.7': + '@aws-sdk/types@3.973.8': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 '@aws-sdk/util-arn-parser@3.972.3': dependencies: tslib: 2.8.1 - '@aws-sdk/util-endpoints@3.996.6': + '@aws-sdk/util-endpoints@3.996.8': dependencies: - '@aws-sdk/types': 3.973.7 - '@smithy/types': 4.14.0 - '@smithy/url-parser': 4.2.13 - '@smithy/util-endpoints': 3.4.0 + '@aws-sdk/types': 3.973.8 + '@smithy/types': 4.14.1 + '@smithy/url-parser': 4.2.14 + '@smithy/util-endpoints': 3.4.2 tslib: 2.8.1 '@aws-sdk/util-locate-window@3.965.5': dependencies: tslib: 2.8.1 - '@aws-sdk/util-user-agent-browser@3.972.9': + '@aws-sdk/util-user-agent-browser@3.972.10': dependencies: - '@aws-sdk/types': 3.973.7 - '@smithy/types': 4.14.0 + '@aws-sdk/types': 3.973.8 + '@smithy/types': 4.14.1 bowser: 2.14.1 tslib: 2.8.1 - '@aws-sdk/util-user-agent-node@3.973.15': + '@aws-sdk/util-user-agent-node@3.973.24': dependencies: - '@aws-sdk/middleware-user-agent': 3.972.29 - '@aws-sdk/types': 3.973.7 - '@smithy/node-config-provider': 4.3.13 - '@smithy/types': 4.14.0 + '@aws-sdk/middleware-user-agent': 3.972.38 + '@aws-sdk/types': 3.973.8 + '@smithy/node-config-provider': 4.3.14 + '@smithy/types': 4.14.1 '@smithy/util-config-provider': 4.2.2 tslib: 2.8.1 - '@aws-sdk/xml-builder@3.972.17': + '@aws-sdk/xml-builder@3.972.22': dependencies: - '@smithy/types': 4.14.0 - fast-xml-parser: 5.5.8 + '@nodable/entities': 2.1.0 + '@smithy/types': 4.14.1 + fast-xml-parser: 5.7.2 tslib: 2.8.1 '@aws/lambda-invoke-store@0.2.4': {} @@ -4024,7 +3883,7 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/compat-data@7.29.0': {} + '@babel/compat-data@7.29.3': {} '@babel/core@7.29.0': dependencies: @@ -4033,7 +3892,7 @@ snapshots: '@babel/helper-compilation-targets': 7.28.6 '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) '@babel/helpers': 7.29.2 - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.3 '@babel/template': 7.28.6 '@babel/traverse': 7.29.0 '@babel/types': 7.29.0 @@ -4048,7 +3907,7 @@ snapshots: '@babel/generator@7.29.1': dependencies: - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.3 '@babel/types': 7.29.0 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 @@ -4056,7 +3915,7 @@ snapshots: '@babel/helper-compilation-targets@7.28.6': dependencies: - '@babel/compat-data': 7.29.0 + '@babel/compat-data': 7.29.3 '@babel/helper-validator-option': 7.27.1 browserslist: 4.28.2 lru-cache: 5.1.1 @@ -4091,14 +3950,14 @@ snapshots: '@babel/template': 7.28.6 '@babel/types': 7.29.0 - '@babel/parser@7.29.2': + '@babel/parser@7.29.3': dependencies: '@babel/types': 7.29.0 '@babel/template@7.28.6': dependencies: '@babel/code-frame': 7.29.0 - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.3 '@babel/types': 7.29.0 '@babel/traverse@7.29.0': @@ -4106,7 +3965,7 @@ snapshots: '@babel/code-frame': 7.29.0 '@babel/generator': 7.29.1 '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.3 '@babel/template': 7.28.6 '@babel/types': 7.29.0 debug: 4.4.3(supports-color@8.1.1) @@ -4118,64 +3977,85 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.28.5 - '@biomejs/biome@2.4.11': + '@biomejs/biome@2.4.14': optionalDependencies: - '@biomejs/cli-darwin-arm64': 2.4.11 - '@biomejs/cli-darwin-x64': 2.4.11 - '@biomejs/cli-linux-arm64': 2.4.11 - '@biomejs/cli-linux-arm64-musl': 2.4.11 - '@biomejs/cli-linux-x64': 2.4.11 - '@biomejs/cli-linux-x64-musl': 2.4.11 - '@biomejs/cli-win32-arm64': 2.4.11 - '@biomejs/cli-win32-x64': 2.4.11 - - '@biomejs/cli-darwin-arm64@2.4.11': + '@biomejs/cli-darwin-arm64': 2.4.14 + '@biomejs/cli-darwin-x64': 2.4.14 + '@biomejs/cli-linux-arm64': 2.4.14 + '@biomejs/cli-linux-arm64-musl': 2.4.14 + '@biomejs/cli-linux-x64': 2.4.14 + '@biomejs/cli-linux-x64-musl': 2.4.14 + '@biomejs/cli-win32-arm64': 2.4.14 + '@biomejs/cli-win32-x64': 2.4.14 + + '@biomejs/cli-darwin-arm64@2.4.14': optional: true - '@biomejs/cli-darwin-x64@2.4.11': + '@biomejs/cli-darwin-x64@2.4.14': optional: true - '@biomejs/cli-linux-arm64-musl@2.4.11': + '@biomejs/cli-linux-arm64-musl@2.4.14': optional: true - '@biomejs/cli-linux-arm64@2.4.11': + '@biomejs/cli-linux-arm64@2.4.14': optional: true - '@biomejs/cli-linux-x64-musl@2.4.11': + '@biomejs/cli-linux-x64-musl@2.4.14': optional: true - '@biomejs/cli-linux-x64@2.4.11': + '@biomejs/cli-linux-x64@2.4.14': optional: true - '@biomejs/cli-win32-arm64@2.4.11': + '@biomejs/cli-win32-arm64@2.4.14': optional: true - '@biomejs/cli-win32-x64@2.4.11': + '@biomejs/cli-win32-x64@2.4.14': optional: true '@colors/colors@1.5.0': optional: true - '@commercelayer/cli-core@5.11.1': + '@commercelayer/cli-core@6.0.0-oclif4.11': dependencies: - '@commercelayer/js-auth': 6.7.2 - '@oclif/core': 3.27.0 + '@commercelayer/js-auth': 7.4.1 + '@oclif/core': 4.11.0 chalk: 4.1.2 jsonwebtoken: 9.0.3 update-notifier-cjs: 5.1.7 transitivePeerDependencies: - encoding - '@commercelayer/cli-dev@3.1.1': + '@commercelayer/cli-dev@4.0.0-oclif4.7': dependencies: - '@oclif/core': 3.27.0 + '@oclif/core': 4.11.0 fs-extra: 10.1.0 github-slugger: 1.5.0 lodash: 4.18.1 normalize-package-data: 5.0.0 tslib: 2.8.1 - '@commercelayer/js-auth@6.7.2': {} + '@commercelayer/cli-ux@2.0.0-oclif4.12(@oclif/core@4.11.0)': + dependencies: + '@oclif/core': 4.11.0 + ansi-escapes: 4.3.2 + ansi-styles: 4.3.0 + cardinal: 2.1.1 + chalk: 4.1.2 + cli-progress: 3.12.0 + color: 4.2.3 + hyperlinker: 1.0.0 + js-yaml: 3.14.2 + natural-orderby: 2.0.3 + object-treeify: 1.1.33 + password-prompt: 1.1.3 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + supports-color: 8.1.1 + supports-hyperlinks: 2.3.0 + wordwrap: 1.0.0 + + '@commercelayer/js-auth@7.4.1': {} '@commercelayer/provisioning-sdk@2.10.2': {} @@ -4461,50 +4341,9 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.20.1 + '@nodable/entities@2.1.0': {} - '@oclif/core@3.27.0': - dependencies: - '@types/cli-progress': 3.11.6 - ansi-escapes: 4.3.2 - ansi-styles: 4.3.0 - cardinal: 2.1.1 - chalk: 4.1.2 - clean-stack: 3.0.1 - cli-progress: 3.12.0 - color: 4.2.3 - debug: 4.4.3(supports-color@8.1.1) - ejs: 3.1.10 - get-package-type: 0.1.0 - globby: 11.1.0 - hyperlinker: 1.0.0 - indent-string: 4.0.0 - is-wsl: 2.2.0 - js-yaml: 3.14.2 - minimatch: 9.0.9 - natural-orderby: 2.0.3 - object-treeify: 1.1.33 - password-prompt: 1.1.3 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - supports-color: 8.1.1 - supports-hyperlinks: 2.3.0 - widest-line: 3.1.0 - wordwrap: 1.0.0 - wrap-ansi: 7.0.0 - - '@oclif/core@4.10.5': + '@oclif/core@4.11.0': dependencies: ansi-escapes: 4.3.2 ansis: 3.17.0 @@ -4546,22 +4385,22 @@ snapshots: wordwrap: 1.0.0 wrap-ansi: 7.0.0 - '@oclif/plugin-help@6.2.44': + '@oclif/plugin-help@6.2.46': dependencies: - '@oclif/core': 4.10.5 + '@oclif/core': 4.11.0 - '@oclif/plugin-not-found@3.2.80(@types/node@25.6.0)': + '@oclif/plugin-not-found@3.2.82(@types/node@25.6.0)': dependencies: '@inquirer/prompts': 7.10.1(@types/node@25.6.0) - '@oclif/core': 4.10.5 + '@oclif/core': 4.11.0 ansis: 3.17.0 fast-levenshtein: 3.0.0 transitivePeerDependencies: - '@types/node' - '@oclif/plugin-warn-if-update-available@3.1.60': + '@oclif/plugin-warn-if-update-available@3.1.62': dependencies: - '@oclif/core': 4.9.0 + '@oclif/core': 4.11.0 ansis: 3.17.0 debug: 4.4.3(supports-color@8.1.1) http-call: 5.3.0 @@ -4570,11 +4409,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@oclif/test@3.2.15': + '@oclif/test@4.1.18(@oclif/core@4.11.0)': dependencies: - '@oclif/core': 3.27.0 - chai: 4.5.0 - fancy-test: 3.0.16 + '@oclif/core': 4.11.0 + ansis: 3.17.0 + debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -4655,15 +4494,15 @@ snapshots: '@sec-ant/readable-stream@0.4.1': {} - '@semantic-release/changelog@6.0.3(semantic-release@25.0.3(typescript@6.0.2))': + '@semantic-release/changelog@6.0.3(semantic-release@25.0.3(typescript@6.0.3))': dependencies: '@semantic-release/error': 3.0.0 aggregate-error: 3.1.0 fs-extra: 11.3.4 lodash: 4.18.1 - semantic-release: 25.0.3(typescript@6.0.2) + semantic-release: 25.0.3(typescript@6.0.3) - '@semantic-release/commit-analyzer@13.0.1(semantic-release@25.0.3(typescript@6.0.2))': + '@semantic-release/commit-analyzer@13.0.1(semantic-release@25.0.3(typescript@6.0.3))': dependencies: conventional-changelog-angular: 8.3.1 conventional-changelog-writer: 8.4.0 @@ -4673,7 +4512,7 @@ snapshots: import-from-esm: 2.0.0 lodash-es: 4.18.1 micromatch: 4.0.8 - semantic-release: 25.0.3(typescript@6.0.2) + semantic-release: 25.0.3(typescript@6.0.3) transitivePeerDependencies: - supports-color @@ -4681,7 +4520,7 @@ snapshots: '@semantic-release/error@4.0.0': {} - '@semantic-release/git@10.0.1(semantic-release@25.0.3(typescript@6.0.2))': + '@semantic-release/git@10.0.1(semantic-release@25.0.3(typescript@6.0.3))': dependencies: '@semantic-release/error': 3.0.0 aggregate-error: 3.1.0 @@ -4691,11 +4530,11 @@ snapshots: lodash: 4.18.1 micromatch: 4.0.8 p-reduce: 2.1.0 - semantic-release: 25.0.3(typescript@6.0.2) + semantic-release: 25.0.3(typescript@6.0.3) transitivePeerDependencies: - supports-color - '@semantic-release/github@12.0.6(semantic-release@25.0.3(typescript@6.0.2))': + '@semantic-release/github@12.0.6(semantic-release@25.0.3(typescript@6.0.3))': dependencies: '@octokit/core': 7.0.6 '@octokit/plugin-paginate-rest': 14.0.0(@octokit/core@7.0.6) @@ -4707,20 +4546,20 @@ snapshots: dir-glob: 3.0.1 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 - issue-parser: 7.0.1 + issue-parser: 7.0.2 lodash-es: 4.18.1 mime: 4.1.0 p-filter: 4.1.0 - semantic-release: 25.0.3(typescript@6.0.2) + semantic-release: 25.0.3(typescript@6.0.3) tinyglobby: 0.2.16 undici: 7.25.0 url-join: 5.0.0 transitivePeerDependencies: - supports-color - '@semantic-release/npm@13.1.5(semantic-release@25.0.3(typescript@6.0.2))': + '@semantic-release/npm@13.1.5(semantic-release@25.0.3(typescript@6.0.3))': dependencies: - '@actions/core': 3.0.0 + '@actions/core': 3.0.1 '@semantic-release/error': 4.0.0 aggregate-error: 5.0.0 env-ci: 11.2.0 @@ -4729,15 +4568,15 @@ snapshots: lodash-es: 4.18.1 nerf-dart: 1.0.0 normalize-url: 9.0.0 - npm: 11.12.1 + npm: 11.13.0 rc: 1.2.8 read-pkg: 10.1.0 registry-auth-token: 5.1.1 - semantic-release: 25.0.3(typescript@6.0.2) + semantic-release: 25.0.3(typescript@6.0.3) semver: 7.7.4 tempy: 3.2.0 - '@semantic-release/release-notes-generator@14.1.0(semantic-release@25.0.3(typescript@6.0.2))': + '@semantic-release/release-notes-generator@14.1.0(semantic-release@25.0.3(typescript@6.0.3))': dependencies: conventional-changelog-angular: 8.3.1 conventional-changelog-writer: 8.4.0 @@ -4749,7 +4588,7 @@ snapshots: into-stream: 7.0.0 lodash-es: 4.18.1 read-package-up: 11.0.0 - semantic-release: 25.0.3(typescript@6.0.2) + semantic-release: 25.0.3(typescript@6.0.3) transitivePeerDependencies: - supports-color @@ -4761,25 +4600,6 @@ snapshots: '@sindresorhus/merge-streams@4.0.0': {} - '@sinonjs/commons@3.0.1': - dependencies: - type-detect: 4.0.8 - - '@sinonjs/fake-timers@10.3.0': - dependencies: - '@sinonjs/commons': 3.0.1 - - '@sinonjs/fake-timers@11.3.1': - dependencies: - '@sinonjs/commons': 3.0.1 - - '@sinonjs/samsam@8.0.3': - dependencies: - '@sinonjs/commons': 3.0.1 - type-detect: 4.1.0 - - '@sinonjs/text-encoding@0.7.3': {} - '@smithy/chunked-blob-reader-native@4.2.3': dependencies: '@smithy/util-base64': 4.3.2 @@ -4789,97 +4609,97 @@ snapshots: dependencies: tslib: 2.8.1 - '@smithy/config-resolver@4.4.15': + '@smithy/config-resolver@4.4.17': dependencies: - '@smithy/node-config-provider': 4.3.13 - '@smithy/types': 4.14.0 + '@smithy/node-config-provider': 4.3.14 + '@smithy/types': 4.14.1 '@smithy/util-config-provider': 4.2.2 - '@smithy/util-endpoints': 3.4.0 - '@smithy/util-middleware': 4.2.13 + '@smithy/util-endpoints': 3.4.2 + '@smithy/util-middleware': 4.2.14 tslib: 2.8.1 - '@smithy/core@3.23.14': + '@smithy/core@3.23.17': dependencies: - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 - '@smithy/url-parser': 4.2.13 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 + '@smithy/url-parser': 4.2.14 '@smithy/util-base64': 4.3.2 '@smithy/util-body-length-browser': 4.2.2 - '@smithy/util-middleware': 4.2.13 - '@smithy/util-stream': 4.5.22 + '@smithy/util-middleware': 4.2.14 + '@smithy/util-stream': 4.5.25 '@smithy/util-utf8': 4.2.2 '@smithy/uuid': 1.1.2 tslib: 2.8.1 - '@smithy/credential-provider-imds@4.2.13': + '@smithy/credential-provider-imds@4.2.14': dependencies: - '@smithy/node-config-provider': 4.3.13 - '@smithy/property-provider': 4.2.13 - '@smithy/types': 4.14.0 - '@smithy/url-parser': 4.2.13 + '@smithy/node-config-provider': 4.3.14 + '@smithy/property-provider': 4.2.14 + '@smithy/types': 4.14.1 + '@smithy/url-parser': 4.2.14 tslib: 2.8.1 - '@smithy/eventstream-codec@4.2.13': + '@smithy/eventstream-codec@4.2.14': dependencies: '@aws-crypto/crc32': 5.2.0 - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 '@smithy/util-hex-encoding': 4.2.2 tslib: 2.8.1 - '@smithy/eventstream-serde-browser@4.2.13': + '@smithy/eventstream-serde-browser@4.2.14': dependencies: - '@smithy/eventstream-serde-universal': 4.2.13 - '@smithy/types': 4.14.0 + '@smithy/eventstream-serde-universal': 4.2.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/eventstream-serde-config-resolver@4.3.13': + '@smithy/eventstream-serde-config-resolver@4.3.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/eventstream-serde-node@4.2.13': + '@smithy/eventstream-serde-node@4.2.14': dependencies: - '@smithy/eventstream-serde-universal': 4.2.13 - '@smithy/types': 4.14.0 + '@smithy/eventstream-serde-universal': 4.2.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/eventstream-serde-universal@4.2.13': + '@smithy/eventstream-serde-universal@4.2.14': dependencies: - '@smithy/eventstream-codec': 4.2.13 - '@smithy/types': 4.14.0 + '@smithy/eventstream-codec': 4.2.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/fetch-http-handler@5.3.16': + '@smithy/fetch-http-handler@5.3.17': dependencies: - '@smithy/protocol-http': 5.3.13 - '@smithy/querystring-builder': 4.2.13 - '@smithy/types': 4.14.0 + '@smithy/protocol-http': 5.3.14 + '@smithy/querystring-builder': 4.2.14 + '@smithy/types': 4.14.1 '@smithy/util-base64': 4.3.2 tslib: 2.8.1 - '@smithy/hash-blob-browser@4.2.14': + '@smithy/hash-blob-browser@4.2.15': dependencies: '@smithy/chunked-blob-reader': 5.2.2 '@smithy/chunked-blob-reader-native': 4.2.3 - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/hash-node@4.2.13': + '@smithy/hash-node@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 '@smithy/util-buffer-from': 4.2.2 '@smithy/util-utf8': 4.2.2 tslib: 2.8.1 - '@smithy/hash-stream-node@4.2.13': + '@smithy/hash-stream-node@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 '@smithy/util-utf8': 4.2.2 tslib: 2.8.1 - '@smithy/invalid-dependency@4.2.13': + '@smithy/invalid-dependency@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 '@smithy/is-array-buffer@2.2.0': @@ -4890,127 +4710,127 @@ snapshots: dependencies: tslib: 2.8.1 - '@smithy/md5-js@4.2.13': + '@smithy/md5-js@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 '@smithy/util-utf8': 4.2.2 tslib: 2.8.1 - '@smithy/middleware-content-length@4.2.13': + '@smithy/middleware-content-length@4.2.14': dependencies: - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/middleware-endpoint@4.4.29': + '@smithy/middleware-endpoint@4.4.32': dependencies: - '@smithy/core': 3.23.14 - '@smithy/middleware-serde': 4.2.17 - '@smithy/node-config-provider': 4.3.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 - '@smithy/url-parser': 4.2.13 - '@smithy/util-middleware': 4.2.13 + '@smithy/core': 3.23.17 + '@smithy/middleware-serde': 4.2.20 + '@smithy/node-config-provider': 4.3.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 + '@smithy/url-parser': 4.2.14 + '@smithy/util-middleware': 4.2.14 tslib: 2.8.1 - '@smithy/middleware-retry@4.5.1': + '@smithy/middleware-retry@4.5.7': dependencies: - '@smithy/core': 3.23.14 - '@smithy/node-config-provider': 4.3.13 - '@smithy/protocol-http': 5.3.13 - '@smithy/service-error-classification': 4.2.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 - '@smithy/util-middleware': 4.2.13 - '@smithy/util-retry': 4.3.1 + '@smithy/core': 3.23.17 + '@smithy/node-config-provider': 4.3.14 + '@smithy/protocol-http': 5.3.14 + '@smithy/service-error-classification': 4.3.1 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 + '@smithy/util-middleware': 4.2.14 + '@smithy/util-retry': 4.3.8 '@smithy/uuid': 1.1.2 tslib: 2.8.1 - '@smithy/middleware-serde@4.2.17': + '@smithy/middleware-serde@4.2.20': dependencies: - '@smithy/core': 3.23.14 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 + '@smithy/core': 3.23.17 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/middleware-stack@4.2.13': + '@smithy/middleware-stack@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/node-config-provider@4.3.13': + '@smithy/node-config-provider@4.3.14': dependencies: - '@smithy/property-provider': 4.2.13 - '@smithy/shared-ini-file-loader': 4.4.8 - '@smithy/types': 4.14.0 + '@smithy/property-provider': 4.2.14 + '@smithy/shared-ini-file-loader': 4.4.9 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/node-http-handler@4.5.2': + '@smithy/node-http-handler@4.6.1': dependencies: - '@smithy/protocol-http': 5.3.13 - '@smithy/querystring-builder': 4.2.13 - '@smithy/types': 4.14.0 + '@smithy/protocol-http': 5.3.14 + '@smithy/querystring-builder': 4.2.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/property-provider@4.2.13': + '@smithy/property-provider@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/protocol-http@5.3.13': + '@smithy/protocol-http@5.3.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/querystring-builder@4.2.13': + '@smithy/querystring-builder@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 '@smithy/util-uri-escape': 4.2.2 tslib: 2.8.1 - '@smithy/querystring-parser@4.2.13': + '@smithy/querystring-parser@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/service-error-classification@4.2.13': + '@smithy/service-error-classification@4.3.1': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 - '@smithy/shared-ini-file-loader@4.4.8': + '@smithy/shared-ini-file-loader@4.4.9': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/signature-v4@5.3.13': + '@smithy/signature-v4@5.3.14': dependencies: '@smithy/is-array-buffer': 4.2.2 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 '@smithy/util-hex-encoding': 4.2.2 - '@smithy/util-middleware': 4.2.13 + '@smithy/util-middleware': 4.2.14 '@smithy/util-uri-escape': 4.2.2 '@smithy/util-utf8': 4.2.2 tslib: 2.8.1 - '@smithy/smithy-client@4.12.9': + '@smithy/smithy-client@4.12.13': dependencies: - '@smithy/core': 3.23.14 - '@smithy/middleware-endpoint': 4.4.29 - '@smithy/middleware-stack': 4.2.13 - '@smithy/protocol-http': 5.3.13 - '@smithy/types': 4.14.0 - '@smithy/util-stream': 4.5.22 + '@smithy/core': 3.23.17 + '@smithy/middleware-endpoint': 4.4.32 + '@smithy/middleware-stack': 4.2.14 + '@smithy/protocol-http': 5.3.14 + '@smithy/types': 4.14.1 + '@smithy/util-stream': 4.5.25 tslib: 2.8.1 - '@smithy/types@4.14.0': + '@smithy/types@4.14.1': dependencies: tslib: 2.8.1 - '@smithy/url-parser@4.2.13': + '@smithy/url-parser@4.2.14': dependencies: - '@smithy/querystring-parser': 4.2.13 - '@smithy/types': 4.14.0 + '@smithy/querystring-parser': 4.2.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 '@smithy/util-base64@4.3.2': @@ -5041,49 +4861,49 @@ snapshots: dependencies: tslib: 2.8.1 - '@smithy/util-defaults-mode-browser@4.3.45': + '@smithy/util-defaults-mode-browser@4.3.49': dependencies: - '@smithy/property-provider': 4.2.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 + '@smithy/property-provider': 4.2.14 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/util-defaults-mode-node@4.2.50': + '@smithy/util-defaults-mode-node@4.2.54': dependencies: - '@smithy/config-resolver': 4.4.15 - '@smithy/credential-provider-imds': 4.2.13 - '@smithy/node-config-provider': 4.3.13 - '@smithy/property-provider': 4.2.13 - '@smithy/smithy-client': 4.12.9 - '@smithy/types': 4.14.0 + '@smithy/config-resolver': 4.4.17 + '@smithy/credential-provider-imds': 4.2.14 + '@smithy/node-config-provider': 4.3.14 + '@smithy/property-provider': 4.2.14 + '@smithy/smithy-client': 4.12.13 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/util-endpoints@3.4.0': + '@smithy/util-endpoints@3.4.2': dependencies: - '@smithy/node-config-provider': 4.3.13 - '@smithy/types': 4.14.0 + '@smithy/node-config-provider': 4.3.14 + '@smithy/types': 4.14.1 tslib: 2.8.1 '@smithy/util-hex-encoding@4.2.2': dependencies: tslib: 2.8.1 - '@smithy/util-middleware@4.2.13': + '@smithy/util-middleware@4.2.14': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/util-retry@4.3.1': + '@smithy/util-retry@4.3.8': dependencies: - '@smithy/service-error-classification': 4.2.13 - '@smithy/types': 4.14.0 + '@smithy/service-error-classification': 4.3.1 + '@smithy/types': 4.14.1 tslib: 2.8.1 - '@smithy/util-stream@4.5.22': + '@smithy/util-stream@4.5.25': dependencies: - '@smithy/fetch-http-handler': 5.3.16 - '@smithy/node-http-handler': 4.5.2 - '@smithy/types': 4.14.0 + '@smithy/fetch-http-handler': 5.3.17 + '@smithy/node-http-handler': 4.6.1 + '@smithy/types': 4.14.1 '@smithy/util-base64': 4.3.2 '@smithy/util-buffer-from': 4.2.2 '@smithy/util-hex-encoding': 4.2.2 @@ -5104,9 +4924,9 @@ snapshots: '@smithy/util-buffer-from': 4.2.2 tslib: 2.8.1 - '@smithy/util-waiter@4.2.15': + '@smithy/util-waiter@4.3.0': dependencies: - '@smithy/types': 4.14.0 + '@smithy/types': 4.14.1 tslib: 2.8.1 '@smithy/uuid@1.1.2': @@ -5135,8 +4955,6 @@ snapshots: '@types/through': 0.0.33 rxjs: 7.8.2 - '@types/lodash@4.17.24': {} - '@types/mocha@10.0.10': {} '@types/mute-stream@0.0.4': @@ -5153,12 +4971,6 @@ snapshots: '@types/normalize-package-data@2.4.4': {} - '@types/sinon@21.0.1': - dependencies: - '@types/sinonjs__fake-timers': 15.0.1 - - '@types/sinonjs__fake-timers@15.0.1': {} - '@types/through@0.0.33': dependencies: '@types/node': 25.6.0 @@ -5225,10 +5037,6 @@ snapshots: array-ify@1.0.0: {} - array-union@2.1.0: {} - - assertion-error@1.1.0: {} - assertion-error@2.0.1: {} astral-regex@2.0.0: {} @@ -5245,7 +5053,7 @@ snapshots: base64-js@1.5.1: {} - baseline-browser-mapping@2.10.19: {} + baseline-browser-mapping@2.10.27: {} before-after-hook@4.0.0: {} @@ -5286,10 +5094,10 @@ snapshots: browserslist@4.28.2: dependencies: - baseline-browser-mapping: 2.10.19 - caniuse-lite: 1.0.30001788 - electron-to-chromium: 1.5.336 - node-releases: 2.0.37 + baseline-browser-mapping: 2.10.27 + caniuse-lite: 1.0.30001791 + electron-to-chromium: 1.5.349 + node-releases: 2.0.38 update-browserslist-db: 1.2.3(browserslist@4.28.2) buffer-equal-constant-time@1.0.1: {} @@ -5329,7 +5137,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001788: {} + caniuse-lite@1.0.30001791: {} capital-case@1.0.4: dependencies: @@ -5342,16 +5150,6 @@ snapshots: ansicolors: 0.3.2 redeyed: 2.1.1 - chai@4.5.0: - dependencies: - assertion-error: 1.1.0 - check-error: 1.0.3 - deep-eql: 4.1.4 - get-func-name: 2.0.2 - loupe: 2.3.7 - pathval: 1.1.1 - type-detect: 4.1.0 - chai@6.2.2: {} chalk@2.4.2: @@ -5386,10 +5184,6 @@ snapshots: chardet@2.1.1: {} - check-error@1.0.3: - dependencies: - get-func-name: 2.0.2 - chokidar@4.0.3: dependencies: readdirp: 4.1.2 @@ -5541,14 +5335,14 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig@9.0.1(typescript@6.0.2): + cosmiconfig@9.0.1(typescript@6.0.3): dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 js-yaml: 4.1.1 parse-json: 5.2.0 optionalDependencies: - typescript: 6.0.2 + typescript: 6.0.3 cross-spawn@7.0.6: dependencies: @@ -5578,10 +5372,6 @@ snapshots: deeks@3.1.0: {} - deep-eql@4.1.4: - dependencies: - type-detect: 4.1.0 - deep-extend@0.6.0: {} default-require-extensions@3.0.1: @@ -5598,8 +5388,6 @@ snapshots: detect-newline@4.0.1: {} - diff@5.2.2: {} - diff@7.0.0: {} dir-glob@3.0.1: @@ -5631,7 +5419,7 @@ snapshots: dependencies: jake: 10.9.4 - electron-to-chromium@1.5.336: {} + electron-to-chromium@1.5.349: {} emoji-regex@10.6.0: {} @@ -5736,50 +5524,25 @@ snapshots: strip-final-newline: 4.0.0 yoctocolors: 2.1.2 - fancy-test@3.0.16: - dependencies: - '@types/chai': 5.2.3 - '@types/lodash': 4.17.24 - '@types/node': 25.6.0 - '@types/sinon': 21.0.1 - lodash: 4.18.1 - mock-stdin: 1.0.0 - nock: 13.5.6 - sinon: 16.1.3 - stdout-stderr: 0.1.13 - transitivePeerDependencies: - - supports-color - fast-content-type-parse@3.0.0: {} - fast-glob@3.3.3: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.8 - fast-levenshtein@3.0.0: dependencies: fastest-levenshtein: 1.0.16 - fast-xml-builder@1.1.4: + fast-xml-builder@1.1.8: dependencies: path-expression-matcher: 1.5.0 - fast-xml-parser@5.5.8: + fast-xml-parser@5.7.2: dependencies: - fast-xml-builder: 1.1.4 + '@nodable/entities': 2.1.0 + fast-xml-builder: 1.1.8 path-expression-matcher: 1.5.0 strnum: 2.2.3 fastest-levenshtein@1.0.16: {} - fastq@1.20.1: - dependencies: - reusify: 1.1.0 - fdir@6.5.0(picomatch@4.0.4): optionalDependencies: picomatch: 4.0.4 @@ -5859,13 +5622,13 @@ snapshots: fs-extra@10.1.0: dependencies: graceful-fs: 4.2.11 - jsonfile: 6.2.0 + jsonfile: 6.2.1 universalify: 2.0.1 fs-extra@11.3.4: dependencies: graceful-fs: 4.2.11 - jsonfile: 6.2.0 + jsonfile: 6.2.1 universalify: 2.0.1 fs-extra@8.1.0: @@ -5887,8 +5650,6 @@ snapshots: get-east-asian-width@1.5.0: {} - get-func-name@2.0.2: {} - get-package-type@0.1.0: {} get-stdin@9.0.0: {} @@ -5904,7 +5665,7 @@ snapshots: '@sec-ant/readable-stream': 0.4.1 is-stream: 4.0.1 - get-tsconfig@4.13.7: + get-tsconfig@4.14.0: dependencies: resolve-pkg-maps: 1.0.0 @@ -5923,10 +5684,6 @@ snapshots: github-slugger@2.0.0: {} - glob-parent@5.1.2: - dependencies: - is-glob: 4.0.3 - glob@10.5.0: dependencies: foreground-child: 3.3.1 @@ -5946,15 +5703,6 @@ snapshots: dependencies: ini: 2.0.0 - globby@11.1.0: - dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.3.3 - ignore: 5.3.2 - merge2: 1.4.1 - slash: 3.0.0 - got@13.0.0: dependencies: '@sindresorhus/is': 5.6.0 @@ -5993,7 +5741,7 @@ snapshots: is-stream: 2.0.1 type-fest: 0.8.1 - hasown@2.0.2: + hasown@2.0.3: dependencies: function-bind: 1.1.2 @@ -6016,9 +5764,9 @@ snapshots: dependencies: lru-cache: 10.4.3 - hosted-git-info@9.0.2: + hosted-git-info@9.0.3: dependencies: - lru-cache: 11.3.5 + lru-cache: 11.3.6 html-escaper@2.0.2: {} @@ -6068,8 +5816,6 @@ snapshots: ieee754@1.2.1: {} - ignore@5.3.2: {} - import-fresh@3.3.1: dependencies: parent-module: 1.0.1 @@ -6135,18 +5881,12 @@ snapshots: is-core-module@2.16.1: dependencies: - hasown: 2.0.2 + hasown: 2.0.3 is-docker@2.2.1: {} - is-extglob@2.1.1: {} - is-fullwidth-code-point@3.0.0: {} - is-glob@4.0.3: - dependencies: - is-extglob: 2.1.1 - is-installed-globally@0.4.0: dependencies: global-dirs: 3.0.1 @@ -6199,7 +5939,7 @@ snapshots: transitivePeerDependencies: - encoding - issue-parser@7.0.1: + issue-parser@7.0.2: dependencies: lodash.capitalize: 4.2.1 lodash.escaperegexp: 4.1.2 @@ -6216,7 +5956,7 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.29.0 - '@babel/parser': 7.29.2 + '@babel/parser': 7.29.3 '@istanbuljs/schema': 0.1.6 istanbul-lib-coverage: 3.2.2 semver: 7.7.4 @@ -6289,8 +6029,6 @@ snapshots: json-parse-even-better-errors@2.3.1: {} - json-stringify-safe@5.0.1: {} - json-with-bigint@3.5.8: {} json5@2.2.3: {} @@ -6299,7 +6037,7 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 - jsonfile@6.2.0: + jsonfile@6.2.1: dependencies: universalify: 2.0.1 optionalDependencies: @@ -6318,8 +6056,6 @@ snapshots: ms: 2.1.3 semver: 7.7.4 - just-extend@6.2.0: {} - jwa@2.0.1: dependencies: buffer-equal-constant-time: 1.0.1 @@ -6390,10 +6126,6 @@ snapshots: chalk: 4.1.2 is-unicode-supported: 0.1.0 - loupe@2.3.7: - dependencies: - get-func-name: 2.0.2 - lower-case@2.0.2: dependencies: tslib: 2.8.1 @@ -6402,7 +6134,7 @@ snapshots: lru-cache@10.4.3: {} - lru-cache@11.3.5: {} + lru-cache@11.3.6: {} lru-cache@5.1.1: dependencies: @@ -6441,8 +6173,6 @@ snapshots: merge-stream@2.0.0: {} - merge2@1.4.1: {} - micromatch@4.0.8: dependencies: braces: 3.0.3 @@ -6498,8 +6228,6 @@ snapshots: yargs-parser: 21.1.1 yargs-unparser: 2.0.0 - mock-stdin@1.0.0: {} - ms@2.1.3: {} mute-stream@0.0.8: {} @@ -6520,27 +6248,11 @@ snapshots: nerf-dart@1.0.0: {} - nise@5.1.9: - dependencies: - '@sinonjs/commons': 3.0.1 - '@sinonjs/fake-timers': 11.3.1 - '@sinonjs/text-encoding': 0.7.3 - just-extend: 6.2.0 - path-to-regexp: 6.3.0 - no-case@3.0.4: dependencies: lower-case: 2.0.2 tslib: 2.8.1 - nock@13.5.6: - dependencies: - debug: 4.4.3(supports-color@8.1.1) - json-stringify-safe: 5.0.1 - propagate: 2.0.1 - transitivePeerDependencies: - - supports-color - node-emoji@2.2.0: dependencies: '@sindresorhus/is': 4.6.0 @@ -6556,7 +6268,7 @@ snapshots: dependencies: process-on-spawn: 1.1.0 - node-releases@2.0.37: {} + node-releases@2.0.38: {} normalize-package-data@5.0.0: dependencies: @@ -6573,7 +6285,7 @@ snapshots: normalize-package-data@8.0.0: dependencies: - hosted-git-info: 9.0.2 + hosted-git-info: 9.0.3 semver: 7.7.4 validate-npm-package-license: 3.0.4 @@ -6594,7 +6306,7 @@ snapshots: path-key: 4.0.0 unicorn-magic: 0.3.0 - npm@11.12.1: {} + npm@11.13.0: {} nyc@18.0.0: dependencies: @@ -6640,9 +6352,9 @@ snapshots: '@inquirer/input': 2.3.0 '@inquirer/select': 2.5.0 '@oclif/core': 4.9.0 - '@oclif/plugin-help': 6.2.44 - '@oclif/plugin-not-found': 3.2.80(@types/node@25.6.0) - '@oclif/plugin-warn-if-update-available': 3.1.60 + '@oclif/plugin-help': 6.2.46 + '@oclif/plugin-not-found': 3.2.82(@types/node@25.6.0) + '@oclif/plugin-warn-if-update-available': 3.1.62 ansis: 3.17.0 async-retry: 1.3.3 change-case: 4.1.2 @@ -6815,15 +6527,11 @@ snapshots: path-scurry@2.0.2: dependencies: - lru-cache: 11.3.5 + lru-cache: 11.3.6 minipass: 7.1.3 - path-to-regexp@6.3.0: {} - path-type@4.0.0: {} - pathval@1.1.1: {} - picocolors@1.1.1: {} picomatch@2.3.2: {} @@ -6851,16 +6559,12 @@ snapshots: dependencies: fromentries: 1.3.2 - propagate@2.0.1: {} - proto-list@1.2.4: {} pupa@2.1.1: dependencies: escape-goat: 2.1.1 - queue-microtask@1.2.3: {} - quick-lru@5.1.1: {} randombytes@2.1.0: @@ -6884,14 +6588,14 @@ snapshots: dependencies: find-up-simple: 1.0.1 read-pkg: 10.1.0 - type-fest: 5.5.0 + type-fest: 5.6.0 read-pkg@10.1.0: dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 8.0.0 parse-json: 8.3.0 - type-fest: 5.5.0 + type-fest: 5.6.0 unicorn-magic: 0.4.0 read-pkg@9.0.1: @@ -6959,8 +6663,6 @@ snapshots: retry@0.13.1: {} - reusify@1.1.0: {} - rimraf@6.1.3: dependencies: glob: 13.0.6 @@ -6968,10 +6670,6 @@ snapshots: run-async@2.4.1: {} - run-parallel@1.2.0: - dependencies: - queue-microtask: 1.2.3 - rxjs@7.8.2: dependencies: tslib: 2.8.1 @@ -6982,15 +6680,15 @@ snapshots: safer-buffer@2.1.2: {} - semantic-release@25.0.3(typescript@6.0.2): + semantic-release@25.0.3(typescript@6.0.3): dependencies: - '@semantic-release/commit-analyzer': 13.0.1(semantic-release@25.0.3(typescript@6.0.2)) + '@semantic-release/commit-analyzer': 13.0.1(semantic-release@25.0.3(typescript@6.0.3)) '@semantic-release/error': 4.0.0 - '@semantic-release/github': 12.0.6(semantic-release@25.0.3(typescript@6.0.2)) - '@semantic-release/npm': 13.1.5(semantic-release@25.0.3(typescript@6.0.2)) - '@semantic-release/release-notes-generator': 14.1.0(semantic-release@25.0.3(typescript@6.0.2)) + '@semantic-release/github': 12.0.6(semantic-release@25.0.3(typescript@6.0.3)) + '@semantic-release/npm': 13.1.5(semantic-release@25.0.3(typescript@6.0.3)) + '@semantic-release/release-notes-generator': 14.1.0(semantic-release@25.0.3(typescript@6.0.3)) aggregate-error: 5.0.0 - cosmiconfig: 9.0.1(typescript@6.0.2) + cosmiconfig: 9.0.1(typescript@6.0.3) debug: 4.4.3(supports-color@8.1.1) env-ci: 11.2.0 execa: 9.6.1 @@ -6999,7 +6697,7 @@ snapshots: get-stream: 6.0.1 git-log-parser: 1.2.1 hook-std: 4.0.0 - hosted-git-info: 9.0.2 + hosted-git-info: 9.0.3 import-from-esm: 2.0.0 lodash-es: 4.18.1 marked: 15.0.12 @@ -7058,21 +6756,10 @@ snapshots: dependencies: is-arrayish: 0.3.4 - sinon@16.1.3: - dependencies: - '@sinonjs/commons': 3.0.1 - '@sinonjs/fake-timers': 10.3.0 - '@sinonjs/samsam': 8.0.3 - diff: 5.2.2 - nise: 5.1.9 - supports-color: 7.2.0 - skin-tone@2.0.0: dependencies: unicode-emoji-modifier-base: 1.0.0 - slash@3.0.0: {} - slice-ansi@4.0.0: dependencies: ansi-styles: 4.3.0 @@ -7131,13 +6818,6 @@ snapshots: sprintf-js@1.0.3: {} - stdout-stderr@0.1.13: - dependencies: - debug: 4.4.3(supports-color@8.1.1) - strip-ansi: 6.0.1 - transitivePeerDependencies: - - supports-color - stream-combiner2@1.1.1: dependencies: duplexer2: 0.1.4 @@ -7277,7 +6957,7 @@ snapshots: tsx@4.21.0: dependencies: esbuild: 0.27.7 - get-tsconfig: 4.13.7 + get-tsconfig: 4.14.0 optionalDependencies: fsevents: 2.3.3 @@ -7287,10 +6967,6 @@ snapshots: tunnel@0.0.6: {} - type-detect@4.0.8: {} - - type-detect@4.1.0: {} - type-fest@0.20.2: {} type-fest@0.21.3: {} @@ -7303,7 +6979,7 @@ snapshots: type-fest@4.41.0: {} - type-fest@5.5.0: + type-fest@5.6.0: dependencies: tagged-tag: 1.0.0 @@ -7311,7 +6987,7 @@ snapshots: dependencies: is-typedarray: 1.0.0 - typescript@6.0.2: {} + typescript@6.0.3: {} uglify-js@3.19.3: optional: true diff --git a/src/base.ts b/src/base.ts index 838ae4b..b83a0e5 100644 --- a/src/base.ts +++ b/src/base.ts @@ -17,13 +17,13 @@ import { clUpdate, clUtil, } from "@commercelayer/cli-core" +import cliux from '@commercelayer/cli-ux' import commercelayer, { type CommerceLayerProvisioningClient, CommerceLayerProvisioningStatic, type QueryParams, } from "@commercelayer/provisioning-sdk" -import { Args, Command, ux as cliux, Flags } from "@oclif/core" -import type { CommandError } from "@oclif/core/lib/interfaces" +import { Args, Command, Flags, type Interfaces } from "@oclif/core" import { exportCsv } from "./csv" import { availableLanguages, @@ -351,7 +351,7 @@ export abstract class BaseFilterCommand extends BaseCommand { } // CATCH (override) - async catch(error: CommandError): Promise { + async catch(error: Interfaces.CommandError): Promise { if (error.message?.match(/Missing \d required args?:\nresource/)) this.error(`Missing argument ${clColor.style.error("resource")}`, { suggestions: [ diff --git a/src/commands/provisioning/create.ts b/src/commands/provisioning/create.ts index 35a4969..083897d 100644 --- a/src/commands/provisioning/create.ts +++ b/src/commands/provisioning/create.ts @@ -1,28 +1,24 @@ -import { clApi, clColor } from "@commercelayer/cli-core"; -import type { - CommerceLayerProvisioningClient, - QueryParamsRetrieve, -} from "@commercelayer/provisioning-sdk"; -import Command, { - Flags /* , FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS */, -} from "../../base"; -import { addRequestReader, isRequestInterrupted } from "../../lang"; +import { clApi, clColor } from "@commercelayer/cli-core" +import type { CommerceLayerProvisioningClient, QueryParamsRetrieve } from "@commercelayer/provisioning-sdk" +import Command, { Flags /* , FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS */ } from "../../base" +import { addRequestReader, isRequestInterrupted } from "../../lang" // import { mergeCommandParams } from '../../commands' -const OPERATION = "create"; +const OPERATION = "create" export default class ProvisioningCreate extends Command { - static description = "create a new resource"; + + static description = "create a new resource" - static aliases = ["prov:create", "pc", "pcreate"]; + static aliases = ["prov:create", "pc", "pcreate"] static examples = [ "$ commercelayer provisioning:create organizations -a name=MyOrg", "$ clayer prov:create subscriptions -r plan=plans/", '$ cl prov:create organization -a name=MyOrg -m meta_key="meta value"', "$ cl pc roles -D /path/to/data/file/data.json", - ]; + ] static flags = { ...Command.flags, @@ -58,27 +54,30 @@ export default class ProvisioningCreate extends Command { "doc" /* , FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS */, ], }), - }; + } static args = { ...Command.args, - }; + } async run(): Promise { - const { args, flags } = await this.parse(ProvisioningCreate); - const resource = this.checkResource(args.resource, { singular: true }); + const { args, flags } = await this.parse(ProvisioningCreate) + + const resource = this.checkResource(args.resource, { singular: true }) // const loadParams = flags[FLAG_LOAD_PARAMS] // const saveCmd = flags[FLAG_SAVE_PARAMS] // if (saveCmd) this.checkAlias(saveCmd, resource.api, OPERATION, this.config) - const showHeaders = flags.headers || flags["headers-only"]; + const showHeaders = flags.headers || flags["headers-only"] // Raw request if (flags.data) { try { - const baseUrl = clApi.baseURL("provisioning", undefined, flags.domain); - const accessToken = flags.accessToken; + + const baseUrl = clApi.baseURL("provisioning", undefined, flags.domain) + const accessToken = flags.accessToken + const rawRes = await clApi.request.raw( { operation: clApi.Operation.Create, @@ -87,44 +86,47 @@ export default class ProvisioningCreate extends Command { resource: resource.api, }, clApi.request.readDataFile(flags.data), - ); - const out = flags.raw ? rawRes : clApi.response.denormalize(rawRes); - this.printOutput(out, flags); + ) + const out = flags.raw ? rawRes : clApi.response.denormalize(rawRes) + this.printOutput(out, flags) this.log( `\n${clColor.style.success("Successfully")} created new resource of type ${clColor.style.resource(resource.api)} with id ${clColor.style.id(rawRes.data.id)}\n`, - ); - return out; + ) + + return out + } catch (error) { - this.printError(error, flags, args); + this.printError(error, flags, args) } + } - const cl = this.initCommerceLayer(flags); + const cl = this.initCommerceLayer(flags) // Attributes flags - const attributes = this.attributeFlag(flags.attribute); + const attributes = this.attributeFlag(flags.attribute) // Objects flags - const objects = this.objectFlag(flags.object); + const objects = this.objectFlag(flags.object) // Relationships flags - const relationships = this.relationshipFlag(flags.relationship); + const relationships = this.relationshipFlag(flags.relationship) // Metadata flags - const metadata = this.metadataFlag(flags.metadata, { fixTypes: true }); + const metadata = this.metadataFlag(flags.metadata, { fixTypes: true }) // Relationships if (relationships && Object.keys(relationships).length > 0) Object.entries(relationships).forEach(([key, value]) => { const relSdk: any = - cl[value.type as keyof CommerceLayerProvisioningClient]; - const rel = relSdk.relationship(value); - attributes[key] = rel; - }); + cl[value.type as keyof CommerceLayerProvisioningClient] + const rel = relSdk.relationship(value) + attributes[key] = rel + }) // Objects if (objects && Object.keys(objects).length > 0) { for (const o of Object.keys(objects)) { if (Object.keys(attributes).includes(o)) - this.warn(`Object ${o} will overwrite attribute ${o}`); - else attributes[o] = objects[o]; + this.warn(`Object ${o} will overwrite attribute ${o}`) + else attributes[o] = objects[o] } } @@ -133,29 +135,29 @@ export default class ProvisioningCreate extends Command { if (attributes.metadata) this.warn( `Attribute ${clColor.style.attribute("metadata")} will be overwritten by the content defined with the flag ${clColor.style.flag("-m")}`, - ); - attributes.metadata = metadata; + ) + attributes.metadata = metadata } // Include flags - const include: string[] = this.includeFlag(flags.include, relationships); + const include: string[] = this.includeFlag(flags.include, relationships) // Fields flags - const fields = this.fieldsFlag(flags.fields, resource.type); + const fields = this.fieldsFlag(flags.fields, resource.type) const rawReader = flags.raw ? cl.addRawResponseReader({ headers: showHeaders }) - : undefined; - const reqReader = flags.doc ? addRequestReader(cl) : undefined; + : undefined + const reqReader = flags.doc ? addRequestReader(cl) : undefined - const params: QueryParamsRetrieve = {}; + const params: QueryParamsRetrieve = {} try { const resSdk: any = - cl[resource.api as keyof CommerceLayerProvisioningClient]; - this.checkOperation(resSdk, OPERATION); + cl[resource.api as keyof CommerceLayerProvisioningClient] + this.checkOperation(resSdk, OPERATION) - if (include && include.length > 0) params.include = include; - if (fields && Object.keys(fields).length > 0) params.fields = fields; + if (include && include.length > 0) params.include = include + if (fields && Object.keys(fields).length > 0) params.fields = fields // Load saved command arguments // if (loadParams) { @@ -163,26 +165,28 @@ export default class ProvisioningCreate extends Command { // if (savedParams) mergeCommandParams(params, savedParams) // } - const res = await resSdk.create(attributes, params); + const res = await resSdk.create(attributes, params) - const out = flags.raw && rawReader ? rawReader.rawResponse : res; + const out = flags.raw && rawReader ? rawReader.rawResponse : res - this.printHeaders(rawReader?.headers, flags); - this.printOutput(out, flags); + this.printHeaders(rawReader?.headers, flags) + this.printOutput(out, flags) this.log( `\n${clColor.style.success("Successfully")} created new resource of type ${clColor.style.resource(resource.type)} with id ${clColor.style.id(res.id)}\n`, - ); + ) // Save command arguments // if (saveCmd) this.saveParams(saveCmd, { type: resource.api }, OPERATION, params) - return out; + return out } catch (error) { if (isRequestInterrupted(error) && reqReader) { - await this.showLiveDocumentation(reqReader.request, params, flags); - cl.removeInterceptor("request", reqReader.id); - } else this.printError(error); + await this.showLiveDocumentation(reqReader.request, params, flags) + cl.removeInterceptor("request", reqReader.id) + } else this.printError(error) } + } + } diff --git a/src/commands/provisioning/delete.ts b/src/commands/provisioning/delete.ts index 1357874..7437c9b 100644 --- a/src/commands/provisioning/delete.ts +++ b/src/commands/provisioning/delete.ts @@ -1,19 +1,21 @@ -import { clColor, clCommand } from "@commercelayer/cli-core"; -import type { CommerceLayerProvisioningClient } from "@commercelayer/provisioning-sdk"; -import Command, { Args } from "../../base"; -import { addRequestReader, isRequestInterrupted } from "../../lang"; +import { clColor, clCommand } from "@commercelayer/cli-core" +import type { CommerceLayerProvisioningClient } from "@commercelayer/provisioning-sdk" +import Command, { Args } from "../../base" +import { addRequestReader, isRequestInterrupted } from "../../lang" + +const OPERATION = "delete" -const OPERATION = "delete"; export default class ProvisioningDelete extends Command { - static description = "delete an existing resource"; - static aliases = ["prov:delete", "pd", "pdelete", "pdel"]; + static description = "delete an existing resource" + + static aliases = ["prov:delete", "pd", "pdelete", "pdel"] static examples = [ "$ commercelayer provisioning:delete api_credentials/", "$ cl prov:delete api_credentials ", - ]; + ] static flags = { ...clCommand.commandFlags(Command.flags, [ @@ -22,7 +24,7 @@ export default class ProvisioningDelete extends Command { "json", "unformatted", ]), - }; + } static args = { ...Command.args, @@ -31,50 +33,54 @@ export default class ProvisioningDelete extends Command { description: "id of the resource to delete", required: false, }), - }; + } async run(): Promise { - const { args, flags } = await this.parse(ProvisioningDelete); - const invalidFlags: string[] = ["fields", "include"]; + const { args, flags } = await this.parse(ProvisioningDelete) + + const invalidFlags: string[] = ["fields", "include"] invalidFlags.forEach((x) => { if (flags[x as keyof typeof flags]) this.error( `Flag not supported in ${clColor.cli.command(OPERATION)} operation: ${clColor.style.error(x)}`, - ); - }); + ) + }) - const { res, id } = this.checkResourceId(args.resource, args.id); + const { res, id } = this.checkResourceId(args.resource, args.id) - const resource = this.checkResource(res, { singular: true }); + const resource = this.checkResource(res, { singular: true }) - const showHeaders = flags.headers || flags["headers-only"]; + const showHeaders = flags.headers || flags["headers-only"] - const cl = this.initCommerceLayer(flags); + const cl = this.initCommerceLayer(flags) const rawReader = flags.raw && showHeaders ? cl.addRawResponseReader({ headers: showHeaders }) - : undefined; - const reqReader = flags.doc ? addRequestReader(cl) : undefined; + : undefined + const reqReader = flags.doc ? addRequestReader(cl) : undefined try { const resSdk: any = - cl[resource.api as keyof CommerceLayerProvisioningClient]; - this.checkOperation(resSdk, OPERATION); + cl[resource.api as keyof CommerceLayerProvisioningClient] + this.checkOperation(resSdk, OPERATION) - await resSdk.delete(id); + await resSdk.delete(id) - if (showHeaders) this.printHeaders(rawReader?.headers, flags); + if (showHeaders) this.printHeaders(rawReader?.headers, flags) this.log( `\n${clColor.style.success("Successfully")} deleted resource of type ${clColor.style.resource(resource.type)} with id ${clColor.style.id(id)}\n`, - ); + ) + } catch (error) { if (isRequestInterrupted(error) && reqReader) { - await this.showLiveDocumentation(reqReader.request, undefined, flags); - cl.removeInterceptor("request", reqReader.id); - } else this.printError(error, flags, args); + await this.showLiveDocumentation(reqReader.request, undefined, flags) + cl.removeInterceptor("request", reqReader.id) + } else this.printError(error, flags, args) } + } + } diff --git a/src/commands/provisioning/exec.ts b/src/commands/provisioning/exec.ts index 9dc459b..b96a5d1 100644 --- a/src/commands/provisioning/exec.ts +++ b/src/commands/provisioning/exec.ts @@ -1,16 +1,19 @@ -import { clColor } from "@commercelayer/cli-core"; -import type { CommerceLayerProvisioningClient } from "@commercelayer/provisioning-sdk"; -import Command, { Args, BaseCommand, Flags } from "../../base"; +import { clColor } from "@commercelayer/cli-core" +import type { CommerceLayerProvisioningClient } from "@commercelayer/provisioning-sdk" +import Command, { Args, BaseCommand, Flags } from "../../base" + + export default class ProvisioningExec extends BaseCommand { - static description = "execute an action on a resource"; - static aliases = ["prov:exec", "pe", "pexec"]; + static description = "execute an action on a resource" + + static aliases = ["prov:exec", "pe", "pexec"] static examples = [ "$ commercelayer provisioning:exec organizations transfer_ownership", "$ cl prov:exec memberships resend", - ]; + ] static flags = { attribute: Flags.string({ @@ -18,7 +21,7 @@ export default class ProvisioningExec extends BaseCommand { description: "define a resource attribute", multiple: true, }), - }; + } static args = { ...Command.args, @@ -32,41 +35,46 @@ export default class ProvisioningExec extends BaseCommand { description: "action to execute on resource", required: false, }), - }; + } public async run(): Promise { - const { args, flags } = await this.parse(ProvisioningExec); - const action = args.action; - if (!action) this.error("Missing action name"); - const { res, id } = this.checkResourceId(args.resource, args.id); + const { args, flags } = await this.parse(ProvisioningExec) + const action = args.action + if (!action) this.error("Missing action name") - const resource = this.checkResource(res, { singular: true }); + const { res, id } = this.checkResourceId(args.resource, args.id) - const clp = this.initCommerceLayer(flags); + const resource = this.checkResource(res, { singular: true }) + + const clp = this.initCommerceLayer(flags) try { + const resSdk: any = - clp[resource.api as keyof CommerceLayerProvisioningClient]; - this.checkOperation(resSdk, action); + clp[resource.api as keyof CommerceLayerProvisioningClient] + this.checkOperation(resSdk, action) if (resSdk[action].length > 2) { // Base action command has two arguments: resource id and request options - const attributes = this.attributeFlag(flags.attribute); - await resSdk[action](id, attributes); + const attributes = this.attributeFlag(flags.attribute) + await resSdk[action](id, attributes) } else { if (flags.attribute && flags.attribute.length > 0) this.warn( `Action ${clColor.cli.arg(action)} does not require argumemts, all the attributes will be ignored.`, - ); - await resSdk[action](id); + ) + await resSdk[action](id) } + } catch (error) { /* if (isRequestInterrupted(error) && reqReader) { await this.showLiveDocumentation(reqReader.request, undefined, flags) cl.removeInterceptor('request', reqReader.id) - } else */ this.printError(error, flags, args); + } else */ this.printError(error, flags, args) } + } + } diff --git a/src/commands/provisioning/fetch.ts b/src/commands/provisioning/fetch.ts index e55fbbc..d3c402c 100644 --- a/src/commands/provisioning/fetch.ts +++ b/src/commands/provisioning/fetch.ts @@ -1,13 +1,15 @@ -import { Args, BaseFilterCommand } from "../../base"; -import GetCommand from "./get"; -import ListCommand from "./list"; -import RelationshipCommand from "./relationship"; -import RetrieveCommand from "./retrieve"; +import { Args, BaseFilterCommand } from "../../base" +import GetCommand from "./get" +import ListCommand from "./list" +import RelationshipCommand from "./relationship" +import RetrieveCommand from "./retrieve" + export default class ResourcesFetch extends BaseFilterCommand { - static description = "retrieve a resource or list a set of resources"; - static aliases = ["prov:fetch", "pf"]; + static description = "retrieve a resource or list a set of resources" + + static aliases = ["prov:fetch", "pf"] static examples = [ "$ commercelayer provisioning:fetch roles", @@ -15,14 +17,14 @@ export default class ResourcesFetch extends BaseFilterCommand { "$ clayer prov:fetch roles/", "$ cl prov:fetch roles//", "$ cl pf roles/{roleId}/permissions aBcdEkYWx", - ]; + ] - static strict = false; + static strict = false static flags = { ...RetrieveCommand.flags, ...ListCommand.flags, - }; + } static args = { ...ListCommand.args, @@ -36,38 +38,41 @@ export default class ResourcesFetch extends BaseFilterCommand { description: "resource id", required: false, }), - }; + } async run(): Promise { - const { args } = await this.parse(ResourcesFetch); - const path = this.fixPath(args.path, args); - const id = args.id; + const { args } = await this.parse(ResourcesFetch) + + const path = this.fixPath(args.path, args) + const id = args.id // If no relationship is defined then run retrieve/list command - const pathNodes = path.split("/"); - if (pathNodes.length < 3) - return await GetCommand.run(this.argv, this.config); + const pathNodes = path.split("/") + if (pathNodes.length < 3) return await GetCommand.run(this.argv, this.config) // Build argv array to pass to Relationship command - const relArgs = [...this.argv]; - relArgs.splice(0, id ? 2 : 1, ...pathNodes); + const relArgs = [...this.argv] + relArgs.splice(0, id ? 2 : 1, ...pathNodes) - return await RelationshipCommand.run(relArgs, this.config); + return await RelationshipCommand.run(relArgs, this.config) } private fixPath(path: string, args: any, _flags?: any): string { + // Remove base URL if (path.startsWith("http")) - path = path.substring(path.indexOf("/api/") + 4); + path = path.substring(path.indexOf("/api/") + 4) // Remove 'relationships' sub-path (usually part of 'self' link) if (path.includes("/relationships/")) - path = path.replace("/relationships", ""); + path = path.replace("/relationships", "") // Remove leading slash - if (path.startsWith("/")) path = path.substring(1); + if (path.startsWith("/")) path = path.substring(1) // Replace {resourceId} placeholder with actual resource id - if (args.id) path = path.replace(/\{.*\}/g, args.id as string); + if (args.id) path = path.replace(/\{.*\}/g, args.id as string) + + return path - return path; } + } diff --git a/src/commands/provisioning/get.ts b/src/commands/provisioning/get.ts index 6a47a5d..19d9ecf 100644 --- a/src/commands/provisioning/get.ts +++ b/src/commands/provisioning/get.ts @@ -1,42 +1,47 @@ -import Command from "../../base"; -import ListCommand from "./list"; -import RetrieveCommand from "./retrieve"; +import Command from "../../base" +import ListCommand from "./list" +import RetrieveCommand from "./retrieve" + export default class ProvisioningGet extends Command { - static description = "retrieve a resource or list a set of resources"; - static aliases = ["prov:get", "pg", "pget"]; + static description = "retrieve a resource or list a set of resources" + + static aliases = ["prov:get", "pg", "pget"] static examples = [ "$ commercelayer provisioning:get roles", "$ commercelayer prov:get roles", "$ clayer prov:get roles/", "$ cl prov:get roles ", - ]; + ] - static strict = false; + static strict = false static flags = { ...RetrieveCommand.flags, ...ListCommand.flags, - }; + } static args = { ...RetrieveCommand.args, - }; + } async run(): Promise { - const { args } = await this.parse(ProvisioningGet); + + const { args } = await this.parse(ProvisioningGet) const { id, singleton } = this.checkResourceId( args.resource, args.id, false, - ); + ) + + const command = id || singleton ? RetrieveCommand : ListCommand + const result = await command.run(this.argv, this.config) - const command = id || singleton ? RetrieveCommand : ListCommand; - const result = await command.run(this.argv, this.config); + return result - return result; } + } diff --git a/src/commands/provisioning/list.ts b/src/commands/provisioning/list.ts index 61613f3..fd5abd5 100644 --- a/src/commands/provisioning/list.ts +++ b/src/commands/provisioning/list.ts @@ -1,28 +1,23 @@ // import { mergeCommandParams } from '../../commands' -import { clColor } from "@commercelayer/cli-core"; -import type { - CommerceLayerProvisioningClient, - QueryPageSize, - QueryParamsList, -} from "@commercelayer/provisioning-sdk"; -import Command, { - cliux, - Flags /* FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS, */, -} from "../../base"; -import { addRequestReader, isRequestInterrupted } from "../../lang"; - -const OPERATION = "list"; +import { clColor } from "@commercelayer/cli-core" +import type { CommerceLayerProvisioningClient, QueryPageSize, QueryParamsList } from "@commercelayer/provisioning-sdk" +import Command, { cliux, Flags /* FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS, */ } from "../../base" +import { addRequestReader, isRequestInterrupted } from "../../lang" + +const OPERATION = "list" + export default class ProvisioningList extends Command { - static description = "fetch a collection of resources"; - static aliases = ["pl", "prov:list", "plist", "pls"]; + static description = "fetch a collection of resources" + + static aliases = ["pl", "prov:list", "plist", "pls"] static examples = [ "$ commercelayer provisioning:list roles -f id,name -i organization -s updated_at", '$ cl prov:list roles -i organization -f name -f organizations/name -w organization_name_eq="ORG NAME"', "$ cl prov:list roles -p 5 -n 10 -s -created_at --raw", - ]; + ] static flags = { ...Command.flags, @@ -70,58 +65,60 @@ export default class ProvisioningList extends Command { dependsOn: ["include"], hidden: true, }), - }; + } static args = { ...Command.args, - }; + } + async run(): Promise { - const { args, flags } = await this.parse(ProvisioningList); - const resource = this.checkResource(args.resource); + const { args, flags } = await this.parse(ProvisioningList) + + const resource = this.checkResource(args.resource) // const loadParams = flags[FLAG_LOAD_PARAMS] // const saveCmd = flags[FLAG_SAVE_PARAMS] // if (saveCmd) this.checkAlias(saveCmd, resource.api, OPERATION, this.config) - const showHeaders = flags.headers || flags["headers-only"]; + const showHeaders = flags.headers || flags["headers-only"] // Include flags const include: string[] = this.includeFlag( flags.include, undefined, flags["force-include"], - ); + ) // Fields flags - const fields = this.fieldsFlag(flags.fields, resource.type); + const fields = this.fieldsFlag(flags.fields, resource.type) // Where flags - const wheres = this.whereFlag(flags.where); + const wheres = this.whereFlag(flags.where) // Sort flags - const sort = this.sortFlag(flags.sort); + const sort = this.sortFlag(flags.sort) - const page = flags.page; - const perPage = flags.pageSize as QueryPageSize; + const page = flags.page + const perPage = flags.pageSize as QueryPageSize - const cl = this.initCommerceLayer(flags); + const cl = this.initCommerceLayer(flags) const rawReader = flags.raw ? cl.addRawResponseReader({ headers: showHeaders }) - : undefined; - const reqReader = flags.doc ? addRequestReader(cl) : undefined; + : undefined + const reqReader = flags.doc ? addRequestReader(cl) : undefined - const params: QueryParamsList = {}; + const params: QueryParamsList = {} try { - const resSdk: any = - cl[resource.api as keyof CommerceLayerProvisioningClient]; - this.checkOperation(resSdk, OPERATION); - if (include && include.length > 0) params.include = include; - if (fields && Object.keys(fields).length > 0) params.fields = fields; - if (wheres && Object.keys(wheres).length > 0) params.filters = wheres; - if (sort && Object.keys(sort).length > 0) params.sort = sort; - if (perPage && perPage > 0) params.pageSize = perPage; - if (page && page > 0) params.pageNumber = page; + const resSdk: any = cl[resource.api as keyof CommerceLayerProvisioningClient] + this.checkOperation(resSdk, OPERATION) + + if (include && include.length > 0) params.include = include + if (fields && Object.keys(fields).length > 0) params.fields = fields + if (wheres && Object.keys(wheres).length > 0) params.filters = wheres + if (sort && Object.keys(sort).length > 0) params.sort = sort + if (perPage && perPage > 0) params.pageSize = perPage + if (page && page > 0) params.pageNumber = page // Load saved command arguments // if (loadParams) { @@ -130,40 +127,43 @@ export default class ProvisioningList extends Command { // } // if (!flags.doc) cliux.action.start(`Fetching ${resource.api.replace(/_/g, ' ')}`) - const res = await resSdk.list(params); - cliux.action.stop(); + const res = await resSdk.list(params) + cliux.action.stop() - const out = flags.raw && rawReader ? rawReader.rawResponse : [...res]; - const meta = res.meta; + const out = flags.raw && rawReader ? rawReader.rawResponse : [...res] + const meta = res.meta if (res && res.length > 0) { if (flags.extract && Array.isArray(out)) { - const ext = this.extractFlag(flags.extract); + const ext = this.extractFlag(flags.extract) out.forEach((o) => { - this.extractObjectFields(ext, o); - }); + this.extractObjectFields(ext, o) + }) } - this.printHeaders(rawReader?.headers, flags); - this.printOutput(out, flags); + this.printHeaders(rawReader?.headers, flags) + this.printOutput(out, flags) if (!flags["headers-only"]) this.log( `\nRecords: ${clColor.blueBright(res.length)} of ${meta.recordCount} | Page: ${clColor.blueBright(String(flags.page || 1))} of ${meta.pageCount}\n`, - ); + ) // Save command output // if (flags.save || flags['save-path']) this.saveOutput(out, flags) - } else this.log(clColor.italic("\nNo records found\n")); + } else this.log(clColor.italic("\nNo records found\n")) // Save command arguments // if (saveCmd) this.saveParams(saveCmd, { type: resource.api }, OPERATION, params) - return out; + return out + } catch (error) { if (isRequestInterrupted(error) && reqReader) { - await this.showLiveDocumentation(reqReader.request, params, flags); - cl.removeInterceptor("request", reqReader.id); - } else this.printError(error, flags, args); + await this.showLiveDocumentation(reqReader.request, params, flags) + cl.removeInterceptor("request", reqReader.id) + } else this.printError(error, flags, args) } + } + } diff --git a/src/commands/provisioning/noc.ts b/src/commands/provisioning/noc.ts index 31e8851..66bbf5d 100644 --- a/src/commands/provisioning/noc.ts +++ b/src/commands/provisioning/noc.ts @@ -1,15 +1,21 @@ -import { Command } from "@oclif/core"; +import { Command } from "@oclif/core" export default class Noc extends Command { - static hidden = true; - static flags = {}; + static hidden = true + + static flags = {} async run(): Promise { - const output = "-= NoC =-"; - this.log(output); + const _parsed = await this.parse(Noc) + + const output = "-= NoC =-" + + this.log(output) + + return output - return output; } + } diff --git a/src/commands/provisioning/relationship.ts b/src/commands/provisioning/relationship.ts index ebad3b6..ac4a1d7 100644 --- a/src/commands/provisioning/relationship.ts +++ b/src/commands/provisioning/relationship.ts @@ -1,35 +1,30 @@ -import { clColor, clText } from "@commercelayer/cli-core"; -import type { - CommerceLayerProvisioningClient, - QueryPageSize, - QueryParamsList, -} from "@commercelayer/provisioning-sdk"; -import Command, { - Args, - cliux /*, FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS */, -} from "../../base"; -import { addRequestReader, isRequestInterrupted } from "../../lang"; +import { clColor, clText } from "@commercelayer/cli-core" +import type { CommerceLayerProvisioningClient, QueryPageSize, QueryParamsList } from "@commercelayer/provisioning-sdk" +import Command, { Args, cliux /*, FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS */ } from "../../base" +import { addRequestReader, isRequestInterrupted } from "../../lang" // import { mergeCommandParams } from '../../commands' -import ResourcesList from "./list"; +import ResourcesList from "./list" // const OPERATION = 'relationship' + export default class ResourcesRelationship extends Command { - static description = "fetch a resource relationship"; - static aliases = ["provisioning:rel", "prov:rel", "prov:relationship"]; + static description = "fetch a resource relationship" + + static aliases = ["provisioning:rel", "prov:rel", "prov:relationship"] - static hidden = true; + static hidden = true static examples = [ "$ commercelayer provisioning:relationship roles organization", "$ clayer prov:relationship roles permissions", "$ cl prov:rel roles permisions -w subject_eq=testsub", - ]; + ] static flags = { ...ResourcesList.flags, - }; + } static args = { ...ResourcesList.args, @@ -43,23 +38,24 @@ export default class ResourcesRelationship extends Command { description: "name of the relationship field", required: true, }), - }; + } async run(): Promise { - const { args, flags } = await this.parse(ResourcesRelationship); - const { res: resName, id } = this.checkResourceId(args.resource, args.id); - const resource = this.checkResource(resName, { singular: true }); + const { args, flags } = await this.parse(ResourcesRelationship) + + const { res: resName, id } = this.checkResourceId(args.resource, args.id) + const resource = this.checkResource(resName, { singular: true }) - const relationship = args.relationship; - const multiRel = this.isRelationship1N(relationship); - const showHeaders = flags.headers || flags["headers-only"]; + const relationship = args.relationship + const multiRel = this.isRelationship1N(relationship) + const showHeaders = flags.headers || flags["headers-only"] - const cl = this.initCommerceLayer(flags); + const cl = this.initCommerceLayer(flags) const resSdk: any = - cl[resource.api as keyof CommerceLayerProvisioningClient]; - this.checkRelationship(resSdk, relationship); + cl[resource.api as keyof CommerceLayerProvisioningClient] + this.checkRelationship(resSdk, relationship) // Load saved args // const loadParams = flags[FLAG_LOAD_PARAMS] @@ -67,31 +63,32 @@ export default class ResourcesRelationship extends Command { // if (saveCmd) this.checkAlias(saveCmd, resource.api, OPERATION, this.config) // Include flags - const include: string[] = this.includeFlag(flags.include); + const include: string[] = this.includeFlag(flags.include) // Fields flags - const fields = this.fieldsFlag(flags.fields, resource.type); + const fields = this.fieldsFlag(flags.fields, resource.type) // Where flags - const wheres = this.whereFlag(flags.where); + const wheres = this.whereFlag(flags.where) // Sort flags - const sort = this.sortFlag(flags.sort); + const sort = this.sortFlag(flags.sort) - const page = flags.page; - const perPage = flags.pageSize as QueryPageSize; + const page = flags.page + const perPage = flags.pageSize as QueryPageSize const rawReader = flags.raw ? cl.addRawResponseReader({ headers: showHeaders }) - : undefined; - const reqReader = flags.doc ? addRequestReader(cl) : undefined; + : undefined + const reqReader = flags.doc ? addRequestReader(cl) : undefined - const params: QueryParamsList = {}; + const params: QueryParamsList = {} try { - if (include && include.length > 0) params.include = include; - if (fields && Object.keys(fields).length > 0) params.fields = fields; - if (wheres && Object.keys(wheres).length > 0) params.filters = wheres; - if (sort && Object.keys(sort).length > 0) params.sort = sort; - if (perPage && perPage > 0) params.pageSize = perPage; - if (page && page > 0) params.pageNumber = page; + + if (include && include.length > 0) params.include = include + if (fields && Object.keys(fields).length > 0) params.fields = fields + if (wheres && Object.keys(wheres).length > 0) params.filters = wheres + if (sort && Object.keys(sort).length > 0) params.sort = sort + if (perPage && perPage > 0) params.pageSize = perPage + if (page && page > 0) params.pageNumber = page // Load saved command arguments // if (loadParams) { @@ -102,25 +99,25 @@ export default class ResourcesRelationship extends Command { if (!flags.doc && multiRel) cliux.action.start( `Fetching ${resource.api.replace(/_/g, " ")}.${relationship} for id ${id}`, - ); + ) - const res = await resSdk[relationship](id, params); - if (multiRel) cliux.action.stop(); + const res = await resSdk[relationship](id, params) + if (multiRel) cliux.action.stop() const out = flags.raw && rawReader ? rawReader.rawResponse : multiRel ? [...res] - : res; + : res if (out && flags.extract) { - const ext = this.extractFlag(flags.extract); + const ext = this.extractFlag(flags.extract) if (Array.isArray(out)) out.forEach((o) => { - this.extractObjectFields(ext, o); - }); - else this.extractObjectFields(ext, out); + this.extractObjectFields(ext, o) + }) + else this.extractObjectFields(ext, out) } if (!out || out.length === 0) @@ -128,14 +125,14 @@ export default class ResourcesRelationship extends Command { clColor.italic( `\nRelationship ${clColor.api.resource(`${resName}.${relationship}`)} is empty\n`, ), - ); + ) else { - this.printHeaders(rawReader?.headers, flags); - this.printOutput(out, flags); + this.printHeaders(rawReader?.headers, flags) + this.printOutput(out, flags) if (multiRel && !flags["headers-only"]) this.log( `\nRecords: ${clColor.blueBright(out.length)} of ${res.meta.recordCount} | Page: ${clColor.blueBright(String(flags.page || 1))} of ${res.meta.pageCount}\n`, - ); + ) // Save command output // if (flags.save || flags['save-path']) this.saveOutput(out, flags) } @@ -143,24 +140,31 @@ export default class ResourcesRelationship extends Command { // Save command arguments // if (saveCmd) this.saveParams(saveCmd, { type: resource.api, id }, OPERATION, params) - return out; + return out + } catch (error) { if (isRequestInterrupted(error) && reqReader) { - await this.showLiveDocumentation(reqReader.request, params, flags); - cl.removeInterceptor("request", reqReader.id); - } else this.printError(error, flags, args); + await this.showLiveDocumentation(reqReader.request, params, flags) + cl.removeInterceptor("request", reqReader.id) + } else this.printError(error, flags, args) } + } + private checkRelationship(sdk: any, name: string): boolean { if (!sdk[name]) this.error( `Relationship not available for resource ${clColor.api.resource(sdk.type())}: ${clColor.msg.error(name)}`, - ); - return true; + ) + + return true + } + private isRelationship1N(name: string): boolean { - return name === clText.pluralize(name); + return name === clText.pluralize(name) } + } diff --git a/src/commands/provisioning/resources.ts b/src/commands/provisioning/resources.ts index 3638f51..2e5770c 100644 --- a/src/commands/provisioning/resources.ts +++ b/src/commands/provisioning/resources.ts @@ -1,35 +1,35 @@ -import { clColor, clConfig, clUtil } from "@commercelayer/cli-core"; -import { Command, ux as cliux, Flags } from "@oclif/core"; -import type { CommandError } from "@oclif/core/lib/interfaces"; -import { resourceList } from "../../util/resources"; +import { clColor, clConfig, clUtil } from "@commercelayer/cli-core" +import cliux from "@commercelayer/cli-ux" +import { Command, Flags } from "@oclif/core" +import { resourceList } from "../../util/resources" export default class ProvisioningResources extends Command { - static description = "list all the available Provisioning API resources"; + static description = "list all the available Provisioning API resources" - static aliases = ["prov:resources", "pres"]; + static aliases = ["prov:resources", "pres"] static examples = [ "$ commercelayer provisioning:resources", "$ cl prov:resources", - ]; + ] static flags = { help: Flags.help({ char: "h" }), - }; + } async run(): Promise { - await this.parse(ProvisioningResources); + await this.parse(ProvisioningResources) this.log( clColor.style.title("\n-= Provisioning API available resources =-\n"), - ); + ) const resourceArray = resourceList("api").map((r) => { return { name: r, url: `${clConfig.doc.provisioning_api_reference}/${r}`, - }; - }); + } + }) cliux.Table.table( resourceArray, @@ -47,12 +47,12 @@ export default class ProvisioningResources extends Command { { printLine: clUtil.log, }, - ); - this.log(); + ) + this.log() } async catch(error: any): Promise { - if (error.code === "EEXIT" && error.message === "EEXIT: 0") return; - return await super.catch(error as CommandError); + if (error.code === "EEXIT" && error.message === "EEXIT: 0") return + return await super.catch(error) } } diff --git a/src/commands/provisioning/retrieve.ts b/src/commands/provisioning/retrieve.ts index 37d8c79..7cac22c 100644 --- a/src/commands/provisioning/retrieve.ts +++ b/src/commands/provisioning/retrieve.ts @@ -1,28 +1,24 @@ -import type { - CommerceLayerProvisioningClient, - QueryParamsRetrieve, -} from "@commercelayer/provisioning-sdk"; -import Command, { - Args, - /*, FLAG_LOAD_PARAMS, FLAG_SAVE_PARAM */ Flags, -} from "../../base"; -import { addRequestReader, isRequestInterrupted } from "../../lang"; +import type { CommerceLayerProvisioningClient, QueryParamsRetrieve } from "@commercelayer/provisioning-sdk" +import Command, { Args, /*, FLAG_LOAD_PARAMS, FLAG_SAVE_PARAM */ Flags } from "../../base" +import { addRequestReader, isRequestInterrupted } from "../../lang" // import { mergeCommandParams } from '../../commands' -const OPERATION = "retrieve"; +const OPERATION = "retrieve" + export default class ProvisioningRetrieve extends Command { - static description = "fetch a single resource"; + + static description = "fetch a single resource" - static aliases = ["prov:retrieve", "pr", "pretrieve"]; + static aliases = ["prov:retrieve", "pr", "pretrieve"] static examples = [ "$ commercelayer provisioning:retrieve roles/", "$ commercelayer prov:retrieve roles ", "$ cl prov:retrieve roles ", "$ clayer pr roles/", - ]; + ] static flags = { ...Command.flags, @@ -46,7 +42,7 @@ export default class ProvisioningRetrieve extends Command { multiple: true, exclusive: ["raw"], }), - }; + } static args = { ...Command.args, @@ -55,41 +51,43 @@ export default class ProvisioningRetrieve extends Command { description: "id of the resource to retrieve", required: false, }), - }; + } + async run(): Promise { - const { args, flags } = await this.parse(ProvisioningRetrieve); - const { res, id } = this.checkResourceId(args.resource, args.id); - const resource = this.checkResource(res, { singular: true }); + const { args, flags } = await this.parse(ProvisioningRetrieve) + + const { res, id } = this.checkResourceId(args.resource, args.id) + const resource = this.checkResource(res, { singular: true }) // const loadParams = flags[FLAG_LOAD_PARAMS] // const saveCmd = flags[FLAG_SAVE_PARAMS] // if (saveCmd) this.checkAlias(saveCmd, resource.api, OPERATION, this.config) - const showHeaders = flags.headers || flags["headers-only"]; + const showHeaders = flags.headers || flags["headers-only"] // Include flags - const include: string[] = this.includeFlag(flags.include); + const include: string[] = this.includeFlag(flags.include) // Fields flags - const fields = this.fieldsFlag(flags.fields, resource.type); + const fields = this.fieldsFlag(flags.fields, resource.type) - const cl = this.initCommerceLayer(flags); + const cl = this.initCommerceLayer(flags) const rawReader = flags.raw ? cl.addRawResponseReader({ headers: showHeaders }) - : undefined; - const reqReader = flags.doc ? addRequestReader(cl) : undefined; + : undefined + const reqReader = flags.doc ? addRequestReader(cl) : undefined - const params: QueryParamsRetrieve = {}; + const params: QueryParamsRetrieve = {} try { - const resSdk: any = - cl[resource.api as keyof CommerceLayerProvisioningClient]; - this.checkOperation(resSdk, OPERATION); + const resSdk: any = cl[resource.api as keyof CommerceLayerProvisioningClient] + + this.checkOperation(resSdk, OPERATION) - if (include && include.length > 0) params.include = include; - if (fields && Object.keys(fields).length > 0) params.fields = fields; + if (include && include.length > 0) params.include = include + if (fields && Object.keys(fields).length > 0) params.fields = fields // Load saved command arguments // if (loadParams) { @@ -97,29 +95,32 @@ export default class ProvisioningRetrieve extends Command { // if (savedParams) mergeCommandParams(params, savedParams) // } - const res = await resSdk.retrieve(id, params); + const res = await resSdk.retrieve(id, params) - const out = flags.raw && rawReader ? rawReader.rawResponse : res; + const out = flags.raw && rawReader ? rawReader.rawResponse : res if (flags.extract) { - const ext = this.extractFlag(flags.extract); - this.extractObjectFields(ext, out); + const ext = this.extractFlag(flags.extract) + this.extractObjectFields(ext, out) } - this.printHeaders(rawReader?.headers, flags); - this.printOutput(out, flags); + this.printHeaders(rawReader?.headers, flags) + this.printOutput(out, flags) // Save command output // if (flags.save || flags['save-path']) this.saveOutput(out, flags) // Save command arguments // if (saveCmd) this.saveParams(saveCmd, { type: resource.api, id }, OPERATION, params) - return out; + return out + } catch (error: any) { if (isRequestInterrupted(error) && reqReader) { - await this.showLiveDocumentation(reqReader.request, params, flags); - cl.removeInterceptor("request", reqReader.id); - } else this.printError(error, flags, args); + await this.showLiveDocumentation(reqReader.request, params, flags) + cl.removeInterceptor("request", reqReader.id) + } else this.printError(error, flags, args) } + } + } diff --git a/src/commands/provisioning/update.ts b/src/commands/provisioning/update.ts index 514f222..a0df7a9 100644 --- a/src/commands/provisioning/update.ts +++ b/src/commands/provisioning/update.ts @@ -1,20 +1,16 @@ -import { clApi, clColor } from "@commercelayer/cli-core"; -import type { - CommerceLayerProvisioningClient, - QueryParamsRetrieve, -} from "@commercelayer/provisioning-sdk"; -import Command, { - Args, - /* , FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS */ Flags, -} from "../../base"; -import { addRequestReader, isRequestInterrupted } from "../../lang"; - -const OPERATION = "update"; +import { clApi, clColor } from "@commercelayer/cli-core" +import type { CommerceLayerProvisioningClient, QueryParamsRetrieve } from "@commercelayer/provisioning-sdk" +import Command, { Args, /* , FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS */ Flags } from "../../base" +import { addRequestReader, isRequestInterrupted } from "../../lang" + +const OPERATION = "update" + export default class ProvisioningUpdate extends Command { - static description = "update an existing resource"; - static aliases = ["prov:update", "pu", "pupdate", "pupd"]; + static description = "update an existing resource" + + static aliases = ["prov:update", "pu", "pupdate", "pupd"] static examples = [ "$ commercelayer provisioning:update roles/ -a reference=referenceId", @@ -22,7 +18,7 @@ export default class ProvisioningUpdate extends Command { '$ cl prov:update roles/ -m meta_key="meta value"', '$ cl pu roles -M meta_key="metadata overwrite', "$ clayer prov:update roles -D /path/to/data/file/data.json", - ]; + ] static flags = { ...Command.flags, @@ -67,7 +63,7 @@ export default class ProvisioningUpdate extends Command { "doc" /*, FLAG_LOAD_PARAMS, FLAG_SAVE_PARAMS */, ], }), - }; + } static args = { ...Command.args, @@ -76,24 +72,27 @@ export default class ProvisioningUpdate extends Command { description: "id of the resource to update", required: false, }), - }; + } + async run(): Promise { - const { args, flags } = await this.parse(ProvisioningUpdate); - const { res, id } = this.checkResourceId(args.resource, args.id); - const resource = this.checkResource(res, { singular: true }); + const { args, flags } = await this.parse(ProvisioningUpdate) + + const { res, id } = this.checkResourceId(args.resource, args.id) + const resource = this.checkResource(res, { singular: true }) // const loadParams = flags[FLAG_LOAD_PARAMS] // const saveCmd = flags[FLAG_SAVE_PARAMS] // if (saveCmd) this.checkAlias(saveCmd, resource.api, OPERATION, this.config) - const showHeaders = flags.headers || flags["headers-only"]; + const showHeaders = flags.headers || flags["headers-only"] // Raw request if (flags.data) { try { - const baseUrl = clApi.baseURL("provisioning", undefined, flags.domain); - const accessToken = flags.accessToken; + + const baseUrl = clApi.baseURL("provisioning", undefined, flags.domain) + const accessToken = flags.accessToken const rawRes = await clApi.request.raw( { operation: clApi.Operation.Update, @@ -103,48 +102,51 @@ export default class ProvisioningUpdate extends Command { }, clApi.request.readDataFile(flags.data), id, - ); - const out = flags.raw ? rawRes : clApi.response.denormalize(rawRes); - this.printOutput(out, flags); + ) + const out = flags.raw ? rawRes : clApi.response.denormalize(rawRes) + this.printOutput(out, flags) this.log( `\n${clColor.style.success("Successfully")} updated resource of type ${clColor.style.resource(resource.api)} with id ${clColor.style.id(rawRes.id)}\n`, - ); - return out; + ) + + return out + } catch (error) { - this.printError(error); + this.printError(error) } + } - const cl = this.initCommerceLayer(flags); + const cl = this.initCommerceLayer(flags) // Attributes flags - const attributes = this.attributeFlag(flags.attribute); + const attributes = this.attributeFlag(flags.attribute) // Objects flags - const objects = this.objectFlag(flags.object); + const objects = this.objectFlag(flags.object) // Relationships flags - const relationships = this.relationshipFlag(flags.relationship); + const relationships = this.relationshipFlag(flags.relationship) // Metadata flags const metadata = this.metadataFlag( flags.metadata || flags["metadata-replace"], - ); + ) // Relationships if (relationships && Object.keys(relationships).length > 0) Object.entries(relationships).forEach(([key, value]) => { const relSdk: any = - cl[value.type as keyof CommerceLayerProvisioningClient]; + cl[value.type as keyof CommerceLayerProvisioningClient] const rel = relSdk.relationship( value.id === null || value.id === "null" ? null : value, - ); - attributes[key] = rel; - }); + ) + attributes[key] = rel + }) // Objects if (objects && Object.keys(objects).length > 0) { for (const o of Object.keys(objects)) { if (Object.keys(attributes).includes(o)) - this.warn(`Object ${o} will overwrite attribute ${o}`); - else attributes[o] = objects[o]; + this.warn(`Object ${o} will overwrite attribute ${o}`) + else attributes[o] = objects[o] } } @@ -153,42 +155,42 @@ export default class ProvisioningUpdate extends Command { if (attributes.metadata) this.warn( `Attribute ${clColor.style.attribute("metadata")} will be overwritten by the content defined with the flags ${clColor.style.flag("-m/-M")}`, - ); - attributes.metadata = metadata; + ) + attributes.metadata = metadata } // Include flags - const include: string[] = this.includeFlag(flags.include, relationships); + const include: string[] = this.includeFlag(flags.include, relationships) // Fields flags - const fields = this.fieldsFlag(flags.fields, resource.type); + const fields = this.fieldsFlag(flags.fields, resource.type) const rawReader = flags.raw ? cl.addRawResponseReader({ headers: showHeaders }) - : undefined; - const reqReader = flags.doc ? addRequestReader(cl) : undefined; + : undefined + const reqReader = flags.doc ? addRequestReader(cl) : undefined - const params: QueryParamsRetrieve = {}; + const params: QueryParamsRetrieve = {} try { - const resSdk: any = - cl[resource.api as keyof CommerceLayerProvisioningClient]; - this.checkOperation(resSdk, OPERATION, attributes); - if (include && include.length > 0) params.include = include; - if (fields && Object.keys(fields).length > 0) params.fields = fields; + const resSdk: any = cl[resource.api as keyof CommerceLayerProvisioningClient] + this.checkOperation(resSdk, OPERATION, attributes) + + if (include && include.length > 0) params.include = include + if (fields && Object.keys(fields).length > 0) params.fields = fields // Metadata attributes merge if (flags.metadata) { const params: QueryParamsRetrieve = { fields: { [resource.api]: ["metadata"] }, - }; - const remRes = await resSdk.retrieve(id, params); - const remMeta: object = remRes.metadata; + } + const remRes = await resSdk.retrieve(id, params) + const remMeta: object = remRes.metadata if (remMeta && Object.keys(remMeta).length > 0) - attributes.metadata = { ...remMeta, ...metadata }; + attributes.metadata = { ...remMeta, ...metadata } } - attributes.id = id; + attributes.id = id // Load saved command arguments // if (loadParams) { @@ -196,26 +198,29 @@ export default class ProvisioningUpdate extends Command { // if (savedParams) mergeCommandParams(params, savedParams) // } - const res = await resSdk.update(attributes, params); + const res = await resSdk.update(attributes, params) - const out = flags.raw && rawReader ? rawReader.rawResponse : res; + const out = flags.raw && rawReader ? rawReader.rawResponse : res - this.printHeaders(rawReader?.headers, flags); - this.printOutput(out, flags); + this.printHeaders(rawReader?.headers, flags) + this.printOutput(out, flags) this.log( `\n${clColor.style.success("Successfully")} updated resource of type ${clColor.style.resource(resource.type)} with id ${clColor.style.id(res.id)}\n`, - ); + ) // Save command arguments // if (saveCmd) this.saveParams(saveCmd, { type: resource.api }, OPERATION, params) - return out; + return out + } catch (error) { if (isRequestInterrupted(error) && reqReader) { - await this.showLiveDocumentation(reqReader.request, undefined, flags); - cl.removeInterceptor("request", reqReader.id); - } else this.printError(error, flags, args); + await this.showLiveDocumentation(reqReader.request, undefined, flags) + cl.removeInterceptor("request", reqReader.id) + } else this.printError(error, flags, args) } + } + } diff --git a/test/commands/provisioning/create.test.ts b/test/commands/provisioning/create.test.ts index 894e871..a5e210c 100644 --- a/test/commands/provisioning/create.test.ts +++ b/test/commands/provisioning/create.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:create", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:create', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/delete.test.ts b/test/commands/provisioning/delete.test.ts index b24919b..5884d46 100644 --- a/test/commands/provisioning/delete.test.ts +++ b/test/commands/provisioning/delete.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:delete", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:delete', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/exec.test.ts b/test/commands/provisioning/exec.test.ts index 1992635..dbe5cb8 100644 --- a/test/commands/provisioning/exec.test.ts +++ b/test/commands/provisioning/exec.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:exec", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:exec', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/fetch.test.ts b/test/commands/provisioning/fetch.test.ts index 1cb3631..cd71abc 100644 --- a/test/commands/provisioning/fetch.test.ts +++ b/test/commands/provisioning/fetch.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:fetch", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:fetch', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/get.test.ts b/test/commands/provisioning/get.test.ts index 6aadcde..f86f8f7 100644 --- a/test/commands/provisioning/get.test.ts +++ b/test/commands/provisioning/get.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:get", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:get', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/list.test.ts b/test/commands/provisioning/list.test.ts index 63c1530..ecf73bd 100644 --- a/test/commands/provisioning/list.test.ts +++ b/test/commands/provisioning/list.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:list", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:list', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/relationship.test.ts b/test/commands/provisioning/relationship.test.ts index b090b51..3547e66 100644 --- a/test/commands/provisioning/relationship.test.ts +++ b/test/commands/provisioning/relationship.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:relationship", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:relationship', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/resources.test.ts b/test/commands/provisioning/resources.test.ts index 06d0926..51860f2 100644 --- a/test/commands/provisioning/resources.test.ts +++ b/test/commands/provisioning/resources.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:resources", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:resources', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/retrieve.test.ts b/test/commands/provisioning/retrieve.test.ts index 534c0e6..9dfbdba 100644 --- a/test/commands/provisioning/retrieve.test.ts +++ b/test/commands/provisioning/retrieve.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:retrieve", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:retrieve', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/test/commands/provisioning/update.test.ts b/test/commands/provisioning/update.test.ts index 2190a50..25c7978 100644 --- a/test/commands/provisioning/update.test.ts +++ b/test/commands/provisioning/update.test.ts @@ -1,11 +1,10 @@ -import { expect, test } from "@oclif/test"; +import { runCommand } from '@oclif/test' +import { expect } from 'chai' -describe("provisioning:update", () => { - test - .timeout(15000) - .stdout() - .command(["provisioning:noc"]) - .it("runs NoC", (ctx) => { - expect(ctx.stdout).to.contain("-= NoC =-"); - }); -}); + +describe('provisioning:update', () => { + it('runs NoC', async () => { + const { stdout } = await runCommand<{ name: string }>(['provisioning:noc']) + expect(stdout).to.contain('-= NoC =-') + }).timeout(15000) +}) diff --git a/tsconfig.json b/tsconfig.json index 0f4f17c..cec0f5a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,7 +8,8 @@ "strict": true, "target": "ES2022", "esModuleInterop": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "types": ["node"] }, "include": ["src/**/*"] }