@aws/nx-plugin 0.94.1 → 0.95.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 +548 -1069
- package/package.json +11 -11
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +25 -25
- package/src/preset/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/py/fast-api/__snapshots__/generator.spec.ts.snap +228 -106
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +7 -7
- package/src/trpc/backend/__snapshots__/generator.spec.ts.snap +228 -106
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +45 -45
- package/src/ts/strands-agent/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/utils/api-constructs/files/cdk/core/api/utils/utils.ts.template +114 -53
- package/src/utils/versions.d.ts +45 -45
- package/src/utils/versions.js +44 -44
- package/src/utils/versions.js.map +1 -1
|
@@ -48,20 +48,6 @@ export interface HttpApiIntegration {
|
|
|
48
48
|
options?: Omit<AddRoutesOptions, 'path' | 'methods' | 'integration'>;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
/**
|
|
52
|
-
* Common options shared by all IntegrationBuilder configurations
|
|
53
|
-
*/
|
|
54
|
-
interface IntegrationBuilderPropsBase<
|
|
55
|
-
TOperation extends string,
|
|
56
|
-
TDefaultIntegrationProps extends object,
|
|
57
|
-
> {
|
|
58
|
-
/** Map of operation names to their API path and HTTP method details */
|
|
59
|
-
operations: Record<TOperation, OperationDetails>;
|
|
60
|
-
|
|
61
|
-
/** Default configuration options for integrations */
|
|
62
|
-
defaultIntegrationOptions: TDefaultIntegrationProps;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
51
|
/**
|
|
66
52
|
* Options for constructing an IntegrationBuilder with a shared integration pattern.
|
|
67
53
|
* A single default integration is built once (for '$router') and reused for all operations.
|
|
@@ -70,8 +56,12 @@ interface SharedIntegrationBuilderProps<
|
|
|
70
56
|
TOperation extends string,
|
|
71
57
|
TDefaultIntegrationProps extends object,
|
|
72
58
|
TDefaultIntegration,
|
|
73
|
-
>
|
|
59
|
+
> {
|
|
74
60
|
pattern: 'shared';
|
|
61
|
+
/** Map of operation names to their API path and HTTP method details */
|
|
62
|
+
operations: Record<TOperation, OperationDetails>;
|
|
63
|
+
/** Default configuration options for integrations */
|
|
64
|
+
defaultIntegrationOptions: TDefaultIntegrationProps;
|
|
75
65
|
/** Function to create a default integration for the shared router */
|
|
76
66
|
buildDefaultIntegration: (
|
|
77
67
|
op: '$router',
|
|
@@ -87,8 +77,12 @@ interface IsolatedIntegrationBuilderProps<
|
|
|
87
77
|
TOperation extends string,
|
|
88
78
|
TDefaultIntegrationProps extends object,
|
|
89
79
|
TDefaultIntegration,
|
|
90
|
-
>
|
|
80
|
+
> {
|
|
91
81
|
pattern: 'isolated';
|
|
82
|
+
/** Map of operation names to their API path and HTTP method details */
|
|
83
|
+
operations: Record<TOperation, OperationDetails>;
|
|
84
|
+
/** Default configuration options for integrations */
|
|
85
|
+
defaultIntegrationOptions: TDefaultIntegrationProps;
|
|
92
86
|
/** Function to create a default integration for an operation */
|
|
93
87
|
buildDefaultIntegration: (
|
|
94
88
|
op: TOperation,
|
|
@@ -116,25 +110,6 @@ export type IntegrationBuilderProps<
|
|
|
116
110
|
TDefaultIntegration
|
|
117
111
|
>;
|
|
118
112
|
|
|
119
|
-
/**
|
|
120
|
-
* Extracts the IntegrationBuilderProps variant matching the given pattern.
|
|
121
|
-
*/
|
|
122
|
-
type IntegrationBuilderPropsForPattern<
|
|
123
|
-
TOperation extends string,
|
|
124
|
-
TBaseIntegration,
|
|
125
|
-
TDefaultIntegrationProps extends object,
|
|
126
|
-
TDefaultIntegration extends TBaseIntegration,
|
|
127
|
-
TPattern extends 'shared' | 'isolated',
|
|
128
|
-
> = Extract<
|
|
129
|
-
IntegrationBuilderProps<
|
|
130
|
-
TOperation,
|
|
131
|
-
TBaseIntegration,
|
|
132
|
-
TDefaultIntegrationProps,
|
|
133
|
-
TDefaultIntegration
|
|
134
|
-
>,
|
|
135
|
-
{ pattern: TPattern }
|
|
136
|
-
>;
|
|
137
|
-
|
|
138
113
|
/**
|
|
139
114
|
* Resolves the default integration keys based on the pattern.
|
|
140
115
|
* - 'shared': only '$router' is a default key
|
|
@@ -194,22 +169,65 @@ export class IntegrationBuilder<
|
|
|
194
169
|
private integrations: Partial<TIntegrations> = {};
|
|
195
170
|
|
|
196
171
|
/**
|
|
197
|
-
* Create an Integration Builder for an HTTP API
|
|
172
|
+
* Create an Integration Builder for an HTTP API with a shared pattern
|
|
198
173
|
*/
|
|
199
|
-
public static http
|
|
174
|
+
public static http<
|
|
200
175
|
TOperation extends string,
|
|
201
176
|
TDefaultIntegrationProps extends object,
|
|
202
177
|
TDefaultIntegration extends HttpApiIntegration,
|
|
203
|
-
TPattern extends 'shared' | 'isolated',
|
|
204
178
|
>(
|
|
205
|
-
options:
|
|
179
|
+
options: SharedIntegrationBuilderProps<
|
|
206
180
|
TOperation,
|
|
207
|
-
HttpApiIntegration,
|
|
208
181
|
TDefaultIntegrationProps,
|
|
209
|
-
TDefaultIntegration
|
|
210
|
-
|
|
182
|
+
TDefaultIntegration
|
|
183
|
+
>,
|
|
184
|
+
): IntegrationBuilder<
|
|
185
|
+
TOperation,
|
|
186
|
+
HttpApiIntegration,
|
|
187
|
+
Record<'$router', TDefaultIntegration>,
|
|
188
|
+
TDefaultIntegrationProps,
|
|
189
|
+
TDefaultIntegration,
|
|
190
|
+
'shared'
|
|
191
|
+
>;
|
|
192
|
+
/**
|
|
193
|
+
* Create an Integration Builder for an HTTP API with an isolated pattern
|
|
194
|
+
*/
|
|
195
|
+
public static http<
|
|
196
|
+
TOperation extends string,
|
|
197
|
+
TDefaultIntegrationProps extends object,
|
|
198
|
+
TDefaultIntegration extends HttpApiIntegration,
|
|
199
|
+
>(
|
|
200
|
+
options: IsolatedIntegrationBuilderProps<
|
|
201
|
+
TOperation,
|
|
202
|
+
TDefaultIntegrationProps,
|
|
203
|
+
TDefaultIntegration
|
|
211
204
|
>,
|
|
212
|
-
)
|
|
205
|
+
): IntegrationBuilder<
|
|
206
|
+
TOperation,
|
|
207
|
+
HttpApiIntegration,
|
|
208
|
+
Record<TOperation, TDefaultIntegration>,
|
|
209
|
+
TDefaultIntegrationProps,
|
|
210
|
+
TDefaultIntegration,
|
|
211
|
+
'isolated'
|
|
212
|
+
>;
|
|
213
|
+
public static http<
|
|
214
|
+
TOperation extends string,
|
|
215
|
+
TDefaultIntegrationProps extends object,
|
|
216
|
+
TDefaultIntegration extends HttpApiIntegration,
|
|
217
|
+
TPattern extends 'shared' | 'isolated',
|
|
218
|
+
>(
|
|
219
|
+
options:
|
|
220
|
+
| SharedIntegrationBuilderProps<
|
|
221
|
+
TOperation,
|
|
222
|
+
TDefaultIntegrationProps,
|
|
223
|
+
TDefaultIntegration
|
|
224
|
+
>
|
|
225
|
+
| IsolatedIntegrationBuilderProps<
|
|
226
|
+
TOperation,
|
|
227
|
+
TDefaultIntegrationProps,
|
|
228
|
+
TDefaultIntegration
|
|
229
|
+
>,
|
|
230
|
+
) {
|
|
213
231
|
return new IntegrationBuilder<
|
|
214
232
|
TOperation,
|
|
215
233
|
HttpApiIntegration,
|
|
@@ -218,25 +236,68 @@ export class IntegrationBuilder<
|
|
|
218
236
|
TDefaultIntegration,
|
|
219
237
|
TPattern
|
|
220
238
|
>(options);
|
|
221
|
-
}
|
|
239
|
+
}
|
|
222
240
|
|
|
223
241
|
/**
|
|
224
|
-
* Create an Integration Builder for a REST API
|
|
242
|
+
* Create an Integration Builder for a REST API with a shared pattern
|
|
225
243
|
*/
|
|
226
|
-
public static rest
|
|
244
|
+
public static rest<
|
|
227
245
|
TOperation extends string,
|
|
228
246
|
TDefaultIntegrationProps extends object,
|
|
229
247
|
TDefaultIntegration extends RestApiIntegration,
|
|
230
|
-
TPattern extends 'shared' | 'isolated',
|
|
231
248
|
>(
|
|
232
|
-
options:
|
|
249
|
+
options: SharedIntegrationBuilderProps<
|
|
233
250
|
TOperation,
|
|
234
|
-
RestApiIntegration,
|
|
235
251
|
TDefaultIntegrationProps,
|
|
236
|
-
TDefaultIntegration
|
|
237
|
-
TPattern
|
|
252
|
+
TDefaultIntegration
|
|
238
253
|
>,
|
|
239
|
-
)
|
|
254
|
+
): IntegrationBuilder<
|
|
255
|
+
TOperation,
|
|
256
|
+
RestApiIntegration,
|
|
257
|
+
Record<'$router', TDefaultIntegration>,
|
|
258
|
+
TDefaultIntegrationProps,
|
|
259
|
+
TDefaultIntegration,
|
|
260
|
+
'shared'
|
|
261
|
+
>;
|
|
262
|
+
/**
|
|
263
|
+
* Create an Integration Builder for a REST API with an isolated pattern
|
|
264
|
+
*/
|
|
265
|
+
public static rest<
|
|
266
|
+
TOperation extends string,
|
|
267
|
+
TDefaultIntegrationProps extends object,
|
|
268
|
+
TDefaultIntegration extends RestApiIntegration,
|
|
269
|
+
>(
|
|
270
|
+
options: IsolatedIntegrationBuilderProps<
|
|
271
|
+
TOperation,
|
|
272
|
+
TDefaultIntegrationProps,
|
|
273
|
+
TDefaultIntegration
|
|
274
|
+
>,
|
|
275
|
+
): IntegrationBuilder<
|
|
276
|
+
TOperation,
|
|
277
|
+
RestApiIntegration,
|
|
278
|
+
Record<TOperation, TDefaultIntegration>,
|
|
279
|
+
TDefaultIntegrationProps,
|
|
280
|
+
TDefaultIntegration,
|
|
281
|
+
'isolated'
|
|
282
|
+
>;
|
|
283
|
+
public static rest<
|
|
284
|
+
TOperation extends string,
|
|
285
|
+
TDefaultIntegrationProps extends object,
|
|
286
|
+
TDefaultIntegration extends RestApiIntegration,
|
|
287
|
+
TPattern extends 'shared' | 'isolated',
|
|
288
|
+
>(
|
|
289
|
+
options:
|
|
290
|
+
| SharedIntegrationBuilderProps<
|
|
291
|
+
TOperation,
|
|
292
|
+
TDefaultIntegrationProps,
|
|
293
|
+
TDefaultIntegration
|
|
294
|
+
>
|
|
295
|
+
| IsolatedIntegrationBuilderProps<
|
|
296
|
+
TOperation,
|
|
297
|
+
TDefaultIntegrationProps,
|
|
298
|
+
TDefaultIntegration
|
|
299
|
+
>,
|
|
300
|
+
) {
|
|
240
301
|
return new IntegrationBuilder<
|
|
241
302
|
TOperation,
|
|
242
303
|
RestApiIntegration,
|
|
@@ -245,7 +306,7 @@ export class IntegrationBuilder<
|
|
|
245
306
|
TDefaultIntegration,
|
|
246
307
|
TPattern
|
|
247
308
|
>(options);
|
|
248
|
-
}
|
|
309
|
+
}
|
|
249
310
|
|
|
250
311
|
private constructor(
|
|
251
312
|
options: IntegrationBuilderProps<
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
* Versons for TypeScript dependencies added by generators
|
|
7
7
|
*/
|
|
8
8
|
export declare const TS_VERSIONS: {
|
|
9
|
-
readonly '@aws/aws-distro-opentelemetry-node-autoinstrumentation': "0.
|
|
10
|
-
readonly '@aws-sdk/client-dynamodb': "3.
|
|
11
|
-
readonly '@aws-sdk/client-sts': "3.
|
|
12
|
-
readonly '@aws-sdk/credential-providers': "3.
|
|
9
|
+
readonly '@aws/aws-distro-opentelemetry-node-autoinstrumentation': "0.10.0";
|
|
10
|
+
readonly '@aws-sdk/client-dynamodb': "3.1029.0";
|
|
11
|
+
readonly '@aws-sdk/client-sts': "3.1029.0";
|
|
12
|
+
readonly '@aws-sdk/credential-providers': "3.1029.0";
|
|
13
13
|
readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
|
|
14
14
|
readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
|
|
15
15
|
readonly '@aws-lambda-powertools/logger': "2.32.0";
|
|
@@ -17,39 +17,39 @@ export declare const TS_VERSIONS: {
|
|
|
17
17
|
readonly '@aws-lambda-powertools/parameters': "2.32.0";
|
|
18
18
|
readonly '@aws-lambda-powertools/tracer': "2.32.0";
|
|
19
19
|
readonly '@aws-lambda-powertools/parser': "2.32.0";
|
|
20
|
-
readonly '@aws-sdk/client-appconfigdata': "3.
|
|
20
|
+
readonly '@aws-sdk/client-appconfigdata': "3.1029.0";
|
|
21
21
|
readonly '@middy/core': "7.2.1";
|
|
22
22
|
readonly '@nxlv/python': "22.1.1";
|
|
23
23
|
readonly '@nx-extend/terraform': "10.2.1";
|
|
24
|
-
readonly '@nx/devkit': "22.6.
|
|
25
|
-
readonly '@nx/react': "22.6.
|
|
26
|
-
readonly 'create-nx-workspace': "22.6.
|
|
24
|
+
readonly '@nx/devkit': "22.6.5";
|
|
25
|
+
readonly '@nx/react': "22.6.5";
|
|
26
|
+
readonly 'create-nx-workspace': "22.6.5";
|
|
27
27
|
readonly '@modelcontextprotocol/sdk': "1.29.0";
|
|
28
28
|
readonly '@modelcontextprotocol/inspector': "0.19.0";
|
|
29
29
|
readonly '@strands-agents/sdk': "0.7.0";
|
|
30
|
-
readonly '@tanstack/react-router': "1.168.
|
|
31
|
-
readonly '@tanstack/router-plugin': "1.167.
|
|
32
|
-
readonly '@tanstack/router-generator': "1.166.
|
|
30
|
+
readonly '@tanstack/react-router': "1.168.17";
|
|
31
|
+
readonly '@tanstack/router-plugin': "1.167.16";
|
|
32
|
+
readonly '@tanstack/router-generator': "1.166.28";
|
|
33
33
|
readonly '@tanstack/virtual-file-routes': "1.161.7";
|
|
34
34
|
readonly '@tanstack/router-utils': "1.161.6";
|
|
35
|
-
readonly '@cloudscape-design/board-components': "3.0.
|
|
36
|
-
readonly '@cloudscape-design/components': "3.0.
|
|
37
|
-
readonly '@cloudscape-design/global-styles': "1.0.
|
|
38
|
-
readonly '@tanstack/react-query': "5.
|
|
39
|
-
readonly '@tanstack/react-query-devtools': "5.
|
|
35
|
+
readonly '@cloudscape-design/board-components': "3.0.166";
|
|
36
|
+
readonly '@cloudscape-design/components': "3.0.1272";
|
|
37
|
+
readonly '@cloudscape-design/global-styles': "1.0.57";
|
|
38
|
+
readonly '@tanstack/react-query': "5.99.0";
|
|
39
|
+
readonly '@tanstack/react-query-devtools': "5.99.0";
|
|
40
40
|
readonly '@trpc/tanstack-react-query': "11.16.0";
|
|
41
41
|
readonly '@trpc/client': "11.16.0";
|
|
42
42
|
readonly '@trpc/server': "11.16.0";
|
|
43
|
-
readonly '@types/node': "25.
|
|
43
|
+
readonly '@types/node': "25.6.0";
|
|
44
44
|
readonly '@types/aws-lambda': "8.10.161";
|
|
45
45
|
readonly '@types/cors': "2.8.19";
|
|
46
46
|
readonly '@types/ws': "8.18.1";
|
|
47
47
|
readonly '@types/express': "5.0.6";
|
|
48
|
-
readonly '@smithy/types': "4.
|
|
49
|
-
readonly '@vitest/coverage-v8': "4.1.
|
|
50
|
-
readonly '@vitest/ui': "4.1.
|
|
48
|
+
readonly '@smithy/types': "4.14.0";
|
|
49
|
+
readonly '@vitest/coverage-v8': "4.1.4";
|
|
50
|
+
readonly '@vitest/ui': "4.1.4";
|
|
51
51
|
readonly aws4fetch: "1.0.20";
|
|
52
|
-
readonly 'aws-cdk': "2.
|
|
52
|
+
readonly 'aws-cdk': "2.1118.0";
|
|
53
53
|
readonly 'aws-cdk-lib': "2.248.0";
|
|
54
54
|
readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.248.0-alpha.0";
|
|
55
55
|
readonly 'aws-xray-sdk-core': "3.12.0";
|
|
@@ -57,38 +57,38 @@ export declare const TS_VERSIONS: {
|
|
|
57
57
|
readonly cors: "2.8.6";
|
|
58
58
|
readonly 'class-variance-authority': "0.7.1";
|
|
59
59
|
readonly clsx: "2.1.1";
|
|
60
|
-
readonly electrodb: "3.7.
|
|
61
|
-
readonly esbuild: "0.
|
|
60
|
+
readonly electrodb: "3.7.5";
|
|
61
|
+
readonly esbuild: "0.28.0";
|
|
62
62
|
readonly 'event-source-polyfill': "1.0.31";
|
|
63
63
|
readonly '@types/event-source-polyfill': "1.0.5";
|
|
64
|
-
readonly '@typescript-eslint/eslint-plugin': "8.58.
|
|
65
|
-
readonly '@typescript-eslint/parser': "8.58.
|
|
64
|
+
readonly '@typescript-eslint/eslint-plugin': "8.58.1";
|
|
65
|
+
readonly '@typescript-eslint/parser': "8.58.1";
|
|
66
66
|
readonly 'eslint-plugin-prettier': "5.5.5";
|
|
67
67
|
readonly express: "5.2.1";
|
|
68
68
|
readonly 'jsonc-eslint-parser': "3.1.0";
|
|
69
|
-
readonly 'typescript-eslint': "8.58.
|
|
69
|
+
readonly 'typescript-eslint': "8.58.1";
|
|
70
70
|
readonly 'make-dir-cli': "4.0.0";
|
|
71
71
|
readonly ncp: "2.0.0";
|
|
72
72
|
readonly 'npm-check-updates': "19.6.6";
|
|
73
73
|
readonly 'oidc-client-ts': "3.5.0";
|
|
74
|
-
readonly prettier: "3.8.
|
|
74
|
+
readonly prettier: "3.8.2";
|
|
75
75
|
readonly 'react-oidc-context': "3.3.1";
|
|
76
|
-
readonly react: "19.2.
|
|
77
|
-
readonly 'react-dom': "19.2.
|
|
76
|
+
readonly react: "19.2.5";
|
|
77
|
+
readonly 'react-dom': "19.2.5";
|
|
78
78
|
readonly rimraf: "6.1.3";
|
|
79
|
-
readonly rolldown: "1.0.0-rc.
|
|
79
|
+
readonly rolldown: "1.0.0-rc.15";
|
|
80
80
|
readonly 'source-map-support': "0.5.21";
|
|
81
81
|
readonly tailwindcss: "4.2.2";
|
|
82
82
|
readonly '@tailwindcss/vite': "4.2.2";
|
|
83
83
|
readonly tsx: "4.21.0";
|
|
84
|
-
readonly 'lucide-react': "1.
|
|
84
|
+
readonly 'lucide-react': "1.8.0";
|
|
85
85
|
readonly 'radix-ui': "1.4.3";
|
|
86
|
-
readonly shadcn: "4.
|
|
86
|
+
readonly shadcn: "4.2.0";
|
|
87
87
|
readonly 'tw-animate-css': "1.4.0";
|
|
88
88
|
readonly 'tailwind-merge': "3.5.0";
|
|
89
|
-
readonly vite: "8.0.
|
|
89
|
+
readonly vite: "8.0.8";
|
|
90
90
|
readonly typescript: "6.0.2";
|
|
91
|
-
readonly vitest: "4.1.
|
|
91
|
+
readonly vitest: "4.1.4";
|
|
92
92
|
readonly 'vite-tsconfig-paths': "6.1.1";
|
|
93
93
|
readonly zod: "4.3.6";
|
|
94
94
|
readonly ws: "8.20.0";
|
|
@@ -98,26 +98,26 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
|
98
98
|
* Add versions to the given dependencies
|
|
99
99
|
*/
|
|
100
100
|
export declare const withVersions: (deps: ITsDepVersion[]) => {
|
|
101
|
-
[k: string]: "22.6.
|
|
101
|
+
[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.10.0" | "3.1029.0" | "1.0.0-alpha.10" | "2.32.0" | "7.2.1" | "10.2.1" | "0.19.0" | "0.7.0" | "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" | "6.1.1" | "8.20.0";
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
104
104
|
* Versions for Python dependencies added by generators
|
|
105
105
|
*/
|
|
106
106
|
export declare const PY_VERSIONS: {
|
|
107
|
-
readonly 'aws-lambda-powertools': "==3.
|
|
108
|
-
readonly 'aws-lambda-powertools[tracer]': "==3.
|
|
109
|
-
readonly 'aws-lambda-powertools[parser]': "==3.
|
|
110
|
-
readonly 'aws-opentelemetry-distro': "==0.
|
|
111
|
-
readonly 'bedrock-agentcore': "==1.6.
|
|
112
|
-
readonly boto3: "==1.42.
|
|
113
|
-
readonly checkov: "==3.2.
|
|
107
|
+
readonly 'aws-lambda-powertools': "==3.27.0";
|
|
108
|
+
readonly 'aws-lambda-powertools[tracer]': "==3.27.0";
|
|
109
|
+
readonly 'aws-lambda-powertools[parser]': "==3.27.0";
|
|
110
|
+
readonly 'aws-opentelemetry-distro': "==0.17.0";
|
|
111
|
+
readonly 'bedrock-agentcore': "==1.6.1";
|
|
112
|
+
readonly boto3: "==1.42.88";
|
|
113
|
+
readonly checkov: "==3.2.519";
|
|
114
114
|
readonly fastapi: "==0.135.3";
|
|
115
115
|
readonly 'fastapi[standard]': "==0.135.3";
|
|
116
116
|
readonly mcp: "==1.27.0";
|
|
117
117
|
readonly 'pip-check-updates': "==0.28.0";
|
|
118
|
-
readonly 'strands-agents': "==1.
|
|
119
|
-
readonly 'strands-agents-tools': "==0.
|
|
120
|
-
readonly uvicorn: "==0.
|
|
118
|
+
readonly 'strands-agents': "==1.35.0";
|
|
119
|
+
readonly 'strands-agents-tools': "==0.4.1";
|
|
120
|
+
readonly uvicorn: "==0.44.0";
|
|
121
121
|
};
|
|
122
122
|
export type IPyDepVersion = keyof typeof PY_VERSIONS;
|
|
123
123
|
/**
|
package/src/utils/versions.js
CHANGED
|
@@ -9,10 +9,10 @@ exports.withPyVersions = exports.PY_VERSIONS = exports.withVersions = exports.TS
|
|
|
9
9
|
* Versons for TypeScript dependencies added by generators
|
|
10
10
|
*/
|
|
11
11
|
exports.TS_VERSIONS = {
|
|
12
|
-
'@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.
|
|
13
|
-
'@aws-sdk/client-dynamodb': '3.
|
|
14
|
-
'@aws-sdk/client-sts': '3.
|
|
15
|
-
'@aws-sdk/credential-providers': '3.
|
|
12
|
+
'@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.10.0',
|
|
13
|
+
'@aws-sdk/client-dynamodb': '3.1029.0',
|
|
14
|
+
'@aws-sdk/client-sts': '3.1029.0',
|
|
15
|
+
'@aws-sdk/credential-providers': '3.1029.0',
|
|
16
16
|
'@aws-smithy/server-apigateway': '1.0.0-alpha.10',
|
|
17
17
|
'@aws-smithy/server-node': '1.0.0-alpha.10',
|
|
18
18
|
'@aws-lambda-powertools/logger': '2.32.0',
|
|
@@ -20,39 +20,39 @@ exports.TS_VERSIONS = {
|
|
|
20
20
|
'@aws-lambda-powertools/parameters': '2.32.0',
|
|
21
21
|
'@aws-lambda-powertools/tracer': '2.32.0',
|
|
22
22
|
'@aws-lambda-powertools/parser': '2.32.0',
|
|
23
|
-
'@aws-sdk/client-appconfigdata': '3.
|
|
23
|
+
'@aws-sdk/client-appconfigdata': '3.1029.0',
|
|
24
24
|
'@middy/core': '7.2.1',
|
|
25
25
|
'@nxlv/python': '22.1.1',
|
|
26
26
|
'@nx-extend/terraform': '10.2.1',
|
|
27
|
-
'@nx/devkit': '22.6.
|
|
28
|
-
'@nx/react': '22.6.
|
|
29
|
-
'create-nx-workspace': '22.6.
|
|
27
|
+
'@nx/devkit': '22.6.5',
|
|
28
|
+
'@nx/react': '22.6.5',
|
|
29
|
+
'create-nx-workspace': '22.6.5',
|
|
30
30
|
'@modelcontextprotocol/sdk': '1.29.0',
|
|
31
31
|
'@modelcontextprotocol/inspector': '0.19.0',
|
|
32
32
|
'@strands-agents/sdk': '0.7.0',
|
|
33
|
-
'@tanstack/react-router': '1.168.
|
|
34
|
-
'@tanstack/router-plugin': '1.167.
|
|
35
|
-
'@tanstack/router-generator': '1.166.
|
|
33
|
+
'@tanstack/react-router': '1.168.17',
|
|
34
|
+
'@tanstack/router-plugin': '1.167.16',
|
|
35
|
+
'@tanstack/router-generator': '1.166.28',
|
|
36
36
|
'@tanstack/virtual-file-routes': '1.161.7',
|
|
37
37
|
'@tanstack/router-utils': '1.161.6',
|
|
38
|
-
'@cloudscape-design/board-components': '3.0.
|
|
39
|
-
'@cloudscape-design/components': '3.0.
|
|
40
|
-
'@cloudscape-design/global-styles': '1.0.
|
|
41
|
-
'@tanstack/react-query': '5.
|
|
42
|
-
'@tanstack/react-query-devtools': '5.
|
|
38
|
+
'@cloudscape-design/board-components': '3.0.166',
|
|
39
|
+
'@cloudscape-design/components': '3.0.1272',
|
|
40
|
+
'@cloudscape-design/global-styles': '1.0.57',
|
|
41
|
+
'@tanstack/react-query': '5.99.0',
|
|
42
|
+
'@tanstack/react-query-devtools': '5.99.0',
|
|
43
43
|
'@trpc/tanstack-react-query': '11.16.0',
|
|
44
44
|
'@trpc/client': '11.16.0',
|
|
45
45
|
'@trpc/server': '11.16.0',
|
|
46
|
-
'@types/node': '25.
|
|
46
|
+
'@types/node': '25.6.0',
|
|
47
47
|
'@types/aws-lambda': '8.10.161',
|
|
48
48
|
'@types/cors': '2.8.19',
|
|
49
49
|
'@types/ws': '8.18.1',
|
|
50
50
|
'@types/express': '5.0.6',
|
|
51
|
-
'@smithy/types': '4.
|
|
52
|
-
'@vitest/coverage-v8': '4.1.
|
|
53
|
-
'@vitest/ui': '4.1.
|
|
51
|
+
'@smithy/types': '4.14.0',
|
|
52
|
+
'@vitest/coverage-v8': '4.1.4',
|
|
53
|
+
'@vitest/ui': '4.1.4',
|
|
54
54
|
aws4fetch: '1.0.20',
|
|
55
|
-
'aws-cdk': '2.
|
|
55
|
+
'aws-cdk': '2.1118.0',
|
|
56
56
|
'aws-cdk-lib': '2.248.0',
|
|
57
57
|
'@aws-cdk/aws-bedrock-agentcore-alpha': '2.248.0-alpha.0',
|
|
58
58
|
'aws-xray-sdk-core': '3.12.0',
|
|
@@ -60,38 +60,38 @@ exports.TS_VERSIONS = {
|
|
|
60
60
|
cors: '2.8.6',
|
|
61
61
|
'class-variance-authority': '0.7.1',
|
|
62
62
|
clsx: '2.1.1',
|
|
63
|
-
electrodb: '3.7.
|
|
64
|
-
esbuild: '0.
|
|
63
|
+
electrodb: '3.7.5',
|
|
64
|
+
esbuild: '0.28.0',
|
|
65
65
|
'event-source-polyfill': '1.0.31',
|
|
66
66
|
'@types/event-source-polyfill': '1.0.5',
|
|
67
|
-
'@typescript-eslint/eslint-plugin': '8.58.
|
|
68
|
-
'@typescript-eslint/parser': '8.58.
|
|
67
|
+
'@typescript-eslint/eslint-plugin': '8.58.1',
|
|
68
|
+
'@typescript-eslint/parser': '8.58.1',
|
|
69
69
|
'eslint-plugin-prettier': '5.5.5',
|
|
70
70
|
express: '5.2.1',
|
|
71
71
|
'jsonc-eslint-parser': '3.1.0',
|
|
72
|
-
'typescript-eslint': '8.58.
|
|
72
|
+
'typescript-eslint': '8.58.1',
|
|
73
73
|
'make-dir-cli': '4.0.0',
|
|
74
74
|
ncp: '2.0.0',
|
|
75
75
|
'npm-check-updates': '19.6.6',
|
|
76
76
|
'oidc-client-ts': '3.5.0',
|
|
77
|
-
prettier: '3.8.
|
|
77
|
+
prettier: '3.8.2',
|
|
78
78
|
'react-oidc-context': '3.3.1',
|
|
79
|
-
react: '19.2.
|
|
80
|
-
'react-dom': '19.2.
|
|
79
|
+
react: '19.2.5',
|
|
80
|
+
'react-dom': '19.2.5',
|
|
81
81
|
rimraf: '6.1.3',
|
|
82
|
-
rolldown: '1.0.0-rc.
|
|
82
|
+
rolldown: '1.0.0-rc.15',
|
|
83
83
|
'source-map-support': '0.5.21',
|
|
84
84
|
tailwindcss: '4.2.2',
|
|
85
85
|
'@tailwindcss/vite': '4.2.2',
|
|
86
86
|
tsx: '4.21.0',
|
|
87
|
-
'lucide-react': '1.
|
|
87
|
+
'lucide-react': '1.8.0',
|
|
88
88
|
'radix-ui': '1.4.3',
|
|
89
|
-
shadcn: '4.
|
|
89
|
+
shadcn: '4.2.0',
|
|
90
90
|
'tw-animate-css': '1.4.0',
|
|
91
91
|
'tailwind-merge': '3.5.0',
|
|
92
|
-
vite: '8.0.
|
|
92
|
+
vite: '8.0.8',
|
|
93
93
|
typescript: '6.0.2',
|
|
94
|
-
vitest: '4.1.
|
|
94
|
+
vitest: '4.1.4',
|
|
95
95
|
'vite-tsconfig-paths': '6.1.1',
|
|
96
96
|
zod: '4.3.6',
|
|
97
97
|
ws: '8.20.0',
|
|
@@ -105,20 +105,20 @@ exports.withVersions = withVersions;
|
|
|
105
105
|
* Versions for Python dependencies added by generators
|
|
106
106
|
*/
|
|
107
107
|
exports.PY_VERSIONS = {
|
|
108
|
-
'aws-lambda-powertools': '==3.
|
|
109
|
-
'aws-lambda-powertools[tracer]': '==3.
|
|
110
|
-
'aws-lambda-powertools[parser]': '==3.
|
|
111
|
-
'aws-opentelemetry-distro': '==0.
|
|
112
|
-
'bedrock-agentcore': '==1.6.
|
|
113
|
-
boto3: '==1.42.
|
|
114
|
-
checkov: '==3.2.
|
|
108
|
+
'aws-lambda-powertools': '==3.27.0',
|
|
109
|
+
'aws-lambda-powertools[tracer]': '==3.27.0',
|
|
110
|
+
'aws-lambda-powertools[parser]': '==3.27.0',
|
|
111
|
+
'aws-opentelemetry-distro': '==0.17.0',
|
|
112
|
+
'bedrock-agentcore': '==1.6.1',
|
|
113
|
+
boto3: '==1.42.88',
|
|
114
|
+
checkov: '==3.2.519',
|
|
115
115
|
fastapi: '==0.135.3',
|
|
116
116
|
'fastapi[standard]': '==0.135.3',
|
|
117
117
|
mcp: '==1.27.0',
|
|
118
118
|
'pip-check-updates': '==0.28.0',
|
|
119
|
-
'strands-agents': '==1.
|
|
120
|
-
'strands-agents-tools': '==0.
|
|
121
|
-
uvicorn: '==0.
|
|
119
|
+
'strands-agents': '==1.35.0',
|
|
120
|
+
'strands-agents-tools': '==0.4.1',
|
|
121
|
+
uvicorn: '==0.44.0',
|
|
122
122
|
};
|
|
123
123
|
/**
|
|
124
124
|
* Add versions to the given dependencies
|
|
@@ -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,wDAAwD,EAAE,
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
|