/**
 * Documentation for the startWorkflow operation
 */

/**
 * Returns documentation for the startWorkflow operation
 * @return {string} markdown documentation
 */
export function startWorkflowDocs(): string {
  return `
# StartWorkflow Operation

## General Description

The \`startWorkflow\` operation initiates a workflow asynchronously.

## Detailed Description

This documentation is a placeholder. The startWorkflow 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 startWorkflow operation.
 * @return {string} A short description of the function.
 */
export function startWorkflowSummary(): string {
  return `
**Purpose**: Initiates a workflow asynchronously.

**When to use**:
- Long-running workflows
- Workflows requiring user interaction

**Note**: Placeholder - full documentation coming in future release.
`;
}

export default startWorkflowDocs; 