UNPKG

@gsb-core/mcp-docs

Version:

Documentation for GSB MCP implementations

54 lines (40 loc) 1.5 kB
/** * Documentation for the getWorkflowInstanceResult operation */ /** * Returns documentation for the getWorkflowInstanceResult operation * @return {string} markdown documentation */ export function getWorkflowInstanceResultDocs() { return ` # GetWorkflowInstanceResult Operation ## General Description The \`getWorkflowInstanceResult\` operation retrieves the result of a completed workflow instance. ## Detailed Description This documentation is a placeholder. The getWorkflowInstanceResult operation details will be updated in a future release. ## Input Parameters This section will be updated with the correct parameters in a future release. ## Response This section will be updated with the correct response format in a future release. ## Example Usage This section will be updated with examples in a future release. ## Additional Information This section will be updated with additional information in a future release. `; } /** * Returns a brief summary of the getWorkflowInstanceResult operation. * @return {string} A short description of the function. */ export function getWorkflowInstanceResultSummary() { return ` **Purpose**: Retrieves result data from a completed workflow instance. **When to use**: - After workflow completion - Need final output values - Analyzing workflow results **Note**: Placeholder - full documentation coming in future release. `; } export default getWorkflowInstanceResultDocs; //# sourceMappingURL=getWorkflowInstanceResult.js.map