@capgo/cli
Version:
A CLI to upload to capgo servers
29 lines (28 loc) • 926 B
TypeScript
import type { OptionsBase } from '../schemas/base';
export declare function listOrganizationsInternal(options: OptionsBase, silent?: boolean): Promise<{
"2fa_has_access": boolean;
app_count: number;
can_use_more: boolean;
created_by: string;
credit_available: number;
credit_next_expiration: string;
credit_total: number;
enforce_hashed_api_keys: boolean;
enforcing_2fa: boolean;
gid: string;
is_canceled: boolean;
is_yearly: boolean;
logo: string;
management_email: string;
name: string;
next_stats_update_at: string;
password_has_access: boolean;
password_policy_config: import("../types/supabase.types").Json;
paying: boolean;
role: string;
stats_updated_at: string;
subscription_end: string;
subscription_start: string;
trial_left: number;
}[]>;
export declare function listOrganizations(options: OptionsBase): Promise<void>;