@capgo/cli
Version:
A CLI to upload to capgo servers
27 lines (26 loc) • 1.07 kB
TypeScript
import type { OrganizationAddOptions } from '../schemas/organization';
export declare function addOrganizationInternal(options: OrganizationAddOptions, silent?: boolean): Promise<{
created_at: string | null;
created_by: string;
customer_id: string | null;
email_preferences: import("../types/supabase.types").Json;
enforce_encrypted_bundles: boolean;
enforce_hashed_api_keys: boolean;
enforcing_2fa: boolean;
has_usage_credits: boolean;
id: string;
last_stats_updated_at: string | null;
logo: string | null;
management_email: string;
max_apikey_expiration_days: number | null;
name: string;
password_policy_config: import("../types/supabase.types").Json | null;
require_apikey_expiration: boolean;
required_encryption_key: string | null;
stats_refresh_requested_at: string | null;
stats_updated_at: string | null;
updated_at: string | null;
use_new_rbac: boolean;
website: string | null;
}>;
export declare function addOrganization(options: OrganizationAddOptions): Promise<void>;