@aws/nx-plugin 0.100.0 → 0.102.0
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/generators.json +26 -19
- package/package.json +1 -1
- package/src/preset/__snapshots__/generator.spec.ts.snap +2 -0
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +12 -1
- package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +12 -1
- package/src/ts/astro-docs/__snapshots__/generator.spec.ts.snap +223 -0
- package/src/ts/astro-docs/files/base/README.md.template +63 -0
- package/src/ts/astro-docs/files/base/astro.config.mjs.template +47 -0
- package/src/ts/astro-docs/files/base/src/components/link.astro.template +25 -0
- package/src/ts/astro-docs/files/base/src/components/snippet.astro.template +20 -0
- package/src/ts/astro-docs/files/base/src/content/docs/en/blog/welcome.mdx.template +13 -0
- package/src/ts/astro-docs/files/base/src/content/docs/en/guides/getting-started.mdx.template +64 -0
- package/src/ts/astro-docs/files/base/src/content/docs/en/index.mdx.template +29 -0
- package/src/ts/astro-docs/files/base/src/content/docs/en/snippets/example.mdx.template +7 -0
- package/src/ts/astro-docs/files/base/src/content.config.ts.template +13 -0
- package/src/ts/astro-docs/files/base/src/styles/custom.css.template +1 -0
- package/src/ts/astro-docs/files/base/tsconfig.json.template +12 -0
- package/src/ts/astro-docs/files/translation/scripts/translate.config.json.template +10 -0
- package/src/ts/astro-docs/files/translation/scripts/translate.ts.template +430 -0
- package/src/ts/astro-docs/generator.d.ts +10 -0
- package/src/ts/astro-docs/generator.js +113 -0
- package/src/ts/astro-docs/generator.js.map +1 -0
- package/src/ts/astro-docs/schema.d.ts +30 -0
- package/src/ts/astro-docs/schema.json +62 -0
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +12 -1
- package/src/ts/strands-agent/__snapshots__/generator.spec.ts.snap +12 -1
- package/src/utils/agent-core-constructs/files/cdk/app/agent-core/__nameKebabCase__/__nameKebabCase__.ts.template +9 -1
- package/src/utils/versions.d.ts +13 -1
- package/src/utils/versions.js +12 -0
- package/src/utils/versions.js.map +1 -1
|
@@ -16,6 +16,7 @@ export * from './workspace.js';
|
|
|
16
16
|
exports[`ts#mcp-server generator > should match snapshot for BedrockAgentCoreRuntime generated constructs files > mcp-server-construct.ts 1`] = `
|
|
17
17
|
"import { Lazy, Names } from 'aws-cdk-lib';
|
|
18
18
|
import { Platform } from 'aws-cdk-lib/aws-ecr-assets';
|
|
19
|
+
import { Connections, IConnectable } from 'aws-cdk-lib/aws-ec2';
|
|
19
20
|
import { Construct } from 'constructs';
|
|
20
21
|
import * as path from 'path';
|
|
21
22
|
import * as url from 'url';
|
|
@@ -37,7 +38,10 @@ export type SnapshotBedrockServerProps = Omit<
|
|
|
37
38
|
| 'authorizerConfiguration'
|
|
38
39
|
>;
|
|
39
40
|
|
|
40
|
-
export class SnapshotBedrockServer
|
|
41
|
+
export class SnapshotBedrockServer
|
|
42
|
+
extends Construct
|
|
43
|
+
implements IGrantable, IConnectable
|
|
44
|
+
{
|
|
41
45
|
public readonly dockerImage: AgentRuntimeArtifact;
|
|
42
46
|
public readonly agentCoreRuntime: Runtime;
|
|
43
47
|
|
|
@@ -89,6 +93,13 @@ export class SnapshotBedrockServer extends Construct implements IGrantable {
|
|
|
89
93
|
return this.agentCoreRuntime.grantPrincipal;
|
|
90
94
|
}
|
|
91
95
|
|
|
96
|
+
/**
|
|
97
|
+
* Network connections for this agent runtime.
|
|
98
|
+
*/
|
|
99
|
+
public get connections(): Connections {
|
|
100
|
+
return this.agentCoreRuntime.connections;
|
|
101
|
+
}
|
|
102
|
+
|
|
92
103
|
/**
|
|
93
104
|
* Grants IAM permissions to invoke this agent runtime.
|
|
94
105
|
*
|
|
@@ -23,6 +23,7 @@ CMD [ "node", "--require", "@aws/aws-distro-opentelemetry-node-autoinstrumentati
|
|
|
23
23
|
exports[`ts#strands-agent generator > should match snapshot for BedrockAgentCoreRuntime generated constructs files > agent-construct.ts 1`] = `
|
|
24
24
|
"import { Lazy, Names } from 'aws-cdk-lib';
|
|
25
25
|
import { Platform } from 'aws-cdk-lib/aws-ecr-assets';
|
|
26
|
+
import { Connections, IConnectable } from 'aws-cdk-lib/aws-ec2';
|
|
26
27
|
import { Construct } from 'constructs';
|
|
27
28
|
import * as path from 'path';
|
|
28
29
|
import * as url from 'url';
|
|
@@ -49,7 +50,10 @@ export type SnapshotBedrockAgentProps = Omit<
|
|
|
49
50
|
| 'authorizerConfiguration'
|
|
50
51
|
>;
|
|
51
52
|
|
|
52
|
-
export class SnapshotBedrockAgent
|
|
53
|
+
export class SnapshotBedrockAgent
|
|
54
|
+
extends Construct
|
|
55
|
+
implements IGrantable, IConnectable
|
|
56
|
+
{
|
|
53
57
|
public readonly dockerImage: AgentRuntimeArtifact;
|
|
54
58
|
public readonly agentCoreRuntime: Runtime;
|
|
55
59
|
|
|
@@ -111,6 +115,13 @@ export class SnapshotBedrockAgent extends Construct implements IGrantable {
|
|
|
111
115
|
return this.agentCoreRuntime.grantPrincipal;
|
|
112
116
|
}
|
|
113
117
|
|
|
118
|
+
/**
|
|
119
|
+
* Network connections for this agent runtime.
|
|
120
|
+
*/
|
|
121
|
+
public get connections(): Connections {
|
|
122
|
+
return this.agentCoreRuntime.connections;
|
|
123
|
+
}
|
|
124
|
+
|
|
114
125
|
/**
|
|
115
126
|
* Grants IAM permissions to invoke this agent runtime.
|
|
116
127
|
*
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Lazy, Names } from 'aws-cdk-lib';
|
|
2
2
|
import { Platform } from 'aws-cdk-lib/aws-ecr-assets';
|
|
3
|
+
import { Connections, IConnectable } from 'aws-cdk-lib/aws-ec2';
|
|
3
4
|
import { Construct } from 'constructs';
|
|
4
5
|
import * as path from 'path';
|
|
5
6
|
import * as url from 'url';
|
|
@@ -45,7 +46,7 @@ export type <%- nameClassName %>Props = Omit<
|
|
|
45
46
|
};
|
|
46
47
|
<%_ } _%>
|
|
47
48
|
|
|
48
|
-
export class <%- nameClassName %> extends Construct implements IGrantable {
|
|
49
|
+
export class <%- nameClassName %> extends Construct implements IGrantable, IConnectable {
|
|
49
50
|
public readonly dockerImage: AgentRuntimeArtifact;
|
|
50
51
|
public readonly agentCoreRuntime: Runtime;
|
|
51
52
|
|
|
@@ -124,6 +125,13 @@ export class <%- nameClassName %> extends Construct implements IGrantable {
|
|
|
124
125
|
public get grantPrincipal(): IPrincipal {
|
|
125
126
|
return this.agentCoreRuntime.grantPrincipal;
|
|
126
127
|
}
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Network connections for this agent runtime.
|
|
131
|
+
*/
|
|
132
|
+
public get connections(): Connections {
|
|
133
|
+
return this.agentCoreRuntime.connections;
|
|
134
|
+
}
|
|
127
135
|
<%_ if (auth === 'IAM') { _%>
|
|
128
136
|
|
|
129
137
|
/**
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare const TS_VERSIONS: {
|
|
|
9
9
|
readonly '@a2a-js/sdk': "0.3.13";
|
|
10
10
|
readonly '@aws/aws-distro-opentelemetry-node-autoinstrumentation': "0.10.0";
|
|
11
11
|
readonly '@aws-sdk/client-dynamodb': "3.1029.0";
|
|
12
|
+
readonly '@aws-sdk/client-bedrock-runtime': "3.1029.0";
|
|
12
13
|
readonly '@aws-sdk/client-sts': "3.1029.0";
|
|
13
14
|
readonly '@aws-sdk/credential-providers': "3.1029.0";
|
|
14
15
|
readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
|
|
@@ -49,9 +50,13 @@ export declare const TS_VERSIONS: {
|
|
|
49
50
|
readonly '@types/cors': "2.8.19";
|
|
50
51
|
readonly '@types/ws': "8.18.1";
|
|
51
52
|
readonly '@types/express': "5.0.6";
|
|
53
|
+
readonly '@smithy/node-http-handler': "4.5.2";
|
|
52
54
|
readonly '@smithy/types': "4.14.0";
|
|
53
55
|
readonly '@vitest/coverage-v8': "4.1.4";
|
|
54
56
|
readonly '@vitest/ui': "4.1.4";
|
|
57
|
+
readonly '@astrojs/react': "5.0.3";
|
|
58
|
+
readonly '@astrojs/starlight': "0.38.3";
|
|
59
|
+
readonly astro: "6.1.5";
|
|
55
60
|
readonly aws4fetch: "1.0.20";
|
|
56
61
|
readonly 'aws-cdk': "2.1118.0";
|
|
57
62
|
readonly 'aws-cdk-lib': "2.248.0";
|
|
@@ -59,8 +64,10 @@ export declare const TS_VERSIONS: {
|
|
|
59
64
|
readonly 'aws-xray-sdk-core': "3.12.0";
|
|
60
65
|
readonly constructs: "10.6.0";
|
|
61
66
|
readonly cors: "2.8.6";
|
|
67
|
+
readonly chalk: "5.6.2";
|
|
62
68
|
readonly 'class-variance-authority': "0.7.1";
|
|
63
69
|
readonly clsx: "2.1.1";
|
|
70
|
+
readonly commander: "14.0.3";
|
|
64
71
|
readonly electrodb: "3.7.5";
|
|
65
72
|
readonly esbuild: "0.28.0";
|
|
66
73
|
readonly 'event-source-polyfill': "1.0.31";
|
|
@@ -69,6 +76,9 @@ export declare const TS_VERSIONS: {
|
|
|
69
76
|
readonly '@typescript-eslint/parser': "8.58.1";
|
|
70
77
|
readonly 'eslint-plugin-prettier': "5.5.5";
|
|
71
78
|
readonly express: "5.2.1";
|
|
79
|
+
readonly 'fast-glob': "3.3.3";
|
|
80
|
+
readonly 'fs-extra': "11.3.4";
|
|
81
|
+
readonly '@types/fs-extra': "11.0.4";
|
|
72
82
|
readonly 'jsonc-eslint-parser': "3.1.0";
|
|
73
83
|
readonly 'typescript-eslint': "8.58.1";
|
|
74
84
|
readonly 'make-dir-cli': "4.0.0";
|
|
@@ -81,7 +91,9 @@ export declare const TS_VERSIONS: {
|
|
|
81
91
|
readonly 'react-dom': "19.2.5";
|
|
82
92
|
readonly rimraf: "6.1.3";
|
|
83
93
|
readonly rolldown: "1.0.0-rc.15";
|
|
94
|
+
readonly 'simple-git': "3.36.0";
|
|
84
95
|
readonly 'source-map-support': "0.5.21";
|
|
96
|
+
readonly 'starlight-blog': "0.26.1";
|
|
85
97
|
readonly tailwindcss: "4.2.2";
|
|
86
98
|
readonly '@tailwindcss/vite': "4.2.2";
|
|
87
99
|
readonly tsx: "4.21.0";
|
|
@@ -101,7 +113,7 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
|
101
113
|
* Add versions to the given dependencies
|
|
102
114
|
*/
|
|
103
115
|
export declare const withVersions: (deps: ITsDepVersion[]) => {
|
|
104
|
-
[k: string]: "22.6.5" | "3.8.2" | "1.29.0" | "22.1.1" | "6.0.2" | "8.0.8" | "4.1.4" | "4.3.6" | "0.3.13" | "0.10.0" | "3.1029.0" | "1.0.0-alpha.10" | "2.32.0" | "7.2.1" | "10.2.1" | "0.19.0" | "0.0.52" | "1.56.2" | "7.8.1" | "1.0.0-rc.4" | "1.168.17" | "1.167.16" | "1.166.28" | "1.161.7" | "1.161.6" | "3.0.166" | "3.0.1272" | "1.0.57" | "5.99.0" | "11.16.0" | "25.6.0" | "8.10.161" | "2.8.19" | "8.18.1" | "5.0.6" | "4.14.0" | "1.0.20" | "2.1118.0" | "2.248.0" | "2.248.0-alpha.0" | "3.12.0" | "10.6.0" | "2.8.6" | "0.7.1" | "2.1.1" | "3.7.5" | "0.28.0" | "1.0.31" | "1.0.5" | "8.58.1" | "5.5.5" | "5.2.1" | "3.1.0" | "4.0.0" | "2.0.0" | "19.6.6" | "3.5.0" | "3.3.1" | "19.2.5" | "6.1.3" | "1.0.0-rc.15" | "0.5.21" | "4.2.2" | "4.21.0" | "1.8.0" | "1.4.3" | "4.2.0" | "1.4.0" | "8.20.0";
|
|
116
|
+
[k: string]: "22.6.5" | "3.8.2" | "1.29.0" | "22.1.1" | "3.3.3" | "6.0.2" | "8.0.8" | "4.1.4" | "4.3.6" | "0.3.13" | "0.10.0" | "3.1029.0" | "1.0.0-alpha.10" | "2.32.0" | "7.2.1" | "10.2.1" | "0.19.0" | "0.0.52" | "1.56.2" | "7.8.1" | "1.0.0-rc.4" | "1.168.17" | "1.167.16" | "1.166.28" | "1.161.7" | "1.161.6" | "3.0.166" | "3.0.1272" | "1.0.57" | "5.99.0" | "11.16.0" | "25.6.0" | "8.10.161" | "2.8.19" | "8.18.1" | "5.0.6" | "4.5.2" | "4.14.0" | "5.0.3" | "0.38.3" | "6.1.5" | "1.0.20" | "2.1118.0" | "2.248.0" | "2.248.0-alpha.0" | "3.12.0" | "10.6.0" | "2.8.6" | "5.6.2" | "0.7.1" | "2.1.1" | "14.0.3" | "3.7.5" | "0.28.0" | "1.0.31" | "1.0.5" | "8.58.1" | "5.5.5" | "5.2.1" | "11.3.4" | "11.0.4" | "3.1.0" | "4.0.0" | "2.0.0" | "19.6.6" | "3.5.0" | "3.3.1" | "19.2.5" | "6.1.3" | "1.0.0-rc.15" | "3.36.0" | "0.5.21" | "0.26.1" | "4.2.2" | "4.21.0" | "1.8.0" | "1.4.3" | "4.2.0" | "1.4.0" | "8.20.0";
|
|
105
117
|
};
|
|
106
118
|
/**
|
|
107
119
|
* Versions for Python dependencies added by generators
|
package/src/utils/versions.js
CHANGED
|
@@ -12,6 +12,7 @@ exports.TS_VERSIONS = {
|
|
|
12
12
|
'@a2a-js/sdk': '0.3.13',
|
|
13
13
|
'@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.10.0',
|
|
14
14
|
'@aws-sdk/client-dynamodb': '3.1029.0',
|
|
15
|
+
'@aws-sdk/client-bedrock-runtime': '3.1029.0',
|
|
15
16
|
'@aws-sdk/client-sts': '3.1029.0',
|
|
16
17
|
'@aws-sdk/credential-providers': '3.1029.0',
|
|
17
18
|
'@aws-smithy/server-apigateway': '1.0.0-alpha.10',
|
|
@@ -52,9 +53,13 @@ exports.TS_VERSIONS = {
|
|
|
52
53
|
'@types/cors': '2.8.19',
|
|
53
54
|
'@types/ws': '8.18.1',
|
|
54
55
|
'@types/express': '5.0.6',
|
|
56
|
+
'@smithy/node-http-handler': '4.5.2',
|
|
55
57
|
'@smithy/types': '4.14.0',
|
|
56
58
|
'@vitest/coverage-v8': '4.1.4',
|
|
57
59
|
'@vitest/ui': '4.1.4',
|
|
60
|
+
'@astrojs/react': '5.0.3',
|
|
61
|
+
'@astrojs/starlight': '0.38.3',
|
|
62
|
+
astro: '6.1.5',
|
|
58
63
|
aws4fetch: '1.0.20',
|
|
59
64
|
'aws-cdk': '2.1118.0',
|
|
60
65
|
'aws-cdk-lib': '2.248.0',
|
|
@@ -62,8 +67,10 @@ exports.TS_VERSIONS = {
|
|
|
62
67
|
'aws-xray-sdk-core': '3.12.0',
|
|
63
68
|
constructs: '10.6.0',
|
|
64
69
|
cors: '2.8.6',
|
|
70
|
+
chalk: '5.6.2',
|
|
65
71
|
'class-variance-authority': '0.7.1',
|
|
66
72
|
clsx: '2.1.1',
|
|
73
|
+
commander: '14.0.3',
|
|
67
74
|
electrodb: '3.7.5',
|
|
68
75
|
esbuild: '0.28.0',
|
|
69
76
|
'event-source-polyfill': '1.0.31',
|
|
@@ -72,6 +79,9 @@ exports.TS_VERSIONS = {
|
|
|
72
79
|
'@typescript-eslint/parser': '8.58.1',
|
|
73
80
|
'eslint-plugin-prettier': '5.5.5',
|
|
74
81
|
express: '5.2.1',
|
|
82
|
+
'fast-glob': '3.3.3',
|
|
83
|
+
'fs-extra': '11.3.4',
|
|
84
|
+
'@types/fs-extra': '11.0.4',
|
|
75
85
|
'jsonc-eslint-parser': '3.1.0',
|
|
76
86
|
'typescript-eslint': '8.58.1',
|
|
77
87
|
'make-dir-cli': '4.0.0',
|
|
@@ -84,7 +94,9 @@ exports.TS_VERSIONS = {
|
|
|
84
94
|
'react-dom': '19.2.5',
|
|
85
95
|
rimraf: '6.1.3',
|
|
86
96
|
rolldown: '1.0.0-rc.15',
|
|
97
|
+
'simple-git': '3.36.0',
|
|
87
98
|
'source-map-support': '0.5.21',
|
|
99
|
+
'starlight-blog': '0.26.1',
|
|
88
100
|
tailwindcss: '4.2.2',
|
|
89
101
|
'@tailwindcss/vite': '4.2.2',
|
|
90
102
|
tsx: '4.21.0',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
|