@wix/app-extensions 1.0.108 → 1.0.109
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +6 -6
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +6 -6
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -26605,7 +26605,7 @@ interface ToolsProviderConfig {
|
|
|
26605
26605
|
}
|
|
26606
26606
|
interface AppTools {
|
|
26607
26607
|
/**
|
|
26608
|
-
*
|
|
26608
|
+
* Tools exposed by this provider
|
|
26609
26609
|
* @minSize 1
|
|
26610
26610
|
* @maxSize 100
|
|
26611
26611
|
*/
|
|
@@ -26614,22 +26614,22 @@ interface AppTools {
|
|
|
26614
26614
|
/** @internal */
|
|
26615
26615
|
interface AppToolConfig {
|
|
26616
26616
|
/**
|
|
26617
|
-
*
|
|
26617
|
+
* Unique word identifying the tool method, will be used to invoke it.
|
|
26618
26618
|
* @minLength 1
|
|
26619
26619
|
* @maxLength 30
|
|
26620
26620
|
*/
|
|
26621
26621
|
methodName?: string;
|
|
26622
26622
|
/**
|
|
26623
|
-
*
|
|
26623
|
+
* Human-readable description of what this tool does
|
|
26624
26624
|
* @minLength 10
|
|
26625
26625
|
* @maxLength 1000
|
|
26626
26626
|
*/
|
|
26627
26627
|
description?: string;
|
|
26628
|
-
/** JSON Schema describing the tool's
|
|
26628
|
+
/** JSON Schema describing the tool's request payload */
|
|
26629
26629
|
requestSchema?: Record<string, any> | null;
|
|
26630
|
-
/** JSON Schema describing the tool's response
|
|
26630
|
+
/** JSON Schema describing the tool's response payload */
|
|
26631
26631
|
responseSchema?: Record<string, any> | null;
|
|
26632
|
-
/** Whether the tool is
|
|
26632
|
+
/** Whether the tool is currently active */
|
|
26633
26633
|
activated?: boolean;
|
|
26634
26634
|
}
|
|
26635
26635
|
/** @internal */
|