@salesforce/mcp-provider-lwc-experts 0.2.0 → 0.3.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/index.bundle.d.ts +5 -0
- package/index.bundle.js +135 -554
- package/package.json +9 -5
package/index.bundle.d.ts
CHANGED
|
@@ -24,6 +24,10 @@ export type AdkMcpToolConfig<TInputArgsShape extends z.ZodRawShape = McpToolInpu
|
|
|
24
24
|
* Dependencies of the tool, to be used to determine if the tool should be enabled based on the release state of the dependencies
|
|
25
25
|
*/
|
|
26
26
|
toolDependencies?: AdkMcpTool[];
|
|
27
|
+
/**
|
|
28
|
+
* Optional annotations for the tool
|
|
29
|
+
*/
|
|
30
|
+
annotations?: Record<string, unknown>;
|
|
27
31
|
};
|
|
28
32
|
export type DxMcpServices = Services;
|
|
29
33
|
/**
|
|
@@ -46,6 +50,7 @@ declare abstract class AdkMcpTool<TInputArgsShape extends z.ZodRawShape = McpToo
|
|
|
46
50
|
private toolDependencies;
|
|
47
51
|
private maturity;
|
|
48
52
|
private releaseState;
|
|
53
|
+
private annotations;
|
|
49
54
|
constructor(config: AdkMcpToolConfig<TInputArgsShape>, services: DxMcpServices);
|
|
50
55
|
getReleaseState(): ReleaseState;
|
|
51
56
|
getToolsets(): Toolset[];
|