add status arg to file_list cli

This commit is contained in:
Jack Robison 2020-05-11 19:16:08 -04:00
parent a469b8bc04
commit 3c85322523
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -1966,7 +1966,7 @@ class Daemon(metaclass=JSONRPCServerType):
[--channel_claim_id=<channel_claim_id>] [--channel_name=<channel_name>] [--channel_claim_id=<channel_claim_id>] [--channel_name=<channel_name>]
[--claim_name=<claim_name>] [--blobs_in_stream=<blobs_in_stream>] [--claim_name=<claim_name>] [--blobs_in_stream=<blobs_in_stream>]
[--blobs_remaining=<blobs_remaining>] [--uploading_to_reflector=<uploading_to_reflector>] [--blobs_remaining=<blobs_remaining>] [--uploading_to_reflector=<uploading_to_reflector>]
[--is_fully_reflected=<is_fully_reflected>] [--sort=<sort_by>] [--is_fully_reflected=<is_fully_reflected>] [--status=<status>] [--sort=<sort_by>]
[--comparison=<comparison>] [--full_status=<full_status>] [--reverse] [--comparison=<comparison>] [--full_status=<full_status>] [--reverse]
[--page=<page>] [--page_size=<page_size>] [--wallet_id=<wallet_id>] [--page=<page>] [--page_size=<page_size>] [--wallet_id=<wallet_id>]
@ -1987,6 +1987,7 @@ class Daemon(metaclass=JSONRPCServerType):
--blobs_in_stream<blobs_in_stream> : (int) get file with matching blobs in stream --blobs_in_stream<blobs_in_stream> : (int) get file with matching blobs in stream
--uploading_to_reflector=<uploading_to_reflector> : (bool) get files currently uploading to reflector --uploading_to_reflector=<uploading_to_reflector> : (bool) get files currently uploading to reflector
--is_fully_reflected=<is_fully_reflected> : (bool) get files that have been uploaded to reflector --is_fully_reflected=<is_fully_reflected> : (bool) get files that have been uploaded to reflector
--status=<status> : (str) match by status, ( running | finished | stopped )
--blobs_remaining=<blobs_remaining> : (int) amount of remaining blobs to download --blobs_remaining=<blobs_remaining> : (int) amount of remaining blobs to download
--sort=<sort_by> : (str) field to sort by (one of the above filter fields) --sort=<sort_by> : (str) field to sort by (one of the above filter fields)
--comparison=<comparison> : (str) logical comparison, (eq | ne | g | ge | l | le | in) --comparison=<comparison> : (str) logical comparison, (eq | ne | g | ge | l | le | in)