UNPKG

@adinsure-ops/ops-cli

Version:

Operations CLI for working with AdInsure

28 lines (27 loc) 1.38 kB
import { AxiosResponse } from 'axios'; import CommandBase from '../../command.base.js'; export default class DownloadScheduler extends CommandBase<typeof DownloadScheduler> { static description: string; static usage: string; static examples: string[]; static flags: { source: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; version: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; output: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; }; private readonly url_azure; private readonly url_gitlabru; /** * Get unique AdInsureScheduler zip by specified version * @param {string} version The version of AdInsureScheduler * @returns {Promise<AxiosResponse<any, any>>} */ downloadFileFromAzure(version: string): Promise<AxiosResponse<any, any>>; /** * Get unique AdInsureScheduler zip by specified version * @param {string} version The version of AdInsureScheduler * @returns {Promise<AxiosResponse<any, any>>} */ downloadFileFromGitLabRu(version: string): Promise<AxiosResponse<any>>; run(): Promise<void>; }