diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-20 19:15:41 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-20 19:15:59 -0700 |
commit | c06079af0949ac44472c9fdc2fc81766316cb88d (patch) | |
tree | 91eba894520e3aa3aff004230c97d7ea13d1a009 /python_client/fatcat_client/api | |
parent | dd9598577da8dfccaf0bb6daff56bab9d1d8e9a6 (diff) | |
download | fatcat-c06079af0949ac44472c9fdc2fc81766316cb88d.tar.gz fatcat-c06079af0949ac44472c9fdc2fc81766316cb88d.zip |
schema: allow releases expansion on file/fileset/webcapture
And codegen rust and python
Diffstat (limited to 'python_client/fatcat_client/api')
-rw-r--r-- | python_client/fatcat_client/api/default_api.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python_client/fatcat_client/api/default_api.py b/python_client/fatcat_client/api/default_api.py index 0a2329e8..8edf15ed 100644 --- a/python_client/fatcat_client/api/default_api.py +++ b/python_client/fatcat_client/api/default_api.py @@ -5463,7 +5463,7 @@ class DefaultApi(object): :param async bool :param str ident: (required) - :param str expand: List of sub-entities to expand in response. For files, none accepted (yet). + :param str expand: List of sub-entities to expand in response. For files, `releases` is accepted. :param str hide: List of entity fields to elide in response. For files, none accepted (yet). :return: FileEntity If the method is called asynchronously, @@ -5486,7 +5486,7 @@ class DefaultApi(object): :param async bool :param str ident: (required) - :param str expand: List of sub-entities to expand in response. For files, none accepted (yet). + :param str expand: List of sub-entities to expand in response. For files, `releases` is accepted. :param str hide: List of entity fields to elide in response. For files, none accepted (yet). :return: FileEntity If the method is called asynchronously, @@ -5984,7 +5984,7 @@ class DefaultApi(object): :param async bool :param str ident: (required) - :param str expand: List of sub-entities to expand in response. For filesets, none accepted (yet). + :param str expand: List of sub-entities to expand in response. For filesets, `releases` is accepted. :param str hide: List of entity fields to elide in response. For filesets, 'manifest' is accepted. :return: FilesetEntity If the method is called asynchronously, @@ -6007,7 +6007,7 @@ class DefaultApi(object): :param async bool :param str ident: (required) - :param str expand: List of sub-entities to expand in response. For filesets, none accepted (yet). + :param str expand: List of sub-entities to expand in response. For filesets, `releases` is accepted. :param str hide: List of entity fields to elide in response. For filesets, 'manifest' is accepted. :return: FilesetEntity If the method is called asynchronously, @@ -7329,7 +7329,7 @@ class DefaultApi(object): :param async bool :param str ident: (required) - :param str expand: List of sub-entities to expand in response. For webcaptures, none accepted (yet). + :param str expand: List of sub-entities to expand in response. For webcaptures, `releases` is accepted. :param str hide: List of entity fields to elide in response. For webcaptures, 'cdx' is accepted. :return: WebcaptureEntity If the method is called asynchronously, @@ -7352,7 +7352,7 @@ class DefaultApi(object): :param async bool :param str ident: (required) - :param str expand: List of sub-entities to expand in response. For webcaptures, none accepted (yet). + :param str expand: List of sub-entities to expand in response. For webcaptures, `releases` is accepted. :param str hide: List of entity fields to elide in response. For webcaptures, 'cdx' is accepted. :return: WebcaptureEntity If the method is called asynchronously, |