@standardagents/builder 0.15.3 → 0.16.1-next.1e58032
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/built-in-routes.js +479 -412
- package/dist/built-in-routes.js.map +1 -1
- package/dist/client/ApiKeysView.js +1 -1
- package/dist/client/CenteredContentView.js +1 -1
- package/dist/client/CompositionView.js +1 -1
- package/dist/client/ConfirmDialog.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/client/CopyButton.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/client/DataTable.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/client/JsonViewer.js +1 -1
- package/dist/client/LoginView.js +1 -1
- package/dist/client/Modal.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/client/ModelModal.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/client/ModelsView.js +1 -1
- package/dist/client/PromptEditView.js +1 -1
- package/dist/client/PromptModal.js +1 -1
- package/dist/client/PromptsView.js +1 -1
- package/dist/client/ProvidersView.js +2 -2
- package/dist/client/ThreadInspectorPane.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/client/ToolsView.js +1 -1
- package/dist/client/UsersView.js +1 -1
- package/dist/client/VariablesView.js +1 -1
- package/dist/client/assets/index.css +1 -1
- package/dist/client/index.js +3 -3
- package/dist/{discovery-DVviz3By.d.ts → discovery-DiMJWisl.d.ts} +1 -1
- package/dist/{index-BwqQtJ4r.d.ts → index-BnrKzXpJ.d.ts} +4 -5
- package/dist/index.d.ts +116 -3402
- package/dist/index.js +212 -345
- package/dist/index.js.map +1 -1
- package/dist/packing.d.ts +3 -3
- package/dist/plugin.d.ts +5 -4
- package/dist/plugin.js +143 -78
- package/dist/plugin.js.map +1 -1
- package/dist/runtime.d.ts +3127 -0
- package/dist/runtime.js +21219 -0
- package/dist/runtime.js.map +1 -0
- package/dist/test.d.ts +2 -2
- package/dist/{types-DH3Egc5l.d.ts → types-Bpe7IANZ.d.ts} +1 -1
- package/package.json +10 -9
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DurableObjectStorage } from '@cloudflare/workers-types';
|
|
2
2
|
import { ZodObject, ZodRawShape } from 'zod';
|
|
3
|
-
import { N as NamespacedRegistry } from './types-
|
|
3
|
+
import { N as NamespacedRegistry } from './types-Bpe7IANZ.js';
|
|
4
4
|
import { ToolResult as ToolResult$1, VariableDefinition, HookName, HookSignatures, ThreadState, HookMessage, HookToolCall, HookToolResult, CodeExecutionOptions, CodeExecutionResult, InjectMessageInput, QueueMessageInput, SubagentRegistryEntry, AgentDefinition, ControllerContext, Controller, ThreadEndpointHandler } from '@standardagents/spec';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -648,6 +648,8 @@ interface LLMResponse {
|
|
|
648
648
|
};
|
|
649
649
|
/** @internal Provider instance reference for async metadata fetching */
|
|
650
650
|
_provider?: unknown;
|
|
651
|
+
/** @internal True when the request routed through the Standard Agents platform passthrough */
|
|
652
|
+
_viaPlatform?: boolean;
|
|
651
653
|
/** @internal Provider response ID for async metadata fetching */
|
|
652
654
|
_providerResponseId?: string;
|
|
653
655
|
/** @internal Aggregate response for logging */
|
|
@@ -825,9 +827,6 @@ interface Env extends ThreadEnv {
|
|
|
825
827
|
};
|
|
826
828
|
AGENT_BUILDER_CODE_LOADER?: WorkerLoader;
|
|
827
829
|
AGENT_BUILDER_CODE_COMPATIBILITY_DATE?: string;
|
|
828
|
-
GITHUB_TOKEN?: string;
|
|
829
|
-
GITHUB_REPO?: string;
|
|
830
|
-
GITHUB_BRANCH?: string;
|
|
831
830
|
SUPER_ADMIN_PASSWORD?: string;
|
|
832
831
|
ENCRYPTION_KEY?: string;
|
|
833
832
|
[key: string]: unknown;
|
|
@@ -1364,4 +1363,4 @@ declare function defineController<Env extends ThreadEnv = ThreadEnv>(controller:
|
|
|
1364
1363
|
*/
|
|
1365
1364
|
declare function createThreadEndpointHandler<Env extends ThreadEnv = ThreadEnv>(handler: ThreadEndpointHandler): BuilderController<Env>;
|
|
1366
1365
|
|
|
1367
|
-
export { type
|
|
1366
|
+
export { type Agent as A, type BuilderController as B, type Env as E, type FlowState as F, type GrepResult as G, type ImageMetadata as I, type LLMResponse as L, type Message as M, type RequestContext as R, type StorageBackend as S, type ToolCall as T, type BuilderControllerContext as a, type ThreadEndpointContext as b, createThreadEndpointHandler as c, defineController as d, type ThreadEnv as e, type BuilderThreadEndpointHandler as f, type ThreadInstance as g, type ThreadMetadata as h, type ToolResult as i, type FlowResult as j, type TelemetryEvent as k, type FileRecord as l, type AttachmentRef as m, type FileStats as n, type TextContentPart as o, type ImageContentPart as p, type MultimodalContent as q, type MessageContent as r };
|