@capgo/cli
Version:
A CLI to upload to capgo servers
37 lines (36 loc) • 1.2 kB
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_at: string;
created_by: string;
credit_available: number;
credit_next_expiration: string;
credit_total: number;
enforce_encrypted_bundles: boolean;
enforce_hashed_api_keys: boolean;
enforcing_2fa: boolean;
gid: string;
is_canceled: boolean;
is_yearly: boolean;
logo: string;
management_email: string;
max_apikey_expiration_days: number;
name: string;
next_stats_update_at: string;
password_has_access: boolean;
password_policy_config: import("../types/supabase.types").Json;
paying: boolean;
require_apikey_expiration: boolean;
required_encryption_key: string;
role: string;
stats_refresh_requested_at: string;
stats_updated_at: string;
subscription_end: string;
subscription_start: string;
trial_left: number;
use_new_rbac: boolean;
website: string;
}[]>;
export declare function listOrganizations(options: OptionsBase): Promise<void>;