From d1d04396c7a995eaf1129b123644bc52b14a73ac Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 21 May 2019 11:39:54 -0700 Subject: codegen version bump Wow, a surprisingly large commit! --- python_client/README.md | 2 +- python_client/fatcat_client/__init__.py | 2 +- python_client/fatcat_client/__version__.py | 2 +- python_client/fatcat_client/api/default_api.py | 2 +- python_client/fatcat_client/api_client.py | 2 +- python_client/fatcat_client/configuration.py | 4 ++-- python_client/fatcat_client/models/__init__.py | 2 +- python_client/fatcat_client/models/auth_oidc.py | 2 +- python_client/fatcat_client/models/auth_oidc_result.py | 2 +- python_client/fatcat_client/models/changelog_entry.py | 2 +- python_client/fatcat_client/models/container_auto_batch.py | 2 +- python_client/fatcat_client/models/container_entity.py | 2 +- python_client/fatcat_client/models/creator_auto_batch.py | 2 +- python_client/fatcat_client/models/creator_entity.py | 2 +- python_client/fatcat_client/models/editgroup.py | 2 +- python_client/fatcat_client/models/editgroup_annotation.py | 2 +- python_client/fatcat_client/models/editgroup_edits.py | 2 +- python_client/fatcat_client/models/editor.py | 2 +- python_client/fatcat_client/models/entity_edit.py | 2 +- python_client/fatcat_client/models/entity_history_entry.py | 2 +- python_client/fatcat_client/models/error_response.py | 2 +- python_client/fatcat_client/models/file_auto_batch.py | 2 +- python_client/fatcat_client/models/file_entity.py | 2 +- python_client/fatcat_client/models/file_url.py | 2 +- python_client/fatcat_client/models/fileset_auto_batch.py | 2 +- python_client/fatcat_client/models/fileset_entity.py | 2 +- python_client/fatcat_client/models/fileset_file.py | 2 +- python_client/fatcat_client/models/fileset_url.py | 2 +- python_client/fatcat_client/models/release_abstract.py | 2 +- python_client/fatcat_client/models/release_auto_batch.py | 2 +- python_client/fatcat_client/models/release_contrib.py | 2 +- python_client/fatcat_client/models/release_entity.py | 2 +- python_client/fatcat_client/models/release_ext_ids.py | 2 +- python_client/fatcat_client/models/release_ref.py | 2 +- python_client/fatcat_client/models/success.py | 2 +- python_client/fatcat_client/models/webcapture_auto_batch.py | 2 +- python_client/fatcat_client/models/webcapture_cdx_line.py | 2 +- python_client/fatcat_client/models/webcapture_entity.py | 2 +- python_client/fatcat_client/models/webcapture_url.py | 2 +- python_client/fatcat_client/models/work_auto_batch.py | 2 +- python_client/fatcat_client/models/work_entity.py | 2 +- python_client/fatcat_client/rest.py | 2 +- python_client/tests/codegen/test_auth_oidc.py | 2 +- python_client/tests/codegen/test_auth_oidc_result.py | 2 +- python_client/tests/codegen/test_changelog_entry.py | 2 +- python_client/tests/codegen/test_container_auto_batch.py | 2 +- python_client/tests/codegen/test_container_entity.py | 2 +- python_client/tests/codegen/test_creator_auto_batch.py | 2 +- python_client/tests/codegen/test_creator_entity.py | 2 +- python_client/tests/codegen/test_default_api.py | 2 +- python_client/tests/codegen/test_editgroup.py | 2 +- python_client/tests/codegen/test_editgroup_annotation.py | 2 +- python_client/tests/codegen/test_editgroup_edits.py | 2 +- python_client/tests/codegen/test_editor.py | 2 +- python_client/tests/codegen/test_entity_edit.py | 2 +- python_client/tests/codegen/test_entity_history_entry.py | 2 +- python_client/tests/codegen/test_error_response.py | 2 +- python_client/tests/codegen/test_file_auto_batch.py | 2 +- python_client/tests/codegen/test_file_entity.py | 2 +- python_client/tests/codegen/test_file_url.py | 2 +- python_client/tests/codegen/test_fileset_auto_batch.py | 2 +- python_client/tests/codegen/test_fileset_entity.py | 2 +- python_client/tests/codegen/test_fileset_file.py | 2 +- python_client/tests/codegen/test_fileset_url.py | 2 +- python_client/tests/codegen/test_release_abstract.py | 2 +- python_client/tests/codegen/test_release_auto_batch.py | 2 +- python_client/tests/codegen/test_release_contrib.py | 2 +- python_client/tests/codegen/test_release_entity.py | 2 +- python_client/tests/codegen/test_release_ext_ids.py | 2 +- python_client/tests/codegen/test_release_ref.py | 2 +- python_client/tests/codegen/test_success.py | 2 +- python_client/tests/codegen/test_webcapture_auto_batch.py | 2 +- python_client/tests/codegen/test_webcapture_cdx_line.py | 2 +- python_client/tests/codegen/test_webcapture_entity.py | 2 +- python_client/tests/codegen/test_webcapture_url.py | 2 +- python_client/tests/codegen/test_work_auto_batch.py | 2 +- python_client/tests/codegen/test_work_entity.py | 2 +- 77 files changed, 78 insertions(+), 78 deletions(-) (limited to 'python_client') diff --git a/python_client/README.md b/python_client/README.md index 3fd874d1..c69ae551 100644 --- a/python_client/README.md +++ b/python_client/README.md @@ -3,7 +3,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file m This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: -- API version: 0.2.0 +- API version: 0.3.0 - Package version: 1.0.0 - Build package: io.swagger.codegen.languages.PythonClientCodegen diff --git a/python_client/fatcat_client/__init__.py b/python_client/fatcat_client/__init__.py index 2363d14d..ef0b6e3f 100644 --- a/python_client/fatcat_client/__init__.py +++ b/python_client/fatcat_client/__init__.py @@ -7,7 +7,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/__version__.py b/python_client/fatcat_client/__version__.py index 6d23a3be..a85c1f92 100644 --- a/python_client/fatcat_client/__version__.py +++ b/python_client/fatcat_client/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 1, '0dev0') +VERSION = (0, 3, 0) # eg, (0, 2, '0dev0') __version__ = '.'.join(map(str, VERSION)) diff --git a/python_client/fatcat_client/api/default_api.py b/python_client/fatcat_client/api/default_api.py index 8edf15ed..0ea79748 100644 --- a/python_client/fatcat_client/api/default_api.py +++ b/python_client/fatcat_client/api/default_api.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/api_client.py b/python_client/fatcat_client/api_client.py index af25fc2c..98256e65 100644 --- a/python_client/fatcat_client/api_client.py +++ b/python_client/fatcat_client/api_client.py @@ -4,7 +4,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/configuration.py b/python_client/fatcat_client/configuration.py index 5423065d..7a79fa79 100644 --- a/python_client/fatcat_client/configuration.py +++ b/python_client/fatcat_client/configuration.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -242,6 +242,6 @@ class Configuration(object): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 0.2.0\n"\ + "Version of the API: 0.3.0\n"\ "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/python_client/fatcat_client/models/__init__.py b/python_client/fatcat_client/models/__init__.py index 40cb8ee5..574c7aeb 100644 --- a/python_client/fatcat_client/models/__init__.py +++ b/python_client/fatcat_client/models/__init__.py @@ -6,7 +6,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/auth_oidc.py b/python_client/fatcat_client/models/auth_oidc.py index 3fb2b95d..5d11adab 100644 --- a/python_client/fatcat_client/models/auth_oidc.py +++ b/python_client/fatcat_client/models/auth_oidc.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/auth_oidc_result.py b/python_client/fatcat_client/models/auth_oidc_result.py index 385e829c..2ac7d736 100644 --- a/python_client/fatcat_client/models/auth_oidc_result.py +++ b/python_client/fatcat_client/models/auth_oidc_result.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/changelog_entry.py b/python_client/fatcat_client/models/changelog_entry.py index e1cb5325..ae4e7afb 100644 --- a/python_client/fatcat_client/models/changelog_entry.py +++ b/python_client/fatcat_client/models/changelog_entry.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/container_auto_batch.py b/python_client/fatcat_client/models/container_auto_batch.py index b8b2bf2b..6592b89f 100644 --- a/python_client/fatcat_client/models/container_auto_batch.py +++ b/python_client/fatcat_client/models/container_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/container_entity.py b/python_client/fatcat_client/models/container_entity.py index 5751ea9d..5fb1a51b 100644 --- a/python_client/fatcat_client/models/container_entity.py +++ b/python_client/fatcat_client/models/container_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/creator_auto_batch.py b/python_client/fatcat_client/models/creator_auto_batch.py index 96b335da..45cf4c25 100644 --- a/python_client/fatcat_client/models/creator_auto_batch.py +++ b/python_client/fatcat_client/models/creator_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/creator_entity.py b/python_client/fatcat_client/models/creator_entity.py index 0522d22e..d015701b 100644 --- a/python_client/fatcat_client/models/creator_entity.py +++ b/python_client/fatcat_client/models/creator_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/editgroup.py b/python_client/fatcat_client/models/editgroup.py index 06e277a1..03d644de 100644 --- a/python_client/fatcat_client/models/editgroup.py +++ b/python_client/fatcat_client/models/editgroup.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/editgroup_annotation.py b/python_client/fatcat_client/models/editgroup_annotation.py index bd029dab..f96fb6dd 100644 --- a/python_client/fatcat_client/models/editgroup_annotation.py +++ b/python_client/fatcat_client/models/editgroup_annotation.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/editgroup_edits.py b/python_client/fatcat_client/models/editgroup_edits.py index fe954b90..ca95c60f 100644 --- a/python_client/fatcat_client/models/editgroup_edits.py +++ b/python_client/fatcat_client/models/editgroup_edits.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/editor.py b/python_client/fatcat_client/models/editor.py index e1c7598f..37657266 100644 --- a/python_client/fatcat_client/models/editor.py +++ b/python_client/fatcat_client/models/editor.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/entity_edit.py b/python_client/fatcat_client/models/entity_edit.py index 68faac32..f89817c5 100644 --- a/python_client/fatcat_client/models/entity_edit.py +++ b/python_client/fatcat_client/models/entity_edit.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/entity_history_entry.py b/python_client/fatcat_client/models/entity_history_entry.py index 7ab6acfc..8623cc08 100644 --- a/python_client/fatcat_client/models/entity_history_entry.py +++ b/python_client/fatcat_client/models/entity_history_entry.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/error_response.py b/python_client/fatcat_client/models/error_response.py index fc40ac71..43eafb9b 100644 --- a/python_client/fatcat_client/models/error_response.py +++ b/python_client/fatcat_client/models/error_response.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/file_auto_batch.py b/python_client/fatcat_client/models/file_auto_batch.py index cc4f4e04..22cdd030 100644 --- a/python_client/fatcat_client/models/file_auto_batch.py +++ b/python_client/fatcat_client/models/file_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/file_entity.py b/python_client/fatcat_client/models/file_entity.py index f0d71e37..e80659fe 100644 --- a/python_client/fatcat_client/models/file_entity.py +++ b/python_client/fatcat_client/models/file_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/file_url.py b/python_client/fatcat_client/models/file_url.py index 85868810..cce0d332 100644 --- a/python_client/fatcat_client/models/file_url.py +++ b/python_client/fatcat_client/models/file_url.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/fileset_auto_batch.py b/python_client/fatcat_client/models/fileset_auto_batch.py index 969f8de6..a3075d7a 100644 --- a/python_client/fatcat_client/models/fileset_auto_batch.py +++ b/python_client/fatcat_client/models/fileset_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/fileset_entity.py b/python_client/fatcat_client/models/fileset_entity.py index 939342c5..114c0594 100644 --- a/python_client/fatcat_client/models/fileset_entity.py +++ b/python_client/fatcat_client/models/fileset_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/fileset_file.py b/python_client/fatcat_client/models/fileset_file.py index f996a97b..521abc98 100644 --- a/python_client/fatcat_client/models/fileset_file.py +++ b/python_client/fatcat_client/models/fileset_file.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/fileset_url.py b/python_client/fatcat_client/models/fileset_url.py index e3c757e8..d0e3a1e7 100644 --- a/python_client/fatcat_client/models/fileset_url.py +++ b/python_client/fatcat_client/models/fileset_url.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/release_abstract.py b/python_client/fatcat_client/models/release_abstract.py index 39960aec..173aaa4c 100644 --- a/python_client/fatcat_client/models/release_abstract.py +++ b/python_client/fatcat_client/models/release_abstract.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/release_auto_batch.py b/python_client/fatcat_client/models/release_auto_batch.py index a80718bb..f87fc175 100644 --- a/python_client/fatcat_client/models/release_auto_batch.py +++ b/python_client/fatcat_client/models/release_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/release_contrib.py b/python_client/fatcat_client/models/release_contrib.py index d70a7304..6b6689c4 100644 --- a/python_client/fatcat_client/models/release_contrib.py +++ b/python_client/fatcat_client/models/release_contrib.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/release_entity.py b/python_client/fatcat_client/models/release_entity.py index 27685362..81d1779d 100644 --- a/python_client/fatcat_client/models/release_entity.py +++ b/python_client/fatcat_client/models/release_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/release_ext_ids.py b/python_client/fatcat_client/models/release_ext_ids.py index fad91c58..7c6eb2dd 100644 --- a/python_client/fatcat_client/models/release_ext_ids.py +++ b/python_client/fatcat_client/models/release_ext_ids.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/release_ref.py b/python_client/fatcat_client/models/release_ref.py index 9d4b640e..ed44158b 100644 --- a/python_client/fatcat_client/models/release_ref.py +++ b/python_client/fatcat_client/models/release_ref.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/success.py b/python_client/fatcat_client/models/success.py index d5213085..337efebb 100644 --- a/python_client/fatcat_client/models/success.py +++ b/python_client/fatcat_client/models/success.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/webcapture_auto_batch.py b/python_client/fatcat_client/models/webcapture_auto_batch.py index 579ec21e..003e5acb 100644 --- a/python_client/fatcat_client/models/webcapture_auto_batch.py +++ b/python_client/fatcat_client/models/webcapture_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/webcapture_cdx_line.py b/python_client/fatcat_client/models/webcapture_cdx_line.py index fa9e264f..623607ba 100644 --- a/python_client/fatcat_client/models/webcapture_cdx_line.py +++ b/python_client/fatcat_client/models/webcapture_cdx_line.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/webcapture_entity.py b/python_client/fatcat_client/models/webcapture_entity.py index 41a85432..33098001 100644 --- a/python_client/fatcat_client/models/webcapture_entity.py +++ b/python_client/fatcat_client/models/webcapture_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/webcapture_url.py b/python_client/fatcat_client/models/webcapture_url.py index 3efc71a3..9d6f1e21 100644 --- a/python_client/fatcat_client/models/webcapture_url.py +++ b/python_client/fatcat_client/models/webcapture_url.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/work_auto_batch.py b/python_client/fatcat_client/models/work_auto_batch.py index 2ae4c9a8..39854d47 100644 --- a/python_client/fatcat_client/models/work_auto_batch.py +++ b/python_client/fatcat_client/models/work_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/models/work_entity.py b/python_client/fatcat_client/models/work_entity.py index 7ef67160..80cb2330 100644 --- a/python_client/fatcat_client/models/work_entity.py +++ b/python_client/fatcat_client/models/work_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/fatcat_client/rest.py b/python_client/fatcat_client/rest.py index d014223b..59ce1b74 100644 --- a/python_client/fatcat_client/rest.py +++ b/python_client/fatcat_client/rest.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_auth_oidc.py b/python_client/tests/codegen/test_auth_oidc.py index 1c7db913..7495a16a 100644 --- a/python_client/tests/codegen/test_auth_oidc.py +++ b/python_client/tests/codegen/test_auth_oidc.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_auth_oidc_result.py b/python_client/tests/codegen/test_auth_oidc_result.py index 1f9295b1..bf158fbd 100644 --- a/python_client/tests/codegen/test_auth_oidc_result.py +++ b/python_client/tests/codegen/test_auth_oidc_result.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_changelog_entry.py b/python_client/tests/codegen/test_changelog_entry.py index c020949c..0167a317 100644 --- a/python_client/tests/codegen/test_changelog_entry.py +++ b/python_client/tests/codegen/test_changelog_entry.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_container_auto_batch.py b/python_client/tests/codegen/test_container_auto_batch.py index e7579c97..136bc48f 100644 --- a/python_client/tests/codegen/test_container_auto_batch.py +++ b/python_client/tests/codegen/test_container_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_container_entity.py b/python_client/tests/codegen/test_container_entity.py index 0f68cc8a..79ed9fa6 100644 --- a/python_client/tests/codegen/test_container_entity.py +++ b/python_client/tests/codegen/test_container_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_creator_auto_batch.py b/python_client/tests/codegen/test_creator_auto_batch.py index 9a5d2535..0bee20d1 100644 --- a/python_client/tests/codegen/test_creator_auto_batch.py +++ b/python_client/tests/codegen/test_creator_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_creator_entity.py b/python_client/tests/codegen/test_creator_entity.py index 9b52a424..f51ba124 100644 --- a/python_client/tests/codegen/test_creator_entity.py +++ b/python_client/tests/codegen/test_creator_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_default_api.py b/python_client/tests/codegen/test_default_api.py index f5490261..1fd2c4cd 100644 --- a/python_client/tests/codegen/test_default_api.py +++ b/python_client/tests/codegen/test_default_api.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_editgroup.py b/python_client/tests/codegen/test_editgroup.py index f2f656c7..a9f84cfe 100644 --- a/python_client/tests/codegen/test_editgroup.py +++ b/python_client/tests/codegen/test_editgroup.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_editgroup_annotation.py b/python_client/tests/codegen/test_editgroup_annotation.py index bba9206a..a5ada569 100644 --- a/python_client/tests/codegen/test_editgroup_annotation.py +++ b/python_client/tests/codegen/test_editgroup_annotation.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_editgroup_edits.py b/python_client/tests/codegen/test_editgroup_edits.py index 8932e42b..696b9baa 100644 --- a/python_client/tests/codegen/test_editgroup_edits.py +++ b/python_client/tests/codegen/test_editgroup_edits.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_editor.py b/python_client/tests/codegen/test_editor.py index d7ccc4ef..3add4f28 100644 --- a/python_client/tests/codegen/test_editor.py +++ b/python_client/tests/codegen/test_editor.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_entity_edit.py b/python_client/tests/codegen/test_entity_edit.py index e3b43003..fe8410c6 100644 --- a/python_client/tests/codegen/test_entity_edit.py +++ b/python_client/tests/codegen/test_entity_edit.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_entity_history_entry.py b/python_client/tests/codegen/test_entity_history_entry.py index d4204943..cd35097a 100644 --- a/python_client/tests/codegen/test_entity_history_entry.py +++ b/python_client/tests/codegen/test_entity_history_entry.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_error_response.py b/python_client/tests/codegen/test_error_response.py index 33945590..4463ca9f 100644 --- a/python_client/tests/codegen/test_error_response.py +++ b/python_client/tests/codegen/test_error_response.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_file_auto_batch.py b/python_client/tests/codegen/test_file_auto_batch.py index 9c71c589..56e272d6 100644 --- a/python_client/tests/codegen/test_file_auto_batch.py +++ b/python_client/tests/codegen/test_file_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_file_entity.py b/python_client/tests/codegen/test_file_entity.py index d7edaa0d..140daeed 100644 --- a/python_client/tests/codegen/test_file_entity.py +++ b/python_client/tests/codegen/test_file_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_file_url.py b/python_client/tests/codegen/test_file_url.py index 59cb6aad..9ac6281f 100644 --- a/python_client/tests/codegen/test_file_url.py +++ b/python_client/tests/codegen/test_file_url.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_fileset_auto_batch.py b/python_client/tests/codegen/test_fileset_auto_batch.py index f84857c4..d213b43d 100644 --- a/python_client/tests/codegen/test_fileset_auto_batch.py +++ b/python_client/tests/codegen/test_fileset_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_fileset_entity.py b/python_client/tests/codegen/test_fileset_entity.py index 0cca2d30..5e22b821 100644 --- a/python_client/tests/codegen/test_fileset_entity.py +++ b/python_client/tests/codegen/test_fileset_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_fileset_file.py b/python_client/tests/codegen/test_fileset_file.py index 73442213..817b3916 100644 --- a/python_client/tests/codegen/test_fileset_file.py +++ b/python_client/tests/codegen/test_fileset_file.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_fileset_url.py b/python_client/tests/codegen/test_fileset_url.py index 1ae67c1c..ae34d0e0 100644 --- a/python_client/tests/codegen/test_fileset_url.py +++ b/python_client/tests/codegen/test_fileset_url.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_release_abstract.py b/python_client/tests/codegen/test_release_abstract.py index 2964202a..ee962b48 100644 --- a/python_client/tests/codegen/test_release_abstract.py +++ b/python_client/tests/codegen/test_release_abstract.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_release_auto_batch.py b/python_client/tests/codegen/test_release_auto_batch.py index 7c930b27..23ecbcc1 100644 --- a/python_client/tests/codegen/test_release_auto_batch.py +++ b/python_client/tests/codegen/test_release_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_release_contrib.py b/python_client/tests/codegen/test_release_contrib.py index 0fb0bf65..33e1e621 100644 --- a/python_client/tests/codegen/test_release_contrib.py +++ b/python_client/tests/codegen/test_release_contrib.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_release_entity.py b/python_client/tests/codegen/test_release_entity.py index 679edf16..c9284fe8 100644 --- a/python_client/tests/codegen/test_release_entity.py +++ b/python_client/tests/codegen/test_release_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_release_ext_ids.py b/python_client/tests/codegen/test_release_ext_ids.py index 1f90d905..6532cbd2 100644 --- a/python_client/tests/codegen/test_release_ext_ids.py +++ b/python_client/tests/codegen/test_release_ext_ids.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_release_ref.py b/python_client/tests/codegen/test_release_ref.py index 472158d4..020c6436 100644 --- a/python_client/tests/codegen/test_release_ref.py +++ b/python_client/tests/codegen/test_release_ref.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_success.py b/python_client/tests/codegen/test_success.py index 91efe09a..df26d217 100644 --- a/python_client/tests/codegen/test_success.py +++ b/python_client/tests/codegen/test_success.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_webcapture_auto_batch.py b/python_client/tests/codegen/test_webcapture_auto_batch.py index 823fd2c1..8c2b8000 100644 --- a/python_client/tests/codegen/test_webcapture_auto_batch.py +++ b/python_client/tests/codegen/test_webcapture_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_webcapture_cdx_line.py b/python_client/tests/codegen/test_webcapture_cdx_line.py index 51f0a99c..d044ded2 100644 --- a/python_client/tests/codegen/test_webcapture_cdx_line.py +++ b/python_client/tests/codegen/test_webcapture_cdx_line.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_webcapture_entity.py b/python_client/tests/codegen/test_webcapture_entity.py index 229e0e13..2bfb034f 100644 --- a/python_client/tests/codegen/test_webcapture_entity.py +++ b/python_client/tests/codegen/test_webcapture_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_webcapture_url.py b/python_client/tests/codegen/test_webcapture_url.py index b866ee54..951ef208 100644 --- a/python_client/tests/codegen/test_webcapture_url.py +++ b/python_client/tests/codegen/test_webcapture_url.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_work_auto_batch.py b/python_client/tests/codegen/test_work_auto_batch.py index 0e38869c..92edcaf5 100644 --- a/python_client/tests/codegen/test_work_auto_batch.py +++ b/python_client/tests/codegen/test_work_auto_batch.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/python_client/tests/codegen/test_work_entity.py b/python_client/tests/codegen/test_work_entity.py index 0c6c3194..6c49f3a2 100644 --- a/python_client/tests/codegen/test_work_entity.py +++ b/python_client/tests/codegen/test_work_entity.py @@ -5,7 +5,7 @@ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501 - OpenAPI spec version: 0.2.0 + OpenAPI spec version: 0.3.0 Generated by: https://github.com/swagger-api/swagger-codegen.git """ -- cgit v1.2.3