@liara/cli
Version:
The command line interface for Liara
10 lines (9 loc) • 2.73 kB
TypeScript
export declare const BundlePlanError: {
max_deploy_per_day(bundlePlan: string): "You've reached the maximum of 10 deployments for today on the Free plan. Please try again tomorrow or consider upgrading your feature bundle plan for more deployments." | "You've reached the maximum of 50 deployments for today on the Standard plan. Please try again tomorrow or consider upgrading your feature bundle plan for more deployments." | "Maximum deployment limit reached for today. Please try again tomorrow or consider upgrading your feature bundle plan.";
max_source_size(bundlePlan: string): "The maximum source size is 128MB on the Free plan. Please reduce your source code size or consider upgrading your feature bundle plan." | "The maximum source size is 256MB on the Standard plan. Please reduce your source code size or consider upgrading your feature bundle plan." | "Maximum source size limit reached. Please reduce your source code size.";
max_build_time(bundlePlan: string): "The build timed out after 5 minutes on the Free plan. \n Solutions:\n 1. Try again later.\n 2. Upgrade your feature bundle plan for more build time." | "The build timed out after 10 minutes on the Standard plan.\n Solutions:\n 1. Try again later.\n 2. Upgrade your feature bundle plan for more build time." | "The build timed out after 20 minutes. Please Try again later." | "Build timed out. Please try again or consider upgrading your feature bundle plan for more build time.";
germany_builder_not_allowed(bundlePlan: string): "Deployments to the Germany builder are not allowed on the Free plan. Please upgrade your feature bundle plan for access." | "Deployments to the Germany builder are restricted. Please upgrade your feature bundle plan for access.";
max_logs_period(bundlePlan: string): "On the Free plan, you can only view logs from the past 1 hour. Please upgrade your feature bundle plan to access older logs." | "On the Standard plan, you can only view logs from the past 30 days. Please upgrade your feature bundle plan to access older logs." | "Log retention limit reached. Please upgrade your feature bundle plan to access more logs.";
max_disks_limit(bundlePlan: string): "You can create only 1 disk on the Free plan. Please upgrade your feature bundle plan to create more disks." | "You've reached the limit of 5 disks on the Standard plan. Please upgrade your feature bundle plan to create more disks." | "Disk creation failed. Please try again.\n If you still have problems, please contact support by submitting a ticket at https://console.liara.ir/tickets";
legacy_max_logs_period(): string;
};