@aws/nx-plugin 1.0.0-rc.32 → 1.0.0-rc.34

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 (277) hide show
  1. package/LICENSE-THIRD-PARTY +75 -86
  2. package/generators.json +27 -0
  3. package/package.json +10 -10
  4. package/src/connection/generator.js +12 -1
  5. package/src/connection/generator.js.map +1 -1
  6. package/src/connection/supported-connections.d.ts +10 -1
  7. package/src/connection/supported-connections.js +13 -0
  8. package/src/connection/supported-connections.js.map +1 -1
  9. package/src/infra/app/__snapshots__/generator.spec.ts.snap +21 -21
  10. package/src/infra/app/files/app/src/main.ts.template +1 -1
  11. package/src/infra/app/files/app/src/stages/application-stage.ts.template +1 -1
  12. package/src/infra/app/generator.js +3 -1
  13. package/src/infra/app/generator.js.map +1 -1
  14. package/src/open-api/ts-client/__snapshots__/generator.complex-types.spec.ts.snap +12 -12
  15. package/src/open-api/ts-client/__snapshots__/generator.composite-types.spec.ts.snap +74 -10
  16. package/src/open-api/ts-client/__snapshots__/generator.content-type.spec.ts.snap +22 -4
  17. package/src/open-api/ts-client/__snapshots__/generator.duplicate-types.spec.ts.snap +53 -8
  18. package/src/open-api/ts-client/__snapshots__/generator.edge-cases.spec.ts.snap +32 -4
  19. package/src/open-api/ts-client/__snapshots__/generator.fast-api-gaps.spec.ts.snap +736 -0
  20. package/src/open-api/ts-client/__snapshots__/generator.fast-api.spec.ts.snap +86 -11
  21. package/src/open-api/ts-client/__snapshots__/generator.multipart.spec.ts.snap +21 -3
  22. package/src/open-api/ts-client/__snapshots__/generator.primitive-types.spec.ts.snap +2 -2
  23. package/src/open-api/ts-client/__snapshots__/generator.request.spec.ts.snap +6 -6
  24. package/src/open-api/ts-client/__snapshots__/generator.reserved-keywords.spec.ts.snap +2 -2
  25. package/src/open-api/ts-client/__snapshots__/generator.spec-compliance.spec.ts.snap +1883 -0
  26. package/src/open-api/ts-client/__snapshots__/generator.tags.spec.ts.snap +4 -4
  27. package/src/open-api/ts-client/files/client.gen.ts.template +196 -13
  28. package/src/open-api/ts-client/files/types.gen.ts.template +2 -0
  29. package/src/open-api/ts-client/generator.js +27 -2
  30. package/src/open-api/ts-client/generator.js.map +1 -1
  31. package/src/open-api/ts-hooks/files/options-proxy.gen.ts.template +2 -2
  32. package/src/open-api/ts-hooks/generator.js +5 -1
  33. package/src/open-api/ts-hooks/generator.js.map +1 -1
  34. package/src/open-api/utils/codegen-data/languages.js +6 -0
  35. package/src/open-api/utils/codegen-data/languages.js.map +1 -1
  36. package/src/open-api/utils/codegen-data/types.d.ts +16 -1
  37. package/src/open-api/utils/codegen-data/types.js.map +1 -1
  38. package/src/open-api/utils/codegen-data.js +71 -0
  39. package/src/open-api/utils/codegen-data.js.map +1 -1
  40. package/src/open-api/utils/normalise.js +53 -8
  41. package/src/open-api/utils/normalise.js.map +1 -1
  42. package/src/open-api/utils/parser.js +48 -15
  43. package/src/open-api/utils/parser.js.map +1 -1
  44. package/src/preset/__snapshots__/generator.spec.ts.snap +5 -3
  45. package/src/preset/generator.d.ts +1 -1
  46. package/src/preset/generator.js +5 -2
  47. package/src/preset/generator.js.map +1 -1
  48. package/src/preset/schema.d.js.map +1 -1
  49. package/src/preset/schema.d.ts +2 -0
  50. package/src/preset/schema.json +6 -0
  51. package/src/py/agent/__snapshots__/generator.constructs.spec.ts.snap +7 -7
  52. package/src/py/agent/__snapshots__/generator.frameworks.spec.ts.snap +8 -8
  53. package/src/py/agent/__snapshots__/generator.protocols.spec.ts.snap +89 -3
  54. package/src/py/dynamodb/__snapshots__/generator.spec.ts.snap +2 -2
  55. package/src/py/fast-api/__snapshots__/generator.terraform.spec.ts.snap +12 -12
  56. package/src/py/lambda-function/__snapshots__/generator.spec.ts.snap +2 -2
  57. package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +91 -5
  58. package/src/py/rdb/__snapshots__/generator.spec.ts.snap +2038 -0
  59. package/src/py/rdb/agent-connection/__snapshots__/generator.spec.ts.snap +104 -0
  60. package/src/py/rdb/agent-connection/generator.d.ts +10 -0
  61. package/src/py/rdb/agent-connection/generator.js +46 -0
  62. package/src/py/rdb/agent-connection/generator.js.map +1 -0
  63. package/src/py/rdb/agent-connection/schema.d.js +8 -0
  64. package/src/py/rdb/agent-connection/schema.d.js.map +1 -0
  65. package/src/py/rdb/agent-connection/schema.d.ts +15 -0
  66. package/src/py/rdb/agent-connection/schema.json +27 -0
  67. package/src/py/rdb/fast-api-connection/__snapshots__/generator.spec.ts.snap +44 -0
  68. package/src/py/rdb/fast-api-connection/files/__apiModuleName__/dependencies/__rdbNameSnake__.py.template +14 -0
  69. package/src/py/rdb/fast-api-connection/generator.d.ts +10 -0
  70. package/src/py/rdb/fast-api-connection/generator.js +54 -0
  71. package/src/py/rdb/fast-api-connection/generator.js.map +1 -0
  72. package/src/py/rdb/fast-api-connection/schema.d.js +8 -0
  73. package/src/py/rdb/fast-api-connection/schema.d.js.map +1 -0
  74. package/src/py/rdb/fast-api-connection/schema.d.ts +13 -0
  75. package/src/py/rdb/fast-api-connection/schema.json +23 -0
  76. package/src/py/rdb/files/Dockerfile.create-db-user.template +10 -0
  77. package/src/py/rdb/files/Dockerfile.migration.template +10 -0
  78. package/src/py/rdb/files/__name__/__init__.py.template +3 -0
  79. package/src/py/rdb/files/__name__/connection.py.template +55 -0
  80. package/src/py/rdb/files/__name__/create_db_user_handler.py.template +97 -0
  81. package/src/py/rdb/files/__name__/migration_handler.py.template +36 -0
  82. package/src/py/rdb/files/__name__/models/__init__.py.template +3 -0
  83. package/src/py/rdb/files/__name__/models/example.py.template +8 -0
  84. package/src/py/rdb/files/__name__/utils.py.template +104 -0
  85. package/src/py/rdb/files/alembic.ini.template +38 -0
  86. package/src/py/rdb/files/config.json.template +14 -0
  87. package/src/py/rdb/files/migrations/env.py.template +80 -0
  88. package/src/py/rdb/files/migrations/script.py.mako.template +28 -0
  89. package/src/py/rdb/generator.d.ts +6 -0
  90. package/src/py/rdb/generator.js +263 -0
  91. package/src/py/rdb/generator.js.map +1 -0
  92. package/src/py/rdb/mcp-server-connection/__snapshots__/generator.spec.ts.snap +101 -0
  93. package/src/py/rdb/mcp-server-connection/generator.d.ts +10 -0
  94. package/src/py/rdb/mcp-server-connection/generator.js +46 -0
  95. package/src/py/rdb/mcp-server-connection/generator.js.map +1 -0
  96. package/src/py/rdb/mcp-server-connection/schema.d.js +8 -0
  97. package/src/py/rdb/mcp-server-connection/schema.d.js.map +1 -0
  98. package/src/py/rdb/mcp-server-connection/schema.d.ts +15 -0
  99. package/src/py/rdb/mcp-server-connection/schema.json +27 -0
  100. package/src/py/rdb/schema.d.js +6 -0
  101. package/src/py/rdb/schema.d.js.map +1 -0
  102. package/src/py/rdb/schema.d.ts +16 -0
  103. package/src/py/rdb/schema.json +77 -0
  104. package/src/py/rdb/utils.d.ts +6 -0
  105. package/src/py/rdb/utils.js +16 -0
  106. package/src/py/rdb/utils.js.map +1 -0
  107. package/src/sdk/py.d.ts +2 -0
  108. package/src/sdk/py.js +1 -0
  109. package/src/sdk/py.js.map +1 -1
  110. package/src/smithy/ts/api/__snapshots__/generator.spec.ts.snap +7 -7
  111. package/src/smithy/ts/api/files/handler.ts.template +2 -2
  112. package/src/smithy/ts/api/files/local-server.ts.template +2 -2
  113. package/src/smithy/ts/api/files/operations/echo.ts.template +2 -2
  114. package/src/smithy/ts/api/files/service.ts.template +3 -3
  115. package/src/smithy/ts/api/generator.js +3 -1
  116. package/src/smithy/ts/api/generator.js.map +1 -1
  117. package/src/trpc/backend/__snapshots__/generator.spec.ts.snap +12 -12
  118. package/src/trpc/backend/files/src/client/index.ts.template +1 -1
  119. package/src/trpc/backend/files/src/handler.ts.template +1 -1
  120. package/src/trpc/backend/files/src/index.ts.template +5 -5
  121. package/src/trpc/backend/files/src/init.ts.template +1 -1
  122. package/src/trpc/backend/files/src/local-server.ts.template +1 -1
  123. package/src/trpc/backend/files/src/middleware/index.ts.template +7 -7
  124. package/src/trpc/backend/files/src/procedures/echo.ts.template +2 -2
  125. package/src/trpc/backend/files/src/router.ts.template +2 -2
  126. package/src/trpc/backend/files/src/schema/index.ts.template +1 -1
  127. package/src/trpc/backend/generator.js +3 -1
  128. package/src/trpc/backend/generator.js.map +1 -1
  129. package/src/ts/agent/__snapshots__/generator.spec.ts.snap +89 -3
  130. package/src/ts/agent/a2a-connection/files/agent-connection/app/__targetAgentKebabCase__-client-strands.ts.template +2 -2
  131. package/src/ts/agent/a2a-connection/generator.js +3 -1
  132. package/src/ts/agent/a2a-connection/generator.js.map +1 -1
  133. package/src/ts/agent/files/a2a/index.ts.template +1 -1
  134. package/src/ts/agent/files/ag-ui/index.ts.template +1 -1
  135. package/src/ts/agent/files/http/client.ts.template +2 -2
  136. package/src/ts/agent/files/http/index.ts.template +2 -2
  137. package/src/ts/agent/files/http/router.ts.template +3 -3
  138. package/src/ts/agent/gateway-connection/files/agent-connection/app/__gatewayKebabCase__-client-strands.ts.template +2 -2
  139. package/src/ts/agent/gateway-connection/generator.js +3 -1
  140. package/src/ts/agent/gateway-connection/generator.js.map +1 -1
  141. package/src/ts/agent/generator.js +5 -2
  142. package/src/ts/agent/generator.js.map +1 -1
  143. package/src/ts/agent/mcp-connection/files/agent-connection/app/__mcpServerKebabCase__-client-strands.ts.template +2 -2
  144. package/src/ts/agent/mcp-connection/generator.js +3 -1
  145. package/src/ts/agent/mcp-connection/generator.js.map +1 -1
  146. package/src/ts/astro-docs/files/translation/scripts/translate.ts.template +3 -2
  147. package/src/ts/astro-docs/generator.js +2 -0
  148. package/src/ts/astro-docs/generator.js.map +1 -1
  149. package/src/ts/dynamodb/__snapshots__/generator.spec.ts.snap +2 -2
  150. package/src/ts/dynamodb/files/src/client.ts.template +5 -2
  151. package/src/ts/dynamodb/files/src/entities/example.ts.template +1 -1
  152. package/src/ts/dynamodb/files/src/entities/index.ts.template +1 -1
  153. package/src/ts/dynamodb/files/src/index.ts.template +2 -2
  154. package/src/ts/dynamodb/generator.js +3 -1
  155. package/src/ts/dynamodb/generator.js.map +1 -1
  156. package/src/ts/lambda-function/__snapshots__/generator.spec.ts.snap +2 -2
  157. package/src/ts/lib/generator.js +7 -1
  158. package/src/ts/lib/generator.js.map +1 -1
  159. package/src/ts/lib/ts-project-utils.js +19 -4
  160. package/src/ts/lib/ts-project-utils.js.map +1 -1
  161. package/src/ts/lib/types.d.ts +6 -0
  162. package/src/ts/lib/types.js.map +1 -1
  163. package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +94 -8
  164. package/src/ts/mcp-server/generator.js +3 -2
  165. package/src/ts/mcp-server/generator.js.map +1 -1
  166. package/src/ts/nx-generator/files/local/generator.ts.template +2 -2
  167. package/src/ts/nx-generator/files/nx-plugin-for-aws/generator/generator.ts.template +2 -2
  168. package/src/ts/nx-generator/generator.js +5 -2
  169. package/src/ts/nx-generator/generator.js.map +1 -1
  170. package/src/ts/nx-plugin/files/mcp-server/server.ts.template +5 -5
  171. package/src/ts/nx-plugin/files/mcp-server/tools/create-workspace-command.ts.template +2 -2
  172. package/src/ts/nx-plugin/files/mcp-server/tools/general-guidance.ts.template +1 -1
  173. package/src/ts/nx-plugin/files/mcp-server/tools/generator-guide.ts.template +2 -2
  174. package/src/ts/nx-plugin/files/mcp-server/tools/list-generators.ts.template +2 -2
  175. package/src/ts/nx-plugin/files/mcp-server/utils.ts.template +3 -3
  176. package/src/ts/nx-plugin/generator.js +3 -1
  177. package/src/ts/nx-plugin/generator.js.map +1 -1
  178. package/src/ts/nx-plugin/utils.js +7 -4
  179. package/src/ts/nx-plugin/utils.js.map +1 -1
  180. package/src/ts/rdb/__snapshots__/generator.spec.ts.snap +149 -177
  181. package/src/ts/rdb/files/src/create-db-user-handler.ts.template +2 -2
  182. package/src/ts/rdb/files/src/index.ts.template +1 -1
  183. package/src/ts/rdb/files/src/migration-handler.ts.template +1 -1
  184. package/src/ts/rdb/files/src/prisma.ts.template +7 -4
  185. package/src/ts/rdb/generator.js +7 -4
  186. package/src/ts/rdb/generator.js.map +1 -1
  187. package/src/ts/rdb/schema.json +1 -1
  188. package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +45 -45
  189. package/src/ts/react-website/cognito-auth/__snapshots__/generator.terraform.spec.ts.snap +2 -2
  190. package/src/utils/agent-chat/agent-chat.js +3 -1
  191. package/src/utils/agent-chat/agent-chat.js.map +1 -1
  192. package/src/utils/agent-chat/files/a2a/chat.ts.template +1 -1
  193. package/src/utils/agent-chat/files/ag-ui/chat.ts.template +1 -1
  194. package/src/utils/agent-chat/files/http-py/chat.ts.template +2 -2
  195. package/src/utils/agent-chat/files/http-ts/chat.ts.template +1 -1
  196. package/src/utils/agent-connection/agent-connection.js +4 -1
  197. package/src/utils/agent-connection/agent-connection.js.map +1 -1
  198. package/src/utils/agent-connection/files/core-a2a/agentcore-a2a-client-config.ts.template +2 -2
  199. package/src/utils/agent-connection/files/core-auth/agentcore-fetch.ts.template +1 -1
  200. package/src/utils/agent-connection/files/core-gateway/agentcore-gateway-mcp-transport.ts.template +2 -2
  201. package/src/utils/agent-connection/files/core-mcp/agentcore-mcp-transport.ts.template +2 -2
  202. package/src/utils/agent-connection/files/core-shared/agentcore-transport.ts.template +1 -1
  203. package/src/utils/agent-connection/files/core-strands/a2a/agentcore-a2a-client-strands.ts.template +1 -1
  204. package/src/utils/agent-connection/files/core-strands/base/with-session-id-strands.ts.template +1 -1
  205. package/src/utils/agent-connection/files/core-strands/gateway/agentcore-gateway-mcp-client-strands.ts.template +1 -1
  206. package/src/utils/agent-connection/files/core-strands/mcp/agentcore-mcp-client-strands.ts.template +1 -1
  207. package/src/utils/agent-core-constructs/agent-core-constructs.js +10 -3
  208. package/src/utils/agent-core-constructs/agent-core-constructs.js.map +1 -1
  209. package/src/utils/agent-core-constructs/files/cdk/app/agent-core/__nameKebabCase__/__nameKebabCase__.ts.template +3 -3
  210. package/src/utils/agent-core-constructs/files/cdk/app/agentcore-gateway/__nameKebabCase__/__nameKebabCase__.ts.template +4 -4
  211. package/src/utils/agent-core-constructs/files/cdk/core/agentcore-gateway/agentcore-gateway.ts.template +1 -1
  212. package/src/utils/agent-core-constructs/files/terraform/app/agent-core/__nameKebabCase__/__nameKebabCase__.tf.template +27 -0
  213. package/src/utils/agent-core-constructs/files/terraform/core/agent-core/runtime.tf.template +60 -1
  214. package/src/utils/api-constructs/api-constructs.js +8 -2
  215. package/src/utils/api-constructs/api-constructs.js.map +1 -1
  216. package/src/utils/api-constructs/files/cdk/app/apis/http/__apiNameKebabCase__.ts.template +8 -8
  217. package/src/utils/api-constructs/files/cdk/app/apis/rest/__apiNameKebabCase__.ts.template +8 -8
  218. package/src/utils/api-constructs/files/cdk/core/api/http/http-api.ts.template +3 -3
  219. package/src/utils/api-constructs/files/cdk/core/api/rest/api-gateway-account/index.js.template +32 -20
  220. package/src/utils/api-constructs/files/cdk/core/api/rest/api-gateway-account.ts.template +1 -1
  221. package/src/utils/api-constructs/files/cdk/core/api/rest/rest-api.ts.template +4 -4
  222. package/src/utils/api-constructs/files/cdk/core/api/trpc/trpc-utils.ts.template +1 -1
  223. package/src/utils/ast.js +16 -0
  224. package/src/utils/ast.js.map +1 -1
  225. package/src/utils/commands.d.ts +1 -1
  226. package/src/utils/commands.js +4 -1
  227. package/src/utils/commands.js.map +1 -1
  228. package/src/utils/dynamodb-constructs/dynamodb-constructs.js +9 -2
  229. package/src/utils/dynamodb-constructs/dynamodb-constructs.js.map +1 -1
  230. package/src/utils/dynamodb-constructs/files/cdk/app/dynamodb/__nameKebabCase__.ts.template +3 -3
  231. package/src/utils/dynamodb-constructs/files/cdk/core/dynamodb.ts.template +1 -1
  232. package/src/utils/files/common/constructs/src/core/index.ts.template +4 -4
  233. package/src/utils/files/common/constructs/src/index.ts.template +2 -2
  234. package/src/utils/files/common/infra-config/src/index.ts.template +3 -3
  235. package/src/utils/files/common/infra-config/src/resolve-stage.ts.template +2 -2
  236. package/src/utils/files/common/infra-config/src/stages.config.ts.template +1 -1
  237. package/src/utils/files/common/scripts/src/infra/infra-deploy.ts.template +1 -1
  238. package/src/utils/files/common/scripts/src/infra/infra-destroy.ts.template +1 -1
  239. package/src/utils/files/common/scripts/src/infra/stage-credentials/run.ts.template +3 -3
  240. package/src/utils/files/common/shadcn/src/index.ts.template +2 -2
  241. package/src/utils/function-constructs/files/cdk/app/lambda-functions/__nameKebabCase__.ts.template +1 -1
  242. package/src/utils/function-constructs/function-constructs.js +3 -1
  243. package/src/utils/function-constructs/function-constructs.js.map +1 -1
  244. package/src/utils/identity-constructs/files/cdk/core/user-identity.ts.template +2 -2
  245. package/src/utils/identity-constructs/identity-constructs.js +5 -1
  246. package/src/utils/identity-constructs/identity-constructs.js.map +1 -1
  247. package/src/utils/module-format.d.ts +28 -0
  248. package/src/utils/module-format.js +28 -0
  249. package/src/utils/module-format.js.map +1 -0
  250. package/src/utils/rdb-constructs/files/cdk/app/dbs/__nameKebabCase__.ts.template +61 -17
  251. package/src/utils/rdb-constructs/files/cdk/core/rdb/aurora.ts.template +68 -78
  252. package/src/utils/rdb-constructs/files/terraform/app/dbs/__nameKebabCase__/__nameKebabCase__.tf.template +88 -8
  253. package/src/utils/rdb-constructs/files/terraform/core/rdb/aurora/aurora.tf.template +5 -32
  254. package/src/utils/rdb-constructs/rdb-constructs.d.ts +11 -1
  255. package/src/utils/rdb-constructs/rdb-constructs.js +9 -2
  256. package/src/utils/rdb-constructs/rdb-constructs.js.map +1 -1
  257. package/src/utils/shared-constructs.js +12 -22
  258. package/src/utils/shared-constructs.js.map +1 -1
  259. package/src/utils/shared-infra-config.js +3 -1
  260. package/src/utils/shared-infra-config.js.map +1 -1
  261. package/src/utils/shared-infra-scripts.js +3 -1
  262. package/src/utils/shared-infra-scripts.js.map +1 -1
  263. package/src/utils/shared-rdb-scripts.js +5 -1
  264. package/src/utils/shared-rdb-scripts.js.map +1 -1
  265. package/src/utils/shared-shadcn.js +3 -1
  266. package/src/utils/shared-shadcn.js.map +1 -1
  267. package/src/utils/test.d.ts +2 -0
  268. package/src/utils/test.js +7 -1
  269. package/src/utils/test.js.map +1 -1
  270. package/src/utils/versions.d.ts +73 -69
  271. package/src/utils/versions.js +71 -67
  272. package/src/utils/versions.js.map +1 -1
  273. package/src/utils/website-constructs/files/cdk/app/static-websites/__websiteNameKebabCase__.ts.template +2 -2
  274. package/src/utils/website-constructs/files/cdk/core/static-website.ts.template +2 -2
  275. package/src/utils/website-constructs/website-constructs.js +9 -2
  276. package/src/utils/website-constructs/website-constructs.js.map +1 -1
  277. package/src/utils/files/terraform/scripts/reset-runtime-config.ts.template +0 -25
@@ -6,86 +6,86 @@
6
6
  * Versons for TypeScript dependencies added by generators
7
7
  */
8
8
  export declare const TS_VERSIONS: {
9
- readonly '@a2a-js/sdk': "0.3.13";
9
+ readonly '@a2a-js/sdk': "0.3.14";
10
10
  readonly '@aws/aws-distro-opentelemetry-node-autoinstrumentation': "0.12.0";
11
- readonly '@aws-sdk/client-dynamodb': "3.1075.0";
12
- readonly '@aws-sdk/client-bedrock-runtime': "3.1075.0";
13
- readonly '@aws-sdk/client-s3': "3.1075.0";
14
- readonly '@aws-sdk/client-sts': "3.1075.0";
15
- readonly '@aws-sdk/credential-providers': "3.1075.0";
16
- readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.48";
17
- readonly '@aws-sdk/client-secrets-manager': "3.1075.0";
18
- readonly '@aws-sdk/rds-signer': "3.1075.0";
11
+ readonly '@aws-sdk/client-dynamodb': "3.1085.0";
12
+ readonly '@aws-sdk/client-bedrock-runtime': "3.1085.0";
13
+ readonly '@aws-sdk/client-s3': "3.1085.0";
14
+ readonly '@aws-sdk/client-sts': "3.1085.0";
15
+ readonly '@aws-sdk/credential-providers': "3.1085.0";
16
+ readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.56";
17
+ readonly '@aws-sdk/client-secrets-manager': "3.1085.0";
18
+ readonly '@aws-sdk/rds-signer': "3.1085.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
- readonly '@aws-lambda-powertools/logger': "2.33.1";
22
- readonly '@aws-lambda-powertools/metrics': "2.33.1";
23
- readonly '@aws-lambda-powertools/parameters': "2.33.1";
24
- readonly '@aws-lambda-powertools/tracer': "2.33.1";
25
- readonly '@aws-lambda-powertools/parser': "2.33.1";
26
- readonly '@aws-sdk/client-appconfigdata': "3.1075.0";
21
+ readonly '@aws-lambda-powertools/logger': "2.34.0";
22
+ readonly '@aws-lambda-powertools/metrics': "2.34.0";
23
+ readonly '@aws-lambda-powertools/parameters': "2.34.0";
24
+ readonly '@aws-lambda-powertools/tracer': "2.34.0";
25
+ readonly '@aws-lambda-powertools/parser': "2.34.0";
26
+ readonly '@aws-sdk/client-appconfigdata': "3.1085.0";
27
27
  readonly '@middy/core': "7.7.0";
28
28
  readonly '@nxlv/python': "22.2.1";
29
- readonly '@nx-extend/terraform': "10.2.1";
30
- readonly '@nx/devkit': "23.0.1";
31
- readonly '@nx/react': "23.0.1";
32
- readonly 'create-nx-workspace': "23.0.1";
29
+ readonly '@nx-extend/terraform': "10.3.0";
30
+ readonly '@nx/devkit': "23.0.2";
31
+ readonly '@nx/react': "23.0.2";
32
+ readonly 'create-nx-workspace': "23.0.2";
33
33
  readonly '@swc-node/register': "1.11.1";
34
34
  readonly '@swc/core': "1.15.43";
35
35
  readonly '@modelcontextprotocol/sdk': "1.29.0";
36
- readonly '@modelcontextprotocol/inspector': "0.19.0";
36
+ readonly '@modelcontextprotocol/inspector': "0.22.0";
37
37
  readonly '@ag-ui/aws-strands': "0.2.3";
38
38
  readonly '@ag-ui/client': "0.0.57";
39
39
  readonly '@ag-ui/core': "0.0.57";
40
40
  readonly '@ag-ui/encoder': "0.0.57";
41
41
  readonly 'agent-chat-cli': "0.3.0";
42
- readonly '@copilotkit/react-core': "1.61.2";
42
+ readonly '@copilotkit/react-core': "1.62.3";
43
43
  readonly rxjs: "7.8.2";
44
- readonly '@strands-agents/sdk': "1.7.0";
45
- readonly '@tanstack/react-router': "1.170.16";
46
- readonly '@tanstack/router-plugin': "1.168.18";
47
- readonly '@tanstack/router-generator': "1.167.17";
44
+ readonly '@strands-agents/sdk': "1.9.0";
45
+ readonly '@tanstack/react-router': "1.170.17";
46
+ readonly '@tanstack/router-plugin': "1.168.19";
47
+ readonly '@tanstack/router-generator': "1.167.18";
48
48
  readonly '@tanstack/virtual-file-routes': "1.162.0";
49
49
  readonly '@tanstack/router-utils': "1.162.2";
50
- readonly '@cloudscape-design/board-components': "3.0.197";
51
- readonly '@cloudscape-design/chat-components': "1.0.146";
52
- readonly '@cloudscape-design/components': "3.0.1320";
53
- readonly '@cloudscape-design/global-styles': "1.0.61";
50
+ readonly '@cloudscape-design/board-components': "3.0.201";
51
+ readonly '@cloudscape-design/chat-components': "1.0.149";
52
+ readonly '@cloudscape-design/components': "3.0.1325";
53
+ readonly '@cloudscape-design/global-styles': "1.0.62";
54
54
  readonly '@tanstack/react-query': "5.101.2";
55
55
  readonly '@tanstack/react-query-devtools': "5.101.2";
56
56
  readonly '@trpc/tanstack-react-query': "11.18.0";
57
57
  readonly '@trpc/client': "11.18.0";
58
58
  readonly '@trpc/server': "11.18.0";
59
- readonly '@types/node': "25.9.4";
59
+ readonly '@types/node': "26.1.1";
60
60
  readonly '@types/aws-lambda': "8.10.162";
61
61
  readonly '@types/cors': "2.8.19";
62
62
  readonly '@types/pg': "8.20.0";
63
63
  readonly '@types/ws': "8.18.1";
64
64
  readonly '@types/express': "5.0.6";
65
- readonly '@smithy/config-resolver': "4.6.2";
66
- readonly '@smithy/node-config-provider': "4.5.2";
67
- readonly '@smithy/node-http-handler': "4.8.2";
68
- readonly '@smithy/types': "4.15.0";
69
- readonly '@vitest/coverage-v8': "4.1.9";
70
- readonly '@vitest/ui': "4.1.9";
65
+ readonly '@smithy/config-resolver': "4.6.8";
66
+ readonly '@smithy/node-config-provider': "4.5.8";
67
+ readonly '@smithy/node-http-handler': "4.9.5";
68
+ readonly '@smithy/types': "4.16.1";
69
+ readonly '@vitest/coverage-v8': "4.1.10";
70
+ readonly '@vitest/ui': "4.1.10";
71
71
  readonly '@astrojs/react': "6.0.1";
72
72
  readonly '@astrojs/starlight': "0.41.3";
73
- readonly astro: "7.0.6";
73
+ readonly astro: "7.0.7";
74
74
  readonly aws4fetch: "1.0.20";
75
- readonly 'aws-cdk': "2.1129.0";
76
- readonly 'aws-cdk-lib': "2.260.0";
75
+ readonly 'aws-cdk': "2.1130.0";
76
+ readonly 'aws-cdk-lib': "2.261.0";
77
77
  readonly 'aws-xray-sdk-core': "3.12.0";
78
78
  readonly constructs: "10.6.0";
79
79
  readonly cors: "2.8.6";
80
80
  readonly chalk: "5.6.2";
81
81
  readonly 'class-variance-authority': "0.7.1";
82
82
  readonly clsx: "2.1.1";
83
- readonly commander: "14.0.3";
83
+ readonly commander: "15.0.0";
84
84
  readonly electrodb: "3.9.1";
85
85
  readonly esbuild: "0.28.1";
86
86
  readonly 'event-source-polyfill': "1.0.31";
87
87
  readonly '@types/event-source-polyfill': "1.0.5";
88
- readonly '@biomejs/biome': "2.5.1";
88
+ readonly '@biomejs/biome': "2.5.3";
89
89
  readonly '@prisma/adapter-mariadb': "7.8.0";
90
90
  readonly '@prisma/adapter-pg': "7.8.0";
91
91
  readonly '@prisma/client': "7.8.0";
@@ -94,12 +94,12 @@ export declare const TS_VERSIONS: {
94
94
  readonly express: "5.2.1";
95
95
  readonly 'fast-glob': "3.3.3";
96
96
  readonly husky: "9.1.7";
97
- readonly 'fs-extra': "11.3.5";
97
+ readonly 'fs-extra': "11.3.6";
98
98
  readonly '@types/fs-extra': "11.0.4";
99
99
  readonly 'make-dir-cli': "4.0.0";
100
100
  readonly mariadb: "3.5.3";
101
101
  readonly ncp: "2.0.0";
102
- readonly 'npm-check-updates': "19.6.6";
102
+ readonly 'npm-check-updates': "22.2.9";
103
103
  readonly 'oidc-client-ts': "3.5.0";
104
104
  readonly pg: "8.22.0";
105
105
  readonly prisma: "7.8.0";
@@ -107,21 +107,21 @@ export declare const TS_VERSIONS: {
107
107
  readonly react: "19.2.7";
108
108
  readonly 'react-dom': "19.2.7";
109
109
  readonly rimraf: "6.1.3";
110
- readonly rolldown: "1.1.3";
110
+ readonly rolldown: "1.1.5";
111
111
  readonly 'simple-git': "3.36.0";
112
112
  readonly 'source-map-support': "0.5.21";
113
- readonly 'starlight-blog': "0.27.0";
114
- readonly tailwindcss: "4.2.2";
115
- readonly '@tailwindcss/vite': "4.2.2";
116
- readonly tsx: "4.22.4";
117
- readonly 'lucide-react': "1.22.0";
118
- readonly 'radix-ui': "1.6.0";
119
- readonly shadcn: "4.12.0";
113
+ readonly 'starlight-blog': "0.28.0";
114
+ readonly tailwindcss: "4.3.2";
115
+ readonly '@tailwindcss/vite': "4.3.2";
116
+ readonly tsx: "4.23.0";
117
+ readonly 'lucide-react': "1.24.0";
118
+ readonly 'radix-ui': "1.6.2";
119
+ readonly shadcn: "4.13.0";
120
120
  readonly 'tw-animate-css': "1.4.0";
121
121
  readonly 'tailwind-merge': "3.6.0";
122
- readonly vite: "8.1.0";
122
+ readonly vite: "8.1.4";
123
123
  readonly typescript: "6.0.3";
124
- readonly vitest: "4.1.9";
124
+ readonly vitest: "4.1.10";
125
125
  readonly zod: "4.4.3";
126
126
  readonly ws: "8.21.0";
127
127
  };
@@ -130,7 +130,7 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
130
130
  * Add versions to the given dependencies
131
131
  */
132
132
  export declare const withVersions: (deps: ITsDepVersion[]) => {
133
- [k: string]: "0.3.13" | "0.12.0" | "3.1075.0" | "3.972.48" | "1.0.0-alpha.10" | "2.33.1" | "7.7.0" | "22.2.1" | "10.2.1" | "23.0.1" | "1.11.1" | "1.15.43" | "1.29.0" | "0.19.0" | "0.2.3" | "0.0.57" | "0.3.0" | "1.61.2" | "7.8.2" | "1.7.0" | "1.170.16" | "1.168.18" | "1.167.17" | "1.162.0" | "1.162.2" | "3.0.197" | "1.0.146" | "3.0.1320" | "1.0.61" | "5.101.2" | "11.18.0" | "25.9.4" | "8.10.162" | "2.8.19" | "8.20.0" | "8.18.1" | "5.0.6" | "4.6.2" | "4.5.2" | "4.8.2" | "4.15.0" | "4.1.9" | "6.0.1" | "0.41.3" | "7.0.6" | "1.0.20" | "2.1129.0" | "2.260.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.1" | "7.8.0" | "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.22.0" | "3.3.1" | "19.2.7" | "6.1.3" | "1.1.3" | "3.36.0" | "0.5.21" | "0.27.0" | "4.2.2" | "4.22.4" | "1.22.0" | "1.6.0" | "4.12.0" | "1.4.0" | "3.6.0" | "8.1.0" | "6.0.3" | "4.4.3" | "8.21.0";
133
+ [k: string]: "0.3.14" | "0.12.0" | "3.1085.0" | "3.972.56" | "1.0.0-alpha.10" | "2.34.0" | "7.7.0" | "22.2.1" | "10.3.0" | "23.0.2" | "1.11.1" | "1.15.43" | "1.29.0" | "0.22.0" | "0.2.3" | "0.0.57" | "0.3.0" | "1.62.3" | "7.8.2" | "1.9.0" | "1.170.17" | "1.168.19" | "1.167.18" | "1.162.0" | "1.162.2" | "3.0.201" | "1.0.149" | "3.0.1325" | "1.0.62" | "5.101.2" | "11.18.0" | "26.1.1" | "8.10.162" | "2.8.19" | "8.20.0" | "8.18.1" | "5.0.6" | "4.6.8" | "4.5.8" | "4.9.5" | "4.16.1" | "4.1.10" | "6.0.1" | "0.41.3" | "7.0.7" | "1.0.20" | "2.1130.0" | "2.261.0" | "3.12.0" | "10.6.0" | "2.8.6" | "5.6.2" | "0.7.1" | "2.1.1" | "15.0.0" | "3.9.1" | "0.28.1" | "1.0.31" | "1.0.5" | "2.5.3" | "7.8.0" | "3.1.5" | "5.2.1" | "3.3.3" | "9.1.7" | "11.3.6" | "11.0.4" | "4.0.0" | "3.5.3" | "2.0.0" | "22.2.9" | "3.5.0" | "8.22.0" | "3.3.1" | "19.2.7" | "6.1.3" | "1.1.5" | "3.36.0" | "0.5.21" | "0.28.0" | "4.3.2" | "4.23.0" | "1.24.0" | "1.6.2" | "4.13.0" | "1.4.0" | "3.6.0" | "8.1.4" | "6.0.3" | "4.4.3" | "8.21.0";
134
134
  };
135
135
  /**
136
136
  * Versions for Python dependencies added by generators
@@ -144,25 +144,29 @@ export declare const PY_VERSIONS: {
144
144
  readonly 'aws-lambda-powertools[tracer]': "==3.31.0";
145
145
  readonly 'aws-lambda-powertools[parser]': "==3.31.0";
146
146
  readonly 'aws-opentelemetry-distro': "==0.18.0";
147
- readonly 'bedrock-agentcore': "==1.15.1";
148
- readonly boto3: "==1.43.37";
149
- readonly checkov: "==3.3.6";
150
- readonly fastapi: "==0.138.2";
151
- readonly 'fastapi[standard]': "==0.138.2";
147
+ readonly 'bedrock-agentcore': "==1.18.0";
148
+ readonly boto3: "==1.43.46";
149
+ readonly checkov: "==3.3.8";
150
+ readonly fastapi: "==0.139.0";
151
+ readonly 'fastapi[standard]': "==0.139.0";
152
152
  readonly httpx: "==0.28.1";
153
- readonly langchain: "==1.3.11";
154
- readonly 'langchain-aws': "==1.6.1";
153
+ readonly langchain: "==1.3.13";
154
+ readonly 'langchain-aws': "==1.6.2";
155
155
  readonly 'langchain-mcp-adapters': "==0.3.0";
156
- readonly langgraph: "==1.2.7";
156
+ readonly langgraph: "==1.2.9";
157
157
  readonly mcp: "==1.28.1";
158
158
  readonly 'pip-check-updates': "==0.29.0";
159
159
  readonly 'pip-licenses': "==5.5.5";
160
- readonly 'strands-agents': "==1.45.0";
161
- readonly 'strands-agents[a2a]': "==1.45.0";
162
- readonly 'strands-agents-tools': "==0.8.2";
163
- readonly ty: "==0.0.55";
160
+ readonly 'strands-agents': "==1.47.0";
161
+ readonly 'strands-agents[a2a]': "==1.47.0";
162
+ readonly 'strands-agents-tools': "==0.8.3";
163
+ readonly ty: "==0.0.59";
164
164
  readonly pynamodb: "==6.1.0";
165
- readonly uvicorn: "==0.49.0";
165
+ readonly uvicorn: "==0.51.0";
166
+ readonly sqlmodel: "==0.0.38";
167
+ readonly alembic: "==1.18.4";
168
+ readonly aiomysql: "==0.3.2";
169
+ readonly asyncpg: "==0.31.0";
166
170
  };
167
171
  export type IPyDepVersion = keyof typeof PY_VERSIONS;
168
172
  /**
@@ -180,7 +184,7 @@ export declare const VENDORED_VERSIONS: {
180
184
  * Pinned exactly (no range operator) so generated infrastructure is reproducible.
181
185
  */
182
186
  export declare const TERRAFORM_VERSIONS: {
183
- readonly aws: "6.52.0";
187
+ readonly aws: "6.54.0";
184
188
  readonly random: "3.9.0";
185
189
  readonly null: "3.3.0";
186
190
  readonly archive: "2.8.0";
@@ -193,7 +197,7 @@ export type ITerraformProviderVersion = keyof typeof TERRAFORM_VERSIONS;
193
197
  * generated `.tf` templates (e.g. `version = "<%- awsProviderVersion %>"`)
194
198
  */
195
199
  export declare const terraformProviderVersions: () => {
196
- awsProviderVersion: "6.52.0";
200
+ awsProviderVersion: "6.54.0";
197
201
  randomProviderVersion: "3.9.0";
198
202
  nullProviderVersion: "3.3.0";
199
203
  archiveProviderVersion: "2.8.0";
@@ -4,86 +4,86 @@
4
4
  */ /**
5
5
  * Versons for TypeScript dependencies added by generators
6
6
  */ export const TS_VERSIONS = {
7
- '@a2a-js/sdk': '0.3.13',
7
+ '@a2a-js/sdk': '0.3.14',
8
8
  '@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.12.0',
9
- '@aws-sdk/client-dynamodb': '3.1075.0',
10
- '@aws-sdk/client-bedrock-runtime': '3.1075.0',
11
- '@aws-sdk/client-s3': '3.1075.0',
12
- '@aws-sdk/client-sts': '3.1075.0',
13
- '@aws-sdk/credential-providers': '3.1075.0',
14
- '@aws-sdk/credential-provider-cognito-identity': '3.972.48',
15
- '@aws-sdk/client-secrets-manager': '3.1075.0',
16
- '@aws-sdk/rds-signer': '3.1075.0',
9
+ '@aws-sdk/client-dynamodb': '3.1085.0',
10
+ '@aws-sdk/client-bedrock-runtime': '3.1085.0',
11
+ '@aws-sdk/client-s3': '3.1085.0',
12
+ '@aws-sdk/client-sts': '3.1085.0',
13
+ '@aws-sdk/credential-providers': '3.1085.0',
14
+ '@aws-sdk/credential-provider-cognito-identity': '3.972.56',
15
+ '@aws-sdk/client-secrets-manager': '3.1085.0',
16
+ '@aws-sdk/rds-signer': '3.1085.0',
17
17
  '@aws-smithy/server-apigateway': '1.0.0-alpha.10',
18
18
  '@aws-smithy/server-node': '1.0.0-alpha.10',
19
- '@aws-lambda-powertools/logger': '2.33.1',
20
- '@aws-lambda-powertools/metrics': '2.33.1',
21
- '@aws-lambda-powertools/parameters': '2.33.1',
22
- '@aws-lambda-powertools/tracer': '2.33.1',
23
- '@aws-lambda-powertools/parser': '2.33.1',
24
- '@aws-sdk/client-appconfigdata': '3.1075.0',
19
+ '@aws-lambda-powertools/logger': '2.34.0',
20
+ '@aws-lambda-powertools/metrics': '2.34.0',
21
+ '@aws-lambda-powertools/parameters': '2.34.0',
22
+ '@aws-lambda-powertools/tracer': '2.34.0',
23
+ '@aws-lambda-powertools/parser': '2.34.0',
24
+ '@aws-sdk/client-appconfigdata': '3.1085.0',
25
25
  '@middy/core': '7.7.0',
26
26
  '@nxlv/python': '22.2.1',
27
- '@nx-extend/terraform': '10.2.1',
28
- '@nx/devkit': '23.0.1',
29
- '@nx/react': '23.0.1',
30
- 'create-nx-workspace': '23.0.1',
27
+ '@nx-extend/terraform': '10.3.0',
28
+ '@nx/devkit': '23.0.2',
29
+ '@nx/react': '23.0.2',
30
+ 'create-nx-workspace': '23.0.2',
31
31
  '@swc-node/register': '1.11.1',
32
32
  '@swc/core': '1.15.43',
33
33
  '@modelcontextprotocol/sdk': '1.29.0',
34
- '@modelcontextprotocol/inspector': '0.19.0',
34
+ '@modelcontextprotocol/inspector': '0.22.0',
35
35
  '@ag-ui/aws-strands': '0.2.3',
36
36
  '@ag-ui/client': '0.0.57',
37
37
  '@ag-ui/core': '0.0.57',
38
38
  '@ag-ui/encoder': '0.0.57',
39
39
  'agent-chat-cli': '0.3.0',
40
- '@copilotkit/react-core': '1.61.2',
40
+ '@copilotkit/react-core': '1.62.3',
41
41
  rxjs: '7.8.2',
42
- '@strands-agents/sdk': '1.7.0',
43
- '@tanstack/react-router': '1.170.16',
44
- '@tanstack/router-plugin': '1.168.18',
45
- '@tanstack/router-generator': '1.167.17',
42
+ '@strands-agents/sdk': '1.9.0',
43
+ '@tanstack/react-router': '1.170.17',
44
+ '@tanstack/router-plugin': '1.168.19',
45
+ '@tanstack/router-generator': '1.167.18',
46
46
  '@tanstack/virtual-file-routes': '1.162.0',
47
47
  '@tanstack/router-utils': '1.162.2',
48
- '@cloudscape-design/board-components': '3.0.197',
49
- '@cloudscape-design/chat-components': '1.0.146',
50
- '@cloudscape-design/components': '3.0.1320',
51
- '@cloudscape-design/global-styles': '1.0.61',
48
+ '@cloudscape-design/board-components': '3.0.201',
49
+ '@cloudscape-design/chat-components': '1.0.149',
50
+ '@cloudscape-design/components': '3.0.1325',
51
+ '@cloudscape-design/global-styles': '1.0.62',
52
52
  '@tanstack/react-query': '5.101.2',
53
53
  '@tanstack/react-query-devtools': '5.101.2',
54
54
  '@trpc/tanstack-react-query': '11.18.0',
55
55
  '@trpc/client': '11.18.0',
56
56
  '@trpc/server': '11.18.0',
57
- '@types/node': '25.9.4',
57
+ '@types/node': '26.1.1',
58
58
  '@types/aws-lambda': '8.10.162',
59
59
  '@types/cors': '2.8.19',
60
60
  '@types/pg': '8.20.0',
61
61
  '@types/ws': '8.18.1',
62
62
  '@types/express': '5.0.6',
63
- '@smithy/config-resolver': '4.6.2',
64
- '@smithy/node-config-provider': '4.5.2',
65
- '@smithy/node-http-handler': '4.8.2',
66
- '@smithy/types': '4.15.0',
67
- '@vitest/coverage-v8': '4.1.9',
68
- '@vitest/ui': '4.1.9',
63
+ '@smithy/config-resolver': '4.6.8',
64
+ '@smithy/node-config-provider': '4.5.8',
65
+ '@smithy/node-http-handler': '4.9.5',
66
+ '@smithy/types': '4.16.1',
67
+ '@vitest/coverage-v8': '4.1.10',
68
+ '@vitest/ui': '4.1.10',
69
69
  '@astrojs/react': '6.0.1',
70
70
  '@astrojs/starlight': '0.41.3',
71
- astro: '7.0.6',
71
+ astro: '7.0.7',
72
72
  aws4fetch: '1.0.20',
73
- 'aws-cdk': '2.1129.0',
74
- 'aws-cdk-lib': '2.260.0',
73
+ 'aws-cdk': '2.1130.0',
74
+ 'aws-cdk-lib': '2.261.0',
75
75
  'aws-xray-sdk-core': '3.12.0',
76
76
  constructs: '10.6.0',
77
77
  cors: '2.8.6',
78
78
  chalk: '5.6.2',
79
79
  'class-variance-authority': '0.7.1',
80
80
  clsx: '2.1.1',
81
- commander: '14.0.3',
81
+ commander: '15.0.0',
82
82
  electrodb: '3.9.1',
83
83
  esbuild: '0.28.1',
84
84
  'event-source-polyfill': '1.0.31',
85
85
  '@types/event-source-polyfill': '1.0.5',
86
- '@biomejs/biome': '2.5.1',
86
+ '@biomejs/biome': '2.5.3',
87
87
  '@prisma/adapter-mariadb': '7.8.0',
88
88
  '@prisma/adapter-pg': '7.8.0',
89
89
  '@prisma/client': '7.8.0',
@@ -92,12 +92,12 @@
92
92
  express: '5.2.1',
93
93
  'fast-glob': '3.3.3',
94
94
  husky: '9.1.7',
95
- 'fs-extra': '11.3.5',
95
+ 'fs-extra': '11.3.6',
96
96
  '@types/fs-extra': '11.0.4',
97
97
  'make-dir-cli': '4.0.0',
98
98
  mariadb: '3.5.3',
99
99
  ncp: '2.0.0',
100
- 'npm-check-updates': '19.6.6',
100
+ 'npm-check-updates': '22.2.9',
101
101
  'oidc-client-ts': '3.5.0',
102
102
  pg: '8.22.0',
103
103
  prisma: '7.8.0',
@@ -105,21 +105,21 @@
105
105
  react: '19.2.7',
106
106
  'react-dom': '19.2.7',
107
107
  rimraf: '6.1.3',
108
- rolldown: '1.1.3',
108
+ rolldown: '1.1.5',
109
109
  'simple-git': '3.36.0',
110
110
  'source-map-support': '0.5.21',
111
- 'starlight-blog': '0.27.0',
112
- tailwindcss: '4.2.2',
113
- '@tailwindcss/vite': '4.2.2',
114
- tsx: '4.22.4',
115
- 'lucide-react': '1.22.0',
116
- 'radix-ui': '1.6.0',
117
- shadcn: '4.12.0',
111
+ 'starlight-blog': '0.28.0',
112
+ tailwindcss: '4.3.2',
113
+ '@tailwindcss/vite': '4.3.2',
114
+ tsx: '4.23.0',
115
+ 'lucide-react': '1.24.0',
116
+ 'radix-ui': '1.6.2',
117
+ shadcn: '4.13.0',
118
118
  'tw-animate-css': '1.4.0',
119
119
  'tailwind-merge': '3.6.0',
120
- vite: '8.1.0',
120
+ vite: '8.1.4',
121
121
  typescript: '6.0.3',
122
- vitest: '4.1.9',
122
+ vitest: '4.1.10',
123
123
  zod: '4.4.3',
124
124
  ws: '8.21.0'
125
125
  };
@@ -140,25 +140,29 @@
140
140
  'aws-lambda-powertools[tracer]': '==3.31.0',
141
141
  'aws-lambda-powertools[parser]': '==3.31.0',
142
142
  'aws-opentelemetry-distro': '==0.18.0',
143
- 'bedrock-agentcore': '==1.15.1',
144
- boto3: '==1.43.37',
145
- checkov: '==3.3.6',
146
- fastapi: '==0.138.2',
147
- 'fastapi[standard]': '==0.138.2',
143
+ 'bedrock-agentcore': '==1.18.0',
144
+ boto3: '==1.43.46',
145
+ checkov: '==3.3.8',
146
+ fastapi: '==0.139.0',
147
+ 'fastapi[standard]': '==0.139.0',
148
148
  httpx: '==0.28.1',
149
- langchain: '==1.3.11',
150
- 'langchain-aws': '==1.6.1',
149
+ langchain: '==1.3.13',
150
+ 'langchain-aws': '==1.6.2',
151
151
  'langchain-mcp-adapters': '==0.3.0',
152
- langgraph: '==1.2.7',
152
+ langgraph: '==1.2.9',
153
153
  mcp: '==1.28.1',
154
154
  'pip-check-updates': '==0.29.0',
155
155
  'pip-licenses': '==5.5.5',
156
- 'strands-agents': '==1.45.0',
157
- 'strands-agents[a2a]': '==1.45.0',
158
- 'strands-agents-tools': '==0.8.2',
159
- ty: '==0.0.55',
156
+ 'strands-agents': '==1.47.0',
157
+ 'strands-agents[a2a]': '==1.47.0',
158
+ 'strands-agents-tools': '==0.8.3',
159
+ ty: '==0.0.59',
160
160
  pynamodb: '==6.1.0',
161
- uvicorn: '==0.49.0'
161
+ uvicorn: '==0.51.0',
162
+ sqlmodel: '==0.0.38',
163
+ alembic: '==1.18.4',
164
+ aiomysql: '==0.3.2',
165
+ asyncpg: '==0.31.0'
162
166
  };
163
167
  /**
164
168
  * Add versions to the given dependencies
@@ -172,7 +176,7 @@
172
176
  * Exact versions for Terraform providers used by generated `.tf` modules.
173
177
  * Pinned exactly (no range operator) so generated infrastructure is reproducible.
174
178
  */ export const TERRAFORM_VERSIONS = {
175
- aws: '6.52.0',
179
+ aws: '6.54.0',
176
180
  random: '3.9.0',
177
181
  null: '3.3.0',
178
182
  archive: '2.8.0',
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"sourcesContent":["/**\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n/**\n * Versons for TypeScript dependencies added by generators\n */\nexport const TS_VERSIONS = {\n '@a2a-js/sdk': '0.3.13',\n '@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.12.0',\n '@aws-sdk/client-dynamodb': '3.1075.0',\n '@aws-sdk/client-bedrock-runtime': '3.1075.0',\n '@aws-sdk/client-s3': '3.1075.0',\n '@aws-sdk/client-sts': '3.1075.0',\n '@aws-sdk/credential-providers': '3.1075.0',\n '@aws-sdk/credential-provider-cognito-identity': '3.972.48',\n '@aws-sdk/client-secrets-manager': '3.1075.0',\n '@aws-sdk/rds-signer': '3.1075.0',\n '@aws-smithy/server-apigateway': '1.0.0-alpha.10',\n '@aws-smithy/server-node': '1.0.0-alpha.10',\n '@aws-lambda-powertools/logger': '2.33.1',\n '@aws-lambda-powertools/metrics': '2.33.1',\n '@aws-lambda-powertools/parameters': '2.33.1',\n '@aws-lambda-powertools/tracer': '2.33.1',\n '@aws-lambda-powertools/parser': '2.33.1',\n '@aws-sdk/client-appconfigdata': '3.1075.0',\n '@middy/core': '7.7.0',\n '@nxlv/python': '22.2.1',\n '@nx-extend/terraform': '10.2.1',\n '@nx/devkit': '23.0.1',\n '@nx/react': '23.0.1',\n 'create-nx-workspace': '23.0.1',\n '@swc-node/register': '1.11.1',\n '@swc/core': '1.15.43',\n '@modelcontextprotocol/sdk': '1.29.0',\n '@modelcontextprotocol/inspector': '0.19.0',\n '@ag-ui/aws-strands': '0.2.3',\n '@ag-ui/client': '0.0.57',\n '@ag-ui/core': '0.0.57',\n '@ag-ui/encoder': '0.0.57',\n 'agent-chat-cli': '0.3.0',\n '@copilotkit/react-core': '1.61.2',\n rxjs: '7.8.2',\n '@strands-agents/sdk': '1.7.0',\n '@tanstack/react-router': '1.170.16',\n '@tanstack/router-plugin': '1.168.18',\n '@tanstack/router-generator': '1.167.17',\n '@tanstack/virtual-file-routes': '1.162.0',\n '@tanstack/router-utils': '1.162.2',\n '@cloudscape-design/board-components': '3.0.197',\n '@cloudscape-design/chat-components': '1.0.146',\n '@cloudscape-design/components': '3.0.1320',\n '@cloudscape-design/global-styles': '1.0.61',\n '@tanstack/react-query': '5.101.2',\n '@tanstack/react-query-devtools': '5.101.2',\n '@trpc/tanstack-react-query': '11.18.0',\n '@trpc/client': '11.18.0',\n '@trpc/server': '11.18.0',\n '@types/node': '25.9.4',\n '@types/aws-lambda': '8.10.162',\n '@types/cors': '2.8.19',\n '@types/pg': '8.20.0',\n '@types/ws': '8.18.1',\n '@types/express': '5.0.6',\n '@smithy/config-resolver': '4.6.2',\n '@smithy/node-config-provider': '4.5.2',\n '@smithy/node-http-handler': '4.8.2',\n '@smithy/types': '4.15.0',\n '@vitest/coverage-v8': '4.1.9',\n '@vitest/ui': '4.1.9',\n '@astrojs/react': '6.0.1',\n '@astrojs/starlight': '0.41.3',\n astro: '7.0.6',\n aws4fetch: '1.0.20',\n 'aws-cdk': '2.1129.0',\n 'aws-cdk-lib': '2.260.0',\n 'aws-xray-sdk-core': '3.12.0',\n constructs: '10.6.0',\n cors: '2.8.6',\n chalk: '5.6.2',\n 'class-variance-authority': '0.7.1',\n clsx: '2.1.1',\n commander: '14.0.3',\n electrodb: '3.9.1',\n esbuild: '0.28.1',\n 'event-source-polyfill': '1.0.31',\n '@types/event-source-polyfill': '1.0.5',\n '@biomejs/biome': '2.5.1',\n '@prisma/adapter-mariadb': '7.8.0',\n '@prisma/adapter-pg': '7.8.0',\n '@prisma/client': '7.8.0',\n ejs: '6.0.1',\n '@types/ejs': '3.1.5',\n express: '5.2.1',\n 'fast-glob': '3.3.3',\n husky: '9.1.7',\n 'fs-extra': '11.3.5',\n '@types/fs-extra': '11.0.4',\n 'make-dir-cli': '4.0.0',\n mariadb: '3.5.3',\n ncp: '2.0.0',\n 'npm-check-updates': '19.6.6',\n 'oidc-client-ts': '3.5.0',\n pg: '8.22.0',\n prisma: '7.8.0',\n 'react-oidc-context': '3.3.1',\n react: '19.2.7',\n 'react-dom': '19.2.7',\n rimraf: '6.1.3',\n rolldown: '1.1.3',\n 'simple-git': '3.36.0',\n 'source-map-support': '0.5.21',\n 'starlight-blog': '0.27.0',\n tailwindcss: '4.2.2',\n '@tailwindcss/vite': '4.2.2',\n tsx: '4.22.4',\n 'lucide-react': '1.22.0',\n 'radix-ui': '1.6.0',\n shadcn: '4.12.0',\n 'tw-animate-css': '1.4.0',\n 'tailwind-merge': '3.6.0',\n vite: '8.1.0',\n typescript: '6.0.3',\n vitest: '4.1.9',\n zod: '4.4.3',\n ws: '8.21.0',\n} as const;\nexport type ITsDepVersion = keyof typeof TS_VERSIONS;\n\n/**\n * Add versions to the given dependencies\n */\nexport const withVersions = (deps: ITsDepVersion[]) =>\n Object.fromEntries(deps.map((dep) => [dep, TS_VERSIONS[dep]]));\n\n/**\n * Versions for Python dependencies added by generators\n */\nexport const PY_VERSIONS = {\n 'a2a-sdk': '==0.3.26',\n 'ag-ui-langgraph': '==0.0.42',\n 'ag-ui-protocol': '==0.1.19',\n 'ag-ui-strands': '==0.2.2',\n 'aws-lambda-powertools': '==3.31.0',\n 'aws-lambda-powertools[tracer]': '==3.31.0',\n 'aws-lambda-powertools[parser]': '==3.31.0',\n 'aws-opentelemetry-distro': '==0.18.0',\n 'bedrock-agentcore': '==1.15.1',\n boto3: '==1.43.37',\n checkov: '==3.3.6',\n fastapi: '==0.138.2',\n 'fastapi[standard]': '==0.138.2',\n httpx: '==0.28.1',\n langchain: '==1.3.11',\n 'langchain-aws': '==1.6.1',\n 'langchain-mcp-adapters': '==0.3.0',\n langgraph: '==1.2.7',\n mcp: '==1.28.1',\n 'pip-check-updates': '==0.29.0',\n 'pip-licenses': '==5.5.5',\n 'strands-agents': '==1.45.0',\n 'strands-agents[a2a]': '==1.45.0',\n 'strands-agents-tools': '==0.8.2',\n ty: '==0.0.55',\n pynamodb: '==6.1.0',\n uvicorn: '==0.49.0',\n} as const;\nexport type IPyDepVersion = keyof typeof PY_VERSIONS;\n\n/**\n * Add versions to the given dependencies\n */\nexport const withPyVersions = (deps: IPyDepVersion[]) =>\n deps.map((dep) => `${dep}${PY_VERSIONS[dep]}`);\n\n/**\n * Versions for vendored tools\n */\nexport const VENDORED_VERSIONS = {\n 'git-secrets': '1.3.0',\n} as const;\n\n/**\n * Exact versions for Terraform providers used by generated `.tf` modules.\n * Pinned exactly (no range operator) so generated infrastructure is reproducible.\n */\nexport const TERRAFORM_VERSIONS = {\n aws: '6.52.0',\n random: '3.9.0',\n null: '3.3.0',\n archive: '2.8.0',\n external: '2.4.0',\n local: '2.9.0',\n} as const;\nexport type ITerraformProviderVersion = keyof typeof TERRAFORM_VERSIONS;\n\n/**\n * Substitution variables exposing Terraform provider version constraints to\n * generated `.tf` templates (e.g. `version = \"<%- awsProviderVersion %>\"`)\n */\nexport const terraformProviderVersions = () => ({\n awsProviderVersion: TERRAFORM_VERSIONS.aws,\n randomProviderVersion: TERRAFORM_VERSIONS.random,\n nullProviderVersion: TERRAFORM_VERSIONS.null,\n archiveProviderVersion: TERRAFORM_VERSIONS.archive,\n externalProviderVersion: TERRAFORM_VERSIONS.external,\n localProviderVersion: TERRAFORM_VERSIONS.local,\n});\n"],"names":["TS_VERSIONS","rxjs","astro","aws4fetch","constructs","cors","chalk","clsx","commander","electrodb","esbuild","ejs","express","husky","mariadb","ncp","pg","prisma","react","rimraf","rolldown","tailwindcss","tsx","shadcn","vite","typescript","vitest","zod","ws","withVersions","deps","Object","fromEntries","map","dep","PY_VERSIONS","boto3","checkov","fastapi","httpx","langchain","langgraph","mcp","ty","pynamodb","uvicorn","withPyVersions","VENDORED_VERSIONS","TERRAFORM_VERSIONS","aws","random","null","archive","external","local","terraformProviderVersions","awsProviderVersion","randomProviderVersion","nullProviderVersion","archiveProviderVersion","externalProviderVersion","localProviderVersion"],"mappings":"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"}
1
+ {"version":3,"sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"sourcesContent":["/**\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0\n */\n\n/**\n * Versons for TypeScript dependencies added by generators\n */\nexport const TS_VERSIONS = {\n '@a2a-js/sdk': '0.3.14',\n '@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.12.0',\n '@aws-sdk/client-dynamodb': '3.1085.0',\n '@aws-sdk/client-bedrock-runtime': '3.1085.0',\n '@aws-sdk/client-s3': '3.1085.0',\n '@aws-sdk/client-sts': '3.1085.0',\n '@aws-sdk/credential-providers': '3.1085.0',\n '@aws-sdk/credential-provider-cognito-identity': '3.972.56',\n '@aws-sdk/client-secrets-manager': '3.1085.0',\n '@aws-sdk/rds-signer': '3.1085.0',\n '@aws-smithy/server-apigateway': '1.0.0-alpha.10',\n '@aws-smithy/server-node': '1.0.0-alpha.10',\n '@aws-lambda-powertools/logger': '2.34.0',\n '@aws-lambda-powertools/metrics': '2.34.0',\n '@aws-lambda-powertools/parameters': '2.34.0',\n '@aws-lambda-powertools/tracer': '2.34.0',\n '@aws-lambda-powertools/parser': '2.34.0',\n '@aws-sdk/client-appconfigdata': '3.1085.0',\n '@middy/core': '7.7.0',\n '@nxlv/python': '22.2.1',\n '@nx-extend/terraform': '10.3.0',\n '@nx/devkit': '23.0.2',\n '@nx/react': '23.0.2',\n 'create-nx-workspace': '23.0.2',\n '@swc-node/register': '1.11.1',\n '@swc/core': '1.15.43',\n '@modelcontextprotocol/sdk': '1.29.0',\n '@modelcontextprotocol/inspector': '0.22.0',\n '@ag-ui/aws-strands': '0.2.3',\n '@ag-ui/client': '0.0.57',\n '@ag-ui/core': '0.0.57',\n '@ag-ui/encoder': '0.0.57',\n 'agent-chat-cli': '0.3.0',\n '@copilotkit/react-core': '1.62.3',\n rxjs: '7.8.2',\n '@strands-agents/sdk': '1.9.0',\n '@tanstack/react-router': '1.170.17',\n '@tanstack/router-plugin': '1.168.19',\n '@tanstack/router-generator': '1.167.18',\n '@tanstack/virtual-file-routes': '1.162.0',\n '@tanstack/router-utils': '1.162.2',\n '@cloudscape-design/board-components': '3.0.201',\n '@cloudscape-design/chat-components': '1.0.149',\n '@cloudscape-design/components': '3.0.1325',\n '@cloudscape-design/global-styles': '1.0.62',\n '@tanstack/react-query': '5.101.2',\n '@tanstack/react-query-devtools': '5.101.2',\n '@trpc/tanstack-react-query': '11.18.0',\n '@trpc/client': '11.18.0',\n '@trpc/server': '11.18.0',\n '@types/node': '26.1.1',\n '@types/aws-lambda': '8.10.162',\n '@types/cors': '2.8.19',\n '@types/pg': '8.20.0',\n '@types/ws': '8.18.1',\n '@types/express': '5.0.6',\n '@smithy/config-resolver': '4.6.8',\n '@smithy/node-config-provider': '4.5.8',\n '@smithy/node-http-handler': '4.9.5',\n '@smithy/types': '4.16.1',\n '@vitest/coverage-v8': '4.1.10',\n '@vitest/ui': '4.1.10',\n '@astrojs/react': '6.0.1',\n '@astrojs/starlight': '0.41.3',\n astro: '7.0.7',\n aws4fetch: '1.0.20',\n 'aws-cdk': '2.1130.0',\n 'aws-cdk-lib': '2.261.0',\n 'aws-xray-sdk-core': '3.12.0',\n constructs: '10.6.0',\n cors: '2.8.6',\n chalk: '5.6.2',\n 'class-variance-authority': '0.7.1',\n clsx: '2.1.1',\n commander: '15.0.0',\n electrodb: '3.9.1',\n esbuild: '0.28.1',\n 'event-source-polyfill': '1.0.31',\n '@types/event-source-polyfill': '1.0.5',\n '@biomejs/biome': '2.5.3',\n '@prisma/adapter-mariadb': '7.8.0',\n '@prisma/adapter-pg': '7.8.0',\n '@prisma/client': '7.8.0',\n ejs: '6.0.1',\n '@types/ejs': '3.1.5',\n express: '5.2.1',\n 'fast-glob': '3.3.3',\n husky: '9.1.7',\n 'fs-extra': '11.3.6',\n '@types/fs-extra': '11.0.4',\n 'make-dir-cli': '4.0.0',\n mariadb: '3.5.3',\n ncp: '2.0.0',\n 'npm-check-updates': '22.2.9',\n 'oidc-client-ts': '3.5.0',\n pg: '8.22.0',\n prisma: '7.8.0',\n 'react-oidc-context': '3.3.1',\n react: '19.2.7',\n 'react-dom': '19.2.7',\n rimraf: '6.1.3',\n rolldown: '1.1.5',\n 'simple-git': '3.36.0',\n 'source-map-support': '0.5.21',\n 'starlight-blog': '0.28.0',\n tailwindcss: '4.3.2',\n '@tailwindcss/vite': '4.3.2',\n tsx: '4.23.0',\n 'lucide-react': '1.24.0',\n 'radix-ui': '1.6.2',\n shadcn: '4.13.0',\n 'tw-animate-css': '1.4.0',\n 'tailwind-merge': '3.6.0',\n vite: '8.1.4',\n typescript: '6.0.3',\n vitest: '4.1.10',\n zod: '4.4.3',\n ws: '8.21.0',\n} as const;\nexport type ITsDepVersion = keyof typeof TS_VERSIONS;\n\n/**\n * Add versions to the given dependencies\n */\nexport const withVersions = (deps: ITsDepVersion[]) =>\n Object.fromEntries(deps.map((dep) => [dep, TS_VERSIONS[dep]]));\n\n/**\n * Versions for Python dependencies added by generators\n */\nexport const PY_VERSIONS = {\n 'a2a-sdk': '==0.3.26',\n 'ag-ui-langgraph': '==0.0.42',\n 'ag-ui-protocol': '==0.1.19',\n 'ag-ui-strands': '==0.2.2',\n 'aws-lambda-powertools': '==3.31.0',\n 'aws-lambda-powertools[tracer]': '==3.31.0',\n 'aws-lambda-powertools[parser]': '==3.31.0',\n 'aws-opentelemetry-distro': '==0.18.0',\n 'bedrock-agentcore': '==1.18.0',\n boto3: '==1.43.46',\n checkov: '==3.3.8',\n fastapi: '==0.139.0',\n 'fastapi[standard]': '==0.139.0',\n httpx: '==0.28.1',\n langchain: '==1.3.13',\n 'langchain-aws': '==1.6.2',\n 'langchain-mcp-adapters': '==0.3.0',\n langgraph: '==1.2.9',\n mcp: '==1.28.1',\n 'pip-check-updates': '==0.29.0',\n 'pip-licenses': '==5.5.5',\n 'strands-agents': '==1.47.0',\n 'strands-agents[a2a]': '==1.47.0',\n 'strands-agents-tools': '==0.8.3',\n ty: '==0.0.59',\n pynamodb: '==6.1.0',\n uvicorn: '==0.51.0',\n sqlmodel: '==0.0.38',\n alembic: '==1.18.4',\n aiomysql: '==0.3.2',\n asyncpg: '==0.31.0',\n} as const;\nexport type IPyDepVersion = keyof typeof PY_VERSIONS;\n\n/**\n * Add versions to the given dependencies\n */\nexport const withPyVersions = (deps: IPyDepVersion[]) =>\n deps.map((dep) => `${dep}${PY_VERSIONS[dep]}`);\n\n/**\n * Versions for vendored tools\n */\nexport const VENDORED_VERSIONS = {\n 'git-secrets': '1.3.0',\n} as const;\n\n/**\n * Exact versions for Terraform providers used by generated `.tf` modules.\n * Pinned exactly (no range operator) so generated infrastructure is reproducible.\n */\nexport const TERRAFORM_VERSIONS = {\n aws: '6.54.0',\n random: '3.9.0',\n null: '3.3.0',\n archive: '2.8.0',\n external: '2.4.0',\n local: '2.9.0',\n} as const;\nexport type ITerraformProviderVersion = keyof typeof TERRAFORM_VERSIONS;\n\n/**\n * Substitution variables exposing Terraform provider version constraints to\n * generated `.tf` templates (e.g. `version = \"<%- awsProviderVersion %>\"`)\n */\nexport const terraformProviderVersions = () => ({\n awsProviderVersion: TERRAFORM_VERSIONS.aws,\n randomProviderVersion: TERRAFORM_VERSIONS.random,\n nullProviderVersion: TERRAFORM_VERSIONS.null,\n archiveProviderVersion: TERRAFORM_VERSIONS.archive,\n externalProviderVersion: TERRAFORM_VERSIONS.external,\n localProviderVersion: TERRAFORM_VERSIONS.local,\n});\n"],"names":["TS_VERSIONS","rxjs","astro","aws4fetch","constructs","cors","chalk","clsx","commander","electrodb","esbuild","ejs","express","husky","mariadb","ncp","pg","prisma","react","rimraf","rolldown","tailwindcss","tsx","shadcn","vite","typescript","vitest","zod","ws","withVersions","deps","Object","fromEntries","map","dep","PY_VERSIONS","boto3","checkov","fastapi","httpx","langchain","langgraph","mcp","ty","pynamodb","uvicorn","sqlmodel","alembic","aiomysql","asyncpg","withPyVersions","VENDORED_VERSIONS","TERRAFORM_VERSIONS","aws","random","null","archive","external","local","terraformProviderVersions","awsProviderVersion","randomProviderVersion","nullProviderVersion","archiveProviderVersion","externalProviderVersion","localProviderVersion"],"mappings":"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"}
@@ -1,13 +1,13 @@
1
1
  import * as url from 'url';
2
2
  import { Construct } from 'constructs';
3
- import { StaticWebsite } from '../../core/index.js';
3
+ import { StaticWebsite } from '../../core/index<% if (esm) { %>.js<% } %>';
4
4
 
5
5
  export class <%= websiteNameClassName %> extends StaticWebsite {
6
6
  constructor(scope: Construct, id: string) {
7
7
  super(scope, id, {
8
8
  websiteName: '<%= websiteNameClassName %>',
9
9
  websiteFilePath: url.fileURLToPath(
10
- new URL('../../../../../../<%= websiteContentPath %>/bundle', import.meta.url)
10
+ new URL('../../../../../../<%= websiteContentPath %>/bundle', <% if (esm) { %>import.meta.url<% } else { %>require('url').pathToFileURL(__filename).href<% } %>)
11
11
  ),
12
12
  });
13
13
  }
@@ -20,10 +20,10 @@ import {
20
20
  Source,
21
21
  } from 'aws-cdk-lib/aws-s3-deployment';
22
22
  import { Construct } from 'constructs';
23
- import { RuntimeConfig } from './runtime-config.js';
23
+ import { RuntimeConfig } from './runtime-config<% if (esm) { %>.js<% } %>';
24
24
  import { Key } from 'aws-cdk-lib/aws-kms';
25
25
  import { CfnWebACL } from 'aws-cdk-lib/aws-wafv2';
26
- import { suppressRules } from './checkov.js';
26
+ import { suppressRules } from './checkov<% if (esm) { %>.js<% } %>';
27
27
 
28
28
  const DEFAULT_RUNTIME_CONFIG_FILENAME = 'runtime-config.json';
29
29
 
@@ -3,6 +3,7 @@
3
3
  * SPDX-License-Identifier: Apache-2.0
4
4
  */ import { generateFiles, joinPathFragments, OverwriteStrategy, updateJson } from "@nx/devkit";
5
5
  import { addStarExport } from "../ast.js";
6
+ import { esmVars } from "../module-format.js";
6
7
  import { addDependencyToTargetIfNotPresent } from "../nx.js";
7
8
  import { PACKAGES_DIR, SHARED_CONSTRUCTS_DIR, SHARED_TERRAFORM_DIR } from "../shared-constructs-constants.js";
8
9
  import { PY_VERSIONS, terraformProviderVersions } from "../versions.js";
@@ -22,10 +23,16 @@ import { PY_VERSIONS, terraformProviderVersions } from "../versions.js";
22
23
  });
23
24
  };
24
25
  const addWebsiteCdkConstructs = async (tree, options)=>{
25
- generateFiles(tree, joinPathFragments(import.meta.dirname, 'files', 'cdk', 'core'), joinPathFragments(PACKAGES_DIR, SHARED_CONSTRUCTS_DIR, 'src', 'core'), options, {
26
+ generateFiles(tree, joinPathFragments(import.meta.dirname, 'files', 'cdk', 'core'), joinPathFragments(PACKAGES_DIR, SHARED_CONSTRUCTS_DIR, 'src', 'core'), {
27
+ ...options,
28
+ ...esmVars(tree)
29
+ }, {
26
30
  overwriteStrategy: OverwriteStrategy.KeepExisting
27
31
  });
28
- generateFiles(tree, joinPathFragments(import.meta.dirname, 'files', 'cdk', 'app'), joinPathFragments(PACKAGES_DIR, SHARED_CONSTRUCTS_DIR, 'src', 'app'), options, {
32
+ generateFiles(tree, joinPathFragments(import.meta.dirname, 'files', 'cdk', 'app'), joinPathFragments(PACKAGES_DIR, SHARED_CONSTRUCTS_DIR, 'src', 'app'), {
33
+ ...options,
34
+ ...esmVars(tree)
35
+ }, {
29
36
  overwriteStrategy: OverwriteStrategy.KeepExisting
30
37
  });
31
38
  await addStarExport(tree, joinPathFragments(PACKAGES_DIR, SHARED_CONSTRUCTS_DIR, 'src', 'app', 'index.ts'), './static-websites/index.js');