cdk-local 0.147.21 → 0.148.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/README.md CHANGED
@@ -146,6 +146,19 @@ cdkl invoke --from-cfn-stack --assume-role # auto-assume deployed e
146
146
 
147
147
  Substitutes `Ref` / `Fn::ImportValue` / `Fn::GetStackOutput` in env vars with the deployed physical IDs / exports, decrypts `AWS::SSM::Parameter::Value` entries (kept off the `docker run` argv), and resolves same-stack ECR `ContainerUri` to the deployed image. `Fn::GetAtt` in the Lambda's own env is recovered from the deployed function's resolved `Environment.Variables` via `lambda:GetFunctionConfiguration`. Full resolution rules: [docs/cli-reference.md#cloudformation-driven-env-recovery---from-cfn-stack](docs/cli-reference.md#cloudformation-driven-env-recovery---from-cfn-stack).
148
148
 
149
+ ## Corporate proxy — `HTTPS_PROXY` / `NO_PROXY`
150
+
151
+ cdk-local routes its own AWS SDK calls (`--from-cfn-stack` state reads, `--assume-role` STS, ECR auth, deployed-S3 origins, KeyValueStore reads, credential resolution — SSO included) through the standard proxy environment variables: `HTTPS_PROXY` / `HTTP_PROXY` / `ALL_PROXY`, with `NO_PROXY` exemptions. Lowercase spellings (`https_proxy`, `no_proxy`) are honored too and win over the uppercase ones. With none of them set, nothing changes.
152
+
153
+ `NO_PROXY` matching is stricter than you may expect:
154
+
155
+ - An entry is an **exact** hostname match unless it starts with `.` or `*`, which make it a suffix match — `NO_PROXY=example.com` does NOT exempt `api.example.com`; `NO_PROXY=.example.com` does.
156
+ - Entries split on commas AND whitespace; an entry may carry a `:port` (then it applies only to that port); a bare `*` disables proxying entirely. CIDR ranges are not supported.
157
+
158
+ Against a TLS-terminating (interception) proxy, routing alone is not enough — the proxy re-signs the traffic with its own CA, so also point `NODE_EXTRA_CA_CERTS` at that CA bundle.
159
+
160
+ Two boundaries: the Docker daemon pulls images through its own egress (configure the daemon's proxy separately), and your handler / task code running inside containers reads whatever proxy variables you pass it (e.g. via `--env-vars`) — cdk-local does not inject them.
161
+
149
162
  ## Environment variables — `--env-vars`
150
163
 
151
164
  Every command except `start-cloudfront` (whose CloudFront Functions and Lambda@Edge have no env vars) accepts `--env-vars <file>`, a SAM-shape JSON file that overlays the container's environment — point a Lambda function or ECS container at a different backend for a local run, or supply a value the synthesized template only knows as an intrinsic:
package/dist/cli.js CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env node
2
- import { D as createLocalStartAgentCoreCommand, F as createLocalStartCloudFrontCommand, Mn as createLocalInvokeCommand, Ot as createLocalStartServiceCommand, Pn as createLocalStartApiCommand, St as createLocalStartAlbCommand, a as createLocalStudioCommand, jt as createLocalRunTaskCommand, sn as createLocalInvokeAgentCoreCommand, w as createLocalListCommand } from "./local-studio-J8BtocsI.js";
2
+ import { D as createLocalStartAgentCoreCommand, F as createLocalStartCloudFrontCommand, Mn as createLocalInvokeCommand, Ot as createLocalStartServiceCommand, Pn as createLocalStartApiCommand, St as createLocalStartAlbCommand, a as createLocalStudioCommand, jt as createLocalRunTaskCommand, sn as createLocalInvokeAgentCoreCommand, w as createLocalListCommand } from "./local-studio-DoyRYZf6.js";
3
3
  import { Command } from "commander";
4
4
 
5
5
  //#region src/cli/index.ts
6
6
  const program = new Command();
7
- program.name("cdkl").description("Run AWS CDK stacks locally with Docker.").version("0.147.21");
7
+ program.name("cdkl").description("Run AWS CDK stacks locally with Docker.").version("0.148.0");
8
8
  program.addCommand(createLocalInvokeCommand());
9
9
  program.addCommand(createLocalInvokeAgentCoreCommand());
10
10
  program.addCommand(createLocalStartApiCommand());
package/dist/cli.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.js","names":[],"sources":["../src/cli/index.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport { Command } from 'commander';\nimport { createLocalInvokeCommand } from './commands/local-invoke.js';\nimport { createLocalInvokeAgentCoreCommand } from './commands/local-invoke-agentcore.js';\nimport { createLocalStartApiCommand } from './commands/local-start-api.js';\nimport { createLocalRunTaskCommand } from './commands/local-run-task.js';\nimport { createLocalStartServiceCommand } from './commands/local-start-service.js';\nimport { createLocalStartAlbCommand } from './commands/local-start-alb.js';\nimport { createLocalStartCloudFrontCommand } from './commands/local-start-cloudfront.js';\nimport { createLocalStartAgentCoreCommand } from './commands/local-start-agentcore.js';\nimport { createLocalListCommand } from './commands/local-list.js';\nimport { createLocalStudioCommand } from './commands/local-studio.js';\n\ndeclare const __CDK_LOCAL_VERSION__: string;\n\nconst program = new Command();\nprogram\n .name('cdkl')\n .description('Run AWS CDK stacks locally with Docker.')\n .version(__CDK_LOCAL_VERSION__);\n\nprogram.addCommand(createLocalInvokeCommand());\nprogram.addCommand(createLocalInvokeAgentCoreCommand());\nprogram.addCommand(createLocalStartApiCommand());\nprogram.addCommand(createLocalRunTaskCommand());\nprogram.addCommand(createLocalStartServiceCommand());\nprogram.addCommand(createLocalStartAlbCommand());\nprogram.addCommand(createLocalStartCloudFrontCommand());\nprogram.addCommand(createLocalStartAgentCoreCommand());\nprogram.addCommand(createLocalListCommand());\nprogram.addCommand(createLocalStudioCommand());\n\nvoid program.parseAsync(process.argv);\n"],"mappings":";;;;;AAgBA,MAAM,UAAU,IAAI,QAAQ;AAC5B,QACG,KAAK,MAAM,CAAC,CACZ,YAAY,yCAAyC,CAAC,CACtD,kBAA6B;AAEhC,QAAQ,WAAW,yBAAyB,CAAC;AAC7C,QAAQ,WAAW,kCAAkC,CAAC;AACtD,QAAQ,WAAW,2BAA2B,CAAC;AAC/C,QAAQ,WAAW,0BAA0B,CAAC;AAC9C,QAAQ,WAAW,+BAA+B,CAAC;AACnD,QAAQ,WAAW,2BAA2B,CAAC;AAC/C,QAAQ,WAAW,kCAAkC,CAAC;AACtD,QAAQ,WAAW,iCAAiC,CAAC;AACrD,QAAQ,WAAW,uBAAuB,CAAC;AAC3C,QAAQ,WAAW,yBAAyB,CAAC;AAExC,QAAQ,WAAW,QAAQ,IAAI"}
1
+ {"version":3,"file":"cli.js","names":[],"sources":["../src/cli/index.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport { Command } from 'commander';\nimport { createLocalInvokeCommand } from './commands/local-invoke.js';\nimport { createLocalInvokeAgentCoreCommand } from './commands/local-invoke-agentcore.js';\nimport { createLocalStartApiCommand } from './commands/local-start-api.js';\nimport { createLocalRunTaskCommand } from './commands/local-run-task.js';\nimport { createLocalStartServiceCommand } from './commands/local-start-service.js';\nimport { createLocalStartAlbCommand } from './commands/local-start-alb.js';\nimport { createLocalStartCloudFrontCommand } from './commands/local-start-cloudfront.js';\nimport { createLocalStartAgentCoreCommand } from './commands/local-start-agentcore.js';\nimport { createLocalListCommand } from './commands/local-list.js';\nimport { createLocalStudioCommand } from './commands/local-studio.js';\n\ndeclare const __CDK_LOCAL_VERSION__: string;\n\nconst program = new Command();\nprogram\n .name('cdkl')\n .description('Run AWS CDK stacks locally with Docker.')\n .version(__CDK_LOCAL_VERSION__);\n\nprogram.addCommand(createLocalInvokeCommand());\nprogram.addCommand(createLocalInvokeAgentCoreCommand());\nprogram.addCommand(createLocalStartApiCommand());\nprogram.addCommand(createLocalRunTaskCommand());\nprogram.addCommand(createLocalStartServiceCommand());\nprogram.addCommand(createLocalStartAlbCommand());\nprogram.addCommand(createLocalStartCloudFrontCommand());\nprogram.addCommand(createLocalStartAgentCoreCommand());\nprogram.addCommand(createLocalListCommand());\nprogram.addCommand(createLocalStudioCommand());\n\nvoid program.parseAsync(process.argv);\n"],"mappings":";;;;;AAgBA,MAAM,UAAU,IAAI,QAAQ;AAC5B,QACG,KAAK,MAAM,CAAC,CACZ,YAAY,yCAAyC,CAAC,CACtD,iBAA6B;AAEhC,QAAQ,WAAW,yBAAyB,CAAC;AAC7C,QAAQ,WAAW,kCAAkC,CAAC;AACtD,QAAQ,WAAW,2BAA2B,CAAC;AAC/C,QAAQ,WAAW,0BAA0B,CAAC;AAC9C,QAAQ,WAAW,+BAA+B,CAAC;AACnD,QAAQ,WAAW,2BAA2B,CAAC;AAC/C,QAAQ,WAAW,kCAAkC,CAAC;AACtD,QAAQ,WAAW,iCAAiC,CAAC;AACrD,QAAQ,WAAW,uBAAuB,CAAC;AAC3C,QAAQ,WAAW,yBAAyB,CAAC;AAExC,QAAQ,WAAW,QAAQ,IAAI"}
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { $n as LocalStateRecord, At as TargetEntry, Bn as resetEmbedConfig, F as createLocalStartAgentCoreCommand, Fn as createLocalInvokeCommand, Gn as LocalStateSourceOptions, Gt as createLocalStartApiCommand, Hn as ExtraStateProviders, Ht as CreateLocalStartApiCommandOptions, I as CreateLocalStartCloudFrontCommandOptions, It as CreateLocalRunTaskCommandOptions, Jn as rejectExplicitCfnStackWithMultipleStacks, Kn as createLocalStateProvider, M as formatTargetListing, Mt as countTargets, N as CreateLocalStartAgentCoreCommandOptions, Nn as CreateLocalInvokeCommandOptions, Nt as listTargets, O as CreateLocalListCommandOptions, Q as createLocalStartServiceCommand, Qn as LocalStateProvider, Rn as CdkLocalEmbedConfig, Rt as createLocalRunTaskCommand, Un as LocalStateProviderFactory, Vn as setEmbedConfig, W as CreateLocalStartAlbCommandOptions, Wn as LocalStateSourceError, X as CreateLocalStartServiceCommandOptions, Xn as resolveCfnRegion, Yn as resolveCfnFallbackRegion, Zn as resolveCfnStackName, ar as PseudoParameters, cr as substituteAgainstState, dr as substituteEnvVarsFromStateAsync, er as ResolvedSsmParameters, fr as CloudFormationTemplate, ir as CrossStackResolver, j as createLocalListCommand, jt as TargetListing, k as FormatTargetListingOptions, lr as substituteAgainstStateAsync, nr as collectSsmParameterRefs, or as StateEnvSubstitutionAudit, q as createLocalStartAlbCommand, qn as isCfnFlagPresent, rr as resolveSsmParameters, s as createLocalStudioCommand, sr as SubstitutionContext, t as CreateLocalStudioCommandOptions, tr as SsmParameterRef, ur as substituteEnvVarsFromState, xn as createLocalInvokeAgentCoreCommand, yn as CreateLocalInvokeAgentCoreCommandOptions, z as createLocalStartCloudFrontCommand, zn as getEmbedConfig } from "./local-studio-BBA_8Xvk.js";
1
+ import { $n as rejectExplicitCfnStackWithMultipleStacks, At as TargetEntry, Bn as createLocalInvokeCommand, En as createLocalInvokeAgentCoreCommand, F as createLocalStartAgentCoreCommand, Gn as resetEmbedConfig, Gt as createLocalStartApiCommand, Ht as CreateLocalStartApiCommandOptions, I as CreateLocalStartCloudFrontCommandOptions, It as CreateLocalRunTaskCommandOptions, Jn as LocalStateProviderFactory, Kn as setEmbedConfig, M as formatTargetListing, Mt as countTargets, N as CreateLocalStartAgentCoreCommandOptions, Nt as listTargets, O as CreateLocalListCommandOptions, Q as createLocalStartServiceCommand, Qn as isCfnFlagPresent, Rn as CreateLocalInvokeCommandOptions, Rt as createLocalRunTaskCommand, Un as CdkLocalEmbedConfig, W as CreateLocalStartAlbCommandOptions, Wn as getEmbedConfig, X as CreateLocalStartServiceCommandOptions, Xn as LocalStateSourceOptions, Yn as LocalStateSourceError, Zn as createLocalStateProvider, _r as CloudFormationTemplate, ar as ResolvedSsmParameters, cr as resolveSsmParameters, dr as StateEnvSubstitutionAudit, er as resolveCfnFallbackRegion, fr as SubstitutionContext, gr as substituteEnvVarsFromStateAsync, hr as substituteEnvVarsFromState, ir as LocalStateRecord, j as createLocalListCommand, jt as TargetListing, k as FormatTargetListingOptions, lr as CrossStackResolver, mr as substituteAgainstStateAsync, nr as resolveCfnStackName, or as SsmParameterRef, pr as substituteAgainstState, q as createLocalStartAlbCommand, qn as ExtraStateProviders, rr as LocalStateProvider, s as createLocalStudioCommand, sr as collectSsmParameterRefs, t as CreateLocalStudioCommandOptions, tr as resolveCfnRegion, ur as PseudoParameters, wn as CreateLocalInvokeAgentCoreCommandOptions, z as createLocalStartCloudFrontCommand } from "./local-studio-9bZLFQqv.js";
2
2
  import { CloudFormationClient } from "@aws-sdk/client-cloudformation";
3
3
  //#region src/local/cfn-local-state-provider.d.ts
4
4
  interface CfnLocalStateProviderOptions {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../src/local/cfn-local-state-provider.ts"],"mappings":";;;UAsFiB;EAOf;EAKA;EAiBA;;cAGW,iCAAiC;WAG5B;mBACC;mBACA;UAKT;UAKA;UAKA;UAKA;mBACS;UAQT;UASA;EAER,YAAY,MAAM;UAOV;UAmBA;UAaA;UAaA;EA6BK,6BACX,UAAU,yBACT,QAAQ;EAsBE,2BACX,6BACC,QAAQ;EAiCE,8BACX,6BACC;EAmDU,+BACX,4BACC;EA4CU,KACX,oBACA,mCACC,QAAQ;EAwEJ;EAoBM,wBACX,0BACC,QAAQ;EA8DJ"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/local/cfn-local-state-provider.ts"],"mappings":";;;UAuFiB;EAOf;EAKA;EAiBA;;cAGW,iCAAiC;WAG5B;mBACC;mBACA;UAKT;UAKA;UAKA;UAKA;mBACS;UAQT;UASA;EAER,YAAY,MAAM;UAOV;UAoBA;UAcA;UAcA;EA8BK,6BACX,UAAU,yBACT,QAAQ;EAsBE,2BACX,6BACC,QAAQ;EAiCE,8BACX,6BACC;EAmDU,+BACX,4BACC;EA4CU,KACX,oBACA,mCACC,QAAQ;EAwEJ;EAoBM,wBACX,0BACC,QAAQ;EA8DJ"}
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import { d as setEmbedConfig, l as getEmbedConfig, u as resetEmbedConfig } from "./docker-cmd-DLX1TqVw.js";
2
- import { $r as resolveCfnStackName, D as createLocalStartAgentCoreCommand, F as createLocalStartCloudFrontCommand, Gr as substituteEnvVarsFromState, Jr as createLocalStateProvider, Kr as substituteEnvVarsFromStateAsync, Mn as createLocalInvokeCommand, Ot as createLocalStartServiceCommand, Pn as createLocalStartApiCommand, Qr as resolveCfnRegion, St as createLocalStartAlbCommand, T as formatTargetListing, Ur as substituteAgainstState, Wr as substituteAgainstStateAsync, Xr as rejectExplicitCfnStackWithMultipleStacks, Yr as isCfnFlagPresent, Zr as resolveCfnFallbackRegion, a as createLocalStudioCommand, ai as countTargets, ei as CfnLocalStateProvider, jt as createLocalRunTaskCommand, ni as resolveSsmParameters, oi as listTargets, qr as LocalStateSourceError, sn as createLocalInvokeAgentCoreCommand, ti as collectSsmParameterRefs, w as createLocalListCommand } from "./local-studio-J8BtocsI.js";
2
+ import { $r as resolveCfnStackName, D as createLocalStartAgentCoreCommand, F as createLocalStartCloudFrontCommand, Gr as substituteEnvVarsFromState, Jr as createLocalStateProvider, Kr as substituteEnvVarsFromStateAsync, Mn as createLocalInvokeCommand, Ot as createLocalStartServiceCommand, Pn as createLocalStartApiCommand, Qr as resolveCfnRegion, St as createLocalStartAlbCommand, T as formatTargetListing, Ur as substituteAgainstState, Wr as substituteAgainstStateAsync, Xr as rejectExplicitCfnStackWithMultipleStacks, Yr as isCfnFlagPresent, Zr as resolveCfnFallbackRegion, a as createLocalStudioCommand, ai as countTargets, ei as CfnLocalStateProvider, jt as createLocalRunTaskCommand, ni as resolveSsmParameters, oi as listTargets, qr as LocalStateSourceError, sn as createLocalInvokeAgentCoreCommand, ti as collectSsmParameterRefs, w as createLocalListCommand } from "./local-studio-DoyRYZf6.js";
3
3
 
4
4
  export { CfnLocalStateProvider, LocalStateSourceError, collectSsmParameterRefs, countTargets, createLocalInvokeAgentCoreCommand, createLocalInvokeCommand, createLocalListCommand, createLocalRunTaskCommand, createLocalStartAgentCoreCommand, createLocalStartAlbCommand, createLocalStartApiCommand, createLocalStartCloudFrontCommand, createLocalStartServiceCommand, createLocalStateProvider, createLocalStudioCommand, formatTargetListing, getEmbedConfig, isCfnFlagPresent, listTargets, rejectExplicitCfnStackWithMultipleStacks, resetEmbedConfig, resolveCfnFallbackRegion, resolveCfnRegion, resolveCfnStackName, resolveSsmParameters, setEmbedConfig, substituteAgainstState, substituteAgainstStateAsync, substituteEnvVarsFromState, substituteEnvVarsFromStateAsync };
@@ -1,6 +1,6 @@
1
- import { $ as serviceStrategy, $t as RouteWithAuth, A as addListSpecificOptions, An as formatStateRemedy, At as TargetEntry, B as normalizeKvsFileKeys, Bt as ResolvedEcsTask, C as StudioEventBus, Cn as AgentCoreWsResult, Ct as FrontDoorForwardTarget, D as StudioTargetKind, Dn as invokeAgentCoreWs, Dt as DEFAULT_SHADOW_READY_TIMEOUT_MS, E as StudioServeEvent, En as bridgeAgentCoreWs, Et as resolveAlbFrontDoor, Ft as LocalInvokeBuildError, G as addAlbSpecificOptions, H as parseOriginOverrides, In as ResolvedArnLambdaLayer, J as parseLbPortOverrides, Jt as AuthorizerInfo, K as albStrategy, Kt as createWatchPredicates, L as LocalStartCloudFrontError, Ln as StackInfo, Lt as addRunTaskSpecificOptions, Mn as tryResolveImageFnJoin, On as ImageResolutionContext, Ot as SOFT_RELOAD_COMPLETION_LOG_SUFFIX, P as addStartAgentCoreSpecificOptions, Pn as addInvokeSpecificOptions, Pt as CdkLocalError, Qt as LambdaTokenAuthorizer, R as addStartCloudFrontSpecificOptions, S as createStudioDispatcher, Sn as AgentCoreWsBridgeHandle, St as runEcsServiceEmulator, T as StudioLogEvent, Tn as InvokeAgentCoreWsOptions, Tt as isApplicationLoadBalancer, U as resolveCloudFrontTarget, Ut as WatchPredicates, V as parseKvsFileOverrides, Vt as ApiTargetSubset, Wt as addStartApiSpecificOptions, Xt as JwtAuthorizer, Y as resolveAlbTarget, Yt as CognitoUserPoolAuthorizer, Z as addStartServiceSpecificOptions, Zt as LambdaRequestAuthorizer, _ as startStudioProxy, _n as CdkWatchConfig, _t as ecsClusterOption, a as coerceServeRequest, an as discoverWebSocketApisOrThrow, at as PlannedEcsForwardTarget, b as StudioRunRequest, bn as addInvokeAgentCoreSpecificOptions, bt as resolveEcsAssumeRoleOption, c as resolveServeBaseUrl, cn as webSocketApiMatchesIdentifier, ct as PlannedForwardTarget, d as StudioServeRequest, dn as discoverRoutes, dt as PlannedRedirectAction, en as attachAuthorizers, et as EcsServiceEmulatorOptions, f as StudioServeState, fn as IntegrationResponseEntry, fr as CloudFormationTemplate, ft as ServiceBoot, g as StudioProxyConfig, gn as tryParseStatus, gt as buildEcsImageResolutionContext, h as RunningStudioProxy, hn as selectIntegrationResponse, ht as addImageOverrideOptions, i as coerceRunRequest, in as discoverWebSocketApis, it as PlannedAction, jn as substituteImagePlaceholders, jt as TargetListing, kn as derivePseudoParametersFromRegion, kt as setShadowReadyTimeoutMs, l as StudioServeManager, ln as DiscoveredRoute, lt as PlannedFrontDoorListener, m as createStudioServeManager, mn as pickResponseTemplate, mt as addEcsAssumeRoleOptions, n as StudioServeRequestPayload, nn as WebSocketRouteEntry, nt as FrontDoorPlan, o as coerceStopRequest, on as filterWebSocketApisByIdentifiers, ot as PlannedFixedResponseAction, p as StudioStopRequest, pn as evaluateResponseParameters, pr as TemplateResource, pt as addCommonEcsServiceOptions, qt as resolveApiTargetSubset, r as addStudioSpecificOptions, rn as availableWebSocketApiIdentifiers, rt as MAX_TASKS_SUBNET_RANGE_CAP, sn as parseSelectionExpressionPath, st as PlannedForwardAction, tn as DiscoveredWebSocketApi, tt as EmulatorStrategy, u as StudioServeManagerConfig, un as RestV1IntegrationConfig, ut as PlannedLambdaForwardTarget, v as StudioDispatchConfig, vn as resolveWatchConfig, vt as parseMaxTasks, w as StudioInvocationEvent, wn as BridgeAgentCoreWsOptions, wt as ResolvedListenerAction, x as StudioRunResult, xt as resolveSharedSidecarCredentials, y as StudioDispatcher, yt as parseRestartPolicy, zt as EcsTaskResolutionError } from "./local-studio-BBA_8Xvk.js";
2
- import { WebSocket } from "ws";
1
+ import { $ as serviceStrategy, $t as RouteWithAuth, A as addListSpecificOptions, An as InvokeAgentCoreWsOptions, At as TargetEntry, B as normalizeKvsFileKeys, Bt as ResolvedEcsTask, C as StudioEventBus, Cn as isProxyEnvConfigured, Ct as FrontDoorForwardTarget, D as StudioTargetKind, Dn as AgentCoreWsBridgeHandle, Dt as DEFAULT_SHADOW_READY_TIMEOUT_MS, E as StudioServeEvent, Et as resolveAlbFrontDoor, Fn as formatStateRemedy, Ft as LocalInvokeBuildError, G as addAlbSpecificOptions, H as parseOriginOverrides, Hn as StackInfo, In as substituteImagePlaceholders, J as parseLbPortOverrides, Jt as AuthorizerInfo, K as albStrategy, Kt as createWatchPredicates, L as LocalStartCloudFrontError, Ln as tryResolveImageFnJoin, Lt as addRunTaskSpecificOptions, Mn as invokeAgentCoreWs, Nn as ImageResolutionContext, On as AgentCoreWsResult, Ot as SOFT_RELOAD_COMPLETION_LOG_SUFFIX, P as addStartAgentCoreSpecificOptions, Pn as derivePseudoParametersFromRegion, Pt as CdkLocalError, Qt as LambdaTokenAuthorizer, R as addStartCloudFrontSpecificOptions, S as createStudioDispatcher, Sn as buildProxyClientConfig, St as runEcsServiceEmulator, T as StudioLogEvent, Tn as addInvokeAgentCoreSpecificOptions, Tt as isApplicationLoadBalancer, U as resolveCloudFrontTarget, Ut as WatchPredicates, V as parseKvsFileOverrides, Vn as ResolvedArnLambdaLayer, Vt as ApiTargetSubset, Wt as addStartApiSpecificOptions, Xt as JwtAuthorizer, Y as resolveAlbTarget, Yt as CognitoUserPoolAuthorizer, Z as addStartServiceSpecificOptions, Zt as LambdaRequestAuthorizer, _ as startStudioProxy, _n as CdkWatchConfig, _r as CloudFormationTemplate, _t as ecsClusterOption, a as coerceServeRequest, an as discoverWebSocketApisOrThrow, at as PlannedEcsForwardTarget, b as StudioRunRequest, bn as resolveProfileCredentials, bt as resolveEcsAssumeRoleOption, c as resolveServeBaseUrl, cn as webSocketApiMatchesIdentifier, ct as PlannedForwardTarget, d as StudioServeRequest, dn as discoverRoutes, dt as PlannedRedirectAction, en as attachAuthorizers, et as EcsServiceEmulatorOptions, f as StudioServeState, fn as IntegrationResponseEntry, ft as ServiceBoot, g as StudioProxyConfig, gn as tryParseStatus, gt as buildEcsImageResolutionContext, h as RunningStudioProxy, hn as selectIntegrationResponse, ht as addImageOverrideOptions, i as coerceRunRequest, in as discoverWebSocketApis, it as PlannedAction, jn as bridgeAgentCoreWs, jt as TargetListing, kn as BridgeAgentCoreWsOptions, kt as setShadowReadyTimeoutMs, l as StudioServeManager, ln as DiscoveredRoute, lt as PlannedFrontDoorListener, m as createStudioServeManager, mn as pickResponseTemplate, mt as addEcsAssumeRoleOptions, n as StudioServeRequestPayload, nn as WebSocketRouteEntry, nt as FrontDoorPlan, o as coerceStopRequest, on as filterWebSocketApisByIdentifiers, ot as PlannedFixedResponseAction, p as StudioStopRequest, pn as evaluateResponseParameters, pt as addCommonEcsServiceOptions, qt as resolveApiTargetSubset, r as addStudioSpecificOptions, rn as availableWebSocketApiIdentifiers, rt as MAX_TASKS_SUBNET_RANGE_CAP, sn as parseSelectionExpressionPath, st as PlannedForwardAction, tn as DiscoveredWebSocketApi, tt as EmulatorStrategy, u as StudioServeManagerConfig, un as RestV1IntegrationConfig, ut as PlannedLambdaForwardTarget, v as StudioDispatchConfig, vn as resolveWatchConfig, vr as TemplateResource, vt as parseMaxTasks, w as StudioInvocationEvent, wt as ResolvedListenerAction, x as StudioRunResult, xn as AwsProxyClientConfig, xt as resolveSharedSidecarCredentials, y as StudioDispatcher, yn as buildStsClientConfig, yt as parseRestartPolicy, zn as addInvokeSpecificOptions, zt as EcsTaskResolutionError } from "./local-studio-9bZLFQqv.js";
3
2
  import { IncomingHttpHeaders, IncomingMessage, Server, ServerResponse } from "node:http";
3
+ import { WebSocket } from "ws";
4
4
  import * as vm from "node:vm";
5
5
  import "@aws-sdk/signature-v4a";
6
6
  //#region src/local/file-watcher.d.ts
@@ -197,21 +197,6 @@ interface DockerCacheOption {
197
197
  params?: Record<string, string>;
198
198
  }
199
199
  //#endregion
200
- //#region src/utils/profile-resolver.d.ts
201
- declare function resolveProfileCredentials(profile: string): Promise<{
202
- accessKeyId: string;
203
- secretAccessKey: string;
204
- sessionToken?: string;
205
- region?: string;
206
- }>;
207
- declare function buildStsClientConfig(args: {
208
- region?: string | undefined;
209
- profile?: string | undefined;
210
- }): {
211
- region?: string;
212
- profile?: string;
213
- };
214
- //#endregion
215
200
  //#region src/local/container-pool.d.ts
216
201
  interface ContainerHandle {
217
202
  logicalId: string;
@@ -1517,5 +1502,5 @@ interface ReinvokeDeps {
1517
1502
  }
1518
1503
  declare function reinvoke(input: ReinvokeInput, deps: ReinvokeDeps): Promise<StudioRunResult>;
1519
1504
  //#endregion
1520
- export { A2A_CONTAINER_PORT, A2A_PATH, type A2aInvokeOptions, type A2aInvokeResult, type A2aJsonRpcRequest, AGENTCORE_A2A_PROTOCOL, AGENTCORE_AGUI_PROTOCOL, AGENTCORE_HTTP_PROTOCOL, AGENTCORE_MCP_PROTOCOL, AGENTCORE_RUNTIME_TYPE, AGENTCORE_SESSION_ID_HEADER, AGENTCORE_SIGV4_SERVICE, type AgentCoreCodeArtifact, type AgentCoreCustomClaim, type AgentCoreHttpServerConfig, type AgentCoreInvokeResult, type AgentCoreJwtAuthorizer, AgentCoreResolutionError, type AgentCoreServeAuthCheck, type AgentCoreServeAuthResult, type AgentCoreServeRoute, type AgentCoreServeSignRequest, type AgentCoreWsBridgeHandle, type AgentCoreWsBridgeServerConfig, type AgentCoreWsResult, type ApiServerGroup, type ApiTargetSubset, type AttachedAgentCoreWsBridge, type AuthorizerCache, type AuthorizerEventOverlay, type AuthorizerInfo, type BridgeAgentCoreWsOptions, type BuildAgentCoreCodeImageOptions, type BuildAgentCoreServeAuthCheckOptions, type BuildContainerImageOptions, CLOUDFRONT_DISTRIBUTION_TYPE, type CachedAuthorizerResult, type CdkWatchConfig, type CfRequest, type CfResponse, type CloudFrontClientCredentials, type CloudFrontKvsAssociation, type CloudFrontKvsHandle, type CloudFrontModule, type CloudMapIndex, CloudMapRegistry, type CompiledCloudFrontFunction, ConnectionRegistry, type ConnectionRegistryEntry, type CorsConfig, type CreateDeployedKvsDataSourceOptions, type CredentialsLoader, DEFAULT_SHADOW_READY_TIMEOUT_MS, type DeployedKvsRef, type DiscoveredRoute, type DiscoveredWebSocketApi, type DiscoveryJwtAuthorizer, type DownloadS3BundleOptions, type EcsServiceEmulatorOptions, EcsTaskResolutionError, type EdgeEvent, type EdgeEventType, type EdgeRequest, type EdgeRequestInput, type EdgeResponse, type EdgeResponseResult, type EmulatorStrategy, type EnvOverrideFile, type ErrorResponseCandidate, type ExtractedS3Bundle, type FileWatcher, type FileWatcherOptions, type FilterStudioCustomResourcesOptions, type FrontDoorForwardTarget, type FrontDoorPlan, HOST_DOCKER_INTERNAL_GATEWAY, HOST_GATEWAY_MIN_VERSION, type HttpRequestSnapshot, type ImageOverrideEntry, ImageOverrideError, type ImageOverrideGlobals, type ImageOverrideMap, type ImageResolutionContext, type IntegrationResponseEntry, type InvokeAgentCoreOptions, type InvokeAgentCoreWsOptions, type JwksCache, type JwtCustomClaim, type KvsDataSource, type LambdaArnResolveOutcome, type LambdaUrlInvokerMap, type LambdaUrlOriginRequest, type LambdaUrlOriginResult, LocalInvokeBuildError, LocalStartCloudFrontError, MAX_TASKS_SUBNET_RANGE_CAP, MCP_CONTAINER_PORT, MCP_PATH, MCP_PROTOCOL_VERSION, type MatchedRouteContext, type McpInvokeOptions, type McpInvokeResult, type McpJsonRpcRequest, type MtlsServerConfig, type PerServiceBuildInputs, type PinnedTargetEntry, type PlannedAction, type PlannedEcsForwardTarget, type PlannedFixedResponseAction, type PlannedForwardAction, type PlannedForwardTarget, type PlannedFrontDoorListener, type PlannedLambdaForwardTarget, type PlannedRedirectAction, type RawImageOverrideFlags, type RegistrationHandle, type ReinvokeDeps, type ReinvokeInput, type ReloadAssetContext, type ReloadVerdict, type RequestParameterContext, type ResolveDeployedOriginBucketOptions, type ResolveKvsModulesOptions, type ResolveParametersOutcome, type ResolvedAgentCoreRuntime, type ResolvedBehavior, type ResolvedCloudFrontFunction, type ResolvedCustomErrorResponse, type ResolvedDistribution, type ResolvedLambdaEdge, type ResolvedLambdaEdgeAssoc, type ResolvedListenerAction, type ResolvedOrigin, type ResolvedStage, type RestV1IntegrationConfig, type RouteMatchResult, type RouteWithAuth, type RunningAgentCoreHttpServer, type RunningAgentCoreWsBridge, type RunningStudioProxy, type RunningStudioServer, type S3BundleCredentials, type S3BundleLocation, type S3FetchResult, type S3ObjectFetcher, type S3OriginCredentials, type S3OriginReader, type S3OriginReaderOptions, SOFT_RELOAD_COMPLETION_LOG_SUFFIX, SUPPORTED_CODE_RUNTIMES, type ServeInboundAuthPlan, type ServeRequestInput, type ServeRequestResult, type ServerState, type ServiceBoot, type SigV4Credentials, type SignAgentCoreInvocationOptions, type SignedAgentCoreHeaders, type StartedApiServer, type StartedCloudFrontServer, type StaticOriginResult, type StudioDispatchConfig, type StudioDispatcher, StudioEventBus, type StudioHistory, type StudioInvocationEvent, type StudioLogEvent, type StudioLogSearchOptions, type StudioProxyConfig, type StudioRunRequest, type StudioRunResult, type StudioServeEvent, type StudioServeManager, type StudioServeManagerConfig, type StudioServeRequest, type StudioServeRequestPayload, type StudioServeState, type StudioServerOptions, type StudioStopRequest, type StudioStore, type StudioStoreOptions, type StudioTarget, type StudioTargetGroup, type StudioTargetKind, type TranslatedHttpResponse, VtlEvaluationError, type WarnedAt, type WatchPredicates, type WebSocketHandshakeSnapshot, type WebSocketLambdaEvent, type WebSocketRouteEntry, a2aInvokeOnce, addAlbSpecificOptions, addCommonEcsServiceOptions, addEcsAssumeRoleOptions, addImageOverrideOptions, addInvokeAgentCoreSpecificOptions, addInvokeSpecificOptions, addListSpecificOptions, addRunTaskSpecificOptions, addStartAgentCoreSpecificOptions, addStartApiSpecificOptions, addStartCloudFrontSpecificOptions, addStartServiceSpecificOptions, addStudioSpecificOptions, albStrategy, annotateAlbPinnedBackingServices, annotateEcsTaskPinnedTargets, annotatePinnedEcsTargets, applyAuthorizerOverlay, applyCorsResponseHeaders, applyEdgeRequestResult, applyEdgeResponseResult, architectureToPlatform, attachAgentCoreWsBridge, attachAuthorizers, attachContainerLogStreamer, attachStageContext, availableApiIdentifiers, availableWebSocketApiIdentifiers, bridgeAgentCoreWs, bufferToBody, buildAgentCoreCodeImage, buildAgentCoreServeAuthCheck, buildCloudMapIndex, buildCognitoJwksUrl, buildConnectEvent, buildContainerImage, buildCorsConfigByApiId, buildCorsConfigFromCloudFrontChain, buildDisconnectEvent, buildEcsImageResolutionContext, buildEdgeRequestEvent, buildEdgeResponseEvent, buildHttpApiV2Event, buildImageOverrideTag, buildJwksUrlFromIssuer, buildMessageEvent, buildMethodArn, buildMgmtEndpointEnvUrl, buildRestV1Event, buildStageMap, buildStsClientConfig, classifyS3Error, classifySourceChange, coerceRunRequest, coerceServeRequest, coerceStopRequest, compileCloudFrontFunction, computeCodeImageTag, computeRequestIdentityHash, createAuthorizerCache, createCloudFrontModule, createDeployedKvsDataSource, createFileWatcher, createJwksCache, createLocalFileKvsDataSource, createS3OriginReader, createStudioDispatcher, createStudioServeManager, createStudioStore, createUnboundCloudFrontModule, createWatchPredicates, defaultCredentialsLoader, derivePseudoParametersFromRegion, describeAwsFailureForWarn, describeCredentialLoadFailure, describePinnedImageUri, describeS3OriginDomain, discoverRoutes, discoverWebSocketApis, discoverWebSocketApisOrThrow, downloadAndExtractS3Bundle, ecsClusterOption, edgeHeadersToHttp, enforceImageOverrideOrphans, evaluateCachedLambdaPolicy, evaluateResponseParameters, extractKvsAssociations, filterRoutesByApiIdentifier, filterRoutesByApiIdentifiers, filterStudioCustomResources, filterStudioTargetGroups, filterWebSocketApisByIdentifiers, formatStateRemedy, getContainerNetworkIp, groupRoutesByServer, handleConnectionsRequest, httpHeadersToEdge, idFromArn, invokeAgentCore, invokeAgentCoreWs, invokeRequestAuthorizer, invokeTokenAuthorizer, isApplicationLoadBalancer, isCloudFrontDistribution, isCustomResourceLambdaTarget, isFunctionUrlOacFronted, isLocalCdkAssetImage, listPinnedTargets, matchBehavior, matchPreflight, matchRoute, materializeLayerFromArn, mcpInvokeOnce, mergeForService, normalizeKvsFileKeys, parseConnectionsPath, parseImageOverrideFlags, parseKvsFileOverrides, parseLbPortOverrides, parseMaxTasks, parseOriginOverrides, parseRestartPolicy, parseSelectionExpressionPath, parseSseForJsonRpc, pickAgentCoreCandidateStack, pickFunctionUrlLogicalIdFromOrigin, pickKvsLogicalIdFromArn, pickLambdaEdgeFunctionLogicalId, pickRefLogicalId, pickResponseTemplate, pickTargetFunctionLogicalId, probeHostGatewaySupport, readMtlsMaterialsFromDisk, reinvoke, relayServeRequest, renderCodeDockerfile, renderStudioHtml, resolveAgentCoreTarget, resolveAlbFrontDoor, resolveAlbTarget, resolveApiTargetSubset, resolveCloudFrontDistribution, resolveCloudFrontTarget, resolveDeployedKvsArnByName, resolveDeployedOriginBucket, resolveEcsAssumeRoleOption, resolveEnvVars, resolveErrorResponseCandidates, resolveHostGatewayExtraHosts, resolveImageOverrides, resolveKvsModulesForDistribution, resolveLambdaArnIntrinsic, resolveProfileCredentials, resolveRuntimeCodeMountPath, resolveRuntimeFileExtension, resolveRuntimeImage, resolveSelectionExpression, resolveServeBaseUrl, resolveServiceIntegrationParameters, resolveSharedSidecarCredentials, resolveSingleTarget, resolveWatchConfig, runEcsServiceEmulator, runImageOverrideBuilds, runViewerRequest, runViewerResponse, selectIntegrationResponse, selectServeInboundAuth, serveFromStaticOrigin, serveLambdaUrlOrigin, serviceStrategy, setShadowReadyTimeoutMs, signAgentCoreInvocation, startAgentCoreHttpServer, startAgentCoreWsBridge, startApiServer, startCloudFrontServer, startStudioProxy, startStudioServer, stripCloudFrontImport, substituteImagePlaceholders, toCmdArgv, toStudioTargetGroups, translateLambdaResponse, tryParseStatus, tryResolveImageFnJoin, verifyCognitoJwt, verifyJwtAuthorizer, verifyJwtViaDiscovery, waitForAgentCoreHttpReady, waitForAgentCorePing, webSocketApiMatchesIdentifier };
1505
+ export { A2A_CONTAINER_PORT, A2A_PATH, type A2aInvokeOptions, type A2aInvokeResult, type A2aJsonRpcRequest, AGENTCORE_A2A_PROTOCOL, AGENTCORE_AGUI_PROTOCOL, AGENTCORE_HTTP_PROTOCOL, AGENTCORE_MCP_PROTOCOL, AGENTCORE_RUNTIME_TYPE, AGENTCORE_SESSION_ID_HEADER, AGENTCORE_SIGV4_SERVICE, type AgentCoreCodeArtifact, type AgentCoreCustomClaim, type AgentCoreHttpServerConfig, type AgentCoreInvokeResult, type AgentCoreJwtAuthorizer, AgentCoreResolutionError, type AgentCoreServeAuthCheck, type AgentCoreServeAuthResult, type AgentCoreServeRoute, type AgentCoreServeSignRequest, type AgentCoreWsBridgeHandle, type AgentCoreWsBridgeServerConfig, type AgentCoreWsResult, type ApiServerGroup, type ApiTargetSubset, type AttachedAgentCoreWsBridge, type AuthorizerCache, type AuthorizerEventOverlay, type AuthorizerInfo, type AwsProxyClientConfig, type BridgeAgentCoreWsOptions, type BuildAgentCoreCodeImageOptions, type BuildAgentCoreServeAuthCheckOptions, type BuildContainerImageOptions, CLOUDFRONT_DISTRIBUTION_TYPE, type CachedAuthorizerResult, type CdkWatchConfig, type CfRequest, type CfResponse, type CloudFrontClientCredentials, type CloudFrontKvsAssociation, type CloudFrontKvsHandle, type CloudFrontModule, type CloudMapIndex, CloudMapRegistry, type CompiledCloudFrontFunction, ConnectionRegistry, type ConnectionRegistryEntry, type CorsConfig, type CreateDeployedKvsDataSourceOptions, type CredentialsLoader, DEFAULT_SHADOW_READY_TIMEOUT_MS, type DeployedKvsRef, type DiscoveredRoute, type DiscoveredWebSocketApi, type DiscoveryJwtAuthorizer, type DownloadS3BundleOptions, type EcsServiceEmulatorOptions, EcsTaskResolutionError, type EdgeEvent, type EdgeEventType, type EdgeRequest, type EdgeRequestInput, type EdgeResponse, type EdgeResponseResult, type EmulatorStrategy, type EnvOverrideFile, type ErrorResponseCandidate, type ExtractedS3Bundle, type FileWatcher, type FileWatcherOptions, type FilterStudioCustomResourcesOptions, type FrontDoorForwardTarget, type FrontDoorPlan, HOST_DOCKER_INTERNAL_GATEWAY, HOST_GATEWAY_MIN_VERSION, type HttpRequestSnapshot, type ImageOverrideEntry, ImageOverrideError, type ImageOverrideGlobals, type ImageOverrideMap, type ImageResolutionContext, type IntegrationResponseEntry, type InvokeAgentCoreOptions, type InvokeAgentCoreWsOptions, type JwksCache, type JwtCustomClaim, type KvsDataSource, type LambdaArnResolveOutcome, type LambdaUrlInvokerMap, type LambdaUrlOriginRequest, type LambdaUrlOriginResult, LocalInvokeBuildError, LocalStartCloudFrontError, MAX_TASKS_SUBNET_RANGE_CAP, MCP_CONTAINER_PORT, MCP_PATH, MCP_PROTOCOL_VERSION, type MatchedRouteContext, type McpInvokeOptions, type McpInvokeResult, type McpJsonRpcRequest, type MtlsServerConfig, type PerServiceBuildInputs, type PinnedTargetEntry, type PlannedAction, type PlannedEcsForwardTarget, type PlannedFixedResponseAction, type PlannedForwardAction, type PlannedForwardTarget, type PlannedFrontDoorListener, type PlannedLambdaForwardTarget, type PlannedRedirectAction, type RawImageOverrideFlags, type RegistrationHandle, type ReinvokeDeps, type ReinvokeInput, type ReloadAssetContext, type ReloadVerdict, type RequestParameterContext, type ResolveDeployedOriginBucketOptions, type ResolveKvsModulesOptions, type ResolveParametersOutcome, type ResolvedAgentCoreRuntime, type ResolvedBehavior, type ResolvedCloudFrontFunction, type ResolvedCustomErrorResponse, type ResolvedDistribution, type ResolvedLambdaEdge, type ResolvedLambdaEdgeAssoc, type ResolvedListenerAction, type ResolvedOrigin, type ResolvedStage, type RestV1IntegrationConfig, type RouteMatchResult, type RouteWithAuth, type RunningAgentCoreHttpServer, type RunningAgentCoreWsBridge, type RunningStudioProxy, type RunningStudioServer, type S3BundleCredentials, type S3BundleLocation, type S3FetchResult, type S3ObjectFetcher, type S3OriginCredentials, type S3OriginReader, type S3OriginReaderOptions, SOFT_RELOAD_COMPLETION_LOG_SUFFIX, SUPPORTED_CODE_RUNTIMES, type ServeInboundAuthPlan, type ServeRequestInput, type ServeRequestResult, type ServerState, type ServiceBoot, type SigV4Credentials, type SignAgentCoreInvocationOptions, type SignedAgentCoreHeaders, type StartedApiServer, type StartedCloudFrontServer, type StaticOriginResult, type StudioDispatchConfig, type StudioDispatcher, StudioEventBus, type StudioHistory, type StudioInvocationEvent, type StudioLogEvent, type StudioLogSearchOptions, type StudioProxyConfig, type StudioRunRequest, type StudioRunResult, type StudioServeEvent, type StudioServeManager, type StudioServeManagerConfig, type StudioServeRequest, type StudioServeRequestPayload, type StudioServeState, type StudioServerOptions, type StudioStopRequest, type StudioStore, type StudioStoreOptions, type StudioTarget, type StudioTargetGroup, type StudioTargetKind, type TranslatedHttpResponse, VtlEvaluationError, type WarnedAt, type WatchPredicates, type WebSocketHandshakeSnapshot, type WebSocketLambdaEvent, type WebSocketRouteEntry, a2aInvokeOnce, addAlbSpecificOptions, addCommonEcsServiceOptions, addEcsAssumeRoleOptions, addImageOverrideOptions, addInvokeAgentCoreSpecificOptions, addInvokeSpecificOptions, addListSpecificOptions, addRunTaskSpecificOptions, addStartAgentCoreSpecificOptions, addStartApiSpecificOptions, addStartCloudFrontSpecificOptions, addStartServiceSpecificOptions, addStudioSpecificOptions, albStrategy, annotateAlbPinnedBackingServices, annotateEcsTaskPinnedTargets, annotatePinnedEcsTargets, applyAuthorizerOverlay, applyCorsResponseHeaders, applyEdgeRequestResult, applyEdgeResponseResult, architectureToPlatform, attachAgentCoreWsBridge, attachAuthorizers, attachContainerLogStreamer, attachStageContext, availableApiIdentifiers, availableWebSocketApiIdentifiers, bridgeAgentCoreWs, bufferToBody, buildAgentCoreCodeImage, buildAgentCoreServeAuthCheck, buildCloudMapIndex, buildCognitoJwksUrl, buildConnectEvent, buildContainerImage, buildCorsConfigByApiId, buildCorsConfigFromCloudFrontChain, buildDisconnectEvent, buildEcsImageResolutionContext, buildEdgeRequestEvent, buildEdgeResponseEvent, buildHttpApiV2Event, buildImageOverrideTag, buildJwksUrlFromIssuer, buildMessageEvent, buildMethodArn, buildMgmtEndpointEnvUrl, buildProxyClientConfig, buildRestV1Event, buildStageMap, buildStsClientConfig, classifyS3Error, classifySourceChange, coerceRunRequest, coerceServeRequest, coerceStopRequest, compileCloudFrontFunction, computeCodeImageTag, computeRequestIdentityHash, createAuthorizerCache, createCloudFrontModule, createDeployedKvsDataSource, createFileWatcher, createJwksCache, createLocalFileKvsDataSource, createS3OriginReader, createStudioDispatcher, createStudioServeManager, createStudioStore, createUnboundCloudFrontModule, createWatchPredicates, defaultCredentialsLoader, derivePseudoParametersFromRegion, describeAwsFailureForWarn, describeCredentialLoadFailure, describePinnedImageUri, describeS3OriginDomain, discoverRoutes, discoverWebSocketApis, discoverWebSocketApisOrThrow, downloadAndExtractS3Bundle, ecsClusterOption, edgeHeadersToHttp, enforceImageOverrideOrphans, evaluateCachedLambdaPolicy, evaluateResponseParameters, extractKvsAssociations, filterRoutesByApiIdentifier, filterRoutesByApiIdentifiers, filterStudioCustomResources, filterStudioTargetGroups, filterWebSocketApisByIdentifiers, formatStateRemedy, getContainerNetworkIp, groupRoutesByServer, handleConnectionsRequest, httpHeadersToEdge, idFromArn, invokeAgentCore, invokeAgentCoreWs, invokeRequestAuthorizer, invokeTokenAuthorizer, isApplicationLoadBalancer, isCloudFrontDistribution, isCustomResourceLambdaTarget, isFunctionUrlOacFronted, isLocalCdkAssetImage, isProxyEnvConfigured, listPinnedTargets, matchBehavior, matchPreflight, matchRoute, materializeLayerFromArn, mcpInvokeOnce, mergeForService, normalizeKvsFileKeys, parseConnectionsPath, parseImageOverrideFlags, parseKvsFileOverrides, parseLbPortOverrides, parseMaxTasks, parseOriginOverrides, parseRestartPolicy, parseSelectionExpressionPath, parseSseForJsonRpc, pickAgentCoreCandidateStack, pickFunctionUrlLogicalIdFromOrigin, pickKvsLogicalIdFromArn, pickLambdaEdgeFunctionLogicalId, pickRefLogicalId, pickResponseTemplate, pickTargetFunctionLogicalId, probeHostGatewaySupport, readMtlsMaterialsFromDisk, reinvoke, relayServeRequest, renderCodeDockerfile, renderStudioHtml, resolveAgentCoreTarget, resolveAlbFrontDoor, resolveAlbTarget, resolveApiTargetSubset, resolveCloudFrontDistribution, resolveCloudFrontTarget, resolveDeployedKvsArnByName, resolveDeployedOriginBucket, resolveEcsAssumeRoleOption, resolveEnvVars, resolveErrorResponseCandidates, resolveHostGatewayExtraHosts, resolveImageOverrides, resolveKvsModulesForDistribution, resolveLambdaArnIntrinsic, resolveProfileCredentials, resolveRuntimeCodeMountPath, resolveRuntimeFileExtension, resolveRuntimeImage, resolveSelectionExpression, resolveServeBaseUrl, resolveServiceIntegrationParameters, resolveSharedSidecarCredentials, resolveSingleTarget, resolveWatchConfig, runEcsServiceEmulator, runImageOverrideBuilds, runViewerRequest, runViewerResponse, selectIntegrationResponse, selectServeInboundAuth, serveFromStaticOrigin, serveLambdaUrlOrigin, serviceStrategy, setShadowReadyTimeoutMs, signAgentCoreInvocation, startAgentCoreHttpServer, startAgentCoreWsBridge, startApiServer, startCloudFrontServer, startStudioProxy, startStudioServer, stripCloudFrontImport, substituteImagePlaceholders, toCmdArgv, toStudioTargetGroups, translateLambdaResponse, tryParseStatus, tryResolveImageFnJoin, verifyCognitoJwt, verifyJwtAuthorizer, verifyJwtViaDiscovery, waitForAgentCoreHttpReady, waitForAgentCorePing, webSocketApiMatchesIdentifier };
1521
1506
  //# sourceMappingURL=internal.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"internal.d.ts","names":[],"sources":["../src/local/file-watcher.ts","../src/local/source-change-classifier.ts","../src/local/agentcore-resolver.ts","../src/local/agentcore-sigv4-sign.ts","../src/local/agentcore-client.ts","../src/local/agentcore-mcp-client.ts","../src/local/agentcore-a2a-client.ts","../src/local/env-resolver.ts","../src/types/assets.ts","../src/utils/profile-resolver.ts","../src/local/container-pool.ts","../src/local/vtl-engine.ts","../src/local/cors-handler.ts","../src/local/authorizer-cache.ts","../src/local/cognito-jwt.ts","../src/local/sigv4-verify.ts","../src/local/http-server.ts","../src/local/ecs-service-resolver.ts","../src/local/cloud-map-registry.ts","../src/local/cloud-map-resolver.ts","../src/local/cloudfront-kvs.ts","../src/local/cloudfront-function-runtime.ts","../src/local/cloudfront-static-origin.ts","../src/local/cloudfront-resolver.ts","../src/local/cloudfront-s3-origin.ts","../src/local/front-door-tls.ts","../src/local/cloudfront-server.ts","../src/local/agentcore-serve-auth.ts","../src/local/agentcore-http-server.ts","../src/local/studio-store.ts","../src/local/studio-server.ts","../src/local/studio-request-relay.ts","../src/local/intrinsic-utils.ts","../src/local/intrinsic-lambda-arn.ts","../src/local/parameter-mapping.ts","../src/local/api-gateway-response.ts","../src/local/docker-inspect.ts","../src/local/route-matcher.ts","../src/local/api-gateway-event.ts","../src/local/lambda-authorizer.ts","../src/local/stage-resolver.ts","../src/local/runtime-image.ts","../src/local/websocket-event.ts","../src/local/websocket-mgmt-api.ts","../src/local/websocket-body.ts","../src/local/docker-version.ts","../src/local/api-server-grouping.ts","../src/local/layer-arn-materializer.ts","../src/local/credential-error.ts","../src/local/agentcore-code-build.ts","../src/local/agentcore-ws-bridge.ts","../src/local/agentcore-s3-bundle.ts","../src/local/docker-image-builder.ts","../src/local/image-pin-detector.ts","../src/local/target-picker.ts","../src/local/image-override-engine.ts","../src/local/container-log-streamer.ts","../src/local/cloudfront-edge-event.ts","../src/local/cloudfront-kvs-client.ts","../src/local/cloudfront-kvs-binding.ts","../src/local/cloudfront-distribution-config.ts","../src/local/cloudfront-lambda-origin.ts","../src/local/studio-custom-resource-filter.ts","../src/local/studio-ui.ts","../src/local/studio-reinvoke.ts"],"mappings":"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"}
1
+ {"version":3,"file":"internal.d.ts","names":[],"sources":["../src/local/file-watcher.ts","../src/local/source-change-classifier.ts","../src/local/agentcore-resolver.ts","../src/local/agentcore-sigv4-sign.ts","../src/local/agentcore-client.ts","../src/local/agentcore-mcp-client.ts","../src/local/agentcore-a2a-client.ts","../src/local/env-resolver.ts","../src/types/assets.ts","../src/local/container-pool.ts","../src/local/vtl-engine.ts","../src/local/cors-handler.ts","../src/local/authorizer-cache.ts","../src/local/cognito-jwt.ts","../src/local/sigv4-verify.ts","../src/local/http-server.ts","../src/local/ecs-service-resolver.ts","../src/local/cloud-map-registry.ts","../src/local/cloud-map-resolver.ts","../src/local/cloudfront-kvs.ts","../src/local/cloudfront-function-runtime.ts","../src/local/cloudfront-static-origin.ts","../src/local/cloudfront-resolver.ts","../src/local/cloudfront-s3-origin.ts","../src/local/front-door-tls.ts","../src/local/cloudfront-server.ts","../src/local/agentcore-serve-auth.ts","../src/local/agentcore-http-server.ts","../src/local/studio-store.ts","../src/local/studio-server.ts","../src/local/studio-request-relay.ts","../src/local/intrinsic-utils.ts","../src/local/intrinsic-lambda-arn.ts","../src/local/parameter-mapping.ts","../src/local/api-gateway-response.ts","../src/local/docker-inspect.ts","../src/local/route-matcher.ts","../src/local/api-gateway-event.ts","../src/local/lambda-authorizer.ts","../src/local/stage-resolver.ts","../src/local/runtime-image.ts","../src/local/websocket-event.ts","../src/local/websocket-mgmt-api.ts","../src/local/websocket-body.ts","../src/local/docker-version.ts","../src/local/api-server-grouping.ts","../src/local/layer-arn-materializer.ts","../src/local/credential-error.ts","../src/local/agentcore-code-build.ts","../src/local/agentcore-ws-bridge.ts","../src/local/agentcore-s3-bundle.ts","../src/local/docker-image-builder.ts","../src/local/image-pin-detector.ts","../src/local/target-picker.ts","../src/local/image-override-engine.ts","../src/local/container-log-streamer.ts","../src/local/cloudfront-edge-event.ts","../src/local/cloudfront-kvs-client.ts","../src/local/cloudfront-kvs-binding.ts","../src/local/cloudfront-distribution-config.ts","../src/local/cloudfront-lambda-origin.ts","../src/local/studio-custom-resource-filter.ts","../src/local/studio-ui.ts","../src/local/studio-reinvoke.ts"],"mappings":"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"}
package/dist/internal.js CHANGED
@@ -1,3 +1,3 @@
1
- import { $ as applyEdgeResponseResult, $n as buildJwksUrlFromIssuer, $t as buildCloudMapIndex, A as startAgentCoreHttpServer, Ai as describeCredentialLoadFailure, An as classifySourceChange, Ar as ConnectionRegistry, At as addRunTaskSpecificOptions, B as idFromArn, Bn as buildStageMap, Br as resolveRuntimeFileExtension, Bt as resolveEcsAssumeRoleOption, C as addListSpecificOptions, Ci as resolveAgentCoreTarget, Cn as waitForAgentCorePing, Cr as tryParseStatus, Ct as parseLbPortOverrides, Di as tryResolveImageFnJoin, Dn as computeCodeImageTag, Dr as probeHostGatewaySupport, Dt as addStartServiceSpecificOptions, E as addStartAgentCoreSpecificOptions, Ei as substituteImagePlaceholders, En as buildAgentCoreCodeImage, Er as HOST_GATEWAY_MIN_VERSION, Et as resolveAlbFrontDoor, Fn as createWatchPredicates, Fr as buildDisconnectEvent, Ft as addImageOverrideOptions, G as classifyS3Error, Gn as filterRoutesByApiIdentifiers, Gt as enforceImageOverrideOrphans, H as createDeployedKvsDataSource, Hn as resolveEnvVars, Hr as EcsTaskResolutionError, Ht as runEcsServiceEmulator, I as normalizeKvsFileKeys, In as resolveApiTargetSubset, Ir as buildMessageEvent, It as buildEcsImageResolutionContext, J as startCloudFrontServer, Jn as startApiServer, Jt as resolveImageOverrides, K as createS3OriginReader, Kn as groupRoutesByServer, Kt as mergeForService, L as parseKvsFileOverrides, Ln as createAuthorizerCache, Lr as architectureToPlatform, Lt as ecsClusterOption, M as startAgentCoreWsBridge, Mi as resolveProfileCredentials, Mr as handleConnectionsRequest, Mt as MAX_TASKS_SUBNET_RANGE_CAP, N as LocalStartCloudFrontError, Nn as addStartApiSpecificOptions, Nr as parseConnectionsPath, Nt as addCommonEcsServiceOptions, O as buildAgentCoreServeAuthCheck, Oi as LocalInvokeBuildError, On as renderCodeDockerfile, Or as resolveHostGatewayExtraHosts, P as addStartCloudFrontSpecificOptions, Pr as buildConnectEvent, Pt as addEcsAssumeRoleOptions, Q as applyEdgeRequestResult, Qn as buildCognitoJwksUrl, Qt as listPinnedTargets, R as parseOriginOverrides, Rn as createFileWatcher, Rr as buildContainerImage, Rt as parseMaxTasks, S as StudioEventBus, Si as pickAgentCoreCandidateStack, Sn as waitForAgentCoreHttpReady, Sr as selectIntegrationResponse, Ti as formatStateRemedy, Tn as SUPPORTED_CODE_RUNTIMES, Tr as HOST_DOCKER_INTERNAL_GATEWAY, Tt as isApplicationLoadBalancer, U as resolveDeployedKvsArnByName, Un as availableApiIdentifiers, Ut as ImageOverrideError, V as resolveKvsModulesForDistribution, Vn as materializeLayerFromArn, Vr as resolveRuntimeImage, Vt as resolveSharedSidecarCredentials, W as resolveDeployedOriginBucket, Wn as filterRoutesByApiIdentifier, Wt as buildImageOverrideTag, X as serveFromStaticOrigin, Xn as resolveServiceIntegrationParameters, Xt as describePinnedImageUri, Y as resolveErrorResponseCandidates, Yn as resolveSelectionExpression, Yt as runImageOverrideBuilds, Z as serveLambdaUrlOrigin, Zn as defaultCredentialsLoader, Zt as isLocalCdkAssetImage, _ as filterStudioTargetGroups, _i as AGENTCORE_AGUI_PROTOCOL, _n as parseSseForJsonRpc, _r as applyAuthorizerOverlay, _t as createCloudFrontModule, an as attachContainerLogStreamer, ar as computeRequestIdentityHash, at as describeS3OriginDomain, b as renderStudioHtml, bi as AGENTCORE_RUNTIME_TYPE, bn as AGENTCORE_SESSION_ID_HEADER, br as evaluateResponseParameters, bt as addAlbSpecificOptions, c as startStudioProxy, ci as discoverWebSocketApis, cn as bridgeAgentCoreWs, cr as invokeTokenAuthorizer, ct as pickFunctionUrlLogicalIdFromOrigin, d as createStudioDispatcher, di as parseSelectionExpressionPath, dn as A2A_PATH, dr as buildCorsConfigByApiId, dt as pickTargetFunctionLogicalId, en as CloudMapRegistry, er as createJwksCache, et as buildEdgeRequestEvent, f as filterStudioCustomResources, fi as webSocketApiMatchesIdentifier, fn as a2aInvokeOnce, fr as buildCorsConfigFromCloudFrontChain, ft as resolveCloudFrontDistribution, g as annotatePinnedEcsTargets, gi as AGENTCORE_A2A_PROTOCOL, gn as mcpInvokeOnce, gr as translateLambdaResponse, gt as stripCloudFrontImport, h as annotateEcsTaskPinnedTargets, hi as resolveLambdaArnIntrinsic, hn as MCP_PROTOCOL_VERSION, hr as matchRoute, ht as runViewerResponse, i as coerceStopRequest, ii as resolveSingleTarget, in as getContainerNetworkIp, ir as buildMethodArn, it as CLOUDFRONT_DISTRIBUTION_TYPE, j as attachAgentCoreWsBridge, ji as buildStsClientConfig, jn as addInvokeSpecificOptions, jr as buildMgmtEndpointEnvUrl, k as selectServeInboundAuth, ki as describeAwsFailureForWarn, kn as toCmdArgv, kr as bufferToBody, kt as serviceStrategy, l as relayServeRequest, li as discoverWebSocketApisOrThrow, ln as invokeAgentCoreWs, lr as attachAuthorizers, lt as pickKvsLogicalIdFromArn, m as annotateAlbPinnedBackingServices, mi as pickRefLogicalId, mn as MCP_PATH, mr as matchPreflight, mt as runViewerRequest, n as coerceRunRequest, nn as SOFT_RELOAD_COMPLETION_LOG_SUFFIX, nr as verifyJwtAuthorizer, nt as edgeHeadersToHttp, o as resolveServeBaseUrl, on as addInvokeAgentCoreSpecificOptions, or as evaluateCachedLambdaPolicy, ot as extractKvsAssociations, p as isCustomResourceLambdaTarget, pi as discoverRoutes, pn as MCP_CONTAINER_PORT, pr as isFunctionUrlOacFronted, pt as compileCloudFrontFunction, q as matchBehavior, qn as readMtlsMaterialsFromDisk, qt as parseImageOverrideFlags, r as coerceServeRequest, ri as resolveWatchConfig, rn as setShadowReadyTimeoutMs, rr as verifyJwtViaDiscovery, rt as httpHeadersToEdge, s as createStudioServeManager, si as availableWebSocketApiIdentifiers, sr as invokeRequestAuthorizer, st as isCloudFrontDistribution, t as addStudioSpecificOptions, tn as DEFAULT_SHADOW_READY_TIMEOUT_MS, tr as verifyCognitoJwt, tt as buildEdgeResponseEvent, u as reinvoke, ui as filterWebSocketApisByIdentifiers, un as A2A_CONTAINER_PORT, ur as applyCorsResponseHeaders, ut as pickLambdaEdgeFunctionLogicalId, v as startStudioServer, vi as AGENTCORE_HTTP_PROTOCOL, vn as AGENTCORE_SIGV4_SERVICE, vr as buildHttpApiV2Event, vt as createLocalFileKvsDataSource, wi as derivePseudoParametersFromRegion, wn as downloadAndExtractS3Bundle, wr as VtlEvaluationError, wt as resolveAlbTarget, x as createStudioStore, xi as AgentCoreResolutionError, xn as invokeAgentCore, xr as pickResponseTemplate, xt as albStrategy, y as toStudioTargetGroups, yi as AGENTCORE_MCP_PROTOCOL, yn as signAgentCoreInvocation, yr as buildRestV1Event, yt as createUnboundCloudFrontModule, z as resolveCloudFrontTarget, zn as attachStageContext, zr as resolveRuntimeCodeMountPath, zt as parseRestartPolicy } from "./local-studio-J8BtocsI.js";
1
+ import { $ as applyEdgeResponseResult, $n as buildJwksUrlFromIssuer, $t as buildCloudMapIndex, A as startAgentCoreHttpServer, Ai as describeCredentialLoadFailure, An as classifySourceChange, Ar as ConnectionRegistry, At as addRunTaskSpecificOptions, B as idFromArn, Bn as buildStageMap, Br as resolveRuntimeFileExtension, Bt as resolveEcsAssumeRoleOption, C as addListSpecificOptions, Ci as resolveAgentCoreTarget, Cn as waitForAgentCorePing, Cr as tryParseStatus, Ct as parseLbPortOverrides, Di as tryResolveImageFnJoin, Dn as computeCodeImageTag, Dr as probeHostGatewaySupport, Dt as addStartServiceSpecificOptions, E as addStartAgentCoreSpecificOptions, Ei as substituteImagePlaceholders, En as buildAgentCoreCodeImage, Er as HOST_GATEWAY_MIN_VERSION, Et as resolveAlbFrontDoor, Fn as createWatchPredicates, Fr as buildDisconnectEvent, Ft as addImageOverrideOptions, G as classifyS3Error, Gn as filterRoutesByApiIdentifiers, Gt as enforceImageOverrideOrphans, H as createDeployedKvsDataSource, Hn as resolveEnvVars, Hr as EcsTaskResolutionError, Ht as runEcsServiceEmulator, I as normalizeKvsFileKeys, In as resolveApiTargetSubset, Ir as buildMessageEvent, It as buildEcsImageResolutionContext, J as startCloudFrontServer, Jn as startApiServer, Jt as resolveImageOverrides, K as createS3OriginReader, Kn as groupRoutesByServer, Kt as mergeForService, L as parseKvsFileOverrides, Ln as createAuthorizerCache, Lr as architectureToPlatform, Lt as ecsClusterOption, M as startAgentCoreWsBridge, Mi as resolveProfileCredentials, Mr as handleConnectionsRequest, Mt as MAX_TASKS_SUBNET_RANGE_CAP, N as LocalStartCloudFrontError, Ni as buildProxyClientConfig, Nn as addStartApiSpecificOptions, Nr as parseConnectionsPath, Nt as addCommonEcsServiceOptions, O as buildAgentCoreServeAuthCheck, Oi as LocalInvokeBuildError, On as renderCodeDockerfile, Or as resolveHostGatewayExtraHosts, P as addStartCloudFrontSpecificOptions, Pi as isProxyEnvConfigured, Pr as buildConnectEvent, Pt as addEcsAssumeRoleOptions, Q as applyEdgeRequestResult, Qn as buildCognitoJwksUrl, Qt as listPinnedTargets, R as parseOriginOverrides, Rn as createFileWatcher, Rr as buildContainerImage, Rt as parseMaxTasks, S as StudioEventBus, Si as pickAgentCoreCandidateStack, Sn as waitForAgentCoreHttpReady, Sr as selectIntegrationResponse, Ti as formatStateRemedy, Tn as SUPPORTED_CODE_RUNTIMES, Tr as HOST_DOCKER_INTERNAL_GATEWAY, Tt as isApplicationLoadBalancer, U as resolveDeployedKvsArnByName, Un as availableApiIdentifiers, Ut as ImageOverrideError, V as resolveKvsModulesForDistribution, Vn as materializeLayerFromArn, Vr as resolveRuntimeImage, Vt as resolveSharedSidecarCredentials, W as resolveDeployedOriginBucket, Wn as filterRoutesByApiIdentifier, Wt as buildImageOverrideTag, X as serveFromStaticOrigin, Xn as resolveServiceIntegrationParameters, Xt as describePinnedImageUri, Y as resolveErrorResponseCandidates, Yn as resolveSelectionExpression, Yt as runImageOverrideBuilds, Z as serveLambdaUrlOrigin, Zn as defaultCredentialsLoader, Zt as isLocalCdkAssetImage, _ as filterStudioTargetGroups, _i as AGENTCORE_AGUI_PROTOCOL, _n as parseSseForJsonRpc, _r as applyAuthorizerOverlay, _t as createCloudFrontModule, an as attachContainerLogStreamer, ar as computeRequestIdentityHash, at as describeS3OriginDomain, b as renderStudioHtml, bi as AGENTCORE_RUNTIME_TYPE, bn as AGENTCORE_SESSION_ID_HEADER, br as evaluateResponseParameters, bt as addAlbSpecificOptions, c as startStudioProxy, ci as discoverWebSocketApis, cn as bridgeAgentCoreWs, cr as invokeTokenAuthorizer, ct as pickFunctionUrlLogicalIdFromOrigin, d as createStudioDispatcher, di as parseSelectionExpressionPath, dn as A2A_PATH, dr as buildCorsConfigByApiId, dt as pickTargetFunctionLogicalId, en as CloudMapRegistry, er as createJwksCache, et as buildEdgeRequestEvent, f as filterStudioCustomResources, fi as webSocketApiMatchesIdentifier, fn as a2aInvokeOnce, fr as buildCorsConfigFromCloudFrontChain, ft as resolveCloudFrontDistribution, g as annotatePinnedEcsTargets, gi as AGENTCORE_A2A_PROTOCOL, gn as mcpInvokeOnce, gr as translateLambdaResponse, gt as stripCloudFrontImport, h as annotateEcsTaskPinnedTargets, hi as resolveLambdaArnIntrinsic, hn as MCP_PROTOCOL_VERSION, hr as matchRoute, ht as runViewerResponse, i as coerceStopRequest, ii as resolveSingleTarget, in as getContainerNetworkIp, ir as buildMethodArn, it as CLOUDFRONT_DISTRIBUTION_TYPE, j as attachAgentCoreWsBridge, ji as buildStsClientConfig, jn as addInvokeSpecificOptions, jr as buildMgmtEndpointEnvUrl, k as selectServeInboundAuth, ki as describeAwsFailureForWarn, kn as toCmdArgv, kr as bufferToBody, kt as serviceStrategy, l as relayServeRequest, li as discoverWebSocketApisOrThrow, ln as invokeAgentCoreWs, lr as attachAuthorizers, lt as pickKvsLogicalIdFromArn, m as annotateAlbPinnedBackingServices, mi as pickRefLogicalId, mn as MCP_PATH, mr as matchPreflight, mt as runViewerRequest, n as coerceRunRequest, nn as SOFT_RELOAD_COMPLETION_LOG_SUFFIX, nr as verifyJwtAuthorizer, nt as edgeHeadersToHttp, o as resolveServeBaseUrl, on as addInvokeAgentCoreSpecificOptions, or as evaluateCachedLambdaPolicy, ot as extractKvsAssociations, p as isCustomResourceLambdaTarget, pi as discoverRoutes, pn as MCP_CONTAINER_PORT, pr as isFunctionUrlOacFronted, pt as compileCloudFrontFunction, q as matchBehavior, qn as readMtlsMaterialsFromDisk, qt as parseImageOverrideFlags, r as coerceServeRequest, ri as resolveWatchConfig, rn as setShadowReadyTimeoutMs, rr as verifyJwtViaDiscovery, rt as httpHeadersToEdge, s as createStudioServeManager, si as availableWebSocketApiIdentifiers, sr as invokeRequestAuthorizer, st as isCloudFrontDistribution, t as addStudioSpecificOptions, tn as DEFAULT_SHADOW_READY_TIMEOUT_MS, tr as verifyCognitoJwt, tt as buildEdgeResponseEvent, u as reinvoke, ui as filterWebSocketApisByIdentifiers, un as A2A_CONTAINER_PORT, ur as applyCorsResponseHeaders, ut as pickLambdaEdgeFunctionLogicalId, v as startStudioServer, vi as AGENTCORE_HTTP_PROTOCOL, vn as AGENTCORE_SIGV4_SERVICE, vr as buildHttpApiV2Event, vt as createLocalFileKvsDataSource, wi as derivePseudoParametersFromRegion, wn as downloadAndExtractS3Bundle, wr as VtlEvaluationError, wt as resolveAlbTarget, x as createStudioStore, xi as AgentCoreResolutionError, xn as invokeAgentCore, xr as pickResponseTemplate, xt as albStrategy, y as toStudioTargetGroups, yi as AGENTCORE_MCP_PROTOCOL, yn as signAgentCoreInvocation, yr as buildRestV1Event, yt as createUnboundCloudFrontModule, z as resolveCloudFrontTarget, zn as attachStageContext, zr as resolveRuntimeCodeMountPath, zt as parseRestartPolicy } from "./local-studio-DoyRYZf6.js";
2
2
 
3
- export { A2A_CONTAINER_PORT, A2A_PATH, AGENTCORE_A2A_PROTOCOL, AGENTCORE_AGUI_PROTOCOL, AGENTCORE_HTTP_PROTOCOL, AGENTCORE_MCP_PROTOCOL, AGENTCORE_RUNTIME_TYPE, AGENTCORE_SESSION_ID_HEADER, AGENTCORE_SIGV4_SERVICE, AgentCoreResolutionError, CLOUDFRONT_DISTRIBUTION_TYPE, CloudMapRegistry, ConnectionRegistry, DEFAULT_SHADOW_READY_TIMEOUT_MS, EcsTaskResolutionError, HOST_DOCKER_INTERNAL_GATEWAY, HOST_GATEWAY_MIN_VERSION, ImageOverrideError, LocalInvokeBuildError, LocalStartCloudFrontError, MAX_TASKS_SUBNET_RANGE_CAP, MCP_CONTAINER_PORT, MCP_PATH, MCP_PROTOCOL_VERSION, SOFT_RELOAD_COMPLETION_LOG_SUFFIX, SUPPORTED_CODE_RUNTIMES, StudioEventBus, VtlEvaluationError, a2aInvokeOnce, addAlbSpecificOptions, addCommonEcsServiceOptions, addEcsAssumeRoleOptions, addImageOverrideOptions, addInvokeAgentCoreSpecificOptions, addInvokeSpecificOptions, addListSpecificOptions, addRunTaskSpecificOptions, addStartAgentCoreSpecificOptions, addStartApiSpecificOptions, addStartCloudFrontSpecificOptions, addStartServiceSpecificOptions, addStudioSpecificOptions, albStrategy, annotateAlbPinnedBackingServices, annotateEcsTaskPinnedTargets, annotatePinnedEcsTargets, applyAuthorizerOverlay, applyCorsResponseHeaders, applyEdgeRequestResult, applyEdgeResponseResult, architectureToPlatform, attachAgentCoreWsBridge, attachAuthorizers, attachContainerLogStreamer, attachStageContext, availableApiIdentifiers, availableWebSocketApiIdentifiers, bridgeAgentCoreWs, bufferToBody, buildAgentCoreCodeImage, buildAgentCoreServeAuthCheck, buildCloudMapIndex, buildCognitoJwksUrl, buildConnectEvent, buildContainerImage, buildCorsConfigByApiId, buildCorsConfigFromCloudFrontChain, buildDisconnectEvent, buildEcsImageResolutionContext, buildEdgeRequestEvent, buildEdgeResponseEvent, buildHttpApiV2Event, buildImageOverrideTag, buildJwksUrlFromIssuer, buildMessageEvent, buildMethodArn, buildMgmtEndpointEnvUrl, buildRestV1Event, buildStageMap, buildStsClientConfig, classifyS3Error, classifySourceChange, coerceRunRequest, coerceServeRequest, coerceStopRequest, compileCloudFrontFunction, computeCodeImageTag, computeRequestIdentityHash, createAuthorizerCache, createCloudFrontModule, createDeployedKvsDataSource, createFileWatcher, createJwksCache, createLocalFileKvsDataSource, createS3OriginReader, createStudioDispatcher, createStudioServeManager, createStudioStore, createUnboundCloudFrontModule, createWatchPredicates, defaultCredentialsLoader, derivePseudoParametersFromRegion, describeAwsFailureForWarn, describeCredentialLoadFailure, describePinnedImageUri, describeS3OriginDomain, discoverRoutes, discoverWebSocketApis, discoverWebSocketApisOrThrow, downloadAndExtractS3Bundle, ecsClusterOption, edgeHeadersToHttp, enforceImageOverrideOrphans, evaluateCachedLambdaPolicy, evaluateResponseParameters, extractKvsAssociations, filterRoutesByApiIdentifier, filterRoutesByApiIdentifiers, filterStudioCustomResources, filterStudioTargetGroups, filterWebSocketApisByIdentifiers, formatStateRemedy, getContainerNetworkIp, groupRoutesByServer, handleConnectionsRequest, httpHeadersToEdge, idFromArn, invokeAgentCore, invokeAgentCoreWs, invokeRequestAuthorizer, invokeTokenAuthorizer, isApplicationLoadBalancer, isCloudFrontDistribution, isCustomResourceLambdaTarget, isFunctionUrlOacFronted, isLocalCdkAssetImage, listPinnedTargets, matchBehavior, matchPreflight, matchRoute, materializeLayerFromArn, mcpInvokeOnce, mergeForService, normalizeKvsFileKeys, parseConnectionsPath, parseImageOverrideFlags, parseKvsFileOverrides, parseLbPortOverrides, parseMaxTasks, parseOriginOverrides, parseRestartPolicy, parseSelectionExpressionPath, parseSseForJsonRpc, pickAgentCoreCandidateStack, pickFunctionUrlLogicalIdFromOrigin, pickKvsLogicalIdFromArn, pickLambdaEdgeFunctionLogicalId, pickRefLogicalId, pickResponseTemplate, pickTargetFunctionLogicalId, probeHostGatewaySupport, readMtlsMaterialsFromDisk, reinvoke, relayServeRequest, renderCodeDockerfile, renderStudioHtml, resolveAgentCoreTarget, resolveAlbFrontDoor, resolveAlbTarget, resolveApiTargetSubset, resolveCloudFrontDistribution, resolveCloudFrontTarget, resolveDeployedKvsArnByName, resolveDeployedOriginBucket, resolveEcsAssumeRoleOption, resolveEnvVars, resolveErrorResponseCandidates, resolveHostGatewayExtraHosts, resolveImageOverrides, resolveKvsModulesForDistribution, resolveLambdaArnIntrinsic, resolveProfileCredentials, resolveRuntimeCodeMountPath, resolveRuntimeFileExtension, resolveRuntimeImage, resolveSelectionExpression, resolveServeBaseUrl, resolveServiceIntegrationParameters, resolveSharedSidecarCredentials, resolveSingleTarget, resolveWatchConfig, runEcsServiceEmulator, runImageOverrideBuilds, runViewerRequest, runViewerResponse, selectIntegrationResponse, selectServeInboundAuth, serveFromStaticOrigin, serveLambdaUrlOrigin, serviceStrategy, setShadowReadyTimeoutMs, signAgentCoreInvocation, startAgentCoreHttpServer, startAgentCoreWsBridge, startApiServer, startCloudFrontServer, startStudioProxy, startStudioServer, stripCloudFrontImport, substituteImagePlaceholders, toCmdArgv, toStudioTargetGroups, translateLambdaResponse, tryParseStatus, tryResolveImageFnJoin, verifyCognitoJwt, verifyJwtAuthorizer, verifyJwtViaDiscovery, waitForAgentCoreHttpReady, waitForAgentCorePing, webSocketApiMatchesIdentifier };
3
+ export { A2A_CONTAINER_PORT, A2A_PATH, AGENTCORE_A2A_PROTOCOL, AGENTCORE_AGUI_PROTOCOL, AGENTCORE_HTTP_PROTOCOL, AGENTCORE_MCP_PROTOCOL, AGENTCORE_RUNTIME_TYPE, AGENTCORE_SESSION_ID_HEADER, AGENTCORE_SIGV4_SERVICE, AgentCoreResolutionError, CLOUDFRONT_DISTRIBUTION_TYPE, CloudMapRegistry, ConnectionRegistry, DEFAULT_SHADOW_READY_TIMEOUT_MS, EcsTaskResolutionError, HOST_DOCKER_INTERNAL_GATEWAY, HOST_GATEWAY_MIN_VERSION, ImageOverrideError, LocalInvokeBuildError, LocalStartCloudFrontError, MAX_TASKS_SUBNET_RANGE_CAP, MCP_CONTAINER_PORT, MCP_PATH, MCP_PROTOCOL_VERSION, SOFT_RELOAD_COMPLETION_LOG_SUFFIX, SUPPORTED_CODE_RUNTIMES, StudioEventBus, VtlEvaluationError, a2aInvokeOnce, addAlbSpecificOptions, addCommonEcsServiceOptions, addEcsAssumeRoleOptions, addImageOverrideOptions, addInvokeAgentCoreSpecificOptions, addInvokeSpecificOptions, addListSpecificOptions, addRunTaskSpecificOptions, addStartAgentCoreSpecificOptions, addStartApiSpecificOptions, addStartCloudFrontSpecificOptions, addStartServiceSpecificOptions, addStudioSpecificOptions, albStrategy, annotateAlbPinnedBackingServices, annotateEcsTaskPinnedTargets, annotatePinnedEcsTargets, applyAuthorizerOverlay, applyCorsResponseHeaders, applyEdgeRequestResult, applyEdgeResponseResult, architectureToPlatform, attachAgentCoreWsBridge, attachAuthorizers, attachContainerLogStreamer, attachStageContext, availableApiIdentifiers, availableWebSocketApiIdentifiers, bridgeAgentCoreWs, bufferToBody, buildAgentCoreCodeImage, buildAgentCoreServeAuthCheck, buildCloudMapIndex, buildCognitoJwksUrl, buildConnectEvent, buildContainerImage, buildCorsConfigByApiId, buildCorsConfigFromCloudFrontChain, buildDisconnectEvent, buildEcsImageResolutionContext, buildEdgeRequestEvent, buildEdgeResponseEvent, buildHttpApiV2Event, buildImageOverrideTag, buildJwksUrlFromIssuer, buildMessageEvent, buildMethodArn, buildMgmtEndpointEnvUrl, buildProxyClientConfig, buildRestV1Event, buildStageMap, buildStsClientConfig, classifyS3Error, classifySourceChange, coerceRunRequest, coerceServeRequest, coerceStopRequest, compileCloudFrontFunction, computeCodeImageTag, computeRequestIdentityHash, createAuthorizerCache, createCloudFrontModule, createDeployedKvsDataSource, createFileWatcher, createJwksCache, createLocalFileKvsDataSource, createS3OriginReader, createStudioDispatcher, createStudioServeManager, createStudioStore, createUnboundCloudFrontModule, createWatchPredicates, defaultCredentialsLoader, derivePseudoParametersFromRegion, describeAwsFailureForWarn, describeCredentialLoadFailure, describePinnedImageUri, describeS3OriginDomain, discoverRoutes, discoverWebSocketApis, discoverWebSocketApisOrThrow, downloadAndExtractS3Bundle, ecsClusterOption, edgeHeadersToHttp, enforceImageOverrideOrphans, evaluateCachedLambdaPolicy, evaluateResponseParameters, extractKvsAssociations, filterRoutesByApiIdentifier, filterRoutesByApiIdentifiers, filterStudioCustomResources, filterStudioTargetGroups, filterWebSocketApisByIdentifiers, formatStateRemedy, getContainerNetworkIp, groupRoutesByServer, handleConnectionsRequest, httpHeadersToEdge, idFromArn, invokeAgentCore, invokeAgentCoreWs, invokeRequestAuthorizer, invokeTokenAuthorizer, isApplicationLoadBalancer, isCloudFrontDistribution, isCustomResourceLambdaTarget, isFunctionUrlOacFronted, isLocalCdkAssetImage, isProxyEnvConfigured, listPinnedTargets, matchBehavior, matchPreflight, matchRoute, materializeLayerFromArn, mcpInvokeOnce, mergeForService, normalizeKvsFileKeys, parseConnectionsPath, parseImageOverrideFlags, parseKvsFileOverrides, parseLbPortOverrides, parseMaxTasks, parseOriginOverrides, parseRestartPolicy, parseSelectionExpressionPath, parseSseForJsonRpc, pickAgentCoreCandidateStack, pickFunctionUrlLogicalIdFromOrigin, pickKvsLogicalIdFromArn, pickLambdaEdgeFunctionLogicalId, pickRefLogicalId, pickResponseTemplate, pickTargetFunctionLogicalId, probeHostGatewaySupport, readMtlsMaterialsFromDisk, reinvoke, relayServeRequest, renderCodeDockerfile, renderStudioHtml, resolveAgentCoreTarget, resolveAlbFrontDoor, resolveAlbTarget, resolveApiTargetSubset, resolveCloudFrontDistribution, resolveCloudFrontTarget, resolveDeployedKvsArnByName, resolveDeployedOriginBucket, resolveEcsAssumeRoleOption, resolveEnvVars, resolveErrorResponseCandidates, resolveHostGatewayExtraHosts, resolveImageOverrides, resolveKvsModulesForDistribution, resolveLambdaArnIntrinsic, resolveProfileCredentials, resolveRuntimeCodeMountPath, resolveRuntimeFileExtension, resolveRuntimeImage, resolveSelectionExpression, resolveServeBaseUrl, resolveServiceIntegrationParameters, resolveSharedSidecarCredentials, resolveSingleTarget, resolveWatchConfig, runEcsServiceEmulator, runImageOverrideBuilds, runViewerRequest, runViewerResponse, selectIntegrationResponse, selectServeInboundAuth, serveFromStaticOrigin, serveLambdaUrlOrigin, serviceStrategy, setShadowReadyTimeoutMs, signAgentCoreInvocation, startAgentCoreHttpServer, startAgentCoreWsBridge, startApiServer, startCloudFrontServer, startStudioProxy, startStudioServer, stripCloudFrontImport, substituteImagePlaceholders, toCmdArgv, toStudioTargetGroups, translateLambdaResponse, tryParseStatus, tryResolveImageFnJoin, verifyCognitoJwt, verifyJwtAuthorizer, verifyJwtViaDiscovery, waitForAgentCoreHttpReady, waitForAgentCorePing, webSocketApiMatchesIdentifier };
@@ -1,8 +1,12 @@
1
1
  import { Command, Option } from "commander";
2
+ import { Agent } from "node:http";
3
+ import { NodeHttpHandler } from "@smithy/node-http-handler";
4
+ import { Agent as Agent$1 } from "agent-base";
2
5
  import { SSMClient } from "@aws-sdk/client-ssm";
3
6
  import { spawn } from "node:child_process";
4
7
  import { WebSocket } from "ws";
5
8
  import graphlib from "graphlib";
9
+ import { AwsCredentialIdentityProvider } from "@smithy/types";
6
10
  //#region src/types/resource.d.ts
7
11
  interface CloudFormationTemplate {
8
12
  AWSTemplateFormatVersion?: string;
@@ -318,6 +322,31 @@ interface CreateLocalInvokeAgentCoreCommandOptions {
318
322
  declare function createLocalInvokeAgentCoreCommand(opts?: CreateLocalInvokeAgentCoreCommandOptions): Command;
319
323
  declare function addInvokeAgentCoreSpecificOptions(cmd: Command): Command;
320
324
  //#endregion
325
+ //#region src/utils/aws-proxy.d.ts
326
+ declare function isProxyEnvConfigured(): boolean;
327
+ interface AwsProxyClientConfig {
328
+ requestHandler?: NodeHttpHandler;
329
+ credentials?: AwsCredentialIdentityProvider;
330
+ }
331
+ declare function buildProxyClientConfig(opts?: {
332
+ profile?: string | undefined;
333
+ }): AwsProxyClientConfig;
334
+ //#endregion
335
+ //#region src/utils/profile-resolver.d.ts
336
+ declare function resolveProfileCredentials(profile: string): Promise<{
337
+ accessKeyId: string;
338
+ secretAccessKey: string;
339
+ sessionToken?: string;
340
+ region?: string;
341
+ }>;
342
+ declare function buildStsClientConfig(args: {
343
+ region?: string | undefined;
344
+ profile?: string | undefined;
345
+ }): {
346
+ region?: string;
347
+ profile?: string;
348
+ } & AwsProxyClientConfig;
349
+ //#endregion
321
350
  //#region src/cli/config-loader.d.ts
322
351
  interface CdkWatchConfig {
323
352
  include: string[];
@@ -1126,5 +1155,5 @@ interface CreateLocalStudioCommandOptions {
1126
1155
  declare function createLocalStudioCommand(opts?: CreateLocalStudioCommandOptions): Command;
1127
1156
  declare function addStudioSpecificOptions(cmd: Command): Command;
1128
1157
  //#endregion
1129
- export { serviceStrategy as $, LocalStateRecord as $n, RouteWithAuth as $t, addListSpecificOptions as A, formatStateRemedy as An, TargetEntry as At, normalizeKvsFileKeys as B, resetEmbedConfig as Bn, ResolvedEcsTask as Bt, StudioEventBus as C, AgentCoreWsResult as Cn, FrontDoorForwardTarget as Ct, StudioTargetKind as D, invokeAgentCoreWs as Dn, DEFAULT_SHADOW_READY_TIMEOUT_MS as Dt, StudioServeEvent as E, bridgeAgentCoreWs as En, resolveAlbFrontDoor as Et, createLocalStartAgentCoreCommand as F, createLocalInvokeCommand as Fn, LocalInvokeBuildError as Ft, addAlbSpecificOptions as G, LocalStateSourceOptions as Gn, createLocalStartApiCommand as Gt, parseOriginOverrides as H, ExtraStateProviders as Hn, CreateLocalStartApiCommandOptions as Ht, CreateLocalStartCloudFrontCommandOptions as I, ResolvedArnLambdaLayer as In, CreateLocalRunTaskCommandOptions as It, parseLbPortOverrides as J, rejectExplicitCfnStackWithMultipleStacks as Jn, AuthorizerInfo as Jt, albStrategy as K, createLocalStateProvider as Kn, createWatchPredicates as Kt, LocalStartCloudFrontError as L, StackInfo as Ln, addRunTaskSpecificOptions as Lt, formatTargetListing as M, tryResolveImageFnJoin as Mn, countTargets as Mt, CreateLocalStartAgentCoreCommandOptions as N, CreateLocalInvokeCommandOptions as Nn, listTargets as Nt, CreateLocalListCommandOptions as O, ImageResolutionContext as On, SOFT_RELOAD_COMPLETION_LOG_SUFFIX as Ot, addStartAgentCoreSpecificOptions as P, addInvokeSpecificOptions as Pn, CdkLocalError as Pt, createLocalStartServiceCommand as Q, LocalStateProvider as Qn, LambdaTokenAuthorizer as Qt, addStartCloudFrontSpecificOptions as R, CdkLocalEmbedConfig as Rn, createLocalRunTaskCommand as Rt, createStudioDispatcher as S, AgentCoreWsBridgeHandle as Sn, runEcsServiceEmulator as St, StudioLogEvent as T, InvokeAgentCoreWsOptions as Tn, isApplicationLoadBalancer as Tt, resolveCloudFrontTarget as U, LocalStateProviderFactory as Un, WatchPredicates as Ut, parseKvsFileOverrides as V, setEmbedConfig as Vn, ApiTargetSubset as Vt, CreateLocalStartAlbCommandOptions as W, LocalStateSourceError as Wn, addStartApiSpecificOptions as Wt, CreateLocalStartServiceCommandOptions as X, resolveCfnRegion as Xn, JwtAuthorizer as Xt, resolveAlbTarget as Y, resolveCfnFallbackRegion as Yn, CognitoUserPoolAuthorizer as Yt, addStartServiceSpecificOptions as Z, resolveCfnStackName as Zn, LambdaRequestAuthorizer as Zt, startStudioProxy as _, CdkWatchConfig as _n, ecsClusterOption as _t, coerceServeRequest as a, discoverWebSocketApisOrThrow as an, PseudoParameters as ar, PlannedEcsForwardTarget as at, StudioRunRequest as b, addInvokeAgentCoreSpecificOptions as bn, resolveEcsAssumeRoleOption as bt, resolveServeBaseUrl as c, webSocketApiMatchesIdentifier as cn, substituteAgainstState as cr, PlannedForwardTarget as ct, StudioServeRequest as d, discoverRoutes as dn, substituteEnvVarsFromStateAsync as dr, PlannedRedirectAction as dt, attachAuthorizers as en, ResolvedSsmParameters as er, EcsServiceEmulatorOptions as et, StudioServeState as f, IntegrationResponseEntry as fn, CloudFormationTemplate as fr, ServiceBoot as ft, StudioProxyConfig as g, tryParseStatus as gn, buildEcsImageResolutionContext as gt, RunningStudioProxy as h, selectIntegrationResponse as hn, addImageOverrideOptions as ht, coerceRunRequest as i, discoverWebSocketApis as in, CrossStackResolver as ir, PlannedAction as it, createLocalListCommand as j, substituteImagePlaceholders as jn, TargetListing as jt, FormatTargetListingOptions as k, derivePseudoParametersFromRegion as kn, setShadowReadyTimeoutMs as kt, StudioServeManager as l, DiscoveredRoute as ln, substituteAgainstStateAsync as lr, PlannedFrontDoorListener as lt, createStudioServeManager as m, pickResponseTemplate as mn, addEcsAssumeRoleOptions as mt, StudioServeRequestPayload as n, WebSocketRouteEntry as nn, collectSsmParameterRefs as nr, FrontDoorPlan as nt, coerceStopRequest as o, filterWebSocketApisByIdentifiers as on, StateEnvSubstitutionAudit as or, PlannedFixedResponseAction as ot, StudioStopRequest as p, evaluateResponseParameters as pn, TemplateResource as pr, addCommonEcsServiceOptions as pt, createLocalStartAlbCommand as q, isCfnFlagPresent as qn, resolveApiTargetSubset as qt, addStudioSpecificOptions as r, availableWebSocketApiIdentifiers as rn, resolveSsmParameters as rr, MAX_TASKS_SUBNET_RANGE_CAP as rt, createLocalStudioCommand as s, parseSelectionExpressionPath as sn, SubstitutionContext as sr, PlannedForwardAction as st, CreateLocalStudioCommandOptions as t, DiscoveredWebSocketApi as tn, SsmParameterRef as tr, EmulatorStrategy as tt, StudioServeManagerConfig as u, RestV1IntegrationConfig as un, substituteEnvVarsFromState as ur, PlannedLambdaForwardTarget as ut, StudioDispatchConfig as v, resolveWatchConfig as vn, parseMaxTasks as vt, StudioInvocationEvent as w, BridgeAgentCoreWsOptions as wn, ResolvedListenerAction as wt, StudioRunResult as x, createLocalInvokeAgentCoreCommand as xn, resolveSharedSidecarCredentials as xt, StudioDispatcher as y, CreateLocalInvokeAgentCoreCommandOptions as yn, parseRestartPolicy as yt, createLocalStartCloudFrontCommand as z, getEmbedConfig as zn, EcsTaskResolutionError as zt };
1130
- //# sourceMappingURL=local-studio-BBA_8Xvk.d.ts.map
1158
+ export { serviceStrategy as $, rejectExplicitCfnStackWithMultipleStacks as $n, RouteWithAuth as $t, addListSpecificOptions as A, InvokeAgentCoreWsOptions as An, TargetEntry as At, normalizeKvsFileKeys as B, createLocalInvokeCommand as Bn, ResolvedEcsTask as Bt, StudioEventBus as C, isProxyEnvConfigured as Cn, FrontDoorForwardTarget as Ct, StudioTargetKind as D, AgentCoreWsBridgeHandle as Dn, DEFAULT_SHADOW_READY_TIMEOUT_MS as Dt, StudioServeEvent as E, createLocalInvokeAgentCoreCommand as En, resolveAlbFrontDoor as Et, createLocalStartAgentCoreCommand as F, formatStateRemedy as Fn, LocalInvokeBuildError as Ft, addAlbSpecificOptions as G, resetEmbedConfig as Gn, createLocalStartApiCommand as Gt, parseOriginOverrides as H, StackInfo as Hn, CreateLocalStartApiCommandOptions as Ht, CreateLocalStartCloudFrontCommandOptions as I, substituteImagePlaceholders as In, CreateLocalRunTaskCommandOptions as It, parseLbPortOverrides as J, LocalStateProviderFactory as Jn, AuthorizerInfo as Jt, albStrategy as K, setEmbedConfig as Kn, createWatchPredicates as Kt, LocalStartCloudFrontError as L, tryResolveImageFnJoin as Ln, addRunTaskSpecificOptions as Lt, formatTargetListing as M, invokeAgentCoreWs as Mn, countTargets as Mt, CreateLocalStartAgentCoreCommandOptions as N, ImageResolutionContext as Nn, listTargets as Nt, CreateLocalListCommandOptions as O, AgentCoreWsResult as On, SOFT_RELOAD_COMPLETION_LOG_SUFFIX as Ot, addStartAgentCoreSpecificOptions as P, derivePseudoParametersFromRegion as Pn, CdkLocalError as Pt, createLocalStartServiceCommand as Q, isCfnFlagPresent as Qn, LambdaTokenAuthorizer as Qt, addStartCloudFrontSpecificOptions as R, CreateLocalInvokeCommandOptions as Rn, createLocalRunTaskCommand as Rt, createStudioDispatcher as S, buildProxyClientConfig as Sn, runEcsServiceEmulator as St, StudioLogEvent as T, addInvokeAgentCoreSpecificOptions as Tn, isApplicationLoadBalancer as Tt, resolveCloudFrontTarget as U, CdkLocalEmbedConfig as Un, WatchPredicates as Ut, parseKvsFileOverrides as V, ResolvedArnLambdaLayer as Vn, ApiTargetSubset as Vt, CreateLocalStartAlbCommandOptions as W, getEmbedConfig as Wn, addStartApiSpecificOptions as Wt, CreateLocalStartServiceCommandOptions as X, LocalStateSourceOptions as Xn, JwtAuthorizer as Xt, resolveAlbTarget as Y, LocalStateSourceError as Yn, CognitoUserPoolAuthorizer as Yt, addStartServiceSpecificOptions as Z, createLocalStateProvider as Zn, LambdaRequestAuthorizer as Zt, startStudioProxy as _, CdkWatchConfig as _n, CloudFormationTemplate as _r, ecsClusterOption as _t, coerceServeRequest as a, discoverWebSocketApisOrThrow as an, ResolvedSsmParameters as ar, PlannedEcsForwardTarget as at, StudioRunRequest as b, resolveProfileCredentials as bn, resolveEcsAssumeRoleOption as bt, resolveServeBaseUrl as c, webSocketApiMatchesIdentifier as cn, resolveSsmParameters as cr, PlannedForwardTarget as ct, StudioServeRequest as d, discoverRoutes as dn, StateEnvSubstitutionAudit as dr, PlannedRedirectAction as dt, attachAuthorizers as en, resolveCfnFallbackRegion as er, EcsServiceEmulatorOptions as et, StudioServeState as f, IntegrationResponseEntry as fn, SubstitutionContext as fr, ServiceBoot as ft, StudioProxyConfig as g, tryParseStatus as gn, substituteEnvVarsFromStateAsync as gr, buildEcsImageResolutionContext as gt, RunningStudioProxy as h, selectIntegrationResponse as hn, substituteEnvVarsFromState as hr, addImageOverrideOptions as ht, coerceRunRequest as i, discoverWebSocketApis as in, LocalStateRecord as ir, PlannedAction as it, createLocalListCommand as j, bridgeAgentCoreWs as jn, TargetListing as jt, FormatTargetListingOptions as k, BridgeAgentCoreWsOptions as kn, setShadowReadyTimeoutMs as kt, StudioServeManager as l, DiscoveredRoute as ln, CrossStackResolver as lr, PlannedFrontDoorListener as lt, createStudioServeManager as m, pickResponseTemplate as mn, substituteAgainstStateAsync as mr, addEcsAssumeRoleOptions as mt, StudioServeRequestPayload as n, WebSocketRouteEntry as nn, resolveCfnStackName as nr, FrontDoorPlan as nt, coerceStopRequest as o, filterWebSocketApisByIdentifiers as on, SsmParameterRef as or, PlannedFixedResponseAction as ot, StudioStopRequest as p, evaluateResponseParameters as pn, substituteAgainstState as pr, addCommonEcsServiceOptions as pt, createLocalStartAlbCommand as q, ExtraStateProviders as qn, resolveApiTargetSubset as qt, addStudioSpecificOptions as r, availableWebSocketApiIdentifiers as rn, LocalStateProvider as rr, MAX_TASKS_SUBNET_RANGE_CAP as rt, createLocalStudioCommand as s, parseSelectionExpressionPath as sn, collectSsmParameterRefs as sr, PlannedForwardAction as st, CreateLocalStudioCommandOptions as t, DiscoveredWebSocketApi as tn, resolveCfnRegion as tr, EmulatorStrategy as tt, StudioServeManagerConfig as u, RestV1IntegrationConfig as un, PseudoParameters as ur, PlannedLambdaForwardTarget as ut, StudioDispatchConfig as v, resolveWatchConfig as vn, TemplateResource as vr, parseMaxTasks as vt, StudioInvocationEvent as w, CreateLocalInvokeAgentCoreCommandOptions as wn, ResolvedListenerAction as wt, StudioRunResult as x, AwsProxyClientConfig as xn, resolveSharedSidecarCredentials as xt, StudioDispatcher as y, buildStsClientConfig as yn, parseRestartPolicy as yt, createLocalStartCloudFrontCommand as z, addInvokeSpecificOptions as zn, EcsTaskResolutionError as zt };
1159
+ //# sourceMappingURL=local-studio-9bZLFQqv.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"local-studio-9bZLFQqv.d.ts","names":[],"sources":["../src/types/resource.ts","../src/types/state.ts","../src/local/state-resolver.ts","../src/local/ssm-parameter-resolver.ts","../src/local/local-state-provider.ts","../src/cli/commands/local-state-source.ts","../src/local/embed-config.ts","../src/synthesis/assembly-reader.ts","../src/local/lambda-resolver.ts","../src/cli/commands/local-invoke.ts","../src/local/intrinsic-image.ts","../src/local/agentcore-ws-client.ts","../src/cli/commands/local-invoke-agentcore.ts","../src/utils/aws-proxy.ts","../src/utils/profile-resolver.ts","../src/cli/config-loader.ts","../src/local/httpv2-service-integration.ts","../src/local/integration-response-selector.ts","../src/local/rest-v1-integrations.ts","../src/local/route-discovery.ts","../src/local/websocket-route-discovery.ts","../src/local/authorizer-resolver.ts","../src/cli/commands/local-start-api.ts","../src/local/ecs-task-resolver.ts","../src/cli/commands/local-run-task.ts","../src/utils/error-handler.ts","../src/local/target-lister.ts","../src/local/ecs-service-runner.ts","../src/local/alb-path-matcher.ts","../src/local/elb-front-door-resolver.ts","../src/cli/commands/ecs-service-emulator.ts","../src/cli/commands/local-start-service.ts","../src/cli/commands/local-start-alb.ts","../src/cli/commands/local-start-cloudfront.ts","../src/cli/commands/local-start-agentcore.ts","../src/cli/commands/local-list.ts","../src/local/studio-events.ts","../src/local/studio-child-args.ts","../src/local/studio-option-specs.ts","../src/local/studio-option-catalog.ts","../src/local/studio-dispatch.ts","../src/local/studio-proxy.ts","../src/local/studio-serve-manager.ts","../src/cli/commands/local-studio.ts"],"mappings":"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"}