UNPKG

forge-deploy-cli

Version:

Professional CLI for local deployments with automatic subdomain routing, SSL certificates, and infrastructure management

20 lines 771 B
/** * Cloudflare service for CLI - now delegates to API * * Note: For security reasons, Cloudflare API tokens are managed server-side. * This service provides a compatibility layer but all DNS operations are * handled via the Forge API endpoints. */ export declare class CloudflareService { /** * @deprecated Use ForgeApiService.createSubdomain() instead * This method is maintained for compatibility but delegates to the API */ static updateSubdomainRecord(subdomain: string, publicIP: string): Promise<void>; /** * @deprecated Cloudflare credentials are now managed server-side */ static loadFromCredentials(): Promise<CloudflareService | null>; } export default CloudflareService; //# sourceMappingURL=cloudflare.d.ts.map