@aws/nx-plugin 1.0.0-rc.12 → 1.0.0-rc.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE-THIRD-PARTY +81 -3
- package/generators.json +28 -1
- package/package.json +2 -2
- package/src/connection/generator.d.ts +1 -1
- package/src/connection/generator.js +58 -42
- package/src/connection/generator.js.map +1 -1
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +16 -16
- package/src/infra/app/generator.js +4 -4
- package/src/infra/app/generator.js.map +1 -1
- package/src/preset/__snapshots__/generator.spec.ts.snap +4 -2
- package/src/py/agent/__snapshots__/generator.spec.ts.snap +574 -5
- package/src/py/agent/files/http/init.py.template +5 -23
- package/src/py/agent/generator.js +27 -22
- package/src/py/agent/generator.js.map +1 -1
- package/src/py/dynamodb/__snapshots__/generator.spec.ts.snap +1486 -0
- package/src/py/dynamodb/agent-connection/__snapshots__/generator.spec.ts.snap +45 -0
- package/src/py/dynamodb/agent-connection/generator.d.ts +10 -0
- package/src/py/dynamodb/agent-connection/generator.js +39 -0
- package/src/py/dynamodb/agent-connection/generator.js.map +1 -0
- package/src/py/dynamodb/agent-connection/schema.d.ts +14 -0
- package/src/py/dynamodb/agent-connection/schema.json +22 -0
- package/src/py/dynamodb/fast-api-connection/__snapshots__/generator.spec.ts.snap +23 -0
- package/src/py/dynamodb/fast-api-connection/generator.d.ts +10 -0
- package/src/py/dynamodb/fast-api-connection/generator.js +37 -0
- package/src/py/dynamodb/fast-api-connection/generator.js.map +1 -0
- package/src/py/dynamodb/fast-api-connection/schema.d.ts +12 -0
- package/src/py/dynamodb/fast-api-connection/schema.json +18 -0
- package/src/py/dynamodb/files/__name__/__init__.py.template +6 -0
- package/src/py/dynamodb/files/__name__/client.py.template +39 -0
- package/src/py/dynamodb/files/__name__/entities/__init__.py.template +4 -0
- package/src/py/dynamodb/files/__name__/entities/base.py.template +63 -0
- package/src/py/dynamodb/files/__name__/entities/example.py.template +64 -0
- package/src/py/dynamodb/files/config.json.template +24 -0
- package/src/py/dynamodb/generator.d.ts +10 -0
- package/src/py/dynamodb/generator.js +106 -0
- package/src/py/dynamodb/generator.js.map +1 -0
- package/src/py/dynamodb/mcp-server-connection/__snapshots__/generator.spec.ts.snap +45 -0
- package/src/py/dynamodb/mcp-server-connection/generator.d.ts +10 -0
- package/src/py/dynamodb/mcp-server-connection/generator.js +39 -0
- package/src/py/dynamodb/mcp-server-connection/generator.js.map +1 -0
- package/src/py/dynamodb/mcp-server-connection/schema.d.ts +14 -0
- package/src/py/dynamodb/mcp-server-connection/schema.json +22 -0
- package/src/py/dynamodb/schema.d.ts +15 -0
- package/src/py/dynamodb/schema.json +70 -0
- package/src/py/fast-api/__snapshots__/generator.spec.ts.snap +5 -22
- package/src/py/fast-api/files/app/__name__/init.py.template +5 -22
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/agent/__snapshots__/generator.spec.ts.snap +564 -0
- package/src/ts/agent/generator.js +23 -19
- package/src/ts/agent/generator.js.map +1 -1
- package/src/ts/dynamodb/__snapshots__/generator.spec.ts.snap +303 -512
- package/src/ts/dynamodb/files/config.json.template +24 -0
- package/src/ts/dynamodb/files/src/client.ts.template +26 -10
- package/src/ts/dynamodb/files/src/index.ts.template +0 -8
- package/src/ts/dynamodb/generator.js +15 -12
- package/src/ts/dynamodb/generator.js.map +1 -1
- package/src/ts/dynamodb/schema.d.ts +1 -0
- package/src/ts/dynamodb/schema.json +20 -2
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +86 -39
- package/src/utils/agent-chat/agent-chat.d.ts +31 -0
- package/src/utils/agent-chat/agent-chat.js +30 -0
- package/src/utils/agent-chat/agent-chat.js.map +1 -0
- package/src/utils/agent-chat/files/a2a/chat.ts.template +33 -0
- package/src/utils/agent-chat/files/ag-ui/chat.ts.template +17 -0
- package/src/utils/agent-chat/files/common/agentcore.ts.template +81 -0
- package/src/utils/agent-chat/files/http-py/chat.ts.template +43 -0
- package/src/utils/agent-chat/files/http-ts/chat.ts.template +54 -0
- package/src/utils/dynamodb-constructs/dynamodb-constructs.d.ts +0 -1
- package/src/utils/dynamodb-constructs/dynamodb-constructs.js.map +1 -1
- package/src/utils/dynamodb-constructs/files/cdk/app/dynamodb/__nameKebabCase__.ts.template +12 -13
- package/src/utils/dynamodb-constructs/files/terraform/app/dynamodb/__nameKebabCase__/__nameKebabCase__.tf.template +3 -3
- package/src/{ts/dynamodb/files/scripts → utils/files/common/scripts/src/dynamodb}/create-local-table.ts.template +63 -36
- package/src/utils/files/common/scripts/src/dynamodb/pull-image.ts.template +13 -0
- package/src/{ts/dynamodb/files/scripts → utils/files/common/scripts/src/dynamodb}/start-container.ts.template +28 -18
- package/src/utils/port.d.ts +6 -5
- package/src/utils/port.js +7 -5
- package/src/utils/port.js.map +1 -1
- package/src/utils/shared-constructs-constants.d.ts +1 -0
- package/src/utils/shared-constructs-constants.js +2 -1
- package/src/utils/shared-constructs-constants.js.map +1 -1
- package/src/utils/shared-dynamodb-scripts.d.ts +11 -0
- package/src/utils/shared-dynamodb-scripts.js +23 -0
- package/src/utils/shared-dynamodb-scripts.js.map +1 -0
- package/src/utils/shared-infra-scripts.d.ts +11 -0
- package/src/utils/shared-infra-scripts.js +35 -0
- package/src/utils/shared-infra-scripts.js.map +1 -0
- package/src/utils/shared-scripts.d.ts +1 -4
- package/src/utils/shared-scripts.js +2 -23
- package/src/utils/shared-scripts.js.map +1 -1
- package/src/utils/versions.d.ts +45 -44
- package/src/utils/versions.js +44 -43
- package/src/utils/versions.js.map +1 -1
- package/src/py/agent/scripts/http/chat.ts.template +0 -38
- package/src/ts/agent/scripts/http/chat.ts.template +0 -35
- package/src/ts/dynamodb/files/dynamodb.config.json +0 -14
- package/src/ts/dynamodb/files/scripts/pull-image.ts.template +0 -15
- package/src/ts/dynamodb/files/src/constants.ts.template +0 -9
- /package/src/utils/files/common/scripts/src/{index.ts.template → infra/index.ts.template} +0 -0
- /package/src/utils/files/common/scripts/src/{infra-deploy.ts.template → infra/infra-deploy.ts.template} +0 -0
- /package/src/utils/files/common/scripts/src/{infra-destroy.ts.template → infra/infra-destroy.ts.template} +0 -0
- /package/src/utils/files/common/scripts/src/{stage-credentials → infra/stage-credentials}/cdk-command.ts.template +0 -0
- /package/src/utils/files/common/scripts/src/{stage-credentials → infra/stage-credentials}/credentials.ts.template +0 -0
- /package/src/utils/files/common/scripts/src/{stage-credentials → infra/stage-credentials}/run.ts.template +0 -0
- /package/src/utils/files/common/scripts/src/{stage-credentials → infra/stage-credentials}/stage-parser.ts.template +0 -0
package/src/utils/port.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"port.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/port.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACH,uCAA+E;AAE/E;;;GAGG;AACH,MAAM,sBAAsB,GAAG,CAC7B,OAA6B,EACT,EAAE;IACtB,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAe,CAAC;IACzC,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,CAAC,IAAI,OAAO,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,QAAQ,EAAE,CAAC;QAC5E,OAAO,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;IAC3B,CAAC;IACD,IAAI,OAAO,QAAQ,EAAE,IAAI,KAAK,QAAQ,EAAE,CAAC;QACvC,OAAO,QAAQ,CAAC,IAAI,CAAC;IACvB,CAAC;IACD,OAAO,SAAS,CAAC;AACnB,CAAC,CAAC;AAEF;;;;GAIG;AACH,MAAM,wBAAwB,GAAG,CAC/B,OAA6B,EAC7B,SAAkD,EAC9B,EAAE;IACtB,MAAM,UAAU,GAAI,OAAO,CAAC,QAAgB,EAAE,UAAU,IAAI,EAAE,CAAC;IAC/D,MAAM,KAAK,GAAG,UAAU,CAAC,IAAI,CAC3B,CAAC,CAAM,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAC3E,CAAC;IACF,OAAO,OAAO,KAAK,EAAE,IAAI,KAAK,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;AAClE,CAAC,CAAC;AAcF
|
|
1
|
+
{"version":3,"file":"port.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/port.ts"],"names":[],"mappings":"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"}
|
|
@@ -13,3 +13,4 @@ export declare const SHARED_INFRA_CONFIG_NAME = "common-infra-config";
|
|
|
13
13
|
export declare const SHARED_INFRA_CONFIG_DIR = "common/infra-config";
|
|
14
14
|
export declare const SHARED_SCRIPTS_NAME = "common-scripts";
|
|
15
15
|
export declare const SHARED_SCRIPTS_DIR = "common/scripts";
|
|
16
|
+
export declare const DYNAMODB_GENERATOR_IDS: string[];
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.SHARED_SCRIPTS_DIR = exports.SHARED_SCRIPTS_NAME = exports.SHARED_INFRA_CONFIG_DIR = exports.SHARED_INFRA_CONFIG_NAME = exports.SHARED_SHADCN_DIR = exports.SHARED_SHADCN_NAME = exports.SHARED_TERRAFORM_DIR = exports.SHARED_TERRAFORM_NAME = exports.SHARED_CONSTRUCTS_DIR = exports.SHARED_CONSTRUCTS_NAME = exports.PACKAGES_DIR = void 0;
|
|
7
|
+
exports.DYNAMODB_GENERATOR_IDS = exports.SHARED_SCRIPTS_DIR = exports.SHARED_SCRIPTS_NAME = exports.SHARED_INFRA_CONFIG_DIR = exports.SHARED_INFRA_CONFIG_NAME = exports.SHARED_SHADCN_DIR = exports.SHARED_SHADCN_NAME = exports.SHARED_TERRAFORM_DIR = exports.SHARED_TERRAFORM_NAME = exports.SHARED_CONSTRUCTS_DIR = exports.SHARED_CONSTRUCTS_NAME = exports.PACKAGES_DIR = void 0;
|
|
8
8
|
exports.PACKAGES_DIR = 'packages';
|
|
9
9
|
exports.SHARED_CONSTRUCTS_NAME = 'common-constructs';
|
|
10
10
|
exports.SHARED_CONSTRUCTS_DIR = 'common/constructs';
|
|
@@ -16,4 +16,5 @@ exports.SHARED_INFRA_CONFIG_NAME = 'common-infra-config';
|
|
|
16
16
|
exports.SHARED_INFRA_CONFIG_DIR = 'common/infra-config';
|
|
17
17
|
exports.SHARED_SCRIPTS_NAME = 'common-scripts';
|
|
18
18
|
exports.SHARED_SCRIPTS_DIR = 'common/scripts';
|
|
19
|
+
exports.DYNAMODB_GENERATOR_IDS = ['ts#dynamodb', 'py#dynamodb'];
|
|
19
20
|
//# sourceMappingURL=shared-constructs-constants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-constructs-constants.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-constructs-constants.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEU,QAAA,YAAY,GAAG,UAAU,CAAC;AAC1B,QAAA,sBAAsB,GAAG,mBAAmB,CAAC;AAC7C,QAAA,qBAAqB,GAAG,mBAAmB,CAAC;AAC5C,QAAA,qBAAqB,GAAG,WAAW,CAAC;AACpC,QAAA,oBAAoB,GAAG,kBAAkB,CAAC;AAC1C,QAAA,kBAAkB,GAAG,eAAe,CAAC;AACrC,QAAA,iBAAiB,GAAG,eAAe,CAAC;AACpC,QAAA,wBAAwB,GAAG,qBAAqB,CAAC;AACjD,QAAA,uBAAuB,GAAG,qBAAqB,CAAC;AAChD,QAAA,mBAAmB,GAAG,gBAAgB,CAAC;AACvC,QAAA,kBAAkB,GAAG,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"shared-constructs-constants.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-constructs-constants.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEU,QAAA,YAAY,GAAG,UAAU,CAAC;AAC1B,QAAA,sBAAsB,GAAG,mBAAmB,CAAC;AAC7C,QAAA,qBAAqB,GAAG,mBAAmB,CAAC;AAC5C,QAAA,qBAAqB,GAAG,WAAW,CAAC;AACpC,QAAA,oBAAoB,GAAG,kBAAkB,CAAC;AAC1C,QAAA,kBAAkB,GAAG,eAAe,CAAC;AACrC,QAAA,iBAAiB,GAAG,eAAe,CAAC;AACpC,QAAA,wBAAwB,GAAG,qBAAqB,CAAC;AACjD,QAAA,uBAAuB,GAAG,qBAAqB,CAAC;AAChD,QAAA,mBAAmB,GAAG,gBAAgB,CAAC;AACvC,QAAA,kBAAkB,GAAG,gBAAgB,CAAC;AAEtC,QAAA,sBAAsB,GAAG,CAAC,aAAa,EAAE,aAAa,CAAC,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
import { type Tree } from '@nx/devkit';
|
|
6
|
+
/**
|
|
7
|
+
* Ensures the shared scripts package exists and adds DynamoDB local-dev scripts
|
|
8
|
+
* to packages/common/scripts/src/dynamodb/. Used by both ts#dynamodb and
|
|
9
|
+
* py#dynamodb so a single set of TypeScript scripts serves both.
|
|
10
|
+
*/
|
|
11
|
+
export declare function sharedDynamoDBScriptsGenerator(tree: Tree): Promise<void>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.sharedDynamoDBScriptsGenerator = sharedDynamoDBScriptsGenerator;
|
|
4
|
+
/**
|
|
5
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
6
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
7
|
+
*/
|
|
8
|
+
const devkit_1 = require("@nx/devkit");
|
|
9
|
+
const shared_constructs_constants_1 = require("./shared-constructs-constants");
|
|
10
|
+
const shared_scripts_1 = require("./shared-scripts");
|
|
11
|
+
const versions_1 = require("./versions");
|
|
12
|
+
/**
|
|
13
|
+
* Ensures the shared scripts package exists and adds DynamoDB local-dev scripts
|
|
14
|
+
* to packages/common/scripts/src/dynamodb/. Used by both ts#dynamodb and
|
|
15
|
+
* py#dynamodb so a single set of TypeScript scripts serves both.
|
|
16
|
+
*/
|
|
17
|
+
async function sharedDynamoDBScriptsGenerator(tree) {
|
|
18
|
+
const scriptsDir = (0, devkit_1.joinPathFragments)(shared_constructs_constants_1.PACKAGES_DIR, shared_constructs_constants_1.SHARED_SCRIPTS_DIR);
|
|
19
|
+
await (0, shared_scripts_1.ensureSharedScriptsProject)(tree);
|
|
20
|
+
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', shared_constructs_constants_1.SHARED_SCRIPTS_DIR, 'src', 'dynamodb'), (0, devkit_1.joinPathFragments)(scriptsDir, 'src', 'dynamodb'), {}, { overwriteStrategy: devkit_1.OverwriteStrategy.KeepExisting });
|
|
21
|
+
(0, devkit_1.addDependenciesToPackageJson)(tree, (0, versions_1.withVersions)(['@aws-sdk/client-dynamodb']), (0, versions_1.withVersions)(['tsx']));
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=shared-dynamodb-scripts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared-dynamodb-scripts.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-dynamodb-scripts.ts"],"names":[],"mappings":";;AAuBA,wEA0BC;AAjDD;;;GAGG;AACH,uCAMoB;AACpB,+EAGuC;AACvC,qDAA8D;AAC9D,yCAA0C;AAE1C;;;;GAIG;AACI,KAAK,UAAU,8BAA8B,CAClD,IAAU;IAEV,MAAM,UAAU,GAAG,IAAA,0BAAiB,EAAC,0CAAY,EAAE,gDAAkB,CAAC,CAAC;IAEvE,MAAM,IAAA,2CAA0B,EAAC,IAAI,CAAC,CAAC;IAEvC,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EACf,SAAS,EACT,OAAO,EACP,gDAAkB,EAClB,KAAK,EACL,UAAU,CACX,EACD,IAAA,0BAAiB,EAAC,UAAU,EAAE,KAAK,EAAE,UAAU,CAAC,EAChD,EAAE,EACF,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,YAAY,EAAE,CACtD,CAAC;IAEF,IAAA,qCAA4B,EAC1B,IAAI,EACJ,IAAA,uBAAY,EAAC,CAAC,0BAA0B,CAAC,CAAC,EAC1C,IAAA,uBAAY,EAAC,CAAC,KAAK,CAAC,CAAC,CACtB,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
import { type Tree } from '@nx/devkit';
|
|
6
|
+
/**
|
|
7
|
+
* Ensures the shared scripts package exists and adds infra-deploy/infra-destroy
|
|
8
|
+
* scripts to packages/common/scripts/src/infra/. Called by ts#infra when
|
|
9
|
+
* stageConfig is enabled.
|
|
10
|
+
*/
|
|
11
|
+
export declare function sharedInfraScriptsGenerator(tree: Tree): Promise<void>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.sharedInfraScriptsGenerator = sharedInfraScriptsGenerator;
|
|
4
|
+
/**
|
|
5
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
6
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
7
|
+
*/
|
|
8
|
+
const devkit_1 = require("@nx/devkit");
|
|
9
|
+
const format_1 = require("./format");
|
|
10
|
+
const npm_scope_1 = require("./npm-scope");
|
|
11
|
+
const pkg_manager_1 = require("./pkg-manager");
|
|
12
|
+
const shared_constructs_constants_1 = require("./shared-constructs-constants");
|
|
13
|
+
const shared_scripts_1 = require("./shared-scripts");
|
|
14
|
+
const versions_1 = require("./versions");
|
|
15
|
+
/**
|
|
16
|
+
* Ensures the shared scripts package exists and adds infra-deploy/infra-destroy
|
|
17
|
+
* scripts to packages/common/scripts/src/infra/. Called by ts#infra when
|
|
18
|
+
* stageConfig is enabled.
|
|
19
|
+
*/
|
|
20
|
+
async function sharedInfraScriptsGenerator(tree) {
|
|
21
|
+
const scriptsDir = (0, devkit_1.joinPathFragments)(shared_constructs_constants_1.PACKAGES_DIR, shared_constructs_constants_1.SHARED_SCRIPTS_DIR);
|
|
22
|
+
await (0, shared_scripts_1.ensureSharedScriptsProject)(tree);
|
|
23
|
+
const npmScopePrefix = (0, npm_scope_1.getNpmScopePrefix)(tree);
|
|
24
|
+
const scopeAlias = (0, npm_scope_1.toScopeAlias)(npmScopePrefix);
|
|
25
|
+
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', shared_constructs_constants_1.SHARED_SCRIPTS_DIR, 'src', 'infra'), (0, devkit_1.joinPathFragments)(scriptsDir, 'src', 'infra'), { scopeAlias }, { overwriteStrategy: devkit_1.OverwriteStrategy.KeepExisting });
|
|
26
|
+
// Used by deploy-time scripts for assumeRole
|
|
27
|
+
(0, devkit_1.addDependenciesToPackageJson)(tree, {}, (0, versions_1.withVersions)(['@aws-sdk/client-sts', '@aws-sdk/credential-providers']));
|
|
28
|
+
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', 'common', 'readme'), scriptsDir, {
|
|
29
|
+
fullyQualifiedName: `${npmScopePrefix}${shared_constructs_constants_1.SHARED_SCRIPTS_NAME}`,
|
|
30
|
+
name: shared_constructs_constants_1.SHARED_SCRIPTS_NAME,
|
|
31
|
+
pkgMgrCmd: (0, pkg_manager_1.getPackageManagerDisplayCommands)().exec,
|
|
32
|
+
}, { overwriteStrategy: devkit_1.OverwriteStrategy.Overwrite });
|
|
33
|
+
await (0, format_1.formatFilesInSubtree)(tree);
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=shared-infra-scripts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared-infra-scripts.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-infra-scripts.ts"],"names":[],"mappings":";;AA2BA,kEAoCC;AA/DD;;;GAGG;AACH,uCAMoB;AACpB,qCAAgD;AAChD,2CAA8D;AAC9D,+CAAiE;AACjE,+EAIuC;AACvC,qDAA8D;AAC9D,yCAA0C;AAE1C;;;;GAIG;AACI,KAAK,UAAU,2BAA2B,CAAC,IAAU;IAC1D,MAAM,UAAU,GAAG,IAAA,0BAAiB,EAAC,0CAAY,EAAE,gDAAkB,CAAC,CAAC;IAEvE,MAAM,IAAA,2CAA0B,EAAC,IAAI,CAAC,CAAC;IAEvC,MAAM,cAAc,GAAG,IAAA,6BAAiB,EAAC,IAAI,CAAC,CAAC;IAC/C,MAAM,UAAU,GAAG,IAAA,wBAAY,EAAC,cAAc,CAAC,CAAC;IAEhD,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EAAC,SAAS,EAAE,OAAO,EAAE,gDAAkB,EAAE,KAAK,EAAE,OAAO,CAAC,EACzE,IAAA,0BAAiB,EAAC,UAAU,EAAE,KAAK,EAAE,OAAO,CAAC,EAC7C,EAAE,UAAU,EAAE,EACd,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,YAAY,EAAE,CACtD,CAAC;IAEF,6CAA6C;IAC7C,IAAA,qCAA4B,EAC1B,IAAI,EACJ,EAAE,EACF,IAAA,uBAAY,EAAC,CAAC,qBAAqB,EAAE,+BAA+B,CAAC,CAAC,CACvE,CAAC;IAEF,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,CAAC,EACzD,UAAU,EACV;QACE,kBAAkB,EAAE,GAAG,cAAc,GAAG,iDAAmB,EAAE;QAC7D,IAAI,EAAE,iDAAmB;QACzB,SAAS,EAAE,IAAA,8CAAgC,GAAE,CAAC,IAAI;KACnD,EACD,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,SAAS,EAAE,CACnD,CAAC;IAEF,MAAM,IAAA,6BAAoB,EAAC,IAAI,CAAC,CAAC;AACnC,CAAC"}
|
|
@@ -5,8 +5,5 @@
|
|
|
5
5
|
import { type Tree } from '@nx/devkit';
|
|
6
6
|
/**
|
|
7
7
|
* Lazily creates the shared scripts package at packages/common/scripts/.
|
|
8
|
-
* Contains infra-deploy and infra-destroy scripts that resolve
|
|
9
|
-
* credentials from infra-config and call CDK.
|
|
10
|
-
* Invoked via `tsx packages/common/scripts/src/infra-deploy.ts` from NX targets.
|
|
11
8
|
*/
|
|
12
|
-
export declare function
|
|
9
|
+
export declare function ensureSharedScriptsProject(tree: Tree): Promise<void>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ensureSharedScriptsProject = ensureSharedScriptsProject;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
/**
|
|
6
6
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
@@ -8,41 +8,20 @@ const tslib_1 = require("tslib");
|
|
|
8
8
|
*/
|
|
9
9
|
const devkit_1 = require("@nx/devkit");
|
|
10
10
|
const generator_1 = tslib_1.__importDefault(require("../ts/lib/generator"));
|
|
11
|
-
const format_1 = require("./format");
|
|
12
|
-
const npm_scope_1 = require("./npm-scope");
|
|
13
|
-
const pkg_manager_1 = require("./pkg-manager");
|
|
14
11
|
const shared_constructs_constants_1 = require("./shared-constructs-constants");
|
|
15
|
-
const versions_1 = require("./versions");
|
|
16
12
|
/**
|
|
17
13
|
* Lazily creates the shared scripts package at packages/common/scripts/.
|
|
18
|
-
* Contains infra-deploy and infra-destroy scripts that resolve
|
|
19
|
-
* credentials from infra-config and call CDK.
|
|
20
|
-
* Invoked via `tsx packages/common/scripts/src/infra-deploy.ts` from NX targets.
|
|
21
14
|
*/
|
|
22
|
-
async function
|
|
15
|
+
async function ensureSharedScriptsProject(tree) {
|
|
23
16
|
const scriptsDir = (0, devkit_1.joinPathFragments)(shared_constructs_constants_1.PACKAGES_DIR, shared_constructs_constants_1.SHARED_SCRIPTS_DIR);
|
|
24
|
-
// Don't recreate if it already exists
|
|
25
17
|
if (tree.exists((0, devkit_1.joinPathFragments)(scriptsDir, 'project.json'))) {
|
|
26
18
|
return;
|
|
27
19
|
}
|
|
28
|
-
const npmScopePrefix = (0, npm_scope_1.getNpmScopePrefix)(tree);
|
|
29
|
-
const scopeAlias = (0, npm_scope_1.toScopeAlias)(npmScopePrefix);
|
|
30
20
|
await (0, generator_1.default)(tree, {
|
|
31
21
|
name: shared_constructs_constants_1.SHARED_SCRIPTS_NAME,
|
|
32
22
|
directory: shared_constructs_constants_1.PACKAGES_DIR,
|
|
33
23
|
subDirectory: shared_constructs_constants_1.SHARED_SCRIPTS_DIR,
|
|
34
24
|
});
|
|
35
|
-
// Replace default src/ with our templates
|
|
36
25
|
tree.delete((0, devkit_1.joinPathFragments)(scriptsDir, 'src'));
|
|
37
|
-
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', shared_constructs_constants_1.SHARED_SCRIPTS_DIR, 'src'), (0, devkit_1.joinPathFragments)(scriptsDir, 'src'), { scopeAlias }, { overwriteStrategy: devkit_1.OverwriteStrategy.KeepExisting });
|
|
38
|
-
// Add AWS SDK deps as dev dependencies (used by deploy-time scripts for assumeRole)
|
|
39
|
-
(0, devkit_1.addDependenciesToPackageJson)(tree, {}, (0, versions_1.withVersions)(['@aws-sdk/client-sts', '@aws-sdk/credential-providers']));
|
|
40
|
-
// Generate README
|
|
41
|
-
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', 'common', 'readme'), scriptsDir, {
|
|
42
|
-
fullyQualifiedName: `${npmScopePrefix}${shared_constructs_constants_1.SHARED_SCRIPTS_NAME}`,
|
|
43
|
-
name: shared_constructs_constants_1.SHARED_SCRIPTS_NAME,
|
|
44
|
-
pkgMgrCmd: (0, pkg_manager_1.getPackageManagerDisplayCommands)().exec,
|
|
45
|
-
}, { overwriteStrategy: devkit_1.OverwriteStrategy.Overwrite });
|
|
46
|
-
await (0, format_1.formatFilesInSubtree)(tree);
|
|
47
26
|
}
|
|
48
27
|
//# sourceMappingURL=shared-scripts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-scripts.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-scripts.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"shared-scripts.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-scripts.ts"],"names":[],"mappings":";;AAeA,gEAWC;;AA1BD;;;GAGG;AACH,uCAA0D;AAC1D,4EAAqD;AACrD,+EAIuC;AAEvC;;GAEG;AACI,KAAK,UAAU,0BAA0B,CAAC,IAAU;IACzD,MAAM,UAAU,GAAG,IAAA,0BAAiB,EAAC,0CAAY,EAAE,gDAAkB,CAAC,CAAC;IACvE,IAAI,IAAI,CAAC,MAAM,CAAC,IAAA,0BAAiB,EAAC,UAAU,EAAE,cAAc,CAAC,CAAC,EAAE,CAAC;QAC/D,OAAO;IACT,CAAC;IACD,MAAM,IAAA,mBAAkB,EAAC,IAAI,EAAE;QAC7B,IAAI,EAAE,iDAAmB;QACzB,SAAS,EAAE,0CAAY;QACvB,YAAY,EAAE,gDAAkB;KACjC,CAAC,CAAC;IACH,IAAI,CAAC,MAAM,CAAC,IAAA,0BAAiB,EAAC,UAAU,EAAE,KAAK,CAAC,CAAC,CAAC;AACpD,CAAC"}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
export declare const TS_VERSIONS: {
|
|
9
9
|
readonly '@a2a-js/sdk': "0.3.13";
|
|
10
10
|
readonly '@aws/aws-distro-opentelemetry-node-autoinstrumentation': "0.11.0";
|
|
11
|
-
readonly '@aws-sdk/client-dynamodb': "3.
|
|
12
|
-
readonly '@aws-sdk/client-bedrock-runtime': "3.
|
|
13
|
-
readonly '@aws-sdk/client-s3': "3.
|
|
14
|
-
readonly '@aws-sdk/client-sts': "3.
|
|
15
|
-
readonly '@aws-sdk/credential-providers': "3.
|
|
16
|
-
readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.
|
|
17
|
-
readonly '@aws-sdk/client-secrets-manager': "3.
|
|
18
|
-
readonly '@aws-sdk/rds-signer': "3.
|
|
11
|
+
readonly '@aws-sdk/client-dynamodb': "3.1068.0";
|
|
12
|
+
readonly '@aws-sdk/client-bedrock-runtime': "3.1068.0";
|
|
13
|
+
readonly '@aws-sdk/client-s3': "3.1068.0";
|
|
14
|
+
readonly '@aws-sdk/client-sts': "3.1068.0";
|
|
15
|
+
readonly '@aws-sdk/credential-providers': "3.1068.0";
|
|
16
|
+
readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.45";
|
|
17
|
+
readonly '@aws-sdk/client-secrets-manager': "3.1068.0";
|
|
18
|
+
readonly '@aws-sdk/rds-signer': "3.1068.0";
|
|
19
19
|
readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
|
|
20
20
|
readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
|
|
21
21
|
readonly '@aws-lambda-powertools/logger': "2.33.1";
|
|
@@ -23,8 +23,8 @@ export declare const TS_VERSIONS: {
|
|
|
23
23
|
readonly '@aws-lambda-powertools/parameters': "2.33.1";
|
|
24
24
|
readonly '@aws-lambda-powertools/tracer': "2.33.1";
|
|
25
25
|
readonly '@aws-lambda-powertools/parser': "2.33.1";
|
|
26
|
-
readonly '@aws-sdk/client-appconfigdata': "3.
|
|
27
|
-
readonly '@middy/core': "7.6.
|
|
26
|
+
readonly '@aws-sdk/client-appconfigdata': "3.1068.0";
|
|
27
|
+
readonly '@middy/core': "7.6.7";
|
|
28
28
|
readonly '@nxlv/python': "22.2.0";
|
|
29
29
|
readonly '@nx-extend/terraform': "10.2.1";
|
|
30
30
|
readonly '@nx/devkit': "22.7.5";
|
|
@@ -33,45 +33,45 @@ export declare const TS_VERSIONS: {
|
|
|
33
33
|
readonly '@modelcontextprotocol/sdk': "1.29.0";
|
|
34
34
|
readonly '@modelcontextprotocol/inspector': "0.19.0";
|
|
35
35
|
readonly '@ag-ui/aws-strands': "0.1.0";
|
|
36
|
-
readonly '@ag-ui/client': "0.0.
|
|
37
|
-
readonly '@ag-ui/core': "0.0.
|
|
38
|
-
readonly '@ag-ui/encoder': "0.0.
|
|
39
|
-
readonly 'agent-chat-cli': "0.
|
|
40
|
-
readonly '@copilotkit/react-core': "1.60.
|
|
36
|
+
readonly '@ag-ui/client': "0.0.57";
|
|
37
|
+
readonly '@ag-ui/core': "0.0.57";
|
|
38
|
+
readonly '@ag-ui/encoder': "0.0.57";
|
|
39
|
+
readonly 'agent-chat-cli': "0.3.0";
|
|
40
|
+
readonly '@copilotkit/react-core': "1.60.1";
|
|
41
41
|
readonly rxjs: "7.8.2";
|
|
42
|
-
readonly '@strands-agents/sdk': "1.
|
|
42
|
+
readonly '@strands-agents/sdk': "1.5.0";
|
|
43
43
|
readonly '@tanstack/react-router': "1.170.15";
|
|
44
44
|
readonly '@tanstack/router-plugin': "1.168.18";
|
|
45
45
|
readonly '@tanstack/router-generator': "1.167.17";
|
|
46
46
|
readonly '@tanstack/virtual-file-routes': "1.162.0";
|
|
47
47
|
readonly '@tanstack/router-utils': "1.162.2";
|
|
48
|
-
readonly '@cloudscape-design/board-components': "3.0.
|
|
49
|
-
readonly '@cloudscape-design/chat-components': "1.0.
|
|
50
|
-
readonly '@cloudscape-design/components': "3.0.
|
|
51
|
-
readonly '@cloudscape-design/global-styles': "1.0.
|
|
48
|
+
readonly '@cloudscape-design/board-components': "3.0.190";
|
|
49
|
+
readonly '@cloudscape-design/chat-components': "1.0.139";
|
|
50
|
+
readonly '@cloudscape-design/components': "3.0.1310";
|
|
51
|
+
readonly '@cloudscape-design/global-styles': "1.0.60";
|
|
52
52
|
readonly '@tanstack/react-query': "5.101.0";
|
|
53
53
|
readonly '@tanstack/react-query-devtools': "5.101.0";
|
|
54
54
|
readonly '@trpc/tanstack-react-query': "11.17.0";
|
|
55
55
|
readonly '@trpc/client': "11.17.0";
|
|
56
56
|
readonly '@trpc/server': "11.17.0";
|
|
57
|
-
readonly '@types/node': "25.9.
|
|
57
|
+
readonly '@types/node': "25.9.3";
|
|
58
58
|
readonly '@types/aws-lambda': "8.10.162";
|
|
59
59
|
readonly '@types/cors': "2.8.19";
|
|
60
60
|
readonly '@types/pg': "8.20.0";
|
|
61
61
|
readonly '@types/ws': "8.18.1";
|
|
62
62
|
readonly '@types/express': "5.0.6";
|
|
63
|
-
readonly '@smithy/config-resolver': "4.5.
|
|
64
|
-
readonly '@smithy/node-config-provider': "4.4.
|
|
65
|
-
readonly '@smithy/node-http-handler': "4.7.
|
|
66
|
-
readonly '@smithy/types': "4.14.
|
|
63
|
+
readonly '@smithy/config-resolver': "4.5.7";
|
|
64
|
+
readonly '@smithy/node-config-provider': "4.4.7";
|
|
65
|
+
readonly '@smithy/node-http-handler': "4.7.8";
|
|
66
|
+
readonly '@smithy/types': "4.14.4";
|
|
67
67
|
readonly '@vitest/coverage-v8': "4.1.8";
|
|
68
68
|
readonly '@vitest/ui': "4.1.8";
|
|
69
69
|
readonly '@astrojs/react': "5.0.7";
|
|
70
|
-
readonly '@astrojs/starlight': "0.
|
|
71
|
-
readonly astro: "6.4.
|
|
70
|
+
readonly '@astrojs/starlight': "0.40.0";
|
|
71
|
+
readonly astro: "6.4.6";
|
|
72
72
|
readonly aws4fetch: "1.0.20";
|
|
73
73
|
readonly 'aws-cdk': "2.1126.0";
|
|
74
|
-
readonly 'aws-cdk-lib': "2.
|
|
74
|
+
readonly 'aws-cdk-lib': "2.259.0";
|
|
75
75
|
readonly 'aws-xray-sdk-core': "3.12.0";
|
|
76
76
|
readonly constructs: "10.6.0";
|
|
77
77
|
readonly cors: "2.8.6";
|
|
@@ -79,11 +79,11 @@ export declare const TS_VERSIONS: {
|
|
|
79
79
|
readonly 'class-variance-authority': "0.7.1";
|
|
80
80
|
readonly clsx: "2.1.1";
|
|
81
81
|
readonly commander: "14.0.3";
|
|
82
|
-
readonly electrodb: "3.9.
|
|
83
|
-
readonly esbuild: "0.28.
|
|
82
|
+
readonly electrodb: "3.9.1";
|
|
83
|
+
readonly esbuild: "0.28.1";
|
|
84
84
|
readonly 'event-source-polyfill': "1.0.31";
|
|
85
85
|
readonly '@types/event-source-polyfill': "1.0.5";
|
|
86
|
-
readonly '@biomejs/biome': "2.
|
|
86
|
+
readonly '@biomejs/biome': "2.5.0";
|
|
87
87
|
readonly '@prisma/adapter-mariadb': "7.8.0";
|
|
88
88
|
readonly '@prisma/adapter-pg': "7.8.0";
|
|
89
89
|
readonly '@prisma/client': "7.8.0";
|
|
@@ -95,7 +95,7 @@ export declare const TS_VERSIONS: {
|
|
|
95
95
|
readonly 'fs-extra': "11.3.5";
|
|
96
96
|
readonly '@types/fs-extra': "11.0.4";
|
|
97
97
|
readonly 'make-dir-cli': "4.0.0";
|
|
98
|
-
readonly mariadb: "3.5.
|
|
98
|
+
readonly mariadb: "3.5.3";
|
|
99
99
|
readonly ncp: "2.0.0";
|
|
100
100
|
readonly 'npm-check-updates': "19.6.6";
|
|
101
101
|
readonly 'oidc-client-ts': "3.5.0";
|
|
@@ -105,16 +105,16 @@ export declare const TS_VERSIONS: {
|
|
|
105
105
|
readonly react: "19.2.7";
|
|
106
106
|
readonly 'react-dom': "19.2.7";
|
|
107
107
|
readonly rimraf: "6.1.3";
|
|
108
|
-
readonly rolldown: "1.
|
|
108
|
+
readonly rolldown: "1.1.1";
|
|
109
109
|
readonly 'simple-git': "3.36.0";
|
|
110
110
|
readonly 'source-map-support': "0.5.21";
|
|
111
111
|
readonly 'starlight-blog': "0.26.1";
|
|
112
112
|
readonly tailwindcss: "4.2.2";
|
|
113
113
|
readonly '@tailwindcss/vite': "4.2.2";
|
|
114
114
|
readonly tsx: "4.22.4";
|
|
115
|
-
readonly 'lucide-react': "1.
|
|
115
|
+
readonly 'lucide-react': "1.18.0";
|
|
116
116
|
readonly 'radix-ui': "1.5.0";
|
|
117
|
-
readonly shadcn: "4.
|
|
117
|
+
readonly shadcn: "4.11.0";
|
|
118
118
|
readonly 'tw-animate-css': "1.4.0";
|
|
119
119
|
readonly 'tailwind-merge': "3.6.0";
|
|
120
120
|
readonly vite: "8.0.16";
|
|
@@ -128,7 +128,7 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
|
128
128
|
* Add versions to the given dependencies
|
|
129
129
|
*/
|
|
130
130
|
export declare const withVersions: (deps: ITsDepVersion[]) => {
|
|
131
|
-
[k: string]: "0.3.13" | "0.11.0" | "3.
|
|
131
|
+
[k: string]: "0.3.13" | "0.11.0" | "3.1068.0" | "3.972.45" | "1.0.0-alpha.10" | "2.33.1" | "7.6.7" | "22.2.0" | "10.2.1" | "22.7.5" | "1.29.0" | "0.19.0" | "0.1.0" | "0.0.57" | "0.3.0" | "1.60.1" | "7.8.2" | "1.5.0" | "1.170.15" | "1.168.18" | "1.167.17" | "1.162.0" | "1.162.2" | "3.0.190" | "1.0.139" | "3.0.1310" | "1.0.60" | "5.101.0" | "11.17.0" | "25.9.3" | "8.10.162" | "2.8.19" | "8.20.0" | "8.18.1" | "5.0.6" | "4.5.7" | "4.4.7" | "4.7.8" | "4.14.4" | "4.1.8" | "5.0.7" | "0.40.0" | "6.4.6" | "1.0.20" | "2.1126.0" | "2.259.0" | "3.12.0" | "10.6.0" | "2.8.6" | "5.6.2" | "0.7.1" | "2.1.1" | "14.0.3" | "3.9.1" | "0.28.1" | "1.0.31" | "1.0.5" | "2.5.0" | "7.8.0" | "6.0.1" | "3.1.5" | "5.2.1" | "3.3.3" | "9.1.7" | "11.3.5" | "11.0.4" | "4.0.0" | "3.5.3" | "2.0.0" | "19.6.6" | "3.5.0" | "8.21.0" | "3.3.1" | "19.2.7" | "6.1.3" | "1.1.1" | "3.36.0" | "0.5.21" | "0.26.1" | "4.2.2" | "4.22.4" | "1.18.0" | "4.11.0" | "1.4.0" | "3.6.0" | "8.0.16" | "6.0.3" | "4.4.3";
|
|
132
132
|
};
|
|
133
133
|
/**
|
|
134
134
|
* Versions for Python dependencies added by generators
|
|
@@ -140,19 +140,20 @@ export declare const PY_VERSIONS: {
|
|
|
140
140
|
readonly 'aws-lambda-powertools[tracer]': "==3.29.0";
|
|
141
141
|
readonly 'aws-lambda-powertools[parser]': "==3.29.0";
|
|
142
142
|
readonly 'aws-opentelemetry-distro': "==0.17.1";
|
|
143
|
-
readonly 'bedrock-agentcore': "==1.14.
|
|
144
|
-
readonly boto3: "==1.43.
|
|
145
|
-
readonly checkov: "==3.
|
|
146
|
-
readonly fastapi: "==0.
|
|
147
|
-
readonly 'fastapi[standard]': "==0.
|
|
143
|
+
readonly 'bedrock-agentcore': "==1.14.1";
|
|
144
|
+
readonly boto3: "==1.43.29";
|
|
145
|
+
readonly checkov: "==3.3.1";
|
|
146
|
+
readonly fastapi: "==0.137.1";
|
|
147
|
+
readonly 'fastapi[standard]': "==0.137.1";
|
|
148
148
|
readonly httpx: "==0.28.1";
|
|
149
149
|
readonly mcp: "==1.27.2";
|
|
150
150
|
readonly 'pip-check-updates': "==0.28.0";
|
|
151
151
|
readonly 'pip-licenses': "==5.5.5";
|
|
152
|
-
readonly 'strands-agents': "==1.
|
|
153
|
-
readonly 'strands-agents[a2a]': "==1.
|
|
152
|
+
readonly 'strands-agents': "==1.43.0";
|
|
153
|
+
readonly 'strands-agents[a2a]': "==1.43.0";
|
|
154
154
|
readonly 'strands-agents-tools': "==0.8.0";
|
|
155
|
-
readonly ty: "==0.0.
|
|
155
|
+
readonly ty: "==0.0.49";
|
|
156
|
+
readonly pynamodb: "==6.1.0";
|
|
156
157
|
readonly uvicorn: "==0.49.0";
|
|
157
158
|
};
|
|
158
159
|
export type IPyDepVersion = keyof typeof PY_VERSIONS;
|
package/src/utils/versions.js
CHANGED
|
@@ -11,14 +11,14 @@ exports.VENDORED_VERSIONS = exports.withPyVersions = exports.PY_VERSIONS = expor
|
|
|
11
11
|
exports.TS_VERSIONS = {
|
|
12
12
|
'@a2a-js/sdk': '0.3.13',
|
|
13
13
|
'@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.11.0',
|
|
14
|
-
'@aws-sdk/client-dynamodb': '3.
|
|
15
|
-
'@aws-sdk/client-bedrock-runtime': '3.
|
|
16
|
-
'@aws-sdk/client-s3': '3.
|
|
17
|
-
'@aws-sdk/client-sts': '3.
|
|
18
|
-
'@aws-sdk/credential-providers': '3.
|
|
19
|
-
'@aws-sdk/credential-provider-cognito-identity': '3.972.
|
|
20
|
-
'@aws-sdk/client-secrets-manager': '3.
|
|
21
|
-
'@aws-sdk/rds-signer': '3.
|
|
14
|
+
'@aws-sdk/client-dynamodb': '3.1068.0',
|
|
15
|
+
'@aws-sdk/client-bedrock-runtime': '3.1068.0',
|
|
16
|
+
'@aws-sdk/client-s3': '3.1068.0',
|
|
17
|
+
'@aws-sdk/client-sts': '3.1068.0',
|
|
18
|
+
'@aws-sdk/credential-providers': '3.1068.0',
|
|
19
|
+
'@aws-sdk/credential-provider-cognito-identity': '3.972.45',
|
|
20
|
+
'@aws-sdk/client-secrets-manager': '3.1068.0',
|
|
21
|
+
'@aws-sdk/rds-signer': '3.1068.0',
|
|
22
22
|
'@aws-smithy/server-apigateway': '1.0.0-alpha.10',
|
|
23
23
|
'@aws-smithy/server-node': '1.0.0-alpha.10',
|
|
24
24
|
'@aws-lambda-powertools/logger': '2.33.1',
|
|
@@ -26,8 +26,8 @@ exports.TS_VERSIONS = {
|
|
|
26
26
|
'@aws-lambda-powertools/parameters': '2.33.1',
|
|
27
27
|
'@aws-lambda-powertools/tracer': '2.33.1',
|
|
28
28
|
'@aws-lambda-powertools/parser': '2.33.1',
|
|
29
|
-
'@aws-sdk/client-appconfigdata': '3.
|
|
30
|
-
'@middy/core': '7.6.
|
|
29
|
+
'@aws-sdk/client-appconfigdata': '3.1068.0',
|
|
30
|
+
'@middy/core': '7.6.7',
|
|
31
31
|
'@nxlv/python': '22.2.0',
|
|
32
32
|
'@nx-extend/terraform': '10.2.1',
|
|
33
33
|
'@nx/devkit': '22.7.5',
|
|
@@ -36,45 +36,45 @@ exports.TS_VERSIONS = {
|
|
|
36
36
|
'@modelcontextprotocol/sdk': '1.29.0',
|
|
37
37
|
'@modelcontextprotocol/inspector': '0.19.0',
|
|
38
38
|
'@ag-ui/aws-strands': '0.1.0',
|
|
39
|
-
'@ag-ui/client': '0.0.
|
|
40
|
-
'@ag-ui/core': '0.0.
|
|
41
|
-
'@ag-ui/encoder': '0.0.
|
|
42
|
-
'agent-chat-cli': '0.
|
|
43
|
-
'@copilotkit/react-core': '1.60.
|
|
39
|
+
'@ag-ui/client': '0.0.57',
|
|
40
|
+
'@ag-ui/core': '0.0.57',
|
|
41
|
+
'@ag-ui/encoder': '0.0.57',
|
|
42
|
+
'agent-chat-cli': '0.3.0',
|
|
43
|
+
'@copilotkit/react-core': '1.60.1',
|
|
44
44
|
rxjs: '7.8.2',
|
|
45
|
-
'@strands-agents/sdk': '1.
|
|
45
|
+
'@strands-agents/sdk': '1.5.0',
|
|
46
46
|
'@tanstack/react-router': '1.170.15',
|
|
47
47
|
'@tanstack/router-plugin': '1.168.18',
|
|
48
48
|
'@tanstack/router-generator': '1.167.17',
|
|
49
49
|
'@tanstack/virtual-file-routes': '1.162.0',
|
|
50
50
|
'@tanstack/router-utils': '1.162.2',
|
|
51
|
-
'@cloudscape-design/board-components': '3.0.
|
|
52
|
-
'@cloudscape-design/chat-components': '1.0.
|
|
53
|
-
'@cloudscape-design/components': '3.0.
|
|
54
|
-
'@cloudscape-design/global-styles': '1.0.
|
|
51
|
+
'@cloudscape-design/board-components': '3.0.190',
|
|
52
|
+
'@cloudscape-design/chat-components': '1.0.139',
|
|
53
|
+
'@cloudscape-design/components': '3.0.1310',
|
|
54
|
+
'@cloudscape-design/global-styles': '1.0.60',
|
|
55
55
|
'@tanstack/react-query': '5.101.0',
|
|
56
56
|
'@tanstack/react-query-devtools': '5.101.0',
|
|
57
57
|
'@trpc/tanstack-react-query': '11.17.0',
|
|
58
58
|
'@trpc/client': '11.17.0',
|
|
59
59
|
'@trpc/server': '11.17.0',
|
|
60
|
-
'@types/node': '25.9.
|
|
60
|
+
'@types/node': '25.9.3',
|
|
61
61
|
'@types/aws-lambda': '8.10.162',
|
|
62
62
|
'@types/cors': '2.8.19',
|
|
63
63
|
'@types/pg': '8.20.0',
|
|
64
64
|
'@types/ws': '8.18.1',
|
|
65
65
|
'@types/express': '5.0.6',
|
|
66
|
-
'@smithy/config-resolver': '4.5.
|
|
67
|
-
'@smithy/node-config-provider': '4.4.
|
|
68
|
-
'@smithy/node-http-handler': '4.7.
|
|
69
|
-
'@smithy/types': '4.14.
|
|
66
|
+
'@smithy/config-resolver': '4.5.7',
|
|
67
|
+
'@smithy/node-config-provider': '4.4.7',
|
|
68
|
+
'@smithy/node-http-handler': '4.7.8',
|
|
69
|
+
'@smithy/types': '4.14.4',
|
|
70
70
|
'@vitest/coverage-v8': '4.1.8',
|
|
71
71
|
'@vitest/ui': '4.1.8',
|
|
72
72
|
'@astrojs/react': '5.0.7',
|
|
73
|
-
'@astrojs/starlight': '0.
|
|
74
|
-
astro: '6.4.
|
|
73
|
+
'@astrojs/starlight': '0.40.0',
|
|
74
|
+
astro: '6.4.6',
|
|
75
75
|
aws4fetch: '1.0.20',
|
|
76
76
|
'aws-cdk': '2.1126.0',
|
|
77
|
-
'aws-cdk-lib': '2.
|
|
77
|
+
'aws-cdk-lib': '2.259.0',
|
|
78
78
|
'aws-xray-sdk-core': '3.12.0',
|
|
79
79
|
constructs: '10.6.0',
|
|
80
80
|
cors: '2.8.6',
|
|
@@ -82,11 +82,11 @@ exports.TS_VERSIONS = {
|
|
|
82
82
|
'class-variance-authority': '0.7.1',
|
|
83
83
|
clsx: '2.1.1',
|
|
84
84
|
commander: '14.0.3',
|
|
85
|
-
electrodb: '3.9.
|
|
86
|
-
esbuild: '0.28.
|
|
85
|
+
electrodb: '3.9.1',
|
|
86
|
+
esbuild: '0.28.1',
|
|
87
87
|
'event-source-polyfill': '1.0.31',
|
|
88
88
|
'@types/event-source-polyfill': '1.0.5',
|
|
89
|
-
'@biomejs/biome': '2.
|
|
89
|
+
'@biomejs/biome': '2.5.0',
|
|
90
90
|
'@prisma/adapter-mariadb': '7.8.0',
|
|
91
91
|
'@prisma/adapter-pg': '7.8.0',
|
|
92
92
|
'@prisma/client': '7.8.0',
|
|
@@ -98,7 +98,7 @@ exports.TS_VERSIONS = {
|
|
|
98
98
|
'fs-extra': '11.3.5',
|
|
99
99
|
'@types/fs-extra': '11.0.4',
|
|
100
100
|
'make-dir-cli': '4.0.0',
|
|
101
|
-
mariadb: '3.5.
|
|
101
|
+
mariadb: '3.5.3',
|
|
102
102
|
ncp: '2.0.0',
|
|
103
103
|
'npm-check-updates': '19.6.6',
|
|
104
104
|
'oidc-client-ts': '3.5.0',
|
|
@@ -108,16 +108,16 @@ exports.TS_VERSIONS = {
|
|
|
108
108
|
react: '19.2.7',
|
|
109
109
|
'react-dom': '19.2.7',
|
|
110
110
|
rimraf: '6.1.3',
|
|
111
|
-
rolldown: '1.
|
|
111
|
+
rolldown: '1.1.1',
|
|
112
112
|
'simple-git': '3.36.0',
|
|
113
113
|
'source-map-support': '0.5.21',
|
|
114
114
|
'starlight-blog': '0.26.1',
|
|
115
115
|
tailwindcss: '4.2.2',
|
|
116
116
|
'@tailwindcss/vite': '4.2.2',
|
|
117
117
|
tsx: '4.22.4',
|
|
118
|
-
'lucide-react': '1.
|
|
118
|
+
'lucide-react': '1.18.0',
|
|
119
119
|
'radix-ui': '1.5.0',
|
|
120
|
-
shadcn: '4.
|
|
120
|
+
shadcn: '4.11.0',
|
|
121
121
|
'tw-animate-css': '1.4.0',
|
|
122
122
|
'tailwind-merge': '3.6.0',
|
|
123
123
|
vite: '8.0.16',
|
|
@@ -141,19 +141,20 @@ exports.PY_VERSIONS = {
|
|
|
141
141
|
'aws-lambda-powertools[tracer]': '==3.29.0',
|
|
142
142
|
'aws-lambda-powertools[parser]': '==3.29.0',
|
|
143
143
|
'aws-opentelemetry-distro': '==0.17.1',
|
|
144
|
-
'bedrock-agentcore': '==1.14.
|
|
145
|
-
boto3: '==1.43.
|
|
146
|
-
checkov: '==3.
|
|
147
|
-
fastapi: '==0.
|
|
148
|
-
'fastapi[standard]': '==0.
|
|
144
|
+
'bedrock-agentcore': '==1.14.1',
|
|
145
|
+
boto3: '==1.43.29',
|
|
146
|
+
checkov: '==3.3.1',
|
|
147
|
+
fastapi: '==0.137.1',
|
|
148
|
+
'fastapi[standard]': '==0.137.1',
|
|
149
149
|
httpx: '==0.28.1',
|
|
150
150
|
mcp: '==1.27.2',
|
|
151
151
|
'pip-check-updates': '==0.28.0',
|
|
152
152
|
'pip-licenses': '==5.5.5',
|
|
153
|
-
'strands-agents': '==1.
|
|
154
|
-
'strands-agents[a2a]': '==1.
|
|
153
|
+
'strands-agents': '==1.43.0',
|
|
154
|
+
'strands-agents[a2a]': '==1.43.0',
|
|
155
155
|
'strands-agents-tools': '==0.8.0',
|
|
156
|
-
ty: '==0.0.
|
|
156
|
+
ty: '==0.0.49',
|
|
157
|
+
pynamodb: '==6.1.0',
|
|
157
158
|
uvicorn: '==0.49.0',
|
|
158
159
|
};
|
|
159
160
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH;;GAEG;AACU,QAAA,WAAW,GAAG;IACzB,aAAa,EAAE,QAAQ;IACvB,wDAAwD,EAAE,QAAQ;IAClE,0BAA0B,EAAE,UAAU;IACtC,iCAAiC,EAAE,UAAU;IAC7C,oBAAoB,EAAE,UAAU;IAChC,qBAAqB,EAAE,UAAU;IACjC,+BAA+B,EAAE,UAAU;IAC3C,+CAA+C,EAAE,UAAU;IAC3D,iCAAiC,EAAE,UAAU;IAC7C,qBAAqB,EAAE,UAAU;IACjC,+BAA+B,EAAE,gBAAgB;IACjD,yBAAyB,EAAE,gBAAgB;IAC3C,+BAA+B,EAAE,QAAQ;IACzC,gCAAgC,EAAE,QAAQ;IAC1C,mCAAmC,EAAE,QAAQ;IAC7C,+BAA+B,EAAE,QAAQ;IACzC,+BAA+B,EAAE,QAAQ;IACzC,+BAA+B,EAAE,UAAU;IAC3C,aAAa,EAAE,OAAO;IACtB,cAAc,EAAE,QAAQ;IACxB,sBAAsB,EAAE,QAAQ;IAChC,YAAY,EAAE,QAAQ;IACtB,WAAW,EAAE,QAAQ;IACrB,qBAAqB,EAAE,QAAQ;IAC/B,2BAA2B,EAAE,QAAQ;IACrC,iCAAiC,EAAE,QAAQ;IAC3C,oBAAoB,EAAE,OAAO;IAC7B,eAAe,EAAE,QAAQ;IACzB,aAAa,EAAE,QAAQ;IACvB,gBAAgB,EAAE,QAAQ;IAC1B,gBAAgB,EAAE,OAAO;IACzB,wBAAwB,EAAE,QAAQ;IAClC,IAAI,EAAE,OAAO;IACb,qBAAqB,EAAE,OAAO;IAC9B,wBAAwB,EAAE,UAAU;IACpC,yBAAyB,EAAE,UAAU;IACrC,4BAA4B,EAAE,UAAU;IACxC,+BAA+B,EAAE,SAAS;IAC1C,wBAAwB,EAAE,SAAS;IACnC,qCAAqC,EAAE,SAAS;IAChD,oCAAoC,EAAE,SAAS;IAC/C,+BAA+B,EAAE,UAAU;IAC3C,kCAAkC,EAAE,QAAQ;IAC5C,uBAAuB,EAAE,SAAS;IAClC,gCAAgC,EAAE,SAAS;IAC3C,4BAA4B,EAAE,SAAS;IACvC,cAAc,EAAE,SAAS;IACzB,cAAc,EAAE,SAAS;IACzB,aAAa,EAAE,QAAQ;IACvB,mBAAmB,EAAE,UAAU;IAC/B,aAAa,EAAE,QAAQ;IACvB,WAAW,EAAE,QAAQ;IACrB,WAAW,EAAE,QAAQ;IACrB,gBAAgB,EAAE,OAAO;IACzB,yBAAyB,EAAE,OAAO;IAClC,8BAA8B,EAAE,OAAO;IACvC,2BAA2B,EAAE,OAAO;IACpC,eAAe,EAAE,QAAQ;IACzB,qBAAqB,EAAE,OAAO;IAC9B,YAAY,EAAE,OAAO;IACrB,gBAAgB,EAAE,OAAO;IACzB,oBAAoB,EAAE,QAAQ;IAC9B,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,QAAQ;IACnB,SAAS,EAAE,UAAU;IACrB,aAAa,EAAE,SAAS;IACxB,mBAAmB,EAAE,QAAQ;IAC7B,UAAU,EAAE,QAAQ;IACpB,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,OAAO;IACd,0BAA0B,EAAE,OAAO;IACnC,IAAI,EAAE,OAAO;IACb,SAAS,EAAE,QAAQ;IACnB,SAAS,EAAE,OAAO;IAClB,OAAO,EAAE,QAAQ;IACjB,uBAAuB,EAAE,QAAQ;IACjC,8BAA8B,EAAE,OAAO;IACvC,gBAAgB,EAAE,
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
|