@capgo/cli
Version:
A CLI to upload to capgo servers
25 lines (24 loc) • 845 B
TypeScript
import type { OptionsBase } from '../schemas/base';
export declare function listBundle(appId: string, options: OptionsBase, silent?: boolean): Promise<{
app_id: string;
checksum: string | null;
cli_version: string | null;
comment: string | null;
created_at: string | null;
deleted: boolean;
external_url: string | null;
id: number;
key_id: string | null;
link: string | null;
manifest: import("../sdk").Database["public"]["CompositeTypes"]["manifest_entry"][] | null;
manifest_count: number;
min_update_version: string | null;
name: string;
native_packages: import("../types/supabase.types").Json[] | null;
owner_org: string;
r2_path: string | null;
session_key: string | null;
storage_provider: string;
updated_at: string | null;
user_id: string | null;
}[]>;