@evolvingmachines/sdk 0.0.26 → 0.0.27
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.cjs +31 -31
- package/dist/index.d.cts +0 -5
- package/dist/index.d.ts +0 -5
- package/dist/index.js +31 -31
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -464,8 +464,6 @@ interface AgentConfig {
|
|
|
464
464
|
model?: string;
|
|
465
465
|
/** Reasoning effort for Codex models */
|
|
466
466
|
reasoningEffort?: ReasoningEffort;
|
|
467
|
-
/** Beta headers for Claude (Sonnet 4.5 only) */
|
|
468
|
-
betas?: string[];
|
|
469
467
|
}
|
|
470
468
|
/** Resolved agent config (output of resolution, not an extension of input) */
|
|
471
469
|
interface ResolvedAgentConfig {
|
|
@@ -478,7 +476,6 @@ interface ResolvedAgentConfig {
|
|
|
478
476
|
oauthFileContent?: string;
|
|
479
477
|
model?: string;
|
|
480
478
|
reasoningEffort?: ReasoningEffort;
|
|
481
|
-
betas?: string[];
|
|
482
479
|
}
|
|
483
480
|
/** Options for Agent constructor */
|
|
484
481
|
interface AgentOptions {
|
|
@@ -1550,7 +1547,6 @@ interface AgentOverride {
|
|
|
1550
1547
|
type: AgentType;
|
|
1551
1548
|
model?: string;
|
|
1552
1549
|
reasoningEffort?: ReasoningEffort;
|
|
1553
|
-
betas?: string[];
|
|
1554
1550
|
}
|
|
1555
1551
|
interface SwarmConfig {
|
|
1556
1552
|
/** Default agent for all operations (defaults to env resolution) */
|
|
@@ -2342,7 +2338,6 @@ interface BuildCommandOptions {
|
|
|
2342
2338
|
model: string;
|
|
2343
2339
|
isResume: boolean;
|
|
2344
2340
|
reasoningEffort?: string;
|
|
2345
|
-
betas?: string[];
|
|
2346
2341
|
isDirectMode?: boolean;
|
|
2347
2342
|
/** Skills enabled for this run */
|
|
2348
2343
|
skills?: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -464,8 +464,6 @@ interface AgentConfig {
|
|
|
464
464
|
model?: string;
|
|
465
465
|
/** Reasoning effort for Codex models */
|
|
466
466
|
reasoningEffort?: ReasoningEffort;
|
|
467
|
-
/** Beta headers for Claude (Sonnet 4.5 only) */
|
|
468
|
-
betas?: string[];
|
|
469
467
|
}
|
|
470
468
|
/** Resolved agent config (output of resolution, not an extension of input) */
|
|
471
469
|
interface ResolvedAgentConfig {
|
|
@@ -478,7 +476,6 @@ interface ResolvedAgentConfig {
|
|
|
478
476
|
oauthFileContent?: string;
|
|
479
477
|
model?: string;
|
|
480
478
|
reasoningEffort?: ReasoningEffort;
|
|
481
|
-
betas?: string[];
|
|
482
479
|
}
|
|
483
480
|
/** Options for Agent constructor */
|
|
484
481
|
interface AgentOptions {
|
|
@@ -1550,7 +1547,6 @@ interface AgentOverride {
|
|
|
1550
1547
|
type: AgentType;
|
|
1551
1548
|
model?: string;
|
|
1552
1549
|
reasoningEffort?: ReasoningEffort;
|
|
1553
|
-
betas?: string[];
|
|
1554
1550
|
}
|
|
1555
1551
|
interface SwarmConfig {
|
|
1556
1552
|
/** Default agent for all operations (defaults to env resolution) */
|
|
@@ -2342,7 +2338,6 @@ interface BuildCommandOptions {
|
|
|
2342
2338
|
model: string;
|
|
2343
2339
|
isResume: boolean;
|
|
2344
2340
|
reasoningEffort?: string;
|
|
2345
|
-
betas?: string[];
|
|
2346
2341
|
isDirectMode?: boolean;
|
|
2347
2342
|
/** Skills enabled for this run */
|
|
2348
2343
|
skills?: string[];
|