// @flow declare type StatusResponse = { blob_manager: { finished_blobs: number, }, blockchain_headers: { download_progress: number, downloading_headers: boolean, }, connection_status: { code: string, message: string, }, dht: { node_id: string, peers_in_routing_table: number, }, hash_announcer: { announce_queue_size: number, }, installation_id: string, is_running: boolean, skipped_components: Array, startup_status: { blob_manager: boolean, blockchain_headers: boolean, database: boolean, dht: boolean, exchange_rate_manager: boolean, hash_announcer: boolean, peer_protocol_server: boolean, stream_manager: boolean, upnp: boolean, wallet: boolean, }, stream_manager: { managed_files: number, }, upnp: { aioupnp_version: string, dht_redirect_set: boolean, external_ip: string, gateway: string, peer_redirect_set: boolean, redirects: {}, }, wallet: ?{ best_blockhash: string, blocks: number, blocks_behind: number, is_encrypted: boolean, is_locked: boolean, }, }; declare type VersionResponse = { build: string, lbrynet_version: string, os_release: string, os_system: string, platform: string, processor: string, python_version: string, }; declare type ResolveResponse = { // Keys are the url(s) passed to resolve [string]: | { error: {}, certificate: ChannelClaim, claims_in_channel: number } | { error?: {}, claim: StreamClaim, certificate?: ChannelClaim }, }; declare type GetResponse = FileListItem; declare type GenericTxResponse = { height: number, hex: string, inputs: Array<{}>, outputs: Array<{}>, total_fee: string, total_input: string, total_output: string, txid: string, }; declare type PublishResponse = GenericTxResponse & { // Only first value in outputs is a claim // That's the only value we care about outputs: Array, }; declare type ClaimSearchResponse = { items: Array, page: number, page_size: number, page_number: number, }; declare type ClaimListResponse = { claims: Array, }; declare type ChannelCreateResponse = GenericTxResponse & { outputs: Array, }; declare type ChannelListResponse = Array; declare type FileListResponse = Array; declare type TxListResponse = Array; declare type BlobListResponse = Array; declare type AccountListResponse = Array<{ id: string, is_default: string, ledger: string, name: string, seed: string, encrypted: string, private_key: string, public_key: string, address_generator: string, modified_on: string, }>; declare type SyncApplyResponse = { hash: string, data: string, }; // // Types used in the generic Lbry object that is exported // declare type LbryTypes = { isConnected: boolean, connectPromise: ?Promise, connect: () => void, daemonConnectionString: string, setDaemonConnectionString: string => void, overrides: { [string]: ?Function }, setOverride: (string, Function) => void, getMediaType: (string, ?string) => string, // Lbry Methods stop: () => Promise, status: () => Promise, version: () => Promise, resolve: (params: {}) => Promise, get: (params: {}) => Promise, publish: (params: {}) => Promise, claim_search: (params: {}) => Promise, claim_list: (params?: {}) => Promise, channel_create: (params: {}) => Promise, channel_list: () => Promise, stream_abandon: (params: {}) => Promise, channel_abandon: (params: {}) => Promise, support_create: (params: {}) => Promise, // File fetching and manipulation file_list: (params: {}) => Promise, file_delete: (params: {}) => Promise, blob_delete: (params: {}) => Promise, blob_list: (params: {}) => Promise, // Wallet utilities account_balance: (params: {}) => Promise, account_decrypt: (prams: {}) => Promise, account_encrypt: (params: {}) => Promise, account_unlock: (params: {}) => Promise, account_list: (params: {}) => Promise, account_send: (params: {}) => Promise, address_is_mine: (params: {}) => Promise, address_unused: (params: {}) => Promise, // New address transaction_list: (params: {}) => Promise, // Sync sync_hash: (params: {}) => Promise, sync_apply: (params: {}) => Promise, // The app shouldn't need to do this utxo_release: () => Promise, };