@gsb-core/mcp-docs
Version:
Documentation for GSB MCP implementations
54 lines (40 loc) • 1.5 kB
JavaScript
/**
* Documentation for the getWorkflowInstanceResult operation
*/
/**
* Returns documentation for the getWorkflowInstanceResult operation
* @return {string} markdown documentation
*/
export function getWorkflowInstanceResultDocs() {
return `
The \`getWorkflowInstanceResult\` operation retrieves the result of a completed workflow instance.
This documentation is a placeholder. The getWorkflowInstanceResult operation details will be updated in a future release.
This section will be updated with the correct parameters in a future release.
This section will be updated with the correct response format in a future release.
This section will be updated with examples in a future release.
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