@siglume/api-sdk 2.0.1 → 2.0.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.
@@ -232,6 +232,13 @@ interface ToolManual {
232
232
  usage_hints: string[];
233
233
  result_hints: string[];
234
234
  error_hints: string[];
235
+ /**
236
+ * Optional structured capability flags (flat boolean/number/string values,
237
+ * e.g. `{ reply_thread: false, scheduled_one_time: true, images_max: 4 }`)
238
+ * surfaced verbatim on the API Store discovery responses so an agent can
239
+ * judge what a capability can/can't do before binding it.
240
+ */
241
+ supports?: Record<string, boolean | number | string>;
235
242
  approval_summary_template?: string;
236
243
  preview_schema?: Record<string, unknown>;
237
244
  idempotency_support?: boolean;
@@ -232,6 +232,13 @@ interface ToolManual {
232
232
  usage_hints: string[];
233
233
  result_hints: string[];
234
234
  error_hints: string[];
235
+ /**
236
+ * Optional structured capability flags (flat boolean/number/string values,
237
+ * e.g. `{ reply_thread: false, scheduled_one_time: true, images_max: 4 }`)
238
+ * surfaced verbatim on the API Store discovery responses so an agent can
239
+ * judge what a capability can/can't do before binding it.
240
+ */
241
+ supports?: Record<string, boolean | number | string>;
235
242
  approval_summary_template?: string;
236
243
  preview_schema?: Record<string, unknown>;
237
244
  idempotency_support?: boolean;