managed-deepagents 0.0.3-dev.24 → 0.0.3-dev.26
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/dist/connectors.d.ts.map +1 -1
- package/dist/connectors.js +3 -1
- package/dist/connectors.js.map +1 -1
- package/dist/define-deep-agent.d.ts.map +1 -1
- package/dist/define-deep-agent.js +5 -3
- package/dist/define-deep-agent.js.map +1 -1
- package/dist/resolve.d.ts.map +1 -1
- package/dist/resolve.js +16 -4
- package/dist/resolve.js.map +1 -1
- package/dist/runtime/connectors-manager.d.ts.map +1 -1
- package/dist/runtime/connectors-manager.js +5 -2
- package/dist/runtime/connectors-manager.js.map +1 -1
- package/dist/runtime/index.d.ts +0 -1
- package/dist/runtime/index.d.ts.map +1 -1
- package/dist/runtime/index.js +99 -43
- package/dist/runtime/index.js.map +1 -1
- package/dist/runtime/sandbox-manager.d.ts +3 -21
- package/dist/runtime/sandbox-manager.d.ts.map +1 -1
- package/dist/runtime/sandbox-manager.js +41 -119
- package/dist/runtime/sandbox-manager.js.map +1 -1
- package/dist/runtime/setup-script.d.ts +2 -4
- package/dist/runtime/setup-script.d.ts.map +1 -1
- package/dist/runtime/setup-script.js +5 -5
- package/dist/runtime/setup-script.js.map +1 -1
- package/dist/runtime/types.d.ts +3 -2
- package/dist/runtime/types.d.ts.map +1 -1
- package/dist/sandbox.d.ts +18 -18
- package/dist/sandbox.d.ts.map +1 -1
- package/dist/sandbox.js +37 -9
- package/dist/sandbox.js.map +1 -1
- package/dist/schedules.js +4 -2
- package/dist/schedules.js.map +1 -1
- package/dist/types.d.ts +1 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +15 -9
- package/dist/runtime/credentials.d.ts +0 -42
- package/dist/runtime/credentials.d.ts.map +0 -1
- package/dist/runtime/credentials.js +0 -69
- package/dist/runtime/credentials.js.map +0 -1
- package/dist/runtime/dev-notice.d.ts +0 -7
- package/dist/runtime/dev-notice.d.ts.map +0 -1
- package/dist/runtime/dev-notice.js +0 -27
- package/dist/runtime/dev-notice.js.map +0 -1
- package/dist/runtime/local-dev-sandbox.d.ts +0 -13
- package/dist/runtime/local-dev-sandbox.d.ts.map +0 -1
- package/dist/runtime/local-dev-sandbox.js +0 -39
- package/dist/runtime/local-dev-sandbox.js.map +0 -1
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import type { SandboxDefinition } from "../sandbox.js";
|
|
2
|
-
/**
|
|
3
|
-
* Per-provider environment variables MDA expects to hold the credentials each
|
|
4
|
-
* sandbox provider needs. Keyed by the provider's `providerId` (when set) or
|
|
5
|
-
* its class name.
|
|
6
|
-
*
|
|
7
|
-
* The value is a list of alternative credential *sets*: a provider is
|
|
8
|
-
* considered credentialed if **every** variable in **any one** set is present.
|
|
9
|
-
* An empty list means the provider needs no credentials (e.g. it runs locally).
|
|
10
|
-
*
|
|
11
|
-
* Sources: the deepagents sandbox docs and each provider's own SDK docs.
|
|
12
|
-
* - LangSmith: https://docs.langchain.com/langsmith/sandboxes
|
|
13
|
-
* - Daytona / E2B / Modal / Runloop / Vercel / AgentCore / Deno: provider SDK docs.
|
|
14
|
-
*/
|
|
15
|
-
export declare const PROVIDER_CREDENTIAL_ENV_VARS: Record<string, string[][]>;
|
|
16
|
-
export interface ProviderCredentialStatus {
|
|
17
|
-
/**
|
|
18
|
-
* - `available`: required credentials are present (or none are needed).
|
|
19
|
-
* - `missing`: a known provider's credentials are absent.
|
|
20
|
-
* - `unknown`: provider is not in {@link PROVIDER_CREDENTIAL_ENV_VARS}.
|
|
21
|
-
*/
|
|
22
|
-
status: "available" | "missing" | "unknown";
|
|
23
|
-
/** The provider id / class name used for the lookup. */
|
|
24
|
-
provider: string;
|
|
25
|
-
/** Env vars from the primary credential set, surfaced when `missing`. */
|
|
26
|
-
missing: string[];
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Whether MDA is running under `mda dev`. The CLI sets `MDA_DEV` when it
|
|
30
|
-
* launches the local LangGraph dev server; it is never set for `mda deploy`.
|
|
31
|
-
*/
|
|
32
|
-
export declare function isDevMode(): boolean;
|
|
33
|
-
/** Resolve the lookup key for a sandbox provider (its id, else class name). */
|
|
34
|
-
export declare function providerKey(provider: SandboxDefinition["provider"]): string;
|
|
35
|
-
/** Whether every variable in a credential set is set and non-empty. */
|
|
36
|
-
export declare function credentialSetSatisfied(envVars: string[]): boolean;
|
|
37
|
-
/**
|
|
38
|
-
* Determine whether the configured provider's credentials are available so
|
|
39
|
-
* `mda dev` can decide between the real provider and the local fallback.
|
|
40
|
-
*/
|
|
41
|
-
export declare function providerCredentialStatus(provider: SandboxDefinition["provider"]): ProviderCredentialStatus;
|
|
42
|
-
//# sourceMappingURL=credentials.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"credentials.d.ts","sourceRoot":"","sources":["../../src/runtime/credentials.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAEvD;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,4BAA4B,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CAsBnE,CAAC;AAEF,MAAM,WAAW,wBAAwB;IACvC;;;;OAIG;IACH,MAAM,EAAE,WAAW,GAAG,SAAS,GAAG,SAAS,CAAC;IAC5C,wDAAwD;IACxD,QAAQ,EAAE,MAAM,CAAC;IACjB,yEAAyE;IACzE,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED;;;GAGG;AACH,wBAAgB,SAAS,IAAI,OAAO,CAGnC;AAED,+EAA+E;AAC/E,wBAAgB,WAAW,CAAC,QAAQ,EAAE,iBAAiB,CAAC,UAAU,CAAC,GAAG,MAAM,CAG3E;AAED,uEAAuE;AACvE,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,OAAO,CAEjE;AAED;;;GAGG;AACH,wBAAgB,wBAAwB,CACtC,QAAQ,EAAE,iBAAiB,CAAC,UAAU,CAAC,GACtC,wBAAwB,CAU1B"}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Per-provider environment variables MDA expects to hold the credentials each
|
|
3
|
-
* sandbox provider needs. Keyed by the provider's `providerId` (when set) or
|
|
4
|
-
* its class name.
|
|
5
|
-
*
|
|
6
|
-
* The value is a list of alternative credential *sets*: a provider is
|
|
7
|
-
* considered credentialed if **every** variable in **any one** set is present.
|
|
8
|
-
* An empty list means the provider needs no credentials (e.g. it runs locally).
|
|
9
|
-
*
|
|
10
|
-
* Sources: the deepagents sandbox docs and each provider's own SDK docs.
|
|
11
|
-
* - LangSmith: https://docs.langchain.com/langsmith/sandboxes
|
|
12
|
-
* - Daytona / E2B / Modal / Runloop / Vercel / AgentCore / Deno: provider SDK docs.
|
|
13
|
-
*/
|
|
14
|
-
export const PROVIDER_CREDENTIAL_ENV_VARS = {
|
|
15
|
-
// LangSmith managed sandboxes.
|
|
16
|
-
LangSmithSandbox: [["LANGSMITH_API_KEY"]],
|
|
17
|
-
// Daytona (`langchain-daytona` / deepagents `DaytonaSandbox`).
|
|
18
|
-
DaytonaSandbox: [["DAYTONA_API_KEY"]],
|
|
19
|
-
// E2B (`langchain-e2b` / deepagents `E2BSandbox`).
|
|
20
|
-
E2BSandbox: [["E2B_API_KEY"]],
|
|
21
|
-
// Modal requires both a token id and secret.
|
|
22
|
-
ModalSandbox: [["MODAL_TOKEN_ID", "MODAL_TOKEN_SECRET"]],
|
|
23
|
-
// Runloop devboxes.
|
|
24
|
-
RunloopSandbox: [["RUNLOOP_API_KEY"]],
|
|
25
|
-
// Vercel: either an OIDC token, or an access token + team + project ids.
|
|
26
|
-
VercelSandbox: [
|
|
27
|
-
["VERCEL_OIDC_TOKEN"],
|
|
28
|
-
["VERCEL_TOKEN", "VERCEL_TEAM_ID", "VERCEL_PROJECT_ID"],
|
|
29
|
-
],
|
|
30
|
-
// AWS Bedrock AgentCore: standard AWS credential resolution.
|
|
31
|
-
AgentCoreSandbox: [["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY"], ["AWS_PROFILE"]],
|
|
32
|
-
// Deno Deploy microVMs (`@langchain/deno`) need an organization token.
|
|
33
|
-
DenoSandbox: [["DENO_DEPLOY_TOKEN"]],
|
|
34
|
-
// Node VFS runs locally and needs no credentials.
|
|
35
|
-
NodeVFSSandbox: [],
|
|
36
|
-
};
|
|
37
|
-
/**
|
|
38
|
-
* Whether MDA is running under `mda dev`. The CLI sets `MDA_DEV` when it
|
|
39
|
-
* launches the local LangGraph dev server; it is never set for `mda deploy`.
|
|
40
|
-
*/
|
|
41
|
-
export function isDevMode() {
|
|
42
|
-
const value = process.env.MDA_DEV;
|
|
43
|
-
return typeof value === "string" && value.length > 0;
|
|
44
|
-
}
|
|
45
|
-
/** Resolve the lookup key for a sandbox provider (its id, else class name). */
|
|
46
|
-
export function providerKey(provider) {
|
|
47
|
-
const p = provider;
|
|
48
|
-
return (p.providerId ?? p.name ?? "").trim();
|
|
49
|
-
}
|
|
50
|
-
/** Whether every variable in a credential set is set and non-empty. */
|
|
51
|
-
export function credentialSetSatisfied(envVars) {
|
|
52
|
-
return envVars.every((name) => (process.env[name] ?? "").trim().length > 0);
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* Determine whether the configured provider's credentials are available so
|
|
56
|
-
* `mda dev` can decide between the real provider and the local fallback.
|
|
57
|
-
*/
|
|
58
|
-
export function providerCredentialStatus(provider) {
|
|
59
|
-
const key = providerKey(provider);
|
|
60
|
-
const sets = PROVIDER_CREDENTIAL_ENV_VARS[key];
|
|
61
|
-
if (sets === undefined) {
|
|
62
|
-
return { status: "unknown", provider: key || "unknown", missing: [] };
|
|
63
|
-
}
|
|
64
|
-
if (sets.length === 0 || sets.some(credentialSetSatisfied)) {
|
|
65
|
-
return { status: "available", provider: key, missing: [] };
|
|
66
|
-
}
|
|
67
|
-
return { status: "missing", provider: key, missing: sets[0] ?? [] };
|
|
68
|
-
}
|
|
69
|
-
//# sourceMappingURL=credentials.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"credentials.js","sourceRoot":"","sources":["../../src/runtime/credentials.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAA+B;IACtE,+BAA+B;IAC/B,gBAAgB,EAAE,CAAC,CAAC,mBAAmB,CAAC,CAAC;IACzC,+DAA+D;IAC/D,cAAc,EAAE,CAAC,CAAC,iBAAiB,CAAC,CAAC;IACrC,mDAAmD;IACnD,UAAU,EAAE,CAAC,CAAC,aAAa,CAAC,CAAC;IAC7B,6CAA6C;IAC7C,YAAY,EAAE,CAAC,CAAC,gBAAgB,EAAE,oBAAoB,CAAC,CAAC;IACxD,oBAAoB;IACpB,cAAc,EAAE,CAAC,CAAC,iBAAiB,CAAC,CAAC;IACrC,yEAAyE;IACzE,aAAa,EAAE;QACb,CAAC,mBAAmB,CAAC;QACrB,CAAC,cAAc,EAAE,gBAAgB,EAAE,mBAAmB,CAAC;KACxD;IACD,6DAA6D;IAC7D,gBAAgB,EAAE,CAAC,CAAC,mBAAmB,EAAE,uBAAuB,CAAC,EAAE,CAAC,aAAa,CAAC,CAAC;IACnF,uEAAuE;IACvE,WAAW,EAAE,CAAC,CAAC,mBAAmB,CAAC,CAAC;IACpC,kDAAkD;IAClD,cAAc,EAAE,EAAE;CACnB,CAAC;AAeF;;;GAGG;AACH,MAAM,UAAU,SAAS;IACvB,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC;IAClC,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;AACvD,CAAC;AAED,+EAA+E;AAC/E,MAAM,UAAU,WAAW,CAAC,QAAuC;IACjE,MAAM,CAAC,GAAG,QAAkD,CAAC;IAC7D,OAAO,CAAC,CAAC,CAAC,UAAU,IAAI,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;AAC/C,CAAC;AAED,uEAAuE;AACvE,MAAM,UAAU,sBAAsB,CAAC,OAAiB;IACtD,OAAO,OAAO,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;AAC9E,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,wBAAwB,CACtC,QAAuC;IAEvC,MAAM,GAAG,GAAG,WAAW,CAAC,QAAQ,CAAC,CAAC;IAClC,MAAM,IAAI,GAAG,4BAA4B,CAAC,GAAG,CAAC,CAAC;IAC/C,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;QACvB,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,IAAI,SAAS,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC;IACxE,CAAC;IACD,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,sBAAsB,CAAC,EAAE,CAAC;QAC3D,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC;IAC7D,CAAC;IACD,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC;AACtE,CAAC"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export declare function logDevSandboxNoticeOnce(message: string): void;
|
|
2
|
-
/**
|
|
3
|
-
* Reset the one-time notice guard. Test-only: the guard is module-level state
|
|
4
|
-
* that otherwise persists across test cases in the same module instance.
|
|
5
|
-
*/
|
|
6
|
-
export declare function resetDevSandboxNoticeForTests(): void;
|
|
7
|
-
//# sourceMappingURL=dev-notice.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev-notice.d.ts","sourceRoot":"","sources":["../../src/runtime/dev-notice.ts"],"names":[],"mappings":"AAaA,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAK7D;AAED;;;GAGG;AACH,wBAAgB,6BAA6B,IAAI,IAAI,CAEpD"}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Emit a one-time notice describing which dev sandbox mode is in effect.
|
|
3
|
-
*
|
|
4
|
-
* Deduped for the lifetime of the process because the managed sandbox is
|
|
5
|
-
* created once per sandbox *scope key* (thread/tenant/actor), not once per
|
|
6
|
-
* process. The `mda dev` LangGraph server is long-lived and serves many
|
|
7
|
-
* threads, so each new thread misses the sandbox cache and provisions a fresh
|
|
8
|
-
* sandbox — without this guard the banner would reprint on the first turn of
|
|
9
|
-
* every new thread (and could interleave when threads start concurrently). The
|
|
10
|
-
* message is session-level context, so once is enough.
|
|
11
|
-
*/
|
|
12
|
-
let loggedDevSandboxNotice = false;
|
|
13
|
-
export function logDevSandboxNoticeOnce(message) {
|
|
14
|
-
if (loggedDevSandboxNotice)
|
|
15
|
-
return;
|
|
16
|
-
loggedDevSandboxNotice = true;
|
|
17
|
-
// eslint-disable-next-line no-console
|
|
18
|
-
console.log(message);
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Reset the one-time notice guard. Test-only: the guard is module-level state
|
|
22
|
-
* that otherwise persists across test cases in the same module instance.
|
|
23
|
-
*/
|
|
24
|
-
export function resetDevSandboxNoticeForTests() {
|
|
25
|
-
loggedDevSandboxNotice = false;
|
|
26
|
-
}
|
|
27
|
-
//# sourceMappingURL=dev-notice.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev-notice.js","sourceRoot":"","sources":["../../src/runtime/dev-notice.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,IAAI,sBAAsB,GAAG,KAAK,CAAC;AAEnC,MAAM,UAAU,uBAAuB,CAAC,OAAe;IACrD,IAAI,sBAAsB;QAAE,OAAO;IACnC,sBAAsB,GAAG,IAAI,CAAC;IAC9B,sCAAsC;IACtC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;AACvB,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,6BAA6B;IAC3C,sBAAsB,GAAG,KAAK,CAAC;AACjC,CAAC"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { ManagedSandboxBackend } from "./types.js";
|
|
2
|
-
/**
|
|
3
|
-
* Provision a local, throwaway sandbox rooted at a fresh OS temp directory.
|
|
4
|
-
*
|
|
5
|
-
* Uses `deepagents`' `LocalShellBackend`, which runs commands and file
|
|
6
|
-
* operations against the host within the temp dir — no remote sandbox, no
|
|
7
|
-
* credentials, no network. Intended only for `mda dev`.
|
|
8
|
-
*
|
|
9
|
-
* `reason` explains *why* the local sandbox is being used (missing credentials,
|
|
10
|
-
* provider creation failure, …) and is logged once alongside the temp dir path.
|
|
11
|
-
*/
|
|
12
|
-
export declare function createLocalDevSandbox(reason: string): Promise<ManagedSandboxBackend>;
|
|
13
|
-
//# sourceMappingURL=local-dev-sandbox.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"local-dev-sandbox.d.ts","sourceRoot":"","sources":["../../src/runtime/local-dev-sandbox.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAexD;;;;;;;;;GASG;AACH,wBAAsB,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,qBAAqB,CAAC,CA+B1F"}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { mkdtemp } from "node:fs/promises";
|
|
2
|
-
import { tmpdir } from "node:os";
|
|
3
|
-
import { join } from "node:path";
|
|
4
|
-
import { logDevSandboxNoticeOnce } from "./dev-notice.js";
|
|
5
|
-
/**
|
|
6
|
-
* Provision a local, throwaway sandbox rooted at a fresh OS temp directory.
|
|
7
|
-
*
|
|
8
|
-
* Uses `deepagents`' `LocalShellBackend`, which runs commands and file
|
|
9
|
-
* operations against the host within the temp dir — no remote sandbox, no
|
|
10
|
-
* credentials, no network. Intended only for `mda dev`.
|
|
11
|
-
*
|
|
12
|
-
* `reason` explains *why* the local sandbox is being used (missing credentials,
|
|
13
|
-
* provider creation failure, …) and is logged once alongside the temp dir path.
|
|
14
|
-
*/
|
|
15
|
-
export async function createLocalDevSandbox(reason) {
|
|
16
|
-
const dir = await mkdtemp(join(tmpdir(), "mda-dev-sandbox-"));
|
|
17
|
-
logDevSandboxNoticeOnce(`[mda dev] ${reason}:\n ${dir}`);
|
|
18
|
-
// Loaded dynamically (rather than a static named import) so the build does
|
|
19
|
-
// not depend on `LocalShellBackend` being present in the resolved
|
|
20
|
-
// `deepagents` type surface; it is provided by the runtime's `deepagents`.
|
|
21
|
-
const deepagentsModule = (await import("deepagents"));
|
|
22
|
-
const LocalShellBackend = deepagentsModule.LocalShellBackend;
|
|
23
|
-
if (typeof LocalShellBackend !== "function") {
|
|
24
|
-
throw new Error("the installed `deepagents` does not export `LocalShellBackend`; upgrade " +
|
|
25
|
-
"`deepagents` to use the local `mda dev` sandbox, or set the provider credentials.");
|
|
26
|
-
}
|
|
27
|
-
const backend = new LocalShellBackend({
|
|
28
|
-
rootDir: dir,
|
|
29
|
-
virtualMode: true,
|
|
30
|
-
inheritEnv: true,
|
|
31
|
-
});
|
|
32
|
-
// Initialize eagerly when the backend supports it, mirroring how the provider
|
|
33
|
-
// `create(...)` factory hands back a ready-to-use backend.
|
|
34
|
-
if (typeof backend.initialize === "function") {
|
|
35
|
-
await backend.initialize();
|
|
36
|
-
}
|
|
37
|
-
return backend;
|
|
38
|
-
}
|
|
39
|
-
//# sourceMappingURL=local-dev-sandbox.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"local-dev-sandbox.js","sourceRoot":"","sources":["../../src/runtime/local-dev-sandbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AACjC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,OAAO,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAgB1D;;;;;;;;;GASG;AACH,MAAM,CAAC,KAAK,UAAU,qBAAqB,CAAC,MAAc;IACxD,MAAM,GAAG,GAAG,MAAM,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,kBAAkB,CAAC,CAAC,CAAC;IAC9D,uBAAuB,CAAC,aAAa,MAAM,QAAQ,GAAG,EAAE,CAAC,CAAC;IAE1D,2EAA2E;IAC3E,kEAAkE;IAClE,2EAA2E;IAC3E,MAAM,gBAAgB,GAAG,CAAC,MAAM,MAAM,CAAC,YAAY,CAAC,CAA4B,CAAC;IACjF,MAAM,iBAAiB,GAAG,gBAAgB,CAAC,iBAE9B,CAAC;IACd,IAAI,OAAO,iBAAiB,KAAK,UAAU,EAAE,CAAC;QAC5C,MAAM,IAAI,KAAK,CACb,0EAA0E;YACxE,mFAAmF,CACtF,CAAC;IACJ,CAAC;IAED,MAAM,OAAO,GAAG,IAAI,iBAAiB,CAAC;QACpC,OAAO,EAAE,GAAG;QACZ,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,IAAI;KACjB,CAAC,CAAC;IAEH,8EAA8E;IAC9E,2DAA2D;IAC3D,IAAI,OAAO,OAAO,CAAC,UAAU,KAAK,UAAU,EAAE,CAAC;QAC7C,MAAM,OAAO,CAAC,UAAU,EAAE,CAAC;IAC7B,CAAC;IAED,OAAO,OAA2C,CAAC;AACrD,CAAC"}
|