UNPKG

bump-cli

Version:

The Bump CLI is used to interact with your API documentation hosted on Bump.sh by using the API of developers.bump.sh

11 lines (10 loc) 573 B
import { BumpApi } from '../api/index.js'; import { WorkflowVersionRequest, WorkflowVersionResponse } from '../api/models.js'; import { API } from '../definition.js'; export declare class WorkflowDeploy { private _bump; constructor(bumpClient: BumpApi); protected createWorkflowVersion(mcpServer: string, request: WorkflowVersionRequest, token: string): Promise<WorkflowVersionResponse | undefined>; d(formatter: any, ...args: any[]): void; run(workflowDefinition: API, mcpServer: string, token: string): Promise<WorkflowVersionResponse | undefined>; }