UNPKG

@redocly/cli

Version:

[@Redocly](https://redocly.com) CLI is your all-in-one API documentation utility. It builds, manages, improves, and quality-checks your API descriptions, all of which comes in handy for various phases of the API Lifecycle. Create your own rulesets to make

28 lines 897 B
import type { OutputFormat } from '@redocly/openapi-core'; import type { CommandArgs } from '../../wrapper.js'; import type { VerifyConfigOptions } from '../../types.js'; export type PushArgv = { files: string[]; organization: string; project: string; 'mount-path': string; branch: string; author: string; message: string; 'commit-sha'?: string; 'commit-url'?: string; namespace?: string; repository?: string; 'created-at'?: string; 'default-branch': string; domain?: string; 'wait-for-deployment'?: boolean; 'max-execution-time'?: number; 'continue-on-deploy-failures'?: boolean; verbose?: boolean; format?: Extract<OutputFormat, 'stylish'>; } & VerifyConfigOptions; export declare function handlePush({ argv, config, }: CommandArgs<PushArgv>): Promise<{ pushId: string; } | void>; //# sourceMappingURL=push.d.ts.map