@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.
Files changed (38) hide show
  1. package/dist/built-in-routes.js +479 -412
  2. package/dist/built-in-routes.js.map +1 -1
  3. package/dist/client/ApiKeysView.js +1 -1
  4. package/dist/client/CenteredContentView.js +1 -1
  5. package/dist/client/CompositionView.js +1 -1
  6. package/dist/client/ConfirmDialog.vue_vue_type_script_setup_true_lang.js +1 -1
  7. package/dist/client/CopyButton.vue_vue_type_script_setup_true_lang.js +1 -1
  8. package/dist/client/DataTable.vue_vue_type_script_setup_true_lang.js +1 -1
  9. package/dist/client/JsonViewer.js +1 -1
  10. package/dist/client/LoginView.js +1 -1
  11. package/dist/client/Modal.vue_vue_type_script_setup_true_lang.js +1 -1
  12. package/dist/client/ModelModal.vue_vue_type_script_setup_true_lang.js +1 -1
  13. package/dist/client/ModelsView.js +1 -1
  14. package/dist/client/PromptEditView.js +1 -1
  15. package/dist/client/PromptModal.js +1 -1
  16. package/dist/client/PromptsView.js +1 -1
  17. package/dist/client/ProvidersView.js +2 -2
  18. package/dist/client/ThreadInspectorPane.vue_vue_type_script_setup_true_lang.js +1 -1
  19. package/dist/client/ToolsView.js +1 -1
  20. package/dist/client/UsersView.js +1 -1
  21. package/dist/client/VariablesView.js +1 -1
  22. package/dist/client/assets/index.css +1 -1
  23. package/dist/client/index.js +3 -3
  24. package/dist/{discovery-DVviz3By.d.ts → discovery-DiMJWisl.d.ts} +1 -1
  25. package/dist/{index-BwqQtJ4r.d.ts → index-BnrKzXpJ.d.ts} +4 -5
  26. package/dist/index.d.ts +116 -3402
  27. package/dist/index.js +212 -345
  28. package/dist/index.js.map +1 -1
  29. package/dist/packing.d.ts +3 -3
  30. package/dist/plugin.d.ts +5 -4
  31. package/dist/plugin.js +143 -78
  32. package/dist/plugin.js.map +1 -1
  33. package/dist/runtime.d.ts +3127 -0
  34. package/dist/runtime.js +21219 -0
  35. package/dist/runtime.js.map +1 -0
  36. package/dist/test.d.ts +2 -2
  37. package/dist/{types-DH3Egc5l.d.ts → types-Bpe7IANZ.d.ts} +1 -1
  38. package/package.json +10 -9
@@ -1,4 +1,4 @@
1
- import { D as DiscoveredPackage } from './types-DH3Egc5l.js';
1
+ import { D as DiscoveredPackage } from './types-Bpe7IANZ.js';
2
2
  import { PackageSignature } from '@standardagents/spec';
3
3
 
4
4
  /**
@@ -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-DH3Egc5l.js';
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 AttachmentRef as A, type BuilderController as B, type Env as E, type FileRecord 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 ThreadEnv as T, type ThreadMetadata as a, type FlowState as b, type FileStats as c, type MessageContent as d, type ThreadInstance as e, defineController as f, createThreadEndpointHandler as g, type BuilderControllerContext as h, type ThreadEndpointContext as i, type BuilderThreadEndpointHandler as j, type Agent as k, type ToolCall as l, type ToolResult as m, type FlowResult as n, type TelemetryEvent as o, type TextContentPart as p, type ImageContentPart as q, type MultimodalContent as r };
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 };