@aws/nx-plugin 0.107.0 → 0.108.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/LICENSE-THIRD-PARTY +2401 -175
- package/package.json +19 -8
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +13 -13
- package/src/mcp-server/generator-info.d.ts +95 -13
- package/src/mcp-server/generator-info.js +319 -164
- package/src/mcp-server/generator-info.js.map +1 -1
- package/src/mcp-server/guide-pipeline.d.ts +28 -0
- package/src/mcp-server/guide-pipeline.js +393 -0
- package/src/mcp-server/guide-pipeline.js.map +1 -0
- package/src/mcp-server/guide-render.d.ts +25 -0
- package/src/mcp-server/guide-render.js +50 -0
- package/src/mcp-server/guide-render.js.map +1 -0
- package/src/mcp-server/mdx-ast.d.ts +30 -0
- package/src/mcp-server/mdx-ast.js +96 -0
- package/src/mcp-server/mdx-ast.js.map +1 -0
- package/src/mcp-server/option-filter.d.ts +33 -0
- package/src/mcp-server/option-filter.js +119 -0
- package/src/mcp-server/option-filter.js.map +1 -0
- package/src/mcp-server/schema-registry.d.ts +36 -0
- package/src/mcp-server/schema-registry.js +79 -0
- package/src/mcp-server/schema-registry.js.map +1 -0
- package/src/mcp-server/tools/generator-guide.d.ts +7 -1
- package/src/mcp-server/tools/generator-guide.js +32 -4
- package/src/mcp-server/tools/generator-guide.js.map +1 -1
- package/src/mcp-server/tools/list-generators.d.ts +10 -1
- package/src/mcp-server/tools/list-generators.js +34 -13
- package/src/mcp-server/tools/list-generators.js.map +1 -1
- package/src/preset/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/preset/schema.json +2 -2
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +2 -2
- package/src/ts/nx-generator/__snapshots__/generator.spec.ts.snap +2 -0
- package/src/ts/nx-generator/files/nx-plugin-for-aws/docs/__nameKebabCase__.mdx.template +2 -0
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +27 -27
- package/src/ts/react-website/cognito-auth/__snapshots__/generator.spec.ts.snap +12 -3
- package/src/utils/files/common/shadcn/src/components/ui/avatar.tsx.template +60 -4
- package/src/utils/files/common/shadcn/src/components/ui/textarea.tsx.template +1 -1
- package/src/utils/generators.d.ts +1 -1
- package/src/utils/identity-constructs/files/cdk/core/user-identity.ts.template +13 -3
- package/src/utils/versions.d.ts +37 -37
- package/src/utils/versions.js +36 -36
- package/src/utils/versions.js.map +1 -1
|
@@ -90,7 +90,7 @@ exports[`cognito-auth generator > should generate files > user-identity 1`] = `
|
|
|
90
90
|
IdentityPool,
|
|
91
91
|
UserPoolAuthenticationProvider,
|
|
92
92
|
} from 'aws-cdk-lib/aws-cognito-identitypool';
|
|
93
|
-
import { CfnOutput, Duration, Lazy, Stack } from 'aws-cdk-lib';
|
|
93
|
+
import { CfnOutput, CfnResource, Duration, Lazy, Stack } from 'aws-cdk-lib';
|
|
94
94
|
import {
|
|
95
95
|
AccountRecovery,
|
|
96
96
|
CfnManagedLoginBranding,
|
|
@@ -161,8 +161,8 @@ export class UserIdentity extends Construct {
|
|
|
161
161
|
});
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
-
private createUserPool = () =>
|
|
165
|
-
new UserPool(this, 'UserPool', {
|
|
164
|
+
private createUserPool = () => {
|
|
165
|
+
const userPool = new UserPool(this, 'UserPool', {
|
|
166
166
|
deletionProtection: true,
|
|
167
167
|
passwordPolicy: {
|
|
168
168
|
minLength: 8,
|
|
@@ -194,6 +194,15 @@ export class UserIdentity extends Construct {
|
|
|
194
194
|
phone: true,
|
|
195
195
|
},
|
|
196
196
|
});
|
|
197
|
+
// Retain the SMS role alongside the pool so the pool can still be updated and deleted manually
|
|
198
|
+
const poolCfn = userPool.node.defaultChild as CfnResource;
|
|
199
|
+
const smsRoleCfn = userPool.node.findChild('smsRole').node
|
|
200
|
+
.defaultChild as CfnResource;
|
|
201
|
+
smsRoleCfn.cfnOptions.deletionPolicy = poolCfn.cfnOptions.deletionPolicy;
|
|
202
|
+
smsRoleCfn.cfnOptions.updateReplacePolicy =
|
|
203
|
+
poolCfn.cfnOptions.updateReplacePolicy;
|
|
204
|
+
return userPool;
|
|
205
|
+
};
|
|
197
206
|
|
|
198
207
|
private createUserPoolDomain = (userPool: UserPool) =>
|
|
199
208
|
new CfnUserPoolDomain(this, 'UserPoolDomain', {
|
|
@@ -7,13 +7,17 @@ import { cn } from "<%= scopeAlias %>common-shadcn/lib/utils"
|
|
|
7
7
|
|
|
8
8
|
function Avatar({
|
|
9
9
|
className,
|
|
10
|
+
size = "default",
|
|
10
11
|
...props
|
|
11
|
-
}: React.ComponentProps<typeof AvatarPrimitive.Root>
|
|
12
|
+
}: React.ComponentProps<typeof AvatarPrimitive.Root> & {
|
|
13
|
+
size?: "default" | "sm" | "lg"
|
|
14
|
+
}) {
|
|
12
15
|
return (
|
|
13
16
|
<AvatarPrimitive.Root
|
|
14
17
|
data-slot="avatar"
|
|
18
|
+
data-size={size}
|
|
15
19
|
className={cn(
|
|
16
|
-
"relative flex size-8 shrink-0 overflow-hidden rounded-full",
|
|
20
|
+
"group/avatar relative flex size-8 shrink-0 overflow-hidden rounded-full select-none data-[size=lg]:size-10 data-[size=sm]:size-6",
|
|
17
21
|
className
|
|
18
22
|
)}
|
|
19
23
|
{...props}
|
|
@@ -42,7 +46,7 @@ function AvatarFallback({
|
|
|
42
46
|
<AvatarPrimitive.Fallback
|
|
43
47
|
data-slot="avatar-fallback"
|
|
44
48
|
className={cn(
|
|
45
|
-
"
|
|
49
|
+
"flex size-full items-center justify-center rounded-full bg-muted text-sm text-muted-foreground group-data-[size=sm]/avatar:text-xs",
|
|
46
50
|
className
|
|
47
51
|
)}
|
|
48
52
|
{...props}
|
|
@@ -50,4 +54,56 @@ function AvatarFallback({
|
|
|
50
54
|
)
|
|
51
55
|
}
|
|
52
56
|
|
|
53
|
-
|
|
57
|
+
function AvatarBadge({ className, ...props }: React.ComponentProps<"span">) {
|
|
58
|
+
return (
|
|
59
|
+
<span
|
|
60
|
+
data-slot="avatar-badge"
|
|
61
|
+
className={cn(
|
|
62
|
+
"absolute right-0 bottom-0 z-10 inline-flex items-center justify-center rounded-full bg-primary text-primary-foreground ring-2 ring-background select-none",
|
|
63
|
+
"group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>svg]:hidden",
|
|
64
|
+
"group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2",
|
|
65
|
+
"group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2",
|
|
66
|
+
className
|
|
67
|
+
)}
|
|
68
|
+
{...props}
|
|
69
|
+
/>
|
|
70
|
+
)
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function AvatarGroup({ className, ...props }: React.ComponentProps<"div">) {
|
|
74
|
+
return (
|
|
75
|
+
<div
|
|
76
|
+
data-slot="avatar-group"
|
|
77
|
+
className={cn(
|
|
78
|
+
"group/avatar-group flex -space-x-2 *:data-[slot=avatar]:ring-2 *:data-[slot=avatar]:ring-background",
|
|
79
|
+
className
|
|
80
|
+
)}
|
|
81
|
+
{...props}
|
|
82
|
+
/>
|
|
83
|
+
)
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function AvatarGroupCount({
|
|
87
|
+
className,
|
|
88
|
+
...props
|
|
89
|
+
}: React.ComponentProps<"div">) {
|
|
90
|
+
return (
|
|
91
|
+
<div
|
|
92
|
+
data-slot="avatar-group-count"
|
|
93
|
+
className={cn(
|
|
94
|
+
"relative flex size-8 shrink-0 items-center justify-center rounded-full bg-muted text-sm text-muted-foreground ring-2 ring-background group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3",
|
|
95
|
+
className
|
|
96
|
+
)}
|
|
97
|
+
{...props}
|
|
98
|
+
/>
|
|
99
|
+
)
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export {
|
|
103
|
+
Avatar,
|
|
104
|
+
AvatarImage,
|
|
105
|
+
AvatarFallback,
|
|
106
|
+
AvatarBadge,
|
|
107
|
+
AvatarGroup,
|
|
108
|
+
AvatarGroupCount,
|
|
109
|
+
}
|
|
@@ -7,7 +7,7 @@ function Textarea({ className, ...props }: React.ComponentProps<"textarea">) {
|
|
|
7
7
|
<textarea
|
|
8
8
|
data-slot="textarea"
|
|
9
9
|
className={cn(
|
|
10
|
-
"
|
|
10
|
+
"flex field-sizing-content min-h-16 w-full rounded-md border border-input bg-transparent px-3 py-2 text-base shadow-xs transition-[color,box-shadow] outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:aria-invalid:ring-destructive/40",
|
|
11
11
|
className
|
|
12
12
|
)}
|
|
13
13
|
{...props}
|
|
@@ -5,7 +5,7 @@ export interface GeneratorInfo {
|
|
|
5
5
|
readonly resolvedSchemaPath: string;
|
|
6
6
|
readonly hidden?: boolean;
|
|
7
7
|
readonly description: string;
|
|
8
|
-
readonly guidePages?: string[];
|
|
8
|
+
readonly guidePages?: readonly string[];
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* Alias for GeneratorInfo used by MCP server and generators
|
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
IdentityPool,
|
|
3
3
|
UserPoolAuthenticationProvider,
|
|
4
4
|
} from 'aws-cdk-lib/aws-cognito-identitypool';
|
|
5
|
-
import { CfnOutput, Duration, Lazy, Stack } from 'aws-cdk-lib';
|
|
5
|
+
import { CfnOutput, CfnResource, Duration, Lazy, Stack } from 'aws-cdk-lib';
|
|
6
6
|
import {
|
|
7
7
|
AccountRecovery,
|
|
8
8
|
CfnManagedLoginBranding,
|
|
@@ -73,8 +73,8 @@ export class UserIdentity extends Construct {
|
|
|
73
73
|
});
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
private createUserPool = () =>
|
|
77
|
-
new UserPool(this, 'UserPool', {
|
|
76
|
+
private createUserPool = () => {
|
|
77
|
+
const userPool = new UserPool(this, 'UserPool', {
|
|
78
78
|
deletionProtection: true,
|
|
79
79
|
passwordPolicy: {
|
|
80
80
|
minLength: 8,
|
|
@@ -106,6 +106,16 @@ export class UserIdentity extends Construct {
|
|
|
106
106
|
phone: true,
|
|
107
107
|
},
|
|
108
108
|
});
|
|
109
|
+
// Retain the SMS role alongside the pool so the pool can still be updated and deleted manually
|
|
110
|
+
const poolCfn = userPool.node.defaultChild as CfnResource;
|
|
111
|
+
const smsRoleCfn = userPool.node
|
|
112
|
+
.findChild('smsRole')
|
|
113
|
+
.node.defaultChild as CfnResource;
|
|
114
|
+
smsRoleCfn.cfnOptions.deletionPolicy = poolCfn.cfnOptions.deletionPolicy;
|
|
115
|
+
smsRoleCfn.cfnOptions.updateReplacePolicy =
|
|
116
|
+
poolCfn.cfnOptions.updateReplacePolicy;
|
|
117
|
+
return userPool;
|
|
118
|
+
};
|
|
109
119
|
|
|
110
120
|
private createUserPoolDomain = (userPool: UserPool) =>
|
|
111
121
|
new CfnUserPoolDomain(this, 'UserPoolDomain', {
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
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.10.0";
|
|
11
|
-
readonly '@aws-sdk/client-dynamodb': "3.
|
|
12
|
-
readonly '@aws-sdk/client-bedrock-runtime': "3.
|
|
13
|
-
readonly '@aws-sdk/client-sts': "3.
|
|
14
|
-
readonly '@aws-sdk/credential-providers': "3.
|
|
11
|
+
readonly '@aws-sdk/client-dynamodb': "3.1039.0";
|
|
12
|
+
readonly '@aws-sdk/client-bedrock-runtime': "3.1039.0";
|
|
13
|
+
readonly '@aws-sdk/client-sts': "3.1039.0";
|
|
14
|
+
readonly '@aws-sdk/credential-providers': "3.1039.0";
|
|
15
15
|
readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
|
|
16
16
|
readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
|
|
17
17
|
readonly '@aws-lambda-powertools/logger': "2.33.0";
|
|
@@ -19,33 +19,33 @@ export declare const TS_VERSIONS: {
|
|
|
19
19
|
readonly '@aws-lambda-powertools/parameters': "2.33.0";
|
|
20
20
|
readonly '@aws-lambda-powertools/tracer': "2.33.0";
|
|
21
21
|
readonly '@aws-lambda-powertools/parser': "2.33.0";
|
|
22
|
-
readonly '@aws-sdk/client-appconfigdata': "3.
|
|
22
|
+
readonly '@aws-sdk/client-appconfigdata': "3.1039.0";
|
|
23
23
|
readonly '@middy/core': "7.3.3";
|
|
24
24
|
readonly '@nxlv/python': "22.1.3";
|
|
25
25
|
readonly '@nx-extend/terraform': "10.2.1";
|
|
26
|
-
readonly '@nx/devkit': "22.7.
|
|
27
|
-
readonly '@nx/react': "22.7.
|
|
28
|
-
readonly 'create-nx-workspace': "22.7.
|
|
26
|
+
readonly '@nx/devkit': "22.7.1";
|
|
27
|
+
readonly '@nx/react': "22.7.1";
|
|
28
|
+
readonly 'create-nx-workspace': "22.7.1";
|
|
29
29
|
readonly '@modelcontextprotocol/sdk': "1.29.0";
|
|
30
30
|
readonly '@modelcontextprotocol/inspector': "0.19.0";
|
|
31
31
|
readonly '@ag-ui/client': "0.0.52";
|
|
32
|
-
readonly '@copilotkit/react-core': "1.56.
|
|
32
|
+
readonly '@copilotkit/react-core': "1.56.4";
|
|
33
33
|
readonly rxjs: "7.8.2";
|
|
34
|
-
readonly '@strands-agents/sdk': "1.0.0
|
|
35
|
-
readonly '@tanstack/react-router': "1.168.
|
|
36
|
-
readonly '@tanstack/router-plugin': "1.167.
|
|
37
|
-
readonly '@tanstack/router-generator': "1.166.
|
|
34
|
+
readonly '@strands-agents/sdk': "1.0.0";
|
|
35
|
+
readonly '@tanstack/react-router': "1.168.26";
|
|
36
|
+
readonly '@tanstack/router-plugin': "1.167.29";
|
|
37
|
+
readonly '@tanstack/router-generator': "1.166.37";
|
|
38
38
|
readonly '@tanstack/virtual-file-routes': "1.161.7";
|
|
39
39
|
readonly '@tanstack/router-utils': "1.161.7";
|
|
40
|
-
readonly '@cloudscape-design/board-components': "3.0.
|
|
41
|
-
readonly '@cloudscape-design/chat-components': "1.0.
|
|
42
|
-
readonly '@cloudscape-design/components': "3.0.
|
|
43
|
-
readonly '@cloudscape-design/global-styles': "1.0.
|
|
44
|
-
readonly '@tanstack/react-query': "5.100.
|
|
45
|
-
readonly '@tanstack/react-query-devtools': "5.100.
|
|
46
|
-
readonly '@trpc/tanstack-react-query': "11.
|
|
47
|
-
readonly '@trpc/client': "11.
|
|
48
|
-
readonly '@trpc/server': "11.
|
|
40
|
+
readonly '@cloudscape-design/board-components': "3.0.175";
|
|
41
|
+
readonly '@cloudscape-design/chat-components': "1.0.123";
|
|
42
|
+
readonly '@cloudscape-design/components': "3.0.1287";
|
|
43
|
+
readonly '@cloudscape-design/global-styles': "1.0.58";
|
|
44
|
+
readonly '@tanstack/react-query': "5.100.6";
|
|
45
|
+
readonly '@tanstack/react-query-devtools': "5.100.6";
|
|
46
|
+
readonly '@trpc/tanstack-react-query': "11.17.0";
|
|
47
|
+
readonly '@trpc/client': "11.17.0";
|
|
48
|
+
readonly '@trpc/server': "11.17.0";
|
|
49
49
|
readonly '@types/node': "25.6.0";
|
|
50
50
|
readonly '@types/aws-lambda': "8.10.161";
|
|
51
51
|
readonly '@types/cors': "2.8.19";
|
|
@@ -57,9 +57,9 @@ export declare const TS_VERSIONS: {
|
|
|
57
57
|
readonly '@vitest/ui': "4.1.5";
|
|
58
58
|
readonly '@astrojs/react': "5.0.4";
|
|
59
59
|
readonly '@astrojs/starlight': "0.38.4";
|
|
60
|
-
readonly astro: "6.1.
|
|
60
|
+
readonly astro: "6.1.10";
|
|
61
61
|
readonly aws4fetch: "1.0.20";
|
|
62
|
-
readonly 'aws-cdk': "2.
|
|
62
|
+
readonly 'aws-cdk': "2.1120.0";
|
|
63
63
|
readonly 'aws-cdk-lib': "2.251.0";
|
|
64
64
|
readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.251.0-alpha.0";
|
|
65
65
|
readonly 'aws-xray-sdk-core': "3.12.0";
|
|
@@ -73,15 +73,15 @@ export declare const TS_VERSIONS: {
|
|
|
73
73
|
readonly esbuild: "0.28.0";
|
|
74
74
|
readonly 'event-source-polyfill': "1.0.31";
|
|
75
75
|
readonly '@types/event-source-polyfill': "1.0.5";
|
|
76
|
-
readonly '@typescript-eslint/eslint-plugin': "8.59.
|
|
77
|
-
readonly '@typescript-eslint/parser': "8.59.
|
|
76
|
+
readonly '@typescript-eslint/eslint-plugin': "8.59.1";
|
|
77
|
+
readonly '@typescript-eslint/parser': "8.59.1";
|
|
78
78
|
readonly 'eslint-plugin-prettier': "5.5.5";
|
|
79
79
|
readonly express: "5.2.1";
|
|
80
80
|
readonly 'fast-glob': "3.3.3";
|
|
81
81
|
readonly 'fs-extra': "11.3.4";
|
|
82
82
|
readonly '@types/fs-extra': "11.0.4";
|
|
83
83
|
readonly 'jsonc-eslint-parser': "3.1.0";
|
|
84
|
-
readonly 'typescript-eslint': "8.59.
|
|
84
|
+
readonly 'typescript-eslint': "8.59.1";
|
|
85
85
|
readonly 'make-dir-cli': "4.0.0";
|
|
86
86
|
readonly ncp: "2.0.0";
|
|
87
87
|
readonly 'npm-check-updates': "19.6.6";
|
|
@@ -98,15 +98,15 @@ export declare const TS_VERSIONS: {
|
|
|
98
98
|
readonly tailwindcss: "4.2.2";
|
|
99
99
|
readonly '@tailwindcss/vite': "4.2.2";
|
|
100
100
|
readonly tsx: "4.21.0";
|
|
101
|
-
readonly 'lucide-react': "1.
|
|
101
|
+
readonly 'lucide-react': "1.14.0";
|
|
102
102
|
readonly 'radix-ui': "1.4.3";
|
|
103
|
-
readonly shadcn: "4.
|
|
103
|
+
readonly shadcn: "4.6.0";
|
|
104
104
|
readonly 'tw-animate-css': "1.4.0";
|
|
105
105
|
readonly 'tailwind-merge': "3.5.0";
|
|
106
106
|
readonly vite: "8.0.8";
|
|
107
107
|
readonly typescript: "6.0.3";
|
|
108
108
|
readonly vitest: "4.1.5";
|
|
109
|
-
readonly zod: "4.
|
|
109
|
+
readonly zod: "4.4.1";
|
|
110
110
|
readonly ws: "8.20.0";
|
|
111
111
|
};
|
|
112
112
|
export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
@@ -114,7 +114,7 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
|
114
114
|
* Add versions to the given dependencies
|
|
115
115
|
*/
|
|
116
116
|
export declare const withVersions: (deps: ITsDepVersion[]) => {
|
|
117
|
-
[k: string]: "22.7.
|
|
117
|
+
[k: string]: "22.7.1" | "3.8.3" | "1.29.0" | "22.1.3" | "3.3.3" | "6.0.3" | "4.1.5" | "4.4.1" | "0.3.13" | "0.10.0" | "3.1039.0" | "1.0.0-alpha.10" | "2.33.0" | "7.3.3" | "10.2.1" | "0.19.0" | "0.0.52" | "1.56.4" | "7.8.2" | "1.0.0" | "1.168.26" | "1.167.29" | "1.166.37" | "1.161.7" | "3.0.175" | "1.0.123" | "3.0.1287" | "1.0.58" | "5.100.6" | "11.17.0" | "25.6.0" | "8.10.161" | "2.8.19" | "8.18.1" | "5.0.6" | "4.6.1" | "4.14.1" | "5.0.4" | "0.38.4" | "6.1.10" | "1.0.20" | "2.1120.0" | "2.251.0" | "2.251.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.59.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.14.0" | "1.4.3" | "4.6.0" | "1.4.0" | "8.0.8" | "8.20.0";
|
|
118
118
|
};
|
|
119
119
|
/**
|
|
120
120
|
* Versions for Python dependencies added by generators
|
|
@@ -126,17 +126,17 @@ export declare const PY_VERSIONS: {
|
|
|
126
126
|
readonly 'aws-lambda-powertools[tracer]': "==3.28.0";
|
|
127
127
|
readonly 'aws-lambda-powertools[parser]': "==3.28.0";
|
|
128
128
|
readonly 'aws-opentelemetry-distro': "==0.17.0";
|
|
129
|
-
readonly 'bedrock-agentcore': "==1.
|
|
130
|
-
readonly boto3: "==1.
|
|
131
|
-
readonly checkov: "==3.2.
|
|
129
|
+
readonly 'bedrock-agentcore': "==1.8.0";
|
|
130
|
+
readonly boto3: "==1.43.1";
|
|
131
|
+
readonly checkov: "==3.2.526";
|
|
132
132
|
readonly fastapi: "==0.136.1";
|
|
133
133
|
readonly 'fastapi[standard]': "==0.136.1";
|
|
134
134
|
readonly httpx: "==0.28.1";
|
|
135
135
|
readonly mcp: "==1.27.0";
|
|
136
136
|
readonly 'pip-check-updates': "==0.28.0";
|
|
137
|
-
readonly 'strands-agents': "==1.
|
|
138
|
-
readonly 'strands-agents[a2a]': "==1.
|
|
139
|
-
readonly 'strands-agents-tools': "==0.5.
|
|
137
|
+
readonly 'strands-agents': "==1.38.0";
|
|
138
|
+
readonly 'strands-agents[a2a]': "==1.38.0";
|
|
139
|
+
readonly 'strands-agents-tools': "==0.5.2";
|
|
140
140
|
readonly uvicorn: "==0.46.0";
|
|
141
141
|
};
|
|
142
142
|
export type IPyDepVersion = keyof typeof PY_VERSIONS;
|
package/src/utils/versions.js
CHANGED
|
@@ -11,10 +11,10 @@ exports.withPyVersions = exports.PY_VERSIONS = exports.withVersions = exports.TS
|
|
|
11
11
|
exports.TS_VERSIONS = {
|
|
12
12
|
'@a2a-js/sdk': '0.3.13',
|
|
13
13
|
'@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.10.0',
|
|
14
|
-
'@aws-sdk/client-dynamodb': '3.
|
|
15
|
-
'@aws-sdk/client-bedrock-runtime': '3.
|
|
16
|
-
'@aws-sdk/client-sts': '3.
|
|
17
|
-
'@aws-sdk/credential-providers': '3.
|
|
14
|
+
'@aws-sdk/client-dynamodb': '3.1039.0',
|
|
15
|
+
'@aws-sdk/client-bedrock-runtime': '3.1039.0',
|
|
16
|
+
'@aws-sdk/client-sts': '3.1039.0',
|
|
17
|
+
'@aws-sdk/credential-providers': '3.1039.0',
|
|
18
18
|
'@aws-smithy/server-apigateway': '1.0.0-alpha.10',
|
|
19
19
|
'@aws-smithy/server-node': '1.0.0-alpha.10',
|
|
20
20
|
'@aws-lambda-powertools/logger': '2.33.0',
|
|
@@ -22,33 +22,33 @@ exports.TS_VERSIONS = {
|
|
|
22
22
|
'@aws-lambda-powertools/parameters': '2.33.0',
|
|
23
23
|
'@aws-lambda-powertools/tracer': '2.33.0',
|
|
24
24
|
'@aws-lambda-powertools/parser': '2.33.0',
|
|
25
|
-
'@aws-sdk/client-appconfigdata': '3.
|
|
25
|
+
'@aws-sdk/client-appconfigdata': '3.1039.0',
|
|
26
26
|
'@middy/core': '7.3.3',
|
|
27
27
|
'@nxlv/python': '22.1.3',
|
|
28
28
|
'@nx-extend/terraform': '10.2.1',
|
|
29
|
-
'@nx/devkit': '22.7.
|
|
30
|
-
'@nx/react': '22.7.
|
|
31
|
-
'create-nx-workspace': '22.7.
|
|
29
|
+
'@nx/devkit': '22.7.1',
|
|
30
|
+
'@nx/react': '22.7.1',
|
|
31
|
+
'create-nx-workspace': '22.7.1',
|
|
32
32
|
'@modelcontextprotocol/sdk': '1.29.0',
|
|
33
33
|
'@modelcontextprotocol/inspector': '0.19.0',
|
|
34
34
|
'@ag-ui/client': '0.0.52',
|
|
35
|
-
'@copilotkit/react-core': '1.56.
|
|
35
|
+
'@copilotkit/react-core': '1.56.4',
|
|
36
36
|
rxjs: '7.8.2',
|
|
37
|
-
'@strands-agents/sdk': '1.0.0
|
|
38
|
-
'@tanstack/react-router': '1.168.
|
|
39
|
-
'@tanstack/router-plugin': '1.167.
|
|
40
|
-
'@tanstack/router-generator': '1.166.
|
|
37
|
+
'@strands-agents/sdk': '1.0.0',
|
|
38
|
+
'@tanstack/react-router': '1.168.26',
|
|
39
|
+
'@tanstack/router-plugin': '1.167.29',
|
|
40
|
+
'@tanstack/router-generator': '1.166.37',
|
|
41
41
|
'@tanstack/virtual-file-routes': '1.161.7',
|
|
42
42
|
'@tanstack/router-utils': '1.161.7',
|
|
43
|
-
'@cloudscape-design/board-components': '3.0.
|
|
44
|
-
'@cloudscape-design/chat-components': '1.0.
|
|
45
|
-
'@cloudscape-design/components': '3.0.
|
|
46
|
-
'@cloudscape-design/global-styles': '1.0.
|
|
47
|
-
'@tanstack/react-query': '5.100.
|
|
48
|
-
'@tanstack/react-query-devtools': '5.100.
|
|
49
|
-
'@trpc/tanstack-react-query': '11.
|
|
50
|
-
'@trpc/client': '11.
|
|
51
|
-
'@trpc/server': '11.
|
|
43
|
+
'@cloudscape-design/board-components': '3.0.175',
|
|
44
|
+
'@cloudscape-design/chat-components': '1.0.123',
|
|
45
|
+
'@cloudscape-design/components': '3.0.1287',
|
|
46
|
+
'@cloudscape-design/global-styles': '1.0.58',
|
|
47
|
+
'@tanstack/react-query': '5.100.6',
|
|
48
|
+
'@tanstack/react-query-devtools': '5.100.6',
|
|
49
|
+
'@trpc/tanstack-react-query': '11.17.0',
|
|
50
|
+
'@trpc/client': '11.17.0',
|
|
51
|
+
'@trpc/server': '11.17.0',
|
|
52
52
|
'@types/node': '25.6.0',
|
|
53
53
|
'@types/aws-lambda': '8.10.161',
|
|
54
54
|
'@types/cors': '2.8.19',
|
|
@@ -60,9 +60,9 @@ exports.TS_VERSIONS = {
|
|
|
60
60
|
'@vitest/ui': '4.1.5',
|
|
61
61
|
'@astrojs/react': '5.0.4',
|
|
62
62
|
'@astrojs/starlight': '0.38.4',
|
|
63
|
-
astro: '6.1.
|
|
63
|
+
astro: '6.1.10',
|
|
64
64
|
aws4fetch: '1.0.20',
|
|
65
|
-
'aws-cdk': '2.
|
|
65
|
+
'aws-cdk': '2.1120.0',
|
|
66
66
|
'aws-cdk-lib': '2.251.0',
|
|
67
67
|
'@aws-cdk/aws-bedrock-agentcore-alpha': '2.251.0-alpha.0',
|
|
68
68
|
'aws-xray-sdk-core': '3.12.0',
|
|
@@ -76,15 +76,15 @@ exports.TS_VERSIONS = {
|
|
|
76
76
|
esbuild: '0.28.0',
|
|
77
77
|
'event-source-polyfill': '1.0.31',
|
|
78
78
|
'@types/event-source-polyfill': '1.0.5',
|
|
79
|
-
'@typescript-eslint/eslint-plugin': '8.59.
|
|
80
|
-
'@typescript-eslint/parser': '8.59.
|
|
79
|
+
'@typescript-eslint/eslint-plugin': '8.59.1',
|
|
80
|
+
'@typescript-eslint/parser': '8.59.1',
|
|
81
81
|
'eslint-plugin-prettier': '5.5.5',
|
|
82
82
|
express: '5.2.1',
|
|
83
83
|
'fast-glob': '3.3.3',
|
|
84
84
|
'fs-extra': '11.3.4',
|
|
85
85
|
'@types/fs-extra': '11.0.4',
|
|
86
86
|
'jsonc-eslint-parser': '3.1.0',
|
|
87
|
-
'typescript-eslint': '8.59.
|
|
87
|
+
'typescript-eslint': '8.59.1',
|
|
88
88
|
'make-dir-cli': '4.0.0',
|
|
89
89
|
ncp: '2.0.0',
|
|
90
90
|
'npm-check-updates': '19.6.6',
|
|
@@ -101,15 +101,15 @@ exports.TS_VERSIONS = {
|
|
|
101
101
|
tailwindcss: '4.2.2',
|
|
102
102
|
'@tailwindcss/vite': '4.2.2',
|
|
103
103
|
tsx: '4.21.0',
|
|
104
|
-
'lucide-react': '1.
|
|
104
|
+
'lucide-react': '1.14.0',
|
|
105
105
|
'radix-ui': '1.4.3',
|
|
106
|
-
shadcn: '4.
|
|
106
|
+
shadcn: '4.6.0',
|
|
107
107
|
'tw-animate-css': '1.4.0',
|
|
108
108
|
'tailwind-merge': '3.5.0',
|
|
109
109
|
vite: '8.0.8',
|
|
110
110
|
typescript: '6.0.3',
|
|
111
111
|
vitest: '4.1.5',
|
|
112
|
-
zod: '4.
|
|
112
|
+
zod: '4.4.1',
|
|
113
113
|
ws: '8.20.0',
|
|
114
114
|
};
|
|
115
115
|
/**
|
|
@@ -127,17 +127,17 @@ exports.PY_VERSIONS = {
|
|
|
127
127
|
'aws-lambda-powertools[tracer]': '==3.28.0',
|
|
128
128
|
'aws-lambda-powertools[parser]': '==3.28.0',
|
|
129
129
|
'aws-opentelemetry-distro': '==0.17.0',
|
|
130
|
-
'bedrock-agentcore': '==1.
|
|
131
|
-
boto3: '==1.
|
|
132
|
-
checkov: '==3.2.
|
|
130
|
+
'bedrock-agentcore': '==1.8.0',
|
|
131
|
+
boto3: '==1.43.1',
|
|
132
|
+
checkov: '==3.2.526',
|
|
133
133
|
fastapi: '==0.136.1',
|
|
134
134
|
'fastapi[standard]': '==0.136.1',
|
|
135
135
|
httpx: '==0.28.1',
|
|
136
136
|
mcp: '==1.27.0',
|
|
137
137
|
'pip-check-updates': '==0.28.0',
|
|
138
|
-
'strands-agents': '==1.
|
|
139
|
-
'strands-agents[a2a]': '==1.
|
|
140
|
-
'strands-agents-tools': '==0.5.
|
|
138
|
+
'strands-agents': '==1.38.0',
|
|
139
|
+
'strands-agents[a2a]': '==1.38.0',
|
|
140
|
+
'strands-agents-tools': '==0.5.2',
|
|
141
141
|
uvicorn: '==0.46.0',
|
|
142
142
|
};
|
|
143
143
|
/**
|
|
@@ -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,qBAAqB,EAAE,UAAU;IACjC,+BAA+B,EAAE,UAAU;IAC3C,+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,eAAe,EAAE,QAAQ;IACzB,wBAAwB,EAAE,QAAQ;IAClC,IAAI,EAAE,OAAO;IACb,qBAAqB,EAAE,
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
|