UNPKG

@capgo/cli

Version:

A CLI to upload to capgo servers

44 lines (43 loc) 1.41 kB
import type { OptionsBase } from '../schemas/base'; export declare function listAppInternal(options: OptionsBase, silent?: boolean): Promise<{ android_store_url: string | null; app_id: 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; need_onboarding: boolean; name: string | null; owner_org: string; retention: number; transfer_history: import("../types/supabase.types").Json[] | null; updated_at: string | null; user_id: string | null; }[]>; export declare function listApp(options: OptionsBase): Promise<{ android_store_url: string | null; app_id: 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; need_onboarding: boolean; name: string | null; owner_org: string; retention: number; transfer_history: import("../types/supabase.types").Json[] | null; updated_at: string | null; user_id: string | null; }[]>;