UNPKG

@capgo/cli

Version:
56 lines (55 loc) 1.85 kB
import type { OptionsBase } from '../schemas/base'; export declare function listAppInternal(options: OptionsBase, silent?: boolean): Promise<{ allow_device_custom_id: boolean; allow_preview: boolean; android_store_url: string | null; app_id: string; build_timeout_seconds: number; build_timeout_updated_at: string; channel_device_count: number; created_at: string | null; default_upload_channel: string; existing_app: boolean; expose_metadata: boolean; icon_url: string; id: string | null; ios_store_url: string | null; last_version: string | null; manifest_bundle_count: number; name: string | null; need_onboarding: boolean; owner_org: string; retention: number; stats_refresh_requested_at: string | null; stats_updated_at: string | null; transfer_history: import("../types/supabase.types").Json[] | null; updated_at: string | null; user_id: string | null; }[]>; export declare function listApp(options: OptionsBase): Promise<{ allow_device_custom_id: boolean; allow_preview: boolean; android_store_url: string | null; app_id: string; build_timeout_seconds: number; build_timeout_updated_at: string; channel_device_count: number; created_at: string | null; default_upload_channel: string; existing_app: boolean; expose_metadata: boolean; icon_url: string; id: string | null; ios_store_url: string | null; last_version: string | null; manifest_bundle_count: number; name: string | null; need_onboarding: boolean; owner_org: string; retention: number; stats_refresh_requested_at: string | null; stats_updated_at: string | null; transfer_history: import("../types/supabase.types").Json[] | null; updated_at: string | null; user_id: string | null; }[]>;