@superdoc/sdk 2.11.0-next.13 → 2.11.0-next.3

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.
@@ -586,7 +586,6 @@ exports.LIST_ITEM_SCHEMA = LIST_ITEM_SCHEMA;
586
586
  exports.PUBLIC_AGENT_TOOL_NAMES = PUBLIC_AGENT_TOOL_NAMES;
587
587
  exports.RUN_MARKS_SCHEMA = RUN_MARKS_SCHEMA;
588
588
  exports.SELECTOR_SCHEMA = SELECTOR_SCHEMA;
589
- exports.buildPerformActionDefinition = buildPerformActionDefinition;
590
589
  exports.isAgentToolName = isAgentToolName;
591
590
  exports.listAgentTools = listAgentTools;
592
591
  exports.validateExclusions = validateExclusions;
@@ -317,14 +317,6 @@ export declare const CELL_SCHEMA: {
317
317
  * tool advertises those after `action`.
318
318
  */
319
319
  export declare const ACTION_ARG_SCHEMA: Record<string, unknown>;
320
- /**
321
- * Build the `superdoc_perform_action` tool definition for a given action set.
322
- * The default (all actions) is what `AGENT_TOOL_DEFINITIONS` carries; callers
323
- * excluding actions get a coherently narrowed definition: enum, grouped
324
- * description, AND the advertised argument properties all shrink together
325
- * (an arg no remaining action declares is not advertised).
326
- */
327
- export declare function buildPerformActionDefinition(includedActions: readonly string[]): AgentToolDefinition;
328
320
  export declare const AGENT_TOOL_DEFINITIONS: readonly AgentToolDefinition[];
329
321
  /** Customer-facing narrowing of the advertised tool surface. */
330
322
  export interface ListAgentToolsOptions {
@@ -306,7 +306,7 @@ function buildActionDescription(included) {
306
306
  * description, AND the advertised argument properties all shrink together
307
307
  * (an arg no remaining action declares is not advertised).
308
308
  */
309
- export function buildPerformActionDefinition(includedActions) {
309
+ function buildPerformActionDefinition(includedActions) {
310
310
  const included = new Set(includedActions);
311
311
  return {
312
312
  name: 'superdoc_perform_action',