cdk-local 0.143.2 → 0.144.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 +17 -0
- package/dist/cli.js +2 -2
- package/dist/index.js +1 -1
- package/dist/internal.d.ts +9 -1
- package/dist/internal.d.ts.map +1 -1
- package/dist/internal.js +2 -2
- package/dist/local-studio-C1YGBilh.d.ts.map +1 -1
- package/dist/{local-studio-Cjvh1qs4.js → local-studio-DYmbfvZB.js} +79 -9
- package/dist/local-studio-DYmbfvZB.js.map +1 -0
- package/package.json +1 -1
- package/dist/local-studio-Cjvh1qs4.js.map +0 -1
|
@@ -8881,6 +8881,41 @@ async function probeHostGatewaySupport() {
|
|
|
8881
8881
|
supported: parsed === null || compareDockerVersions(parsed, HOST_GATEWAY_MIN_VERSION) >= 0
|
|
8882
8882
|
};
|
|
8883
8883
|
}
|
|
8884
|
+
/**
|
|
8885
|
+
* The `host.docker.internal:host-gateway` extra-host mapping that lets a
|
|
8886
|
+
* container reach a server bound on the host loopback. Docker Desktop
|
|
8887
|
+
* (macOS / Windows) resolves `host.docker.internal` natively, but Linux
|
|
8888
|
+
* native dockerd needs this explicit `--add-host` (since Docker 20.10).
|
|
8889
|
+
*/
|
|
8890
|
+
const HOST_DOCKER_INTERNAL_GATEWAY = {
|
|
8891
|
+
host: "host.docker.internal",
|
|
8892
|
+
ip: "host-gateway"
|
|
8893
|
+
};
|
|
8894
|
+
let hostGatewayExtraHostsCache;
|
|
8895
|
+
/**
|
|
8896
|
+
* Resolve the `extraHosts` entries to inject so a launched container can
|
|
8897
|
+
* reach a server on the host via `host.docker.internal` — the
|
|
8898
|
+
* load-bearing primitive behind pointing a Lambda / ECS container at a
|
|
8899
|
+
* local endpoint (e.g. `AWS_ENDPOINT_URL_*` to a local server, or a
|
|
8900
|
+
* tunneled VPC resource).
|
|
8901
|
+
*
|
|
8902
|
+
* Returns `[{@link HOST_DOCKER_INTERNAL_GATEWAY}]` when the Docker daemon
|
|
8903
|
+
* supports the `host-gateway` alias (>= 20.10, or an unparseable
|
|
8904
|
+
* podman / finch version per {@link probeHostGatewaySupport}), else `[]`
|
|
8905
|
+
* — passing `--add-host ...:host-gateway` to a pre-20.10 daemon would
|
|
8906
|
+
* fail the `docker run`, so an old / unknown-failed daemon silently
|
|
8907
|
+
* degrades to "no mapping" (Docker Desktop still resolves the name
|
|
8908
|
+
* natively; Linux native dockerd loses host reachability, matching the
|
|
8909
|
+
* pre-fix behavior). A probe error (daemon down, binary missing)
|
|
8910
|
+
* resolves to `[]` rather than throwing — reachability is best-effort
|
|
8911
|
+
* convenience here, NOT a hard requirement like the start-api WebSocket
|
|
8912
|
+
* path. Memoized per process: the probe (`docker version`) fires at most
|
|
8913
|
+
* once regardless of how many containers / replicas are launched.
|
|
8914
|
+
*/
|
|
8915
|
+
async function resolveHostGatewayExtraHosts() {
|
|
8916
|
+
if (hostGatewayExtraHostsCache === void 0) hostGatewayExtraHostsCache = probeHostGatewaySupport().then((probe) => probe.supported ? [{ ...HOST_DOCKER_INTERNAL_GATEWAY }] : []).catch(() => []);
|
|
8917
|
+
return hostGatewayExtraHostsCache;
|
|
8918
|
+
}
|
|
8884
8919
|
|
|
8885
8920
|
//#endregion
|
|
8886
8921
|
//#region src/local/vtl-engine.ts
|
|
@@ -17501,12 +17536,14 @@ async function localInvokeCommand(target, options, extraStateProviders) {
|
|
|
17501
17536
|
containerPath: profileCredsFile.containerPath,
|
|
17502
17537
|
readOnly: true
|
|
17503
17538
|
}] : imagePlan.extraMounts;
|
|
17539
|
+
const hostGatewayExtraHosts = await resolveHostGatewayExtraHosts();
|
|
17504
17540
|
containerId = await runDetached({
|
|
17505
17541
|
image: imagePlan.image,
|
|
17506
17542
|
mounts: imagePlan.mounts,
|
|
17507
17543
|
extraMounts: extraMountsWithProfile,
|
|
17508
17544
|
env: dockerEnv,
|
|
17509
17545
|
...containerEnv.sensitiveEnvKeys.length > 0 && { sensitiveEnvKeys: new Set(containerEnv.sensitiveEnvKeys) },
|
|
17546
|
+
...hostGatewayExtraHosts.length > 0 && { extraHosts: hostGatewayExtraHosts },
|
|
17510
17547
|
cmd: imagePlan.cmd,
|
|
17511
17548
|
hostPort,
|
|
17512
17549
|
host: containerHost,
|
|
@@ -21118,6 +21155,19 @@ async function cleanupEcsRun(state, options) {
|
|
|
21118
21155
|
state.dockerVolumeNames = [];
|
|
21119
21156
|
}
|
|
21120
21157
|
/**
|
|
21158
|
+
* Merge the Cloud Map peer-discovery `--add-host` flag pairs
|
|
21159
|
+
* ({@link RunEcsTaskOptions.addHostFlags}) with the boot-resolved
|
|
21160
|
+
* `host.docker.internal` host-gateway mapping(s)
|
|
21161
|
+
* ({@link RunEcsTaskOptions.hostGatewayExtraHosts}) into one verbatim
|
|
21162
|
+
* `['--add-host', 'name:ip', ...]` list for `docker run`. The host-gateway
|
|
21163
|
+
* entry uses a distinct name, so its position relative to the peer entries
|
|
21164
|
+
* is irrelevant (docker's resolver matches by name). Pure — exported for
|
|
21165
|
+
* the site-level merge test.
|
|
21166
|
+
*/
|
|
21167
|
+
function mergeHostGatewayAddHostFlags(addHostFlags, hostGatewayExtraHosts) {
|
|
21168
|
+
return [...addHostFlags ?? [], ...(hostGatewayExtraHosts ?? []).flatMap((h) => ["--add-host", `${h.host}:${h.ip}`])];
|
|
21169
|
+
}
|
|
21170
|
+
/**
|
|
21121
21171
|
* Top-level entry point. Mutates `state` as it makes progress so the
|
|
21122
21172
|
* caller's `cleanup(state)` can roll back partial side effects on any
|
|
21123
21173
|
* thrown error.
|
|
@@ -21172,6 +21222,7 @@ async function runEcsTask(task, options, state) {
|
|
|
21172
21222
|
autoRemappedContainerPorts = new Set(remapKeys.map(Number));
|
|
21173
21223
|
}
|
|
21174
21224
|
}
|
|
21225
|
+
const mergedAddHostFlags = mergeHostGatewayAddHostFlags(options.addHostFlags, options.hostGatewayExtraHosts);
|
|
21175
21226
|
const dockerCmds = /* @__PURE__ */ new Map();
|
|
21176
21227
|
for (const container of task.containers) {
|
|
21177
21228
|
const image = imagePlan.get(container.name);
|
|
@@ -21193,7 +21244,7 @@ async function runEcsTask(task, options, state) {
|
|
|
21193
21244
|
...effectiveHostPortOverrides ? { hostPortOverrides: effectiveHostPortOverrides } : {},
|
|
21194
21245
|
...autoRemappedContainerPorts ? { autoRemappedContainerPorts } : {},
|
|
21195
21246
|
...options.ephemeralPublishContainerPorts && options.ephemeralPublishContainerPorts.length > 0 ? { ephemeralPublishContainerPorts: options.ephemeralPublishContainerPorts } : {},
|
|
21196
|
-
...
|
|
21247
|
+
...mergedAddHostFlags.length > 0 ? { addHostFlags: mergedAddHostFlags } : {},
|
|
21197
21248
|
...(options.networkAliasesByContainer?.get(container.name)?.length ?? 0) > 0 ? { networkAliases: options.networkAliasesByContainer.get(container.name) } : {},
|
|
21198
21249
|
...options.profileCredentialsFile && { profileCredentialsFile: options.profileCredentialsFile }
|
|
21199
21250
|
});
|
|
@@ -26477,6 +26528,8 @@ async function resolveServiceAndRunnerOpts(boot, stacks, options, discovery, ski
|
|
|
26477
26528
|
containerPath: profileCredsFile.containerPath,
|
|
26478
26529
|
profileName: profileCredsFile.profileName
|
|
26479
26530
|
};
|
|
26531
|
+
const hostGatewayExtraHosts = await resolveHostGatewayExtraHosts();
|
|
26532
|
+
if (hostGatewayExtraHosts.length > 0) taskOpts.hostGatewayExtraHosts = hostGatewayExtraHosts;
|
|
26480
26533
|
if (opts.imageOverrideTag !== void 0) {
|
|
26481
26534
|
const essential = service.task.containers.find((c) => c.essential) ?? service.task.containers[0];
|
|
26482
26535
|
if (essential) taskOpts.imageOverrideByContainer = new Map([[essential.name, opts.imageOverrideTag]]);
|
|
@@ -27361,6 +27414,8 @@ async function localRunTaskCommand(target, options, extraStateProviders) {
|
|
|
27361
27414
|
if (!options.detach) runOpts.onReady = () => {
|
|
27362
27415
|
logger.info(`Task running (family=${task.family}); streaming container logs. Stop with Ctrl-C.`);
|
|
27363
27416
|
};
|
|
27417
|
+
const hostGatewayExtraHosts = await resolveHostGatewayExtraHosts();
|
|
27418
|
+
if (hostGatewayExtraHosts.length > 0) runOpts.hostGatewayExtraHosts = hostGatewayExtraHosts;
|
|
27364
27419
|
const result = await runEcsTask(task, runOpts, state);
|
|
27365
27420
|
if (options.detach) {
|
|
27366
27421
|
logger.info(`Task containers started in detached mode; ${getEmbedConfig().binaryName} is exiting.`);
|
|
@@ -37261,18 +37316,30 @@ async function prepareEcsImageContexts(args) {
|
|
|
37261
37316
|
* Returns a `(id) => boolean` callback (true = pinned). Exported for testing.
|
|
37262
37317
|
*/
|
|
37263
37318
|
function makePinClassifier(args) {
|
|
37264
|
-
const { stacks, contextByStack, logger } = args;
|
|
37319
|
+
const { stacks, contextByStack, logger, stateBound } = args;
|
|
37265
37320
|
return (id) => {
|
|
37266
37321
|
try {
|
|
37267
37322
|
const stack = resolveEcsServiceStack(id, stacks);
|
|
37268
37323
|
return !isLocalCdkAssetImage(resolveEcsServiceTarget(id, stacks, stack ? contextByStack.get(stack.stackName) : void 0));
|
|
37269
37324
|
} catch (err) {
|
|
37270
|
-
logger.warn(`studio: could not classify image-pin status for ECS service '${id}'; leaving it unmarked (the image-override picker will not be offered)
|
|
37325
|
+
logger.warn(`studio: could not classify image-pin status for ECS service '${id}'; leaving it unmarked (the image-override picker will not be offered).${pinClassifyStateHint(stateBound)} ${err instanceof Error ? err.message : String(err)}`);
|
|
37271
37326
|
return false;
|
|
37272
37327
|
}
|
|
37273
37328
|
};
|
|
37274
37329
|
}
|
|
37275
37330
|
/**
|
|
37331
|
+
* The Session-bar `--from-cfn-stack` remedy appended to a pin-classify WARN
|
|
37332
|
+
* when the binding is NOT set (the common reason an INTRINSIC-ECR service
|
|
37333
|
+
* cannot be classified, so the override picker is silently absent). Returns an
|
|
37334
|
+
* empty string when the binding IS set — the resolver's own appended error
|
|
37335
|
+
* already names the real failure, and re-suggesting a flag the user already
|
|
37336
|
+
* passed is misleading. Shared by the service + task-def classifiers.
|
|
37337
|
+
*/
|
|
37338
|
+
function pinClassifyStateHint(stateBound) {
|
|
37339
|
+
if (stateBound !== false) return "";
|
|
37340
|
+
return " If this image is pinned to a deployed registry (e.g. ContainerImage.fromEcrRepository), set --from-cfn-stack in the Session bar so studio can resolve it and offer the image-override picker.";
|
|
37341
|
+
}
|
|
37342
|
+
/**
|
|
37276
37343
|
* Build the boot-time pin classifier {@link annotateEcsTaskPinnedTargets} calls
|
|
37277
37344
|
* per `ecs-task` task definition (issue #388) — the counterpart of
|
|
37278
37345
|
* {@link makePinClassifier} for task defs. Resolves the task via
|
|
@@ -37286,7 +37353,7 @@ function makePinClassifier(args) {
|
|
|
37286
37353
|
* Returns a `(id) => boolean` callback (true = pinned). Exported for testing.
|
|
37287
37354
|
*/
|
|
37288
37355
|
function makeTaskPinClassifier(args) {
|
|
37289
|
-
const { stacks, contextByStack, logger } = args;
|
|
37356
|
+
const { stacks, contextByStack, logger, stateBound } = args;
|
|
37290
37357
|
return (id) => {
|
|
37291
37358
|
try {
|
|
37292
37359
|
const stack = resolveEcsServiceStack(id, stacks);
|
|
@@ -37294,7 +37361,7 @@ function makeTaskPinClassifier(args) {
|
|
|
37294
37361
|
const representative = task.containers.find((c) => c.essential) ?? task.containers[0];
|
|
37295
37362
|
return representative !== void 0 && representative.image.kind !== "cdk-asset";
|
|
37296
37363
|
} catch (err) {
|
|
37297
|
-
logger.warn(`studio: could not classify image-pin status for ECS task definition '${id}'; leaving it unmarked (the image-override picker will not be offered)
|
|
37364
|
+
logger.warn(`studio: could not classify image-pin status for ECS task definition '${id}'; leaving it unmarked (the image-override picker will not be offered).${pinClassifyStateHint(stateBound)} ${err instanceof Error ? err.message : String(err)}`);
|
|
37298
37365
|
return false;
|
|
37299
37366
|
}
|
|
37300
37367
|
};
|
|
@@ -37372,15 +37439,18 @@ async function classifyStudioTargets(args) {
|
|
|
37372
37439
|
options: classifyOptions,
|
|
37373
37440
|
logger
|
|
37374
37441
|
});
|
|
37442
|
+
const stateBound = isCfnFlagPresent(classifyOptions);
|
|
37375
37443
|
const anyPinned = annotatePinnedEcsTargets(groups, makePinClassifier({
|
|
37376
37444
|
stacks,
|
|
37377
37445
|
contextByStack,
|
|
37378
|
-
logger
|
|
37446
|
+
logger,
|
|
37447
|
+
stateBound
|
|
37379
37448
|
}));
|
|
37380
37449
|
const anyTaskPinned = annotateEcsTaskPinnedTargets(groups, makeTaskPinClassifier({
|
|
37381
37450
|
stacks,
|
|
37382
37451
|
contextByStack,
|
|
37383
|
-
logger
|
|
37452
|
+
logger,
|
|
37453
|
+
stateBound
|
|
37384
37454
|
}));
|
|
37385
37455
|
const pinnedEcsByQualifiedId = /* @__PURE__ */ new Map();
|
|
37386
37456
|
for (const g of groups) {
|
|
@@ -37679,5 +37749,5 @@ function addStudioSpecificOptions(cmd) {
|
|
|
37679
37749
|
}
|
|
37680
37750
|
|
|
37681
37751
|
//#endregion
|
|
37682
|
-
export { applyEdgeResponseResult as $, buildJwksUrlFromIssuer as $n,
|
|
37683
|
-
//# sourceMappingURL=local-studio-
|
|
37752
|
+
export { applyEdgeResponseResult as $, buildJwksUrlFromIssuer as $n, resolveCfnStackName as $r, buildCloudMapIndex as $t, startAgentCoreHttpServer as A, resolveProfileCredentials as Ai, classifySourceChange as An, ConnectionRegistry as Ar, addRunTaskSpecificOptions as At, idFromArn as B, buildStageMap as Bn, resolveRuntimeFileExtension as Br, resolveEcsAssumeRoleOption as Bt, addListSpecificOptions as C, resolveAgentCoreTarget as Ci, waitForAgentCorePing as Cn, tryParseStatus as Cr, parseLbPortOverrides as Ct, createLocalStartAgentCoreCommand as D, tryResolveImageFnJoin as Di, computeCodeImageTag as Dn, probeHostGatewaySupport as Dr, addStartServiceSpecificOptions as Dt, addStartAgentCoreSpecificOptions as E, substituteImagePlaceholders as Ei, buildAgentCoreCodeImage as En, HOST_GATEWAY_MIN_VERSION as Er, resolveAlbFrontDoor as Et, createLocalStartCloudFrontCommand as F, createWatchPredicates as Fn, buildDisconnectEvent as Fr, addImageOverrideOptions as Ft, classifyS3Error as G, filterRoutesByApiIdentifiers as Gn, substituteEnvVarsFromState as Gr, enforceImageOverrideOrphans as Gt, createDeployedKvsDataSource as H, resolveEnvVars$1 as Hn, EcsTaskResolutionError as Hr, runEcsServiceEmulator as Ht, normalizeKvsFileKeys as I, resolveApiTargetSubset as In, buildMessageEvent as Ir, buildEcsImageResolutionContext$1 as It, startCloudFrontServer as J, startApiServer as Jn, createLocalStateProvider as Jr, resolveImageOverrides as Jt, createS3OriginReader as K, groupRoutesByServer as Kn, substituteEnvVarsFromStateAsync as Kr, mergeForService as Kt, parseKvsFileOverrides as L, createAuthorizerCache as Ln, architectureToPlatform as Lr, ecsClusterOption as Lt, startAgentCoreWsBridge as M, createLocalInvokeCommand as Mn, handleConnectionsRequest as Mr, MAX_TASKS_SUBNET_RANGE_CAP as Mt, LocalStartCloudFrontError as N, addStartApiSpecificOptions as Nn, parseConnectionsPath as Nr, addCommonEcsServiceOptions as Nt, buildAgentCoreServeAuthCheck as O, LocalInvokeBuildError as Oi, renderCodeDockerfile as On, resolveHostGatewayExtraHosts as Or, createLocalStartServiceCommand as Ot, addStartCloudFrontSpecificOptions as P, createLocalStartApiCommand as Pn, buildConnectEvent as Pr, addEcsAssumeRoleOptions as Pt, applyEdgeRequestResult as Q, buildCognitoJwksUrl as Qn, resolveCfnRegion as Qr, listPinnedTargets as Qt, parseOriginOverrides as R, createFileWatcher as Rn, buildContainerImage as Rr, parseMaxTasks as Rt, StudioEventBus as S, pickAgentCoreCandidateStack as Si, waitForAgentCoreHttpReady as Sn, selectIntegrationResponse as Sr, createLocalStartAlbCommand as St, formatTargetListing as T, formatStateRemedy as Ti, SUPPORTED_CODE_RUNTIMES as Tn, HOST_DOCKER_INTERNAL_GATEWAY as Tr, isApplicationLoadBalancer as Tt, resolveDeployedKvsArnByName as U, availableApiIdentifiers as Un, substituteAgainstState as Ur, ImageOverrideError as Ut, resolveKvsModulesForDistribution as V, materializeLayerFromArn as Vn, resolveRuntimeImage as Vr, resolveSharedSidecarCredentials as Vt, resolveDeployedOriginBucket as W, filterRoutesByApiIdentifier as Wn, substituteAgainstStateAsync as Wr, buildImageOverrideTag as Wt, serveFromStaticOrigin as X, resolveServiceIntegrationParameters as Xn, rejectExplicitCfnStackWithMultipleStacks as Xr, describePinnedImageUri as Xt, resolveErrorResponseCandidates as Y, resolveSelectionExpression as Yn, isCfnFlagPresent as Yr, runImageOverrideBuilds as Yt, serveLambdaUrlOrigin as Z, defaultCredentialsLoader as Zn, resolveCfnFallbackRegion as Zr, isLocalCdkAssetImage as Zt, filterStudioTargetGroups as _, AGENTCORE_AGUI_PROTOCOL as _i, parseSseForJsonRpc as _n, applyAuthorizerOverlay as _r, createCloudFrontModule as _t, createLocalStudioCommand as a, countTargets as ai, attachContainerLogStreamer as an, computeRequestIdentityHash as ar, describeS3OriginDomain as at, renderStudioHtml as b, AGENTCORE_RUNTIME_TYPE as bi, AGENTCORE_SESSION_ID_HEADER as bn, evaluateResponseParameters as br, addAlbSpecificOptions as bt, startStudioProxy as c, discoverWebSocketApis as ci, bridgeAgentCoreWs as cn, invokeTokenAuthorizer as cr, pickFunctionUrlLogicalIdFromOrigin as ct, createStudioDispatcher as d, parseSelectionExpressionPath as di, A2A_PATH as dn, buildCorsConfigByApiId as dr, pickTargetFunctionLogicalId as dt, CfnLocalStateProvider as ei, CloudMapRegistry as en, createJwksCache as er, buildEdgeRequestEvent as et, filterStudioCustomResources as f, webSocketApiMatchesIdentifier as fi, a2aInvokeOnce as fn, buildCorsConfigFromCloudFrontChain as fr, resolveCloudFrontDistribution as ft, annotatePinnedEcsTargets as g, AGENTCORE_A2A_PROTOCOL as gi, mcpInvokeOnce as gn, translateLambdaResponse as gr, stripCloudFrontImport as gt, annotateEcsTaskPinnedTargets as h, resolveLambdaArnIntrinsic as hi, MCP_PROTOCOL_VERSION as hn, matchRoute as hr, runViewerResponse as ht, coerceStopRequest as i, resolveSingleTarget as ii, getContainerNetworkIp as in, buildMethodArn as ir, CLOUDFRONT_DISTRIBUTION_TYPE as it, attachAgentCoreWsBridge as j, addInvokeSpecificOptions as jn, buildMgmtEndpointEnvUrl as jr, createLocalRunTaskCommand as jt, selectServeInboundAuth as k, buildStsClientConfig as ki, toCmdArgv as kn, bufferToBody as kr, serviceStrategy as kt, relayServeRequest as l, discoverWebSocketApisOrThrow as li, invokeAgentCoreWs as ln, attachAuthorizers as lr, pickKvsLogicalIdFromArn as lt, annotateAlbPinnedBackingServices as m, pickRefLogicalId as mi, MCP_PATH as mn, matchPreflight as mr, runViewerRequest as mt, coerceRunRequest as n, resolveSsmParameters as ni, SOFT_RELOAD_COMPLETION_LOG_SUFFIX as nn, verifyJwtAuthorizer as nr, edgeHeadersToHttp as nt, resolveServeBaseUrl as o, listTargets as oi, addInvokeAgentCoreSpecificOptions as on, evaluateCachedLambdaPolicy as or, extractKvsAssociations as ot, isCustomResourceLambdaTarget as p, discoverRoutes as pi, MCP_CONTAINER_PORT as pn, isFunctionUrlOacFronted as pr, compileCloudFrontFunction as pt, matchBehavior as q, readMtlsMaterialsFromDisk as qn, LocalStateSourceError as qr, parseImageOverrideFlags as qt, coerceServeRequest as r, resolveWatchConfig as ri, setShadowReadyTimeoutMs as rn, verifyJwtViaDiscovery as rr, httpHeadersToEdge as rt, createStudioServeManager as s, availableWebSocketApiIdentifiers as si, createLocalInvokeAgentCoreCommand as sn, invokeRequestAuthorizer as sr, isCloudFrontDistribution as st, addStudioSpecificOptions as t, collectSsmParameterRefs as ti, DEFAULT_SHADOW_READY_TIMEOUT_MS as tn, verifyCognitoJwt as tr, buildEdgeResponseEvent as tt, reinvoke as u, filterWebSocketApisByIdentifiers as ui, A2A_CONTAINER_PORT as un, applyCorsResponseHeaders as ur, pickLambdaEdgeFunctionLogicalId as ut, startStudioServer as v, AGENTCORE_HTTP_PROTOCOL as vi, AGENTCORE_SIGV4_SERVICE as vn, buildHttpApiV2Event as vr, createLocalFileKvsDataSource as vt, createLocalListCommand as w, derivePseudoParametersFromRegion as wi, downloadAndExtractS3Bundle as wn, VtlEvaluationError as wr, resolveAlbTarget as wt, createStudioStore as x, AgentCoreResolutionError as xi, invokeAgentCore as xn, pickResponseTemplate as xr, albStrategy as xt, toStudioTargetGroups as y, AGENTCORE_MCP_PROTOCOL as yi, signAgentCoreInvocation as yn, buildRestV1Event as yr, createUnboundCloudFrontModule as yt, resolveCloudFrontTarget as z, attachStageContext as zn, resolveRuntimeCodeMountPath as zr, parseRestartPolicy as zt };
|
|
37753
|
+
//# sourceMappingURL=local-studio-DYmbfvZB.js.map
|