diff --git a/common/changes/@boostercloud/framework-core/chore-migrate-cdktf-to-cdktn_2026-05-05-20-03.json b/common/changes/@boostercloud/framework-core/chore-migrate-cdktf-to-cdktn_2026-05-05-20-03.json new file mode 100644 index 000000000..afe030348 --- /dev/null +++ b/common/changes/@boostercloud/framework-core/chore-migrate-cdktf-to-cdktn_2026-05-05-20-03.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@boostercloud/framework-core", + "comment": "Migrates cdktf to cdktn and fixes effect peer deps", + "type": "patch" + } + ], + "packageName": "@boostercloud/framework-core" +} \ No newline at end of file diff --git a/common/config/rush/.pnpmfile.cjs b/common/config/rush/.pnpmfile.cjs index 005ce5755..708c45e15 100644 --- a/common/config/rush/.pnpmfile.cjs +++ b/common/config/rush/.pnpmfile.cjs @@ -37,13 +37,27 @@ function readPackage(packageJson, context) { // Security overrides for transitive dependencies (high/critical vulnerabilities). // Each entry targets a specific major version line to avoid breaking cross-major deps. const securityOverrides = [ - { pkg: 'form-data', major: '4', minSafe: '>=4.0.4 <5.0.0' }, // GHSA-fjxv-7rqg-78g4 (critical) - { pkg: 'axios', major: '1', minSafe: '>=1.12.0 <2.0.0' }, // GHSA-4hjh-wcwx-xvwj, GHSA-jr5f-v2jv-69x6 (high) - { pkg: 'tar-fs', major: '2', minSafe: '>=2.1.4 <3.0.0' }, // GHSA-vj76-c3g6-qr5v, GHSA-8cj5-5rvv-wf4v (high) - { pkg: 'glob', major: '10', minSafe: '>=10.5.0 <11.0.0' }, // GHSA-5j98-mcp5-4vw2 (high) - { pkg: 'qs', major: '6', minSafe: '>=6.14.1 <7.0.0' }, // GHSA-6rw7-vpxm-498p (high) - { pkg: 'jws', major: '3', minSafe: '>=3.2.3 <4.0.0' }, // GHSA-869p-cjfg-cm3x (high) - { pkg: 'jws', major: '4', minSafe: '>=4.0.1 <5.0.0' }, // GHSA-869p-cjfg-cm3x (high) + { pkg: 'form-data', major: '4', minSafe: '>=4.0.4 <5.0.0' }, // GHSA-fjxv-7rqg-78g4 (critical) + { pkg: 'axios', major: '1', minSafe: '>=1.12.0 <2.0.0' }, // GHSA-4hjh-wcwx-xvwj, GHSA-jr5f-v2jv-69x6 (high) + { pkg: 'tar-fs', major: '2', minSafe: '>=2.1.4 <3.0.0' }, // GHSA-vj76-c3g6-qr5v, GHSA-8cj5-5rvv-wf4v (high) + { pkg: 'glob', major: '10', minSafe: '>=10.5.0 <11.0.0' }, // GHSA-5j98-mcp5-4vw2 (high) + { pkg: 'qs', major: '6', minSafe: '>=6.15.2 <7.0.0' }, // GHSA-q8mj-m7cp-5q26 (moderate) + { pkg: 'jws', major: '3', minSafe: '>=3.2.3 <4.0.0' }, // GHSA-869p-cjfg-cm3x (high) + { pkg: 'jws', major: '4', minSafe: '>=4.0.1 <5.0.0' }, // GHSA-869p-cjfg-cm3x (high) + { pkg: 'undici', major: '7', minSafe: '>=7.24.0 <8.0.0' }, // GHSA-f269, GHSA-vrm6, GHSA-v9p9 (high) + { pkg: 'shell-quote', major: '1', minSafe: '>=1.8.4 <2.0.0' }, // GHSA-58qx-3vcg-4xpx (critical) + { pkg: 'tar', major: '6', minSafe: '>=6.2.1 <7.0.0' }, // CVE-2024-28863 etc. + { pkg: 'tar', major: '7', minSafe: '>=7.5.11 <8.0.0' }, // GHSA series on tar 7.x (high) + { pkg: 'serialize-javascript',major: '6', minSafe: '>=6.0.2 <7.0.0' }, // GHSA-76p7-773f-r4q5 (moderate) + { pkg: 'serialize-javascript',major: '7', minSafe: '>=7.0.5 <8.0.0' }, // GHSA on 7.x (high) + { pkg: 'flatted', major: '3', minSafe: '>=3.4.2 <4.0.0' }, // GHSA on flatted (high) + { pkg: 'minimatch', major: '5', minSafe: '>=5.1.8 <6.0.0' }, // GHSA series on minimatch 5 (high) + { pkg: 'brace-expansion', major: '5', minSafe: '>=5.0.6 <6.0.0' }, // GHSA-jxxr-4gwj-5jf2 (moderate) + { pkg: 'ws', major: '8', minSafe: '>=8.20.1 <9.0.0' }, // GHSA on ws 8.x (moderate) + { pkg: 'nanoid', major: '3', minSafe: '>=3.3.8 <4.0.0' }, // GHSA on nanoid (moderate); replaces prior >=3.1.31 pin + { pkg: 'js-yaml', major: '4', minSafe: '>=4.1.1 <5.0.0' }, // GHSA on js-yaml (moderate) + { pkg: 'yaml', major: '1', minSafe: '>=1.10.3 <2.0.0' }, // GHSA on yaml 1.x (moderate) + { pkg: 'follow-redirects', major: '1', minSafe: '>=1.16.0 <2.0.0' }, // GHSA on follow-redirects (moderate) ]; for (const { pkg, major, minSafe } of securityOverrides) { diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 1928319e4..68ea24d68 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -14,9 +14,9 @@ importers: dependencies: '@apollo/client': specifier: 3.7.13 - version: 3.7.13(graphql@16.12.0)(react@17.0.2)(subscriptions-transport-ws@0.11.0(graphql@16.12.0)) + version: 3.7.13(graphql@16.14.2)(react@17.0.2)(subscriptions-transport-ws@0.11.0(graphql@16.14.2)) '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 @@ -29,7 +29,7 @@ importers: version: 3.1.5 graphql: specifier: ^16.6.0 - version: 16.12.0 + version: 16.14.2 jsonwebtoken: specifier: 9.0.2 version: 9.0.2 @@ -38,23 +38,23 @@ importers: version: 9.2.3 subscriptions-transport-ws: specifier: 0.11.0 - version: 0.11.0(graphql@16.12.0) + version: 0.11.0(graphql@16.14.2) tslib: specifier: ^2.4.0 version: 2.8.1 ws: - specifier: 8.18.0 - version: 8.18.0 + specifier: ^8.20.1 + version: 8.21.0 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/jsonwebtoken': specifier: 9.0.8 version: 9.0.8 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/ws': specifier: 8.5.4 version: 8.5.4 @@ -104,10 +104,10 @@ importers: ../../packages/cli: dependencies: '@boostercloud/framework-core': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-core '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 @@ -117,7 +117,7 @@ importers: version: 4.2.7 '@oclif/plugin-help': specifier: ^6.2.25 - version: 6.2.37 + version: 6.2.50 chalk: specifier: ^2.4.2 version: 2.4.2 @@ -150,14 +150,14 @@ importers: version: 2.8.1 devDependencies: '@boostercloud/application-tester': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../application-tester '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@oclif/test': specifier: ^4.1.10 - version: 4.1.16(@oclif/core@4.2.7) + version: 4.1.18(@oclif/core@4.2.7) '@types/chai': specifier: 4.2.18 version: 4.2.18 @@ -184,7 +184,7 @@ importers: version: 4.2.5 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/rewire': specifier: ^2.5.28 version: 2.5.30 @@ -253,7 +253,7 @@ importers: version: 3.5.0(chai@4.2.0)(sinon@9.2.3) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) ts-patch: specifier: 3.3.0 version: 3.3.0 @@ -264,7 +264,7 @@ importers: ../../packages/framework-common-helpers: dependencies: '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 @@ -280,7 +280,7 @@ importers: version: 2.8.1 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/chai': specifier: 4.2.18 @@ -296,7 +296,7 @@ importers: version: 10.0.10 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/rewire': specifier: ^2.5.28 version: 2.5.30 @@ -362,7 +362,7 @@ importers: version: 3.5.0(chai@4.2.0)(sinon@9.2.3) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) typescript: specifier: 5.7.3 version: 5.7.3 @@ -370,35 +370,35 @@ importers: ../../packages/framework-core: dependencies: '@boostercloud/framework-common-helpers': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-common-helpers '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect/cli': - specifier: 0.56.2 - version: 0.56.2(@effect/platform@0.77.2(effect@3.13.2))(@effect/printer-ansi@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2))(@effect/printer@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2))(effect@3.13.2) + specifier: 0.58.4 + version: 0.58.4(@effect/platform@0.79.4(effect@3.21.3))(@effect/printer-ansi@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3))(@effect/printer@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3))(effect@3.21.3) '@effect/platform': - specifier: 0.77.2 - version: 0.77.2(effect@3.13.2) + specifier: 0.79.4 + version: 0.79.4(effect@3.21.3) '@effect/platform-node': - specifier: 0.73.2 - version: 0.73.2(@effect/platform@0.77.2(effect@3.13.2))(effect@3.13.2) + specifier: 0.75.4 + version: 0.75.4(@effect/platform@0.79.4(effect@3.21.3))(effect@3.21.3) '@effect/printer': - specifier: 0.41.2 - version: 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) + specifier: 0.41.12 + version: 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) '@effect/printer-ansi': - specifier: 0.41.2 - version: 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) + specifier: 0.41.12 + version: 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) '@effect/schema': specifier: 0.75.5 - version: 0.75.5(effect@3.13.2) + version: 0.75.5(effect@3.21.3) '@effect/typeclass': - specifier: 0.32.2 - version: 0.32.2(effect@3.13.2) + specifier: 0.32.12 + version: 0.32.12(effect@3.21.3) effect: - specifier: 3.13.2 - version: 3.13.2 + specifier: 3.21.3 + version: 3.21.3 fast-check: specifier: ^3.13.2 version: 3.23.2 @@ -407,10 +407,10 @@ importers: version: 2.16.11 graphql-scalars: specifier: ^1.24.1 - version: 1.25.0(graphql@16.12.0) + version: 1.25.0(graphql@16.14.2) graphql-subscriptions: specifier: 2.0.0 - version: 2.0.0(graphql@16.12.0) + version: 2.0.0(graphql@16.14.2) inflected: specifier: 2.1.0 version: 2.1.0 @@ -433,14 +433,14 @@ importers: specifier: 13.15.26 version: 13.15.26 ws: - specifier: 8.18.0 - version: 8.18.0 + specifier: ^8.20.1 + version: 8.21.0 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@boostercloud/metadata-booster': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../metadata-booster '@types/chai': specifier: 4.2.18 @@ -462,7 +462,7 @@ importers: version: 10.0.10 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/sinon': specifier: 10.0.0 version: 10.0.0 @@ -507,7 +507,7 @@ importers: version: 5.1.0 graphql: specifier: ^16.6.0 - version: 16.12.0 + version: 16.14.2 mocha: specifier: 10.2.0 version: 10.2.0 @@ -534,7 +534,7 @@ importers: version: 3.5.0(chai@4.2.0)(sinon@9.2.3) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) ts-patch: specifier: 3.3.0 version: 3.3.0 @@ -545,59 +545,59 @@ importers: ../../packages/framework-integration-tests: dependencies: '@boostercloud/framework-common-helpers': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-common-helpers '@boostercloud/framework-core': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-core '@boostercloud/framework-provider-aws': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-aws '@boostercloud/framework-provider-azure': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-azure '@boostercloud/framework-provider-local': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-local '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 version: 0.60.5 '@effect/cli': - specifier: 0.56.2 - version: 0.56.2(@effect/platform@0.77.2(effect@3.13.2))(@effect/printer-ansi@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2))(@effect/printer@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2))(effect@3.13.2) + specifier: 0.58.4 + version: 0.58.4(@effect/platform@0.79.4(effect@3.21.3))(@effect/printer-ansi@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3))(@effect/printer@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3))(effect@3.21.3) '@effect/platform': - specifier: 0.77.2 - version: 0.77.2(effect@3.13.2) + specifier: 0.79.4 + version: 0.79.4(effect@3.21.3) '@effect/platform-node': - specifier: 0.73.2 - version: 0.73.2(@effect/platform@0.77.2(effect@3.13.2))(effect@3.13.2) + specifier: 0.75.4 + version: 0.75.4(@effect/platform@0.79.4(effect@3.21.3))(effect@3.21.3) '@effect/printer': - specifier: 0.41.2 - version: 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) + specifier: 0.41.12 + version: 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) '@effect/printer-ansi': - specifier: 0.41.2 - version: 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) + specifier: 0.41.12 + version: 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) '@effect/schema': specifier: 0.75.5 - version: 0.75.5(effect@3.13.2) + version: 0.75.5(effect@3.21.3) '@effect/typeclass': - specifier: 0.32.2 - version: 0.32.2(effect@3.13.2) + specifier: 0.32.12 + version: 0.32.12(effect@3.21.3) aws-sdk: specifier: 2.853.0 version: 2.853.0 effect: - specifier: 3.13.2 - version: 3.13.2 + specifier: 3.21.3 + version: 3.21.3 execa: specifier: ^2.0.3 version: 2.1.0 express: specifier: ^4.19.2 - version: 4.22.1 + version: 4.22.2 express-unless: specifier: 2.1.3 version: 2.1.3 @@ -606,37 +606,37 @@ importers: version: 3.23.2 graphql: specifier: ^16.6.0 - version: 16.12.0 + version: 16.14.2 tslib: specifier: ^2.4.0 version: 2.8.1 ws: - specifier: 8.18.0 - version: 8.18.0 + specifier: ^8.20.1 + version: 8.21.0 devDependencies: '@apollo/client': specifier: 3.7.13 - version: 3.7.13(graphql@16.12.0)(react@17.0.2)(subscriptions-transport-ws@0.11.0(graphql@16.12.0)) + version: 3.7.13(graphql@16.14.2)(react@17.0.2)(subscriptions-transport-ws@0.11.0(graphql@16.14.2)) '@boostercloud/application-tester': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../application-tester '@boostercloud/cli': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../cli '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@boostercloud/framework-provider-aws-infrastructure': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-aws-infrastructure '@boostercloud/framework-provider-azure-infrastructure': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-azure-infrastructure '@boostercloud/framework-provider-local-infrastructure': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-local-infrastructure '@boostercloud/metadata-booster': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../metadata-booster '@seald-io/nedb': specifier: 4.0.2 @@ -667,7 +667,7 @@ importers: version: 1.8.16 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/sinon': specifier: 10.0.0 version: 10.0.0 @@ -680,12 +680,12 @@ importers: '@typescript-eslint/parser': specifier: ^5.0.0 version: 5.62.0(eslint@8.57.1)(typescript@5.7.3) - cdktf: - specifier: 0.21.0 - version: 0.21.0(constructs@10.4.5) - cdktf-cli: - specifier: 0.21.0 - version: 0.21.0(ink@3.2.0(react@17.0.2))(react@17.0.2) + cdktn: + specifier: 0.23.3 + version: 0.23.3(constructs@10.6.0) + cdktn-cli: + specifier: 0.23.3 + version: 0.23.3(cdktn@0.23.3(constructs@10.6.0))(jsii-pacmak@1.128.0(jsii-rosetta@5.9.39))(jsii@5.9.44) chai: specifier: 4.2.0 version: 4.2.0 @@ -697,7 +697,7 @@ importers: version: 8.2.2 constructs: specifier: ^10.4.2 - version: 10.4.5 + version: 10.6.0 cross-fetch: specifier: 3.1.5 version: 3.1.5 @@ -754,7 +754,7 @@ importers: version: 5.0.10 serverless: specifier: 3.8.0 - version: 3.8.0(@types/node@20.19.30) + version: 3.8.0(@types/node@20.19.42) serverless-artillery: specifier: 0.5.2 version: 0.5.2 @@ -763,10 +763,10 @@ importers: version: 9.2.3 subscriptions-transport-ws: specifier: 0.11.0 - version: 0.11.0(graphql@16.12.0) + version: 0.11.0(graphql@16.14.2) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) ts-patch: specifier: 3.3.0 version: 3.3.0 @@ -777,10 +777,10 @@ importers: ../../packages/framework-provider-aws: dependencies: '@boostercloud/framework-common-helpers': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-common-helpers '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 @@ -790,7 +790,7 @@ importers: version: 2.8.1 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/aws-lambda': specifier: 8.10.48 @@ -812,7 +812,7 @@ importers: version: 10.0.10 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/rewire': specifier: ^2.5.28 version: 2.5.30 @@ -881,13 +881,13 @@ importers: version: 3.5.0(chai@4.2.0)(sinon@9.2.3) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) typescript: specifier: 5.7.3 version: 5.7.3 velocityjs: specifier: ^2.0.0 - version: 2.1.5 + version: 2.1.6 ../../packages/framework-provider-aws-infrastructure: dependencies: @@ -943,13 +943,13 @@ importers: specifier: ^1.170.0 version: 1.204.0 '@boostercloud/framework-common-helpers': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-common-helpers '@boostercloud/framework-provider-aws': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-aws '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 @@ -979,11 +979,11 @@ importers: specifier: ^2.4.0 version: 2.8.1 yaml: - specifier: 1.10.2 - version: 1.10.2 + specifier: ^1.10.3 + version: 1.10.3 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/archiver': specifier: 5.1.0 @@ -1008,7 +1008,7 @@ importers: version: 10.0.10 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/rewire': specifier: ^2.5.28 version: 2.5.30 @@ -1071,36 +1071,36 @@ importers: version: 3.5.0(chai@4.2.0)(sinon@9.2.3) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) typescript: specifier: 5.7.3 version: 5.7.3 velocityjs: specifier: ^2.0.0 - version: 2.1.5 + version: 2.1.6 ../../packages/framework-provider-azure: dependencies: '@azure/cosmos': specifier: ^4.3.0 - version: 4.9.1 + version: 4.9.3(@azure/core-client@1.10.2) '@azure/event-hubs': specifier: 5.11.1 version: 5.11.1 '@azure/functions': specifier: ^4.0.0 - version: 4.11.0 + version: 4.16.0 '@azure/identity': specifier: ~4.13.0 - version: 4.13.0 + version: 4.13.1 '@azure/web-pubsub': specifier: ~1.1.0 version: 1.1.4 '@boostercloud/framework-common-helpers': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-common-helpers '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 @@ -1110,7 +1110,7 @@ importers: version: 2.8.1 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/chai': specifier: 4.2.18 @@ -1126,7 +1126,7 @@ importers: version: 10.0.10 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/sinon': specifier: 10.0.0 version: 10.0.0 @@ -1183,7 +1183,7 @@ importers: version: 3.5.0(chai@4.2.0)(sinon@9.2.3) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) typescript: specifier: 5.7.3 version: 5.7.3 @@ -1201,31 +1201,31 @@ importers: version: 1.2.0 '@azure/cosmos': specifier: ^4.3.0 - version: 4.9.1 + version: 4.9.3(@azure/core-client@1.10.2) '@azure/identity': specifier: ~4.13.0 - version: 4.13.0 + version: 4.13.1 '@boostercloud/framework-common-helpers': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-common-helpers '@boostercloud/framework-core': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-core '@boostercloud/framework-provider-azure': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-azure '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types - '@cdktf/provider-azurerm': - specifier: 14.23.1 - version: 14.23.1(cdktf@0.21.0(constructs@10.4.5))(constructs@10.4.5) - '@cdktf/provider-null': - specifier: 11.0.1 - version: 11.0.1(cdktf@0.21.0(constructs@10.4.5))(constructs@10.4.5) - '@cdktf/provider-time': - specifier: 11.0.1 - version: 11.0.1(cdktf@0.21.0(constructs@10.4.5))(constructs@10.4.5) + '@cdktn/provider-azurerm': + specifier: 16.4.0 + version: 16.4.0(cdktn@0.23.3(constructs@10.6.0))(constructs@10.6.0) + '@cdktn/provider-null': + specifier: 13.1.0 + version: 13.1.0(cdktn@0.23.3(constructs@10.6.0))(constructs@10.6.0) + '@cdktn/provider-time': + specifier: 13.1.0 + version: 13.1.0(cdktn@0.23.3(constructs@10.6.0))(constructs@10.6.0) '@effect-ts/core': specifier: ^0.60.4 version: 0.60.5 @@ -1238,12 +1238,12 @@ importers: archiver: specifier: 5.3.0 version: 5.3.0 - cdktf: - specifier: 0.21.0 - version: 0.21.0(constructs@10.4.5) - cdktf-cli: - specifier: 0.21.0 - version: 0.21.0(ink@3.2.0(react@17.0.2))(react@17.0.2) + cdktn: + specifier: 0.23.3 + version: 0.23.3(constructs@10.6.0) + cdktn-cli: + specifier: 0.23.3 + version: 0.23.3(cdktn@0.23.3(constructs@10.6.0))(jsii-pacmak@1.128.0(jsii-rosetta@5.9.39))(jsii@5.9.44) chai: specifier: 4.2.0 version: 4.2.0 @@ -1252,7 +1252,7 @@ importers: version: 7.1.1(chai@4.2.0) constructs: specifier: ^10.4.2 - version: 10.4.5 + version: 10.6.0 copyfiles: specifier: ^2.3.0 version: 2.4.1 @@ -1281,11 +1281,11 @@ importers: specifier: ^2.4.0 version: 2.8.1 uuid: - specifier: 11.0.5 - version: 11.0.5 + specifier: 11.1.1 + version: 11.1.1 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/chai': specifier: 4.2.18 @@ -1307,7 +1307,7 @@ importers: version: 4.2.5 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/sinon': specifier: 10.0.0 version: 10.0.0 @@ -1358,7 +1358,7 @@ importers: version: 9.2.3 ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) typescript: specifier: 5.7.3 version: 5.7.3 @@ -1366,10 +1366,10 @@ importers: ../../packages/framework-provider-local: dependencies: '@boostercloud/framework-common-helpers': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-common-helpers '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 @@ -1381,11 +1381,11 @@ importers: specifier: ^2.4.0 version: 2.8.1 ws: - specifier: 8.18.0 - version: 8.18.0 + specifier: ^8.20.1 + version: 8.21.0 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/chai': specifier: 4.2.18 @@ -1404,7 +1404,7 @@ importers: version: 10.0.10 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/sinon': specifier: 10.0.0 version: 10.0.0 @@ -1446,7 +1446,7 @@ importers: version: 44.0.2(eslint@8.57.1) express: specifier: ^4.19.2 - version: 4.22.1 + version: 4.22.2 faker: specifier: 5.1.0 version: 5.1.0 @@ -1473,7 +1473,7 @@ importers: version: 2.2.1(sinon@9.2.3) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) typescript: specifier: 5.7.3 version: 5.7.3 @@ -1481,13 +1481,13 @@ importers: ../../packages/framework-provider-local-infrastructure: dependencies: '@boostercloud/framework-common-helpers': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-common-helpers '@boostercloud/framework-provider-local': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-provider-local '@boostercloud/framework-types': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../framework-types '@effect-ts/core': specifier: ^0.60.4 @@ -1497,7 +1497,7 @@ importers: version: 2.8.5 express: specifier: ^4.19.2 - version: 4.22.1 + version: 4.22.2 node-schedule: specifier: ^2.1.0 version: 2.1.1 @@ -1506,7 +1506,7 @@ importers: version: 2.8.1 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/chai': specifier: 4.2.18 @@ -1528,7 +1528,7 @@ importers: version: 10.0.10 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/node-schedule': specifier: ^1.3.2 version: 1.3.2 @@ -1594,7 +1594,7 @@ importers: version: 2.2.1(sinon@9.2.3) ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) typescript: specifier: 5.7.3 version: 5.7.3 @@ -1608,44 +1608,44 @@ importers: specifier: ~0.39.0 version: 0.39.0(@effect-ts/core@0.60.5) '@effect/cli': - specifier: 0.56.2 - version: 0.56.2(@effect/platform@0.77.2(effect@3.13.2))(@effect/printer-ansi@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2))(@effect/printer@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2))(effect@3.13.2) + specifier: 0.58.4 + version: 0.58.4(@effect/platform@0.79.4(effect@3.21.3))(@effect/printer-ansi@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3))(@effect/printer@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3))(effect@3.21.3) '@effect/platform': - specifier: 0.77.2 - version: 0.77.2(effect@3.13.2) + specifier: 0.79.4 + version: 0.79.4(effect@3.21.3) '@effect/printer': - specifier: 0.41.2 - version: 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) + specifier: 0.41.12 + version: 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) '@effect/printer-ansi': - specifier: 0.41.2 - version: 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) + specifier: 0.41.12 + version: 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) '@effect/schema': specifier: 0.75.5 - version: 0.75.5(effect@3.13.2) + version: 0.75.5(effect@3.21.3) '@effect/typeclass': - specifier: 0.32.2 - version: 0.32.2(effect@3.13.2) + specifier: 0.32.12 + version: 0.32.12(effect@3.21.3) effect: - specifier: 3.13.2 - version: 3.13.2 + specifier: 3.21.3 + version: 3.21.3 tslib: specifier: ^2.4.0 version: 2.8.1 uuid: - specifier: 11.0.5 - version: 11.0.5 + specifier: 11.1.1 + version: 11.1.1 web-streams-polyfill: specifier: ~3.3.2 version: 3.3.3 ws: - specifier: 8.18.0 - version: 8.18.0 + specifier: ^8.20.1 + version: 8.21.0 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@boostercloud/metadata-booster': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../metadata-booster '@types/chai': specifier: 4.2.18 @@ -1658,7 +1658,7 @@ importers: version: 10.0.10 '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@types/sinon': specifier: 10.0.0 version: 10.0.0 @@ -1700,7 +1700,7 @@ importers: version: 3.23.2 graphql: specifier: ^16.6.0 - version: 16.12.0 + version: 16.14.2 mocha: specifier: 10.2.0 version: 10.2.0 @@ -1739,11 +1739,11 @@ importers: version: 2.8.1 devDependencies: '@boostercloud/eslint-config': - specifier: workspace:^4.0.1 + specifier: workspace:^4.0.2 version: link:../../tools/eslint-config '@types/node': specifier: ^20.17.17 - version: 20.19.30 + version: 20.19.42 '@typescript-eslint/eslint-plugin': specifier: ^5.0.0 version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3) @@ -1776,7 +1776,7 @@ importers: version: 9.2.3 ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@20.19.30)(typescript@5.7.3) + version: 10.9.2(@types/node@20.19.42)(typescript@5.7.3) ts-patch: specifier: 3.3.0 version: 3.3.0 @@ -2699,8 +2699,8 @@ packages: For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html - '@azure-rest/core-client@2.5.1': - resolution: {integrity: sha512-EHaOXW0RYDKS5CFffnixdyRPak5ytiCtU7uXDcP/uiY+A6jFRwNGzzJBiznkCzvi5EYpY+YWinieqHb0oY916A==} + '@azure-rest/core-client@2.6.1': + resolution: {integrity: sha512-KzI10qnkWTsVS2yRBUdc8NLUJ1rOm+292mYs7Pe9wqAj/jv4bRskVm1l8XkKeVTN0OCQtrU5RG0Yhjbz1Wmg7g==} engines: {node: '>=20.0.0'} '@azure/abort-controller@1.1.0': @@ -2731,13 +2731,16 @@ packages: resolution: {integrity: sha512-ykRMW8PjVAn+RS6ww5cmK9U2CyH9p4Q88YJwvUslfuMmN98w/2rdGRLPqJYObapBCdzBVeDgYWdJnFPFb7qzpg==} engines: {node: '>=20.0.0'} - '@azure/core-client@1.10.1': - resolution: {integrity: sha512-Nh5PhEOeY6PrnxNPsEHRr9eimxLwgLlpmguQaHKBinFYA/RU9+kOYVOQqOrTsCL+KSxrLLl1gD8Dk5BFW/7l/w==} + '@azure/core-client@1.10.2': + resolution: {integrity: sha512-1D2LpsU7y9xrqKjdIbsB7PlrRePw0xsVV8p+AKTlzITrWmscajryfJCdDJB/oGwvDI5HmRo04eMMADB67uwAwQ==} engines: {node: '>=20.0.0'} - '@azure/core-http-compat@2.3.1': - resolution: {integrity: sha512-az9BkXND3/d5VgdRRQVkiJb2gOmDU8Qcq4GvjtBmDICNiQ9udFmDk4ZpSB5Qq1OmtDJGlQAfBaS4palFsazQ5g==} + '@azure/core-http-compat@2.4.0': + resolution: {integrity: sha512-f1P96IB399YiN2ARYHP7EpZi3Bf3wH4SN2lGzrw7JVwm7bbsVYtf2iKSBwTywD2P62NOPZGHFSZi+6jjb75JuA==} engines: {node: '>=20.0.0'} + peerDependencies: + '@azure/core-client': ^1.10.0 + '@azure/core-rest-pipeline': ^1.22.0 '@azure/core-lro@2.7.2': resolution: {integrity: sha512-0YIpccoX8m/k00O7mDDMdJpbr6mf1yWo2dfmxt5A8XVZVVMz2SSKaEbMCeJRvgQ0IaSlqhjT47p4hVIRRy90xw==} @@ -2747,8 +2750,8 @@ packages: resolution: {integrity: sha512-YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA==} engines: {node: '>=18.0.0'} - '@azure/core-rest-pipeline@1.22.2': - resolution: {integrity: sha512-MzHym+wOi8CLUlKCQu12de0nwcq9k9Kuv43j4Wa++CsCpJwps2eeBQwD2Bu8snkxTtDKDx4GwjuR9E8yC8LNrg==} + '@azure/core-rest-pipeline@1.24.0': + resolution: {integrity: sha512-PpLsoDQ3AMmKZ0VU+0GrmqMxgp/sExjlVm4R+nLWngeoEGAzOIPVifaxKGU5gMv+nWELUoHfvrolWD+ZS/nFJg==} engines: {node: '>=20.0.0'} '@azure/core-tracing@1.3.1': @@ -2759,29 +2762,29 @@ packages: resolution: {integrity: sha512-XPArKLzsvl0Hf0CaGyKHUyVgF7oDnhKoP85Xv6M4StF/1AhfORhZudHtOyf2s+FcbuQ9dPRAjB8J2KvRRMUK2A==} engines: {node: '>=20.0.0'} - '@azure/cosmos@4.9.1': - resolution: {integrity: sha512-fPnfL4JsmJJ/jEYUhlznKfrEr2pMvJwBncGVcUC2Xi7Nlj0MrUMRE+UOrptl/lRV2W7l68Br+b9Ikzm0KiZZHg==} + '@azure/cosmos@4.9.3': + resolution: {integrity: sha512-AWRj+yhw1lybutNcsHJ8syxWXnTLvc3CPwwdCwG1I0I71f25ZcBkxneTeoaB3X57+xl1nO+zJKUqfm0RhpGUFA==} engines: {node: '>=20.0.0'} '@azure/event-hubs@5.11.1': resolution: {integrity: sha512-4sgPwxO0A6CjU7oZgNvavnYGQK0oluqyoJImqxmRiaptQjFpki9yH+k2WmplAXIMnXJn4znstLWv6vGSFvGmgA==} engines: {node: '>=14.0.0'} - '@azure/functions-extensions-base@0.2.0': - resolution: {integrity: sha512-ncCkHBNQYJa93dBIh+toH0v1iSgCzSo9tr94s6SMBe7DPWREkaWh8cq33A5P4rPSFX1g5W+3SPvIzDr/6/VOWQ==} + '@azure/functions-extensions-base@0.3.0': + resolution: {integrity: sha512-Cux0hLu5ZXlC/Kb+yvJVhRLIdkfFwui2HeT5oGZL00r/GCUUkhGTzRfZUjRN4Bq729mPv3okPucz2z7SMQLStA==} engines: {node: '>=18.0'} - '@azure/functions@4.11.0': - resolution: {integrity: sha512-J0We2gav3YZFLO9pJlXDKUSOT0r/DzkUaJTaruhm8pwoSMbi4zjsS5N6fARrTel+IBCm77hlD0IgZSKSWvVpUw==} + '@azure/functions@4.16.0': + resolution: {integrity: sha512-cwLld7tRi1VLYNdm1evgS9n8ABP/e+0uLjRO++OjM/kigERG80OfFRRMbag/vpXUzCtda83lDiuCvcwPlxgwZw==} engines: {node: '>=20.0'} - '@azure/identity@4.13.0': - resolution: {integrity: sha512-uWC0fssc+hs1TGGVkkghiaFkkS7NkTxfnCH+Hdg+yTehTpMcehpok4PgUKKdyCH+9ldu6FhiHRv84Ntqj1vVcw==} + '@azure/identity@4.13.1': + resolution: {integrity: sha512-5C/2WD5Vb1lHnZS16dNQRPMjN6oV/Upba+C9nBIs15PmOi6A3ZGs4Lr2u60zw4S04gi+u3cEXiqTVP7M4Pz3kw==} engines: {node: '>=20.0.0'} - '@azure/keyvault-common@2.0.0': - resolution: {integrity: sha512-wRLVaroQtOqfg60cxkzUkGKrKMsCP6uYXAOomOIysSMyt1/YM0eUn9LqieAWM8DLcU4+07Fio2YGpPeqUbpP9w==} - engines: {node: '>=18.0.0'} + '@azure/keyvault-common@2.1.0': + resolution: {integrity: sha512-aCDidWuKY06LWQ4x7/8TIXK6iRqTaRWRL3t7T+LC+j1b07HtoIsOxP/tU90G4jCSBn5TAyUTCtA4MS/y5Hudaw==} + engines: {node: '>=20.0.0'} '@azure/keyvault-keys@4.10.0': resolution: {integrity: sha512-eDT7iXoBTRZ2n3fLiftuGJFD+yjkiB1GNqzU2KbY1TLYeXeSPVTVgn2eJ5vmRTZ11978jy2Kg2wI7xa9Tyr8ag==} @@ -2791,152 +2794,143 @@ packages: resolution: {integrity: sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA==} engines: {node: '>=20.0.0'} - '@azure/msal-browser@4.28.1': - resolution: {integrity: sha512-al2u2fTchbClq3L4C1NlqLm+vwKfhYCPtZN2LR/9xJVaQ4Mnrwf5vANvuyPSJHcGvw50UBmhuVmYUAhTEetTpA==} + '@azure/msal-browser@5.12.0': + resolution: {integrity: sha512-eNf2aqx1C6I0yT1GEu5ukblFrmaBXGfe1bivpmlfqvK7giPZvoXLa404C8EfeHVsy6EIryfQuPRzuW1fPxWlHg==} engines: {node: '>=0.8.0'} - '@azure/msal-common@15.14.1': - resolution: {integrity: sha512-IkzF7Pywt6QKTS0kwdCv/XV8x8JXknZDvSjj/IccooxnP373T5jaadO3FnOrbWo3S0UqkfIDyZNTaQ/oAgRdXw==} + '@azure/msal-common@16.7.0': + resolution: {integrity: sha512-Jb8Y7pX6KM42SIT7KWP6YbY3+vLbwB5b5m+tpiiOzMU1QeyelQzs9lO8jv1e7/Uj9r7tg7VjPvW4T0KB1jF3UQ==} engines: {node: '>=0.8.0'} - '@azure/msal-node@3.8.6': - resolution: {integrity: sha512-XTmhdItcBckcVVTy65Xp+42xG4LX5GK+9AqAsXPXk4IqUNv+LyQo5TMwNjuFYBfAB2GTG9iSQGk+QLc03vhf3w==} - engines: {node: '>=16'} + '@azure/msal-node@5.2.3': + resolution: {integrity: sha512-YYX4TchEVddVBiybKvKhV9QO/q22jgewP+BVxKG7Uh115voPcviGlypbKERDsqQdAiSTJrwi80gcWFjYKdo8+Q==} + engines: {node: '>=20'} '@azure/web-pubsub@1.1.4': resolution: {integrity: sha512-ePRe4OtKmexm5ZJd3D9+JhSuP4XovNaZ8eJftUBoYJca6msl5Qna99dcq+eKJc/pPMXHEMSw+3+FWnSbTDMkkA==} engines: {node: '>=18.0.0'} - '@babel/code-frame@7.28.6': - resolution: {integrity: sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==} + '@babel/code-frame@7.29.7': + resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.28.6': - resolution: {integrity: sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==} + '@babel/compat-data@7.29.7': + resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==} engines: {node: '>=6.9.0'} - '@babel/core@7.28.6': - resolution: {integrity: sha512-H3mcG6ZDLTlYfaSNi0iOKkigqMFvkTKlGUYlD8GW7nNOYRrevuA46iTypPyv+06V3fEmvvazfntkBU34L0azAw==} + '@babel/core@7.29.7': + resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==} engines: {node: '>=6.9.0'} - '@babel/generator@7.27.1': - resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==} + '@babel/generator@7.29.1': + resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} engines: {node: '>=6.9.0'} - '@babel/generator@7.28.6': - resolution: {integrity: sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==} + '@babel/generator@7.29.7': + resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==} engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@7.28.6': - resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==} + '@babel/helper-compilation-targets@7.29.7': + resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==} engines: {node: '>=6.9.0'} - '@babel/helper-globals@7.28.0': - resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + '@babel/helper-globals@7.29.7': + resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==} engines: {node: '>=6.9.0'} - '@babel/helper-module-imports@7.28.6': - resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==} + '@babel/helper-module-imports@7.29.7': + resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==} engines: {node: '>=6.9.0'} - '@babel/helper-module-transforms@7.28.6': - resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==} + '@babel/helper-module-transforms@7.29.7': + resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-string-parser@7.27.1': - resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + '@babel/helper-string-parser@7.29.7': + resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.28.5': - resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + '@babel/helper-validator-identifier@7.29.7': + resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-option@7.27.1': - resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + '@babel/helper-validator-option@7.29.7': + resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.28.6': - resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==} + '@babel/helpers@7.29.7': + resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==} engines: {node: '>=6.9.0'} - '@babel/parser@7.28.6': - resolution: {integrity: sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==} + '@babel/parser@7.29.7': + resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/runtime@7.28.6': - resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.27.2': - resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + '@babel/runtime@7.29.7': + resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==} engines: {node: '>=6.9.0'} '@babel/template@7.28.6': resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.28.6': - resolution: {integrity: sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==} + '@babel/template@7.29.7': + resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==} engines: {node: '>=6.9.0'} - '@babel/types@7.27.1': - resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==} + '@babel/traverse@7.29.7': + resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==} engines: {node: '>=6.9.0'} - '@babel/types@7.28.6': - resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==} + '@babel/types@7.29.0': + resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} engines: {node: '>=6.9.0'} - '@cdktf/cli-core@0.21.0': - resolution: {integrity: sha512-yYZaRdEY0qdRTT/EkXSseiDKRgp+pECvOlJo+N3h8pQLiXrzmnSEljB9r/6Tfd0ciESoWFUY/eSpwE7CPgU1Dg==} - - '@cdktf/commons@0.21.0': - resolution: {integrity: sha512-fgMbYNo46CovCjn6kYb/T5qFpVfZcnZQ9XhZzQi01WuO7MQ4fo2aBll6Lpfp6DREvbYbnhJvGSJP1xC+oIj1qg==} + '@babel/types@7.29.7': + resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==} + engines: {node: '>=6.9.0'} - '@cdktf/hcl-tools@0.21.0': - resolution: {integrity: sha512-V90J/2a0qKRDWBZ/pCUJI3P/iW3SG98F+qkBprGNLVZ5VuP4OSI1NYyv1qeeLC7tWyWHjj3v876lXMvXq1kVgw==} + '@cdktn/commons@0.23.3': + resolution: {integrity: sha512-CDG837f1ini/N3d4XoyNDlIncA3BIoyLKuQLHJSIk0BO2BxP04bldvui934wZNWIZDVklaxXyZ6bbTXTY1ADrg==} - '@cdktf/hcl2cdk@0.21.0': - resolution: {integrity: sha512-3TVgIUCmRA793O8tSXo+7ZfFhdkxs7PHuURoDblyE7DbbK2nXHCmwzqQ7oNH2P0oaYkCmZ0AcIfMdeLsRdRcwA==} + '@cdktn/hcl-tools@0.23.3': + resolution: {integrity: sha512-GGXAPa71+eSz5PSHxsBQISKPtrNDgeUCyOaGr/xLQ5ObetA/dM6AxNTdxAY/TbbC5xMkv07uzfUCNtwBllzAEQ==} - '@cdktf/hcl2json@0.21.0': - resolution: {integrity: sha512-cwX3i/mSJI/cRrtqwEPRfawB7pXgNioriSlkvou8LWiCrrcDe9ZtTbAbu8W1tEJQpe1pnX9VEgpzf/BbM7xF8Q==} + '@cdktn/hcl2cdk@0.23.3': + resolution: {integrity: sha512-f6b9egHcZvI3RPTKqRKiX8gwGFmKb5SjG7OPZeMb1HxdF4Qxwuc29T9RTqlF6P5GWzY8YenLGU2smz4d3j/jbw==} - '@cdktf/node-pty-prebuilt-multiarch@0.10.2': - resolution: {integrity: sha512-Bpb0v9bzejJUAGmn8HfDFH6pYxFVHokiWV4mHvTao2XoYcEvETFVrniYIXlIg0e4yLlKB/U/z5WsC5PBsi3xEQ==} + '@cdktn/hcl2json@0.23.3': + resolution: {integrity: sha512-eySHNgL/98ZKOOPC30GiSUGl7YDKhCAvuCr/8zI31eTX6W1fPJht+m3pw/BX83tU1YEe+Kgjit4efOSoqpZpaA==} - '@cdktf/provider-azurerm@14.23.1': - resolution: {integrity: sha512-3H20Ozj7dOKmIj6mqorHZEjLNo5wO/MBEVHwu6k53fln/0EciGQa9sDLWBYSb0o40Ycpih9lFp/k6SGRbFlQVg==} - engines: {node: '>= 20.9.0'} - deprecated: See https://cdk.tf/imports for details on how to continue to use the azurerm provider in your CDK for Terraform (CDKTF) projects by generating the bindings locally. + '@cdktn/provider-azurerm@16.4.0': + resolution: {integrity: sha512-ndBUDxSZR5oYvZxdz4nARY14Z7oXlm1SVWfqg2Mc7hrMyTTcJCjJgK6YGNVChju+neFiXHDnywhJ8NKU9Km+CQ==} + engines: {node: '>= 20.16.0'} peerDependencies: - cdktf: ^0.21.0 - constructs: ^10.4.2 + cdktn: ^0.23.0 + constructs: ^10.6.0 - '@cdktf/provider-generator@0.21.0': - resolution: {integrity: sha512-N/IehJ6lZlVaNxP/0sxg0AeLJIhgcW3+Bk6m71UzoDAZFPBzW00k6nmSAlQiE0c5L92hHgLksfEL8VNbiPKmSw==} + '@cdktn/provider-generator@0.23.3': + resolution: {integrity: sha512-f7BsRqw8YAofBMb4yypjpy5UN1WaYOxDZulgiEvrzDlvVb4PRHWMfVLDAZIyq9t6Wd243LqVvJnVEQdevY1OXQ==} - '@cdktf/provider-null@11.0.1': - resolution: {integrity: sha512-Ky4unO3BiquQkQnsiJSZZX9qJ/JuTt8bitr3GEFK7XX39bP5VHnKWZQA8hah4FnTEeu8AiONPjbN6vnN3u177g==} - engines: {node: '>= 20.9.0'} - deprecated: See https://cdk.tf/imports for details on how to continue to use the null provider in your CDK for Terraform (CDKTF) projects by generating the bindings locally. + '@cdktn/provider-null@13.1.0': + resolution: {integrity: sha512-zZvexmeRphyT7oosZRA7YBl8A6v4uXmtuLdpwFAMIHXfck0RaZu5TI77gg27cf/uAYE9PwABCl02Iwa1kZa9ww==} + engines: {node: '>= 20.16.0'} peerDependencies: - cdktf: ^0.21.0 - constructs: ^10.4.2 + cdktn: ^0.23.0 + constructs: ^10.6.0 - '@cdktf/provider-schema@0.21.0': - resolution: {integrity: sha512-zVJmuE3wj4n48voZL9OMRyNe6rh4ST5qoXk96zTr+3WW8At29Y9WblrZI88R/dpk7l9VLvnraxxnP6JWoLhxWw==} + '@cdktn/provider-schema@0.23.3': + resolution: {integrity: sha512-n/UHvj9uv6kO9qe20+7OUTHiJQgN/d3+bIamy2LqURLSzlqlisNUj7bdHRzbOdDvYDd/hiOE9HITdiwebi01IA==} - '@cdktf/provider-time@11.0.1': - resolution: {integrity: sha512-FI0xFIcfF7U0t+pk7NNNJujiCxIOw6wL0I61/LEgPC59WWcGVrRPdj5F7YvEEpgcWkse6YrYc9soumsTQa5WYg==} - engines: {node: '>= 20.9.0'} - deprecated: See https://cdk.tf/imports for details on how to continue to use the time provider in your CDK for Terraform (CDKTF) projects by generating the bindings locally. + '@cdktn/provider-time@13.1.0': + resolution: {integrity: sha512-wQ6RbjAewq+qBdPp8o88uT3YQvBoQPeQP1RxXU2njrU8mYbutzZ719kMbrzjuOQ82X6jsXY6VtFxqgqhQvYD2A==} + engines: {node: '>= 20.16.0'} peerDependencies: - cdktf: ^0.21.0 - constructs: ^10.4.2 + cdktn: ^0.23.0 + constructs: ^10.6.0 '@cspotcode/source-map-support@0.8.1': resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} @@ -2953,42 +2947,42 @@ packages: '@effect-ts/system@0.57.5': resolution: {integrity: sha512-/crHGujo0xnuHIYNc1VgP0HGJGFSoSqq88JFXe6FmFyXPpWt8Xu39LyLg7rchsxfXFeEdA9CrIZvLV5eswXV5g==} - '@effect/cli@0.56.2': - resolution: {integrity: sha512-hhzH/iCQkT0jNGCSzuJxEASkihKNjWtcYe0cIm/GbQ5O4Mczmhb9cl/U/EPOPwfJBbAgPrO4P6ma3sYY5GuPVw==} + '@effect/cli@0.58.4': + resolution: {integrity: sha512-wDJdpGPvjm7qPmUWmN8fJ0yXUrNJhctTmdnfY8I5By8XrVhIsV39IrqLbgdXiwNEB8n9Dc7fqhzTen4Tk2w7HA==} peerDependencies: - '@effect/platform': ^0.77.2 - '@effect/printer': ^0.41.2 - '@effect/printer-ansi': ^0.41.2 - effect: ^3.13.2 + '@effect/platform': ^0.79.4 + '@effect/printer': ^0.41.12 + '@effect/printer-ansi': ^0.41.12 + effect: ^3.13.12 - '@effect/platform-node-shared@0.27.7': - resolution: {integrity: sha512-9DmWjh0ErGel3xuvCND7aOwtdGrgpjcCJqpaEDPHbWSTcsT9PL/Vg4dFZGSCj9WjhqKHrXKn3MqIRGMR40V0VA==} + '@effect/platform-node-shared@0.29.4': + resolution: {integrity: sha512-aycDBrXY7aqPaRExF8eRBduqwh/mEyYHx+4WbkxEIsEKG09nPAnBhVEfrCACGXAKvOMGCpvur5QPy8raDywYUg==} peerDependencies: - '@effect/platform': ^0.77.7 - effect: ^3.13.7 + '@effect/platform': ^0.79.4 + effect: ^3.13.12 - '@effect/platform-node@0.73.2': - resolution: {integrity: sha512-lO9SlcN7/Fpzu5VE/EKMxkmXt0n0vQ+rCirfGL1cNFcax9klw0A6uAJj2UvDRnX+o5YRlWNAgg5AN5uiGDUy0g==} + '@effect/platform-node@0.75.4': + resolution: {integrity: sha512-pslQpRHYu8n+LLgw4wc+lk9OwiGdIllq7nFoUOU3fDP1YzOQGQTJej+D0H3VGEicJFcmOSP9f9Tm2c8yV/Ki2Q==} peerDependencies: - '@effect/platform': ^0.77.2 - effect: ^3.13.2 + '@effect/platform': ^0.79.4 + effect: ^3.13.12 - '@effect/platform@0.77.2': - resolution: {integrity: sha512-stvroKHJVfjd3XhZJEPUAOgzqu9DH1vnGHIAjfs2ma6Z4qcjVpFXrxa0ZYmwRaWVIFsiADMenkN0I7XrRdAgLw==} + '@effect/platform@0.79.4': + resolution: {integrity: sha512-DCnhJ2MewR7WM7BIBuEXLLIjOwrLPr9JfinNzd1VVaz2nRW7bnDYJ+gds6qMzDMauGaAj2/Dl4WHAnfIshEJ1A==} peerDependencies: - effect: ^3.13.2 + effect: ^3.13.12 - '@effect/printer-ansi@0.41.2': - resolution: {integrity: sha512-6XQ2VIJ70Pfu9sGYdFt4lon/4IdQSgJr7gr17uRJReARs153gZaNqh+q5pJMSJQ5wvjii1gYioIC/4HH8+o+aQ==} + '@effect/printer-ansi@0.41.12': + resolution: {integrity: sha512-y9zG+T4TIAdzGvaNeDRFLsQl+umWbxTYbJCwpth4dWB1pADV7J4ag6BE15e8zfxeJ9ebRin4YueUblM4xMMgUA==} peerDependencies: - '@effect/typeclass': ^0.32.2 - effect: ^3.13.2 + '@effect/typeclass': ^0.32.12 + effect: ^3.13.12 - '@effect/printer@0.41.2': - resolution: {integrity: sha512-FpKvt8Iey30kHkbl/pPmnYEmhdltuJiNX+zGfqlkArmBnz+l1EseYQ3t/LjdChcuW8reumNlMln2bQlnGKhHvw==} + '@effect/printer@0.41.12': + resolution: {integrity: sha512-kuPQQkbfS3od/8REwywsS0FMFD7DZw+nTKBspPTbzNub/aiqPD8xJvADxIQum3/Q9VTZl3CTX8yuUvw2/l0ciQ==} peerDependencies: - '@effect/typeclass': ^0.32.2 - effect: ^3.13.2 + '@effect/typeclass': ^0.32.12 + effect: ^3.13.12 '@effect/schema@0.75.5': resolution: {integrity: sha512-TQInulTVCuF+9EIbJpyLP6dvxbQJMphrnRqgexm/Ze39rSjfhJuufF7XvU3SxTgg3HnL7B/kpORTJbHhlE6thw==} @@ -2996,10 +2990,10 @@ packages: peerDependencies: effect: ^3.9.2 - '@effect/typeclass@0.32.2': - resolution: {integrity: sha512-kCk3E4D0vEcRnY1MotaGEA5c/1X3a3dmcUHVBs0hLxN/6ct23Lun7J87tk+U2PJAwAUvUceSS3lQska9/eDkXA==} + '@effect/typeclass@0.32.12': + resolution: {integrity: sha512-ttBWRHcgxMdJUoxuvShkIezJ5tS4ZTfpLa/JQj02mDRjS6LklcBaDuG/ZgfXlEVzQ00yYNgWkFT5uF3Xc1uWdA==} peerDependencies: - effect: ^3.13.2 + effect: ^3.13.12 '@eslint-community/eslint-utils@4.9.1': resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} @@ -3037,30 +3031,6 @@ packages: resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} deprecated: Use @eslint/object-schema instead - '@inquirer/checkbox@1.5.2': - resolution: {integrity: sha512-CifrkgQjDkUkWexmgYYNyB5603HhTHI91vLFeQXh6qrTKiCMVASol01Rs1cv6LP/A2WccZSRlJKZhbaBIs/9ZA==} - engines: {node: '>=14.18.0'} - - '@inquirer/confirm@2.0.17': - resolution: {integrity: sha512-EqzhGryzmGpy2aJf6LxJVhndxYmFs+m8cxXzf8nejb1DE3sabf6mUgBcp4J0jAUEiAcYzqmkqRr7LPFh/WdnXA==} - engines: {node: '>=14.18.0'} - - '@inquirer/core@2.3.1': - resolution: {integrity: sha512-faYAYnIfdEuns3jGKykaog5oUqFiEVbCx9nXGZfUhyEEpKcHt5bpJfZTb3eOBQKo8I/v4sJkZeBHmFlSZQuBCw==} - engines: {node: '>=14.18.0'} - - '@inquirer/core@6.0.0': - resolution: {integrity: sha512-fKi63Khkisgda3ohnskNf5uZJj+zXOaBvOllHsOkdsXRA/ubQLJQrZchFFi57NKbZzkTunXiBMdvWOv71alonw==} - engines: {node: '>=14.18.0'} - - '@inquirer/editor@1.2.15': - resolution: {integrity: sha512-gQ77Ls09x5vKLVNMH9q/7xvYPT6sIs5f7URksw+a2iJZ0j48tVS6crLqm2ugG33tgXHIwiEqkytY60Zyh5GkJQ==} - engines: {node: '>=14.18.0'} - - '@inquirer/expand@1.1.16': - resolution: {integrity: sha512-TGLU9egcuo+s7PxphKUCnJnpCIVY32/EwPCLLuu+gTvYiD8hZgx8Z2niNQD36sa6xcfpdLY6xXDBiL/+g1r2XQ==} - engines: {node: '>=14.18.0'} - '@inquirer/external-editor@1.0.3': resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==} engines: {node: '>=18'} @@ -3070,38 +3040,6 @@ packages: '@types/node': optional: true - '@inquirer/input@1.2.16': - resolution: {integrity: sha512-Ou0LaSWvj1ni+egnyQ+NBtfM1885UwhRCMtsRt2bBO47DoC1dwtCa+ZUNgrxlnCHHF0IXsbQHYtIIjFGAavI4g==} - engines: {node: '>=14.18.0'} - - '@inquirer/password@1.1.16': - resolution: {integrity: sha512-aZYZVHLUXZ2gbBot+i+zOJrks1WaiI95lvZCn1sKfcw6MtSSlYC8uDX8sTzQvAsQ8epHoP84UNvAIT0KVGOGqw==} - engines: {node: '>=14.18.0'} - - '@inquirer/prompts@2.3.1': - resolution: {integrity: sha512-YQeBFzIE+6fcec5N/U2mSz+IcKEG4wtGDwF7MBLIDgITWzB3o723JpKJ1rxWqdCvTXkYE+gDXK/seSN6omo3DQ==} - engines: {node: '>=14.18.0'} - - '@inquirer/rawlist@1.2.16': - resolution: {integrity: sha512-pZ6TRg2qMwZAOZAV6TvghCtkr53dGnK29GMNQ3vMZXSNguvGqtOVc4j/h1T8kqGJFagjyfBZhUPGwNS55O5qPQ==} - engines: {node: '>=14.18.0'} - - '@inquirer/select@1.3.3': - resolution: {integrity: sha512-RzlRISXWqIKEf83FDC9ZtJ3JvuK1l7aGpretf41BCWYrvla2wU8W8MTRNMiPrPJ+1SIqrRC1nZdZ60hD9hRXLg==} - engines: {node: '>=14.18.0'} - - '@inquirer/type@1.5.5': - resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==} - engines: {node: '>=18'} - - '@isaacs/balanced-match@4.0.1': - resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} - engines: {node: 20 || >=22} - - '@isaacs/brace-expansion@5.0.0': - resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} - engines: {node: 20 || >=22} - '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} @@ -3110,8 +3048,8 @@ packages: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} - '@istanbuljs/schema@0.1.3': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + '@istanbuljs/schema@0.1.6': + resolution: {integrity: sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==} engines: {node: '>=8'} '@jridgewell/gen-mapping@0.3.13': @@ -3133,16 +3071,28 @@ packages: '@jridgewell/trace-mapping@0.3.9': resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - '@jsii/check-node@1.112.0': - resolution: {integrity: sha512-ySf6hMcWvWrMtMLKEiBN6QN46oWqKfJtOHCdy13iQXTI38SuI9Lp2PaYMLcsN10fTOvLjhbYm3jAu48xwrsKAQ==} + '@jsii/check-node@1.128.0': + resolution: {integrity: sha512-1XirN1v+gbSHFIGSMmB/jPzTdsKEY8P8JOJOS2Vz5j9+T6ZaPJ2ZcJ4foYsIBblKcDWPzVNVJmGC2+ViEzUIsA==} + engines: {node: '>= 14.17.0'} + + '@jsii/check-node@1.132.0': + resolution: {integrity: sha512-B4DGA5wRiqSezR2ByHVG3eWrL18MfGTrPyZ1zaindbTSdrgnCbdKaGy9j8yrNjeO1eee4cAK4S48CPtK6/p0vA==} + engines: {node: '>= 14.17.0'} + + '@jsii/check-node@1.134.0': + resolution: {integrity: sha512-llnGrxrzX2Q2kQM96C7gnO2upIHwVuyt/srRZlwRmnDjnfIK7TDEwDWXkqTgf//p9Ly25zip4Vm0eAqYWacglQ==} + engines: {node: '>= 14.17.0'} + + '@jsii/spec@1.128.0': + resolution: {integrity: sha512-sv4JP3Ap7Vagh+yoCZ7mkfoKNY3ivV43QQPLzOYaNLgrTW86S+rqfiwTG/ouLn9qSaIC300vDpnT5V9uBGserA==} engines: {node: '>= 14.17.0'} - '@jsii/check-node@1.126.0': - resolution: {integrity: sha512-JCEiImb536Fbl9az3c0/KSfji4m/IIi/V1kWrlXnJxFGO98FaXJUQsDsXWKbr6YVN+9Eltwwpir08hDvmuT5Vg==} + '@jsii/spec@1.132.0': + resolution: {integrity: sha512-70rcZ8tx2ISWf5HqFHNQe56VOKcAtTn0XFlLgZByWKHGZYpitf5T/Qe+ayvmTK8++luufb0h455l1JDpQDp0nQ==} engines: {node: '>= 14.17.0'} - '@jsii/spec@1.126.0': - resolution: {integrity: sha512-TWCMhogxq5mR1BJaksRtB8ciUQ9vMYSHoQT2t5pKHUtNAJnyFHzWNO7EHr8eQAj74k8P5XeGkOWsfpkQxHiHMA==} + '@jsii/spec@1.134.0': + resolution: {integrity: sha512-2K0r9Nvyf+l6OjlnKIOzKFrcMKVKyvhKecO++XCN0BFZbP+EcHEGdkwS+X50CAx8CvgGjbQH+DgdhQzYQryySA==} engines: {node: '>= 14.17.0'} '@kwsites/file-exists@1.1.1': @@ -3171,12 +3121,12 @@ packages: resolution: {integrity: sha512-49wtIlSEw9UyxdSMPjJ2Ookj5e056Qbqr6A+uN7Ea8XCK6b8Q03KciTEpX5t0rfNggvewJc9e3SHY6uWZIkXVw==} engines: {node: '>=18.0.0'} - '@oclif/plugin-help@6.2.37': - resolution: {integrity: sha512-5N/X/FzlJaYfpaHwDC0YHzOzKDWa41s9t+4FpCDu4f9OMReds4JeNBaaWk9rlIzdKjh2M6AC5Q18ORfECRkHGA==} + '@oclif/plugin-help@6.2.50': + resolution: {integrity: sha512-rNCG4hUm+kPXFbhJfAVk/fZ3OdWJYwBDASlyX8CqOLP0MssjIGl7iEgfZz7TMuZFa+KucupKU5NRSc0KWfPTQA==} engines: {node: '>=18.0.0'} - '@oclif/test@4.1.16': - resolution: {integrity: sha512-LPrF++WGGBE0pe3GUkzEteI5WrwTT7usGpIMSxkyJhYnFXKkwASyTcCmOhNH4QC65kqsLt1oBA88BMkCJqPtxg==} + '@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' @@ -3279,28 +3229,28 @@ packages: '@seald-io/nedb@4.0.2': resolution: {integrity: sha512-gJ91fT1sgh2cLXYVcTSh7khZ8LdemI8+SojCdpZ5wy+DUQ4fSrEwGqOwbdV49NDs2BBO6GeBpSb8CnhG2IW1rw==} - '@sentry-internal/tracing@7.120.3': - resolution: {integrity: sha512-Ausx+Jw1pAMbIBHStoQ6ZqDZR60PsCByvHdw/jdH9AqPrNE9xlBSf9EwcycvmrzwyKspSLaB52grlje2cRIUMg==} + '@sentry-internal/tracing@7.120.4': + resolution: {integrity: sha512-Fz5+4XCg3akeoFK+K7g+d7HqGMjmnLoY2eJlpONJmaeT9pXY7yfUyXKZMmMajdE2LxxKJgQ2YKvSCaGVamTjHw==} engines: {node: '>=8'} - '@sentry/core@7.120.3': - resolution: {integrity: sha512-vyy11fCGpkGK3qI5DSXOjgIboBZTriw0YDx/0KyX5CjIjDDNgp5AGgpgFkfZyiYiaU2Ww3iFuKo4wHmBusz1uA==} + '@sentry/core@7.120.4': + resolution: {integrity: sha512-TXu3Q5kKiq8db9OXGkWyXUbIxMMuttB5vJ031yolOl5T/B69JRyAoKuojLBjRv1XX583gS1rSSoX8YXX7ATFGA==} engines: {node: '>=8'} - '@sentry/integrations@7.120.3': - resolution: {integrity: sha512-6i/lYp0BubHPDTg91/uxHvNui427df9r17SsIEXa2eKDwQ9gW2qRx5IWgvnxs2GV/GfSbwcx4swUB3RfEWrXrQ==} + '@sentry/integrations@7.120.4': + resolution: {integrity: sha512-kkBTLk053XlhDCg7OkBQTIMF4puqFibeRO3E3YiVc4PGLnocXMaVpOSCkMqAc1k1kZ09UgGi8DxfQhnFEjUkpA==} engines: {node: '>=8'} - '@sentry/node@7.120.3': - resolution: {integrity: sha512-t+QtekZedEfiZjbkRAk1QWJPnJlFBH/ti96tQhEq7wmlk3VszDXraZvLWZA0P2vXyglKzbWRGkT31aD3/kX+5Q==} + '@sentry/node@7.120.4': + resolution: {integrity: sha512-qq3wZAXXj2SRWhqErnGCSJKUhPSlZ+RGnCZjhfjHpP49KNpcd9YdPTIUsFMgeyjdh6Ew6aVCv23g1hTP0CHpYw==} engines: {node: '>=8'} - '@sentry/types@7.120.3': - resolution: {integrity: sha512-C4z+3kGWNFJ303FC+FxAd4KkHvxpNFYAFN8iMIgBwJdpIl25KZ8Q/VdGn0MLLUEHNLvjob0+wvwlcRBBNLXOow==} + '@sentry/types@7.120.4': + resolution: {integrity: sha512-cUq2hSSe6/qrU6oZsEP4InMI5VVdD86aypE+ENrQ6eZEVLTCYm1w6XhW1NvIu3UuWh7gZec4a9J7AFpYxki88Q==} engines: {node: '>=8'} - '@sentry/utils@7.120.3': - resolution: {integrity: sha512-UDAOQJtJDxZHQ5Nm1olycBIsz2wdGX8SdzyGVHmD8EOQYAeDZQyIlQYohDe9nazdIOQLZCIc3fU0G9gqVLkaGQ==} + '@sentry/utils@7.120.4': + resolution: {integrity: sha512-zCKpyDIWKHwtervNK2ZlaK8mMV7gVUijAgFeJStH+CU/imcdquizV3pFLlSQYRswG+Lbyd6CT/LGRh3IbtkCFw==} engines: {node: '>=8'} '@serverless/dashboard-plugin@6.4.0': @@ -3318,6 +3268,12 @@ packages: resolution: {integrity: sha512-7eDbqKv/OBd11jjdZjUwFGN8sHWkeUqLeHXHQxQ1azja2IM7WIH+z/aLgzR6LhB3/MINNwtjesDpjGqTMj2JKQ==} engines: {node: '>=12.0'} + '@simple-git/args-pathspec@1.0.3': + resolution: {integrity: sha512-ngJMaHlsWDTfjyq9F3VIQ8b7NXbBLq5j9i5bJ6XLYtD6qlDXT7fdKY2KscWWUF8t18xx052Y/PUO1K1TRc9yKA==} + + '@simple-git/argv-parser@1.1.1': + resolution: {integrity: sha512-Q9lBcfQ+VQCpQqGJFHe5yooOS5hGdLFFbJ5R+R5aDsnkPCahtn1hSkMcORX65J2Z5lxSkD0lQorMsncuBQxYUw==} + '@sindresorhus/is@4.6.0': resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} engines: {node: '>=10'} @@ -3348,6 +3304,9 @@ packages: '@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. '@standard-schema/spec@1.1.0': resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} @@ -3445,8 +3404,8 @@ packages: '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/lodash@4.17.23': - resolution: {integrity: sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA==} + '@types/lodash@4.17.24': + resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==} '@types/mime@1.3.5': resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} @@ -3460,12 +3419,6 @@ packages: '@types/mustache@4.2.5': resolution: {integrity: sha512-PLwiVvTBg59tGFL/8VpcGvqOu3L4OuveNvPi0EYbWchRdEVP++yRUXJPFl+CApKEq13017/4Nf7aQ5lTtHUNsA==} - '@types/mute-stream@0.0.1': - resolution: {integrity: sha512-0yQLzYhCqGz7CQPE3iDmYjhb7KMBFOP+tBkyw+/Y2YyDI5wpS7itXXxneN1zSsUwWx3Ji6YiVYrhAnpQGS/vkw==} - - '@types/mute-stream@0.0.4': - resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==} - '@types/nedb@1.8.16': resolution: {integrity: sha512-ND+uzwAZk7ZI9byOvHGOcZe2R9XUcLF698yDJKn00trFvh+GaemkX3gQKCSKtObjDpv8Uuou+k8v4x4scPr4TA==} @@ -3478,17 +3431,17 @@ packages: '@types/node@10.17.60': resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} - '@types/node@18.19.101': - resolution: {integrity: sha512-Ykg7fcE3+cOQlLUv2Ds3zil6DVjriGQaSN/kEpl5HQ3DIGM6W0F2n9+GkWV4bRt7KjLymgzNdTnSKCbFUUJ7Kw==} + '@types/node@20.19.1': + resolution: {integrity: sha512-jJD50LtlD2dodAEO653i3YF04NWak6jN3ky+Ri3Em3mGR39/glWiboM/IePaRbgwSfqM1TpGXfAg8ohn/4dTgA==} - '@types/node@20.19.30': - resolution: {integrity: sha512-WJtwWJu7UdlvzEAUm484QNg5eAoq5QR08KDNx7g45Usrs2NtOPiX8ugDqmKdXkyL03rBqU5dYNYVQetEpBHq2g==} + '@types/node@20.19.42': + resolution: {integrity: sha512-5L7SUaFC1RyDraj2yRhyBzHTobyXHmohD100CChNtyPyleoq37Mqab5Gn8XEKI04dfN/oqPdpHk38MgcQWHbZg==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - '@types/qs@6.14.0': - resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} + '@types/qs@6.15.1': + resolution: {integrity: sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==} '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} @@ -3529,15 +3482,9 @@ packages: '@types/validator@13.12.2': resolution: {integrity: sha512-6SlHBzUW8Jhf3liqrGGXyTJSIFe4nqlJ5A5KaMZ2l/vbM3Wh3KSybots/wfWVzNLK4D1NZluDlSQIbIEPx6oyA==} - '@types/wrap-ansi@3.0.0': - resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} - '@types/ws@8.5.4': resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} - '@types/yauzl@2.10.3': - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - '@types/yoga-layout@1.9.2': resolution: {integrity: sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==} @@ -3599,12 +3546,12 @@ packages: resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typespec/ts-http-runtime@0.3.2': - resolution: {integrity: sha512-IlqQ/Gv22xUC1r/WQm4StLkYQmaaTsXAhUVsNE0+xiyf0yRFiH5++q78U3bw6bLKDCTmh0uqKB9eG9+Bt75Dkg==} + '@typespec/ts-http-runtime@0.3.6': + resolution: {integrity: sha512-jIXhD0eWQ1JA6ln/5Dltyx22UxWNrw0hZmhy2rlv6m6KgF7kplHx3g0fzi09lNmTJQRR91OlemYp3xFnvDK9og==} engines: {node: '>=20.0.0'} - '@ungap/structured-clone@1.3.0': - resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + '@ungap/structured-clone@1.3.1': + resolution: {integrity: sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==} '@wry/context@0.7.4': resolution: {integrity: sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==} @@ -3618,8 +3565,8 @@ packages: resolution: {integrity: sha512-yRTyhWSls2OY/pYLfwff867r8ekooZ4UI+/gxot5Wj8EFwSf2rG+n+Mo/6LoLQm1TKA4GRj2+LCpbfS937dClQ==} engines: {node: '>=8'} - '@xmldom/xmldom@0.9.8': - resolution: {integrity: sha512-p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A==} + '@xmldom/xmldom@0.9.10': + resolution: {integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==} engines: {node: '>=14.6'} abort-controller@3.0.0: @@ -3635,8 +3582,8 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn-walk@8.3.4: - resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + acorn-walk@8.3.5: + resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==} engines: {node: '>=0.4.0'} acorn@7.4.1: @@ -3644,17 +3591,13 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - acorn@8.15.0: - resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + acorn@8.16.0: + resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==} engines: {node: '>=0.4.0'} hasBin: true - address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} - - adm-zip@0.5.16: - resolution: {integrity: sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==} + adm-zip@0.5.17: + resolution: {integrity: sha512-+Ut8d9LLqwEvHHJl1+PIHqoyDxFgVN847JTVM3Izi3xHDWPE4UtzzXysMZQs64DMcrJfBeS/uoEP4AD3HQHnQQ==} engines: {node: '>=12.0'} agent-base@6.0.2: @@ -3672,11 +3615,11 @@ packages: ajv-formats@2.1.1: resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ajv@6.15.0: + resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==} - ajv@8.17.1: - resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + ajv@8.20.0: + resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==} ansi-colors@4.1.1: resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} @@ -3734,10 +3677,6 @@ packages: resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==} engines: {node: '>= 10'} - archiver-utils@5.0.2: - resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==} - engines: {node: '>= 14'} - archiver@5.3.0: resolution: {integrity: sha512-iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg==} engines: {node: '>= 10'} @@ -3746,10 +3685,6 @@ packages: resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==} engines: {node: '>= 10'} - archiver@7.0.1: - resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} - engines: {node: '>= 14'} - archy@1.0.0: resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} @@ -3762,10 +3697,6 @@ packages: argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - arr-rotate@1.0.0: - resolution: {integrity: sha512-yOzOZcR9Tn7enTF66bqKorGGH0F36vcPaSWg8fO0c0UYb3LX3VMXj5ZxEqQLNOecAhlRJ7wYZja5i4jTlnbIfQ==} - engines: {node: '>=4'} - array-buffer-byte-length@1.0.2: resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} engines: {node: '>= 0.4'} @@ -3849,22 +3780,15 @@ packages: aws-sdk@2.1693.0: resolution: {integrity: sha512-cJmb8xEnVLT+R6fBS5sn/EFJiX7tUnDaPtOPZ1vFbOJtd0fnZn/Ky2XGgsvvoeliWeH7mL3TWSX5zXXGSQV6gQ==} engines: {node: '>= 10.0.0'} + deprecated: The AWS SDK for JavaScript (v2) has reached end-of-support, and no longer receives updates. Please migrate your code to use AWS SDK for JavaScript (v3). More info https://a.co/cUPnyil aws-sdk@2.853.0: resolution: {integrity: sha512-3cifeifeMHKtpvQ6OcrA9j34BEdvWmLlSGzZU/mZf9nYcV+22PPXjwpVhPh9BvfC2S77upKNbMgnkv4u50aQKw==} engines: {node: '>= 0.8.0'} deprecated: The AWS SDK for JavaScript (v2) has reached end-of-support, and no longer receives updates. Please migrate your code to use AWS SDK for JavaScript (v3). More info https://a.co/cUPnyil - axios@1.13.4: - resolution: {integrity: sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg==} - - b4a@1.7.3: - resolution: {integrity: sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==} - peerDependencies: - react-native-b4a: '*' - peerDependenciesMeta: - react-native-b4a: - optional: true + axios@1.17.0: + resolution: {integrity: sha512-J8SwNxprqqpbfenehxWYXE7CW+wM1BB4w3+N+g+/Wx40xM4rsLrfPmHHxSWIxJLYDgSY/HqlFPIYb2/S3rxafw==} backo2@1.0.2: resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==} @@ -3872,13 +3796,9 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - bare-events@2.8.2: - resolution: {integrity: sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==} - peerDependencies: - bare-abort-controller: '*' - peerDependenciesMeta: - bare-abort-controller: - optional: true + balanced-match@4.0.4: + resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} + engines: {node: 18 || 20 || >=22} base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} @@ -3887,8 +3807,9 @@ packages: resolution: {integrity: sha512-dLMhIsK7OplcDauDH/tZLvK7JmUZK3A7KiQpjNzsBrM6Etw7hzNI1tLEywqJk9NnwkgWuFKSlx/IUO7vF6Mo8Q==} engines: {node: '>=6'} - baseline-browser-mapping@2.9.19: - resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==} + baseline-browser-mapping@2.10.35: + resolution: {integrity: sha512-honAfLBde0HAFLdNyBEfuuENkF6zR+ozxqxa/2zJKHBe1qzLqyTSeRKpdPEHAP03rlDGyQOPnCSxnVpVqQo9Mg==} + engines: {node: '>=6.0.0'} hasBin: true binary-extensions@2.3.0: @@ -3904,15 +3825,19 @@ packages: bluebird@3.7.2: resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} - body-parser@1.20.4: - resolution: {integrity: sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==} + body-parser@1.20.5: + resolution: {integrity: sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - brace-expansion@1.1.12: - resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + brace-expansion@1.1.15: + resolution: {integrity: sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==} + + brace-expansion@2.1.1: + resolution: {integrity: sha512-WR1cURNjuvBLMZBMbqM0UoE+WAfdUcEV1ccD8PVBVOI+Z3ND4+SZbN8RsfT2bMuG1qwz5RFvPukSZm5fF2D5eA==} - brace-expansion@2.0.2: - resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + brace-expansion@5.0.6: + resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==} + engines: {node: 18 || 20 || >=22} braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} @@ -3921,8 +3846,8 @@ packages: browser-stdout@1.3.1: resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} - browserslist@4.28.1: - resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==} + browserslist@4.28.2: + resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -3935,10 +3860,6 @@ packages: buffer-crc32@0.2.13: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - buffer-crc32@1.0.0: - resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} - engines: {node: '>=8.0.0'} - buffer-equal-constant-time@1.0.1: resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} @@ -3989,8 +3910,8 @@ packages: resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} engines: {node: '>= 0.4'} - call-bind@1.0.8: - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + call-bind@1.0.9: + resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==} engines: {node: '>= 0.4'} call-bound@1.0.4: @@ -4009,8 +3930,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001766: - resolution: {integrity: sha512-4C0lfJ0/YPjJQHagaE9x2Elb69CIqEPZeG0anQt9SIvIoOH4a4uaRl73IavyO+0qZh6MDLH//DrXThEYKHkmYA==} + caniuse-lite@1.0.30001797: + resolution: {integrity: sha512-l8xKG+gwAIExZGl9FrF7KUwuOmk6wbEPC9Xoy/RtnWv1XG0Q4LFlagaLpUv3Kiza3W/wm27zy0yWJEieYKAP6w==} case@1.6.3: resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==} @@ -4021,17 +3942,21 @@ packages: engines: {node: '>= 14.15.0'} hasBin: true - cdktf-cli@0.21.0: - resolution: {integrity: sha512-hQqNRw6Qs7QvJ4Yet/J1ZjBujCf6nsFqTjUDHfjgjGUg7tD7SeomqqGcAd8Y3yDOso4qr/BZ1/nTBc6MOgX0Uw==} + cdktn-cli@0.23.3: + resolution: {integrity: sha512-uaFPKcfRSk4jc+GmL6pKngkt44hoWep7ha4MRyvSE3ra30iE11MM0RIR8r6IQvU8EVeQPtGYGkxg7l1E7BCTpQ==} hasBin: true + peerDependencies: + cdktn: 0.23.3 + jsii: 5.9.43 + jsii-pacmak: 1.128.0 - cdktf@0.21.0: - resolution: {integrity: sha512-bdTOOyrFSXw0p5d7/3dye7ZWYzrUatyMjWEAAwTGoqghjygRj6Q55y1QZnSB021NRDzYZ3BhFGsOkpmIjQMzNQ==} + cdktn@0.23.3: + resolution: {integrity: sha512-itMa781HsaZzVTNTJPbNuVk2sPhFQh7ek3yYkWqnKk5nCVwesefs50Hm83id9l18phj1HJJ7lQYsAa3t9u3Yzg==} peerDependencies: - constructs: ^10.4.2 + constructs: ^10.6.0 bundledDependencies: - - archiver - - json-stable-stringify + - fflate + - safe-stable-stringify - semver chai-arrays@2.2.0: @@ -4082,9 +4007,6 @@ packages: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} - chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} - chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} @@ -4147,10 +4069,6 @@ packages: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} engines: {node: '>= 10'} - cli-width@4.1.0: - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} - engines: {node: '>= 12'} - cliui@5.0.0: resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} @@ -4182,8 +4100,8 @@ packages: resolution: {integrity: sha512-VHNTVhd7KsLGOqfX3SyeO8RyYPMp1GJOg194VITk04WMYCv4plV68YWe6TJZxd9MhobjtpMRnVky01gqZsalaw==} engines: {node: '>=10'} - codemaker@1.112.0: - resolution: {integrity: sha512-9dOcSOPEDAB5y4oimdsjzi9Za6vHi7wsUeLdH2NQpP1q88D2Oo8fj6YXqM7c/97tUFqX4OaanNjQCI3K6uyn4A==} + codemaker@1.128.0: + resolution: {integrity: sha512-QqIZBuVAE5wap5DJrIgk0v4pl2VRB5Bl3YWwPDloerM621fpgmzIm2lbw5hM+saV0zg+K+r4cCjWBVDIvRLExA==} engines: {node: '>= 14.17.0'} color-convert@1.9.3: @@ -4228,10 +4146,6 @@ packages: resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==} engines: {node: '>= 10'} - compress-commons@6.0.2: - resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} - engines: {node: '>= 14'} - concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -4240,11 +4154,8 @@ packages: engines: {node: ^14.13.0 || >=16.0.0} hasBin: true - constructs@10.4.2: - resolution: {integrity: sha512-wsNxBlAott2qg8Zv87q3eYZYgheb9lchtBfjHzzLHtXbttwSrHPs1NNQbBrmbb1YZvYg2+Vh0Dor76w4mFxJkA==} - - constructs@10.4.5: - resolution: {integrity: sha512-fOoP70YLevMZr5avJHx2DU3LNYmC6wM8OwdrNewMZou1kZnPGOeVzBrRjZNgFDHUlulYUjkpFRSpTE3D+n+ZSg==} + constructs@10.6.0: + resolution: {integrity: sha512-TxHOnBO5zMo/G76ykzGF/wMpEHu257TbWiIxP9K0Yv/+t70UzgBQiTqjkAsWOPC6jW91DzJI0+ehQV6xDRNBuQ==} constructs@3.4.344: resolution: {integrity: sha512-Qq3upn44oGdvgasHUKWVFsrynyYrtVRd9fd8ko9cJOrFzx9eCm3iI4bhBryQqaISdausbTYUOXmoEe/YSJ16Nw==} @@ -4298,10 +4209,6 @@ packages: resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==} engines: {node: '>= 10'} - crc32-stream@6.0.0: - resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} - engines: {node: '>= 14'} - create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} @@ -4317,9 +4224,6 @@ packages: cross-fetch@3.1.5: resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} - cross-fetch@3.2.0: - resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} - cross-spawn@6.0.6: resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==} engines: {node: '>=4.8'} @@ -4355,8 +4259,8 @@ packages: resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==} engines: {node: '>=4.0'} - dayjs@1.11.19: - resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==} + dayjs@1.11.21: + resolution: {integrity: sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==} debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} @@ -4426,10 +4330,6 @@ packages: resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} engines: {node: '>= 0.4'} - deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} @@ -4441,8 +4341,8 @@ packages: resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==} engines: {node: '>=18'} - default-browser@5.4.0: - resolution: {integrity: sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg==} + default-browser@5.5.0: + resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==} engines: {node: '>=18'} default-require-extensions@3.0.1: @@ -4499,11 +4399,6 @@ packages: resolution: {integrity: sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==} engines: {node: '>=0.10.0'} - detect-port@1.6.1: - resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} - engines: {node: '>= 4.0.0'} - hasBin: true - dezalgo@1.0.4: resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} @@ -4558,16 +4453,16 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - effect@3.13.2: - resolution: {integrity: sha512-/w+CPqHDJ33Wq7xC4YKAchrEEPtjvxh563xH9kDTZp99seNYBoBs87vl8DJwartEjj+KLQLP8PzoDne+XmGT2A==} + effect@3.21.3: + resolution: {integrity: sha512-RqwU7WnJ6CqYhyjpOVJA5vh1Sgkn6eVECO6mnD0EjlbWcC2M3LJaPglXXr13Rdo/Y+B+wTEPzGRYFNL2xKxNeQ==} ejs@3.1.10: resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.283: - resolution: {integrity: sha512-3vifjt1HgrGW/h76UEeny+adYApveS9dH2h3p57JYzBSXJIKUJAvtmIytDKjcSCt9xHfrNCFJ7gts6vkhuq++w==} + electron-to-chromium@1.5.370: + resolution: {integrity: sha512-D5tSHJReAb/Kf3Hu9F/GO4lJuSWzEWHwvQ/kKSUP7pimNgvxkSKj+gUQhHpKKACwrin7rS3byU7IxreF56rl5g==} emoji-regex@7.0.3: resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} @@ -4592,8 +4487,8 @@ packages: error-ex@1.3.4: resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} - es-abstract@1.24.1: - resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==} + es-abstract@1.24.2: + resolution: {integrity: sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==} engines: {node: '>= 0.4'} es-define-property@1.0.1: @@ -4607,8 +4502,8 @@ packages: es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} - es-object-atoms@1.1.1: - resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + es-object-atoms@1.1.2: + resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==} engines: {node: '>= 0.4'} es-set-tostringtag@2.1.0: @@ -4669,11 +4564,11 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + eslint-import-resolver-node@0.3.10: + resolution: {integrity: sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==} - eslint-module-utils@2.12.1: - resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==} + eslint-module-utils@2.13.0: + resolution: {integrity: sha512-bLohSkT6469rRs8czj0tLTD8vaeIS/whvPRJVjDr7IuoTT1k5DYDERlNycjDj/HkOlvQdYurmfZ/g3fG5bgeLQ==} engines: {node: '>=4'} peerDependencies: eslint: '*' @@ -4804,9 +4699,6 @@ packages: eventemitter3@3.1.2: resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} - events-universal@1.0.1: - resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==} - events@1.1.1: resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==} engines: {node: '>=0.4.x'} @@ -4819,19 +4711,11 @@ packages: resolution: {integrity: sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==} engines: {node: ^8.12.0 || >=9.7.0} - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - - expand-template@2.0.3: - resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} - engines: {node: '>=6'} - express-unless@2.1.3: resolution: {integrity: sha512-wj4tLMyCVYuIIKHGt0FhCtIViBcwzWejX0EjNxveAa6dG+0XBCQhMbx+PnkLkFCxLC69qoFrxds4pIyL88inaQ==} - express@4.22.1: - resolution: {integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==} + express@4.22.2: + resolution: {integrity: sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==} engines: {node: '>= 0.10.0'} ext-list@2.2.2: @@ -4849,11 +4733,6 @@ packages: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} - extract-zip@2.0.1: - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} - hasBin: true - faker@5.1.0: resolution: {integrity: sha512-RrWKFSSA/aNLP0g3o2WW1Zez7/MnMr7xkiZmoCfAGZmdkDQZ6l2KtuXHN5XjdvpRjDl8+3vf+Rrtl06Z352+Mw==} @@ -4872,9 +4751,6 @@ packages: fast-diff@1.3.0: resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} - fast-fifo@1.3.2: - resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} - fast-glob@3.3.3: resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} engines: {node: '>=8.6.0'} @@ -4888,8 +4764,8 @@ packages: fast-safe-stringify@2.1.1: resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} - fast-uri@3.1.0: - resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==} + fast-uri@3.1.2: + resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==} fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} @@ -4933,8 +4809,8 @@ packages: resolution: {integrity: sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==} engines: {node: '>=4'} - filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filelist@1.0.6: + resolution: {integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==} filename-reserved-regex@2.0.0: resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} @@ -4994,20 +4870,11 @@ packages: flatted@2.0.2: resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} - flatted@3.3.3: - resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + flatted@3.4.2: + resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==} - follow-redirects@1.15.11: - resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - - follow-redirects@1.15.9: - resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + follow-redirects@1.16.0: + resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -5055,12 +4922,12 @@ packages: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} - fs-extra@11.3.0: - resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} + fs-extra@11.3.4: + resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==} engines: {node: '>=14.14'} - fs-extra@11.3.3: - resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==} + fs-extra@11.3.5: + resolution: {integrity: sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==} engines: {node: '>=14.14'} fs-extra@8.1.0: @@ -5156,9 +5023,6 @@ packages: resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} engines: {node: '>= 0.4'} - github-from-package@0.0.0: - resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} - glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -5172,17 +5036,17 @@ packages: 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 hasBin: true - glob@13.0.0: - resolution: {integrity: sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==} - engines: {node: 20 || >=22} + glob@13.0.6: + resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==} + engines: {node: 18 || 20 || >=22} glob@7.2.0: resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} - deprecated: Glob versions prior to v9 are no longer supported + 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 glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + 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 global-prefix@4.0.0: resolution: {integrity: sha512-w0Uf9Y9/nyHinEk5vMJKRie+wa4kR5hmDbEhGGds/kG1PwGLLHKRoNMeJOyCQjjBkANlnScqgzcFwGHgmgLkVA==} @@ -5249,8 +5113,8 @@ packages: peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - graphql@16.12.0: - resolution: {integrity: sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ==} + graphql@16.14.2: + resolution: {integrity: sha512-Chq1s4CY7jmh8gO2qvLIJyfCDIN+EHLFW/9iShnp1z8FjBQMoodWP1kDC36VAMXXIvAjj4ARa7ntfAV2BrjsbA==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} has-bigints@1.1.0: @@ -5284,8 +5148,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.4: + resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==} engines: {node: '>= 0.4'} he@1.2.0: @@ -5324,10 +5188,6 @@ packages: resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} engines: {node: '>= 14'} - human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} @@ -5375,48 +5235,10 @@ packages: inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - ini@4.1.3: resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - ink-select-input@4.2.2: - resolution: {integrity: sha512-E5AS2Vnd4CSzEa7Rm+hG47wxRQo1ASfh4msKxO7FHmn/ym+GKSSsFIfR+FonqjKNDPXYJClw8lM47RdN3Pi+nw==} - engines: {node: '>=10'} - peerDependencies: - ink: ^3.0.5 - react: ^16.5.2 || ^17.0.0 - - ink-spinner@4.0.3: - resolution: {integrity: sha512-uJ4nbH00MM9fjTJ5xdw0zzvtXMkeGb0WV6dzSWvFv2/+ks6FIhpkt+Ge/eLdh0Ah6Vjw5pLMyNfoHQpRDRVFbQ==} - engines: {node: '>=10'} - peerDependencies: - ink: '>=3.0.5' - react: '>=16.8.2' - - ink-table@3.1.0: - resolution: {integrity: sha512-qxVb4DIaEaJryvF9uZGydnmP9Hkmas3DCKVpEcBYC0E4eJd3qNgNe+PZKuzgCERFe9LfAS1TNWxCr9+AU4v3YA==} - peerDependencies: - ink: '>=3.0.0' - react: '>=16.8.0' - - ink-testing-library@2.1.0: - resolution: {integrity: sha512-7TNlOjJlJXB33vG7yVa+MMO7hCjaC1bCn+zdpSjknWoLbOWMaFdKc7LJvqVkZ0rZv2+akhjXPrcR/dbxissjUw==} - engines: {node: '>=10'} - peerDependencies: - '@types/react': '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - - ink-use-stdout-dimensions@1.0.5: - resolution: {integrity: sha512-rVsqnw4tQEAJUoknU09+zHdDf30GJdkumkHr0iz/TOYMYEZJkYqziQSGJAM+Z+M603EDfO89+Nxyn/Ko2Zknfw==} - peerDependencies: - ink: '>=2.0.0' - react: '>=16.0.0' - ink@3.2.0: resolution: {integrity: sha512-firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg==} engines: {node: '>=10'} @@ -5489,8 +5311,8 @@ packages: resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} hasBin: true - is-core-module@2.16.1: - resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + is-core-module@2.16.2: + resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==} engines: {node: '>= 0.4'} is-data-view@1.0.2: @@ -5637,8 +5459,8 @@ packages: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} - is-wsl@3.1.0: - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + is-wsl@3.1.1: + resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} engines: {node: '>=16'} isarray@0.0.1: @@ -5653,9 +5475,9 @@ packages: isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - isexe@3.1.1: - resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} - engines: {node: '>=16'} + isexe@3.1.5: + resolution: {integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==} + engines: {node: '>=18'} isomorphic-ws@4.0.1: resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} @@ -5719,12 +5541,8 @@ packages: resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} hasBin: true - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - js-yaml@4.1.1: - resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} + js-yaml@4.2.0: + resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==} hasBin: true jsesc@3.1.0: @@ -5732,26 +5550,31 @@ packages: engines: {node: '>=6'} hasBin: true - jsii-pacmak@1.112.0: - resolution: {integrity: sha512-awdZ4Hb9pc8cKp2RVhJntoppgo5KnqP8f9YCmoHPPpPCS1hB3joxpVbNS6t2PYdGt1R+j7EcO7TJdah95cxE3w==} + jsii-pacmak@1.128.0: + resolution: {integrity: sha512-XUmN7VnsUoYTtCOTUi87A1eyfHtgvq/bQJLnKTVZkGPKyKi+PIRayVpu6DlnjvpaKAY8emnvgx9qVYU1F9yoAw==} engines: {node: '>= 14.17.0'} hasBin: true peerDependencies: - jsii-rosetta: '>=5.5.0' + jsii-rosetta: '>=5.9.0' - jsii-reflect@1.126.0: - resolution: {integrity: sha512-Pq5/AAZ6/T1OKN5JyQSVHLc1sQN+8EATQR2C+0dcSAcJjmPJnVotzRIwfseMCMDelaGT1aTDWeYq0PppiCmk/w==} + jsii-reflect@1.134.0: + resolution: {integrity: sha512-lS+N7xAsQn5EfunfNhFQ48JwEGgLIEM4NDJqloVrcl8SsycOuq8Sf2ePVsN7VlG39bmP/rJ5i3fF1wRM/+474g==} engines: {node: '>= 14.17.0'} hasBin: true - jsii-rosetta@5.8.8: - resolution: {integrity: sha512-zhLu75CwQFAYDiOffMXKLmEiw8QAmgMjDHStgd9z5k91Wt4EGrSI5AG2UNV3N9QLkOWdQCCuYjdyaH4BPRvwEg==} - engines: {node: '>= 18.12.0'} + jsii-rosetta@5.9.39: + resolution: {integrity: sha512-Wor9W/JTsH/uJLd3rJxzG6i7NKUi3ZV5tYFTkNLnkxfW6Yf5/By5S/ihP8i36P0hJHivj6oVg/5UsiWBYf2S0A==} + engines: {node: '>= 20.16.0'} hasBin: true - jsii@5.8.9: - resolution: {integrity: sha512-TxdbK33FUEatwVQh2Kls7i+v2QAlPZPopdePMZ89xePFLIwmUKhEPuPQSPHnFwdMe43cBOqa1Oh68yDQHvKNug==} - engines: {node: '>= 18.12.0'} + jsii@5.9.43: + resolution: {integrity: sha512-ax34dTB1konLSs7BKlMTJwAAh7pIrgg/b4jLGDGhK7jCD0B1n3keD2YZeAV7gJKss4RXrINAoqXg+TeeLWGQrA==} + engines: {node: '>= 20.16.0'} + hasBin: true + + jsii@5.9.44: + resolution: {integrity: sha512-/2jrL4CzM+kbLMwCHseq8T7u6kiGD8f4AOCHcL2znTOBfhtWtbaNJDgSM/PsMme85goTtS8XDQrhGm3/ivK/rw==} + engines: {node: '>= 20.16.0'} hasBin: true json-buffer@3.0.1: @@ -5793,8 +5616,8 @@ 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.2: resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} @@ -5903,10 +5726,6 @@ packages: lodash.isboolean@3.0.3: resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} - lodash.isequal@4.5.0: - resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} - deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead. - lodash.isinteger@4.0.4: resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} @@ -5931,8 +5750,8 @@ packages: lodash.union@4.6.0: resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} - lodash@4.17.23: - resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==} + lodash@4.18.1: + resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==} log-node@8.0.3: resolution: {integrity: sha512-1UBwzgYiCIDFs8A0rM2QdBFo8Wd8UQ0HrSTu/MNI+/2zN3NoHRj2fhplurAyuxTYUXu3Oohugq1jAn5s05u1MQ==} @@ -5959,9 +5778,6 @@ packages: long-timeout@0.1.1: resolution: {integrity: sha512-BFRuQUqc7x2NWxfJBCyUrN8iYUYznzL9JROmRz1gZ6KlOIgmoD+njPVbb+VNn2nGMKggMsK79iUNErillsrx7w==} - long@4.0.0: - resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} - loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true @@ -5973,8 +5789,8 @@ packages: lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - lru-cache@11.2.5: - resolution: {integrity: sha512-vFrFJkWtJvJnD5hg+hJvVE8Lh/TcMzKnTgCWmtBipwI5yLX/iX+5UB2tfuyODF5E7k9xEzMdYgGqaSb1c0c5Yw==} + lru-cache@11.5.1: + resolution: {integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==} engines: {node: 20 || >=22} lru-cache@5.1.1: @@ -6092,23 +5908,19 @@ packages: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} - minimatch@10.1.1: - resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==} - engines: {node: 20 || >=22} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@10.2.5: + resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} + engines: {node: 18 || 20 || >=22} - minimatch@5.0.1: - resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==} - engines: {node: '>=10'} + minimatch@3.1.5: + resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==} - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + minimatch@5.1.9: + resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==} engines: {node: '>=10'} - minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + minimatch@9.0.9: + resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==} engines: {node: '>=16 || 14 >=14.17'} minimist@1.2.8: @@ -6122,17 +5934,14 @@ packages: resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} engines: {node: '>=8'} - minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + minipass@7.1.3: + resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==} engines: {node: '>=16 || 14 >=14.17'} minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} - mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} - mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true @@ -6178,26 +5987,11 @@ packages: mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - mute-stream@1.0.0: - resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - nan@2.25.0: - resolution: {integrity: sha512-0M90Ag7Xn5KMLLZ7zliPWP3rT90P6PN+IzVFS0VqmnPktBk3700xUVv8Ikm9EUaUE5SDWdp/BIxdENzVznpm1g==} - - nanoid@3.3.11: - resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + nanoid@3.3.12: + resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - nanoid@3.3.3: - resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - napi-build-utils@2.0.0: - resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} - native-promise-only@0.8.1: resolution: {integrity: sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg==} @@ -6239,10 +6033,6 @@ packages: resolution: {integrity: sha512-o2zOYiCpzRqSzPj0Zt/dQ/DqZeYoaQ7TUonc/xUPjCGl9WeHpNbxgVvOquXYAaJzI0M9BXV3HTzG0p8IUAbBTQ==} engines: {node: '>= 10.13'} - node-abi@3.87.0: - resolution: {integrity: sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==} - engines: {node: '>=10'} - node-addon-api@7.1.1: resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} @@ -6250,6 +6040,10 @@ packages: resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} engines: {node: '>= 0.10.5'} + node-exports-info@1.6.0: + resolution: {integrity: sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==} + engines: {node: '>= 0.4'} + node-fetch@2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} engines: {node: 4.x || >=6.0.0} @@ -6268,16 +6062,17 @@ packages: encoding: optional: true - node-forge@1.3.3: - resolution: {integrity: sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==} + node-forge@1.4.0: + resolution: {integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==} engines: {node: '>= 6.13.0'} node-preload@0.2.1: resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} engines: {node: '>=8'} - node-releases@2.0.27: - resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} + node-releases@2.0.47: + resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==} + engines: {node: '>=18'} node-rsa@1.1.1: resolution: {integrity: sha512-Jd4cvbJMryN21r5HgxQOpMEqv+ooke/korixNNK3mGqfGJmy0M77WDDzo/05969+OkMy3XW1UuZsSmW9KQm7Fw==} @@ -6308,10 +6103,6 @@ packages: resolution: {integrity: sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==} engines: {node: '>=8'} - npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - nyc@15.1.0: resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} engines: {node: '>=8.9'} @@ -6341,6 +6132,10 @@ packages: resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} engines: {node: '>= 0.4'} + object.entries@1.1.9: + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} + engines: {node: '>= 0.4'} + object.fromentries@2.0.8: resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} engines: {node: '>= 0.4'} @@ -6368,8 +6163,8 @@ packages: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} - oo-ascii-tree@1.126.0: - resolution: {integrity: sha512-EebBYPzBN8H/j+6sMB5IxAvulsffQuMaPn4ZQeiDKYy1uqTT5t50inNN/tn61wwCs7IZ2jUb1sCEkyh2iwkHlA==} + oo-ascii-tree@1.134.0: + resolution: {integrity: sha512-bOOKLIS62zb1BeNivIIHcuZsvCQfe/kZMsklmFQXiBD/JXCsDrWmPHnzT746tsnq4UmpjFUGy4xw0NBvUbm99w==} engines: {node: '>= 14.17.0'} open@10.2.0: @@ -6473,10 +6268,6 @@ packages: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} - parse-gitignore@1.0.1: - resolution: {integrity: sha512-UGyowyjtx26n65kdAMWhm6/3uy5uSrpcuH7tt+QEVudiBoVS+eqHxD5kbi9oWVRwj7sCzXqwuM+rUGw7earl6A==} - engines: {node: '>=6'} - parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} @@ -6522,12 +6313,12 @@ packages: resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} engines: {node: '>=16 || 14 >=14.18'} - path-scurry@2.0.1: - resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==} - engines: {node: 20 || >=22} + path-scurry@2.0.2: + resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==} + engines: {node: 18 || 20 || >=22} - path-to-regexp@0.1.12: - resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} + path-to-regexp@0.1.13: + resolution: {integrity: sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==} path-to-regexp@1.9.0: resolution: {integrity: sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==} @@ -6555,23 +6346,14 @@ packages: picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + picomatch@2.3.2: + resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==} engines: {node: '>=8.6'} - picomatch@4.0.3: - resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + picomatch@4.0.4: + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} engines: {node: '>=12'} - pidtree@0.6.0: - resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} - engines: {node: '>=0.10'} - hasBin: true - - pidusage@3.0.2: - resolution: {integrity: sha512-g0VU+y08pKw5M8EZ2rIGiEBaB8wrQMjYGFfW2QVIfyT8V+fq8YFLkvlz4bz5ljvFDJYNFCWT3PWqcRr2FKO81w==} - engines: {node: '>=10'} - pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} @@ -6592,10 +6374,6 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} - pkg-up@3.1.0: - resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} - engines: {node: '>=8'} - pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} @@ -6604,11 +6382,6 @@ packages: resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} engines: {node: '>= 0.4'} - prebuild-install@7.1.3: - resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} - engines: {node: '>=10'} - hasBin: true - prelude-ls@1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} @@ -6671,11 +6444,12 @@ packages: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} - proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + proxy-from-env@2.1.0: + resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==} + engines: {node: '>=10'} - pump@3.0.3: - resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + pump@3.0.4: + resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==} punycode@1.3.2: resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} @@ -6687,8 +6461,8 @@ packages: pure-rand@6.1.0: resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - qs@6.14.1: - resolution: {integrity: sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==} + qs@6.15.2: + resolution: {integrity: sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==} engines: {node: '>=0.6'} querystring@0.2.0: @@ -6719,10 +6493,6 @@ packages: resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==} engines: {node: '>= 0.8'} - rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true - react-devtools-core@4.28.5: resolution: {integrity: sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==} @@ -6824,8 +6594,13 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - resolve@1.22.11: - resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==} + resolve@1.22.12: + resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==} + engines: {node: '>= 0.4'} + hasBin: true + + resolve@2.0.0-next.7: + resolution: {integrity: sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==} engines: {node: '>= 0.4'} hasBin: true @@ -6857,8 +6632,8 @@ packages: rhea-promise@3.0.3: resolution: {integrity: sha512-a875P5YcMkePSTEWMsnmCQS7Y4v/XvIw7ZoMtJxqtQRZsqSA6PsZxuz4vktyRykPuUgdNsA6F84dS3iEXZoYnQ==} - rhea@3.0.4: - resolution: {integrity: sha512-n3kw8syCdrsfJ72w3rohpoHHlmv/RZZEP9VY5BVjjo0sEGIt4YSKypBgaiA+OUSgJAzLjOECYecsclG5xbYtZw==} + rhea@3.0.5: + resolution: {integrity: sha512-Ye1gzqH9DoCGMTaSfLfGmDdoderMshyVU5rdFES+D3N1U5PASZcNCKqhWJJUOOj8INtdrIPOfDALrRcoRRL7jw==} rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} @@ -6887,10 +6662,6 @@ packages: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} - run-async@3.0.0: - resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} - engines: {node: '>=0.12.0'} - run-parallel-limit@1.1.0: resolution: {integrity: sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw==} @@ -6904,8 +6675,8 @@ packages: rxjs@7.8.2: resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} - safe-array-concat@1.1.3: - resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + safe-array-concat@1.1.4: + resolution: {integrity: sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==} engines: {node: '>=0.4'} safe-buffer@5.1.2: @@ -6931,8 +6702,8 @@ packages: sax@1.2.1: resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==} - sax@1.4.4: - resolution: {integrity: sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==} + sax@1.6.0: + resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==} engines: {node: '>=11.0.0'} scheduler@0.20.2: @@ -6957,13 +6728,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.7.2: - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} - engines: {node: '>=10'} - hasBin: true - - semver@7.7.3: - resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + semver@7.8.3: + resolution: {integrity: sha512-wnilbGyMxzbY7dNOl7jpKbLSjcfeweJWU5j4+u5qW+6/wuGD9KzIGOyZnQVSBM9E7DtWaaH3CyHkppYrKYoxwg==} engines: {node: '>=10'} hasBin: true @@ -6971,8 +6737,8 @@ packages: resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==} engines: {node: '>= 0.8.0'} - serialize-javascript@6.0.0: - resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} serve-static@1.16.3: resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==} @@ -7024,15 +6790,15 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - shell-quote@1.8.3: - resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} + shell-quote@1.8.4: + resolution: {integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==} engines: {node: '>= 0.4'} shortid@2.2.17: resolution: {integrity: sha512-GpbM3gLF1UUXZvQw6MCyulHkWbRseNO4cyBEZresZRorwl1+SLu1ZdqgVtuwqz8mB6RpwPkm541mYSqrKyJSaA==} - side-channel-list@1.0.0: - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + side-channel-list@1.0.1: + resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==} engines: {node: '>= 0.4'} side-channel-map@1.0.1: @@ -7043,8 +6809,8 @@ packages: resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} engines: {node: '>= 0.4'} - side-channel@1.1.0: - resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + side-channel@1.1.1: + resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==} engines: {node: '>= 0.4'} signal-exit@3.0.7: @@ -7054,14 +6820,8 @@ packages: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} - simple-concat@1.0.1: - resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} - - simple-get@4.0.1: - resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} - - simple-git@3.30.0: - resolution: {integrity: sha512-q6lxyDsCmEal/MEGhP1aVyQ3oxnagGlBDOVSIB4XUVLl1iZh0Pah6ebC9V4xBap/RfgP2WlI8EKs0WS0rMEJHg==} + simple-git@3.36.0: + resolution: {integrity: sha512-cGQjLjK8bxJw4QuYT7gxHw3/IouVESbhahSsHrX97MzCL1gu2u7oy38W6L2ZIGECEfIBG4BabsWDPjBxJENv9Q==} sinon-chai@3.5.0: resolution: {integrity: sha512-IifbusYiQBpUxxFJkR3wTU68xzBN0+bxCScEaKMjBvAQERg6FnTTc1F17rseLb1tjmkJ23730AXpFI0c47FgAg==} @@ -7132,8 +6892,8 @@ packages: spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - spdx-license-ids@3.0.22: - resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} + spdx-license-ids@3.0.23: + resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==} spdx-license-list@6.11.0: resolution: {integrity: sha512-p5ICd51dSnh7zIMtPgbB9ShBg3HMT77OeI6WVhrFFvxa5KIFYNcqxD4joAE+n1zZ7wlJdEkrOMwC75JUMMmsJA==} @@ -7149,10 +6909,6 @@ packages: resolution: {integrity: sha512-lnapdj6W4LflHZGKvl9eVkz5YF0xaTrqpRWVA4cNVOTedwqifIP8ooGImldzT/4IAN5KXFQAyXTdLidYVQdyag==} engines: {node: '>=0.12'} - sscaff@1.2.274: - resolution: {integrity: sha512-sztRa50SL1LVxZnF1au6QT1SC2z0S1oEOyi2Kpnlg6urDns93aL32YxiJcNkLcY+VHFtVqm/SRv4cb+6LeoBQA==} - engines: {node: '>= 12.13.0'} - stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} @@ -7169,10 +6925,6 @@ packages: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} - stream-buffers@3.0.3: - resolution: {integrity: sha512-pqMqwQCso0PBJt2PQmDO0cFj0lyqmiwOMiMSkVtRokl7e+ZTRYgDHKnuZNbqjiJXgsg4nuqtD/zxuo9KqTp0Yw==} - engines: {node: '>= 0.10.0'} - stream-chain@2.2.5: resolution: {integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==} @@ -7186,9 +6938,6 @@ packages: resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==} engines: {node: '>=8.0'} - streamx@2.23.0: - resolution: {integrity: sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==} - string-width@3.1.0: resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} engines: {node: '>=6'} @@ -7201,12 +6950,12 @@ packages: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} - string.prototype.trim@1.2.10: - resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + string.prototype.trim@1.2.11: + resolution: {integrity: sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==} engines: {node: '>= 0.4'} - string.prototype.trimend@1.0.9: - resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + string.prototype.trimend@1.0.10: + resolution: {integrity: sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw==} engines: {node: '>= 0.4'} string.prototype.trimstart@1.0.8: @@ -7253,10 +7002,6 @@ packages: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} - strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} - strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} @@ -7316,9 +7061,6 @@ packages: resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} engines: {node: '>=10.0.0'} - tar-fs@2.1.4: - resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==} - tar-stream@1.6.2: resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==} engines: {node: '>= 0.8.0'} @@ -7327,21 +7069,15 @@ packages: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} engines: {node: '>=6'} - tar-stream@3.1.7: - resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} - tar@6.2.1: resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} engines: {node: '>=10'} - deprecated: Old versions of tar 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 exhorbitant rates) by contacting i@izs.me + deprecated: Old versions of tar 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 test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} - text-decoder@1.2.3: - resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} - text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} @@ -7436,9 +7172,6 @@ packages: peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} - type-check@0.3.2: resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} engines: {node: '>= 0.8.0'} @@ -7494,8 +7227,8 @@ packages: resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} engines: {node: '>= 0.4'} - typed-array-length@1.0.7: - resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + typed-array-length@1.0.8: + resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==} engines: {node: '>= 0.4'} typedarray-to-buffer@3.1.5: @@ -7510,8 +7243,8 @@ packages: engines: {node: '>=14.17'} hasBin: true - typescript@5.8.3: - resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} engines: {node: '>=14.17'} hasBin: true @@ -7522,14 +7255,11 @@ packages: unbzip2-stream@1.4.3: resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici-types@6.21.0: resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} - undici@7.19.2: - resolution: {integrity: sha512-4VQSpGEGsWzk0VYxyB/wVX/Q7qf9t5znLRgs0dzszr9w9Fej/8RVNQ+S20vdXSAyra/bJ7ZQfGv6ZMj7UEbzSg==} + undici@7.27.2: + resolution: {integrity: sha512-uZsKNuzQxDMUY6M3pIMvy5tvlGmtq8XJ2oLAkfRKGNu+1VQAIvLy2xIVG5ATZl5wDXl/tddByAWCizRbOme+TA==} engines: {node: '>=20.18.1'} uni-global@1.0.0: @@ -7573,25 +7303,28 @@ packages: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} - uuid@11.0.5: - resolution: {integrity: sha512-508e6IcKLrhxKdBbcA2b4KQZlLVp2+J5UwQ6F7Drckkc5N9ZJwFa4TgWtsww9UG8fGHbm6gbV19TdM5pQ4GaIA==} + uuid@11.1.1: + resolution: {integrity: sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==} hasBin: true uuid@3.3.2: resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + 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 uuid@8.0.0: resolution: {integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==} + 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 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 uuid@9.0.1: resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + 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 v8-compile-cache-lib@3.0.1: @@ -7606,20 +7339,20 @@ packages: validate-npm-package-name@3.0.0: resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} - validator@13.15.0: - resolution: {integrity: sha512-36B2ryl4+oL5QxZ3AzD0t5SsMNGvTtQHpjgFO5tbNxfXbMFkY822ktCDe1MnlqV3301QQI9SLHDNJokDI+Z9pA==} - engines: {node: '>= 0.10'} - validator@13.15.26: resolution: {integrity: sha512-spH26xU080ydGggxRyR1Yhcbgx+j3y5jbNXk/8L+iRvdIEQ4uTRH2Sgf2dokud6Q4oAtsbNvJ1Ft+9xmm6IZcA==} engines: {node: '>= 0.10'} + validator@13.15.35: + resolution: {integrity: sha512-TQ5pAGhd5whStmqWvYF4OjQROlmv9SMFVt37qoCBdqRffuuklWYQlCNnEs2ZaIBD1kZRNnikiZOS1eqgkar0iw==} + engines: {node: '>= 0.10'} + vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} - velocityjs@2.1.5: - resolution: {integrity: sha512-QYOx2+7ICdUp2IckrJpjakPopLPDAaYwF26z/ZNsUvrlQLNkNoFvnN0SrbnEWp7tZ88+ybIpvuu/+IB9q1j+jQ==} + velocityjs@2.1.6: + resolution: {integrity: sha512-8bc+yDR2NjwPioMqOLsAs5VBMT16xr/jTfStHMmr7btRPvbCCiEoZ9k9k/7Uhxl3bUxIHY7uDNbvm5rTwPZlXg==} engines: {node: '>=16.0.0'} wcwidth@1.0.1: @@ -7650,8 +7383,8 @@ packages: which-module@2.0.1: resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - which-typed-array@1.1.20: - resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==} + which-typed-array@1.1.22: + resolution: {integrity: sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw==} engines: {node: '>= 0.4'} which@1.3.1: @@ -7715,8 +7448,8 @@ packages: resolution: {integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==} engines: {node: '>=4'} - ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + ws@7.5.11: + resolution: {integrity: sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -7727,8 +7460,8 @@ packages: utf-8-validate: optional: true - ws@8.18.0: - resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + ws@8.21.0: + resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -7743,10 +7476,6 @@ packages: resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} engines: {node: '>=18'} - xml-js@1.6.11: - resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} - hasBin: true - xml2js@0.4.19: resolution: {integrity: sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==} @@ -7766,9 +7495,6 @@ packages: resolution: {integrity: sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==} engines: {node: '>=4.0'} - xstate@4.38.3: - resolution: {integrity: sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==} - xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} @@ -7789,12 +7515,12 @@ packages: yaml-ast-parser@0.0.43: resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} - yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + yaml@1.10.3: + resolution: {integrity: sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==} engines: {node: '>= 6'} - yaml@2.8.2: - resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==} + yaml@2.9.0: + resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} engines: {node: '>= 14.6'} hasBin: true @@ -7865,12 +7591,8 @@ packages: resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==} engines: {node: '>= 10'} - zip-stream@6.0.1: - resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==} - engines: {node: '>= 14'} - - zod@3.24.4: - resolution: {integrity: sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==} + zod@3.25.76: + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} snapshots: @@ -7879,14 +7601,14 @@ snapshots: d: 1.0.2 es5-ext: 0.10.64 - '@apollo/client@3.7.13(graphql@16.12.0)(react@17.0.2)(subscriptions-transport-ws@0.11.0(graphql@16.12.0))': + '@apollo/client@3.7.13(graphql@16.14.2)(react@17.0.2)(subscriptions-transport-ws@0.11.0(graphql@16.14.2))': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2) '@wry/context': 0.7.4 '@wry/equality': 0.5.7 '@wry/trie': 0.3.2 - graphql: 16.12.0 - graphql-tag: 2.12.6(graphql@16.12.0) + graphql: 16.14.2 + graphql-tag: 2.12.6(graphql@16.14.2) hoist-non-react-statics: 3.3.2 optimism: 0.16.2 prop-types: 15.8.1 @@ -7897,7 +7619,7 @@ snapshots: zen-observable-ts: 1.2.5 optionalDependencies: react: 17.0.2 - subscriptions-transport-ws: 0.11.0(graphql@16.12.0) + subscriptions-transport-ws: 0.11.0(graphql@16.14.2) '@aws-cdk/assets@1.204.0(@aws-cdk/core@1.204.0(@aws-cdk/cx-api@1.204.0)(constructs@3.4.344))(@aws-cdk/cx-api@1.204.0)(constructs@3.4.344)': dependencies: @@ -8626,13 +8348,13 @@ snapshots: '@aws-cdk/region-info@1.204.0': {} - '@azure-rest/core-client@2.5.1': + '@azure-rest/core-client@2.6.1': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-rest-pipeline': 1.24.0 '@azure/core-tracing': 1.3.1 - '@typespec/ts-http-runtime': 0.3.2 + '@typespec/ts-http-runtime': 0.3.6 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -8649,10 +8371,10 @@ snapshots: dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-client': 1.10.1 + '@azure/core-client': 1.10.2 '@azure/core-lro': 2.7.2 '@azure/core-paging': 1.6.2 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-rest-pipeline': 1.24.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -8661,10 +8383,10 @@ snapshots: dependencies: '@azure/abort-controller': 1.1.0 '@azure/core-auth': 1.10.1 - '@azure/core-client': 1.10.1 + '@azure/core-client': 1.10.2 '@azure/core-lro': 2.7.2 '@azure/core-paging': 1.6.2 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-rest-pipeline': 1.24.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -8673,10 +8395,10 @@ snapshots: dependencies: '@azure/abort-controller': 1.1.0 '@azure/core-auth': 1.10.1 - '@azure/core-client': 1.10.1 + '@azure/core-client': 1.10.2 '@azure/core-lro': 2.7.2 '@azure/core-paging': 1.6.2 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-rest-pipeline': 1.24.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -8691,7 +8413,7 @@ snapshots: events: 3.3.0 jssha: 3.3.1 process: 0.11.10 - rhea: 3.0.4 + rhea: 3.0.5 rhea-promise: 3.0.3 tslib: 2.8.1 util: 0.12.5 @@ -8706,11 +8428,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/core-client@1.10.1': + '@azure/core-client@1.10.2': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-rest-pipeline': 1.24.0 '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 '@azure/logger': 1.3.0 @@ -8718,13 +8440,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/core-http-compat@2.3.1': + '@azure/core-http-compat@2.4.0(@azure/core-client@1.10.2)(@azure/core-rest-pipeline@1.24.0)': dependencies: '@azure/abort-controller': 2.1.2 - '@azure/core-client': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 - transitivePeerDependencies: - - supports-color + '@azure/core-client': 1.10.2 + '@azure/core-rest-pipeline': 1.24.0 '@azure/core-lro@2.7.2': dependencies: @@ -8739,14 +8459,14 @@ snapshots: dependencies: tslib: 2.8.1 - '@azure/core-rest-pipeline@1.22.2': + '@azure/core-rest-pipeline@1.24.0': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 '@azure/logger': 1.3.0 - '@typespec/ts-http-runtime': 0.3.2 + '@typespec/ts-http-runtime': 0.3.6 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -8758,25 +8478,26 @@ snapshots: '@azure/core-util@1.13.1': dependencies: '@azure/abort-controller': 2.1.2 - '@typespec/ts-http-runtime': 0.3.2 + '@typespec/ts-http-runtime': 0.3.6 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/cosmos@4.9.1': + '@azure/cosmos@4.9.3(@azure/core-client@1.10.2)': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-rest-pipeline': 1.24.0 '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 - '@azure/keyvault-keys': 4.10.0 + '@azure/keyvault-keys': 4.10.0(@azure/core-client@1.10.2) '@azure/logger': 1.3.0 fast-json-stable-stringify: 2.1.0 priorityqueuejs: 2.0.0 semaphore: 1.1.0 tslib: 2.8.1 transitivePeerDependencies: + - '@azure/core-client' - supports-color '@azure/event-hubs@5.11.1': @@ -8796,36 +8517,35 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/functions-extensions-base@0.2.0': {} + '@azure/functions-extensions-base@0.3.0': {} - '@azure/functions@4.11.0': + '@azure/functions@4.16.0': dependencies: - '@azure/functions-extensions-base': 0.2.0 + '@azure/functions-extensions-base': 0.3.0 cookie: 0.7.2 - long: 4.0.0 - '@azure/identity@4.13.0': + '@azure/identity@4.13.1': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-client': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-client': 1.10.2 + '@azure/core-rest-pipeline': 1.24.0 '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 '@azure/logger': 1.3.0 - '@azure/msal-browser': 4.28.1 - '@azure/msal-node': 3.8.6 + '@azure/msal-browser': 5.12.0 + '@azure/msal-node': 5.2.3 open: 10.2.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/keyvault-common@2.0.0': + '@azure/keyvault-common@2.1.0': dependencies: + '@azure-rest/core-client': 2.6.1 '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-client': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-rest-pipeline': 1.24.0 '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 '@azure/logger': 1.3.0 @@ -8833,47 +8553,47 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/keyvault-keys@4.10.0': + '@azure/keyvault-keys@4.10.0(@azure/core-client@1.10.2)': dependencies: - '@azure-rest/core-client': 2.5.1 + '@azure-rest/core-client': 2.6.1 '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-http-compat': 2.3.1 + '@azure/core-http-compat': 2.4.0(@azure/core-client@1.10.2)(@azure/core-rest-pipeline@1.24.0) '@azure/core-lro': 2.7.2 '@azure/core-paging': 1.6.2 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-rest-pipeline': 1.24.0 '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 - '@azure/keyvault-common': 2.0.0 + '@azure/keyvault-common': 2.1.0 '@azure/logger': 1.3.0 tslib: 2.8.1 transitivePeerDependencies: + - '@azure/core-client' - supports-color '@azure/logger@1.3.0': dependencies: - '@typespec/ts-http-runtime': 0.3.2 + '@typespec/ts-http-runtime': 0.3.6 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/msal-browser@4.28.1': + '@azure/msal-browser@5.12.0': dependencies: - '@azure/msal-common': 15.14.1 + '@azure/msal-common': 16.7.0 - '@azure/msal-common@15.14.1': {} + '@azure/msal-common@16.7.0': {} - '@azure/msal-node@3.8.6': + '@azure/msal-node@5.2.3': dependencies: - '@azure/msal-common': 15.14.1 + '@azure/msal-common': 16.7.0 jsonwebtoken: 9.0.2 - uuid: 8.3.2 '@azure/web-pubsub@1.1.4': dependencies: '@azure/core-auth': 1.10.1 - '@azure/core-client': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/core-client': 1.10.2 + '@azure/core-rest-pipeline': 1.24.0 '@azure/core-tracing': 1.3.1 '@azure/logger': 1.3.0 jsonwebtoken: 9.0.2 @@ -8881,25 +8601,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/code-frame@7.28.6': + '@babel/code-frame@7.29.7': dependencies: - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.29.7 js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/compat-data@7.28.6': {} + '@babel/compat-data@7.29.7': {} - '@babel/core@7.28.6': + '@babel/core@7.29.7': dependencies: - '@babel/code-frame': 7.28.6 - '@babel/generator': 7.28.6 - '@babel/helper-compilation-targets': 7.28.6 - '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.6) - '@babel/helpers': 7.28.6 - '@babel/parser': 7.28.6 - '@babel/template': 7.28.6 - '@babel/traverse': 7.28.6 - '@babel/types': 7.28.6 + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7) + '@babel/helpers': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 debug: 4.4.3(supports-color@8.1.1) @@ -8909,255 +8629,190 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/generator@7.27.1': + '@babel/generator@7.29.1': dependencies: - '@babel/parser': 7.28.6 - '@babel/types': 7.27.1 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.0 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - '@babel/generator@7.28.6': + '@babel/generator@7.29.7': dependencies: - '@babel/parser': 7.28.6 - '@babel/types': 7.28.6 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - '@babel/helper-compilation-targets@7.28.6': + '@babel/helper-compilation-targets@7.29.7': dependencies: - '@babel/compat-data': 7.28.6 - '@babel/helper-validator-option': 7.27.1 - browserslist: 4.28.1 + '@babel/compat-data': 7.29.7 + '@babel/helper-validator-option': 7.29.7 + browserslist: 4.28.2 lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-globals@7.28.0': {} + '@babel/helper-globals@7.29.7': {} - '@babel/helper-module-imports@7.28.6': + '@babel/helper-module-imports@7.29.7': dependencies: - '@babel/traverse': 7.28.6 - '@babel/types': 7.28.6 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.28.6(@babel/core@7.28.6)': + '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)': dependencies: - '@babel/core': 7.28.6 - '@babel/helper-module-imports': 7.28.6 - '@babel/helper-validator-identifier': 7.28.5 - '@babel/traverse': 7.28.6 + '@babel/core': 7.29.7 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - '@babel/helper-string-parser@7.27.1': {} + '@babel/helper-string-parser@7.29.7': {} - '@babel/helper-validator-identifier@7.28.5': {} + '@babel/helper-validator-identifier@7.29.7': {} - '@babel/helper-validator-option@7.27.1': {} + '@babel/helper-validator-option@7.29.7': {} - '@babel/helpers@7.28.6': + '@babel/helpers@7.29.7': dependencies: - '@babel/template': 7.28.6 - '@babel/types': 7.28.6 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 - '@babel/parser@7.28.6': + '@babel/parser@7.29.7': dependencies: - '@babel/types': 7.28.6 + '@babel/types': 7.29.7 - '@babel/runtime@7.28.6': {} + '@babel/runtime@7.29.7': {} - '@babel/template@7.27.2': + '@babel/template@7.28.6': dependencies: - '@babel/code-frame': 7.28.6 - '@babel/parser': 7.28.6 - '@babel/types': 7.27.1 + '@babel/code-frame': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.0 - '@babel/template@7.28.6': + '@babel/template@7.29.7': dependencies: - '@babel/code-frame': 7.28.6 - '@babel/parser': 7.28.6 - '@babel/types': 7.28.6 + '@babel/code-frame': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 - '@babel/traverse@7.28.6': + '@babel/traverse@7.29.7': dependencies: - '@babel/code-frame': 7.28.6 - '@babel/generator': 7.28.6 - '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.28.6 - '@babel/template': 7.28.6 - '@babel/types': 7.28.6 + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-globals': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/types@7.27.1': + '@babel/types@7.29.0': dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-string-parser': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 - '@babel/types@7.28.6': + '@babel/types@7.29.7': dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 - - '@cdktf/cli-core@0.21.0(react@17.0.2)': - dependencies: - '@cdktf/commons': 0.21.0(constructs@10.4.2) - '@cdktf/hcl-tools': 0.21.0 - '@cdktf/hcl2cdk': 0.21.0(constructs@10.4.2) - '@cdktf/hcl2json': 0.21.0 - '@cdktf/node-pty-prebuilt-multiarch': 0.10.2 - '@cdktf/provider-schema': 0.21.0(constructs@10.4.2) - '@sentry/node': 7.120.3 - archiver: 7.0.1 - cdktf: 0.21.0(constructs@10.4.2) - chalk: 4.1.2 - chokidar: 3.6.0 - cli-spinners: 2.9.2 - codemaker: 1.112.0 - constructs: 10.4.2 - cross-fetch: 3.2.0 - cross-spawn: 7.0.6 - detect-port: 1.6.1 - execa: 5.1.1 - extract-zip: 2.0.1 - follow-redirects: 1.15.9 - fs-extra: 8.1.0 - https-proxy-agent: 5.0.1(supports-color@8.1.1) - indent-string: 4.0.0 - ink: 3.2.0(react@17.0.2) - ink-select-input: 4.2.2(ink@3.2.0(react@17.0.2))(react@17.0.2) - ink-spinner: 4.0.3(ink@3.2.0(react@17.0.2))(react@17.0.2) - ink-testing-library: 2.1.0 - ink-use-stdout-dimensions: 1.0.5(ink@3.2.0(react@17.0.2))(react@17.0.2) - jsii: 5.8.9 - jsii-pacmak: 1.112.0(jsii-rosetta@5.8.8) - jsii-rosetta: 5.8.8 - lodash.isequal: 4.5.0 - log4js: 6.9.1 - minimatch: 5.1.6 - node-fetch: 2.7.0 - open: 7.4.2 - parse-gitignore: 1.0.1 - pkg-up: 3.1.0 - semver: 7.7.2 - sscaff: 1.2.274 - stream-buffers: 3.0.3 - strip-ansi: 6.0.1 - tunnel-agent: 0.6.0 - uuid: 8.3.2 - xml-js: 1.6.11 - xstate: 4.38.3 - yargs: 17.7.2 - yoga-layout-prebuilt: 1.10.0 - zod: 3.24.4 - transitivePeerDependencies: - - '@types/react' - - bare-abort-controller - - bufferutil - - debug - - encoding - - react - - react-native-b4a - - supports-color - - utf-8-validate + '@babel/helper-string-parser': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 - '@cdktf/commons@0.21.0(constructs@10.4.2)': + '@cdktn/commons@0.23.3(constructs@10.6.0)': dependencies: - '@sentry/node': 7.120.3 - cdktf: 0.21.0(constructs@10.4.2) + '@sentry/node': 7.120.4 + cdktn: 0.23.3(constructs@10.6.0) ci-info: 3.9.0 - codemaker: 1.112.0 + codemaker: 1.128.0 cross-spawn: 7.0.6 - follow-redirects: 1.15.9 - fs-extra: 11.3.0 + follow-redirects: 1.16.0 + fs-extra: 11.3.4 log4js: 6.9.1 strip-ansi: 6.0.1 uuid: 9.0.1 - validator: 13.15.0 + validator: 13.15.35 transitivePeerDependencies: - constructs - debug - supports-color - '@cdktf/hcl-tools@0.21.0': + '@cdktn/hcl-tools@0.23.3': dependencies: - fs-extra: 11.3.3 + fs-extra: 11.3.5 - '@cdktf/hcl2cdk@0.21.0(constructs@10.4.2)': + '@cdktn/hcl2cdk@0.23.3(constructs@10.6.0)': dependencies: - '@babel/generator': 7.27.1 - '@babel/template': 7.27.2 - '@babel/types': 7.27.1 - '@cdktf/commons': 0.21.0(constructs@10.4.2) - '@cdktf/hcl2json': 0.21.0 - '@cdktf/provider-generator': 0.21.0(constructs@10.4.2) - '@cdktf/provider-schema': 0.21.0(constructs@10.4.2) + '@babel/generator': 7.29.1 + '@babel/template': 7.28.6 + '@babel/types': 7.29.0 + '@cdktn/commons': 0.23.3(constructs@10.6.0) + '@cdktn/hcl2json': 0.23.3 + '@cdktn/provider-generator': 0.23.3(constructs@10.6.0)(jsii-rosetta@5.9.39) + '@cdktn/provider-schema': 0.23.3(constructs@10.6.0) camelcase: 6.3.0 - cdktf: 0.21.0(constructs@10.4.2) - codemaker: 1.112.0 + cdktn: 0.23.3(constructs@10.6.0) + codemaker: 1.128.0 deep-equal: 2.2.3 glob: 10.5.0 graphology: 0.26.0(graphology-types@0.24.7) graphology-types: 0.24.7 - jsii-rosetta: 5.8.8 + jsii-rosetta: 5.9.39 prettier: 2.8.8 reserved-words: 0.1.2 - zod: 3.24.4 + zod: 3.25.76 transitivePeerDependencies: - constructs - debug - supports-color - '@cdktf/hcl2json@0.21.0': + '@cdktn/hcl2json@0.23.3': dependencies: - fs-extra: 11.3.0 + fs-extra: 11.3.4 - '@cdktf/node-pty-prebuilt-multiarch@0.10.2': + '@cdktn/provider-azurerm@16.4.0(cdktn@0.23.3(constructs@10.6.0))(constructs@10.6.0)': dependencies: - nan: 2.25.0 - prebuild-install: 7.1.3 + cdktn: 0.23.3(constructs@10.6.0) + constructs: 10.6.0 - '@cdktf/provider-azurerm@14.23.1(cdktf@0.21.0(constructs@10.4.5))(constructs@10.4.5)': + '@cdktn/provider-generator@0.23.3(constructs@10.6.0)(jsii-rosetta@5.9.39)': dependencies: - cdktf: 0.21.0(constructs@10.4.5) - constructs: 10.4.5 - - '@cdktf/provider-generator@0.21.0(constructs@10.4.2)': - dependencies: - '@cdktf/commons': 0.21.0(constructs@10.4.2) - '@cdktf/provider-schema': 0.21.0(constructs@10.4.2) - '@types/node': 18.19.101 - codemaker: 1.112.0 + '@cdktn/commons': 0.23.3(constructs@10.6.0) + '@cdktn/provider-schema': 0.23.3(constructs@10.6.0) + codemaker: 1.128.0 fs-extra: 8.1.0 glob: 10.5.0 + jsii: 5.9.43 + jsii-pacmak: 1.128.0(jsii-rosetta@5.9.39) transitivePeerDependencies: - constructs - debug + - jsii-rosetta - supports-color - '@cdktf/provider-null@11.0.1(cdktf@0.21.0(constructs@10.4.5))(constructs@10.4.5)': + '@cdktn/provider-null@13.1.0(cdktn@0.23.3(constructs@10.6.0))(constructs@10.6.0)': dependencies: - cdktf: 0.21.0(constructs@10.4.5) - constructs: 10.4.5 + cdktn: 0.23.3(constructs@10.6.0) + constructs: 10.6.0 - '@cdktf/provider-schema@0.21.0(constructs@10.4.2)': + '@cdktn/provider-schema@0.23.3(constructs@10.6.0)': dependencies: - '@cdktf/commons': 0.21.0(constructs@10.4.2) - '@cdktf/hcl2json': 0.21.0 + '@cdktn/commons': 0.23.3(constructs@10.6.0) + '@cdktn/hcl2json': 0.23.3 deepmerge: 4.3.1 - fs-extra: 11.3.0 + fs-extra: 11.3.4 transitivePeerDependencies: - constructs - debug - supports-color - '@cdktf/provider-time@11.0.1(cdktf@0.21.0(constructs@10.4.5))(constructs@10.4.5)': + '@cdktn/provider-time@13.1.0(cdktn@0.23.3(constructs@10.6.0))(constructs@10.6.0)': dependencies: - cdktf: 0.21.0(constructs@10.4.5) - constructs: 10.4.5 + cdktn: 0.23.3(constructs@10.6.0) + constructs: 10.6.0 '@cspotcode/source-map-support@0.8.1': dependencies: @@ -9173,60 +8828,60 @@ snapshots: '@effect-ts/system@0.57.5': {} - '@effect/cli@0.56.2(@effect/platform@0.77.2(effect@3.13.2))(@effect/printer-ansi@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2))(@effect/printer@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2))(effect@3.13.2)': + '@effect/cli@0.58.4(@effect/platform@0.79.4(effect@3.21.3))(@effect/printer-ansi@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3))(@effect/printer@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3))(effect@3.21.3)': dependencies: - '@effect/platform': 0.77.2(effect@3.13.2) - '@effect/printer': 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) - '@effect/printer-ansi': 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) - effect: 3.13.2 + '@effect/platform': 0.79.4(effect@3.21.3) + '@effect/printer': 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) + '@effect/printer-ansi': 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) + effect: 3.21.3 ini: 4.1.3 toml: 3.0.0 - yaml: 2.8.2 + yaml: 2.9.0 - '@effect/platform-node-shared@0.27.7(@effect/platform@0.77.2(effect@3.13.2))(effect@3.13.2)': + '@effect/platform-node-shared@0.29.4(@effect/platform@0.79.4(effect@3.21.3))(effect@3.21.3)': dependencies: - '@effect/platform': 0.77.2(effect@3.13.2) + '@effect/platform': 0.79.4(effect@3.21.3) '@parcel/watcher': 2.5.6 - effect: 3.13.2 + effect: 3.21.3 multipasta: 0.2.7 - '@effect/platform-node@0.73.2(@effect/platform@0.77.2(effect@3.13.2))(effect@3.13.2)': + '@effect/platform-node@0.75.4(@effect/platform@0.79.4(effect@3.21.3))(effect@3.21.3)': dependencies: - '@effect/platform': 0.77.2(effect@3.13.2) - '@effect/platform-node-shared': 0.27.7(@effect/platform@0.77.2(effect@3.13.2))(effect@3.13.2) - effect: 3.13.2 + '@effect/platform': 0.79.4(effect@3.21.3) + '@effect/platform-node-shared': 0.29.4(@effect/platform@0.79.4(effect@3.21.3))(effect@3.21.3) + effect: 3.21.3 mime: 3.0.0 - undici: 7.19.2 - ws: 8.18.0 + undici: 7.27.2 + ws: 8.21.0 transitivePeerDependencies: - bufferutil - utf-8-validate - '@effect/platform@0.77.2(effect@3.13.2)': + '@effect/platform@0.79.4(effect@3.21.3)': dependencies: - effect: 3.13.2 + effect: 3.21.3 find-my-way-ts: 0.1.6 multipasta: 0.2.7 - '@effect/printer-ansi@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2)': + '@effect/printer-ansi@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3)': dependencies: - '@effect/printer': 0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2) - '@effect/typeclass': 0.32.2(effect@3.13.2) - effect: 3.13.2 + '@effect/printer': 0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3) + '@effect/typeclass': 0.32.12(effect@3.21.3) + effect: 3.21.3 - '@effect/printer@0.41.2(@effect/typeclass@0.32.2(effect@3.13.2))(effect@3.13.2)': + '@effect/printer@0.41.12(@effect/typeclass@0.32.12(effect@3.21.3))(effect@3.21.3)': dependencies: - '@effect/typeclass': 0.32.2(effect@3.13.2) - effect: 3.13.2 + '@effect/typeclass': 0.32.12(effect@3.21.3) + effect: 3.21.3 - '@effect/schema@0.75.5(effect@3.13.2)': + '@effect/schema@0.75.5(effect@3.21.3)': dependencies: - effect: 3.13.2 + effect: 3.21.3 fast-check: 3.23.2 - '@effect/typeclass@0.32.2(effect@3.13.2)': + '@effect/typeclass@0.32.12(effect@3.21.3)': dependencies: - effect: 3.13.2 + effect: 3.21.3 '@eslint-community/eslint-utils@4.9.1(eslint@8.57.1)': dependencies: @@ -9237,29 +8892,29 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: - ajv: 6.12.6 + ajv: 6.15.0 debug: 4.4.3(supports-color@8.1.1) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.2 import-fresh: 3.3.1 - js-yaml: 4.1.1 - minimatch: 3.1.2 + js-yaml: 4.2.0 + minimatch: 3.1.5 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color '@eslint/js@8.57.1': {} - '@graphql-typed-document-node/core@3.2.0(graphql@16.12.0)': + '@graphql-typed-document-node/core@3.2.0(graphql@16.14.2)': dependencies: - graphql: 16.12.0 + graphql: 16.14.2 '@humanwhocodes/config-array@0.13.0': dependencies: '@humanwhocodes/object-schema': 2.0.3 debug: 4.4.3(supports-color@8.1.1) - minimatch: 3.1.2 + minimatch: 3.1.5 transitivePeerDependencies: - supports-color @@ -9267,123 +8922,12 @@ snapshots: '@humanwhocodes/object-schema@2.0.3': {} - '@inquirer/checkbox@1.5.2': - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - figures: 3.2.0 - - '@inquirer/confirm@2.0.17': - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - - '@inquirer/core@2.3.1': - dependencies: - '@inquirer/type': 1.5.5 - '@types/mute-stream': 0.0.1 - '@types/node': 20.19.30 - '@types/wrap-ansi': 3.0.0 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-spinners: 2.9.2 - cli-width: 4.1.0 - figures: 3.2.0 - mute-stream: 1.0.0 - run-async: 3.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - - '@inquirer/core@6.0.0': - dependencies: - '@inquirer/type': 1.5.5 - '@types/mute-stream': 0.0.4 - '@types/node': 20.19.30 - '@types/wrap-ansi': 3.0.0 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-spinners: 2.9.2 - cli-width: 4.1.0 - figures: 3.2.0 - mute-stream: 1.0.0 - run-async: 3.0.0 - signal-exit: 4.1.0 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - - '@inquirer/editor@1.2.15': - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - external-editor: 3.1.0 - - '@inquirer/expand@1.1.16': - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - figures: 3.2.0 - - '@inquirer/external-editor@1.0.3(@types/node@20.19.30)': + '@inquirer/external-editor@1.0.3(@types/node@20.19.42)': dependencies: chardet: 2.1.1 iconv-lite: 0.7.2 optionalDependencies: - '@types/node': 20.19.30 - - '@inquirer/input@1.2.16': - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - - '@inquirer/password@1.1.16': - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - - '@inquirer/prompts@2.3.1': - dependencies: - '@inquirer/checkbox': 1.5.2 - '@inquirer/confirm': 2.0.17 - '@inquirer/core': 2.3.1 - '@inquirer/editor': 1.2.15 - '@inquirer/expand': 1.1.16 - '@inquirer/input': 1.2.16 - '@inquirer/password': 1.1.16 - '@inquirer/rawlist': 1.2.16 - '@inquirer/select': 1.3.3 - - '@inquirer/rawlist@1.2.16': - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - chalk: 4.1.2 - - '@inquirer/select@1.3.3': - dependencies: - '@inquirer/core': 6.0.0 - '@inquirer/type': 1.5.5 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - figures: 3.2.0 - - '@inquirer/type@1.5.5': - dependencies: - mute-stream: 1.0.0 - - '@isaacs/balanced-match@4.0.1': {} - - '@isaacs/brace-expansion@5.0.0': - dependencies: - '@isaacs/balanced-match': 4.0.1 + '@types/node': 20.19.42 '@isaacs/cliui@8.0.2': dependencies: @@ -9402,7 +8946,7 @@ snapshots: js-yaml: 3.14.2 resolve-from: 5.0.0 - '@istanbuljs/schema@0.1.3': {} + '@istanbuljs/schema@0.1.6': {} '@jridgewell/gen-mapping@0.3.13': dependencies: @@ -9428,19 +8972,26 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 - '@jsii/check-node@1.112.0': + '@jsii/check-node@1.128.0': dependencies: chalk: 4.1.2 - semver: 7.7.3 + semver: 7.8.3 - '@jsii/check-node@1.126.0': + '@jsii/check-node@1.132.0': dependencies: chalk: 4.1.2 - semver: 7.7.3 + semver: 7.8.3 - '@jsii/spec@1.126.0': + '@jsii/check-node@1.134.0': dependencies: - ajv: 8.17.1 + chalk: 4.1.2 + semver: 7.8.3 + + '@jsii/spec@1.128.0': {} + + '@jsii/spec@1.132.0': {} + + '@jsii/spec@1.134.0': {} '@kwsites/file-exists@1.1.1(supports-color@8.1.1)': dependencies: @@ -9477,19 +9028,19 @@ snapshots: indent-string: 4.0.0 is-wsl: 2.2.0 lilconfig: 3.1.3 - minimatch: 9.0.5 - semver: 7.7.3 + minimatch: 9.0.9 + semver: 7.8.3 string-width: 4.2.3 supports-color: 8.1.1 widest-line: 3.1.0 wordwrap: 1.0.0 wrap-ansi: 7.0.0 - '@oclif/plugin-help@6.2.37': + '@oclif/plugin-help@6.2.50': dependencies: '@oclif/core': 4.2.7 - '@oclif/test@4.1.16(@oclif/core@4.2.7)': + '@oclif/test@4.1.18(@oclif/core@4.2.7)': dependencies: '@oclif/core': 4.2.7 ansis: 3.17.0 @@ -9545,7 +9096,7 @@ snapshots: detect-libc: 2.1.2 is-glob: 4.0.3 node-addon-api: 7.1.1 - picomatch: 4.0.3 + picomatch: 4.0.4 optionalDependencies: '@parcel/watcher-android-arm64': 2.5.6 '@parcel/watcher-darwin-arm64': 2.5.6 @@ -9574,57 +9125,57 @@ snapshots: localforage: 1.10.0 util: 0.12.5 - '@sentry-internal/tracing@7.120.3': + '@sentry-internal/tracing@7.120.4': dependencies: - '@sentry/core': 7.120.3 - '@sentry/types': 7.120.3 - '@sentry/utils': 7.120.3 + '@sentry/core': 7.120.4 + '@sentry/types': 7.120.4 + '@sentry/utils': 7.120.4 - '@sentry/core@7.120.3': + '@sentry/core@7.120.4': dependencies: - '@sentry/types': 7.120.3 - '@sentry/utils': 7.120.3 + '@sentry/types': 7.120.4 + '@sentry/utils': 7.120.4 - '@sentry/integrations@7.120.3': + '@sentry/integrations@7.120.4': dependencies: - '@sentry/core': 7.120.3 - '@sentry/types': 7.120.3 - '@sentry/utils': 7.120.3 + '@sentry/core': 7.120.4 + '@sentry/types': 7.120.4 + '@sentry/utils': 7.120.4 localforage: 1.10.0 - '@sentry/node@7.120.3': + '@sentry/node@7.120.4': dependencies: - '@sentry-internal/tracing': 7.120.3 - '@sentry/core': 7.120.3 - '@sentry/integrations': 7.120.3 - '@sentry/types': 7.120.3 - '@sentry/utils': 7.120.3 + '@sentry-internal/tracing': 7.120.4 + '@sentry/core': 7.120.4 + '@sentry/integrations': 7.120.4 + '@sentry/types': 7.120.4 + '@sentry/utils': 7.120.4 - '@sentry/types@7.120.3': {} + '@sentry/types@7.120.4': {} - '@sentry/utils@7.120.3': + '@sentry/utils@7.120.4': dependencies: - '@sentry/types': 7.120.3 + '@sentry/types': 7.120.4 - '@serverless/dashboard-plugin@6.4.0(@types/node@20.19.30)(supports-color@8.1.1)': + '@serverless/dashboard-plugin@6.4.0(@types/node@20.19.42)(supports-color@8.1.1)': dependencies: '@serverless/event-mocks': 1.1.1 '@serverless/platform-client': 4.5.1(supports-color@8.1.1) - '@serverless/utils': 6.15.0(@types/node@20.19.30) + '@serverless/utils': 6.15.0(@types/node@20.19.42) child-process-ext: 3.0.2 chokidar: 3.6.0 flat: 5.0.2 fs-extra: 9.1.0 - js-yaml: 4.1.1 + js-yaml: 4.2.0 jszip: 3.10.1 - lodash: 4.17.23 + lodash: 4.18.1 memoizee: 0.4.17 ncjsm: 4.3.2 node-dir: 0.1.17 node-fetch: 2.7.0 open: 7.4.2 - semver: 7.7.3 - simple-git: 3.30.0(supports-color@8.1.1) + semver: 7.8.3 + simple-git: 3.36.0(supports-color@8.1.1) type: 2.7.3 uuid: 8.3.2 yamljs: 0.3.0 @@ -9638,33 +9189,33 @@ snapshots: '@serverless/event-mocks@1.1.1': dependencies: - '@types/lodash': 4.17.23 - lodash: 4.17.23 + '@types/lodash': 4.17.24 + lodash: 4.18.1 '@serverless/platform-client@4.5.1(supports-color@8.1.1)': dependencies: - adm-zip: 0.5.16 + adm-zip: 0.5.17 archiver: 5.3.0 - axios: 1.13.4 + axios: 1.17.0(supports-color@8.1.1) fast-glob: 3.3.3 https-proxy-agent: 5.0.1(supports-color@8.1.1) ignore: 5.3.2 - isomorphic-ws: 4.0.1(ws@7.5.10) + isomorphic-ws: 4.0.1(ws@7.5.11) js-yaml: 3.14.2 jwt-decode: 2.2.0 - minimatch: 3.1.2 + minimatch: 3.1.5 querystring: 0.2.1 run-parallel-limit: 1.1.0 throat: 5.0.0 traverse: 0.6.11 - ws: 7.5.10 + ws: 7.5.11 transitivePeerDependencies: - bufferutil - debug - supports-color - utf-8-validate - '@serverless/utils@6.15.0(@types/node@20.19.30)': + '@serverless/utils@6.15.0(@types/node@20.19.42)': dependencies: archive-type: 4.0.0 chalk: 4.1.2 @@ -9680,10 +9231,10 @@ snapshots: filenamify: 4.3.0 get-stream: 6.0.1 got: 11.8.6 - inquirer: 8.2.7(@types/node@20.19.30) - js-yaml: 4.1.1 + inquirer: 8.2.7(@types/node@20.19.42) + js-yaml: 4.2.0 jwt-decode: 3.1.2 - lodash: 4.17.23 + lodash: 4.18.1 log: 6.3.2 log-node: 8.0.3(log@6.3.2) make-dir: 4.0.0 @@ -9703,6 +9254,12 @@ snapshots: - '@types/node' - encoding + '@simple-git/args-pathspec@1.0.3': {} + + '@simple-git/argv-parser@1.1.1': + dependencies: + '@simple-git/args-pathspec': 1.0.3 + '@sindresorhus/is@4.6.0': {} '@sinonjs/commons@1.8.6': @@ -9753,7 +9310,7 @@ snapshots: '@ts-morph/common@0.26.1': dependencies: fast-glob: 3.3.3 - minimatch: 9.0.5 + minimatch: 9.0.9 path-browserify: 1.0.1 '@tsconfig/node10@1.0.12': {} @@ -9777,13 +9334,13 @@ snapshots: '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.2.0 '@types/keyv': 3.1.4 - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/responselike': 1.0.3 '@types/chai-arrays@2.0.0': @@ -9798,16 +9355,16 @@ snapshots: '@types/connect@3.4.38': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/cors@2.8.19': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/express-serve-static-core@4.19.8': dependencies: - '@types/node': 20.19.30 - '@types/qs': 6.14.0 + '@types/node': 20.19.42 + '@types/qs': 6.15.1 '@types/range-parser': 1.2.7 '@types/send': 1.2.1 @@ -9815,18 +9372,18 @@ snapshots: dependencies: '@types/body-parser': 1.19.6 '@types/express-serve-static-core': 4.19.8 - '@types/qs': 6.14.0 + '@types/qs': 6.15.1 '@types/serve-static': 1.15.10 '@types/faker@5.1.5': {} '@types/fs-extra@9.0.13': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/glob@9.0.0': dependencies: - glob: 13.0.0 + glob: 13.0.6 '@types/http-cache-semantics@4.2.0': {} @@ -9846,13 +9403,13 @@ snapshots: '@types/jsonwebtoken@9.0.8': dependencies: '@types/ms': 2.1.0 - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/keyv@3.1.4': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 - '@types/lodash@4.17.23': {} + '@types/lodash@4.17.24': {} '@types/mime@1.3.5': {} @@ -9862,45 +9419,37 @@ snapshots: '@types/mustache@4.2.5': {} - '@types/mute-stream@0.0.1': - dependencies: - '@types/node': 20.19.30 - - '@types/mute-stream@0.0.4': - dependencies: - '@types/node': 20.19.30 - '@types/nedb@1.8.16': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/needle@2.5.3': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/node-schedule@1.3.2': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/node@10.17.60': {} - '@types/node@18.19.101': + '@types/node@20.19.1': dependencies: - undici-types: 5.26.5 + undici-types: 6.21.0 - '@types/node@20.19.30': + '@types/node@20.19.42': dependencies: undici-types: 6.21.0 '@types/normalize-package-data@2.4.4': {} - '@types/qs@6.14.0': {} + '@types/qs@6.15.1': {} '@types/range-parser@1.2.7': {} '@types/responselike@1.0.3': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/rewire@2.5.30': {} @@ -9909,16 +9458,16 @@ snapshots: '@types/send@0.17.6': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/send@1.2.1': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/serve-static@1.15.10': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/send': 0.17.6 '@types/sinon-chai@3.2.5': @@ -9937,22 +9486,15 @@ snapshots: '@types/through@0.0.33': dependencies: - '@types/node': 20.19.30 + '@types/node': 20.19.42 '@types/uuid@10.0.0': {} '@types/validator@13.12.2': {} - '@types/wrap-ansi@3.0.0': {} - '@types/ws@8.5.4': dependencies: - '@types/node': 20.19.30 - - '@types/yauzl@2.10.3': - dependencies: - '@types/node': 20.19.30 - optional: true + '@types/node': 20.19.42 '@types/yoga-layout@1.9.2': {} @@ -9968,7 +9510,7 @@ snapshots: graphemer: 1.4.0 ignore: 5.3.2 natural-compare-lite: 1.4.0 - semver: 7.7.3 + semver: 7.8.3 tsutils: 3.21.0(typescript@5.7.3) optionalDependencies: typescript: 5.7.3 @@ -10013,7 +9555,7 @@ snapshots: debug: 4.4.3(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.7.3 + semver: 7.8.3 tsutils: 3.21.0(typescript@5.7.3) optionalDependencies: typescript: 5.7.3 @@ -10030,7 +9572,7 @@ snapshots: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.3) eslint: 8.57.1 eslint-scope: 5.1.1 - semver: 7.7.3 + semver: 7.8.3 transitivePeerDependencies: - supports-color - typescript @@ -10040,7 +9582,7 @@ snapshots: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - '@typespec/ts-http-runtime@0.3.2': + '@typespec/ts-http-runtime@0.3.6': dependencies: http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -10048,7 +9590,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@ungap/structured-clone@1.3.0': {} + '@ungap/structured-clone@1.3.1': {} '@wry/context@0.7.4': dependencies: @@ -10062,7 +9604,7 @@ snapshots: dependencies: tslib: 2.8.1 - '@xmldom/xmldom@0.9.8': {} + '@xmldom/xmldom@0.9.10': {} abort-controller@3.0.0: dependencies: @@ -10077,21 +9619,19 @@ snapshots: dependencies: acorn: 7.4.1 - acorn-jsx@5.3.2(acorn@8.15.0): + acorn-jsx@5.3.2(acorn@8.16.0): dependencies: - acorn: 8.15.0 + acorn: 8.16.0 - acorn-walk@8.3.4: + acorn-walk@8.3.5: dependencies: - acorn: 8.15.0 + acorn: 8.16.0 acorn@7.4.1: {} - acorn@8.15.0: {} + acorn@8.16.0: {} - address@1.2.2: {} - - adm-zip@0.5.16: {} + adm-zip@0.5.17: {} agent-base@6.0.2(supports-color@8.1.1): dependencies: @@ -10108,19 +9648,19 @@ snapshots: ajv-formats@2.1.1: dependencies: - ajv: 8.17.1 + ajv: 8.20.0 - ajv@6.12.6: + ajv@6.15.0: dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.17.1: + ajv@8.20.0: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 3.1.0 + fast-uri: 3.1.2 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -10151,7 +9691,7 @@ snapshots: anymatch@3.1.3: dependencies: normalize-path: 3.0.0 - picomatch: 2.3.1 + picomatch: 2.3.2 append-transform@2.0.0: dependencies: @@ -10187,16 +9727,6 @@ snapshots: normalize-path: 3.0.0 readable-stream: 3.6.2 - archiver-utils@5.0.2: - dependencies: - glob: 10.5.0 - graceful-fs: 4.2.11 - is-stream: 2.0.1 - lazystream: 1.0.1 - lodash: 4.17.23 - normalize-path: 3.0.0 - readable-stream: 4.7.0 - archiver@5.3.0: dependencies: archiver-utils: 2.1.0 @@ -10217,19 +9747,6 @@ snapshots: tar-stream: 2.2.0 zip-stream: 4.1.1 - archiver@7.0.1: - dependencies: - archiver-utils: 5.0.2 - async: 3.2.6 - buffer-crc32: 1.0.0 - readable-stream: 4.7.0 - readdir-glob: 1.1.3 - tar-stream: 3.1.7 - zip-stream: 6.0.1 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - archy@1.0.0: {} arg@4.1.3: {} @@ -10240,8 +9757,6 @@ snapshots: argparse@2.0.1: {} - arr-rotate@1.0.0: {} - array-buffer-byte-length@1.0.2: dependencies: call-bound: 1.0.4 @@ -10251,11 +9766,11 @@ snapshots: array-includes@3.1.9: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.24.1 - es-object-atoms: 1.1.1 + es-abstract: 1.24.2 + es-object-atoms: 1.1.2 get-intrinsic: 1.3.0 is-string: 1.1.1 math-intrinsics: 1.1.0 @@ -10264,34 +9779,34 @@ snapshots: array.prototype.findlastindex@1.2.6: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-errors: 1.3.0 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 es-shim-unscopables: 1.1.0 array.prototype.flat@1.3.3: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-shim-unscopables: 1.1.0 array.prototype.flatmap@1.3.3: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-shim-unscopables: 1.1.0 arraybuffer.prototype.slice@1.0.4: dependencies: array-buffer-byte-length: 1.0.2 - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-errors: 1.3.0 get-intrinsic: 1.3.0 is-array-buffer: 3.0.5 @@ -10351,27 +9866,27 @@ snapshots: uuid: 3.3.2 xml2js: 0.4.19 - axios@1.13.4: + axios@1.17.0(supports-color@8.1.1): dependencies: - follow-redirects: 1.15.11 + follow-redirects: 1.16.0 form-data: 4.0.5 - proxy-from-env: 1.1.0 + https-proxy-agent: 5.0.1(supports-color@8.1.1) + proxy-from-env: 2.1.0 transitivePeerDependencies: - debug - - b4a@1.7.3: {} + - supports-color backo2@1.0.2: {} balanced-match@1.0.2: {} - bare-events@2.8.2: {} + balanced-match@4.0.4: {} base64-js@1.5.1: {} base64-url@2.3.3: {} - baseline-browser-mapping@2.9.19: {} + baseline-browser-mapping@2.10.35: {} binary-extensions@2.3.0: {} @@ -10388,7 +9903,7 @@ snapshots: bluebird@3.7.2: {} - body-parser@1.20.4: + body-parser@1.20.5: dependencies: bytes: 3.1.2 content-type: 1.0.5 @@ -10398,33 +9913,37 @@ snapshots: http-errors: 2.0.1 iconv-lite: 0.4.24 on-finished: 2.4.1 - qs: 6.14.1 + qs: 6.15.2 raw-body: 2.5.3 type-is: 1.6.18 unpipe: 1.0.0 - brace-expansion@1.1.12: + brace-expansion@1.1.15: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - brace-expansion@2.0.2: + brace-expansion@2.1.1: dependencies: balanced-match: 1.0.2 + brace-expansion@5.0.6: + dependencies: + balanced-match: 4.0.4 + braces@3.0.3: dependencies: fill-range: 7.1.1 browser-stdout@1.3.1: {} - browserslist@4.28.1: + browserslist@4.28.2: dependencies: - baseline-browser-mapping: 2.9.19 - caniuse-lite: 1.0.30001766 - electron-to-chromium: 1.5.283 - node-releases: 2.0.27 - update-browserslist-db: 1.2.3(browserslist@4.28.1) + baseline-browser-mapping: 2.10.35 + caniuse-lite: 1.0.30001797 + electron-to-chromium: 1.5.370 + node-releases: 2.0.47 + update-browserslist-db: 1.2.3(browserslist@4.28.2) buffer-alloc-unsafe@1.1.0: {} @@ -10435,8 +9954,6 @@ snapshots: buffer-crc32@0.2.13: {} - buffer-crc32@1.0.0: {} - buffer-equal-constant-time@1.0.1: {} buffer-fill@1.0.0: {} @@ -10493,7 +10010,7 @@ snapshots: es-errors: 1.3.0 function-bind: 1.1.2 - call-bind@1.0.8: + call-bind@1.0.9: dependencies: call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 @@ -10511,7 +10028,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001766: {} + caniuse-lite@1.0.30001797: {} case@1.6.3: {} @@ -10525,54 +10042,25 @@ snapshots: mime: 2.6.0 yargs: 16.2.0 - cdktf-cli@0.21.0(ink@3.2.0(react@17.0.2))(react@17.0.2): + cdktn-cli@0.23.3(cdktn@0.23.3(constructs@10.6.0))(jsii-pacmak@1.128.0(jsii-rosetta@5.9.39))(jsii@5.9.44): dependencies: - '@cdktf/cli-core': 0.21.0(react@17.0.2) - '@cdktf/commons': 0.21.0(constructs@10.4.2) - '@cdktf/hcl-tools': 0.21.0 - '@cdktf/hcl2cdk': 0.21.0(constructs@10.4.2) - '@cdktf/hcl2json': 0.21.0 - '@inquirer/prompts': 2.3.1 - '@sentry/node': 7.120.3 - cdktf: 0.21.0(constructs@10.4.2) - ci-info: 3.9.0 - codemaker: 1.112.0 - constructs: 10.4.2 - cross-spawn: 7.0.6 - https-proxy-agent: 5.0.1(supports-color@8.1.1) - ink-select-input: 4.2.2(ink@3.2.0(react@17.0.2))(react@17.0.2) - ink-table: 3.1.0(ink@3.2.0(react@17.0.2))(react@17.0.2) - jsii: 5.8.9 - jsii-pacmak: 1.112.0(jsii-rosetta@5.8.8) - jsii-rosetta: 5.8.8 - minimatch: 5.1.6 - node-fetch: 2.7.0 - pidtree: 0.6.0 - pidusage: 3.0.2 - tunnel-agent: 0.6.0 - xml-js: 1.6.11 + '@cdktn/hcl-tools': 0.23.3 + '@cdktn/hcl2cdk': 0.23.3(constructs@10.6.0) + '@cdktn/hcl2json': 0.23.3 + '@types/node': 20.19.1 + cdktn: 0.23.3(constructs@10.6.0) + constructs: 10.6.0 + jsii: 5.9.44 + jsii-pacmak: 1.128.0(jsii-rosetta@5.9.39) yargs: 17.7.2 yoga-layout-prebuilt: 1.10.0 - zod: 3.24.4 transitivePeerDependencies: - - '@types/react' - - bare-abort-controller - - bufferutil - debug - - encoding - - ink - - react - - react-native-b4a - supports-color - - utf-8-validate - - cdktf@0.21.0(constructs@10.4.2): - dependencies: - constructs: 10.4.2 - cdktf@0.21.0(constructs@10.4.5): + cdktn@0.23.3(constructs@10.6.0): dependencies: - constructs: 10.4.5 + constructs: 10.6.0 chai-arrays@2.2.0: {} @@ -10651,8 +10139,6 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - chownr@1.1.4: {} - chownr@2.0.0: {} ci-info@2.0.0: {} @@ -10715,8 +10201,6 @@ snapshots: cli-width@3.0.0: {} - cli-width@4.1.0: {} - cliui@5.0.0: dependencies: string-width: 3.1.0 @@ -10755,7 +10239,7 @@ snapshots: dependencies: convert-to-spaces: 1.0.2 - codemaker@1.112.0: + codemaker@1.128.0: dependencies: camelcase: 6.3.0 decamelize: 5.0.1 @@ -10800,31 +10284,21 @@ snapshots: normalize-path: 3.0.0 readable-stream: 3.6.2 - compress-commons@6.0.2: - dependencies: - crc-32: 1.2.2 - crc32-stream: 6.0.0 - is-stream: 2.0.1 - normalize-path: 3.0.0 - readable-stream: 4.7.0 - concat-map@0.0.1: {} concurrently@8.2.2: dependencies: chalk: 4.1.2 date-fns: 2.30.0 - lodash: 4.17.23 + lodash: 4.18.1 rxjs: 7.8.2 - shell-quote: 1.8.3 + shell-quote: 1.8.4 spawn-command: 0.0.2 supports-color: 8.1.1 tree-kill: 1.2.2 yargs: 17.7.2 - constructs@10.4.2: {} - - constructs@10.4.5: {} + constructs@10.6.0: {} constructs@3.4.344: {} @@ -10849,7 +10323,7 @@ snapshots: copyfiles@2.4.1: dependencies: glob: 7.2.3 - minimatch: 3.1.2 + minimatch: 3.1.5 mkdirp: 1.0.4 noms: 0.0.0 through2: 2.0.5 @@ -10870,11 +10344,6 @@ snapshots: crc-32: 1.2.2 readable-stream: 3.6.2 - crc32-stream@6.0.0: - dependencies: - crc-32: 1.2.2 - readable-stream: 4.7.0 - create-require@1.1.1: {} cron-parser@4.9.0: @@ -10891,12 +10360,6 @@ snapshots: transitivePeerDependencies: - encoding - cross-fetch@3.2.0: - dependencies: - node-fetch: 2.7.0 - transitivePeerDependencies: - - encoding - cross-spawn@6.0.6: dependencies: nice-try: 1.0.5 @@ -10938,11 +10401,11 @@ snapshots: date-fns@2.30.0: dependencies: - '@babel/runtime': 7.28.6 + '@babel/runtime': 7.29.7 date-format@4.0.14: {} - dayjs@1.11.19: {} + dayjs@1.11.21: {} debug@2.6.9: dependencies: @@ -11019,7 +10482,7 @@ snapshots: deep-equal@2.2.3: dependencies: array-buffer-byte-length: 1.0.2 - call-bind: 1.0.8 + call-bind: 1.0.9 es-get-iterator: 1.1.3 get-intrinsic: 1.3.0 is-arguments: 1.2.0 @@ -11032,12 +10495,10 @@ snapshots: object-keys: 1.1.1 object.assign: 4.1.7 regexp.prototype.flags: 1.5.4 - side-channel: 1.1.0 + side-channel: 1.1.1 which-boxed-primitive: 1.1.1 which-collection: 1.0.2 - which-typed-array: 1.1.20 - - deep-extend@0.6.0: {} + which-typed-array: 1.1.22 deep-is@0.1.4: {} @@ -11045,7 +10506,7 @@ snapshots: default-browser-id@5.0.1: {} - default-browser@5.4.0: + default-browser@5.5.0: dependencies: bundle-name: 4.1.0 default-browser-id: 5.0.1 @@ -11096,13 +10557,6 @@ snapshots: detect-newline@2.1.0: {} - detect-port@1.6.1: - dependencies: - address: 1.2.2 - debug: 4.4.3(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dezalgo@1.0.4: dependencies: asap: 2.0.6 @@ -11151,7 +10605,7 @@ snapshots: ee-first@1.1.1: {} - effect@3.13.2: + effect@3.21.3: dependencies: '@standard-schema/spec': 1.1.0 fast-check: 3.23.2 @@ -11160,7 +10614,7 @@ snapshots: dependencies: jake: 10.9.4 - electron-to-chromium@1.5.283: {} + electron-to-chromium@1.5.370: {} emoji-regex@7.0.3: {} @@ -11180,19 +10634,19 @@ snapshots: dependencies: is-arrayish: 0.2.1 - es-abstract@1.24.1: + es-abstract@1.24.2: dependencies: array-buffer-byte-length: 1.0.2 arraybuffer.prototype.slice: 1.0.4 available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 data-view-buffer: 1.0.2 data-view-byte-length: 1.0.2 data-view-byte-offset: 1.0.1 es-define-property: 1.0.1 es-errors: 1.3.0 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 es-set-tostringtag: 2.1.0 es-to-primitive: 1.3.0 function.prototype.name: 1.1.8 @@ -11204,7 +10658,7 @@ snapshots: has-property-descriptors: 1.0.2 has-proto: 1.2.0 has-symbols: 1.1.0 - hasown: 2.0.2 + hasown: 2.0.4 internal-slot: 1.1.0 is-array-buffer: 3.0.5 is-callable: 1.2.7 @@ -11222,20 +10676,20 @@ snapshots: object.assign: 4.1.7 own-keys: 1.0.1 regexp.prototype.flags: 1.5.4 - safe-array-concat: 1.1.3 + safe-array-concat: 1.1.4 safe-push-apply: 1.0.0 safe-regex-test: 1.1.0 set-proto: 1.0.0 stop-iteration-iterator: 1.1.0 - string.prototype.trim: 1.2.10 - string.prototype.trimend: 1.0.9 + string.prototype.trim: 1.2.11 + string.prototype.trimend: 1.0.10 string.prototype.trimstart: 1.0.8 typed-array-buffer: 1.0.3 typed-array-byte-length: 1.0.3 typed-array-byte-offset: 1.0.4 - typed-array-length: 1.0.7 + typed-array-length: 1.0.8 unbox-primitive: 1.1.0 - which-typed-array: 1.1.20 + which-typed-array: 1.1.22 es-define-property@1.0.1: {} @@ -11243,7 +10697,7 @@ snapshots: es-get-iterator@1.1.3: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 get-intrinsic: 1.3.0 has-symbols: 1.1.0 is-arguments: 1.2.0 @@ -11253,7 +10707,7 @@ snapshots: isarray: 2.0.5 stop-iteration-iterator: 1.1.0 - es-object-atoms@1.1.1: + es-object-atoms@1.1.2: dependencies: es-errors: 1.3.0 @@ -11262,11 +10716,11 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.3.0 has-tostringtag: 1.0.2 - hasown: 2.0.2 + hasown: 2.0.4 es-shim-unscopables@1.1.0: dependencies: - hasown: 2.0.2 + hasown: 2.0.4 es-to-primitive@1.3.0: dependencies: @@ -11324,13 +10778,13 @@ snapshots: dependencies: eslint: 8.57.1 - eslint-import-resolver-node@0.3.9: + eslint-import-resolver-node@0.3.10: dependencies: debug: 3.2.7 - is-core-module: 2.16.1 - resolve: 1.22.11 + is-core-module: 2.16.2 + resolve: 2.0.0-next.7 - eslint-module-utils@2.12.1(eslint@8.57.1): + eslint-module-utils@2.13.0(eslint@8.57.1): dependencies: debug: 3.2.7 optionalDependencies: @@ -11346,17 +10800,17 @@ snapshots: debug: 3.2.7 doctrine: 2.1.0 eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(eslint@8.57.1) - hasown: 2.0.2 - is-core-module: 2.16.1 + eslint-import-resolver-node: 0.3.10 + eslint-module-utils: 2.13.0(eslint@8.57.1) + hasown: 2.0.4 + is-core-module: 2.16.2 is-glob: 4.0.3 - minimatch: 3.1.2 + minimatch: 3.1.5 object.fromentries: 2.0.8 object.groupby: 1.0.3 object.values: 1.2.1 semver: 6.3.1 - string.prototype.trimend: 1.0.9 + string.prototype.trimend: 1.0.10 tsconfig-paths: 3.15.0 eslint-plugin-prettier@3.4.0(eslint-config-prettier@8.3.0(eslint@8.57.1))(eslint@8.57.1)(prettier@2.3.0): @@ -11369,7 +10823,7 @@ snapshots: eslint-plugin-unicorn@44.0.2(eslint@8.57.1): dependencies: - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.29.7 ci-info: 3.9.0 clean-regexp: 1.0.0 eslint: 8.57.1 @@ -11377,12 +10831,12 @@ snapshots: esquery: 1.7.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 - lodash: 4.17.23 + lodash: 4.18.1 pluralize: 8.0.0 read-pkg-up: 7.0.1 regexp-tree: 0.1.27 safe-regex: 2.1.1 - semver: 7.7.3 + semver: 7.8.3 strip-indent: 3.0.0 eslint-scope@5.1.1: @@ -11412,8 +10866,8 @@ snapshots: eslint@6.8.0: dependencies: - '@babel/code-frame': 7.28.6 - ajv: 6.12.6 + '@babel/code-frame': 7.29.7 + ajv: 6.15.0 chalk: 2.4.2 cross-spawn: 6.0.6 debug: 4.4.3(supports-color@8.1.1) @@ -11436,8 +10890,8 @@ snapshots: js-yaml: 3.14.2 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.3.0 - lodash: 4.17.23 - minimatch: 3.1.2 + lodash: 4.18.1 + minimatch: 3.1.5 mkdirp: 0.5.6 natural-compare: 1.4.0 optionator: 0.8.3 @@ -11461,8 +10915,8 @@ snapshots: '@humanwhocodes/config-array': 0.13.0 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.3.0 - ajv: 6.12.6 + '@ungap/structured-clone': 1.3.1 + ajv: 6.15.0 chalk: 4.1.2 cross-spawn: 7.0.6 debug: 4.4.3(supports-color@8.1.1) @@ -11483,11 +10937,11 @@ snapshots: imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 - js-yaml: 4.1.1 + js-yaml: 4.2.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 - minimatch: 3.1.2 + minimatch: 3.1.5 natural-compare: 1.4.0 optionator: 0.9.4 strip-ansi: 6.0.1 @@ -11515,8 +10969,8 @@ snapshots: espree@9.6.1: dependencies: - acorn: 8.15.0 - acorn-jsx: 5.3.2(acorn@8.15.0) + acorn: 8.16.0 + acorn-jsx: 5.3.2(acorn@8.16.0) eslint-visitor-keys: 3.4.3 esprima@4.0.1: {} @@ -11550,12 +11004,6 @@ snapshots: eventemitter3@3.1.2: {} - events-universal@1.0.1: - dependencies: - bare-events: 2.8.2 - transitivePeerDependencies: - - bare-abort-controller - events@1.1.1: {} events@3.3.0: {} @@ -11572,27 +11020,13 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - execa@5.1.1: - dependencies: - cross-spawn: 7.0.6 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - - expand-template@2.0.3: {} - express-unless@2.1.3: {} - express@4.22.1: + express@4.22.2: dependencies: accepts: 1.3.8 array-flatten: 1.1.1 - body-parser: 1.20.4 + body-parser: 1.20.5 content-disposition: 0.5.4 content-type: 1.0.5 cookie: 0.7.2 @@ -11609,9 +11043,9 @@ snapshots: methods: 1.1.2 on-finished: 2.4.1 parseurl: 1.3.3 - path-to-regexp: 0.1.12 + path-to-regexp: 0.1.13 proxy-addr: 2.0.7 - qs: 6.14.1 + qs: 6.15.2 range-parser: 1.2.1 safe-buffer: 5.2.1 send: 0.19.2 @@ -11641,25 +11075,15 @@ snapshots: iconv-lite: 0.4.24 tmp: 0.0.33 - extract-zip@2.0.1: - dependencies: - debug: 4.4.3(supports-color@8.1.1) - get-stream: 5.2.0 - yauzl: 2.10.0 - optionalDependencies: - '@types/yauzl': 2.10.3 - transitivePeerDependencies: - - supports-color - faker@5.1.0: {} fancy-test@3.0.16: dependencies: '@types/chai': 4.2.18 - '@types/lodash': 4.17.23 - '@types/node': 20.19.30 + '@types/lodash': 4.17.24 + '@types/node': 20.19.42 '@types/sinon': 10.0.0 - lodash: 4.17.23 + lodash: 4.18.1 mock-stdin: 1.0.0 nock: 13.5.6 sinon: 16.1.3 @@ -11675,8 +11099,6 @@ snapshots: fast-diff@1.3.0: {} - fast-fifo@1.3.2: {} - fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 @@ -11691,7 +11113,7 @@ snapshots: fast-safe-stringify@2.1.1: {} - fast-uri@3.1.0: {} + fast-uri@3.1.2: {} fastest-levenshtein@1.0.16: {} @@ -11729,9 +11151,9 @@ snapshots: file-type@6.2.0: {} - filelist@1.0.4: + filelist@1.0.6: dependencies: - minimatch: 5.1.6 + minimatch: 5.1.9 filename-reserved-regex@2.0.0: {} @@ -11792,7 +11214,7 @@ snapshots: flat-cache@3.2.0: dependencies: - flatted: 3.3.3 + flatted: 3.4.2 keyv: 4.5.4 rimraf: 3.0.2 @@ -11800,11 +11222,9 @@ snapshots: flatted@2.0.2: {} - flatted@3.3.3: {} + flatted@3.4.2: {} - follow-redirects@1.15.11: {} - - follow-redirects@1.15.9: {} + follow-redirects@1.16.0: {} for-each@0.3.5: dependencies: @@ -11825,7 +11245,7 @@ snapshots: asynckit: 0.4.0 combined-stream: 1.0.8 es-set-tostringtag: 2.1.0 - hasown: 2.0.2 + hasown: 2.0.4 mime-types: 2.1.35 formidable@2.1.5: @@ -11833,7 +11253,7 @@ snapshots: '@paralleldrive/cuid2': 2.3.1 dezalgo: 1.0.4 once: 1.4.0 - qs: 6.14.1 + qs: 6.15.2 forwarded@0.2.0: {} @@ -11848,19 +11268,19 @@ 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.0: + 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@11.3.3: + fs-extra@11.3.5: dependencies: graceful-fs: 4.2.11 - jsonfile: 6.2.0 + jsonfile: 6.2.1 universalify: 2.0.1 fs-extra@8.1.0: @@ -11873,7 +11293,7 @@ snapshots: dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 - jsonfile: 6.2.0 + jsonfile: 6.2.1 universalify: 2.0.1 fs-minipass@2.1.0: @@ -11903,11 +11323,11 @@ snapshots: function.prototype.name@1.1.8: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 functions-have-names: 1.2.3 - hasown: 2.0.2 + hasown: 2.0.4 is-callable: 1.2.7 functional-red-black-tree@1.0.1: {} @@ -11927,12 +11347,12 @@ snapshots: call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 es-errors: 1.3.0 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 function-bind: 1.1.2 get-proto: 1.0.1 gopd: 1.2.0 has-symbols: 1.1.0 - hasown: 2.0.2 + hasown: 2.0.4 math-intrinsics: 1.1.0 get-package-type@0.1.0: {} @@ -11940,7 +11360,7 @@ snapshots: get-proto@1.0.1: dependencies: dunder-proto: 1.0.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 get-stdin@6.0.0: {} @@ -11953,7 +11373,7 @@ snapshots: get-stream@5.2.0: dependencies: - pump: 3.0.3 + pump: 3.0.4 get-stream@6.0.1: {} @@ -11963,8 +11383,6 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.3.0 - github-from-package@0.0.0: {} - glob-parent@5.1.2: dependencies: is-glob: 4.0.3 @@ -11977,23 +11395,23 @@ snapshots: dependencies: foreground-child: 3.3.1 jackspeak: 3.4.3 - minimatch: 9.0.5 - minipass: 7.1.2 + minimatch: 9.0.9 + minipass: 7.1.3 package-json-from-dist: 1.0.1 path-scurry: 1.11.1 - glob@13.0.0: + glob@13.0.6: dependencies: - minimatch: 10.1.1 - minipass: 7.1.2 - path-scurry: 2.0.1 + minimatch: 10.2.5 + minipass: 7.1.3 + path-scurry: 2.0.2 glob@7.2.0: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.1.5 once: 1.4.0 path-is-absolute: 1.0.1 @@ -12002,7 +11420,7 @@ snapshots: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.1.5 once: 1.4.0 path-is-absolute: 1.0.1 @@ -12056,7 +11474,7 @@ snapshots: graphlib@2.1.8: dependencies: - lodash: 4.17.23 + lodash: 4.18.1 graphology-types@0.24.7: {} @@ -12067,22 +11485,22 @@ snapshots: events: 3.3.0 graphology-types: 0.24.7 - graphql-scalars@1.25.0(graphql@16.12.0): + graphql-scalars@1.25.0(graphql@16.14.2): dependencies: - graphql: 16.12.0 + graphql: 16.14.2 tslib: 2.8.1 - graphql-subscriptions@2.0.0(graphql@16.12.0): + graphql-subscriptions@2.0.0(graphql@16.14.2): dependencies: - graphql: 16.12.0 + graphql: 16.14.2 iterall: 1.3.0 - graphql-tag@2.12.6(graphql@16.12.0): + graphql-tag@2.12.6(graphql@16.14.2): dependencies: - graphql: 16.12.0 + graphql: 16.14.2 tslib: 2.8.1 - graphql@16.12.0: {} + graphql@16.14.2: {} has-bigints@1.1.0: {} @@ -12109,7 +11527,7 @@ snapshots: is-stream: 2.0.1 type-fest: 0.8.1 - hasown@2.0.2: + hasown@2.0.4: dependencies: function-bind: 1.1.2 @@ -12159,8 +11577,6 @@ snapshots: transitivePeerDependencies: - supports-color - human-signals@2.1.0: {} - iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 @@ -12197,37 +11613,8 @@ snapshots: inherits@2.0.4: {} - ini@1.3.8: {} - ini@4.1.3: {} - ink-select-input@4.2.2(ink@3.2.0(react@17.0.2))(react@17.0.2): - dependencies: - arr-rotate: 1.0.0 - figures: 3.2.0 - ink: 3.2.0(react@17.0.2) - lodash.isequal: 4.5.0 - react: 17.0.2 - - ink-spinner@4.0.3(ink@3.2.0(react@17.0.2))(react@17.0.2): - dependencies: - cli-spinners: 2.9.2 - ink: 3.2.0(react@17.0.2) - react: 17.0.2 - - ink-table@3.1.0(ink@3.2.0(react@17.0.2))(react@17.0.2): - dependencies: - ink: 3.2.0(react@17.0.2) - object-hash: 2.2.0 - react: 17.0.2 - - ink-testing-library@2.1.0: {} - - ink-use-stdout-dimensions@1.0.5(ink@3.2.0(react@17.0.2))(react@17.0.2): - dependencies: - ink: 3.2.0(react@17.0.2) - react: 17.0.2 - ink@3.2.0(react@17.0.2): dependencies: ansi-escapes: 4.3.2 @@ -12239,7 +11626,7 @@ snapshots: code-excerpt: 3.0.0 indent-string: 4.0.0 is-ci: 2.0.0 - lodash: 4.17.23 + lodash: 4.18.1 patch-console: 1.0.0 react: 17.0.2 react-devtools-core: 4.28.5 @@ -12252,7 +11639,7 @@ snapshots: type-fest: 0.12.0 widest-line: 3.1.0 wrap-ansi: 6.2.0 - ws: 7.5.10 + ws: 7.5.11 yoga-layout-prebuilt: 1.10.0 transitivePeerDependencies: - bufferutil @@ -12266,7 +11653,7 @@ snapshots: cli-width: 3.0.0 external-editor: 3.1.0 figures: 3.2.0 - lodash: 4.17.23 + lodash: 4.18.1 mute-stream: 0.0.8 run-async: 2.4.1 rxjs: 6.6.7 @@ -12274,15 +11661,15 @@ snapshots: strip-ansi: 6.0.1 through: 2.3.8 - inquirer@8.2.7(@types/node@20.19.30): + inquirer@8.2.7(@types/node@20.19.42): dependencies: - '@inquirer/external-editor': 1.0.3(@types/node@20.19.30) + '@inquirer/external-editor': 1.0.3(@types/node@20.19.42) ansi-escapes: 4.3.2 chalk: 4.1.2 cli-cursor: 3.1.0 cli-width: 3.0.0 figures: 3.2.0 - lodash: 4.17.23 + lodash: 4.18.1 mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 @@ -12297,8 +11684,8 @@ snapshots: internal-slot@1.1.0: dependencies: es-errors: 1.3.0 - hasown: 2.0.2 - side-channel: 1.1.0 + hasown: 2.0.4 + side-channel: 1.1.1 ipaddr.js@1.9.1: {} @@ -12309,7 +11696,7 @@ snapshots: is-array-buffer@3.0.5: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 get-intrinsic: 1.3.0 @@ -12350,9 +11737,9 @@ snapshots: dependencies: ci-info: 2.0.0 - is-core-module@2.16.1: + is-core-module@2.16.2: dependencies: - hasown: 2.0.2 + hasown: 2.0.4 is-data-view@1.0.2: dependencies: @@ -12423,7 +11810,7 @@ snapshots: call-bound: 1.0.4 gopd: 1.2.0 has-tostringtag: 1.0.2 - hasown: 2.0.2 + hasown: 2.0.4 is-set@2.0.3: {} @@ -12448,7 +11835,7 @@ snapshots: is-typed-array@1.1.15: dependencies: - which-typed-array: 1.1.20 + which-typed-array: 1.1.22 is-typedarray@1.0.0: {} @@ -12471,7 +11858,7 @@ snapshots: dependencies: is-docker: 2.2.1 - is-wsl@3.1.0: + is-wsl@3.1.1: dependencies: is-inside-container: 1.0.0 @@ -12483,11 +11870,11 @@ snapshots: isexe@2.0.0: {} - isexe@3.1.1: {} + isexe@3.1.5: {} - isomorphic-ws@4.0.1(ws@7.5.10): + isomorphic-ws@4.0.1(ws@7.5.11): dependencies: - ws: 7.5.10 + ws: 7.5.11 istanbul-lib-coverage@3.2.2: {} @@ -12497,8 +11884,8 @@ snapshots: istanbul-lib-instrument@4.0.3: dependencies: - '@babel/core': 7.28.6 - '@istanbuljs/schema': 0.1.3 + '@babel/core': 7.29.7 + '@istanbuljs/schema': 0.1.6 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: @@ -12543,7 +11930,7 @@ snapshots: jake@10.9.4: dependencies: async: 3.2.6 - filelist: 1.0.4 + filelist: 1.0.6 picocolors: 1.1.1 jmespath@0.15.0: {} @@ -12559,72 +11946,85 @@ snapshots: argparse: 1.0.10 esprima: 4.0.1 - js-yaml@4.1.0: - dependencies: - argparse: 2.0.1 - - js-yaml@4.1.1: + js-yaml@4.2.0: dependencies: argparse: 2.0.1 jsesc@3.1.0: {} - jsii-pacmak@1.112.0(jsii-rosetta@5.8.8): + jsii-pacmak@1.128.0(jsii-rosetta@5.9.39): dependencies: - '@jsii/check-node': 1.112.0 - '@jsii/spec': 1.126.0 + '@jsii/check-node': 1.128.0 + '@jsii/spec': 1.128.0 clone: 2.1.2 - codemaker: 1.112.0 + codemaker: 1.128.0 commonmark: 0.31.2 escape-string-regexp: 4.0.0 fs-extra: 10.1.0 - jsii-reflect: 1.126.0 - jsii-rosetta: 5.8.8 - semver: 7.7.3 + jsii-reflect: 1.134.0 + jsii-rosetta: 5.9.39 + semver: 7.8.3 spdx-license-list: 6.11.0 xmlbuilder: 15.1.1 - yargs: 16.2.0 + yargs: 17.7.2 - jsii-reflect@1.126.0: + jsii-reflect@1.134.0: dependencies: - '@jsii/check-node': 1.126.0 - '@jsii/spec': 1.126.0 + '@jsii/check-node': 1.134.0 + '@jsii/spec': 1.134.0 chalk: 4.1.2 fs-extra: 10.1.0 - oo-ascii-tree: 1.126.0 + oo-ascii-tree: 1.134.0 yargs: 17.7.2 - jsii-rosetta@5.8.8: + jsii-rosetta@5.9.39: dependencies: - '@jsii/check-node': 1.112.0 - '@jsii/spec': 1.126.0 - '@xmldom/xmldom': 0.9.8 + '@jsii/check-node': 1.134.0 + '@jsii/spec': 1.134.0 + '@xmldom/xmldom': 0.9.10 chalk: 4.1.2 commonmark: 0.31.2 fast-glob: 3.3.3 - jsii: 5.8.9 - semver: 7.7.3 + jsii: 5.9.44 + semver: 7.8.3 semver-intersect: 1.5.0 stream-json: 1.9.1 - typescript: 5.8.3 + typescript: 5.9.3 workerpool: 6.5.1 yargs: 17.7.2 transitivePeerDependencies: - supports-color - jsii@5.8.9: + jsii@5.9.43: dependencies: - '@jsii/check-node': 1.112.0 - '@jsii/spec': 1.126.0 + '@jsii/check-node': 1.132.0 + '@jsii/spec': 1.132.0 case: 1.6.3 chalk: 4.1.2 fast-deep-equal: 3.1.3 log4js: 6.9.1 - semver: 7.7.3 + semver: 7.8.3 semver-intersect: 1.5.0 sort-json: 2.0.1 spdx-license-list: 6.11.0 - typescript: 5.8.3 + typescript: 5.9.3 + yargs: 17.7.2 + transitivePeerDependencies: + - supports-color + + jsii@5.9.44: + dependencies: + '@jsii/check-node': 1.132.0 + '@jsii/spec': 1.132.0 + case: 1.6.3 + chalk: 4.1.2 + fast-deep-equal: 3.1.3 + log4js: 6.9.1 + semver: 7.8.3 + semver-intersect: 1.5.0 + sort-json: 2.0.1 + spdx-license-list: 6.11.0 + typescript: 5.9.3 yargs: 17.7.2 transitivePeerDependencies: - supports-color @@ -12640,7 +12040,7 @@ snapshots: commander: 4.1.1 graphlib: 2.1.8 js-yaml: 3.14.2 - lodash: 4.17.23 + lodash: 4.18.1 native-promise-only: 0.8.1 path-loader: 1.0.12(supports-color@8.1.1) slash: 3.0.0 @@ -12666,7 +12066,7 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 - jsonfile@6.2.0: + jsonfile@6.2.1: dependencies: universalify: 2.0.1 optionalDependencies: @@ -12683,7 +12083,7 @@ snapshots: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.7.3 + semver: 7.8.3 jssha@3.3.1: {} @@ -12791,8 +12191,6 @@ snapshots: lodash.isboolean@3.0.3: {} - lodash.isequal@4.5.0: {} - lodash.isinteger@4.0.4: {} lodash.isnumber@3.0.3: {} @@ -12809,7 +12207,7 @@ snapshots: lodash.union@4.6.0: {} - lodash@4.17.23: {} + lodash@4.18.1: {} log-node@8.0.3(log@6.3.2): dependencies: @@ -12836,7 +12234,7 @@ snapshots: dependencies: date-format: 4.0.14 debug: 4.4.3(supports-color@8.1.1) - flatted: 3.3.3 + flatted: 3.4.2 rfdc: 1.4.1 streamroller: 3.1.5 transitivePeerDependencies: @@ -12854,8 +12252,6 @@ snapshots: long-timeout@0.1.1: {} - long@4.0.0: {} - loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 @@ -12864,7 +12260,7 @@ snapshots: lru-cache@10.4.3: {} - lru-cache@11.2.5: {} + lru-cache@11.5.1: {} lru-cache@5.1.1: dependencies: @@ -12895,7 +12291,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.7.3 + semver: 7.8.3 make-error@1.3.6: {} @@ -12933,7 +12329,7 @@ snapshots: micromatch@4.0.8: dependencies: braces: 3.0.3 - picomatch: 2.3.1 + picomatch: 2.3.2 mime-db@1.52.0: {} @@ -12959,25 +12355,21 @@ snapshots: min-indent@1.0.1: {} - minimatch@10.1.1: + minimatch@10.2.5: dependencies: - '@isaacs/brace-expansion': 5.0.0 + brace-expansion: 5.0.6 - minimatch@3.1.2: + minimatch@3.1.5: dependencies: - brace-expansion: 1.1.12 + brace-expansion: 1.1.15 - minimatch@5.0.1: + minimatch@5.1.9: dependencies: - brace-expansion: 2.0.2 + brace-expansion: 2.1.1 - minimatch@5.1.6: + minimatch@9.0.9: dependencies: - brace-expansion: 2.0.2 - - minimatch@9.0.5: - dependencies: - brace-expansion: 2.0.2 + brace-expansion: 2.1.1 minimist@1.2.8: {} @@ -12987,15 +12379,13 @@ snapshots: minipass@5.0.0: {} - minipass@7.1.2: {} + minipass@7.1.3: {} minizlib@2.1.2: dependencies: minipass: 3.3.6 yallist: 4.0.0 - mkdirp-classic@0.5.3: {} - mkdirp@0.5.6: dependencies: minimist: 1.2.8 @@ -13015,12 +12405,12 @@ snapshots: find-up: 5.0.0 glob: 7.2.0 he: 1.2.0 - js-yaml: 4.1.0 + js-yaml: 4.2.0 log-symbols: 4.1.0 - minimatch: 5.0.1 + minimatch: 5.1.9 ms: 2.1.3 - nanoid: 3.3.3 - serialize-javascript: 6.0.0 + nanoid: 3.3.12 + serialize-javascript: 6.0.2 strip-json-comments: 3.1.1 supports-color: 8.1.1 workerpool: 6.2.1 @@ -13033,7 +12423,7 @@ snapshots: base64-url: 2.3.3 jsonwebtoken: 9.0.2 nock: 11.8.2 - node-forge: 1.3.3 + node-forge: 1.4.0 node-rsa: 1.1.1 mock-stdin@1.0.0: {} @@ -13050,15 +12440,7 @@ snapshots: mute-stream@0.0.8: {} - mute-stream@1.0.0: {} - - nan@2.25.0: {} - - nanoid@3.3.11: {} - - nanoid@3.3.3: {} - - napi-build-utils@2.0.0: {} + nanoid@3.3.12: {} native-promise-only@0.8.1: {} @@ -13081,7 +12463,7 @@ snapshots: dependencies: debug: 3.2.7 iconv-lite: 0.4.24 - sax: 1.4.4 + sax: 1.6.0 negotiator@0.6.3: {} @@ -13109,7 +12491,7 @@ snapshots: dependencies: debug: 4.4.3(supports-color@8.1.1) json-stringify-safe: 5.0.1 - lodash: 4.17.23 + lodash: 4.18.1 mkdirp: 0.5.6 propagate: 2.0.1 transitivePeerDependencies: @@ -13123,15 +12505,18 @@ snapshots: transitivePeerDependencies: - supports-color - node-abi@3.87.0: - dependencies: - semver: 7.7.2 - node-addon-api@7.1.1: {} node-dir@0.1.17: dependencies: - minimatch: 3.1.2 + minimatch: 3.1.5 + + node-exports-info@1.6.0: + dependencies: + array.prototype.flatmap: 1.3.3 + es-errors: 1.3.0 + object.entries: 1.1.9 + semver: 6.3.1 node-fetch@2.6.7: dependencies: @@ -13141,13 +12526,13 @@ snapshots: dependencies: whatwg-url: 5.0.0 - node-forge@1.3.3: {} + node-forge@1.4.0: {} node-preload@0.2.1: dependencies: process-on-spawn: 1.1.0 - node-releases@2.0.27: {} + node-releases@2.0.47: {} node-rsa@1.1.1: dependencies: @@ -13167,7 +12552,7 @@ snapshots: normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.11 + resolve: 1.22.12 semver: 5.7.2 validate-npm-package-license: 3.0.4 @@ -13181,7 +12566,7 @@ snapshots: fs2: 0.3.16 memoizee: 0.4.17 node-fetch: 2.7.0 - semver: 7.7.3 + semver: 7.8.3 type: 2.7.3 validate-npm-package-name: 3.0.0 transitivePeerDependencies: @@ -13191,14 +12576,10 @@ snapshots: dependencies: path-key: 3.1.1 - npm-run-path@4.0.1: - dependencies: - path-key: 3.1.1 - nyc@15.1.0: dependencies: '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 + '@istanbuljs/schema': 0.1.6 caching-transform: 4.0.0 convert-source-map: 1.9.0 decamelize: 1.2.0 @@ -13235,39 +12616,46 @@ snapshots: object-is@1.1.6: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 object-keys@1.1.1: {} object.assign@4.1.7: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 has-symbols: 1.1.0 object-keys: 1.1.1 + object.entries@1.1.9: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.2 + object.fromentries@2.0.8: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 - es-object-atoms: 1.1.1 + es-abstract: 1.24.2 + es-object-atoms: 1.1.2 object.groupby@1.0.3: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 object.values@1.2.1: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 on-finished@2.4.1: dependencies: @@ -13285,11 +12673,11 @@ snapshots: dependencies: mimic-fn: 2.1.0 - oo-ascii-tree@1.126.0: {} + oo-ascii-tree@1.134.0: {} open@10.2.0: dependencies: - default-browser: 5.4.0 + default-browser: 5.5.0 define-lazy-prop: 3.0.0 is-inside-container: 1.0.0 wsl-utils: 0.1.0 @@ -13412,11 +12800,9 @@ snapshots: dependencies: callsites: 3.1.0 - parse-gitignore@1.0.1: {} - parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.28.6 + '@babel/code-frame': 7.29.7 error-ex: 1.3.4 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -13449,14 +12835,14 @@ snapshots: path-scurry@1.11.1: dependencies: lru-cache: 10.4.3 - minipass: 7.1.2 + minipass: 7.1.3 - path-scurry@2.0.1: + path-scurry@2.0.2: dependencies: - lru-cache: 11.2.5 - minipass: 7.1.2 + lru-cache: 11.5.1 + minipass: 7.1.3 - path-to-regexp@0.1.12: {} + path-to-regexp@0.1.13: {} path-to-regexp@1.9.0: dependencies: @@ -13476,15 +12862,9 @@ snapshots: picocolors@1.1.1: {} - picomatch@2.3.1: {} + picomatch@2.3.2: {} - picomatch@4.0.3: {} - - pidtree@0.6.0: {} - - pidusage@3.0.2: - dependencies: - safe-buffer: 5.2.1 + picomatch@4.0.4: {} pify@2.3.0: {} @@ -13500,29 +12880,10 @@ snapshots: dependencies: find-up: 4.1.0 - pkg-up@3.1.0: - dependencies: - find-up: 3.0.0 - pluralize@8.0.0: {} possible-typed-array-names@1.1.0: {} - prebuild-install@7.1.3: - dependencies: - detect-libc: 2.1.2 - expand-template: 2.0.3 - github-from-package: 0.0.0 - minimist: 1.2.8 - mkdirp-classic: 0.5.3 - napi-build-utils: 2.0.0 - node-abi: 3.87.0 - pump: 3.0.3 - rc: 1.2.8 - simple-get: 4.0.1 - tar-fs: 2.1.4 - tunnel-agent: 0.6.0 - prelude-ls@1.1.2: {} prelude-ls@1.2.1: {} @@ -13573,9 +12934,9 @@ snapshots: forwarded: 0.2.0 ipaddr.js: 1.9.1 - proxy-from-env@1.1.0: {} + proxy-from-env@2.1.0: {} - pump@3.0.3: + pump@3.0.4: dependencies: end-of-stream: 1.4.5 once: 1.4.0 @@ -13586,9 +12947,9 @@ snapshots: pure-rand@6.1.0: {} - qs@6.14.1: + qs@6.15.2: dependencies: - side-channel: 1.1.0 + side-channel: 1.1.1 querystring@0.2.0: {} @@ -13611,17 +12972,10 @@ snapshots: iconv-lite: 0.4.24 unpipe: 1.0.0 - rc@1.2.8: - dependencies: - deep-extend: 0.6.0 - ini: 1.3.8 - minimist: 1.2.8 - strip-json-comments: 2.0.1 - react-devtools-core@4.28.5: dependencies: - shell-quote: 1.8.3 - ws: 7.5.10 + shell-quote: 1.8.4 + ws: 7.5.11 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -13694,21 +13048,21 @@ snapshots: readdir-glob@1.1.3: dependencies: - minimatch: 5.1.6 + minimatch: 5.1.9 readdirp@3.6.0: dependencies: - picomatch: 2.3.1 + picomatch: 2.3.2 reflect-metadata@0.1.13: {} reflect.getprototypeof@1.0.10: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-errors: 1.3.0 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 get-intrinsic: 1.3.0 get-proto: 1.0.1 which-builtin-type: 1.2.1 @@ -13717,7 +13071,7 @@ snapshots: regexp.prototype.flags@1.5.4: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 es-errors: 1.3.0 get-proto: 1.0.1 @@ -13744,9 +13098,19 @@ snapshots: resolve-from@5.0.0: {} - resolve@1.22.11: + resolve@1.22.12: dependencies: - is-core-module: 2.16.1 + es-errors: 1.3.0 + is-core-module: 2.16.2 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + resolve@2.0.0-next.7: + dependencies: + es-errors: 1.3.0 + is-core-module: 2.16.2 + node-exports-info: 1.6.0 + object-keys: 1.1.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -13779,12 +13143,12 @@ snapshots: rhea-promise@3.0.3: dependencies: debug: 4.4.3(supports-color@8.1.1) - rhea: 3.0.4 + rhea: 3.0.5 tslib: 2.8.1 transitivePeerDependencies: - supports-color - rhea@3.0.4: + rhea@3.0.5: dependencies: debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: @@ -13810,8 +13174,6 @@ snapshots: run-async@2.4.1: {} - run-async@3.0.0: {} - run-parallel-limit@1.1.0: dependencies: queue-microtask: 1.2.3 @@ -13828,9 +13190,9 @@ snapshots: dependencies: tslib: 2.8.1 - safe-array-concat@1.1.3: + safe-array-concat@1.1.4: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 get-intrinsic: 1.3.0 has-symbols: 1.1.0 @@ -13859,7 +13221,7 @@ snapshots: sax@1.2.1: {} - sax@1.4.4: {} + sax@1.6.0: {} scheduler@0.20.2: dependencies: @@ -13880,9 +13242,7 @@ snapshots: semver@6.3.1: {} - semver@7.7.2: {} - - semver@7.7.3: {} + semver@7.8.3: {} send@0.19.2: dependencies: @@ -13900,7 +13260,7 @@ snapshots: range-parser: 1.2.1 statuses: 2.0.2 - serialize-javascript@6.0.0: + serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 @@ -13913,7 +13273,7 @@ snapshots: serverless-artillery@0.5.2: dependencies: - ajv: 6.12.6 + ajv: 6.15.0 aws-sdk: 2.853.0 bluebird: 3.7.2 diff: 3.5.1 @@ -13927,12 +13287,12 @@ snapshots: transitivePeerDependencies: - encoding - serverless@3.8.0(@types/node@20.19.30): + serverless@3.8.0(@types/node@20.19.42): dependencies: - '@serverless/dashboard-plugin': 6.4.0(@types/node@20.19.30)(supports-color@8.1.1) + '@serverless/dashboard-plugin': 6.4.0(@types/node@20.19.42)(supports-color@8.1.1) '@serverless/platform-client': 4.5.1(supports-color@8.1.1) - '@serverless/utils': 6.15.0(@types/node@20.19.30) - ajv: 8.17.1 + '@serverless/utils': 6.15.0(@types/node@20.19.42) + ajv: 8.20.0 ajv-formats: 2.1.1 archiver: 5.3.0 aws-sdk: 2.1693.0 @@ -13943,7 +13303,7 @@ snapshots: ci-info: 3.9.0 cli-progress-footer: 2.3.3 d: 1.0.2 - dayjs: 1.11.19 + dayjs: 1.11.21 decompress: 4.2.1 dotenv: 10.0.0 dotenv-expand: 5.1.0 @@ -13958,10 +13318,10 @@ snapshots: graceful-fs: 4.2.11 https-proxy-agent: 5.0.1(supports-color@8.1.1) is-docker: 2.2.1 - js-yaml: 4.1.1 + js-yaml: 4.2.0 json-cycle: 1.5.0 json-refs: 3.0.15(supports-color@8.1.1) - lodash: 4.17.23 + lodash: 4.18.1 memoizee: 0.4.17 micromatch: 4.0.8 node-fetch: 2.7.0 @@ -13972,7 +13332,7 @@ snapshots: process-utils: 4.0.0 promise-queue: 2.2.5 require-from-string: 2.0.2 - semver: 7.7.3 + semver: 7.8.3 signal-exit: 3.0.7 strip-ansi: 6.0.1 supports-color: 8.1.1 @@ -14011,7 +13371,7 @@ snapshots: dependencies: dunder-proto: 1.0.1 es-errors: 1.3.0 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 setimmediate@1.0.5: {} @@ -14029,13 +13389,13 @@ snapshots: shebang-regex@3.0.0: {} - shell-quote@1.8.3: {} + shell-quote@1.8.4: {} shortid@2.2.17: dependencies: - nanoid: 3.3.11 + nanoid: 3.3.12 - side-channel-list@1.0.0: + side-channel-list@1.0.1: dependencies: es-errors: 1.3.0 object-inspect: 1.13.4 @@ -14055,11 +13415,11 @@ snapshots: object-inspect: 1.13.4 side-channel-map: 1.0.1 - side-channel@1.1.0: + side-channel@1.1.1: dependencies: es-errors: 1.3.0 object-inspect: 1.13.4 - side-channel-list: 1.0.0 + side-channel-list: 1.0.1 side-channel-map: 1.0.1 side-channel-weakmap: 1.0.2 @@ -14067,18 +13427,12 @@ snapshots: signal-exit@4.1.0: {} - simple-concat@1.0.1: {} - - simple-get@4.0.1: - dependencies: - decompress-response: 6.0.0 - once: 1.4.0 - simple-concat: 1.0.1 - - simple-git@3.30.0(supports-color@8.1.1): + simple-git@3.36.0(supports-color@8.1.1): dependencies: '@kwsites/file-exists': 1.1.1(supports-color@8.1.1) '@kwsites/promise-deferred': 1.1.1 + '@simple-git/args-pathspec': 1.0.3 + '@simple-git/argv-parser': 1.1.1 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -14162,16 +13516,16 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.22 + spdx-license-ids: 3.0.23 spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.22 + spdx-license-ids: 3.0.23 - spdx-license-ids@3.0.22: {} + spdx-license-ids@3.0.23: {} spdx-license-list@6.11.0: {} @@ -14185,8 +13539,6 @@ snapshots: dependencies: es5-ext: 0.10.64 - sscaff@1.2.274: {} - stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 @@ -14205,8 +13557,6 @@ snapshots: es-errors: 1.3.0 internal-slot: 1.1.0 - stream-buffers@3.0.3: {} - stream-chain@2.2.5: {} stream-json@1.9.1: @@ -14227,15 +13577,6 @@ snapshots: transitivePeerDependencies: - supports-color - streamx@2.23.0: - dependencies: - events-universal: 1.0.1 - fast-fifo: 1.3.2 - text-decoder: 1.2.3 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - string-width@3.1.0: dependencies: emoji-regex: 7.0.3 @@ -14254,28 +13595,29 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.2.0 - string.prototype.trim@1.2.10: + string.prototype.trim@1.2.11: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.24.1 - es-object-atoms: 1.1.1 + es-abstract: 1.24.2 + es-object-atoms: 1.1.2 has-property-descriptors: 1.0.2 + safe-regex-test: 1.1.0 - string.prototype.trimend@1.0.9: + string.prototype.trimend@1.0.10: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 string.prototype.trimstart@1.0.8: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 string_decoder@0.10.31: {} @@ -14313,8 +13655,6 @@ snapshots: dependencies: min-indent: 1.0.1 - strip-json-comments@2.0.1: {} - strip-json-comments@3.1.1: {} strip-outer@1.0.1: @@ -14326,14 +13666,14 @@ snapshots: '@tokenizer/token': 0.3.0 peek-readable: 4.1.0 - subscriptions-transport-ws@0.11.0(graphql@16.12.0): + subscriptions-transport-ws@0.11.0(graphql@16.14.2): dependencies: backo2: 1.0.2 eventemitter3: 3.1.2 - graphql: 16.12.0 + graphql: 16.14.2 iterall: 1.3.0 symbol-observable: 1.2.0 - ws: 7.5.10 + ws: 7.5.11 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -14348,9 +13688,9 @@ snapshots: formidable: 2.1.5 methods: 1.1.2 mime: 2.6.0 - qs: 6.14.1 + qs: 6.15.2 readable-stream: 3.6.2 - semver: 7.7.3 + semver: 7.8.3 transitivePeerDependencies: - supports-color @@ -14378,26 +13718,19 @@ snapshots: table@5.4.6: dependencies: - ajv: 6.12.6 - lodash: 4.17.23 + ajv: 6.15.0 + lodash: 4.18.1 slice-ansi: 2.1.0 string-width: 3.1.0 table@6.9.0: dependencies: - ajv: 8.17.1 + ajv: 8.20.0 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 strip-ansi: 6.0.1 - tar-fs@2.1.4: - dependencies: - chownr: 1.1.4 - mkdirp-classic: 0.5.3 - pump: 3.0.3 - tar-stream: 2.2.0 - tar-stream@1.6.2: dependencies: bl: 1.2.3 @@ -14416,15 +13749,6 @@ snapshots: inherits: 2.0.4 readable-stream: 3.6.2 - tar-stream@3.1.7: - dependencies: - b4a: 1.7.3 - fast-fifo: 1.3.2 - streamx: 2.23.0 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - tar@6.2.1: dependencies: chownr: 2.0.0 @@ -14436,15 +13760,9 @@ snapshots: test-exclude@6.0.0: dependencies: - '@istanbuljs/schema': 0.1.3 + '@istanbuljs/schema': 0.1.6 glob: 7.2.3 - minimatch: 3.1.2 - - text-decoder@1.2.3: - dependencies: - b4a: 1.7.3 - transitivePeerDependencies: - - react-native-b4a + minimatch: 3.1.5 text-table@0.2.0: {} @@ -14491,7 +13809,7 @@ snapshots: dependencies: gopd: 1.2.0 typedarray.prototype.slice: 1.0.5 - which-typed-array: 1.1.20 + which-typed-array: 1.1.22 tree-kill@1.2.2: {} @@ -14508,16 +13826,16 @@ snapshots: '@ts-morph/common': 0.26.1 code-block-writer: 13.0.3 - ts-node@10.9.2(@types/node@20.19.30)(typescript@5.7.3): + ts-node@10.9.2(@types/node@20.19.42)(typescript@5.7.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.12 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.19.30 - acorn: 8.15.0 - acorn-walk: 8.3.4 + '@types/node': 20.19.42 + acorn: 8.16.0 + acorn-walk: 8.3.5 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.4 @@ -14531,8 +13849,8 @@ snapshots: chalk: 4.1.2 global-prefix: 4.0.0 minimist: 1.2.8 - resolve: 1.22.11 - semver: 7.7.3 + resolve: 1.22.12 + semver: 7.8.3 strip-ansi: 6.0.1 tsconfig-paths@3.15.0: @@ -14551,10 +13869,6 @@ snapshots: tslib: 1.14.1 typescript: 5.7.3 - tunnel-agent@0.6.0: - dependencies: - safe-buffer: 5.2.1 - type-check@0.3.2: dependencies: prelude-ls: 1.1.2 @@ -14592,7 +13906,7 @@ snapshots: typed-array-byte-length@1.0.3: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 has-proto: 1.2.0 @@ -14601,16 +13915,16 @@ snapshots: typed-array-byte-offset@1.0.4: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 has-proto: 1.2.0 is-typed-array: 1.1.15 reflect.getprototypeof: 1.0.10 - typed-array-length@1.0.7: + typed-array-length@1.0.8: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 is-typed-array: 1.1.15 @@ -14623,9 +13937,9 @@ snapshots: typedarray.prototype.slice@1.0.5: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-errors: 1.3.0 get-proto: 1.0.1 math-intrinsics: 1.1.0 @@ -14634,7 +13948,7 @@ snapshots: typescript@5.7.3: {} - typescript@5.8.3: {} + typescript@5.9.3: {} unbox-primitive@1.1.0: dependencies: @@ -14648,11 +13962,9 @@ snapshots: buffer: 5.7.1 through: 2.3.8 - undici-types@5.26.5: {} - undici-types@6.21.0: {} - undici@7.19.2: {} + undici@7.27.2: {} uni-global@1.0.0: dependencies: @@ -14666,9 +13978,9 @@ snapshots: untildify@4.0.0: {} - update-browserslist-db@1.2.3(browserslist@4.28.1): + update-browserslist-db@1.2.3(browserslist@4.28.2): dependencies: - browserslist: 4.28.1 + browserslist: 4.28.2 escalade: 3.2.0 picocolors: 1.1.1 @@ -14689,11 +14001,11 @@ snapshots: is-arguments: 1.2.0 is-generator-function: 1.1.2 is-typed-array: 1.1.15 - which-typed-array: 1.1.20 + which-typed-array: 1.1.22 utils-merge@1.0.1: {} - uuid@11.0.5: {} + uuid@11.1.1: {} uuid@3.3.2: {} @@ -14716,13 +14028,13 @@ snapshots: dependencies: builtins: 1.0.3 - validator@13.15.0: {} - validator@13.15.26: {} + validator@13.15.35: {} + vary@1.1.2: {} - velocityjs@2.1.5: + velocityjs@2.1.6: dependencies: debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: @@ -14763,7 +14075,7 @@ snapshots: isarray: 2.0.5 which-boxed-primitive: 1.1.1 which-collection: 1.0.2 - which-typed-array: 1.1.20 + which-typed-array: 1.1.22 which-collection@1.0.2: dependencies: @@ -14774,10 +14086,10 @@ snapshots: which-module@2.0.1: {} - which-typed-array@1.1.20: + which-typed-array@1.1.22: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 for-each: 0.3.5 get-proto: 1.0.1 @@ -14794,7 +14106,7 @@ snapshots: which@4.0.0: dependencies: - isexe: 3.1.1 + isexe: 3.1.5 widest-line@3.1.0: dependencies: @@ -14850,17 +14162,13 @@ snapshots: dependencies: mkdirp: 0.5.6 - ws@7.5.10: {} + ws@7.5.11: {} - ws@8.18.0: {} + ws@8.21.0: {} wsl-utils@0.1.0: dependencies: - is-wsl: 3.1.0 - - xml-js@1.6.11: - dependencies: - sax: 1.4.4 + is-wsl: 3.1.1 xml2js@0.4.19: dependencies: @@ -14878,8 +14186,6 @@ snapshots: xmlbuilder@9.0.7: {} - xstate@4.38.3: {} - xtend@4.0.2: {} y18n@4.0.3: {} @@ -14892,9 +14198,9 @@ snapshots: yaml-ast-parser@0.0.43: {} - yaml@1.10.2: {} + yaml@1.10.3: {} - yaml@2.8.2: {} + yaml@2.9.0: {} yamljs@0.3.0: dependencies: @@ -14996,10 +14302,4 @@ snapshots: compress-commons: 4.1.2 readable-stream: 3.6.2 - zip-stream@6.0.1: - dependencies: - archiver-utils: 5.0.2 - compress-commons: 6.0.2 - readable-stream: 4.7.0 - - zod@3.24.4: {} + zod@3.25.76: {} diff --git a/packages/application-tester/package.json b/packages/application-tester/package.json index 290d07e48..9e4f1ea56 100644 --- a/packages/application-tester/package.json +++ b/packages/application-tester/package.json @@ -42,7 +42,7 @@ "jsonwebtoken": "9.0.2", "subscriptions-transport-ws": "0.11.0", "tslib": "^2.4.0", - "ws": "8.18.0", + "ws": "^8.20.1", "@types/sinon": "10.0.0", "sinon": "9.2.3", "@effect-ts/core": "^0.60.4" diff --git a/packages/framework-core/package.json b/packages/framework-core/package.json index 18506b776..276f4a1d1 100644 --- a/packages/framework-core/package.json +++ b/packages/framework-core/package.json @@ -49,16 +49,16 @@ "reflect-metadata": "0.1.13", "tslib": "^2.4.0", "validator": "13.15.26", - "effect": "3.13.2", - "@effect/platform": "0.77.2", + "effect": "3.21.3", + "@effect/platform": "0.79.4", "@effect/schema": "0.75.5", - "@effect/cli": "0.56.2", + "@effect/cli": "0.58.4", "fast-check": "^3.13.2", - "@effect/printer": "0.41.2", - "@effect/typeclass": "0.32.2", - "@effect/printer-ansi": "0.41.2", - "@effect/platform-node": "0.73.2", - "ws": "8.18.0" + "@effect/printer": "0.41.12", + "@effect/typeclass": "0.32.12", + "@effect/printer-ansi": "0.41.12", + "@effect/platform-node": "0.75.4", + "ws": "^8.20.1" }, "devDependencies": { "@boostercloud/metadata-booster": "workspace:^4.0.2", diff --git a/packages/framework-integration-tests/package.json b/packages/framework-integration-tests/package.json index 92e086bb2..b82d8c307 100644 --- a/packages/framework-integration-tests/package.json +++ b/packages/framework-integration-tests/package.json @@ -21,16 +21,16 @@ "@effect-ts/core": "^0.60.4", "express-unless": "2.1.3", "express": "^4.19.2", - "effect": "3.13.2", - "@effect/platform": "0.77.2", + "effect": "3.21.3", + "@effect/platform": "0.79.4", "@effect/schema": "0.75.5", - "@effect/cli": "0.56.2", - "@effect/printer": "0.41.2", - "@effect/typeclass": "0.32.2", - "@effect/printer-ansi": "0.41.2", - "@effect/platform-node": "0.73.2", + "@effect/cli": "0.58.4", + "@effect/printer": "0.41.12", + "@effect/typeclass": "0.32.12", + "@effect/printer-ansi": "0.41.12", + "@effect/platform-node": "0.75.4", "fast-check": "^3.13.2", - "ws": "8.18.0", + "ws": "^8.20.1", "execa": "^2.0.3" }, "devDependencies": { @@ -55,8 +55,8 @@ "@typescript-eslint/eslint-plugin": "^5.0.0", "@typescript-eslint/parser": "^5.0.0", "@apollo/client": "3.7.13", - "cdktf": "0.21.0", - "cdktf-cli": "0.21.0", + "cdktn": "0.23.3", + "cdktn-cli": "0.23.3", "ink": "^3.0.5", "react": "^17.0.0", "constructs": "^10.4.2", diff --git a/packages/framework-provider-aws-infrastructure/package.json b/packages/framework-provider-aws-infrastructure/package.json index 33f58a1d7..551a58140 100644 --- a/packages/framework-provider-aws-infrastructure/package.json +++ b/packages/framework-provider-aws-infrastructure/package.json @@ -52,7 +52,7 @@ "promptly": "~3.2.0", "cdk-assets": "~2.39.1", "@effect-ts/core": "^0.60.4", - "yaml": "1.10.2", + "yaml": "^1.10.3", "archiver": "5.3.0" }, "scripts": { diff --git a/packages/framework-provider-azure-infrastructure/package.json b/packages/framework-provider-azure-infrastructure/package.json index b110dafed..9ecc7b285 100644 --- a/packages/framework-provider-azure-infrastructure/package.json +++ b/packages/framework-provider-azure-infrastructure/package.json @@ -30,15 +30,15 @@ "@boostercloud/framework-core": "workspace:^4.0.2", "@boostercloud/framework-provider-azure": "workspace:^4.0.2", "@boostercloud/framework-types": "workspace:^4.0.2", - "@cdktf/provider-azurerm": "14.23.1", - "@cdktf/provider-null": "11.0.1", - "@cdktf/provider-time": "11.0.1", + "@cdktn/provider-azurerm": "16.4.0", + "@cdktn/provider-null": "13.1.0", + "@cdktn/provider-time": "13.1.0", "@types/archiver": "5.1.0", "@types/needle": "^2.0.4", "archiver": "5.3.0", "@azure/arm-resources": "^5.0.1", - "cdktf": "0.21.0", - "cdktf-cli": "0.21.0", + "cdktn": "0.23.3", + "cdktn-cli": "0.23.3", "ink": "^3.0.5", "react": "^17.0.0", "chai": "4.2.0", @@ -51,7 +51,7 @@ "ora": "^3.4.0", "sinon-chai": "3.5.0", "tslib": "^2.4.0", - "uuid": "11.0.5", + "uuid": "11.1.1", "@azure/identity": "~4.13.0", "@effect-ts/core": "^0.60.4" }, diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/application-builder.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/application-builder.ts index 54c064bba..c9d369576 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/application-builder.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/application-builder.ts @@ -4,7 +4,7 @@ import { AzureStack } from './azure-stack' import * as ckdtfTemplate from './templates/cdktf' import { renderToFile } from './helper/utils' import { getLogger, Promises } from '@boostercloud/framework-common-helpers' -import { App } from 'cdktf' +import { App } from 'cdktn' import { ZipResource } from './types/zip-resource' import { FunctionZip } from './helper/function-zip' import { RocketBuilder, RocketZipResource } from './rockets/rocket-builder' @@ -59,7 +59,7 @@ export class ApplicationBuilder { private async generateSynthFiles(): Promise { const logger = getLogger(this.config, 'ApplicationBuilder#generateSynthFiles') - logger.info('Generating cdktf files') + logger.info('Generating cdktn files') const filesToGenerate: Array<[Array, string]> = [[['cdktf.json'], ckdtfTemplate.template]] await Promises.allSettledAndFulfilled(filesToGenerate.map(renderToFile(this.config))) } diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/azure-stack.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/azure-stack.ts index c481336a3..68217356e 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/azure-stack.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/azure-stack.ts @@ -1,5 +1,5 @@ import { Construct } from 'constructs' -import { Fn, TerraformStack } from 'cdktf' +import { Fn, TerraformStack } from 'cdktn' import { ApplicationSynth } from './synth/application-synth' import { ApplicationSynthStack } from './types/application-synth-stack' import { InfrastructureRocket } from './rockets/infrastructure-rocket' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/index.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/index.ts index 3677521c8..de0ebcf79 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/index.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/index.ts @@ -42,9 +42,10 @@ async function deployApp(config: BoosterConfig, rockets?: InfrastructureRocket[] const applicationBuild = await applicationBuilder.buildApplication() try { - await runCommand(process.cwd(), 'npx cdktf-cli deploy --auto-approve --ignore-missing-stack-dependencies') + await runCommand(process.cwd(), 'npx cdktn-cli deploy --auto-approve --ignore-missing-stack-dependencies') } catch (error) { - return Promise.reject(`Deployment of application ${config.appName} failed. Check cdktf logs. \n${error.message}}`) + const message = error instanceof Error ? error.message : String(error) + return Promise.reject(`Deployment of application ${config.appName} failed. Check Terraform logs. \n${message}`) } const resourceGroupName = createResourceGroupName(config.appName, config.environmentName) diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/application-synth.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/application-synth.ts index e270b848d..e04a50cfb 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/application-synth.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/application-synth.ts @@ -8,7 +8,7 @@ import { readProjectConfig, toTerraformName, } from '../helper/utils' -import { TerraformStack } from 'cdktf' +import { TerraformStack } from 'cdktn' import { TerraformServicePlan } from './terraform-service-plan' import { TerraformResourceGroup } from './terraform-resource-group' import { TerraformStorageAccount } from './terraform-storage-account' @@ -19,12 +19,12 @@ import { TerraformCosmosdbDatabase } from './terraform-cosmosdb-database' import { TerraformApplicationGateway } from './gateway/terraform-application-gateway' import { TerraformWebPubsub } from './terraform-web-pubsub' import { ApplicationSynthStack, StackNames } from '../types/application-synth-stack' -import { AzurermProvider, AzurermProviderFeatures } from '@cdktf/provider-azurerm/lib/provider' +import { AzurermProvider, AzurermProviderFeatures } from '@cdktn/provider-azurerm/lib/provider' import { TerraformOutputs } from './terraform-outputs' import { TerraformWebPubsubHub } from './terraform-web-pubsub-hub' import { TerraformEventHubNamespace } from './terraform-event-hub-namespace' import { TerraformEventHub } from './terraform-event-hub' -import { storageAccount, windowsFunctionApp } from '@cdktf/provider-azurerm' +import { storageAccount, windowsFunctionApp } from '@cdktn/provider-azurerm' import { TerraformNetworkSecurityGroup } from './gateway/terraform-network-security-group' import { TerraformVirtualNetwork } from './gateway/terraform-virtual-network' import { TerraformPublicIp } from './gateway/terraform-public-ip' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-application-gateway.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-application-gateway.ts index 67ec74ea9..ba6b21baa 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-application-gateway.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-application-gateway.ts @@ -1,7 +1,7 @@ -import { applicationGateway } from '@cdktf/provider-azurerm' +import { applicationGateway } from '@cdktn/provider-azurerm' import { ApplicationSynthStack } from '../../types/application-synth-stack' import { USE_WAF } from '../../constants' -import { ApplicationGatewayConfig } from '@cdktf/provider-azurerm/lib/application-gateway' +import { ApplicationGatewayConfig } from '@cdktn/provider-azurerm/lib/application-gateway' const STANDARD_V2 = 'Standard_v2' const WAF_V2 = 'WAF_v2' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-network-security-group.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-network-security-group.ts index b647382c3..1a06224dd 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-network-security-group.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-network-security-group.ts @@ -1,4 +1,4 @@ -import { networkSecurityGroup } from '@cdktf/provider-azurerm' +import { networkSecurityGroup } from '@cdktn/provider-azurerm' import { ApplicationSynthStack } from '../../types/application-synth-stack' export class TerraformNetworkSecurityGroup { diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-public-ip-data.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-public-ip-data.ts index 0061cef1d..eed8e1767 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-public-ip-data.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-public-ip-data.ts @@ -1,4 +1,4 @@ -import { dataAzurermPublicIp } from '@cdktf/provider-azurerm' +import { dataAzurermPublicIp } from '@cdktn/provider-azurerm' import { toTerraformName } from '../../helper/utils' import { ApplicationSynthStack } from '../../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-public-ip.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-public-ip.ts index 27394ddb3..519b0905c 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-public-ip.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-public-ip.ts @@ -1,4 +1,4 @@ -import { publicIp } from '@cdktf/provider-azurerm' +import { publicIp } from '@cdktn/provider-azurerm' import { ApplicationSynthStack } from '../../types/application-synth-stack' export class TerraformPublicIp { diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-subnet-security.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-subnet-security.ts index cd47567dd..0b8f6528f 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-subnet-security.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-subnet-security.ts @@ -1,6 +1,6 @@ import { toTerraformName } from '../../helper/utils' import { ApplicationSynthStack } from '../../types/application-synth-stack' -import { subnetNetworkSecurityGroupAssociation } from '@cdktf/provider-azurerm' +import { subnetNetworkSecurityGroupAssociation } from '@cdktn/provider-azurerm' export class TerraformSubnetSecurity { static build({ diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-subnet.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-subnet.ts index 487af6806..2f6b6d903 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-subnet.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-subnet.ts @@ -1,6 +1,6 @@ import { toTerraformName } from '../../helper/utils' import { ApplicationSynthStack } from '../../types/application-synth-stack' -import { subnet } from '@cdktf/provider-azurerm' +import { subnet } from '@cdktn/provider-azurerm' export class TerraformSubnet { static build({ diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-virtual-network.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-virtual-network.ts index ee66a4fd7..98b823378 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-virtual-network.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/gateway/terraform-virtual-network.ts @@ -1,4 +1,4 @@ -import { virtualNetwork } from '@cdktf/provider-azurerm' +import { virtualNetwork } from '@cdktn/provider-azurerm' import { toTerraformName } from '../../helper/utils' import { ApplicationSynthStack } from '../../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-containers.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-containers.ts index 249deee8b..c708bfee4 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-containers.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-containers.ts @@ -1,5 +1,5 @@ -import { TerraformStack } from 'cdktf' -import { cosmosdbAccount, cosmosdbSqlContainer, cosmosdbSqlDatabase } from '@cdktf/provider-azurerm' +import { TerraformStack } from 'cdktn' +import { cosmosdbAccount, cosmosdbSqlContainer, cosmosdbSqlDatabase } from '@cdktn/provider-azurerm' import { toTerraformName } from '../helper/utils' import { BoosterConfig } from '@boostercloud/framework-types' import { @@ -8,7 +8,7 @@ import { eventsStoreAttributes, subscriptionsStoreAttributes, } from '@boostercloud/framework-provider-azure' -import { AzurermProvider } from '@cdktf/provider-azurerm/lib/provider' +import { AzurermProvider } from '@cdktn/provider-azurerm/lib/provider' import { MAX_CONTAINER_THROUGHPUT } from '../constants' import { ApplicationSynthStack } from '../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-cosmosdb-database.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-cosmosdb-database.ts index 14b8e9231..89ce4b695 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-cosmosdb-database.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-cosmosdb-database.ts @@ -1,4 +1,4 @@ -import { cosmosdbAccount } from '@cdktf/provider-azurerm' +import { cosmosdbAccount } from '@cdktn/provider-azurerm' import { toTerraformName } from '../helper/utils' import { ApplicationSynthStack } from '../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-cosmosdb-sql-database.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-cosmosdb-sql-database.ts index 488ae3603..70b9ed727 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-cosmosdb-sql-database.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-cosmosdb-sql-database.ts @@ -1,4 +1,4 @@ -import { cosmosdbSqlDatabase } from '@cdktf/provider-azurerm' +import { cosmosdbSqlDatabase } from '@cdktn/provider-azurerm' import { toTerraformName } from '../helper/utils' import { BoosterConfig } from '@boostercloud/framework-types' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-event-hub-namespace.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-event-hub-namespace.ts index 4afb9f05c..4e0d91686 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-event-hub-namespace.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-event-hub-namespace.ts @@ -1,4 +1,4 @@ -import { eventhubNamespace } from '@cdktf/provider-azurerm' +import { eventhubNamespace } from '@cdktn/provider-azurerm' import { toTerraformName } from '../helper/utils' import { ApplicationSynthStack } from '../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-event-hub.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-event-hub.ts index 6f0c80fe4..598d72754 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-event-hub.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-event-hub.ts @@ -1,4 +1,4 @@ -import { eventhub } from '@cdktf/provider-azurerm' +import { eventhub } from '@cdktn/provider-azurerm' import { toTerraformName } from '../helper/utils' import { ApplicationSynthStack } from '../types/application-synth-stack' import { BoosterConfig } from '@boostercloud/framework-types' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-function-app-settings.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-function-app-settings.ts index 54907f464..de49aeda7 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-function-app-settings.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-function-app-settings.ts @@ -2,7 +2,7 @@ import { environmentVarNames } from '@boostercloud/framework-provider-azure' import { ApplicationSynthStack } from '../types/application-synth-stack' import { toTerraformName } from '../helper/utils' import { BoosterConfig } from '@boostercloud/framework-types' -import { storageAccount } from '@cdktf/provider-azurerm' +import { storageAccount } from '@cdktn/provider-azurerm' export class TerraformFunctionAppSettings { static build( diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-function-app.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-function-app.ts index 43b63b0cf..e2b90ee8a 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-function-app.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-function-app.ts @@ -1,7 +1,7 @@ -import { servicePlan, storageAccount, windowsFunctionApp } from '@cdktf/provider-azurerm' +import { servicePlan, storageAccount, windowsFunctionApp } from '@cdktn/provider-azurerm' import { toTerraformName } from '../helper/utils' import { ApplicationSynthStack } from '../types/application-synth-stack' -import { WindowsFunctionAppConfig } from '@cdktf/provider-azurerm/lib/windows-function-app' +import { WindowsFunctionAppConfig } from '@cdktn/provider-azurerm/lib/windows-function-app' export class TerraformFunctionApp { static build( diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-outputs.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-outputs.ts index 02cb69203..d86b3b8b9 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-outputs.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-outputs.ts @@ -1,4 +1,4 @@ -import { TerraformOutput } from 'cdktf' +import { TerraformOutput } from 'cdktn' import { ApplicationSynthStack } from '../types/application-synth-stack' export class TerraformOutputs { diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-resource-group.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-resource-group.ts index 3cbd8acba..6c1cb3826 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-resource-group.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-resource-group.ts @@ -1,4 +1,4 @@ -import { resourceGroup } from '@cdktf/provider-azurerm' +import { resourceGroup } from '@cdktn/provider-azurerm' import { getDeployRegion, toTerraformName } from '../helper/utils' import { StackNames } from '../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-service-plan.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-service-plan.ts index 8d9a227b4..25554518a 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-service-plan.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-service-plan.ts @@ -1,4 +1,4 @@ -import { servicePlan } from '@cdktf/provider-azurerm' +import { servicePlan } from '@cdktn/provider-azurerm' import { toTerraformName } from '../helper/utils' import { ApplicationSynthStack } from '../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-storage-account.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-storage-account.ts index 7b7c730d1..29e0937ca 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-storage-account.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-storage-account.ts @@ -1,4 +1,4 @@ -import { storageAccount } from '@cdktf/provider-azurerm' +import { storageAccount } from '@cdktn/provider-azurerm' import { toTerraformName } from '../helper/utils' import { ApplicationSynthStack } from '../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pub-sub-extension-key.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pub-sub-extension-key.ts index e9af54fba..87eb2d735 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pub-sub-extension-key.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pub-sub-extension-key.ts @@ -1,4 +1,4 @@ -import { dataAzurermFunctionAppHostKeys } from '@cdktf/provider-azurerm' +import { dataAzurermFunctionAppHostKeys } from '@cdktn/provider-azurerm' import { TerraformFunctionAppData } from './web-pubsub-extension-key/terraform-function-app-data' import { TerraformSleep } from './web-pubsub-extension-key/terraform-sleep' import { ApplicationSynthStack } from '../types/application-synth-stack' diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pubsub-hub.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pubsub-hub.ts index 51d821ce6..856239090 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pubsub-hub.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pubsub-hub.ts @@ -1,5 +1,5 @@ import { toTerraformName } from '../helper/utils' -import { webPubsubHub } from '@cdktf/provider-azurerm' +import { webPubsubHub } from '@cdktn/provider-azurerm' import { ApplicationSynthStack } from '../types/application-synth-stack' export class TerraformWebPubsubHub { diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pubsub.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pubsub.ts index a579e7d01..eab3cc00d 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pubsub.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/terraform-web-pubsub.ts @@ -1,5 +1,5 @@ import { toTerraformName } from '../helper/utils' -import { webPubsub } from '@cdktf/provider-azurerm' +import { webPubsub } from '@cdktn/provider-azurerm' import { ApplicationSynthStack } from '../types/application-synth-stack' export class TerraformWebPubsub { diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/web-pubsub-extension-key/terraform-function-app-data.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/web-pubsub-extension-key/terraform-function-app-data.ts index 6a83c8080..5b1eb4d13 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/web-pubsub-extension-key/terraform-function-app-data.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/web-pubsub-extension-key/terraform-function-app-data.ts @@ -1,8 +1,8 @@ -import { TerraformStack } from 'cdktf' -import { dataAzurermFunctionAppHostKeys, resourceGroup, windowsFunctionApp } from '@cdktf/provider-azurerm' +import { TerraformStack } from 'cdktn' +import { dataAzurermFunctionAppHostKeys, resourceGroup, windowsFunctionApp } from '@cdktn/provider-azurerm' import { toTerraformName } from '../../helper/utils' -import { AzurermProvider } from '@cdktf/provider-azurerm/lib/provider' -import { sleep } from '@cdktf/provider-time' +import { AzurermProvider } from '@cdktn/provider-azurerm/lib/provider' +import { sleep } from '@cdktn/provider-time' export class TerraformFunctionAppData { static build( diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/web-pubsub-extension-key/terraform-sleep.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/web-pubsub-extension-key/terraform-sleep.ts index 974123617..c36a24f2f 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/web-pubsub-extension-key/terraform-sleep.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/synth/web-pubsub-extension-key/terraform-sleep.ts @@ -1,8 +1,8 @@ -import { TerraformStack } from 'cdktf' +import { TerraformStack } from 'cdktn' import { toTerraformName } from '../../helper/utils' -import { sleep } from '@cdktf/provider-time' -import { TimeProvider } from '@cdktf/provider-time/lib/provider' -import { ITerraformDependable } from 'cdktf/lib/terraform-dependable' +import { sleep } from '@cdktn/provider-time' +import { TimeProvider } from '@cdktn/provider-time/lib/provider' +import { ITerraformDependable } from 'cdktn/lib/terraform-dependable' export class TerraformSleep { static build( diff --git a/packages/framework-provider-azure-infrastructure/src/infrastructure/types/application-synth-stack.ts b/packages/framework-provider-azure-infrastructure/src/infrastructure/types/application-synth-stack.ts index bd512263a..83589628e 100644 --- a/packages/framework-provider-azure-infrastructure/src/infrastructure/types/application-synth-stack.ts +++ b/packages/framework-provider-azure-infrastructure/src/infrastructure/types/application-synth-stack.ts @@ -19,11 +19,11 @@ import { subnetNetworkSecurityGroupAssociation, webPubsubHub, windowsFunctionApp, -} from '@cdktf/provider-azurerm' -import { Resource } from '@cdktf/provider-null/lib/resource' -import { TerraformResource, TerraformStack } from 'cdktf' +} from '@cdktn/provider-azurerm' +import { Resource } from '@cdktn/provider-null/lib/resource' +import { TerraformResource, TerraformStack } from 'cdktn' import { FunctionDefinition } from './functionDefinition' -import { AzurermProvider } from '@cdktf/provider-azurerm/lib/provider' +import { AzurermProvider } from '@cdktn/provider-azurerm/lib/provider' export interface StackNames { appPrefix: string diff --git a/packages/framework-provider-local/package.json b/packages/framework-provider-local/package.json index 651690911..08bb5d9e1 100644 --- a/packages/framework-provider-local/package.json +++ b/packages/framework-provider-local/package.json @@ -28,7 +28,7 @@ "@seald-io/nedb": "4.0.2", "tslib": "^2.4.0", "@effect-ts/core": "^0.60.4", - "ws": "8.18.0" + "ws": "^8.20.1" }, "scripts": { "format": "prettier --write --ext '.js,.ts' **/*.ts **/*/*.ts", diff --git a/packages/framework-types/package.json b/packages/framework-types/package.json index 2c22c50af..e13cdd7e2 100644 --- a/packages/framework-types/package.json +++ b/packages/framework-types/package.json @@ -40,18 +40,18 @@ }, "dependencies": { "tslib": "^2.4.0", - "uuid": "11.0.5", + "uuid": "11.1.1", "@effect-ts/core": "^0.60.4", "@effect-ts/node": "~0.39.0", - "effect": "3.13.2", - "@effect/cli": "0.56.2", - "@effect/platform": "0.77.2", - "@effect/printer": "0.41.2", - "@effect/printer-ansi": "0.41.2", + "effect": "3.21.3", + "@effect/cli": "0.58.4", + "@effect/platform": "0.79.4", + "@effect/printer": "0.41.12", + "@effect/printer-ansi": "0.41.12", "@effect/schema": "0.75.5", - "@effect/typeclass": "0.32.2", + "@effect/typeclass": "0.32.12", "web-streams-polyfill": "~3.3.2", - "ws": "8.18.0" + "ws": "^8.20.1" }, "devDependencies": { "@boostercloud/eslint-config": "workspace:^4.0.2", diff --git a/website/docs/10_going-deeper/infrastructure-providers.mdx b/website/docs/10_going-deeper/infrastructure-providers.mdx index 6f83e8bdd..0859a1b23 100644 --- a/website/docs/10_going-deeper/infrastructure-providers.mdx +++ b/website/docs/10_going-deeper/infrastructure-providers.mdx @@ -235,16 +235,16 @@ Now just let the magic happen, Booster will create everything for you and give y ### Azure synth command -Azure provider implements the experimental **Booster** `synth` command. This command will generate [Terraform](https://www.terraform.io/) templates from your code. It will also generate needed files to deploy your Booster application using [cdktf](https://learn.hashicorp.com/tutorials/terraform/cdktf). +Azure provider implements the experimental **Booster** `synth` command. This command will generate [Terraform](https://www.terraform.io/) templates from your code. It will also generate the configuration file needed to deploy your Booster application using [cdktn-cli](https://github.com/open-constructs/cdk-terrain). Running `synth` command, for example `boost synth -e production` will generate following files: -* A file `cdktf.json`: A basic json file to deploy your application using `cdktf` +* A file `cdktf.json`: A configuration file used by `cdktn-cli` to deploy your application. * A folder `cdktf.out`: with the Terraform templates. Booster deploy command for Azure will deploy your application using the generated templates. You don't need to run the `synth` command for deploy your application, the `deploy` command will generate the templates before deploy for you. -Once you have the new files and folders generates you could use `cdktf` to deploy your application if you want to. +Once you have the new files and folders generated you could use `cdktn-cli` to deploy your application if you want to. ### Azure and CI/CD environments