@jmanuelcorral/openteam 0.26.0 → 0.27.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.es.md +11 -8
- package/README.md +11 -8
- package/dist/certificates/graph-release-certificate.json +2 -2
- package/dist/certificates/graph-shadow-certificate.json +2 -2
- package/dist/certificates/opencode-2.0.5/graph-release-certificate.json +45 -0
- package/dist/certificates/opencode-2.0.5/graph-shadow-certificate.json +39 -0
- package/dist/cli/consoleRuntimeState.d.ts.map +1 -1
- package/dist/cli/consoleServe.d.ts +2 -1
- package/dist/cli/consoleServe.d.ts.map +1 -1
- package/dist/cli.js +21871 -12535
- package/dist/commands/setup.d.ts +2 -0
- package/dist/commands/setup.d.ts.map +1 -1
- package/dist/commands/upgrade.d.ts +1 -1
- package/dist/commands/upgrade.d.ts.map +1 -1
- package/dist/config/fieldProjection.d.ts +3 -0
- package/dist/config/fieldProjection.d.ts.map +1 -0
- package/dist/config/nativeOpencode.d.ts +5 -0
- package/dist/config/nativeOpencode.d.ts.map +1 -0
- package/dist/console/auth.d.ts +5 -0
- package/dist/console/auth.d.ts.map +1 -0
- package/dist/console/conversation.d.ts +8 -1
- package/dist/console/conversation.d.ts.map +1 -1
- package/dist/console/historyBoundary.d.ts +1 -1
- package/dist/console/historyBoundary.d.ts.map +1 -1
- package/dist/console/nativeConversation.d.ts +7 -0
- package/dist/console/nativeConversation.d.ts.map +1 -0
- package/dist/console/opencodeClient.d.ts +3 -0
- package/dist/console/opencodeClient.d.ts.map +1 -1
- package/dist/console/pty.d.ts +4 -0
- package/dist/console/pty.d.ts.map +1 -1
- package/dist/contract/opencode.d.ts +13 -7
- package/dist/contract/opencode.d.ts.map +1 -1
- package/dist/index.d.ts +10 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1150 -207
- package/dist/messages/consoleDetail.d.ts +3 -0
- package/dist/messages/consoleDetail.d.ts.map +1 -1
- package/dist/messages/nativeHost.d.ts +21 -0
- package/dist/messages/nativeHost.d.ts.map +1 -0
- package/dist/plugin/availability.d.ts +1 -0
- package/dist/plugin/availability.d.ts.map +1 -1
- package/dist/plugin/consoleTool.d.ts +1 -0
- package/dist/plugin/consoleTool.d.ts.map +1 -1
- package/dist/plugin/hooks.d.ts +3 -3
- package/dist/plugin/hooks.d.ts.map +1 -1
- package/dist/plugin/modelResidency.d.ts +1 -0
- package/dist/plugin/modelResidency.d.ts.map +1 -1
- package/dist/plugin/nativeHost.d.ts +5 -0
- package/dist/plugin/nativeHost.d.ts.map +1 -0
- package/dist/plugin/nativeHostContext.d.ts +228 -0
- package/dist/plugin/nativeHostContext.d.ts.map +1 -0
- package/dist/plugin/nativeInventory.d.ts +5 -0
- package/dist/plugin/nativeInventory.d.ts.map +1 -0
- package/dist/plugin/nativeResidency.d.ts +30 -0
- package/dist/plugin/nativeResidency.d.ts.map +1 -0
- package/dist/plugin/nativeSessions.d.ts +131 -0
- package/dist/plugin/nativeSessions.d.ts.map +1 -0
- package/dist/plugin/orchestrateTool.d.ts.map +1 -1
- package/dist/plugin/reloadTool.d.ts +3 -2
- package/dist/plugin/reloadTool.d.ts.map +1 -1
- package/dist/plugin/runtimeContext.d.ts +42 -0
- package/dist/plugin/runtimeContext.d.ts.map +1 -0
- package/dist/web/console.d.ts +1 -1
- package/dist/web/console.d.ts.map +1 -1
- package/dist/web/server.d.ts +1 -1
- package/dist/web/server.d.ts.map +1 -1
- package/dist/web/start.d.ts +1 -1
- package/dist/web/start.d.ts.map +1 -1
- package/package.json +6 -3
package/README.es.md
CHANGED
|
@@ -40,22 +40,24 @@ estrecha un agente a `local` bajo el modo global `mixed`.
|
|
|
40
40
|
|
|
41
41
|
## Características
|
|
42
42
|
|
|
43
|
-
- Routing por turno
|
|
43
|
+
- Routing por turno antes de inferencia: `chat.message` en 1.x o el adaptador nativo de prompt/modelo en 2.0.5.
|
|
44
44
|
- Registro de runtimes locales OpenAI-compatible: Ollama, LM Studio, Lemonade Server, llama-swap y Foundry Local.
|
|
45
45
|
- Perfiles de capacidad desde Models.dev, con cache y fallback curado cuando el catálogo no está disponible.
|
|
46
46
|
- Selección automática **cheapest-capable** por coste, disponibilidad, soporte de tools y contexto dentro del dominio permitido.
|
|
47
47
|
- Presupuestos por sesión, mes y tokens frontier por sesión.
|
|
48
48
|
- Telemetría `CostRecord` JSONL hash-only: guarda `promptHash`, métricas de coste y decisión, nunca prompts crudos.
|
|
49
49
|
- Pines exactos o `"auto"` por agente, fallbacks ordenados opcionales y relevo acotado de modelo para nodos incompletos.
|
|
50
|
-
- Orquestación multiagente con
|
|
51
|
-
-
|
|
50
|
+
- Orquestación multiagente con trabajadores realmente vinculados al padre, modelo explícito y finalización/cancelación acotadas.
|
|
51
|
+
- Inventario local/proveedor bajo demanda antes del routing; se espera a los refrescos pendientes antes de seleccionar modelos residentes.
|
|
52
52
|
- Una [línea de tiempo de agentes](docs/es/guide/agent-timeline.md) solo de
|
|
53
53
|
metadatos, con historial duradero del coordinador y los intentos, cursor
|
|
54
54
|
histórico y avisos de actualización en vivo.
|
|
55
55
|
|
|
56
56
|
## Requisitos
|
|
57
57
|
|
|
58
|
-
- opencode
|
|
58
|
+
- opencode **1.18.19** (legacy) o **2.0.5** (adaptador nativo).
|
|
59
|
+
No se asume compatibilidad con otras versiones
|
|
60
|
+
2.x. Consulta los [límites de compatibilidad](docs/es/compatibility.md#opencode-2-0-5-nativo).
|
|
59
61
|
- Bun `1.3.14` para instalaciones, desarrollo y tests reproducibles.
|
|
60
62
|
- Node.js `^22.22.2 || ^24.15.0 || >=26.0.0` para la CLI y el plugin publicados.
|
|
61
63
|
- Runtimes locales opcionales:
|
|
@@ -1030,15 +1032,16 @@ Gates no negociables:
|
|
|
1030
1032
|
|
|
1031
1033
|
## Compatibilidad
|
|
1032
1034
|
|
|
1033
|
-
Consulta [docs/compatibility.md](docs/compatibility.md). Resumen verificado el `2026-
|
|
1035
|
+
Consulta [docs/es/compatibility.md](docs/es/compatibility.md). Resumen verificado el `2026-09-18`:
|
|
1034
1036
|
|
|
1035
1037
|
| Superficie | Versión / contrato |
|
|
1036
1038
|
| --- | --- |
|
|
1037
|
-
| openteam | `0.
|
|
1039
|
+
| openteam | `0.27.0`; versión actual del paquete |
|
|
1040
|
+
| Host opencode | `1.18.19` legacy; soporte nativo exacto `2.0.5` |
|
|
1038
1041
|
| `@opencode-ai/plugin` | `1.18.19` |
|
|
1039
1042
|
| `@opencode-ai/sdk` | `1.18.19` |
|
|
1040
|
-
| Hook de routing | `chat.message
|
|
1041
|
-
| Subsesiones |
|
|
1043
|
+
| Hook de routing | `chat.message` legacy; `prompt` + `session.switchModel` nativos; nunca `chat.params` |
|
|
1044
|
+
| Subsesiones | SDK legacy o servicio Session nativo con scope; parentesco real y modelo explícito |
|
|
1042
1045
|
|
|
1043
1046
|
## Contribuir
|
|
1044
1047
|
|
package/README.md
CHANGED
|
@@ -46,15 +46,15 @@ or narrow an agent to `local` under global `mixed`, when frontier is prohibited.
|
|
|
46
46
|
|
|
47
47
|
## Features
|
|
48
48
|
|
|
49
|
-
- Per-turn routing
|
|
49
|
+
- Per-turn routing before inference: legacy `chat.message` or the native 2.0.5 prompt/model boundary.
|
|
50
50
|
- Registration of OpenAI-compatible local runtimes: **Ollama**, **LM Studio**, **Lemonade Server**, **llama-swap** and **Foundry Local**.
|
|
51
51
|
- Capability profiles from [Models.dev](https://models.dev), with cache and a curated fallback when the catalog is unavailable.
|
|
52
52
|
- **Cheapest-capable** automatic selection by cost, availability, tool support, and context requirements inside the allowed domain.
|
|
53
53
|
- Budgets per session, per month and per frontier tokens per session.
|
|
54
54
|
- Hash-only `CostRecord` JSONL telemetry: stores `promptHash`, cost/decision metrics — **never raw prompts**.
|
|
55
55
|
- Per-agent exact pins or `"auto"`, optional ordered fallbacks, and bounded cross-model handoff for an incomplete node.
|
|
56
|
-
- Multi-agent orchestration with
|
|
57
|
-
-
|
|
56
|
+
- Multi-agent orchestration with genuinely parented workers, explicit model selection and bounded completion/cancellation.
|
|
57
|
+
- Lazy local/provider inventory before routing; session-event refreshes are awaited before selecting resident models.
|
|
58
58
|
- A metadata-only [agent timeline](docs/guide/agent-timeline.md) with durable
|
|
59
59
|
coordinator/attempt history, historical cursor inspection, and live
|
|
60
60
|
invalidation hints.
|
|
@@ -63,7 +63,9 @@ or narrow an agent to `local` under global `mixed`, when frontier is prohibited.
|
|
|
63
63
|
|
|
64
64
|
## Requirements
|
|
65
65
|
|
|
66
|
-
- opencode
|
|
66
|
+
- opencode **1.18.19** (legacy) or **2.0.5** (native adapter).
|
|
67
|
+
Other 2.x versions are not assumed compatible. See the
|
|
68
|
+
[host compatibility boundary](docs/compatibility.md#native-opencode-2-0-5).
|
|
67
69
|
- [Bun](https://bun.sh) `1.3.14` for reproducible installs, development, and tests.
|
|
68
70
|
- Node.js `^22.22.2 || ^24.15.0 || >=26.0.0` for the published CLI/plugin.
|
|
69
71
|
- Optional local runtimes:
|
|
@@ -979,15 +981,16 @@ Non-negotiable gates (see [docs/testing-and-quality.md](docs/testing-and-quality
|
|
|
979
981
|
|
|
980
982
|
## Compatibility
|
|
981
983
|
|
|
982
|
-
See [docs/compatibility.md](docs/compatibility.md). Verified summary as of `2026-
|
|
984
|
+
See [docs/compatibility.md](docs/compatibility.md). Verified summary as of `2026-09-18`:
|
|
983
985
|
|
|
984
986
|
| Surface | Version / contract |
|
|
985
987
|
| --- | --- |
|
|
986
|
-
| openteam | `0.
|
|
988
|
+
| openteam | `0.27.0`; current package version |
|
|
989
|
+
| opencode host | `1.18.19` legacy; exact `2.0.5` native support |
|
|
987
990
|
| `@opencode-ai/plugin` | `1.18.19` |
|
|
988
991
|
| `@opencode-ai/sdk` | `1.18.19` |
|
|
989
|
-
| Routing hook | `chat.message`;
|
|
990
|
-
| Child sessions |
|
|
992
|
+
| Routing hook | Legacy `chat.message`; native `prompt` + `session.switchModel`; never `chat.params` |
|
|
993
|
+
| Child sessions | Legacy SDK or native scoped Session service; actual parenting and explicit model |
|
|
991
994
|
|
|
992
995
|
## Contributing
|
|
993
996
|
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"idempotent": true
|
|
35
35
|
},
|
|
36
36
|
"performance": {
|
|
37
|
-
"p95Millis": 0.
|
|
37
|
+
"p95Millis": 0.4973019999999906,
|
|
38
38
|
"budgetMillis": 50,
|
|
39
39
|
"samples": 100
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"verdict": "pass",
|
|
43
43
|
"failedGates": [],
|
|
44
|
-
"digest": "
|
|
44
|
+
"digest": "9b690d23c4493fbfd8d157387d0f33b53db8fe8cc024c92c60b39b109bc83e3b"
|
|
45
45
|
}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"rawFindings": 0
|
|
21
21
|
},
|
|
22
22
|
"overhead": {
|
|
23
|
-
"p95Millis": 0.
|
|
23
|
+
"p95Millis": 0.312385000000063,
|
|
24
24
|
"budgetMillis": 25,
|
|
25
25
|
"samples": 1000
|
|
26
26
|
},
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
},
|
|
36
36
|
"verdict": "pass",
|
|
37
37
|
"failedGates": [],
|
|
38
|
-
"digest": "
|
|
38
|
+
"digest": "f751dfd5546d484ac06fdeb6da154ae6364fe04efa1529802b294f32a9f5acaa"
|
|
39
39
|
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"certificate": "graph-release",
|
|
4
|
+
"platform": "linux",
|
|
5
|
+
"opencodeVersion": "2.0.5",
|
|
6
|
+
"shadowCertificateDigest": "883dd431b507bc6faeeabf9ea073016a6917c92237805918655e70923315ffe5",
|
|
7
|
+
"evidence": {
|
|
8
|
+
"opencodeVersion": "2.0.5",
|
|
9
|
+
"platform": "linux",
|
|
10
|
+
"shadowCertificateDigest": "883dd431b507bc6faeeabf9ea073016a6917c92237805918655e70923315ffe5",
|
|
11
|
+
"determinism": {
|
|
12
|
+
"runs": 13,
|
|
13
|
+
"allMatch": true
|
|
14
|
+
},
|
|
15
|
+
"crashRecovery": {
|
|
16
|
+
"scenarios": 18,
|
|
17
|
+
"allConverge": true
|
|
18
|
+
},
|
|
19
|
+
"replayEquivalence": {
|
|
20
|
+
"checks": 6,
|
|
21
|
+
"allEquivalent": true
|
|
22
|
+
},
|
|
23
|
+
"privacy": {
|
|
24
|
+
"surfacesScanned": 8,
|
|
25
|
+
"rawFindings": 0
|
|
26
|
+
},
|
|
27
|
+
"contract": {
|
|
28
|
+
"roundTrips": 14,
|
|
29
|
+
"allSettled": true
|
|
30
|
+
},
|
|
31
|
+
"health": {
|
|
32
|
+
"samples": 3,
|
|
33
|
+
"bounded": true,
|
|
34
|
+
"idempotent": true
|
|
35
|
+
},
|
|
36
|
+
"performance": {
|
|
37
|
+
"p95Millis": 0.509454999999889,
|
|
38
|
+
"budgetMillis": 50,
|
|
39
|
+
"samples": 100
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"verdict": "pass",
|
|
43
|
+
"failedGates": [],
|
|
44
|
+
"digest": "61b110f9ef4b49049d1bb8c0beb818c35fcacf3344af6f4b5963058f5d98dac8"
|
|
45
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"certificate": "graph-shadow",
|
|
4
|
+
"opencodeVersion": "2.0.5",
|
|
5
|
+
"evidence": {
|
|
6
|
+
"opencodeVersion": "2.0.5",
|
|
7
|
+
"parity": {
|
|
8
|
+
"runs": 1000,
|
|
9
|
+
"match": 1000,
|
|
10
|
+
"divergent": 0,
|
|
11
|
+
"inconclusive": 0,
|
|
12
|
+
"divergences": []
|
|
13
|
+
},
|
|
14
|
+
"legacy": {
|
|
15
|
+
"observed": 1000,
|
|
16
|
+
"duplicated": 0
|
|
17
|
+
},
|
|
18
|
+
"privacy": {
|
|
19
|
+
"surfacesScanned": 5,
|
|
20
|
+
"rawFindings": 0
|
|
21
|
+
},
|
|
22
|
+
"overhead": {
|
|
23
|
+
"p95Millis": 0.18683999999996104,
|
|
24
|
+
"budgetMillis": 25,
|
|
25
|
+
"samples": 1000
|
|
26
|
+
},
|
|
27
|
+
"provenance": {
|
|
28
|
+
"status": "validated",
|
|
29
|
+
"order": "recomputed",
|
|
30
|
+
"roles": "recomputed",
|
|
31
|
+
"models": "carried",
|
|
32
|
+
"fixes": "recomputed",
|
|
33
|
+
"outcome": "carried"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"verdict": "pass",
|
|
37
|
+
"failedGates": [],
|
|
38
|
+
"digest": "44eeb60534a6b735c4be99d185d3239a64ea4f6b737d4de5a83c671373fea913"
|
|
39
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consoleRuntimeState.d.ts","sourceRoot":"","sources":["../../src/cli/consoleRuntimeState.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"consoleRuntimeState.d.ts","sourceRoot":"","sources":["../../src/cli/consoleRuntimeState.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,8BAA8B,EAAG,CAAU,CAAC;AACzD,eAAO,MAAM,yBAAyB,qCAAqC,CAAC;AAC5E,eAAO,MAAM,oBAAoB,iBAAiB,CAAC;AACnD,eAAO,MAAM,wBAAwB,gBAAgB,CAAC;AACtD,eAAO,MAAM,gBAAgB,gBAAgB,CAAC;AAE9C,eAAO,MAAM,yBAAyB;;;;;;;;;;kBAY3B,CAAC;AAEZ,eAAO,MAAM,uBAAuB;;;;;;kBAQzB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,MAAM,MAAM,mBAAmB,GAAG;IAChC,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,qBAAa,4BAA6B,SAAQ,KAAK;aAEnC,IAAI,EAAE,MAAM;IAD9B,YACkB,IAAI,EAAE,MAAM,EAC5B,MAAM,EAAE,MAAM,EAIf;CACF;AA8BD,wBAAgB,0BAA0B,CACxC,aAAa,EAAE,MAAM,GACpB,mBAAmB,CASrB;AAED,wBAAsB,uBAAuB,CAC3C,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,mBAAmB,GAAG,SAAS,CAAC,CAU1C;AAED,wBAAsB,wBAAwB,CAC5C,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,mBAAmB,GACzB,OAAO,CAAC,IAAI,CAAC,CAwBf;AAED,wBAAsB,yBAAyB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAQ3E;AAED,wBAAsB,gCAAgC,CACpD,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE;IAAE,GAAG,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,GACvC,OAAO,CAAC,OAAO,CAAC,CAoBlB;AAED,wBAAsB,qBAAqB,CACzC,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC,CAUxC;AAED,wBAAsB,uBAAuB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAQzE;AAED,wBAAsB,wBAAwB,CAC5C,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,iBAAiB,GACtB,OAAO,CAAC;IAAE,OAAO,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAA;CAAE,GAAG,MAAM,CAAC,CAgCpD"}
|
|
@@ -30,12 +30,13 @@ export type ConsoleServeDeps = {
|
|
|
30
30
|
log: (message: string) => void;
|
|
31
31
|
/** `OPENCODE_SERVER_PASSWORD` si el servidor opencode la exige. Opcional. */
|
|
32
32
|
serverPassword?: string;
|
|
33
|
+
serverUsername?: string;
|
|
33
34
|
/** Genera el token efímero de la Console. Inyectable en tests. */
|
|
34
35
|
generateToken?: () => string;
|
|
35
36
|
/** Factoría de cliente opencode. Inyectable en tests. */
|
|
36
37
|
createConsoleClient?: (endpoint: string) => ConsoleClient;
|
|
37
38
|
/** Factoría de cliente PTY. Inyectable en tests. */
|
|
38
|
-
createPtyClient?: (endpoint: string) => PtyClient;
|
|
39
|
+
createPtyClient?: (endpoint: string, sessionID: string) => PtyClient;
|
|
39
40
|
/** Inyectable para tests; por defecto `startConsole`. */
|
|
40
41
|
startConsole?: (deps: ConsoleRuntimeDeps) => ConsoleRuntime | Promise<ConsoleRuntime>;
|
|
41
42
|
/** Abre el navegador en la URL dada (opcional; solo con `--open`). */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consoleServe.d.ts","sourceRoot":"","sources":["../../src/cli/consoleServe.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAEpD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAGvD,OAAO,EACL,KAAK,aAAa,EAEnB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAmB,KAAK,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEjE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAErE,OAAO,EACL,KAAK,sBAAsB,EAE5B,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAO3D,OAAO,KAAK,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAQvE,OAAO,EAEL,KAAK,qBAAqB,EAC3B,MAAM,qBAAqB,CAAC;AAE7B,gEAAgE;AAChE,MAAM,MAAM,gBAAgB,GAAG;IAC7B,UAAU,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;IACtD,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yDAAyD;IACzD,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,+DAA+D;IAC/D,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,qEAAqE;IACrE,OAAO,EAAE,eAAe,CAAC;IACzB,cAAc,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC;IACtD,GAAG,EAAE,MAAM,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,OAAO,CAAC,UAAU,GAAG,SAAS,CAAC,CAAC;IACtD,oEAAoE;IACpE,aAAa,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IACnC,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,6EAA6E;IAC7E,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,kEAAkE;IAClE,aAAa,CAAC,EAAE,MAAM,MAAM,CAAC;IAC7B,yDAAyD;IACzD,mBAAmB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,aAAa,CAAC;IAC1D,oDAAoD;IACpD,eAAe,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"consoleServe.d.ts","sourceRoot":"","sources":["../../src/cli/consoleServe.ts"],"names":[],"mappings":"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"}
|