@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.
- package/dist/bin/siglume.cjs.map +1 -1
- package/dist/bin/siglume.js.map +1 -1
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +7 -0
- package/dist/cli/index.d.ts +7 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.d.cts
CHANGED
|
@@ -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;
|
package/dist/cli/index.d.ts
CHANGED
|
@@ -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;
|