@sentry/junior-plugin-api 0.60.1 → 0.62.0
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/index.d.ts +10 -0
- package/package.json +1 -1
- package/src/index.ts +10 -0
package/dist/index.d.ts
CHANGED
|
@@ -75,7 +75,17 @@ export interface AgentPluginToolDefinition<TInput = unknown> {
|
|
|
75
75
|
executionMode?: unknown;
|
|
76
76
|
inputSchema: unknown;
|
|
77
77
|
prepareArguments?: (args: unknown) => unknown;
|
|
78
|
+
/**
|
|
79
|
+
* @deprecated Put tool-selection and usage guidance directly in `description`
|
|
80
|
+
* and parameter descriptions. Retained for compatibility; may be removed in a
|
|
81
|
+
* future major version.
|
|
82
|
+
*/
|
|
78
83
|
promptGuidelines?: string[];
|
|
84
|
+
/**
|
|
85
|
+
* @deprecated Put tool-selection and usage guidance directly in `description`
|
|
86
|
+
* and parameter descriptions. Retained for compatibility; may be removed in a
|
|
87
|
+
* future major version.
|
|
88
|
+
*/
|
|
79
89
|
promptSnippet?: string;
|
|
80
90
|
execute?: AgentPluginToolExecute<TInput>;
|
|
81
91
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -88,7 +88,17 @@ export interface AgentPluginToolDefinition<TInput = unknown> {
|
|
|
88
88
|
executionMode?: unknown;
|
|
89
89
|
inputSchema: unknown;
|
|
90
90
|
prepareArguments?: (args: unknown) => unknown;
|
|
91
|
+
/**
|
|
92
|
+
* @deprecated Put tool-selection and usage guidance directly in `description`
|
|
93
|
+
* and parameter descriptions. Retained for compatibility; may be removed in a
|
|
94
|
+
* future major version.
|
|
95
|
+
*/
|
|
91
96
|
promptGuidelines?: string[];
|
|
97
|
+
/**
|
|
98
|
+
* @deprecated Put tool-selection and usage guidance directly in `description`
|
|
99
|
+
* and parameter descriptions. Retained for compatibility; may be removed in a
|
|
100
|
+
* future major version.
|
|
101
|
+
*/
|
|
92
102
|
promptSnippet?: string;
|
|
93
103
|
execute?: AgentPluginToolExecute<TInput>;
|
|
94
104
|
}
|