UNPKG

@reliverse/rse-sdk

Version:

@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).

13 lines (12 loc) 905 B
import type { RseConfig } from "@reliverse/cfg"; import type { DeploymentService } from "../../../../sdk-types.js"; import type { InstanceGithub } from "../../../../utils/instanceGithub.js"; import type { InstanceVercel } from "../../../../utils/instanceVercel.js"; import type { ReliverseMemory } from "../../../../utils/schemaMemory.js"; export declare function selectDeploymentService(config: RseConfig): Promise<DeploymentService>; export declare function deployProject(githubInstance: InstanceGithub, vercelInstance: InstanceVercel, vercelToken: string, githubToken: string, skipPrompts: boolean, projectName: string, config: RseConfig, projectPath: string, primaryDomain: string, memory: ReliverseMemory, deployMode: "new" | "update", githubUsername: string): Promise<{ deployService: DeploymentService | "none"; primaryDomain: string; isDeployed: boolean; allDomains: string[]; }>;