@codeam/shared 2.61.47 → 2.61.49
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -273,7 +273,7 @@ declare const HOUSE_AGENT_SUBTITLE = "Included \u2014 no setup";
|
|
|
273
273
|
* endpoints and the mobile/web surfaces speak. The internal `AgentId`
|
|
274
274
|
* (`'claude' | 'codex' | …`) is what the runtimes / provisioning key on.
|
|
275
275
|
*/
|
|
276
|
-
type LinkedAgentId = 'claude_code' | 'codex' | 'cursor' | 'aider' | 'coderabbit' | 'gemini' | 'kimi' | typeof HOUSE_AGENT_ID;
|
|
276
|
+
type LinkedAgentId = 'claude_code' | 'codex' | 'cursor' | 'aider' | 'coderabbit' | 'gemini' | 'kimi' | 'omniroute' | typeof HOUSE_AGENT_ID;
|
|
277
277
|
declare const LINKED_AGENT_IDS: readonly LinkedAgentId[];
|
|
278
278
|
declare function isLinkedAgentId(value: string): value is LinkedAgentId;
|
|
279
279
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -273,7 +273,7 @@ declare const HOUSE_AGENT_SUBTITLE = "Included \u2014 no setup";
|
|
|
273
273
|
* endpoints and the mobile/web surfaces speak. The internal `AgentId`
|
|
274
274
|
* (`'claude' | 'codex' | …`) is what the runtimes / provisioning key on.
|
|
275
275
|
*/
|
|
276
|
-
type LinkedAgentId = 'claude_code' | 'codex' | 'cursor' | 'aider' | 'coderabbit' | 'gemini' | 'kimi' | typeof HOUSE_AGENT_ID;
|
|
276
|
+
type LinkedAgentId = 'claude_code' | 'codex' | 'cursor' | 'aider' | 'coderabbit' | 'gemini' | 'kimi' | 'omniroute' | typeof HOUSE_AGENT_ID;
|
|
277
277
|
declare const LINKED_AGENT_IDS: readonly LinkedAgentId[];
|
|
278
278
|
declare function isLinkedAgentId(value: string): value is LinkedAgentId;
|
|
279
279
|
/**
|
package/dist/index.js
CHANGED
|
@@ -459,6 +459,7 @@ var LINKED_AGENT_IDS = [
|
|
|
459
459
|
"coderabbit",
|
|
460
460
|
"gemini",
|
|
461
461
|
"kimi",
|
|
462
|
+
"omniroute",
|
|
462
463
|
HOUSE_AGENT_ID
|
|
463
464
|
];
|
|
464
465
|
function isLinkedAgentId(value) {
|
|
@@ -477,6 +478,11 @@ var PUBLIC_TO_INTERNAL = {
|
|
|
477
478
|
coderabbit: "coderabbit",
|
|
478
479
|
gemini: "gemini",
|
|
479
480
|
kimi: "kimi",
|
|
481
|
+
// OmniRoute runs Claude Code under the hood, pointed at the user's OmniRoute
|
|
482
|
+
// gateway (their vaulted base URL + token) instead of the house MiniMax
|
|
483
|
+
// proxy. Same internal runtime as the house agent — `claude` — differing only
|
|
484
|
+
// in WHERE Anthropic env is pointed (a buildOmniRouteBootstrap variant).
|
|
485
|
+
omniroute: "claude",
|
|
480
486
|
// The house agent runs Claude Code under the hood (pointed at the
|
|
481
487
|
// MiniMax proxy). Its internal runtime is therefore `claude`.
|
|
482
488
|
[HOUSE_AGENT_ID]: "claude"
|