@aws/nx-plugin 0.98.0 → 0.99.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.
Files changed (58) hide show
  1. package/generators.json +17 -1
  2. package/package.json +1 -1
  3. package/src/connection/agent-runtime-config.d.ts +19 -0
  4. package/src/connection/agent-runtime-config.js +52 -0
  5. package/src/connection/agent-runtime-config.js.map +1 -0
  6. package/src/connection/generator.js +15 -5
  7. package/src/connection/generator.js.map +1 -1
  8. package/src/py/fast-api/react/__snapshots__/generator.spec.ts.snap +3 -17
  9. package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +3 -3
  10. package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +3 -3
  11. package/src/py/strands-agent/a2a-connection/files/agent-connection/app/__targetAgentSnakeCase___client.py.template +29 -0
  12. package/src/py/strands-agent/a2a-connection/generator.d.ts +10 -0
  13. package/src/py/strands-agent/a2a-connection/generator.js +164 -0
  14. package/src/py/strands-agent/a2a-connection/generator.js.map +1 -0
  15. package/src/py/strands-agent/a2a-connection/schema.d.ts +15 -0
  16. package/src/py/strands-agent/a2a-connection/schema.json +26 -0
  17. package/src/py/strands-agent/mcp-connection/__snapshots__/generator.spec.ts.snap +9 -63
  18. package/src/py/strands-agent/mcp-connection/files/agent-connection/app/__mcpServerSnakeCase___client.py.template +4 -19
  19. package/src/py/strands-agent/mcp-connection/generator.js +16 -19
  20. package/src/py/strands-agent/mcp-connection/generator.js.map +1 -1
  21. package/src/py/strands-agent/react-connection/__snapshots__/generator.spec.ts.snap +3 -17
  22. package/src/py/strands-agent/react-connection/generator.js +8 -0
  23. package/src/py/strands-agent/react-connection/generator.js.map +1 -1
  24. package/src/smithy/react-connection/__snapshots__/generator.spec.ts.snap +3 -17
  25. package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +3 -3
  26. package/src/ts/strands-agent/__snapshots__/generator.spec.ts.snap +3 -3
  27. package/src/ts/strands-agent/a2a-connection/files/agent-connection/app/__targetAgentKebabCase__-client.ts.template +27 -0
  28. package/src/ts/strands-agent/a2a-connection/generator.d.ts +10 -0
  29. package/src/ts/strands-agent/a2a-connection/generator.js +119 -0
  30. package/src/ts/strands-agent/a2a-connection/generator.js.map +1 -0
  31. package/src/ts/strands-agent/a2a-connection/schema.d.ts +15 -0
  32. package/src/ts/strands-agent/a2a-connection/schema.json +26 -0
  33. package/src/ts/strands-agent/mcp-connection/__snapshots__/generator.spec.ts.snap +9 -31
  34. package/src/ts/strands-agent/mcp-connection/files/agent-connection/app/__mcpServerKebabCase__-client.ts.template +2 -9
  35. package/src/ts/strands-agent/mcp-connection/generator.js +4 -2
  36. package/src/ts/strands-agent/mcp-connection/generator.js.map +1 -1
  37. package/src/ts/strands-agent/react-connection/generator.js +8 -0
  38. package/src/ts/strands-agent/react-connection/generator.js.map +1 -1
  39. package/src/utils/agent-connection/agent-connection.d.ts +31 -3
  40. package/src/utils/agent-connection/agent-connection.js +62 -30
  41. package/src/utils/agent-connection/agent-connection.js.map +1 -1
  42. package/src/utils/agent-connection/files/core-a2a/agentcore-a2a-client.ts.template +134 -0
  43. package/src/utils/agent-connection/files/{core → core-mcp}/agentcore-mcp-client.ts.template +7 -22
  44. package/src/utils/agent-connection/files/core-runtime-config/runtime-config.ts.template +40 -0
  45. package/src/utils/agent-connection/files/py-core-a2a/agentcore_a2a_client.py.template +91 -0
  46. package/src/utils/agent-connection/files/py-core-auth/auth/__init__.py.template +3 -0
  47. package/src/utils/agent-connection/files/py-core-auth/auth/sigv4.py.template +48 -0
  48. package/src/utils/agent-connection/files/{py-core → py-core-mcp}/agentcore_mcp_client.py.template +2 -36
  49. package/src/utils/agent-connection/files/py-core-runtime-config/runtime_config.py.template +44 -0
  50. package/src/utils/agent-core-constructs/files/cdk/app/agent-core/__nameKebabCase__/__nameKebabCase__.ts.template +2 -2
  51. package/src/utils/agent-core-constructs/files/terraform/app/agent-core/__nameKebabCase__/__nameKebabCase__.tf.template +1 -1
  52. package/src/utils/ast.d.ts +18 -0
  53. package/src/utils/ast.js +58 -9
  54. package/src/utils/ast.js.map +1 -1
  55. package/src/utils/connection/open-api/files/components/__apiNameClassName__Provider.tsx.template +3 -16
  56. package/src/utils/versions.d.ts +1 -0
  57. package/src/utils/versions.js +1 -0
  58. package/src/utils/versions.js.map +1 -1
@@ -0,0 +1,91 @@
1
+ from collections.abc import Callable
2
+ from urllib.parse import quote
3
+
4
+ import boto3
5
+ import httpx
6
+ from a2a.client import ClientConfig
7
+ from strands.agent.a2a_agent import A2AAgent
8
+
9
+ from .auth import SigV4HTTPXAuth
10
+
11
+
12
+ class AgentCoreA2aClient:
13
+ """Factory for clients to call A2A agents hosted on Bedrock AgentCore Runtime."""
14
+
15
+ @staticmethod
16
+ def _build_url(agent_runtime_arn: str) -> tuple[str, str]:
17
+ """Extract region from ARN and construct the A2A invocations URL.
18
+
19
+ ARN format: arn:partition:service:region:account-id:resource
20
+ A2A on AgentCore is mounted at `/invocations/` (trailing slash matters).
21
+ """
22
+ region = agent_runtime_arn.split(":")[3]
23
+ encoded_arn = quote(agent_runtime_arn, safe="")
24
+ url = f"https://bedrock-agentcore.{region}.amazonaws.com/runtimes/{encoded_arn}/invocations/"
25
+ return region, url
26
+
27
+ @staticmethod
28
+ def _build(
29
+ url: str,
30
+ auth: httpx.Auth | None,
31
+ headers: dict | None,
32
+ *,
33
+ name: str | None,
34
+ description: str | None,
35
+ ) -> A2AAgent:
36
+ httpx_client = httpx.AsyncClient(
37
+ auth=auth,
38
+ headers=headers or {},
39
+ timeout=120,
40
+ )
41
+ client_config = ClientConfig(httpx_client=httpx_client, streaming=False)
42
+ kwargs: dict = {"endpoint": url, "client_config": client_config}
43
+ if name:
44
+ kwargs["name"] = name
45
+ if description:
46
+ kwargs["description"] = description
47
+ return A2AAgent(**kwargs)
48
+
49
+ @staticmethod
50
+ def with_iam_auth(
51
+ agent_runtime_arn: str,
52
+ *,
53
+ name: str | None = None,
54
+ description: str | None = None,
55
+ session_id: str | None = None,
56
+ ) -> A2AAgent:
57
+ """Create an `A2AAgent` with IAM (SigV4) authentication."""
58
+ region, url = AgentCoreA2aClient._build_url(agent_runtime_arn)
59
+ credentials = boto3.Session(region_name=region).get_credentials()
60
+ headers = {}
61
+ if session_id:
62
+ headers["X-Amzn-Bedrock-AgentCore-Runtime-Session-Id"] = session_id
63
+ return AgentCoreA2aClient._build(
64
+ url,
65
+ SigV4HTTPXAuth(credentials, "bedrock-agentcore", region),
66
+ headers,
67
+ name=name,
68
+ description=description,
69
+ )
70
+
71
+ @staticmethod
72
+ def with_jwt_auth(
73
+ agent_runtime_arn: str,
74
+ access_token_provider: Callable[[], str],
75
+ *,
76
+ name: str | None = None,
77
+ description: str | None = None,
78
+ session_id: str | None = None,
79
+ ) -> A2AAgent:
80
+ """Create an `A2AAgent` with JWT Bearer authentication."""
81
+ _, url = AgentCoreA2aClient._build_url(agent_runtime_arn)
82
+ headers = {"Authorization": f"Bearer {access_token_provider()}"}
83
+ if session_id:
84
+ headers["X-Amzn-Bedrock-AgentCore-Runtime-Session-Id"] = session_id
85
+ return AgentCoreA2aClient._build(
86
+ url,
87
+ None,
88
+ headers,
89
+ name=name,
90
+ description=description,
91
+ )
@@ -0,0 +1,3 @@
1
+ from .sigv4 import SigV4HTTPXAuth
2
+
3
+ __all__ = ["SigV4HTTPXAuth"]
@@ -0,0 +1,48 @@
1
+ import hashlib
2
+ from collections.abc import Generator
3
+ from typing import Any
4
+
5
+ import httpx
6
+ from botocore.auth import SigV4Auth
7
+ from botocore.awsrequest import AWSRequest
8
+
9
+
10
+ class SigV4HTTPXAuth(httpx.Auth):
11
+ """HTTPX Auth class that signs requests with AWS SigV4.
12
+
13
+ The target AWS service (e.g. ``bedrock-agentcore``) is passed as a
14
+ parameter so the same auth class can be reused across different
15
+ AgentCore resource types (A2A agents, MCP servers, etc.).
16
+ """
17
+
18
+ requires_request_body = True
19
+
20
+ def __init__(self, credentials: Any, service: str, region: str):
21
+ self.credentials = credentials
22
+ self.service = service
23
+ self.region = region
24
+ self.signer = SigV4Auth(credentials, service, region)
25
+
26
+ def auth_flow(
27
+ self, request: httpx.Request
28
+ ) -> Generator[httpx.Request, httpx.Response, None]:
29
+ headers = dict(request.headers)
30
+
31
+ headers.pop("connection", None)
32
+ headers["x-amz-content-sha256"] = hashlib.sha256(
33
+ request.content if request.content else b""
34
+ ).hexdigest()
35
+
36
+ aws_request = AWSRequest(
37
+ method=request.method,
38
+ url=str(request.url),
39
+ data=request.content,
40
+ headers=headers,
41
+ )
42
+
43
+ self.signer.add_auth(aws_request)
44
+
45
+ request.headers.clear()
46
+ request.headers.update(dict(aws_request.headers))
47
+
48
+ yield request
@@ -1,43 +1,9 @@
1
- import hashlib
2
- from collections.abc import Generator
3
- from typing import Any
4
-
5
1
  import boto3
6
2
  import httpx
7
- from botocore.auth import SigV4Auth
8
- from botocore.awsrequest import AWSRequest
9
3
  from mcp.client.streamable_http import streamablehttp_client
10
4
  from strands.tools.mcp.mcp_client import MCPClient
11
5
 
12
-
13
- class SigV4HTTPXAuth(httpx.Auth):
14
- """HTTPX Auth class that signs requests with AWS SigV4."""
15
-
16
- def __init__(self, credentials: Any, region: str):
17
- self.credentials = credentials
18
- self.service = "bedrock-agentcore"
19
- self.region = region
20
- self.signer = SigV4Auth(credentials, self.service, region)
21
-
22
- def auth_flow(self, request: httpx.Request) -> Generator[httpx.Request, httpx.Response, None]:
23
- headers = dict(request.headers)
24
-
25
- headers.pop("connection", None)
26
- headers["x-amz-content-sha256"] = hashlib.sha256(request.content if request.content else b"").hexdigest()
27
-
28
- aws_request = AWSRequest(
29
- method=request.method,
30
- url=str(request.url),
31
- data=request.content,
32
- headers=headers,
33
- )
34
-
35
- self.signer.add_auth(aws_request)
36
-
37
- request.headers.clear()
38
- request.headers.update(dict(aws_request.headers))
39
-
40
- yield request
6
+ from .auth import SigV4HTTPXAuth
41
7
 
42
8
 
43
9
  class AgentCoreMCPClient:
@@ -88,7 +54,7 @@ class AgentCoreMCPClient:
88
54
  return AgentCoreMCPClient._create(
89
55
  agent_runtime_arn=agent_runtime_arn,
90
56
  session_id=session_id,
91
- auth_handler=SigV4HTTPXAuth(credentials, region),
57
+ auth_handler=SigV4HTTPXAuth(credentials, "bedrock-agentcore", region),
92
58
  )
93
59
 
94
60
  @staticmethod
@@ -0,0 +1,44 @@
1
+ import os
2
+
3
+ from aws_lambda_powertools.utilities import parameters
4
+ from botocore.config import Config
5
+
6
+
7
+ def _get_agentcore_runtime_config() -> dict:
8
+ """Read the runtime-config ``agentcore`` namespace from AppConfig.
9
+
10
+ ``RUNTIME_CONFIG_APP_ID`` is set on the AgentCore runtime by the generated
11
+ CDK/Terraform construct for this project.
12
+ """
13
+ application = os.environ.get("RUNTIME_CONFIG_APP_ID")
14
+ if not application:
15
+ raise RuntimeError(
16
+ "RUNTIME_CONFIG_APP_ID is not set — cannot resolve connected agent ARNs from AppConfig."
17
+ )
18
+ region = os.environ.get("AWS_REGION", os.environ.get("AWS_DEFAULT_REGION"))
19
+ provider_kwargs = {}
20
+ if region:
21
+ provider_kwargs["config"] = Config(region_name=region)
22
+ provider = parameters.AppConfigProvider(
23
+ environment="default",
24
+ application=application,
25
+ **provider_kwargs,
26
+ )
27
+ return provider.get("agentcore", transform="json")
28
+
29
+
30
+ def get_connected_agent_runtime_arn(name: str) -> str:
31
+ """Resolve the AgentCore runtime ARN for a connected agent or MCP server
32
+ from this project's runtime configuration.
33
+
34
+ ``name`` must match the class name of the target construct
35
+ (e.g. ``MyAgent``, ``InventoryMcpServer``).
36
+ """
37
+ config = _get_agentcore_runtime_config()
38
+ agent_runtimes = config.get("agentRuntimes", {}) if config else {}
39
+ arn = agent_runtimes.get(name)
40
+ if not arn:
41
+ raise RuntimeError(
42
+ f"No connected agent runtime named '{name}' found in runtime configuration."
43
+ )
44
+ return arn
@@ -97,8 +97,8 @@ export class <%- nameClassName %> extends Construct implements IGrantable {
97
97
 
98
98
  rc.grantReadAppConfig(this.agentCoreRuntime);
99
99
 
100
- rc.set('connection', 'agentRuntimes', {
101
- ...rc.get('connection').agentRuntimes,
100
+ rc.set('agentcore', 'agentRuntimes', {
101
+ ...rc.get('agentcore').agentRuntimes,
102
102
  <%- nameClassName %>: this.agentCoreRuntime.agentRuntimeArn,
103
103
  });
104
104
  }
@@ -80,7 +80,7 @@ module "agent_core_runtime" {
80
80
  module "add_agent_runtime_to_runtime_config" {
81
81
  source = "../../../core/runtime-config/entry"
82
82
 
83
- namespace = "connection"
83
+ namespace = "agentcore"
84
84
  key = "agentRuntimes"
85
85
  value = { "<%= nameClassName %>" = module.agent_core_runtime.agent_core_runtime_arn }
86
86
 
@@ -4,6 +4,20 @@
4
4
  */
5
5
  import { Tree } from '@nx/devkit';
6
6
  export declare const addDestructuredImport: (tree: Tree, filePath: string, variableNames: string[], from: string) => Promise<void>;
7
+ /**
8
+ * Ensure a Python `from <module> import <name1>, <name2>, ...` statement
9
+ * exists in the given file. If the module already has a `from <module> import`
10
+ * line, any missing names are appended; otherwise a fresh import statement is
11
+ * prepended to the file (ruff's import sorter will reorder it into place on
12
+ * the next format pass).
13
+ *
14
+ * We try to append first (which only succeeds if an import-from for the
15
+ * module already exists AND the name isn't yet in the list). If nothing
16
+ * was rewritten after trying every requested name, we fall back to checking
17
+ * whether the module is imported at all; if not, we prepend a fresh
18
+ * `from <module> import ...` line.
19
+ */
20
+ export declare const addPythonDestructuredImport: (tree: Tree, filePath: string, variableNames: string[], from: string) => Promise<void>;
7
21
  /**
8
22
  * Adds an `import <variableName> from '<from>'; statement to the beginning of the file,
9
23
  * if it doesn't already exist
@@ -26,5 +40,9 @@ export declare const applyGritQL: (tree: Tree, filePath: string, pattern: string
26
40
  /**
27
41
  * Check whether a GritQL pattern matches anywhere in a file.
28
42
  * Returns true if the pattern matches at least once.
43
+ *
44
+ * Accepts raw GritQL, including patterns that start with a `language <name>`
45
+ * header (e.g. `language python\n\`print($_)\``) — the pattern is passed
46
+ * straight through to QueryBuilder without any wrapping rewrite.
29
47
  */
30
48
  export declare const matchGritQL: (tree: Tree, filePath: string, pattern: string) => Promise<boolean>;
package/src/utils/ast.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.matchGritQL = exports.applyGritQL = exports.hasExportDeclaration = exports.addStarExport = exports.addSingleImport = exports.addDestructuredImport = void 0;
3
+ exports.matchGritQL = exports.applyGritQL = exports.hasExportDeclaration = exports.addStarExport = exports.addSingleImport = exports.addPythonDestructuredImport = exports.addDestructuredImport = void 0;
4
4
  const gritql_1 = require("@getgrit/gritql");
5
5
  const assertFilePath = (tree, filePath) => {
6
6
  if (!tree.exists(filePath)) {
@@ -29,6 +29,52 @@ const addDestructuredImport = async (tree, filePath, variableNames, from) => {
29
29
  }
30
30
  };
31
31
  exports.addDestructuredImport = addDestructuredImport;
32
+ /**
33
+ * Ensure a Python `from <module> import <name1>, <name2>, ...` statement
34
+ * exists in the given file. If the module already has a `from <module> import`
35
+ * line, any missing names are appended; otherwise a fresh import statement is
36
+ * prepended to the file (ruff's import sorter will reorder it into place on
37
+ * the next format pass).
38
+ *
39
+ * We try to append first (which only succeeds if an import-from for the
40
+ * module already exists AND the name isn't yet in the list). If nothing
41
+ * was rewritten after trying every requested name, we fall back to checking
42
+ * whether the module is imported at all; if not, we prepend a fresh
43
+ * `from <module> import ...` line.
44
+ */
45
+ const addPythonDestructuredImport = async (tree, filePath, variableNames, from) => {
46
+ assertFilePath(tree, filePath);
47
+ // Determine whether there's any `from <module> import ...` line in the file.
48
+ // We detect this by attempting a no-op transformation — the file is unchanged,
49
+ // but a successful match tells us the line exists.
50
+ const beforeContents = tree.read(filePath).toString();
51
+ let moduleAlreadyImported = false;
52
+ for (const variableName of variableNames) {
53
+ // Appends the name if the import-from exists and the name isn't already there.
54
+ const appended = await (0, exports.applyGritQL)(tree, filePath, `language python\n\`from ${from} import $names\` where { $names <: not contains \`${variableName}\`, $names += \`, ${variableName}\` }`);
55
+ if (appended) {
56
+ moduleAlreadyImported = true;
57
+ }
58
+ }
59
+ // If the append succeeded for at least one name, we know the module line
60
+ // exists; we're done. If nothing was appended we need to distinguish
61
+ // between "module not imported" (need to add a new line) and "module
62
+ // imported but all names already present" (no-op).
63
+ if (moduleAlreadyImported) {
64
+ return;
65
+ }
66
+ const allAlreadyPresent = await (0, exports.matchGritQL)(tree, filePath, `language python\n\`from ${from} import $names\` where { ${variableNames
67
+ .map((n) => `$names <: contains \`${n}\``)
68
+ .join(', ')} }`);
69
+ if (allAlreadyPresent) {
70
+ return;
71
+ }
72
+ // No existing `from <module> import` line — prepend one. Ruff's import
73
+ // sorter will place it in the right group on the next formatter pass.
74
+ const specifiers = variableNames.join(', ');
75
+ tree.write(filePath, `from ${from} import ${specifiers}\n${beforeContents}`);
76
+ };
77
+ exports.addPythonDestructuredImport = addPythonDestructuredImport;
32
78
  /**
33
79
  * Adds an `import <variableName> from '<from>'; statement to the beginning of the file,
34
80
  * if it doesn't already exist
@@ -111,25 +157,28 @@ exports.applyGritQL = applyGritQL;
111
157
  /**
112
158
  * Check whether a GritQL pattern matches anywhere in a file.
113
159
  * Returns true if the pattern matches at least once.
160
+ *
161
+ * Accepts raw GritQL, including patterns that start with a `language <name>`
162
+ * header (e.g. `language python\n\`print($_)\``) — the pattern is passed
163
+ * straight through to QueryBuilder without any wrapping rewrite.
114
164
  */
115
165
  const matchGritQL = async (tree, filePath, pattern) => {
116
166
  if (!tree.exists(filePath))
117
167
  return false;
118
168
  const source = tree.read(filePath).toString();
169
+ let matched = false;
119
170
  try {
120
- // Use a metavariable rewrite to check for matches — $p is constrained to
121
- // the caller's pattern and rewritten to itself, avoiding rendering the
122
- // pattern string twice in the query.
123
- const query = new gritql_1.QueryBuilder(`$p => $p where { $p <: ${pattern} }`);
124
- const result = await query.applyToFile({
125
- path: filePath,
126
- content: source,
171
+ const query = new gritql_1.QueryBuilder(pattern);
172
+ query.filter(() => {
173
+ matched = true;
174
+ return true;
127
175
  });
128
- return result !== null;
176
+ await query.applyToFile({ path: filePath, content: source });
129
177
  }
130
178
  catch {
131
179
  return false;
132
180
  }
181
+ return matched;
133
182
  };
134
183
  exports.matchGritQL = matchGritQL;
135
184
  //# sourceMappingURL=ast.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ast.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/ast.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ast.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/ast.ts"],"names":[],"mappings":"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"}
@@ -38,22 +38,9 @@ const useCreate<%- apiNameClassName %>Client = (): <%- apiNameClassName %> => {
38
38
  const auth = useAuth();
39
39
  const user = auth?.user;
40
40
  const cognitoClient: typeof fetch = (url, init) => {
41
- const headers = { Authorization: `Bearer ${user?.id_token}` };
42
- const existingHeaders = init?.headers;
43
-
44
- return fetch(url, {
45
- ...init,
46
- headers: !existingHeaders ? headers :
47
- existingHeaders instanceof Headers ?
48
- (() => {
49
- const h = new Headers(existingHeaders);
50
- Object.entries(headers).forEach(([k, v]) => h.append(k, v));
51
- return h;
52
- })() :
53
- Array.isArray(existingHeaders) ?
54
- [...existingHeaders, ...Object.entries(headers)] :
55
- { ...existingHeaders, ...headers }
56
- });
41
+ const headers = new Headers(init?.headers);
42
+ headers.set('Authorization', `Bearer ${user?.id_token}`);
43
+ return fetch(url, { ...init, headers });
57
44
  };
58
45
  <%_ } _%>
59
46
  return useMemo(() => new <%- apiNameClassName %>({
@@ -113,6 +113,7 @@ export declare const PY_VERSIONS: {
113
113
  readonly checkov: "==3.2.519";
114
114
  readonly fastapi: "==0.135.3";
115
115
  readonly 'fastapi[standard]': "==0.135.3";
116
+ readonly httpx: "==0.28.1";
116
117
  readonly mcp: "==1.27.0";
117
118
  readonly 'pip-check-updates': "==0.28.0";
118
119
  readonly 'strands-agents': "==1.36.0";
@@ -114,6 +114,7 @@ exports.PY_VERSIONS = {
114
114
  checkov: '==3.2.519',
115
115
  fastapi: '==0.135.3',
116
116
  'fastapi[standard]': '==0.135.3',
117
+ httpx: '==0.28.1',
117
118
  mcp: '==1.27.0',
118
119
  'pip-check-updates': '==0.28.0',
119
120
  'strands-agents': '==1.36.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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"}