diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69979ae..a15a5a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,3 @@ -# TODO ADD PIXI name: Release on: @@ -8,8 +7,8 @@ on: - 'version.txt' jobs: - build: - name: Build + build-python: + name: Build Python packages runs-on: ubuntu-24.04 strategy: fail-fast: true @@ -20,6 +19,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + sparse-checkout: ${{ matrix.name }} - name: Install build run: pip install --break-system-packages build - name: Build dist @@ -29,10 +30,10 @@ jobs: with: name: ${{ matrix.name }} path: ${{ matrix.name }}/dist/ - publish: - name: Publish + publish-python: + name: Publish Python packages runs-on: ubuntu-24.04 - needs: build + needs: build-python steps: - name: Download distributions packages uses: actions/download-artifact@v4 @@ -61,18 +62,15 @@ jobs: - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - # TODO change to prod PyPI - repository-url: https://test.pypi.org/legacy/ - password: '${{ secrets.TEST_PYPI_TOKEN }}' - # password: '${{ secrets.PYPI_API_TOKEN }}' + password: '${{ secrets.PYPI_API_TOKEN }}' outputs: pep508_chris_oag: ${{ steps.requirements.outputs.chris_oag }} pep508_aiochris_oag: ${{ steps.requirements.outputs.aiochris_oag }} - oci-image: - name: Push OCI Image + oci-image-python: + name: Build and push Python OCI images runs-on: ubuntu-24.04 - needs: build + needs: build-python strategy: fail-fast: false matrix: @@ -138,14 +136,28 @@ jobs: platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - + + # rust-crate: + # name: Build and publish Rust crate + # runs-on: ubuntu-24.04 + # env: + # CARGO_TERM_COLOR: always + # steps: + # - name: Git checkout + # uses: actions/checkout@v4 + # with: + # sparse-checkout: rust + # - name: cargo publish + # run: cargo publish --manifest-path rust/Cargo.toml + # env: + # CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} gh-release: name: Create GitHub Release runs-on: ubuntu-24.04 needs: - - oci-image - - publish + - oci-image-python + - publish-python steps: - name: Checkout uses: actions/checkout@v4 @@ -166,36 +178,36 @@ jobs: ```shell # using uv - https://docs.astral.sh/uv/ - uv pip install ${{ needs.publish.outputs.pep508_aiochris_oag }} + uv pip install ${{ needs.publish-python.outputs.pep508_aiochris_oag }} # using rye - https://rye.astral.sh/ - rye add ${{ needs.publish.outputs.pep508_aiochris_oag }} + rye add ${{ needs.publish-python.outputs.pep508_aiochris_oag }} # using pip - pip install ${{ needs.publish.outputs.pep508_aiochris_oag }} + pip install ${{ needs.publish-python.outputs.pep508_aiochris_oag }} # using Docker - docker pull ${{ needs.oci-image.outputs.python-async-image }}:${{ needs.oci-image.outputs.python-async-version }} + docker pull ${{ needs.oci-image-python.outputs.python-async-image }}:${{ needs.oci-image-python.outputs.python-async-version }} # using Podman - podman pull ${{ needs.oci-image.outputs.python-async-image }}:${{ needs.oci-image.outputs.python-async-version }} + podman pull ${{ needs.oci-image-python.outputs.python-async-image }}:${{ needs.oci-image-python.outputs.python-async-version }} ``` ## Python urllib3 Client ```shell # using uv - https://docs.astral.sh/uv/ - uv pip install ${{ needs.publish.outputs.pep508_chris_oag }} + uv pip install ${{ needs.publish-python.outputs.pep508_chris_oag }} # using rye - https://rye.astral.sh/ - rye add ${{ needs.publish.outputs.pep508_chris_oag }} + rye add ${{ needs.publish-python.outputs.pep508_chris_oag }} # using pip - pip install ${{ needs.publish.outputs.pep508_chris_oag }} + pip install ${{ needs.publish-python.outputs.pep508_chris_oag }} # using Docker - docker pull ${{ needs.oci-image.outputs.python-image }}:${{ needs.oci-image.outputs.python-version }} + docker pull ${{ needs.oci-image-python.outputs.python-image }}:${{ needs.oci-image-python.outputs.python-version }} # using Podman - podman pull ${{ needs.oci-image.outputs.python-image }}:${{ needs.oci-image.outputs.python-version }} + podman pull ${{ needs.oci-image-python.outputs.python-image }}:${{ needs.oci-image-python.outputs.python-version }} ``` diff --git a/.gitignore b/.gitignore index 4264ad4..497943e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -/schema*.yaml - /.venv dist diff --git a/README.md b/README.md index b9852b5..57a14af 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,10 @@ git add -A git commit -m "Version $(< version.txt)" git push origin main ``` + +## Adding A Generator + +Many other generators are available. See the list here: https://openapi-generator.tech/docs/generators + +To add a generator, create a YAML configuration file for it in `configs`. + diff --git a/configs/broken/README.md b/configs/broken/README.md new file mode 100644 index 0000000..80f3e4d --- /dev/null +++ b/configs/broken/README.md @@ -0,0 +1,3 @@ +- `typescript` generator straight up crashes. +- `typescript-fetch` generator produces invalid code for `oneOf` where variants are primitive types. + See https://github.com/OpenAPITools/openapi-generator/issues/14763 diff --git a/configs/broken/typescript-browser.yaml b/configs/broken/typescript-browser.yaml new file mode 100644 index 0000000..c5ed695 --- /dev/null +++ b/configs/broken/typescript-browser.yaml @@ -0,0 +1,14 @@ +'!include': 'common.yaml' + +generatorName: typescript +outputDir: typescript-browser + +# https://openapi-generator.tech/docs/generators/typescript/#config-options +additionalProperties: + npmName: '@fnndsc/chris-oag-browser' + framework: framework + platform: browser + nullSafeAdditionalProps: true + paramNaming: camelCase + '!include': version_npm.yaml + diff --git a/configs/broken/typescript-deno.yaml b/configs/broken/typescript-deno.yaml new file mode 100644 index 0000000..a42bc48 --- /dev/null +++ b/configs/broken/typescript-deno.yaml @@ -0,0 +1,14 @@ +'!include': 'common.yaml' + +generatorName: typescript +outputDir: typescript-deno + +# https://openapi-generator.tech/docs/generators/typescript/#config-options +additionalProperties: + npmName: '@fnndsc/chris-oag-deno' + framework: framework + platform: deno + nullSafeAdditionalProps: true + paramNaming: camelCase + '!include': version_npm.yaml + diff --git a/configs/broken/typescript-fetch.yaml b/configs/broken/typescript-fetch.yaml new file mode 100644 index 0000000..fb33dee --- /dev/null +++ b/configs/broken/typescript-fetch.yaml @@ -0,0 +1,14 @@ +'!include': 'common.yaml' + +generatorName: typescript-fetch +outputDir: typescript-fetch + +# https://openapi-generator.tech/docs/generators/typescript-fetch/#config-options +additionalProperties: + npmName: '@fnndsc/chris-oag' + withInterfaces: true + nullSafeAdditionalProps: true + paramNaming: camelCase + # stringEnums: true + '!include': version_npm.yaml + diff --git a/configs/broken/typescript-node.yaml b/configs/broken/typescript-node.yaml new file mode 100644 index 0000000..eb30254 --- /dev/null +++ b/configs/broken/typescript-node.yaml @@ -0,0 +1,14 @@ +'!include': 'common.yaml' + +generatorName: typescript +outputDir: typescript-node + +# https://openapi-generator.tech/docs/generators/typescript/#config-options +additionalProperties: + npmName: '@fnndsc/chris-oag-node' + framework: framework + platform: node + nullSafeAdditionalProps: true + paramNaming: camelCase + '!include': version_npm.yaml + diff --git a/configs/python-async.yaml b/configs/python-async.yaml new file mode 100644 index 0000000..bafc26e --- /dev/null +++ b/configs/python-async.yaml @@ -0,0 +1,12 @@ +'!include': 'common.yaml' + +generatorName: python +outputDir: python-async + +# https://openapi-generator.tech/docs/generators/python/#config-options +additionalProperties: + packageName: aiochris_oag + projectName: aiochris-oag + library: asyncio + '!include': 'version_pep440.yaml' + diff --git a/configs/python.yaml b/configs/python.yaml new file mode 100644 index 0000000..0c48367 --- /dev/null +++ b/configs/python.yaml @@ -0,0 +1,12 @@ +'!include': 'common.yaml' + +generatorName: python +outputDir: python + +# https://openapi-generator.tech/docs/generators/python/#config-options +additionalProperties: + packageName: chris_oag + projectName: chris-oag + library: urllib3 + '!include': 'version_pep440.yaml' + diff --git a/configs/todo/rust.yaml b/configs/todo/rust.yaml new file mode 100644 index 0000000..5c7f9e0 --- /dev/null +++ b/configs/todo/rust.yaml @@ -0,0 +1,12 @@ +'!include': 'common.yaml' + +generatorName: rust +outputDir: rust + +# https://openapi-generator.tech/docs/generators/rust/#config-options +additionalProperties: + library: reqwest + preferUnsignedInt: true + supportAsync: true + supportMiddleware: true + '!include': version.yaml diff --git a/configs/todo/typescript-axios.yaml b/configs/todo/typescript-axios.yaml new file mode 100644 index 0000000..0188110 --- /dev/null +++ b/configs/todo/typescript-axios.yaml @@ -0,0 +1,15 @@ +'!include': 'common.yaml' + +generatorName: typescript-axios +outputDir: typescript-axios + +# https://openapi-generator.tech/docs/generators/typescript-axios/#config-options +additionalProperties: + npmName: '@fnndsc/chris-oag' + withInterfaces: true + nullSafeAdditionalProps: true + paramNaming: camelCase + stringEnums: true + # what is withSeparateModelsAndApi? + '!include': version_npm.yaml + diff --git a/includes/.gitignore b/includes/.gitignore new file mode 100644 index 0000000..f44f25b --- /dev/null +++ b/includes/.gitignore @@ -0,0 +1 @@ +version*.yaml diff --git a/includes/common.yaml b/includes/common.yaml new file mode 100644 index 0000000..5100fee --- /dev/null +++ b/includes/common.yaml @@ -0,0 +1,5 @@ +inputSpec: https://github.com/FNNDSC/ChRIS_ultron_backEnd/releases/download/v6.3.0-beta.4/schema_split.yaml +gitHost: github.com +gitUserId: FNNDSC +gitRepoId: openapi-clients + diff --git a/justfile b/justfile index 036ba92..ab94b1c 100644 --- a/justfile +++ b/justfile @@ -1,25 +1,18 @@ -file := "schema_split.yaml" -releases_url := "https://github.com/FNNDSC/ChRIS_ultron_backEnd/releases" +generate-batch: sync-versions + podman run --rm --userns=keep-id:uid=100100,gid=100100 -u 100100:100100 \ + -v "$(pwd):/share" -w /share \ + docker.io/openapitools/openapi-generator-cli:v7.9.0 \ + batch --clean --fail-fast --root-dir /share --includes-base-dir /share/includes \ + configs/*.yaml -generate-all: - @just generate python -g python -p packageName=chris_oag,projectName=chris-oag -p library=urllib3,packageVersion=$(just get-version-pep440) - @just generate python-async -g python -p packageName=aiochris_oag,projectName=aiochris-oag -p library=asyncio,packageVersion=$(just get-version-pep440) - # @just generate typescript-fetch -g typescript-fetch -p npmName=@fnndsc/chris-openapi-generated -p withInterfaces=true - # @just generate rust -g rust -p packageName=chris-openapi-generated -p library=reqwest,preferUnsignedInt=true,supportMiddleware=true +sync-versions: + just write-version-file version.yaml packageVersion $(just get-version) + just write-version-file version_npm.yaml npmVersion $(just get-version) + just write-version-file version_pep440.yaml packageVersion $(just get-version-pep440) -# generate an OpenAPI client -generate output +options: - @if ! [ -e "{{file}}" ]; then \ - error="$(tput setaf 1)error$(tput sgr0): {{file}} not found."; \ - suggestion="Please download the OpenAPI specification YAML from {{releases_url}} and save it as $(pwd)/{{file}}"; \ - echo "$error $suggestion"; \ - exit 1; \ - fi - if ! [ -d {{output}} ]; then mkdir -v {{output}}; fi - podman run --rm --userns=keep-id:uid=100100,gid=100100 -u 100100:100100 \ - -v "$(pwd)/{{output}}:/out:rw" -v "$(pwd)/{{file}}:/{{file}}:ro" \ - docker.io/openapitools/openapi-generator-cli:v7.8.0 \ - generate {{options}} -i "/{{file}}" -o "/out" +write-version-file file key value: + @echo '# This file was automatically generated by `just`. Do not edit it manually.' > includes/{{file}} + @echo "{{key}}: '{{value}}'" >> includes/{{file}} get-version-pep440: @./semver2pep440.sh < version.txt diff --git a/python-async/.github/workflows/python.yml b/python-async/.github/workflows/python.yml index 5a7f4c8..6a94278 100644 --- a/python-async/.github/workflows/python.yml +++ b/python-async/.github/workflows/python.yml @@ -13,10 +13,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -24,15 +24,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + pip install -r requirements.txt + pip install -r test-requirements.txt - name: Test with pytest run: | - pytest + pytest --cov={{packageName}} diff --git a/python-async/.gitlab-ci.yml b/python-async/.gitlab-ci.yml index f68fccd..3a09587 100644 --- a/python-async/.gitlab-ci.yml +++ b/python-async/.gitlab-ci.yml @@ -14,9 +14,6 @@ stages: - pip install -r test-requirements.txt - pytest --cov=aiochris_oag -pytest-3.7: - extends: .pytest - image: python:3.7-alpine pytest-3.8: extends: .pytest image: python:3.8-alpine @@ -29,3 +26,6 @@ pytest-3.10: pytest-3.11: extends: .pytest image: python:3.11-alpine +pytest-3.12: + extends: .pytest + image: python:3.12-alpine diff --git a/python-async/.openapi-generator/FILES b/python-async/.openapi-generator/FILES index fca4e4f..1cd4a62 100644 --- a/python-async/.openapi-generator/FILES +++ b/python-async/.openapi-generator/FILES @@ -319,4 +319,154 @@ setup.cfg setup.py test-requirements.txt test/__init__.py +test/test_auth_token.py +test/test_auth_token_api.py +test/test_auth_token_request.py +test/test_blank_enum.py +test/test_bool_parameter.py +test/test_chris_admin_api.py +test/test_chris_instance.py +test/test_chrisinstance_api.py +test/test_comment.py +test/test_comment_request.py +test/test_comments_api.py +test/test_compute_resource.py +test/test_compute_resource_request.py +test/test_computeresources_api.py +test/test_default_api.py +test/test_default_piping_bool_parameter.py +test/test_default_piping_bool_parameter_request.py +test/test_default_piping_float_parameter.py +test/test_default_piping_float_parameter_request.py +test/test_default_piping_int_parameter.py +test/test_default_piping_int_parameter_request.py +test/test_default_piping_str_parameter.py +test/test_default_piping_str_parameter_request.py +test/test_downloadtokens_api.py +test/test_feed.py +test/test_feed_group_permission.py +test/test_feed_group_permission_request.py +test/test_feed_request.py +test/test_feed_user_permission.py +test/test_feed_user_permission_request.py +test/test_file_browser_file.py +test/test_file_browser_file_group_permission.py +test/test_file_browser_file_group_permission_request.py +test/test_file_browser_file_request.py +test/test_file_browser_file_user_permission.py +test/test_file_browser_file_user_permission_request.py +test/test_file_browser_folder.py +test/test_file_browser_folder_group_permission.py +test/test_file_browser_folder_group_permission_request.py +test/test_file_browser_folder_request.py +test/test_file_browser_folder_user_permission.py +test/test_file_browser_folder_user_permission_request.py +test/test_file_browser_link_file.py +test/test_file_browser_link_file_group_permission.py +test/test_file_browser_link_file_group_permission_request.py +test/test_file_browser_link_file_request.py +test/test_file_browser_link_file_user_permission.py +test/test_file_browser_link_file_user_permission_request.py +test/test_file_download_token.py +test/test_file_download_token_request.py +test/test_filebrowser_api.py +test/test_float_parameter.py +test/test_ftype_enum.py +test/test_generic_default_piping_parameter.py +test/test_generic_default_piping_parameter_value.py +test/test_generic_parameter.py +test/test_group.py +test/test_group_request.py +test/test_group_user.py +test/test_group_user_request.py +test/test_grouppermissions_api.py +test/test_groups_api.py +test/test_int_parameter.py +test/test_note.py +test/test_note_api.py +test/test_note_request.py +test/test_pacs_api.py +test/test_pacs_file.py +test/test_pacs_series.py +test/test_pacs_series_patient_sex.py +test/test_paginated_comment_list.py +test/test_paginated_compute_resource_list.py +test/test_paginated_feed_group_permission_list.py +test/test_paginated_feed_list.py +test/test_paginated_feed_user_permission_list.py +test/test_paginated_file_browser_file_group_permission_list.py +test/test_paginated_file_browser_file_list.py +test/test_paginated_file_browser_file_user_permission_list.py +test/test_paginated_file_browser_folder_group_permission_list.py +test/test_paginated_file_browser_folder_list.py +test/test_paginated_file_browser_folder_user_permission_list.py +test/test_paginated_file_browser_link_file_group_permission_list.py +test/test_paginated_file_browser_link_file_list.py +test/test_paginated_file_browser_link_file_user_permission_list.py +test/test_paginated_file_download_token_list.py +test/test_paginated_generic_default_piping_parameter_list.py +test/test_paginated_generic_parameter_list.py +test/test_paginated_group_list.py +test/test_paginated_group_user_list.py +test/test_paginated_pacs_file_list.py +test/test_paginated_pacs_series_list.py +test/test_paginated_pipeline_list.py +test/test_paginated_pipeline_source_file_list.py +test/test_paginated_plugin_admin_list.py +test/test_paginated_plugin_instance_list.py +test/test_paginated_plugin_instance_split_list.py +test/test_paginated_plugin_list.py +test/test_paginated_plugin_meta_list.py +test/test_paginated_plugin_parameter_list.py +test/test_paginated_plugin_piping_list.py +test/test_paginated_tag_list.py +test/test_paginated_tagging_list.py +test/test_paginated_user_file_list.py +test/test_paginated_user_list.py +test/test_paginated_workflow_list.py +test/test_path_parameter.py +test/test_patient_sex_enum.py +test/test_permission_enum.py +test/test_pipeline.py +test/test_pipeline_custom_json.py +test/test_pipeline_request.py +test/test_pipeline_source_file.py +test/test_pipeline_source_file_ftype.py +test/test_pipeline_source_file_request.py +test/test_pipelines_api.py +test/test_plugin.py +test/test_plugin_admin.py +test/test_plugin_admin_request.py +test/test_plugin_instance.py +test/test_plugin_instance_request.py +test/test_plugin_instance_split.py +test/test_plugin_instance_split_request.py +test/test_plugin_meta.py +test/test_plugin_parameter.py +test/test_plugin_parameter_default.py +test/test_plugin_parameter_type.py +test/test_plugin_piping.py +test/test_plugin_type.py +test/test_plugininstances_api.py +test/test_plugins_api.py +test/test_publicfeeds_api.py +test/test_schema_api.py +test/test_search_api.py +test/test_status_enum.py +test/test_str_parameter.py +test/test_tag.py +test/test_tag_request.py +test/test_tagging.py +test/test_taggings_api.py +test/test_tags_api.py +test/test_unextpath_parameter.py +test/test_user.py +test/test_user_file.py +test/test_user_file_request.py +test/test_user_request.py +test/test_userfiles_api.py +test/test_userpermissions_api.py +test/test_users_api.py +test/test_workflow.py +test/test_workflow_request.py tox.ini diff --git a/python-async/.openapi-generator/VERSION b/python-async/.openapi-generator/VERSION index 09a6d30..4bc5d61 100644 --- a/python-async/.openapi-generator/VERSION +++ b/python-async/.openapi-generator/VERSION @@ -1 +1 @@ -7.8.0 +7.9.0 diff --git a/python-async/.travis.yml b/python-async/.travis.yml index 4155a72..f389869 100644 --- a/python-async/.travis.yml +++ b/python-async/.travis.yml @@ -1,13 +1,13 @@ # ref: https://docs.travis-ci.com/user/languages/python language: python python: - - "3.7" - "3.8" - "3.9" - "3.10" - "3.11" + - "3.12" # uncomment the following if needed - #- "3.11-dev" # 3.11 development branch + #- "3.12-dev" # 3.12 development branch #- "nightly" # nightly build # command to install dependencies install: diff --git a/python-async/README.md b/python-async/README.md index c87cc73..6e9e238 100644 --- a/python-async/README.md +++ b/python-async/README.md @@ -3,9 +3,9 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChR This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 0.0.0+unknown -- Package version: 0.0.1a4 -- Generator version: 7.8.0 +- API version: ${GITHUB_REF_NAME:1} +- Package version: 0.1.0b1 +- Generator version: 7.9.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit [https://chrisproject.org](https://chrisproject.org) @@ -19,9 +19,9 @@ Python 3.7+ If the python package is hosted on a repository, you can install directly using: ```sh -pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git +pip install git+https://github.com/FNNDSC/openapi-clients.git ``` -(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`) +(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/FNNDSC/openapi-clients.git`) Then import the package: ```python diff --git a/python-async/aiochris_oag/__init__.py b/python-async/aiochris_oag/__init__.py index 2a63528..8f761d8 100644 --- a/python-async/aiochris_oag/__init__.py +++ b/python-async/aiochris_oag/__init__.py @@ -7,7 +7,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "0.0.1a4" +__version__ = "0.1.0b1" # import apis into sdk package from aiochris_oag.api.auth_token_api import AuthTokenApi diff --git a/python-async/aiochris_oag/api/auth_token_api.py b/python-async/aiochris_oag/api/auth_token_api.py index 0047276..86d366f 100644 --- a/python-async/aiochris_oag/api/auth_token_api.py +++ b/python-async/aiochris_oag/api/auth_token_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -264,7 +264,9 @@ def _auth_token_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/chris_admin_api.py b/python-async/aiochris_oag/api/chris_admin_api.py index 652fe74..f9c8d24 100644 --- a/python-async/aiochris_oag/api/chris_admin_api.py +++ b/python-async/aiochris_oag/api/chris_admin_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -260,7 +260,9 @@ def _chris_admin_api_v1_computeresources_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -536,7 +538,9 @@ def _chris_admin_api_v1_computeresources_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -803,7 +807,9 @@ def _chris_admin_api_v1_computeresources_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1070,7 +1076,9 @@ def _chris_admin_api_v1_computeresources_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1331,7 +1339,9 @@ def _chris_admin_api_v1_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1607,7 +1617,9 @@ def _chris_admin_api_v1_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1874,7 +1886,9 @@ def _chris_admin_api_v1_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2141,7 +2155,9 @@ def _chris_admin_api_v1_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2415,7 +2431,9 @@ def _chris_admin_api_v1_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/chrisinstance_api.py b/python-async/aiochris_oag/api/chrisinstance_api.py index 0a696d8..6e8d1c8 100644 --- a/python-async/aiochris_oag/api/chrisinstance_api.py +++ b/python-async/aiochris_oag/api/chrisinstance_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -253,7 +253,9 @@ def _chrisinstance_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/comments_api.py b/python-async/aiochris_oag/api/comments_api.py index f7bda69..0d68217 100644 --- a/python-async/aiochris_oag/api/comments_api.py +++ b/python-async/aiochris_oag/api/comments_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -270,7 +270,9 @@ def _comments_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -548,7 +550,9 @@ def _comments_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -828,7 +832,9 @@ def _comments_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1097,7 +1103,9 @@ def _comments_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1397,7 +1405,9 @@ def _comments_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1683,7 +1693,9 @@ def _comments_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/computeresources_api.py b/python-async/aiochris_oag/api/computeresources_api.py index e816824..14bdc9d 100644 --- a/python-async/aiochris_oag/api/computeresources_api.py +++ b/python-async/aiochris_oag/api/computeresources_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -269,7 +269,9 @@ def _computeresources_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -536,7 +538,9 @@ def _computeresources_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -875,7 +879,9 @@ def _computeresources_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/default_api.py b/python-async/aiochris_oag/api/default_api.py index 9909a86..559ecf6 100644 --- a/python-async/aiochris_oag/api/default_api.py +++ b/python-async/aiochris_oag/api/default_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -257,7 +257,9 @@ def _root_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -524,7 +526,9 @@ def _root_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -791,7 +795,9 @@ def _root_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1065,7 +1071,9 @@ def _root_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/downloadtokens_api.py b/python-async/aiochris_oag/api/downloadtokens_api.py index c2c74ac..fe38ecb 100644 --- a/python-async/aiochris_oag/api/downloadtokens_api.py +++ b/python-async/aiochris_oag/api/downloadtokens_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -257,7 +257,9 @@ def _downloadtokens_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -546,7 +548,9 @@ def _downloadtokens_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -813,7 +817,9 @@ def _downloadtokens_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1100,7 +1106,9 @@ def _downloadtokens_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/filebrowser_api.py b/python-async/aiochris_oag/api/filebrowser_api.py index 36917e1..c48df24 100644 --- a/python-async/aiochris_oag/api/filebrowser_api.py +++ b/python-async/aiochris_oag/api/filebrowser_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,7 +18,7 @@ from typing_extensions import Annotated from pydantic import Field, StrictBytes, StrictInt, StrictStr, field_validator -from typing import Optional, Union +from typing import Optional, Tuple, Union from typing_extensions import Annotated from aiochris_oag.models.file_browser_file import FileBrowserFile from aiochris_oag.models.file_browser_file_group_permission import FileBrowserFileGroupPermission @@ -307,7 +307,9 @@ def _filebrowser_children_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -576,7 +578,9 @@ def _filebrowser_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -852,7 +856,9 @@ def _filebrowser_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1106,7 +1112,9 @@ def _filebrowser_files_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1373,7 +1381,9 @@ def _filebrowser_files_grouppermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1651,7 +1661,9 @@ def _filebrowser_files_grouppermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1931,7 +1943,9 @@ def _filebrowser_files_grouppermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2200,7 +2214,9 @@ def _filebrowser_files_grouppermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2513,7 +2529,9 @@ def _filebrowser_files_grouppermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2803,7 +2821,9 @@ def _filebrowser_files_grouppermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3107,7 +3127,9 @@ def _filebrowser_files_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3376,7 +3398,9 @@ def _filebrowser_files_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3637,7 +3661,9 @@ def _filebrowser_files_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3911,7 +3937,9 @@ def _filebrowser_files_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4202,7 +4230,9 @@ def _filebrowser_files_userpermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4480,7 +4510,9 @@ def _filebrowser_files_userpermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4760,7 +4792,9 @@ def _filebrowser_files_userpermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5029,7 +5063,9 @@ def _filebrowser_files_userpermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5342,7 +5378,9 @@ def _filebrowser_files_userpermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5632,7 +5670,9 @@ def _filebrowser_files_userpermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5923,7 +5963,9 @@ def _filebrowser_grouppermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6201,7 +6243,9 @@ def _filebrowser_grouppermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6481,7 +6525,9 @@ def _filebrowser_grouppermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6750,7 +6796,9 @@ def _filebrowser_grouppermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7063,7 +7111,9 @@ def _filebrowser_grouppermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7353,7 +7403,9 @@ def _filebrowser_grouppermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7631,7 +7683,9 @@ def _filebrowser_linkfiles_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7898,7 +7952,9 @@ def _filebrowser_linkfiles_grouppermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8176,7 +8232,9 @@ def _filebrowser_linkfiles_grouppermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8456,7 +8514,9 @@ def _filebrowser_linkfiles_grouppermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8725,7 +8785,9 @@ def _filebrowser_linkfiles_grouppermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9038,7 +9100,9 @@ def _filebrowser_linkfiles_grouppermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9328,7 +9392,9 @@ def _filebrowser_linkfiles_grouppermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9632,7 +9698,9 @@ def _filebrowser_linkfiles_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9901,7 +9969,9 @@ def _filebrowser_linkfiles_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -10162,7 +10232,9 @@ def _filebrowser_linkfiles_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -10436,7 +10508,9 @@ def _filebrowser_linkfiles_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -10727,7 +10801,9 @@ def _filebrowser_linkfiles_userpermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -11005,7 +11081,9 @@ def _filebrowser_linkfiles_userpermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -11285,7 +11363,9 @@ def _filebrowser_linkfiles_userpermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -11554,7 +11634,9 @@ def _filebrowser_linkfiles_userpermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -11867,7 +11949,9 @@ def _filebrowser_linkfiles_userpermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -12157,7 +12241,9 @@ def _filebrowser_linkfiles_userpermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -12448,7 +12534,9 @@ def _filebrowser_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -12715,7 +12803,9 @@ def _filebrowser_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -12989,7 +13079,9 @@ def _filebrowser_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -13269,7 +13361,9 @@ def _filebrowser_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -13560,7 +13654,9 @@ def _filebrowser_userpermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -13838,7 +13934,9 @@ def _filebrowser_userpermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -14118,7 +14216,9 @@ def _filebrowser_userpermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -14387,7 +14487,9 @@ def _filebrowser_userpermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -14700,7 +14802,9 @@ def _filebrowser_userpermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -14990,7 +15094,9 @@ def _filebrowser_userpermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/grouppermissions_api.py b/python-async/aiochris_oag/api/grouppermissions_api.py index 752e068..117d3ae 100644 --- a/python-async/aiochris_oag/api/grouppermissions_api.py +++ b/python-async/aiochris_oag/api/grouppermissions_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -270,7 +270,9 @@ def _grouppermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -548,7 +550,9 @@ def _grouppermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -828,7 +832,9 @@ def _grouppermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1097,7 +1103,9 @@ def _grouppermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1410,7 +1418,9 @@ def _grouppermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/groups_api.py b/python-async/aiochris_oag/api/groups_api.py index 64e7a80..250c37b 100644 --- a/python-async/aiochris_oag/api/groups_api.py +++ b/python-async/aiochris_oag/api/groups_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -260,7 +260,9 @@ def _groups_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -536,7 +538,9 @@ def _groups_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -803,7 +807,9 @@ def _groups_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1070,7 +1076,9 @@ def _groups_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1383,7 +1391,9 @@ def _groups_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1675,7 +1685,9 @@ def _groups_users_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1953,7 +1965,9 @@ def _groups_users_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2233,7 +2247,9 @@ def _groups_users_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2502,7 +2518,9 @@ def _groups_users_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2815,7 +2833,9 @@ def _groups_users_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/note_api.py b/python-async/aiochris_oag/api/note_api.py index d17d7a2..c84aae7 100644 --- a/python-async/aiochris_oag/api/note_api.py +++ b/python-async/aiochris_oag/api/note_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -255,7 +255,9 @@ def _note_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -529,7 +531,9 @@ def _note_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/pacs_api.py b/python-async/aiochris_oag/api/pacs_api.py index a0e5686..9b66875 100644 --- a/python-async/aiochris_oag/api/pacs_api.py +++ b/python-async/aiochris_oag/api/pacs_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ from datetime import date, datetime from pydantic import Field, StrictBytes, StrictInt, StrictStr, field_validator -from typing import Optional, Union +from typing import Optional, Tuple, Union from typing_extensions import Annotated from aiochris_oag.models.pacs_file import PACSFile from aiochris_oag.models.pacs_series import PACSSeries @@ -272,7 +272,9 @@ def _pacs_files_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -539,7 +541,9 @@ def _pacs_files_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -800,7 +804,9 @@ def _pacs_files_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1178,7 +1184,9 @@ def _pacs_files_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1508,7 +1516,9 @@ def _pacs_series_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1775,7 +1785,9 @@ def _pacs_series_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2283,7 +2295,9 @@ def _pacs_series_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/pipelines_api.py b/python-async/aiochris_oag/api/pipelines_api.py index cab8ac0..82084ce 100644 --- a/python-async/aiochris_oag/api/pipelines_api.py +++ b/python-async/aiochris_oag/api/pipelines_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ from datetime import datetime from pydantic import Field, StrictBytes, StrictInt, StrictStr, field_validator -from typing import Optional, Union +from typing import Optional, Tuple, Union from typing_extensions import Annotated from aiochris_oag.models.default_piping_bool_parameter import DefaultPipingBoolParameter from aiochris_oag.models.default_piping_bool_parameter_request import DefaultPipingBoolParameterRequest @@ -291,7 +291,9 @@ def _all_workflows_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -558,7 +560,9 @@ def _pipelines_boolean_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -832,7 +836,9 @@ def _pipelines_boolean_parameter_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1110,7 +1116,9 @@ def _pipelines_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1386,7 +1394,9 @@ def _pipelines_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1640,7 +1650,9 @@ def _pipelines_float_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1914,7 +1926,9 @@ def _pipelines_float_parameter_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2192,7 +2206,9 @@ def _pipelines_integer_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2466,7 +2482,9 @@ def _pipelines_integer_parameter_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2744,7 +2762,9 @@ def _pipelines_json_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3018,7 +3038,9 @@ def _pipelines_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3311,7 +3333,9 @@ def _pipelines_parameters_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3606,7 +3630,9 @@ def _pipelines_pipings_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3875,7 +3901,9 @@ def _pipelines_pipings_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4162,7 +4190,9 @@ def _pipelines_plugins_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4431,7 +4461,9 @@ def _pipelines_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4809,7 +4841,9 @@ def _pipelines_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5126,7 +5160,9 @@ def _pipelines_sourcefiles_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5415,7 +5451,9 @@ def _pipelines_sourcefiles_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5682,7 +5720,9 @@ def _pipelines_sourcefiles_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5943,7 +5983,9 @@ def _pipelines_sourcefiles_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6308,7 +6350,9 @@ def _pipelines_sourcefiles_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6621,7 +6665,9 @@ def _pipelines_string_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6895,7 +6941,9 @@ def _pipelines_string_parameter_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7186,7 +7234,9 @@ def _pipelines_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7477,7 +7527,9 @@ def _pipelines_workflows_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7755,7 +7807,9 @@ def _pipelines_workflows_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8035,7 +8089,9 @@ def _pipelines_workflows_plugininstances_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8304,7 +8360,9 @@ def _pipelines_workflows_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8630,7 +8688,9 @@ def _pipelines_workflows_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8926,7 +8986,9 @@ def _pipelines_workflows_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9230,7 +9292,9 @@ def _workflows_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/plugininstances_api.py b/python-async/aiochris_oag/api/plugininstances_api.py index 843c275..c016c1a 100644 --- a/python-async/aiochris_oag/api/plugininstances_api.py +++ b/python-async/aiochris_oag/api/plugininstances_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -281,7 +281,9 @@ def _plugininstances_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/plugins_api.py b/python-async/aiochris_oag/api/plugins_api.py index 2292288..c9acf24 100644 --- a/python-async/aiochris_oag/api/plugins_api.py +++ b/python-async/aiochris_oag/api/plugins_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -288,7 +288,9 @@ def _all_plugins_instances_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -555,7 +557,9 @@ def _plugins_boolean_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -842,7 +846,9 @@ def _plugins_computeresources_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1111,7 +1117,9 @@ def _plugins_float_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1385,7 +1393,9 @@ def _plugins_instances_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1689,7 +1699,9 @@ def _plugins_instances_descendants_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1958,7 +1970,9 @@ def _plugins_instances_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2238,7 +2252,9 @@ def _plugins_instances_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2533,7 +2549,9 @@ def _plugins_instances_parameters_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2802,7 +2820,9 @@ def _plugins_instances_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3284,7 +3304,9 @@ def _plugins_instances_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3664,7 +3686,9 @@ def _plugins_instances_splits_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3968,7 +3992,9 @@ def _plugins_instances_splits_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4237,7 +4263,9 @@ def _plugins_instances_splits_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4511,7 +4539,9 @@ def _plugins_instances_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4789,7 +4819,9 @@ def _plugins_integer_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5063,7 +5095,9 @@ def _plugins_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5343,7 +5377,9 @@ def _plugins_metas_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5636,7 +5672,9 @@ def _plugins_metas_plugins_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5905,7 +5943,9 @@ def _plugins_metas_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6322,7 +6362,9 @@ def _plugins_metas_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6677,7 +6719,9 @@ def _plugins_parameters_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6946,7 +6990,9 @@ def _plugins_parameters_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7207,7 +7253,9 @@ def _plugins_path_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7468,7 +7516,9 @@ def _plugins_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7911,7 +7961,9 @@ def _plugins_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8248,7 +8300,9 @@ def _plugins_string_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8509,7 +8563,9 @@ def _plugins_unextpath_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/publicfeeds_api.py b/python-async/aiochris_oag/api/publicfeeds_api.py index 267d698..c6bda43 100644 --- a/python-async/aiochris_oag/api/publicfeeds_api.py +++ b/python-async/aiochris_oag/api/publicfeeds_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -269,7 +269,9 @@ def _publicfeeds_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -666,7 +668,9 @@ def _publicfeeds_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/schema_api.py b/python-async/aiochris_oag/api/schema_api.py index fc45301..3575b1e 100644 --- a/python-async/aiochris_oag/api/schema_api.py +++ b/python-async/aiochris_oag/api/schema_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -266,7 +266,9 @@ def _schema_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/search_api.py b/python-async/aiochris_oag/api/search_api.py index f0ef798..0d65736 100644 --- a/python-async/aiochris_oag/api/search_api.py +++ b/python-async/aiochris_oag/api/search_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -386,7 +386,9 @@ def _search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/taggings_api.py b/python-async/aiochris_oag/api/taggings_api.py index c1fa67c..d0d67b9 100644 --- a/python-async/aiochris_oag/api/taggings_api.py +++ b/python-async/aiochris_oag/api/taggings_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -256,7 +256,9 @@ def _taggings_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -517,7 +519,9 @@ def _taggings_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -797,7 +801,9 @@ def _taggings_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1066,7 +1072,9 @@ def _taggings_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/tags_api.py b/python-async/aiochris_oag/api/tags_api.py index 297ec7d..0ff7586 100644 --- a/python-async/aiochris_oag/api/tags_api.py +++ b/python-async/aiochris_oag/api/tags_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -286,7 +286,9 @@ def _feed_tags_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -555,7 +557,9 @@ def _tags_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -831,7 +835,9 @@ def _tags_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1111,7 +1117,9 @@ def _tags_feeds_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1393,7 +1401,9 @@ def _tags_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1660,7 +1670,9 @@ def _tags_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1986,7 +1998,9 @@ def _tags_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2269,7 +2283,9 @@ def _tags_taggings_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2556,7 +2572,9 @@ def _tags_taggings_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2838,7 +2856,9 @@ def _tags_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/userfiles_api.py b/python-async/aiochris_oag/api/userfiles_api.py index afabd6b..34d40ae 100644 --- a/python-async/aiochris_oag/api/userfiles_api.py +++ b/python-async/aiochris_oag/api/userfiles_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ from datetime import datetime from pydantic import Field, StrictBytes, StrictInt, StrictStr, field_validator -from typing import Optional, Union +from typing import Optional, Tuple, Union from typing_extensions import Annotated from aiochris_oag.models.paginated_user_file_list import PaginatedUserFileList from aiochris_oag.models.user_file import UserFile @@ -258,7 +258,9 @@ def _userfiles_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -534,7 +536,9 @@ def _userfiles_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -801,7 +805,9 @@ def _userfiles_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1068,7 +1074,9 @@ def _userfiles_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1329,7 +1337,9 @@ def _userfiles_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1720,7 +1730,9 @@ def _userfiles_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2054,7 +2066,9 @@ def _userfiles_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/userpermissions_api.py b/python-async/aiochris_oag/api/userpermissions_api.py index a85f232..3fc80c1 100644 --- a/python-async/aiochris_oag/api/userpermissions_api.py +++ b/python-async/aiochris_oag/api/userpermissions_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -270,7 +270,9 @@ def _userpermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -548,7 +550,9 @@ def _userpermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -828,7 +832,9 @@ def _userpermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1097,7 +1103,9 @@ def _userpermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1410,7 +1418,9 @@ def _userpermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api/users_api.py b/python-async/aiochris_oag/api/users_api.py index c8a6227..f5c107d 100644 --- a/python-async/aiochris_oag/api/users_api.py +++ b/python-async/aiochris_oag/api/users_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -255,7 +255,9 @@ def _users_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -557,7 +559,9 @@ def _users_groups_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -836,7 +840,9 @@ def _users_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1100,7 +1106,9 @@ def _users_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1371,7 +1379,9 @@ def _users_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python-async/aiochris_oag/api_client.py b/python-async/aiochris_oag/api_client.py index 34f0796..4c7b327 100644 --- a/python-async/aiochris_oag/api_client.py +++ b/python-async/aiochris_oag/api_client.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -91,7 +91,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.0.1a4/python' + self.user_agent = 'OpenAPI-Generator/0.1.0b1/python' self.client_side_validation = configuration.client_side_validation async def __aenter__(self): @@ -408,12 +408,12 @@ def deserialize(self, response_text: str, response_type: str, content_type: Opti data = json.loads(response_text) except ValueError: data = response_text - elif content_type.startswith("application/json"): + elif re.match(r'^application/(json|[\w!#$&.+-^_]+\+json)\s*(;|$)', content_type, re.IGNORECASE): if response_text == "": data = "" else: data = json.loads(response_text) - elif content_type.startswith("text/plain"): + elif re.match(r'^text\/[a-z.+-]+\s*(;|$)', content_type, re.IGNORECASE): data = response_text else: raise ApiException( @@ -539,7 +539,10 @@ def parameters_to_url_query(self, params, collection_formats): return "&".join(["=".join(map(str, item)) for item in new_params]) - def files_parameters(self, files: Dict[str, Union[str, bytes]]): + def files_parameters( + self, + files: Dict[str, Union[str, bytes, List[str], List[bytes], Tuple[str, bytes]]], + ): """Builds form parameters. :param files: File parameters. @@ -554,6 +557,12 @@ def files_parameters(self, files: Dict[str, Union[str, bytes]]): elif isinstance(v, bytes): filename = k filedata = v + elif isinstance(v, tuple): + filename, filedata = v + elif isinstance(v, list): + for file_param in v: + params.extend(self.files_parameters({k: file_param})) + continue else: raise ValueError("Unsupported file value") mimetype = ( diff --git a/python-async/aiochris_oag/configuration.py b/python-async/aiochris_oag/configuration.py index 996dc0a..9fe443f 100644 --- a/python-async/aiochris_oag/configuration.py +++ b/python-async/aiochris_oag/configuration.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -450,8 +450,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 0.0.0+unknown\n"\ - "SDK Package Version: 0.0.1a4".\ + "Version of the API: ${GITHUB_REF_NAME:1}\n"\ + "SDK Package Version: 0.1.0b1".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/python-async/aiochris_oag/exceptions.py b/python-async/aiochris_oag/exceptions.py index 877c37b..f359e00 100644 --- a/python-async/aiochris_oag/exceptions.py +++ b/python-async/aiochris_oag/exceptions.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/__init__.py b/python-async/aiochris_oag/models/__init__.py index 01a3581..76ccfa6 100644 --- a/python-async/aiochris_oag/models/__init__.py +++ b/python-async/aiochris_oag/models/__init__.py @@ -6,7 +6,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/auth_token.py b/python-async/aiochris_oag/models/auth_token.py index 2d4d964..e7831dd 100644 --- a/python-async/aiochris_oag/models/auth_token.py +++ b/python-async/aiochris_oag/models/auth_token.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/auth_token_request.py b/python-async/aiochris_oag/models/auth_token_request.py index 0601365..5bd0123 100644 --- a/python-async/aiochris_oag/models/auth_token_request.py +++ b/python-async/aiochris_oag/models/auth_token_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/blank_enum.py b/python-async/aiochris_oag/models/blank_enum.py index 68c25e5..227e88c 100644 --- a/python-async/aiochris_oag/models/blank_enum.py +++ b/python-async/aiochris_oag/models/blank_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/bool_parameter.py b/python-async/aiochris_oag/models/bool_parameter.py index 1b46c53..ddc716e 100644 --- a/python-async/aiochris_oag/models/bool_parameter.py +++ b/python-async/aiochris_oag/models/bool_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/chris_instance.py b/python-async/aiochris_oag/models/chris_instance.py index 47c0d5b..3081f56 100644 --- a/python-async/aiochris_oag/models/chris_instance.py +++ b/python-async/aiochris_oag/models/chris_instance.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/comment.py b/python-async/aiochris_oag/models/comment.py index 66cd78f..86d514d 100644 --- a/python-async/aiochris_oag/models/comment.py +++ b/python-async/aiochris_oag/models/comment.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/comment_request.py b/python-async/aiochris_oag/models/comment_request.py index a099944..4fd54d1 100644 --- a/python-async/aiochris_oag/models/comment_request.py +++ b/python-async/aiochris_oag/models/comment_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/compute_resource.py b/python-async/aiochris_oag/models/compute_resource.py index 8dff590..84b1874 100644 --- a/python-async/aiochris_oag/models/compute_resource.py +++ b/python-async/aiochris_oag/models/compute_resource.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/compute_resource_request.py b/python-async/aiochris_oag/models/compute_resource_request.py index 1dac13a..0793431 100644 --- a/python-async/aiochris_oag/models/compute_resource_request.py +++ b/python-async/aiochris_oag/models/compute_resource_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/default_piping_bool_parameter.py b/python-async/aiochris_oag/models/default_piping_bool_parameter.py index 3bdbb85..b6edc9a 100644 --- a/python-async/aiochris_oag/models/default_piping_bool_parameter.py +++ b/python-async/aiochris_oag/models/default_piping_bool_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/default_piping_bool_parameter_request.py b/python-async/aiochris_oag/models/default_piping_bool_parameter_request.py index b459e66..b337192 100644 --- a/python-async/aiochris_oag/models/default_piping_bool_parameter_request.py +++ b/python-async/aiochris_oag/models/default_piping_bool_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/default_piping_float_parameter.py b/python-async/aiochris_oag/models/default_piping_float_parameter.py index b236834..f1bfcf2 100644 --- a/python-async/aiochris_oag/models/default_piping_float_parameter.py +++ b/python-async/aiochris_oag/models/default_piping_float_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/default_piping_float_parameter_request.py b/python-async/aiochris_oag/models/default_piping_float_parameter_request.py index fd40f13..91b9682 100644 --- a/python-async/aiochris_oag/models/default_piping_float_parameter_request.py +++ b/python-async/aiochris_oag/models/default_piping_float_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/default_piping_int_parameter.py b/python-async/aiochris_oag/models/default_piping_int_parameter.py index 51cdcc1..a5764b9 100644 --- a/python-async/aiochris_oag/models/default_piping_int_parameter.py +++ b/python-async/aiochris_oag/models/default_piping_int_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/default_piping_int_parameter_request.py b/python-async/aiochris_oag/models/default_piping_int_parameter_request.py index 4b0c545..833daaa 100644 --- a/python-async/aiochris_oag/models/default_piping_int_parameter_request.py +++ b/python-async/aiochris_oag/models/default_piping_int_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/default_piping_str_parameter.py b/python-async/aiochris_oag/models/default_piping_str_parameter.py index 82e0ed4..cb57e2a 100644 --- a/python-async/aiochris_oag/models/default_piping_str_parameter.py +++ b/python-async/aiochris_oag/models/default_piping_str_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/default_piping_str_parameter_request.py b/python-async/aiochris_oag/models/default_piping_str_parameter_request.py index 798bdd8..8a769b7 100644 --- a/python-async/aiochris_oag/models/default_piping_str_parameter_request.py +++ b/python-async/aiochris_oag/models/default_piping_str_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/feed.py b/python-async/aiochris_oag/models/feed.py index 61315be..7d48457 100644 --- a/python-async/aiochris_oag/models/feed.py +++ b/python-async/aiochris_oag/models/feed.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/feed_group_permission.py b/python-async/aiochris_oag/models/feed_group_permission.py index 98a5617..acca782 100644 --- a/python-async/aiochris_oag/models/feed_group_permission.py +++ b/python-async/aiochris_oag/models/feed_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/feed_group_permission_request.py b/python-async/aiochris_oag/models/feed_group_permission_request.py index 78e5433..4f490f4 100644 --- a/python-async/aiochris_oag/models/feed_group_permission_request.py +++ b/python-async/aiochris_oag/models/feed_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/feed_request.py b/python-async/aiochris_oag/models/feed_request.py index 42aebb1..c9f9488 100644 --- a/python-async/aiochris_oag/models/feed_request.py +++ b/python-async/aiochris_oag/models/feed_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/feed_user_permission.py b/python-async/aiochris_oag/models/feed_user_permission.py index 6eb7da0..2b5e313 100644 --- a/python-async/aiochris_oag/models/feed_user_permission.py +++ b/python-async/aiochris_oag/models/feed_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/feed_user_permission_request.py b/python-async/aiochris_oag/models/feed_user_permission_request.py index 86ff6ea..a7aa54f 100644 --- a/python-async/aiochris_oag/models/feed_user_permission_request.py +++ b/python-async/aiochris_oag/models/feed_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_file.py b/python-async/aiochris_oag/models/file_browser_file.py index 2c99154..a4000d6 100644 --- a/python-async/aiochris_oag/models/file_browser_file.py +++ b/python-async/aiochris_oag/models/file_browser_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_file_group_permission.py b/python-async/aiochris_oag/models/file_browser_file_group_permission.py index 08d82f0..abc16d3 100644 --- a/python-async/aiochris_oag/models/file_browser_file_group_permission.py +++ b/python-async/aiochris_oag/models/file_browser_file_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_file_group_permission_request.py b/python-async/aiochris_oag/models/file_browser_file_group_permission_request.py index 0809ce9..3d12820 100644 --- a/python-async/aiochris_oag/models/file_browser_file_group_permission_request.py +++ b/python-async/aiochris_oag/models/file_browser_file_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_file_request.py b/python-async/aiochris_oag/models/file_browser_file_request.py index 849034c..4764b8f 100644 --- a/python-async/aiochris_oag/models/file_browser_file_request.py +++ b/python-async/aiochris_oag/models/file_browser_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictBytes, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -28,7 +28,7 @@ class FileBrowserFileRequest(BaseModel): """ FileBrowserFileRequest """ # noqa: E501 - fname: Optional[Union[StrictBytes, StrictStr]] = None + fname: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None public: Optional[StrictBool] = None new_file_path: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]] = None __properties: ClassVar[List[str]] = ["fname", "public", "new_file_path"] diff --git a/python-async/aiochris_oag/models/file_browser_file_user_permission.py b/python-async/aiochris_oag/models/file_browser_file_user_permission.py index 3b27af2..df2ee8d 100644 --- a/python-async/aiochris_oag/models/file_browser_file_user_permission.py +++ b/python-async/aiochris_oag/models/file_browser_file_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_file_user_permission_request.py b/python-async/aiochris_oag/models/file_browser_file_user_permission_request.py index 9687912..c6ea605 100644 --- a/python-async/aiochris_oag/models/file_browser_file_user_permission_request.py +++ b/python-async/aiochris_oag/models/file_browser_file_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_folder.py b/python-async/aiochris_oag/models/file_browser_folder.py index b822d9f..ba737ca 100644 --- a/python-async/aiochris_oag/models/file_browser_folder.py +++ b/python-async/aiochris_oag/models/file_browser_folder.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_folder_group_permission.py b/python-async/aiochris_oag/models/file_browser_folder_group_permission.py index 11b6bcd..c5cd88d 100644 --- a/python-async/aiochris_oag/models/file_browser_folder_group_permission.py +++ b/python-async/aiochris_oag/models/file_browser_folder_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_folder_group_permission_request.py b/python-async/aiochris_oag/models/file_browser_folder_group_permission_request.py index 35a630a..95ee8f6 100644 --- a/python-async/aiochris_oag/models/file_browser_folder_group_permission_request.py +++ b/python-async/aiochris_oag/models/file_browser_folder_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_folder_request.py b/python-async/aiochris_oag/models/file_browser_folder_request.py index 8dcd732..8fb0573 100644 --- a/python-async/aiochris_oag/models/file_browser_folder_request.py +++ b/python-async/aiochris_oag/models/file_browser_folder_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_folder_user_permission.py b/python-async/aiochris_oag/models/file_browser_folder_user_permission.py index 13e6c14..cf890d0 100644 --- a/python-async/aiochris_oag/models/file_browser_folder_user_permission.py +++ b/python-async/aiochris_oag/models/file_browser_folder_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_folder_user_permission_request.py b/python-async/aiochris_oag/models/file_browser_folder_user_permission_request.py index 9c1f5a7..fe61c40 100644 --- a/python-async/aiochris_oag/models/file_browser_folder_user_permission_request.py +++ b/python-async/aiochris_oag/models/file_browser_folder_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_link_file.py b/python-async/aiochris_oag/models/file_browser_link_file.py index 14fa245..f7a6af1 100644 --- a/python-async/aiochris_oag/models/file_browser_link_file.py +++ b/python-async/aiochris_oag/models/file_browser_link_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_link_file_group_permission.py b/python-async/aiochris_oag/models/file_browser_link_file_group_permission.py index 734d158..eec8713 100644 --- a/python-async/aiochris_oag/models/file_browser_link_file_group_permission.py +++ b/python-async/aiochris_oag/models/file_browser_link_file_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_link_file_group_permission_request.py b/python-async/aiochris_oag/models/file_browser_link_file_group_permission_request.py index 4effc3a..8056306 100644 --- a/python-async/aiochris_oag/models/file_browser_link_file_group_permission_request.py +++ b/python-async/aiochris_oag/models/file_browser_link_file_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_link_file_request.py b/python-async/aiochris_oag/models/file_browser_link_file_request.py index bd8c1c1..2a6ff3e 100644 --- a/python-async/aiochris_oag/models/file_browser_link_file_request.py +++ b/python-async/aiochris_oag/models/file_browser_link_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictBytes, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -29,7 +29,7 @@ class FileBrowserLinkFileRequest(BaseModel): FileBrowserLinkFileRequest """ # noqa: E501 path: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]] = None - fname: Optional[Union[StrictBytes, StrictStr]] = None + fname: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None public: Optional[StrictBool] = None new_link_file_path: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]] = None __properties: ClassVar[List[str]] = ["path", "fname", "public", "new_link_file_path"] diff --git a/python-async/aiochris_oag/models/file_browser_link_file_user_permission.py b/python-async/aiochris_oag/models/file_browser_link_file_user_permission.py index 1ad1fa9..15c07b0 100644 --- a/python-async/aiochris_oag/models/file_browser_link_file_user_permission.py +++ b/python-async/aiochris_oag/models/file_browser_link_file_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_browser_link_file_user_permission_request.py b/python-async/aiochris_oag/models/file_browser_link_file_user_permission_request.py index f077ac0..75945f5 100644 --- a/python-async/aiochris_oag/models/file_browser_link_file_user_permission_request.py +++ b/python-async/aiochris_oag/models/file_browser_link_file_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_download_token.py b/python-async/aiochris_oag/models/file_download_token.py index 930613b..fd506aa 100644 --- a/python-async/aiochris_oag/models/file_download_token.py +++ b/python-async/aiochris_oag/models/file_download_token.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/file_download_token_request.py b/python-async/aiochris_oag/models/file_download_token_request.py index f44f675..33fa7d1 100644 --- a/python-async/aiochris_oag/models/file_download_token_request.py +++ b/python-async/aiochris_oag/models/file_download_token_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/float_parameter.py b/python-async/aiochris_oag/models/float_parameter.py index 4607029..2914f99 100644 --- a/python-async/aiochris_oag/models/float_parameter.py +++ b/python-async/aiochris_oag/models/float_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/ftype_enum.py b/python-async/aiochris_oag/models/ftype_enum.py index 7f82f4e..dca67d1 100644 --- a/python-async/aiochris_oag/models/ftype_enum.py +++ b/python-async/aiochris_oag/models/ftype_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/generic_default_piping_parameter.py b/python-async/aiochris_oag/models/generic_default_piping_parameter.py index d3ea4da..190491e 100644 --- a/python-async/aiochris_oag/models/generic_default_piping_parameter.py +++ b/python-async/aiochris_oag/models/generic_default_piping_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/generic_default_piping_parameter_value.py b/python-async/aiochris_oag/models/generic_default_piping_parameter_value.py index 6d021ef..b06b3d3 100644 --- a/python-async/aiochris_oag/models/generic_default_piping_parameter_value.py +++ b/python-async/aiochris_oag/models/generic_default_piping_parameter_value.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/generic_parameter.py b/python-async/aiochris_oag/models/generic_parameter.py index 03e5302..a337182 100644 --- a/python-async/aiochris_oag/models/generic_parameter.py +++ b/python-async/aiochris_oag/models/generic_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/group.py b/python-async/aiochris_oag/models/group.py index a0eeacd..1c640a5 100644 --- a/python-async/aiochris_oag/models/group.py +++ b/python-async/aiochris_oag/models/group.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/group_request.py b/python-async/aiochris_oag/models/group_request.py index f4f4fce..2328f85 100644 --- a/python-async/aiochris_oag/models/group_request.py +++ b/python-async/aiochris_oag/models/group_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/group_user.py b/python-async/aiochris_oag/models/group_user.py index 43b7bac..9cfa789 100644 --- a/python-async/aiochris_oag/models/group_user.py +++ b/python-async/aiochris_oag/models/group_user.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/group_user_request.py b/python-async/aiochris_oag/models/group_user_request.py index d5836ec..4b4401f 100644 --- a/python-async/aiochris_oag/models/group_user_request.py +++ b/python-async/aiochris_oag/models/group_user_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/int_parameter.py b/python-async/aiochris_oag/models/int_parameter.py index 553d20b..41af579 100644 --- a/python-async/aiochris_oag/models/int_parameter.py +++ b/python-async/aiochris_oag/models/int_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/note.py b/python-async/aiochris_oag/models/note.py index c7c7c38..153341b 100644 --- a/python-async/aiochris_oag/models/note.py +++ b/python-async/aiochris_oag/models/note.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/note_request.py b/python-async/aiochris_oag/models/note_request.py index e617c0a..22330a2 100644 --- a/python-async/aiochris_oag/models/note_request.py +++ b/python-async/aiochris_oag/models/note_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pacs_file.py b/python-async/aiochris_oag/models/pacs_file.py index 7af3231..d39f68d 100644 --- a/python-async/aiochris_oag/models/pacs_file.py +++ b/python-async/aiochris_oag/models/pacs_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pacs_series.py b/python-async/aiochris_oag/models/pacs_series.py index 5cb2a1b..f4a414e 100644 --- a/python-async/aiochris_oag/models/pacs_series.py +++ b/python-async/aiochris_oag/models/pacs_series.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pacs_series_patient_sex.py b/python-async/aiochris_oag/models/pacs_series_patient_sex.py index 6f5d52e..0e5b1fa 100644 --- a/python-async/aiochris_oag/models/pacs_series_patient_sex.py +++ b/python-async/aiochris_oag/models/pacs_series_patient_sex.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_comment_list.py b/python-async/aiochris_oag/models/paginated_comment_list.py index eee7d45..9ae9cc3 100644 --- a/python-async/aiochris_oag/models/paginated_comment_list.py +++ b/python-async/aiochris_oag/models/paginated_comment_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_compute_resource_list.py b/python-async/aiochris_oag/models/paginated_compute_resource_list.py index 648a762..761432e 100644 --- a/python-async/aiochris_oag/models/paginated_compute_resource_list.py +++ b/python-async/aiochris_oag/models/paginated_compute_resource_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_feed_group_permission_list.py b/python-async/aiochris_oag/models/paginated_feed_group_permission_list.py index ee96bb2..f048095 100644 --- a/python-async/aiochris_oag/models/paginated_feed_group_permission_list.py +++ b/python-async/aiochris_oag/models/paginated_feed_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_feed_list.py b/python-async/aiochris_oag/models/paginated_feed_list.py index 7e1e559..d3af54b 100644 --- a/python-async/aiochris_oag/models/paginated_feed_list.py +++ b/python-async/aiochris_oag/models/paginated_feed_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_feed_user_permission_list.py b/python-async/aiochris_oag/models/paginated_feed_user_permission_list.py index df2df3a..3516e5a 100644 --- a/python-async/aiochris_oag/models/paginated_feed_user_permission_list.py +++ b/python-async/aiochris_oag/models/paginated_feed_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_file_group_permission_list.py b/python-async/aiochris_oag/models/paginated_file_browser_file_group_permission_list.py index 582d4f6..b920c80 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_file_group_permission_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_file_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_file_list.py b/python-async/aiochris_oag/models/paginated_file_browser_file_list.py index ea42f43..3410be3 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_file_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_file_user_permission_list.py b/python-async/aiochris_oag/models/paginated_file_browser_file_user_permission_list.py index ebe0505..be6765e 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_file_user_permission_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_file_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_folder_group_permission_list.py b/python-async/aiochris_oag/models/paginated_file_browser_folder_group_permission_list.py index fabf651..1ff2155 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_folder_group_permission_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_folder_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_folder_list.py b/python-async/aiochris_oag/models/paginated_file_browser_folder_list.py index 961124e..98b95a0 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_folder_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_folder_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_folder_user_permission_list.py b/python-async/aiochris_oag/models/paginated_file_browser_folder_user_permission_list.py index 6815e77..5b12cea 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_folder_user_permission_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_folder_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_link_file_group_permission_list.py b/python-async/aiochris_oag/models/paginated_file_browser_link_file_group_permission_list.py index 8de5817..a1476f1 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_link_file_group_permission_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_link_file_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_link_file_list.py b/python-async/aiochris_oag/models/paginated_file_browser_link_file_list.py index 9964c5d..f33bb8d 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_link_file_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_link_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_browser_link_file_user_permission_list.py b/python-async/aiochris_oag/models/paginated_file_browser_link_file_user_permission_list.py index a3cce74..82c6e5b 100644 --- a/python-async/aiochris_oag/models/paginated_file_browser_link_file_user_permission_list.py +++ b/python-async/aiochris_oag/models/paginated_file_browser_link_file_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_file_download_token_list.py b/python-async/aiochris_oag/models/paginated_file_download_token_list.py index b824dd2..1826152 100644 --- a/python-async/aiochris_oag/models/paginated_file_download_token_list.py +++ b/python-async/aiochris_oag/models/paginated_file_download_token_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_generic_default_piping_parameter_list.py b/python-async/aiochris_oag/models/paginated_generic_default_piping_parameter_list.py index b674969..2d0b79d 100644 --- a/python-async/aiochris_oag/models/paginated_generic_default_piping_parameter_list.py +++ b/python-async/aiochris_oag/models/paginated_generic_default_piping_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_generic_parameter_list.py b/python-async/aiochris_oag/models/paginated_generic_parameter_list.py index 8dbdbcc..12735a2 100644 --- a/python-async/aiochris_oag/models/paginated_generic_parameter_list.py +++ b/python-async/aiochris_oag/models/paginated_generic_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_group_list.py b/python-async/aiochris_oag/models/paginated_group_list.py index e51ea00..5e94fe3 100644 --- a/python-async/aiochris_oag/models/paginated_group_list.py +++ b/python-async/aiochris_oag/models/paginated_group_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_group_user_list.py b/python-async/aiochris_oag/models/paginated_group_user_list.py index 94388c5..d25f3a0 100644 --- a/python-async/aiochris_oag/models/paginated_group_user_list.py +++ b/python-async/aiochris_oag/models/paginated_group_user_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_pacs_file_list.py b/python-async/aiochris_oag/models/paginated_pacs_file_list.py index 355f4aa..acd3bc2 100644 --- a/python-async/aiochris_oag/models/paginated_pacs_file_list.py +++ b/python-async/aiochris_oag/models/paginated_pacs_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_pacs_series_list.py b/python-async/aiochris_oag/models/paginated_pacs_series_list.py index e4d35c4..dcd6790 100644 --- a/python-async/aiochris_oag/models/paginated_pacs_series_list.py +++ b/python-async/aiochris_oag/models/paginated_pacs_series_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_pipeline_list.py b/python-async/aiochris_oag/models/paginated_pipeline_list.py index 017fb5b..cd9a5aa 100644 --- a/python-async/aiochris_oag/models/paginated_pipeline_list.py +++ b/python-async/aiochris_oag/models/paginated_pipeline_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_pipeline_source_file_list.py b/python-async/aiochris_oag/models/paginated_pipeline_source_file_list.py index 4d6f5a6..c9c0582 100644 --- a/python-async/aiochris_oag/models/paginated_pipeline_source_file_list.py +++ b/python-async/aiochris_oag/models/paginated_pipeline_source_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_plugin_admin_list.py b/python-async/aiochris_oag/models/paginated_plugin_admin_list.py index b373bc6..61fa208 100644 --- a/python-async/aiochris_oag/models/paginated_plugin_admin_list.py +++ b/python-async/aiochris_oag/models/paginated_plugin_admin_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_plugin_instance_list.py b/python-async/aiochris_oag/models/paginated_plugin_instance_list.py index a9d60ec..9d0e389 100644 --- a/python-async/aiochris_oag/models/paginated_plugin_instance_list.py +++ b/python-async/aiochris_oag/models/paginated_plugin_instance_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_plugin_instance_split_list.py b/python-async/aiochris_oag/models/paginated_plugin_instance_split_list.py index 36aa98f..95cae49 100644 --- a/python-async/aiochris_oag/models/paginated_plugin_instance_split_list.py +++ b/python-async/aiochris_oag/models/paginated_plugin_instance_split_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_plugin_list.py b/python-async/aiochris_oag/models/paginated_plugin_list.py index 5fab15b..e5b11e6 100644 --- a/python-async/aiochris_oag/models/paginated_plugin_list.py +++ b/python-async/aiochris_oag/models/paginated_plugin_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_plugin_meta_list.py b/python-async/aiochris_oag/models/paginated_plugin_meta_list.py index b41aecf..c004b1d 100644 --- a/python-async/aiochris_oag/models/paginated_plugin_meta_list.py +++ b/python-async/aiochris_oag/models/paginated_plugin_meta_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_plugin_parameter_list.py b/python-async/aiochris_oag/models/paginated_plugin_parameter_list.py index 0fddf93..1369caf 100644 --- a/python-async/aiochris_oag/models/paginated_plugin_parameter_list.py +++ b/python-async/aiochris_oag/models/paginated_plugin_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_plugin_piping_list.py b/python-async/aiochris_oag/models/paginated_plugin_piping_list.py index e9a186b..723aa14 100644 --- a/python-async/aiochris_oag/models/paginated_plugin_piping_list.py +++ b/python-async/aiochris_oag/models/paginated_plugin_piping_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_tag_list.py b/python-async/aiochris_oag/models/paginated_tag_list.py index db59542..9539270 100644 --- a/python-async/aiochris_oag/models/paginated_tag_list.py +++ b/python-async/aiochris_oag/models/paginated_tag_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_tagging_list.py b/python-async/aiochris_oag/models/paginated_tagging_list.py index 818ff9d..f0063ea 100644 --- a/python-async/aiochris_oag/models/paginated_tagging_list.py +++ b/python-async/aiochris_oag/models/paginated_tagging_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_user_file_list.py b/python-async/aiochris_oag/models/paginated_user_file_list.py index 8bdfc6c..750d65c 100644 --- a/python-async/aiochris_oag/models/paginated_user_file_list.py +++ b/python-async/aiochris_oag/models/paginated_user_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_user_list.py b/python-async/aiochris_oag/models/paginated_user_list.py index b3ea823..34a9681 100644 --- a/python-async/aiochris_oag/models/paginated_user_list.py +++ b/python-async/aiochris_oag/models/paginated_user_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/paginated_workflow_list.py b/python-async/aiochris_oag/models/paginated_workflow_list.py index d8b6cbc..5e98567 100644 --- a/python-async/aiochris_oag/models/paginated_workflow_list.py +++ b/python-async/aiochris_oag/models/paginated_workflow_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/path_parameter.py b/python-async/aiochris_oag/models/path_parameter.py index 387b755..78979db 100644 --- a/python-async/aiochris_oag/models/path_parameter.py +++ b/python-async/aiochris_oag/models/path_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/patient_sex_enum.py b/python-async/aiochris_oag/models/patient_sex_enum.py index c92622e..abcc5a0 100644 --- a/python-async/aiochris_oag/models/patient_sex_enum.py +++ b/python-async/aiochris_oag/models/patient_sex_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/permission_enum.py b/python-async/aiochris_oag/models/permission_enum.py index 83097e5..4fea363 100644 --- a/python-async/aiochris_oag/models/permission_enum.py +++ b/python-async/aiochris_oag/models/permission_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pipeline.py b/python-async/aiochris_oag/models/pipeline.py index 5cdb315..1cb639c 100644 --- a/python-async/aiochris_oag/models/pipeline.py +++ b/python-async/aiochris_oag/models/pipeline.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pipeline_custom_json.py b/python-async/aiochris_oag/models/pipeline_custom_json.py index fc3d2d1..d781335 100644 --- a/python-async/aiochris_oag/models/pipeline_custom_json.py +++ b/python-async/aiochris_oag/models/pipeline_custom_json.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pipeline_request.py b/python-async/aiochris_oag/models/pipeline_request.py index 17396cf..e514aeb 100644 --- a/python-async/aiochris_oag/models/pipeline_request.py +++ b/python-async/aiochris_oag/models/pipeline_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pipeline_source_file.py b/python-async/aiochris_oag/models/pipeline_source_file.py index 81c4f1f..2930007 100644 --- a/python-async/aiochris_oag/models/pipeline_source_file.py +++ b/python-async/aiochris_oag/models/pipeline_source_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pipeline_source_file_ftype.py b/python-async/aiochris_oag/models/pipeline_source_file_ftype.py index 0f2695c..974f114 100644 --- a/python-async/aiochris_oag/models/pipeline_source_file_ftype.py +++ b/python-async/aiochris_oag/models/pipeline_source_file_ftype.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/pipeline_source_file_request.py b/python-async/aiochris_oag/models/pipeline_source_file_request.py index 86f0849..fc3f385 100644 --- a/python-async/aiochris_oag/models/pipeline_source_file_request.py +++ b/python-async/aiochris_oag/models/pipeline_source_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictBytes, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -28,7 +28,7 @@ class PipelineSourceFileRequest(BaseModel): """ PipelineSourceFileRequest """ # noqa: E501 - fname: Union[StrictBytes, StrictStr] + fname: Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]] public: Optional[StrictBool] = None type: Optional[Annotated[str, Field(min_length=1, strict=True)]] = None __properties: ClassVar[List[str]] = ["fname", "public", "type"] diff --git a/python-async/aiochris_oag/models/plugin.py b/python-async/aiochris_oag/models/plugin.py index 3b2ab99..b395ed3 100644 --- a/python-async/aiochris_oag/models/plugin.py +++ b/python-async/aiochris_oag/models/plugin.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_admin.py b/python-async/aiochris_oag/models/plugin_admin.py index 2a58d5a..98a54c3 100644 --- a/python-async/aiochris_oag/models/plugin_admin.py +++ b/python-async/aiochris_oag/models/plugin_admin.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_admin_request.py b/python-async/aiochris_oag/models/plugin_admin_request.py index 6c316a4..719d375 100644 --- a/python-async/aiochris_oag/models/plugin_admin_request.py +++ b/python-async/aiochris_oag/models/plugin_admin_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBytes, StrictInt, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -42,7 +42,7 @@ class PluginAdminRequest(BaseModel): max_memory_limit: Optional[StrictInt] = None min_gpu_limit: Optional[Annotated[int, Field(le=2147483647, strict=True, ge=-2147483648)]] = None max_gpu_limit: Optional[Annotated[int, Field(le=2147483647, strict=True, ge=-2147483648)]] = None - fname: Optional[Union[StrictBytes, StrictStr]] = None + fname: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None plugin_store_url: Optional[Annotated[str, Field(min_length=1, strict=True)]] = None compute_names: Annotated[str, Field(min_length=1, strict=True, max_length=2000)] __properties: ClassVar[List[str]] = ["version", "dock_image", "description", "execshell", "selfpath", "selfexec", "min_number_of_workers", "max_number_of_workers", "min_cpu_limit", "max_cpu_limit", "min_memory_limit", "max_memory_limit", "min_gpu_limit", "max_gpu_limit", "fname", "plugin_store_url", "compute_names"] diff --git a/python-async/aiochris_oag/models/plugin_instance.py b/python-async/aiochris_oag/models/plugin_instance.py index 6fb48e8..afa2251 100644 --- a/python-async/aiochris_oag/models/plugin_instance.py +++ b/python-async/aiochris_oag/models/plugin_instance.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_instance_request.py b/python-async/aiochris_oag/models/plugin_instance_request.py index bdf9897..18a9bea 100644 --- a/python-async/aiochris_oag/models/plugin_instance_request.py +++ b/python-async/aiochris_oag/models/plugin_instance_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_instance_split.py b/python-async/aiochris_oag/models/plugin_instance_split.py index c8fbb4a..00bb7f2 100644 --- a/python-async/aiochris_oag/models/plugin_instance_split.py +++ b/python-async/aiochris_oag/models/plugin_instance_split.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_instance_split_request.py b/python-async/aiochris_oag/models/plugin_instance_split_request.py index 8d7c61a..b70ce36 100644 --- a/python-async/aiochris_oag/models/plugin_instance_split_request.py +++ b/python-async/aiochris_oag/models/plugin_instance_split_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_meta.py b/python-async/aiochris_oag/models/plugin_meta.py index 13e174a..712158d 100644 --- a/python-async/aiochris_oag/models/plugin_meta.py +++ b/python-async/aiochris_oag/models/plugin_meta.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_parameter.py b/python-async/aiochris_oag/models/plugin_parameter.py index 99339a4..7354466 100644 --- a/python-async/aiochris_oag/models/plugin_parameter.py +++ b/python-async/aiochris_oag/models/plugin_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_parameter_default.py b/python-async/aiochris_oag/models/plugin_parameter_default.py index 27dccb6..566a629 100644 --- a/python-async/aiochris_oag/models/plugin_parameter_default.py +++ b/python-async/aiochris_oag/models/plugin_parameter_default.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_parameter_type.py b/python-async/aiochris_oag/models/plugin_parameter_type.py index db98145..784802c 100644 --- a/python-async/aiochris_oag/models/plugin_parameter_type.py +++ b/python-async/aiochris_oag/models/plugin_parameter_type.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_piping.py b/python-async/aiochris_oag/models/plugin_piping.py index 70f7334..020f817 100644 --- a/python-async/aiochris_oag/models/plugin_piping.py +++ b/python-async/aiochris_oag/models/plugin_piping.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/plugin_type.py b/python-async/aiochris_oag/models/plugin_type.py index efdad9d..62a6158 100644 --- a/python-async/aiochris_oag/models/plugin_type.py +++ b/python-async/aiochris_oag/models/plugin_type.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/status_enum.py b/python-async/aiochris_oag/models/status_enum.py index c3de54d..9805409 100644 --- a/python-async/aiochris_oag/models/status_enum.py +++ b/python-async/aiochris_oag/models/status_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/str_parameter.py b/python-async/aiochris_oag/models/str_parameter.py index 4352210..29ea304 100644 --- a/python-async/aiochris_oag/models/str_parameter.py +++ b/python-async/aiochris_oag/models/str_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/tag.py b/python-async/aiochris_oag/models/tag.py index 29701ba..8e201f1 100644 --- a/python-async/aiochris_oag/models/tag.py +++ b/python-async/aiochris_oag/models/tag.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/tag_request.py b/python-async/aiochris_oag/models/tag_request.py index 1d7addd..7bc80f9 100644 --- a/python-async/aiochris_oag/models/tag_request.py +++ b/python-async/aiochris_oag/models/tag_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/tagging.py b/python-async/aiochris_oag/models/tagging.py index e02843e..492f9a5 100644 --- a/python-async/aiochris_oag/models/tagging.py +++ b/python-async/aiochris_oag/models/tagging.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/unextpath_parameter.py b/python-async/aiochris_oag/models/unextpath_parameter.py index 0ce06ac..a89f135 100644 --- a/python-async/aiochris_oag/models/unextpath_parameter.py +++ b/python-async/aiochris_oag/models/unextpath_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/user.py b/python-async/aiochris_oag/models/user.py index da88fe0..c7d12c4 100644 --- a/python-async/aiochris_oag/models/user.py +++ b/python-async/aiochris_oag/models/user.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/user_file.py b/python-async/aiochris_oag/models/user_file.py index 19ed485..6d21c98 100644 --- a/python-async/aiochris_oag/models/user_file.py +++ b/python-async/aiochris_oag/models/user_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/user_file_request.py b/python-async/aiochris_oag/models/user_file_request.py index 8546f72..1a4fbbd 100644 --- a/python-async/aiochris_oag/models/user_file_request.py +++ b/python-async/aiochris_oag/models/user_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictBytes, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -29,7 +29,7 @@ class UserFileRequest(BaseModel): UserFileRequest """ # noqa: E501 upload_path: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]] = None - fname: Optional[Union[StrictBytes, StrictStr]] = None + fname: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None public: Optional[StrictBool] = None __properties: ClassVar[List[str]] = ["upload_path", "fname", "public"] diff --git a/python-async/aiochris_oag/models/user_request.py b/python-async/aiochris_oag/models/user_request.py index 8256dfd..0f92558 100644 --- a/python-async/aiochris_oag/models/user_request.py +++ b/python-async/aiochris_oag/models/user_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/workflow.py b/python-async/aiochris_oag/models/workflow.py index 2e7e29a..706bac7 100644 --- a/python-async/aiochris_oag/models/workflow.py +++ b/python-async/aiochris_oag/models/workflow.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/models/workflow_request.py b/python-async/aiochris_oag/models/workflow_request.py index c9c63ba..1669a35 100644 --- a/python-async/aiochris_oag/models/workflow_request.py +++ b/python-async/aiochris_oag/models/workflow_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/aiochris_oag/rest.py b/python-async/aiochris_oag/rest.py index 210b46c..47ff900 100644 --- a/python-async/aiochris_oag/rest.py +++ b/python-async/aiochris_oag/rest.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -185,6 +185,11 @@ async def request( content_type=v[2] ) else: + # Ensures that dict objects are serialized + if isinstance(v, dict): + v = json.dumps(v) + elif isinstance(v, int): + v = str(v) data.add_field(k, v) args["data"] = data @@ -209,8 +214,3 @@ async def request( r = await pool_manager.request(**args) return RESTResponse(r) - - - - - diff --git a/python-async/git_push.sh b/python-async/git_push.sh index f53a75d..3d535cf 100644 --- a/python-async/git_push.sh +++ b/python-async/git_push.sh @@ -14,12 +14,12 @@ if [ "$git_host" = "" ]; then fi if [ "$git_user_id" = "" ]; then - git_user_id="GIT_USER_ID" + git_user_id="FNNDSC" echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id" fi if [ "$git_repo_id" = "" ]; then - git_repo_id="GIT_REPO_ID" + git_repo_id="openapi-clients" echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id" fi diff --git a/python-async/pyproject.toml b/python-async/pyproject.toml index af96356..e65ff17 100644 --- a/python-async/pyproject.toml +++ b/python-async/pyproject.toml @@ -1,30 +1,31 @@ [tool.poetry] name = "aiochris_oag" -version = "0.0.1a4" +version = "0.1.0b1" description = "ChRIS Research Integration System: Ultron BackEnd (CUBE) API" authors = ["Fetal-Neonatal Neuroimaging Developmental Science Center "] license = "MIT" readme = "README.md" -repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" +repository = "https://github.com/FNNDSC/openapi-clients" keywords = ["OpenAPI", "OpenAPI-Generator", "ChRIS Research Integration System: Ultron BackEnd (CUBE) API"] include = ["aiochris_oag/py.typed"] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" -urllib3 = ">= 1.25.3" -python-dateutil = ">=2.8.2" +urllib3 = ">= 1.25.3 < 3.0.0" +python-dateutil = ">= 2.8.2" aiohttp = ">= 3.8.4" aiohttp-retry = ">= 2.8.3" -pydantic = ">=2" -typing-extensions = ">=4.7.1" +pydantic = ">= 2" +typing-extensions = ">= 4.7.1" [tool.poetry.dev-dependencies] -pytest = ">=7.2.1" -tox = ">=3.9.0" -flake8 = ">=4.0.0" -types-python-dateutil = ">=2.8.19.14" -mypy = "1.4.1" +pytest = ">= 7.2.1" +pytest-cov = ">= 2.8.1" +tox = ">= 3.9.0" +flake8 = ">= 4.0.0" +types-python-dateutil = ">= 2.8.19.14" +mypy = ">= 1.5" [build-system] diff --git a/python-async/requirements.txt b/python-async/requirements.txt index bbada26..e5c12b1 100644 --- a/python-async/requirements.txt +++ b/python-async/requirements.txt @@ -1,7 +1,6 @@ -python_dateutil >= 2.5.3 -setuptools >= 21.0.0 -urllib3 >= 1.25.3, < 2.1.0 +urllib3 >= 1.25.3, < 3.0.0 +python_dateutil >= 2.8.2 +aiohttp >= 3.8.4 +aiohttp-retry >= 2.8.3 pydantic >= 2 typing-extensions >= 4.7.1 -aiohttp >= 3.0.0 -aiohttp-retry >= 2.8.3 diff --git a/python-async/setup.py b/python-async/setup.py index 995d6d9..a8b0b22 100644 --- a/python-async/setup.py +++ b/python-async/setup.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -22,12 +22,12 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "aiochris-oag" -VERSION = "0.0.1a4" -PYTHON_REQUIRES = ">=3.7" +VERSION = "0.1.0b1" +PYTHON_REQUIRES = ">= 3.8" REQUIRES = [ - "urllib3 >= 1.25.3, < 2.1.0", - "python-dateutil", - "aiohttp >= 3.0.0", + "urllib3 >= 1.25.3, < 3.0.0", + "python-dateutil >= 2.8.2", + "aiohttp >= 3.8.4", "aiohttp-retry >= 2.8.3", "pydantic >= 2", "typing-extensions >= 4.7.1", diff --git a/python-async/test-requirements.txt b/python-async/test-requirements.txt index 8e6d8cb..e98555c 100644 --- a/python-async/test-requirements.txt +++ b/python-async/test-requirements.txt @@ -1,5 +1,6 @@ -pytest~=7.1.3 -pytest-cov>=2.8.1 -pytest-randomly>=3.12.0 -mypy>=1.4.1 -types-python-dateutil>=2.8.19 +pytest >= 7.2.1 +pytest-cov >= 2.8.1 +tox >= 3.9.0 +flake8 >= 4.0.0 +types-python-dateutil >= 2.8.19.14 +mypy >= 1.5 diff --git a/python-async/test/test_auth_token.py b/python-async/test/test_auth_token.py index 2be1070..adc57ba 100644 --- a/python-async/test/test_auth_token.py +++ b/python-async/test/test_auth_token.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_auth_token_api.py b/python-async/test/test_auth_token_api.py index df5b9db..698773d 100644 --- a/python-async/test/test_auth_token_api.py +++ b/python-async/test/test_auth_token_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,16 +18,16 @@ from aiochris_oag.api.auth_token_api import AuthTokenApi -class TestAuthTokenApi(unittest.TestCase): +class TestAuthTokenApi(unittest.IsolatedAsyncioTestCase): """AuthTokenApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = AuthTokenApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_auth_token_create(self) -> None: + async def test_auth_token_create(self) -> None: """Test case for auth_token_create """ diff --git a/python-async/test/test_auth_token_request.py b/python-async/test/test_auth_token_request.py index 34e4cbc..870e4b5 100644 --- a/python-async/test/test_auth_token_request.py +++ b/python-async/test/test_auth_token_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_blank_enum.py b/python-async/test/test_blank_enum.py index 5cbda83..c22f9b3 100644 --- a/python-async/test/test_blank_enum.py +++ b/python-async/test/test_blank_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_bool_parameter.py b/python-async/test/test_bool_parameter.py index 1f86403..0d84684 100644 --- a/python-async/test/test_bool_parameter.py +++ b/python-async/test/test_bool_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_chris_admin_api.py b/python-async/test/test_chris_admin_api.py index 79f310a..63ba05d 100644 --- a/python-async/test/test_chris_admin_api.py +++ b/python-async/test/test_chris_admin_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,64 +18,64 @@ from aiochris_oag.api.chris_admin_api import ChrisAdminApi -class TestChrisAdminApi(unittest.TestCase): +class TestChrisAdminApi(unittest.IsolatedAsyncioTestCase): """ChrisAdminApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = ChrisAdminApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_chris_admin_api_v1_computeresources_create(self) -> None: + async def test_chris_admin_api_v1_computeresources_create(self) -> None: """Test case for chris_admin_api_v1_computeresources_create """ pass - def test_chris_admin_api_v1_computeresources_destroy(self) -> None: + async def test_chris_admin_api_v1_computeresources_destroy(self) -> None: """Test case for chris_admin_api_v1_computeresources_destroy """ pass - def test_chris_admin_api_v1_computeresources_list(self) -> None: + async def test_chris_admin_api_v1_computeresources_list(self) -> None: """Test case for chris_admin_api_v1_computeresources_list """ pass - def test_chris_admin_api_v1_computeresources_retrieve(self) -> None: + async def test_chris_admin_api_v1_computeresources_retrieve(self) -> None: """Test case for chris_admin_api_v1_computeresources_retrieve """ pass - def test_chris_admin_api_v1_create(self) -> None: + async def test_chris_admin_api_v1_create(self) -> None: """Test case for chris_admin_api_v1_create """ pass - def test_chris_admin_api_v1_destroy(self) -> None: + async def test_chris_admin_api_v1_destroy(self) -> None: """Test case for chris_admin_api_v1_destroy """ pass - def test_chris_admin_api_v1_list(self) -> None: + async def test_chris_admin_api_v1_list(self) -> None: """Test case for chris_admin_api_v1_list """ pass - def test_chris_admin_api_v1_retrieve(self) -> None: + async def test_chris_admin_api_v1_retrieve(self) -> None: """Test case for chris_admin_api_v1_retrieve """ pass - def test_chris_admin_api_v1_update(self) -> None: + async def test_chris_admin_api_v1_update(self) -> None: """Test case for chris_admin_api_v1_update """ diff --git a/python-async/test/test_chris_instance.py b/python-async/test/test_chris_instance.py index b3dff9f..75ca6e3 100644 --- a/python-async/test/test_chris_instance.py +++ b/python-async/test/test_chris_instance.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_chrisinstance_api.py b/python-async/test/test_chrisinstance_api.py index 205d670..2c91601 100644 --- a/python-async/test/test_chrisinstance_api.py +++ b/python-async/test/test_chrisinstance_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,16 +18,16 @@ from aiochris_oag.api.chrisinstance_api import ChrisinstanceApi -class TestChrisinstanceApi(unittest.TestCase): +class TestChrisinstanceApi(unittest.IsolatedAsyncioTestCase): """ChrisinstanceApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = ChrisinstanceApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_chrisinstance_retrieve(self) -> None: + async def test_chrisinstance_retrieve(self) -> None: """Test case for chrisinstance_retrieve """ diff --git a/python-async/test/test_comment.py b/python-async/test/test_comment.py index 46f38b2..e7483d9 100644 --- a/python-async/test/test_comment.py +++ b/python-async/test/test_comment.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_comment_request.py b/python-async/test/test_comment_request.py index 8b3fbb4..6c1efd8 100644 --- a/python-async/test/test_comment_request.py +++ b/python-async/test/test_comment_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_comments_api.py b/python-async/test/test_comments_api.py index 14fbc96..a1197ae 100644 --- a/python-async/test/test_comments_api.py +++ b/python-async/test/test_comments_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,46 +18,46 @@ from aiochris_oag.api.comments_api import CommentsApi -class TestCommentsApi(unittest.TestCase): +class TestCommentsApi(unittest.IsolatedAsyncioTestCase): """CommentsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = CommentsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_comments_create(self) -> None: + async def test_comments_create(self) -> None: """Test case for comments_create """ pass - def test_comments_destroy(self) -> None: + async def test_comments_destroy(self) -> None: """Test case for comments_destroy """ pass - def test_comments_list(self) -> None: + async def test_comments_list(self) -> None: """Test case for comments_list """ pass - def test_comments_retrieve(self) -> None: + async def test_comments_retrieve(self) -> None: """Test case for comments_retrieve """ pass - def test_comments_search_list(self) -> None: + async def test_comments_search_list(self) -> None: """Test case for comments_search_list """ pass - def test_comments_update(self) -> None: + async def test_comments_update(self) -> None: """Test case for comments_update """ diff --git a/python-async/test/test_compute_resource.py b/python-async/test/test_compute_resource.py index d3d02cc..f89ce21 100644 --- a/python-async/test/test_compute_resource.py +++ b/python-async/test/test_compute_resource.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_compute_resource_request.py b/python-async/test/test_compute_resource_request.py index 7de8937..6b2cfef 100644 --- a/python-async/test/test_compute_resource_request.py +++ b/python-async/test/test_compute_resource_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_computeresources_api.py b/python-async/test/test_computeresources_api.py index 280ff88..d68e23a 100644 --- a/python-async/test/test_computeresources_api.py +++ b/python-async/test/test_computeresources_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,28 +18,28 @@ from aiochris_oag.api.computeresources_api import ComputeresourcesApi -class TestComputeresourcesApi(unittest.TestCase): +class TestComputeresourcesApi(unittest.IsolatedAsyncioTestCase): """ComputeresourcesApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = ComputeresourcesApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_computeresources_list(self) -> None: + async def test_computeresources_list(self) -> None: """Test case for computeresources_list """ pass - def test_computeresources_retrieve(self) -> None: + async def test_computeresources_retrieve(self) -> None: """Test case for computeresources_retrieve """ pass - def test_computeresources_search_list(self) -> None: + async def test_computeresources_search_list(self) -> None: """Test case for computeresources_search_list """ diff --git a/python-async/test/test_default_api.py b/python-async/test/test_default_api.py index 0f817a9..dc53221 100644 --- a/python-async/test/test_default_api.py +++ b/python-async/test/test_default_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,34 +18,34 @@ from aiochris_oag.api.default_api import DefaultApi -class TestDefaultApi(unittest.TestCase): +class TestDefaultApi(unittest.IsolatedAsyncioTestCase): """DefaultApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = DefaultApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_root_destroy(self) -> None: + async def test_root_destroy(self) -> None: """Test case for root_destroy """ pass - def test_root_list(self) -> None: + async def test_root_list(self) -> None: """Test case for root_list """ pass - def test_root_retrieve(self) -> None: + async def test_root_retrieve(self) -> None: """Test case for root_retrieve """ pass - def test_root_update(self) -> None: + async def test_root_update(self) -> None: """Test case for root_update """ diff --git a/python-async/test/test_default_piping_bool_parameter.py b/python-async/test/test_default_piping_bool_parameter.py index facbd17..4bb131d 100644 --- a/python-async/test/test_default_piping_bool_parameter.py +++ b/python-async/test/test_default_piping_bool_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_default_piping_bool_parameter_request.py b/python-async/test/test_default_piping_bool_parameter_request.py index bd7f2dd..26307da 100644 --- a/python-async/test/test_default_piping_bool_parameter_request.py +++ b/python-async/test/test_default_piping_bool_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_default_piping_float_parameter.py b/python-async/test/test_default_piping_float_parameter.py index c5289d0..a93b18c 100644 --- a/python-async/test/test_default_piping_float_parameter.py +++ b/python-async/test/test_default_piping_float_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_default_piping_float_parameter_request.py b/python-async/test/test_default_piping_float_parameter_request.py index bcf49fa..a775bdd 100644 --- a/python-async/test/test_default_piping_float_parameter_request.py +++ b/python-async/test/test_default_piping_float_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_default_piping_int_parameter.py b/python-async/test/test_default_piping_int_parameter.py index a7d144e..678eb17 100644 --- a/python-async/test/test_default_piping_int_parameter.py +++ b/python-async/test/test_default_piping_int_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_default_piping_int_parameter_request.py b/python-async/test/test_default_piping_int_parameter_request.py index d12892d..cb1dcc7 100644 --- a/python-async/test/test_default_piping_int_parameter_request.py +++ b/python-async/test/test_default_piping_int_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_default_piping_str_parameter.py b/python-async/test/test_default_piping_str_parameter.py index f7ec74c..193d75a 100644 --- a/python-async/test/test_default_piping_str_parameter.py +++ b/python-async/test/test_default_piping_str_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_default_piping_str_parameter_request.py b/python-async/test/test_default_piping_str_parameter_request.py index 7c23d42..cc11bfe 100644 --- a/python-async/test/test_default_piping_str_parameter_request.py +++ b/python-async/test/test_default_piping_str_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_downloadtokens_api.py b/python-async/test/test_downloadtokens_api.py index 2c1107f..2c0ad63 100644 --- a/python-async/test/test_downloadtokens_api.py +++ b/python-async/test/test_downloadtokens_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,34 +18,34 @@ from aiochris_oag.api.downloadtokens_api import DownloadtokensApi -class TestDownloadtokensApi(unittest.TestCase): +class TestDownloadtokensApi(unittest.IsolatedAsyncioTestCase): """DownloadtokensApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = DownloadtokensApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_downloadtokens_create(self) -> None: + async def test_downloadtokens_create(self) -> None: """Test case for downloadtokens_create """ pass - def test_downloadtokens_list(self) -> None: + async def test_downloadtokens_list(self) -> None: """Test case for downloadtokens_list """ pass - def test_downloadtokens_retrieve(self) -> None: + async def test_downloadtokens_retrieve(self) -> None: """Test case for downloadtokens_retrieve """ pass - def test_downloadtokens_search_list(self) -> None: + async def test_downloadtokens_search_list(self) -> None: """Test case for downloadtokens_search_list """ diff --git a/python-async/test/test_feed.py b/python-async/test/test_feed.py index 0fa5048..c0e6500 100644 --- a/python-async/test/test_feed.py +++ b/python-async/test/test_feed.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_feed_group_permission.py b/python-async/test/test_feed_group_permission.py index 302eb71..5550ea0 100644 --- a/python-async/test/test_feed_group_permission.py +++ b/python-async/test/test_feed_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_feed_group_permission_request.py b/python-async/test/test_feed_group_permission_request.py index bbb06a3..187ba49 100644 --- a/python-async/test/test_feed_group_permission_request.py +++ b/python-async/test/test_feed_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_feed_request.py b/python-async/test/test_feed_request.py index c6bae1f..4f0f3c4 100644 --- a/python-async/test/test_feed_request.py +++ b/python-async/test/test_feed_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_feed_user_permission.py b/python-async/test/test_feed_user_permission.py index bddf521..ea68a9d 100644 --- a/python-async/test/test_feed_user_permission.py +++ b/python-async/test/test_feed_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_feed_user_permission_request.py b/python-async/test/test_feed_user_permission_request.py index d85eafc..2a31100 100644 --- a/python-async/test/test_feed_user_permission_request.py +++ b/python-async/test/test_feed_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_file.py b/python-async/test/test_file_browser_file.py index b297f13..de77e1d 100644 --- a/python-async/test/test_file_browser_file.py +++ b/python-async/test/test_file_browser_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_file_group_permission.py b/python-async/test/test_file_browser_file_group_permission.py index fe3c854..de2b3e1 100644 --- a/python-async/test/test_file_browser_file_group_permission.py +++ b/python-async/test/test_file_browser_file_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_file_group_permission_request.py b/python-async/test/test_file_browser_file_group_permission_request.py index c04c6e4..d158622 100644 --- a/python-async/test/test_file_browser_file_group_permission_request.py +++ b/python-async/test/test_file_browser_file_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_file_request.py b/python-async/test/test_file_browser_file_request.py index 3b91c64..0f7be5d 100644 --- a/python-async/test/test_file_browser_file_request.py +++ b/python-async/test/test_file_browser_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_file_user_permission.py b/python-async/test/test_file_browser_file_user_permission.py index b2cf275..7152190 100644 --- a/python-async/test/test_file_browser_file_user_permission.py +++ b/python-async/test/test_file_browser_file_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_file_user_permission_request.py b/python-async/test/test_file_browser_file_user_permission_request.py index 10dcaf2..ae43035 100644 --- a/python-async/test/test_file_browser_file_user_permission_request.py +++ b/python-async/test/test_file_browser_file_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_folder.py b/python-async/test/test_file_browser_folder.py index 86cbcda..ff7e121 100644 --- a/python-async/test/test_file_browser_folder.py +++ b/python-async/test/test_file_browser_folder.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_folder_group_permission.py b/python-async/test/test_file_browser_folder_group_permission.py index 996a2a7..ffa6698 100644 --- a/python-async/test/test_file_browser_folder_group_permission.py +++ b/python-async/test/test_file_browser_folder_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_folder_group_permission_request.py b/python-async/test/test_file_browser_folder_group_permission_request.py index 983bddf..d890ed0 100644 --- a/python-async/test/test_file_browser_folder_group_permission_request.py +++ b/python-async/test/test_file_browser_folder_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_folder_request.py b/python-async/test/test_file_browser_folder_request.py index 96890df..18a60d4 100644 --- a/python-async/test/test_file_browser_folder_request.py +++ b/python-async/test/test_file_browser_folder_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_folder_user_permission.py b/python-async/test/test_file_browser_folder_user_permission.py index 3a44a75..eccb0bb 100644 --- a/python-async/test/test_file_browser_folder_user_permission.py +++ b/python-async/test/test_file_browser_folder_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_folder_user_permission_request.py b/python-async/test/test_file_browser_folder_user_permission_request.py index 03270cd..4d79b65 100644 --- a/python-async/test/test_file_browser_folder_user_permission_request.py +++ b/python-async/test/test_file_browser_folder_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_link_file.py b/python-async/test/test_file_browser_link_file.py index 5412366..05bc776 100644 --- a/python-async/test/test_file_browser_link_file.py +++ b/python-async/test/test_file_browser_link_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_link_file_group_permission.py b/python-async/test/test_file_browser_link_file_group_permission.py index 3b95962..51ab1c5 100644 --- a/python-async/test/test_file_browser_link_file_group_permission.py +++ b/python-async/test/test_file_browser_link_file_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_link_file_group_permission_request.py b/python-async/test/test_file_browser_link_file_group_permission_request.py index d3001d5..7ed4885 100644 --- a/python-async/test/test_file_browser_link_file_group_permission_request.py +++ b/python-async/test/test_file_browser_link_file_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_link_file_request.py b/python-async/test/test_file_browser_link_file_request.py index 23ad31b..9213b67 100644 --- a/python-async/test/test_file_browser_link_file_request.py +++ b/python-async/test/test_file_browser_link_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_link_file_user_permission.py b/python-async/test/test_file_browser_link_file_user_permission.py index eebb224..b0ad176 100644 --- a/python-async/test/test_file_browser_link_file_user_permission.py +++ b/python-async/test/test_file_browser_link_file_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_browser_link_file_user_permission_request.py b/python-async/test/test_file_browser_link_file_user_permission_request.py index 99de3ca..65f6420 100644 --- a/python-async/test/test_file_browser_link_file_user_permission_request.py +++ b/python-async/test/test_file_browser_link_file_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_download_token.py b/python-async/test/test_file_download_token.py index cf1cd3f..6017d77 100644 --- a/python-async/test/test_file_download_token.py +++ b/python-async/test/test_file_download_token.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_file_download_token_request.py b/python-async/test/test_file_download_token_request.py index 4fdf673..5d081a0 100644 --- a/python-async/test/test_file_download_token_request.py +++ b/python-async/test/test_file_download_token_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_filebrowser_api.py b/python-async/test/test_filebrowser_api.py index f474c15..3973c84 100644 --- a/python-async/test/test_filebrowser_api.py +++ b/python-async/test/test_filebrowser_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,328 +18,328 @@ from aiochris_oag.api.filebrowser_api import FilebrowserApi -class TestFilebrowserApi(unittest.TestCase): +class TestFilebrowserApi(unittest.IsolatedAsyncioTestCase): """FilebrowserApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = FilebrowserApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_filebrowser_children_list(self) -> None: + async def test_filebrowser_children_list(self) -> None: """Test case for filebrowser_children_list """ pass - def test_filebrowser_create(self) -> None: + async def test_filebrowser_create(self) -> None: """Test case for filebrowser_create """ pass - def test_filebrowser_destroy(self) -> None: + async def test_filebrowser_destroy(self) -> None: """Test case for filebrowser_destroy """ pass - def test_filebrowser_files_destroy(self) -> None: + async def test_filebrowser_files_destroy(self) -> None: """Test case for filebrowser_files_destroy """ pass - def test_filebrowser_files_grouppermissions_create(self) -> None: + async def test_filebrowser_files_grouppermissions_create(self) -> None: """Test case for filebrowser_files_grouppermissions_create """ pass - def test_filebrowser_files_grouppermissions_destroy(self) -> None: + async def test_filebrowser_files_grouppermissions_destroy(self) -> None: """Test case for filebrowser_files_grouppermissions_destroy """ pass - def test_filebrowser_files_grouppermissions_list(self) -> None: + async def test_filebrowser_files_grouppermissions_list(self) -> None: """Test case for filebrowser_files_grouppermissions_list """ pass - def test_filebrowser_files_grouppermissions_retrieve(self) -> None: + async def test_filebrowser_files_grouppermissions_retrieve(self) -> None: """Test case for filebrowser_files_grouppermissions_retrieve """ pass - def test_filebrowser_files_grouppermissions_search_list(self) -> None: + async def test_filebrowser_files_grouppermissions_search_list(self) -> None: """Test case for filebrowser_files_grouppermissions_search_list """ pass - def test_filebrowser_files_grouppermissions_update(self) -> None: + async def test_filebrowser_files_grouppermissions_update(self) -> None: """Test case for filebrowser_files_grouppermissions_update """ pass - def test_filebrowser_files_list(self) -> None: + async def test_filebrowser_files_list(self) -> None: """Test case for filebrowser_files_list """ pass - def test_filebrowser_files_retrieve(self) -> None: + async def test_filebrowser_files_retrieve(self) -> None: """Test case for filebrowser_files_retrieve """ pass - def test_filebrowser_files_retrieve_0(self) -> None: + async def test_filebrowser_files_retrieve_0(self) -> None: """Test case for filebrowser_files_retrieve_0 """ pass - def test_filebrowser_files_update(self) -> None: + async def test_filebrowser_files_update(self) -> None: """Test case for filebrowser_files_update """ pass - def test_filebrowser_files_userpermissions_create(self) -> None: + async def test_filebrowser_files_userpermissions_create(self) -> None: """Test case for filebrowser_files_userpermissions_create """ pass - def test_filebrowser_files_userpermissions_destroy(self) -> None: + async def test_filebrowser_files_userpermissions_destroy(self) -> None: """Test case for filebrowser_files_userpermissions_destroy """ pass - def test_filebrowser_files_userpermissions_list(self) -> None: + async def test_filebrowser_files_userpermissions_list(self) -> None: """Test case for filebrowser_files_userpermissions_list """ pass - def test_filebrowser_files_userpermissions_retrieve(self) -> None: + async def test_filebrowser_files_userpermissions_retrieve(self) -> None: """Test case for filebrowser_files_userpermissions_retrieve """ pass - def test_filebrowser_files_userpermissions_search_list(self) -> None: + async def test_filebrowser_files_userpermissions_search_list(self) -> None: """Test case for filebrowser_files_userpermissions_search_list """ pass - def test_filebrowser_files_userpermissions_update(self) -> None: + async def test_filebrowser_files_userpermissions_update(self) -> None: """Test case for filebrowser_files_userpermissions_update """ pass - def test_filebrowser_grouppermissions_create(self) -> None: + async def test_filebrowser_grouppermissions_create(self) -> None: """Test case for filebrowser_grouppermissions_create """ pass - def test_filebrowser_grouppermissions_destroy(self) -> None: + async def test_filebrowser_grouppermissions_destroy(self) -> None: """Test case for filebrowser_grouppermissions_destroy """ pass - def test_filebrowser_grouppermissions_list(self) -> None: + async def test_filebrowser_grouppermissions_list(self) -> None: """Test case for filebrowser_grouppermissions_list """ pass - def test_filebrowser_grouppermissions_retrieve(self) -> None: + async def test_filebrowser_grouppermissions_retrieve(self) -> None: """Test case for filebrowser_grouppermissions_retrieve """ pass - def test_filebrowser_grouppermissions_search_list(self) -> None: + async def test_filebrowser_grouppermissions_search_list(self) -> None: """Test case for filebrowser_grouppermissions_search_list """ pass - def test_filebrowser_grouppermissions_update(self) -> None: + async def test_filebrowser_grouppermissions_update(self) -> None: """Test case for filebrowser_grouppermissions_update """ pass - def test_filebrowser_linkfiles_destroy(self) -> None: + async def test_filebrowser_linkfiles_destroy(self) -> None: """Test case for filebrowser_linkfiles_destroy """ pass - def test_filebrowser_linkfiles_grouppermissions_create(self) -> None: + async def test_filebrowser_linkfiles_grouppermissions_create(self) -> None: """Test case for filebrowser_linkfiles_grouppermissions_create """ pass - def test_filebrowser_linkfiles_grouppermissions_destroy(self) -> None: + async def test_filebrowser_linkfiles_grouppermissions_destroy(self) -> None: """Test case for filebrowser_linkfiles_grouppermissions_destroy """ pass - def test_filebrowser_linkfiles_grouppermissions_list(self) -> None: + async def test_filebrowser_linkfiles_grouppermissions_list(self) -> None: """Test case for filebrowser_linkfiles_grouppermissions_list """ pass - def test_filebrowser_linkfiles_grouppermissions_retrieve(self) -> None: + async def test_filebrowser_linkfiles_grouppermissions_retrieve(self) -> None: """Test case for filebrowser_linkfiles_grouppermissions_retrieve """ pass - def test_filebrowser_linkfiles_grouppermissions_search_list(self) -> None: + async def test_filebrowser_linkfiles_grouppermissions_search_list(self) -> None: """Test case for filebrowser_linkfiles_grouppermissions_search_list """ pass - def test_filebrowser_linkfiles_grouppermissions_update(self) -> None: + async def test_filebrowser_linkfiles_grouppermissions_update(self) -> None: """Test case for filebrowser_linkfiles_grouppermissions_update """ pass - def test_filebrowser_linkfiles_list(self) -> None: + async def test_filebrowser_linkfiles_list(self) -> None: """Test case for filebrowser_linkfiles_list """ pass - def test_filebrowser_linkfiles_retrieve(self) -> None: + async def test_filebrowser_linkfiles_retrieve(self) -> None: """Test case for filebrowser_linkfiles_retrieve """ pass - def test_filebrowser_linkfiles_retrieve_0(self) -> None: + async def test_filebrowser_linkfiles_retrieve_0(self) -> None: """Test case for filebrowser_linkfiles_retrieve_0 """ pass - def test_filebrowser_linkfiles_update(self) -> None: + async def test_filebrowser_linkfiles_update(self) -> None: """Test case for filebrowser_linkfiles_update """ pass - def test_filebrowser_linkfiles_userpermissions_create(self) -> None: + async def test_filebrowser_linkfiles_userpermissions_create(self) -> None: """Test case for filebrowser_linkfiles_userpermissions_create """ pass - def test_filebrowser_linkfiles_userpermissions_destroy(self) -> None: + async def test_filebrowser_linkfiles_userpermissions_destroy(self) -> None: """Test case for filebrowser_linkfiles_userpermissions_destroy """ pass - def test_filebrowser_linkfiles_userpermissions_list(self) -> None: + async def test_filebrowser_linkfiles_userpermissions_list(self) -> None: """Test case for filebrowser_linkfiles_userpermissions_list """ pass - def test_filebrowser_linkfiles_userpermissions_retrieve(self) -> None: + async def test_filebrowser_linkfiles_userpermissions_retrieve(self) -> None: """Test case for filebrowser_linkfiles_userpermissions_retrieve """ pass - def test_filebrowser_linkfiles_userpermissions_search_list(self) -> None: + async def test_filebrowser_linkfiles_userpermissions_search_list(self) -> None: """Test case for filebrowser_linkfiles_userpermissions_search_list """ pass - def test_filebrowser_linkfiles_userpermissions_update(self) -> None: + async def test_filebrowser_linkfiles_userpermissions_update(self) -> None: """Test case for filebrowser_linkfiles_userpermissions_update """ pass - def test_filebrowser_list(self) -> None: + async def test_filebrowser_list(self) -> None: """Test case for filebrowser_list """ pass - def test_filebrowser_retrieve(self) -> None: + async def test_filebrowser_retrieve(self) -> None: """Test case for filebrowser_retrieve """ pass - def test_filebrowser_search_list(self) -> None: + async def test_filebrowser_search_list(self) -> None: """Test case for filebrowser_search_list """ pass - def test_filebrowser_update(self) -> None: + async def test_filebrowser_update(self) -> None: """Test case for filebrowser_update """ pass - def test_filebrowser_userpermissions_create(self) -> None: + async def test_filebrowser_userpermissions_create(self) -> None: """Test case for filebrowser_userpermissions_create """ pass - def test_filebrowser_userpermissions_destroy(self) -> None: + async def test_filebrowser_userpermissions_destroy(self) -> None: """Test case for filebrowser_userpermissions_destroy """ pass - def test_filebrowser_userpermissions_list(self) -> None: + async def test_filebrowser_userpermissions_list(self) -> None: """Test case for filebrowser_userpermissions_list """ pass - def test_filebrowser_userpermissions_retrieve(self) -> None: + async def test_filebrowser_userpermissions_retrieve(self) -> None: """Test case for filebrowser_userpermissions_retrieve """ pass - def test_filebrowser_userpermissions_search_list(self) -> None: + async def test_filebrowser_userpermissions_search_list(self) -> None: """Test case for filebrowser_userpermissions_search_list """ pass - def test_filebrowser_userpermissions_update(self) -> None: + async def test_filebrowser_userpermissions_update(self) -> None: """Test case for filebrowser_userpermissions_update """ diff --git a/python-async/test/test_float_parameter.py b/python-async/test/test_float_parameter.py index cb6c435..3fa1472 100644 --- a/python-async/test/test_float_parameter.py +++ b/python-async/test/test_float_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_ftype_enum.py b/python-async/test/test_ftype_enum.py index 930db61..72eb5dc 100644 --- a/python-async/test/test_ftype_enum.py +++ b/python-async/test/test_ftype_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_generic_default_piping_parameter.py b/python-async/test/test_generic_default_piping_parameter.py index 2451b4e..d25eb5e 100644 --- a/python-async/test/test_generic_default_piping_parameter.py +++ b/python-async/test/test_generic_default_piping_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_generic_default_piping_parameter_value.py b/python-async/test/test_generic_default_piping_parameter_value.py index f5390c5..6823004 100644 --- a/python-async/test/test_generic_default_piping_parameter_value.py +++ b/python-async/test/test_generic_default_piping_parameter_value.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_generic_parameter.py b/python-async/test/test_generic_parameter.py index 6dc84b3..6e671c4 100644 --- a/python-async/test/test_generic_parameter.py +++ b/python-async/test/test_generic_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_group.py b/python-async/test/test_group.py index c0c4232..c6a0f5e 100644 --- a/python-async/test/test_group.py +++ b/python-async/test/test_group.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_group_request.py b/python-async/test/test_group_request.py index 20a3003..c74a372 100644 --- a/python-async/test/test_group_request.py +++ b/python-async/test/test_group_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_group_user.py b/python-async/test/test_group_user.py index 8b8fcb7..7ddba3e 100644 --- a/python-async/test/test_group_user.py +++ b/python-async/test/test_group_user.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_group_user_request.py b/python-async/test/test_group_user_request.py index 947ddfb..a5526ed 100644 --- a/python-async/test/test_group_user_request.py +++ b/python-async/test/test_group_user_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_grouppermissions_api.py b/python-async/test/test_grouppermissions_api.py index e4d2e73..9215d4c 100644 --- a/python-async/test/test_grouppermissions_api.py +++ b/python-async/test/test_grouppermissions_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,40 +18,40 @@ from aiochris_oag.api.grouppermissions_api import GrouppermissionsApi -class TestGrouppermissionsApi(unittest.TestCase): +class TestGrouppermissionsApi(unittest.IsolatedAsyncioTestCase): """GrouppermissionsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = GrouppermissionsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_grouppermissions_create(self) -> None: + async def test_grouppermissions_create(self) -> None: """Test case for grouppermissions_create """ pass - def test_grouppermissions_destroy(self) -> None: + async def test_grouppermissions_destroy(self) -> None: """Test case for grouppermissions_destroy """ pass - def test_grouppermissions_list(self) -> None: + async def test_grouppermissions_list(self) -> None: """Test case for grouppermissions_list """ pass - def test_grouppermissions_retrieve(self) -> None: + async def test_grouppermissions_retrieve(self) -> None: """Test case for grouppermissions_retrieve """ pass - def test_grouppermissions_search_list(self) -> None: + async def test_grouppermissions_search_list(self) -> None: """Test case for grouppermissions_search_list """ diff --git a/python-async/test/test_groups_api.py b/python-async/test/test_groups_api.py index ceb5565..39ceabf 100644 --- a/python-async/test/test_groups_api.py +++ b/python-async/test/test_groups_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,70 +18,70 @@ from aiochris_oag.api.groups_api import GroupsApi -class TestGroupsApi(unittest.TestCase): +class TestGroupsApi(unittest.IsolatedAsyncioTestCase): """GroupsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = GroupsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_groups_create(self) -> None: + async def test_groups_create(self) -> None: """Test case for groups_create """ pass - def test_groups_destroy(self) -> None: + async def test_groups_destroy(self) -> None: """Test case for groups_destroy """ pass - def test_groups_list(self) -> None: + async def test_groups_list(self) -> None: """Test case for groups_list """ pass - def test_groups_retrieve(self) -> None: + async def test_groups_retrieve(self) -> None: """Test case for groups_retrieve """ pass - def test_groups_search_list(self) -> None: + async def test_groups_search_list(self) -> None: """Test case for groups_search_list """ pass - def test_groups_users_create(self) -> None: + async def test_groups_users_create(self) -> None: """Test case for groups_users_create """ pass - def test_groups_users_destroy(self) -> None: + async def test_groups_users_destroy(self) -> None: """Test case for groups_users_destroy """ pass - def test_groups_users_list(self) -> None: + async def test_groups_users_list(self) -> None: """Test case for groups_users_list """ pass - def test_groups_users_retrieve(self) -> None: + async def test_groups_users_retrieve(self) -> None: """Test case for groups_users_retrieve """ pass - def test_groups_users_search_list(self) -> None: + async def test_groups_users_search_list(self) -> None: """Test case for groups_users_search_list """ diff --git a/python-async/test/test_int_parameter.py b/python-async/test/test_int_parameter.py index fc01300..bb49de7 100644 --- a/python-async/test/test_int_parameter.py +++ b/python-async/test/test_int_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_note.py b/python-async/test/test_note.py index fd90960..9e4941d 100644 --- a/python-async/test/test_note.py +++ b/python-async/test/test_note.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_note_api.py b/python-async/test/test_note_api.py index 654e3f5..4e0afad 100644 --- a/python-async/test/test_note_api.py +++ b/python-async/test/test_note_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,22 +18,22 @@ from aiochris_oag.api.note_api import NoteApi -class TestNoteApi(unittest.TestCase): +class TestNoteApi(unittest.IsolatedAsyncioTestCase): """NoteApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = NoteApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_note_retrieve(self) -> None: + async def test_note_retrieve(self) -> None: """Test case for note_retrieve """ pass - def test_note_update(self) -> None: + async def test_note_update(self) -> None: """Test case for note_update """ diff --git a/python-async/test/test_note_request.py b/python-async/test/test_note_request.py index 794ec6e..8c7f280 100644 --- a/python-async/test/test_note_request.py +++ b/python-async/test/test_note_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pacs_api.py b/python-async/test/test_pacs_api.py index b1107b0..aa48195 100644 --- a/python-async/test/test_pacs_api.py +++ b/python-async/test/test_pacs_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,52 +18,52 @@ from aiochris_oag.api.pacs_api import PacsApi -class TestPacsApi(unittest.TestCase): +class TestPacsApi(unittest.IsolatedAsyncioTestCase): """PacsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = PacsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_pacs_files_list(self) -> None: + async def test_pacs_files_list(self) -> None: """Test case for pacs_files_list """ pass - def test_pacs_files_retrieve(self) -> None: + async def test_pacs_files_retrieve(self) -> None: """Test case for pacs_files_retrieve """ pass - def test_pacs_files_retrieve_0(self) -> None: + async def test_pacs_files_retrieve_0(self) -> None: """Test case for pacs_files_retrieve_0 """ pass - def test_pacs_files_search_list(self) -> None: + async def test_pacs_files_search_list(self) -> None: """Test case for pacs_files_search_list """ pass - def test_pacs_series_list(self) -> None: + async def test_pacs_series_list(self) -> None: """Test case for pacs_series_list """ pass - def test_pacs_series_retrieve(self) -> None: + async def test_pacs_series_retrieve(self) -> None: """Test case for pacs_series_retrieve """ pass - def test_pacs_series_search_list(self) -> None: + async def test_pacs_series_search_list(self) -> None: """Test case for pacs_series_search_list """ diff --git a/python-async/test/test_pacs_file.py b/python-async/test/test_pacs_file.py index 9f40412..9cb9ec8 100644 --- a/python-async/test/test_pacs_file.py +++ b/python-async/test/test_pacs_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pacs_series.py b/python-async/test/test_pacs_series.py index 4a03d03..018c19d 100644 --- a/python-async/test/test_pacs_series.py +++ b/python-async/test/test_pacs_series.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pacs_series_patient_sex.py b/python-async/test/test_pacs_series_patient_sex.py index bc6f511..b309c91 100644 --- a/python-async/test/test_pacs_series_patient_sex.py +++ b/python-async/test/test_pacs_series_patient_sex.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_comment_list.py b/python-async/test/test_paginated_comment_list.py index 1ae6c11..617cdb5 100644 --- a/python-async/test/test_paginated_comment_list.py +++ b/python-async/test/test_paginated_comment_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_compute_resource_list.py b/python-async/test/test_paginated_compute_resource_list.py index 83c3389..eddfffb 100644 --- a/python-async/test/test_paginated_compute_resource_list.py +++ b/python-async/test/test_paginated_compute_resource_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_feed_group_permission_list.py b/python-async/test/test_paginated_feed_group_permission_list.py index 97339e8..2626d9d 100644 --- a/python-async/test/test_paginated_feed_group_permission_list.py +++ b/python-async/test/test_paginated_feed_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_feed_list.py b/python-async/test/test_paginated_feed_list.py index 32cc47b..cf79b23 100644 --- a/python-async/test/test_paginated_feed_list.py +++ b/python-async/test/test_paginated_feed_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_feed_user_permission_list.py b/python-async/test/test_paginated_feed_user_permission_list.py index 056be3c..2ae4940 100644 --- a/python-async/test/test_paginated_feed_user_permission_list.py +++ b/python-async/test/test_paginated_feed_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_file_group_permission_list.py b/python-async/test/test_paginated_file_browser_file_group_permission_list.py index ed28d33..9b8eb1a 100644 --- a/python-async/test/test_paginated_file_browser_file_group_permission_list.py +++ b/python-async/test/test_paginated_file_browser_file_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_file_list.py b/python-async/test/test_paginated_file_browser_file_list.py index a704da9..061fb05 100644 --- a/python-async/test/test_paginated_file_browser_file_list.py +++ b/python-async/test/test_paginated_file_browser_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_file_user_permission_list.py b/python-async/test/test_paginated_file_browser_file_user_permission_list.py index d7a275e..6db170c 100644 --- a/python-async/test/test_paginated_file_browser_file_user_permission_list.py +++ b/python-async/test/test_paginated_file_browser_file_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_folder_group_permission_list.py b/python-async/test/test_paginated_file_browser_folder_group_permission_list.py index e28a302..5504893 100644 --- a/python-async/test/test_paginated_file_browser_folder_group_permission_list.py +++ b/python-async/test/test_paginated_file_browser_folder_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_folder_list.py b/python-async/test/test_paginated_file_browser_folder_list.py index d91f456..4071400 100644 --- a/python-async/test/test_paginated_file_browser_folder_list.py +++ b/python-async/test/test_paginated_file_browser_folder_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_folder_user_permission_list.py b/python-async/test/test_paginated_file_browser_folder_user_permission_list.py index 721194a..7f16e31 100644 --- a/python-async/test/test_paginated_file_browser_folder_user_permission_list.py +++ b/python-async/test/test_paginated_file_browser_folder_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_link_file_group_permission_list.py b/python-async/test/test_paginated_file_browser_link_file_group_permission_list.py index c1e8aba..df5d4a6 100644 --- a/python-async/test/test_paginated_file_browser_link_file_group_permission_list.py +++ b/python-async/test/test_paginated_file_browser_link_file_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_link_file_list.py b/python-async/test/test_paginated_file_browser_link_file_list.py index 517567d..7f454f3 100644 --- a/python-async/test/test_paginated_file_browser_link_file_list.py +++ b/python-async/test/test_paginated_file_browser_link_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_browser_link_file_user_permission_list.py b/python-async/test/test_paginated_file_browser_link_file_user_permission_list.py index 8f9f0ce..dc2dfee 100644 --- a/python-async/test/test_paginated_file_browser_link_file_user_permission_list.py +++ b/python-async/test/test_paginated_file_browser_link_file_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_file_download_token_list.py b/python-async/test/test_paginated_file_download_token_list.py index dcc3d6d..5d8283a 100644 --- a/python-async/test/test_paginated_file_download_token_list.py +++ b/python-async/test/test_paginated_file_download_token_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_generic_default_piping_parameter_list.py b/python-async/test/test_paginated_generic_default_piping_parameter_list.py index d12f4c8..fda41bc 100644 --- a/python-async/test/test_paginated_generic_default_piping_parameter_list.py +++ b/python-async/test/test_paginated_generic_default_piping_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_generic_parameter_list.py b/python-async/test/test_paginated_generic_parameter_list.py index e71abfb..4aa3a8c 100644 --- a/python-async/test/test_paginated_generic_parameter_list.py +++ b/python-async/test/test_paginated_generic_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_group_list.py b/python-async/test/test_paginated_group_list.py index c283f92..3f91840 100644 --- a/python-async/test/test_paginated_group_list.py +++ b/python-async/test/test_paginated_group_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_group_user_list.py b/python-async/test/test_paginated_group_user_list.py index a5f2253..274d49f 100644 --- a/python-async/test/test_paginated_group_user_list.py +++ b/python-async/test/test_paginated_group_user_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_pacs_file_list.py b/python-async/test/test_paginated_pacs_file_list.py index 5430920..dd05ff5 100644 --- a/python-async/test/test_paginated_pacs_file_list.py +++ b/python-async/test/test_paginated_pacs_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_pacs_series_list.py b/python-async/test/test_paginated_pacs_series_list.py index a584635..5310dbd 100644 --- a/python-async/test/test_paginated_pacs_series_list.py +++ b/python-async/test/test_paginated_pacs_series_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_pipeline_list.py b/python-async/test/test_paginated_pipeline_list.py index 0e18532..cc51c07 100644 --- a/python-async/test/test_paginated_pipeline_list.py +++ b/python-async/test/test_paginated_pipeline_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_pipeline_source_file_list.py b/python-async/test/test_paginated_pipeline_source_file_list.py index c41a28f..0c03e31 100644 --- a/python-async/test/test_paginated_pipeline_source_file_list.py +++ b/python-async/test/test_paginated_pipeline_source_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_plugin_admin_list.py b/python-async/test/test_paginated_plugin_admin_list.py index 1380f3c..d3fc566 100644 --- a/python-async/test/test_paginated_plugin_admin_list.py +++ b/python-async/test/test_paginated_plugin_admin_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_plugin_instance_list.py b/python-async/test/test_paginated_plugin_instance_list.py index 8edf184..416fb83 100644 --- a/python-async/test/test_paginated_plugin_instance_list.py +++ b/python-async/test/test_paginated_plugin_instance_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_plugin_instance_split_list.py b/python-async/test/test_paginated_plugin_instance_split_list.py index 6e7cab6..5569f88 100644 --- a/python-async/test/test_paginated_plugin_instance_split_list.py +++ b/python-async/test/test_paginated_plugin_instance_split_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_plugin_list.py b/python-async/test/test_paginated_plugin_list.py index 08d0d28..d860b0c 100644 --- a/python-async/test/test_paginated_plugin_list.py +++ b/python-async/test/test_paginated_plugin_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_plugin_meta_list.py b/python-async/test/test_paginated_plugin_meta_list.py index 8c1cf97..eae0e9d 100644 --- a/python-async/test/test_paginated_plugin_meta_list.py +++ b/python-async/test/test_paginated_plugin_meta_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_plugin_parameter_list.py b/python-async/test/test_paginated_plugin_parameter_list.py index 63baed2..9b8328a 100644 --- a/python-async/test/test_paginated_plugin_parameter_list.py +++ b/python-async/test/test_paginated_plugin_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_plugin_piping_list.py b/python-async/test/test_paginated_plugin_piping_list.py index 50adff0..25fc677 100644 --- a/python-async/test/test_paginated_plugin_piping_list.py +++ b/python-async/test/test_paginated_plugin_piping_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_tag_list.py b/python-async/test/test_paginated_tag_list.py index 833c7ac..9cadb8c 100644 --- a/python-async/test/test_paginated_tag_list.py +++ b/python-async/test/test_paginated_tag_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_tagging_list.py b/python-async/test/test_paginated_tagging_list.py index 309a34c..de62b3f 100644 --- a/python-async/test/test_paginated_tagging_list.py +++ b/python-async/test/test_paginated_tagging_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_user_file_list.py b/python-async/test/test_paginated_user_file_list.py index 05a2317..33d365a 100644 --- a/python-async/test/test_paginated_user_file_list.py +++ b/python-async/test/test_paginated_user_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_user_list.py b/python-async/test/test_paginated_user_list.py index 986a71e..6d3d304 100644 --- a/python-async/test/test_paginated_user_list.py +++ b/python-async/test/test_paginated_user_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_paginated_workflow_list.py b/python-async/test/test_paginated_workflow_list.py index 99ddbdf..fb57c0a 100644 --- a/python-async/test/test_paginated_workflow_list.py +++ b/python-async/test/test_paginated_workflow_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_path_parameter.py b/python-async/test/test_path_parameter.py index e8e30ca..3f3a3b2 100644 --- a/python-async/test/test_path_parameter.py +++ b/python-async/test/test_path_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_patient_sex_enum.py b/python-async/test/test_patient_sex_enum.py index b5c8e0e..b30a0a3 100644 --- a/python-async/test/test_patient_sex_enum.py +++ b/python-async/test/test_patient_sex_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_permission_enum.py b/python-async/test/test_permission_enum.py index 2e14a1c..5f9b054 100644 --- a/python-async/test/test_permission_enum.py +++ b/python-async/test/test_permission_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pipeline.py b/python-async/test/test_pipeline.py index 7cdf323..a09ceb9 100644 --- a/python-async/test/test_pipeline.py +++ b/python-async/test/test_pipeline.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pipeline_custom_json.py b/python-async/test/test_pipeline_custom_json.py index 4504448..8b0c800 100644 --- a/python-async/test/test_pipeline_custom_json.py +++ b/python-async/test/test_pipeline_custom_json.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pipeline_request.py b/python-async/test/test_pipeline_request.py index 9918cc0..cca70bf 100644 --- a/python-async/test/test_pipeline_request.py +++ b/python-async/test/test_pipeline_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pipeline_source_file.py b/python-async/test/test_pipeline_source_file.py index 537fb01..9abad31 100644 --- a/python-async/test/test_pipeline_source_file.py +++ b/python-async/test/test_pipeline_source_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pipeline_source_file_ftype.py b/python-async/test/test_pipeline_source_file_ftype.py index b8eb60a..50fbab9 100644 --- a/python-async/test/test_pipeline_source_file_ftype.py +++ b/python-async/test/test_pipeline_source_file_ftype.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pipeline_source_file_request.py b/python-async/test/test_pipeline_source_file_request.py index c581c0a..861c877 100644 --- a/python-async/test/test_pipeline_source_file_request.py +++ b/python-async/test/test_pipeline_source_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_pipelines_api.py b/python-async/test/test_pipelines_api.py index 0f9d7a6..70b7b0a 100644 --- a/python-async/test/test_pipelines_api.py +++ b/python-async/test/test_pipelines_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,202 +18,202 @@ from aiochris_oag.api.pipelines_api import PipelinesApi -class TestPipelinesApi(unittest.TestCase): +class TestPipelinesApi(unittest.IsolatedAsyncioTestCase): """PipelinesApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = PipelinesApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_all_workflows_list(self) -> None: + async def test_all_workflows_list(self) -> None: """Test case for all_workflows_list """ pass - def test_pipelines_boolean_parameter_retrieve(self) -> None: + async def test_pipelines_boolean_parameter_retrieve(self) -> None: """Test case for pipelines_boolean_parameter_retrieve """ pass - def test_pipelines_boolean_parameter_update(self) -> None: + async def test_pipelines_boolean_parameter_update(self) -> None: """Test case for pipelines_boolean_parameter_update """ pass - def test_pipelines_create(self) -> None: + async def test_pipelines_create(self) -> None: """Test case for pipelines_create """ pass - def test_pipelines_destroy(self) -> None: + async def test_pipelines_destroy(self) -> None: """Test case for pipelines_destroy """ pass - def test_pipelines_float_parameter_retrieve(self) -> None: + async def test_pipelines_float_parameter_retrieve(self) -> None: """Test case for pipelines_float_parameter_retrieve """ pass - def test_pipelines_float_parameter_update(self) -> None: + async def test_pipelines_float_parameter_update(self) -> None: """Test case for pipelines_float_parameter_update """ pass - def test_pipelines_integer_parameter_retrieve(self) -> None: + async def test_pipelines_integer_parameter_retrieve(self) -> None: """Test case for pipelines_integer_parameter_retrieve """ pass - def test_pipelines_integer_parameter_update(self) -> None: + async def test_pipelines_integer_parameter_update(self) -> None: """Test case for pipelines_integer_parameter_update """ pass - def test_pipelines_json_retrieve(self) -> None: + async def test_pipelines_json_retrieve(self) -> None: """Test case for pipelines_json_retrieve """ pass - def test_pipelines_list(self) -> None: + async def test_pipelines_list(self) -> None: """Test case for pipelines_list """ pass - def test_pipelines_parameters_list(self) -> None: + async def test_pipelines_parameters_list(self) -> None: """Test case for pipelines_parameters_list """ pass - def test_pipelines_pipings_list(self) -> None: + async def test_pipelines_pipings_list(self) -> None: """Test case for pipelines_pipings_list """ pass - def test_pipelines_pipings_retrieve(self) -> None: + async def test_pipelines_pipings_retrieve(self) -> None: """Test case for pipelines_pipings_retrieve """ pass - def test_pipelines_plugins_list(self) -> None: + async def test_pipelines_plugins_list(self) -> None: """Test case for pipelines_plugins_list """ pass - def test_pipelines_retrieve(self) -> None: + async def test_pipelines_retrieve(self) -> None: """Test case for pipelines_retrieve """ pass - def test_pipelines_search_list(self) -> None: + async def test_pipelines_search_list(self) -> None: """Test case for pipelines_search_list """ pass - def test_pipelines_sourcefiles_create(self) -> None: + async def test_pipelines_sourcefiles_create(self) -> None: """Test case for pipelines_sourcefiles_create """ pass - def test_pipelines_sourcefiles_list(self) -> None: + async def test_pipelines_sourcefiles_list(self) -> None: """Test case for pipelines_sourcefiles_list """ pass - def test_pipelines_sourcefiles_retrieve(self) -> None: + async def test_pipelines_sourcefiles_retrieve(self) -> None: """Test case for pipelines_sourcefiles_retrieve """ pass - def test_pipelines_sourcefiles_retrieve_0(self) -> None: + async def test_pipelines_sourcefiles_retrieve_0(self) -> None: """Test case for pipelines_sourcefiles_retrieve_0 """ pass - def test_pipelines_sourcefiles_search_list(self) -> None: + async def test_pipelines_sourcefiles_search_list(self) -> None: """Test case for pipelines_sourcefiles_search_list """ pass - def test_pipelines_string_parameter_retrieve(self) -> None: + async def test_pipelines_string_parameter_retrieve(self) -> None: """Test case for pipelines_string_parameter_retrieve """ pass - def test_pipelines_string_parameter_update(self) -> None: + async def test_pipelines_string_parameter_update(self) -> None: """Test case for pipelines_string_parameter_update """ pass - def test_pipelines_update(self) -> None: + async def test_pipelines_update(self) -> None: """Test case for pipelines_update """ pass - def test_pipelines_workflows_create(self) -> None: + async def test_pipelines_workflows_create(self) -> None: """Test case for pipelines_workflows_create """ pass - def test_pipelines_workflows_destroy(self) -> None: + async def test_pipelines_workflows_destroy(self) -> None: """Test case for pipelines_workflows_destroy """ pass - def test_pipelines_workflows_plugininstances_list(self) -> None: + async def test_pipelines_workflows_plugininstances_list(self) -> None: """Test case for pipelines_workflows_plugininstances_list """ pass - def test_pipelines_workflows_retrieve(self) -> None: + async def test_pipelines_workflows_retrieve(self) -> None: """Test case for pipelines_workflows_retrieve """ pass - def test_pipelines_workflows_search_list(self) -> None: + async def test_pipelines_workflows_search_list(self) -> None: """Test case for pipelines_workflows_search_list """ pass - def test_pipelines_workflows_update(self) -> None: + async def test_pipelines_workflows_update(self) -> None: """Test case for pipelines_workflows_update """ pass - def test_workflows_list(self) -> None: + async def test_workflows_list(self) -> None: """Test case for workflows_list """ diff --git a/python-async/test/test_plugin.py b/python-async/test/test_plugin.py index 27d8ef0..3752c16 100644 --- a/python-async/test/test_plugin.py +++ b/python-async/test/test_plugin.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_admin.py b/python-async/test/test_plugin_admin.py index 13f92a5..fe0be58 100644 --- a/python-async/test/test_plugin_admin.py +++ b/python-async/test/test_plugin_admin.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_admin_request.py b/python-async/test/test_plugin_admin_request.py index ce06d76..7c8ac1e 100644 --- a/python-async/test/test_plugin_admin_request.py +++ b/python-async/test/test_plugin_admin_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_instance.py b/python-async/test/test_plugin_instance.py index b25eba1..afcf642 100644 --- a/python-async/test/test_plugin_instance.py +++ b/python-async/test/test_plugin_instance.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_instance_request.py b/python-async/test/test_plugin_instance_request.py index 8e02dd4..95e7466 100644 --- a/python-async/test/test_plugin_instance_request.py +++ b/python-async/test/test_plugin_instance_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_instance_split.py b/python-async/test/test_plugin_instance_split.py index cf8938f..4d418dd 100644 --- a/python-async/test/test_plugin_instance_split.py +++ b/python-async/test/test_plugin_instance_split.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_instance_split_request.py b/python-async/test/test_plugin_instance_split_request.py index 353a0e4..dcef097 100644 --- a/python-async/test/test_plugin_instance_split_request.py +++ b/python-async/test/test_plugin_instance_split_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_meta.py b/python-async/test/test_plugin_meta.py index 290604f..e069493 100644 --- a/python-async/test/test_plugin_meta.py +++ b/python-async/test/test_plugin_meta.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_parameter.py b/python-async/test/test_plugin_parameter.py index 8d99cfd..2d901fe 100644 --- a/python-async/test/test_plugin_parameter.py +++ b/python-async/test/test_plugin_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_parameter_default.py b/python-async/test/test_plugin_parameter_default.py index 3c8c9e1..c0253cf 100644 --- a/python-async/test/test_plugin_parameter_default.py +++ b/python-async/test/test_plugin_parameter_default.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_parameter_type.py b/python-async/test/test_plugin_parameter_type.py index b526808..f9768bc 100644 --- a/python-async/test/test_plugin_parameter_type.py +++ b/python-async/test/test_plugin_parameter_type.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_piping.py b/python-async/test/test_plugin_piping.py index ee121d6..c96793a 100644 --- a/python-async/test/test_plugin_piping.py +++ b/python-async/test/test_plugin_piping.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugin_type.py b/python-async/test/test_plugin_type.py index 902bcb3..4b40257 100644 --- a/python-async/test/test_plugin_type.py +++ b/python-async/test/test_plugin_type.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_plugininstances_api.py b/python-async/test/test_plugininstances_api.py index c148c16..f0d0991 100644 --- a/python-async/test/test_plugininstances_api.py +++ b/python-async/test/test_plugininstances_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,16 +18,16 @@ from aiochris_oag.api.plugininstances_api import PlugininstancesApi -class TestPlugininstancesApi(unittest.TestCase): +class TestPlugininstancesApi(unittest.IsolatedAsyncioTestCase): """PlugininstancesApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = PlugininstancesApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_plugininstances_list(self) -> None: + async def test_plugininstances_list(self) -> None: """Test case for plugininstances_list """ diff --git a/python-async/test/test_plugins_api.py b/python-async/test/test_plugins_api.py index 602f90f..b85b088 100644 --- a/python-async/test/test_plugins_api.py +++ b/python-async/test/test_plugins_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,178 +18,178 @@ from aiochris_oag.api.plugins_api import PluginsApi -class TestPluginsApi(unittest.TestCase): +class TestPluginsApi(unittest.IsolatedAsyncioTestCase): """PluginsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = PluginsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_all_plugins_instances_list(self) -> None: + async def test_all_plugins_instances_list(self) -> None: """Test case for all_plugins_instances_list """ pass - def test_plugins_boolean_parameter_retrieve(self) -> None: + async def test_plugins_boolean_parameter_retrieve(self) -> None: """Test case for plugins_boolean_parameter_retrieve """ pass - def test_plugins_computeresources_list(self) -> None: + async def test_plugins_computeresources_list(self) -> None: """Test case for plugins_computeresources_list """ pass - def test_plugins_float_parameter_retrieve(self) -> None: + async def test_plugins_float_parameter_retrieve(self) -> None: """Test case for plugins_float_parameter_retrieve """ pass - def test_plugins_instances_create(self) -> None: + async def test_plugins_instances_create(self) -> None: """Test case for plugins_instances_create """ pass - def test_plugins_instances_descendants_list(self) -> None: + async def test_plugins_instances_descendants_list(self) -> None: """Test case for plugins_instances_descendants_list """ pass - def test_plugins_instances_destroy(self) -> None: + async def test_plugins_instances_destroy(self) -> None: """Test case for plugins_instances_destroy """ pass - def test_plugins_instances_list(self) -> None: + async def test_plugins_instances_list(self) -> None: """Test case for plugins_instances_list """ pass - def test_plugins_instances_parameters_list(self) -> None: + async def test_plugins_instances_parameters_list(self) -> None: """Test case for plugins_instances_parameters_list """ pass - def test_plugins_instances_retrieve(self) -> None: + async def test_plugins_instances_retrieve(self) -> None: """Test case for plugins_instances_retrieve """ pass - def test_plugins_instances_search_list(self) -> None: + async def test_plugins_instances_search_list(self) -> None: """Test case for plugins_instances_search_list """ pass - def test_plugins_instances_splits_create(self) -> None: + async def test_plugins_instances_splits_create(self) -> None: """Test case for plugins_instances_splits_create """ pass - def test_plugins_instances_splits_list(self) -> None: + async def test_plugins_instances_splits_list(self) -> None: """Test case for plugins_instances_splits_list """ pass - def test_plugins_instances_splits_retrieve(self) -> None: + async def test_plugins_instances_splits_retrieve(self) -> None: """Test case for plugins_instances_splits_retrieve """ pass - def test_plugins_instances_update(self) -> None: + async def test_plugins_instances_update(self) -> None: """Test case for plugins_instances_update """ pass - def test_plugins_integer_parameter_retrieve(self) -> None: + async def test_plugins_integer_parameter_retrieve(self) -> None: """Test case for plugins_integer_parameter_retrieve """ pass - def test_plugins_list(self) -> None: + async def test_plugins_list(self) -> None: """Test case for plugins_list """ pass - def test_plugins_metas_list(self) -> None: + async def test_plugins_metas_list(self) -> None: """Test case for plugins_metas_list """ pass - def test_plugins_metas_plugins_list(self) -> None: + async def test_plugins_metas_plugins_list(self) -> None: """Test case for plugins_metas_plugins_list """ pass - def test_plugins_metas_retrieve(self) -> None: + async def test_plugins_metas_retrieve(self) -> None: """Test case for plugins_metas_retrieve """ pass - def test_plugins_metas_search_list(self) -> None: + async def test_plugins_metas_search_list(self) -> None: """Test case for plugins_metas_search_list """ pass - def test_plugins_parameters_list(self) -> None: + async def test_plugins_parameters_list(self) -> None: """Test case for plugins_parameters_list """ pass - def test_plugins_parameters_retrieve(self) -> None: + async def test_plugins_parameters_retrieve(self) -> None: """Test case for plugins_parameters_retrieve """ pass - def test_plugins_path_parameter_retrieve(self) -> None: + async def test_plugins_path_parameter_retrieve(self) -> None: """Test case for plugins_path_parameter_retrieve """ pass - def test_plugins_retrieve(self) -> None: + async def test_plugins_retrieve(self) -> None: """Test case for plugins_retrieve """ pass - def test_plugins_search_list(self) -> None: + async def test_plugins_search_list(self) -> None: """Test case for plugins_search_list """ pass - def test_plugins_string_parameter_retrieve(self) -> None: + async def test_plugins_string_parameter_retrieve(self) -> None: """Test case for plugins_string_parameter_retrieve """ pass - def test_plugins_unextpath_parameter_retrieve(self) -> None: + async def test_plugins_unextpath_parameter_retrieve(self) -> None: """Test case for plugins_unextpath_parameter_retrieve """ diff --git a/python-async/test/test_publicfeeds_api.py b/python-async/test/test_publicfeeds_api.py index c5d871b..a612b76 100644 --- a/python-async/test/test_publicfeeds_api.py +++ b/python-async/test/test_publicfeeds_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,22 +18,22 @@ from aiochris_oag.api.publicfeeds_api import PublicfeedsApi -class TestPublicfeedsApi(unittest.TestCase): +class TestPublicfeedsApi(unittest.IsolatedAsyncioTestCase): """PublicfeedsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = PublicfeedsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_publicfeeds_list(self) -> None: + async def test_publicfeeds_list(self) -> None: """Test case for publicfeeds_list """ pass - def test_publicfeeds_search_list(self) -> None: + async def test_publicfeeds_search_list(self) -> None: """Test case for publicfeeds_search_list """ diff --git a/python-async/test/test_schema_api.py b/python-async/test/test_schema_api.py index f6ae134..b3ffb89 100644 --- a/python-async/test/test_schema_api.py +++ b/python-async/test/test_schema_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,16 +18,16 @@ from aiochris_oag.api.schema_api import SchemaApi -class TestSchemaApi(unittest.TestCase): +class TestSchemaApi(unittest.IsolatedAsyncioTestCase): """SchemaApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = SchemaApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_schema_retrieve(self) -> None: + async def test_schema_retrieve(self) -> None: """Test case for schema_retrieve """ diff --git a/python-async/test/test_search_api.py b/python-async/test/test_search_api.py index 5066e00..0fcb637 100644 --- a/python-async/test/test_search_api.py +++ b/python-async/test/test_search_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,16 +18,16 @@ from aiochris_oag.api.search_api import SearchApi -class TestSearchApi(unittest.TestCase): +class TestSearchApi(unittest.IsolatedAsyncioTestCase): """SearchApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = SearchApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_search_list(self) -> None: + async def test_search_list(self) -> None: """Test case for search_list """ diff --git a/python-async/test/test_status_enum.py b/python-async/test/test_status_enum.py index c4ae766..33dd090 100644 --- a/python-async/test/test_status_enum.py +++ b/python-async/test/test_status_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_str_parameter.py b/python-async/test/test_str_parameter.py index 56d88b2..f46663a 100644 --- a/python-async/test/test_str_parameter.py +++ b/python-async/test/test_str_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_tag.py b/python-async/test/test_tag.py index c5e865c..b760e84 100644 --- a/python-async/test/test_tag.py +++ b/python-async/test/test_tag.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_tag_request.py b/python-async/test/test_tag_request.py index 0752bdb..333cb1a 100644 --- a/python-async/test/test_tag_request.py +++ b/python-async/test/test_tag_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_tagging.py b/python-async/test/test_tagging.py index 8c481e7..4563256 100644 --- a/python-async/test/test_tagging.py +++ b/python-async/test/test_tagging.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_taggings_api.py b/python-async/test/test_taggings_api.py index 1637df2..5b6b44c 100644 --- a/python-async/test/test_taggings_api.py +++ b/python-async/test/test_taggings_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,34 +18,34 @@ from aiochris_oag.api.taggings_api import TaggingsApi -class TestTaggingsApi(unittest.TestCase): +class TestTaggingsApi(unittest.IsolatedAsyncioTestCase): """TaggingsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = TaggingsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_taggings_create(self) -> None: + async def test_taggings_create(self) -> None: """Test case for taggings_create """ pass - def test_taggings_destroy(self) -> None: + async def test_taggings_destroy(self) -> None: """Test case for taggings_destroy """ pass - def test_taggings_list(self) -> None: + async def test_taggings_list(self) -> None: """Test case for taggings_list """ pass - def test_taggings_retrieve(self) -> None: + async def test_taggings_retrieve(self) -> None: """Test case for taggings_retrieve """ diff --git a/python-async/test/test_tags_api.py b/python-async/test/test_tags_api.py index 2713dda..a73f943 100644 --- a/python-async/test/test_tags_api.py +++ b/python-async/test/test_tags_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,70 +18,70 @@ from aiochris_oag.api.tags_api import TagsApi -class TestTagsApi(unittest.TestCase): +class TestTagsApi(unittest.IsolatedAsyncioTestCase): """TagsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = TagsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_feed_tags_list(self) -> None: + async def test_feed_tags_list(self) -> None: """Test case for feed_tags_list """ pass - def test_tags_create(self) -> None: + async def test_tags_create(self) -> None: """Test case for tags_create """ pass - def test_tags_destroy(self) -> None: + async def test_tags_destroy(self) -> None: """Test case for tags_destroy """ pass - def test_tags_feeds_list(self) -> None: + async def test_tags_feeds_list(self) -> None: """Test case for tags_feeds_list """ pass - def test_tags_list(self) -> None: + async def test_tags_list(self) -> None: """Test case for tags_list """ pass - def test_tags_retrieve(self) -> None: + async def test_tags_retrieve(self) -> None: """Test case for tags_retrieve """ pass - def test_tags_search_list(self) -> None: + async def test_tags_search_list(self) -> None: """Test case for tags_search_list """ pass - def test_tags_taggings_create(self) -> None: + async def test_tags_taggings_create(self) -> None: """Test case for tags_taggings_create """ pass - def test_tags_taggings_list(self) -> None: + async def test_tags_taggings_list(self) -> None: """Test case for tags_taggings_list """ pass - def test_tags_update(self) -> None: + async def test_tags_update(self) -> None: """Test case for tags_update """ diff --git a/python-async/test/test_unextpath_parameter.py b/python-async/test/test_unextpath_parameter.py index a244b49..27b5c0a 100644 --- a/python-async/test/test_unextpath_parameter.py +++ b/python-async/test/test_unextpath_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_user.py b/python-async/test/test_user.py index a304324..40ff97f 100644 --- a/python-async/test/test_user.py +++ b/python-async/test/test_user.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_user_file.py b/python-async/test/test_user_file.py index 1735349..ace5fbb 100644 --- a/python-async/test/test_user_file.py +++ b/python-async/test/test_user_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_user_file_request.py b/python-async/test/test_user_file_request.py index 8b68208..c5ebb25 100644 --- a/python-async/test/test_user_file_request.py +++ b/python-async/test/test_user_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_user_request.py b/python-async/test/test_user_request.py index 88d5aeb..05887f8 100644 --- a/python-async/test/test_user_request.py +++ b/python-async/test/test_user_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_userfiles_api.py b/python-async/test/test_userfiles_api.py index 954fec0..168290e 100644 --- a/python-async/test/test_userfiles_api.py +++ b/python-async/test/test_userfiles_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,52 +18,52 @@ from aiochris_oag.api.userfiles_api import UserfilesApi -class TestUserfilesApi(unittest.TestCase): +class TestUserfilesApi(unittest.IsolatedAsyncioTestCase): """UserfilesApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = UserfilesApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_userfiles_create(self) -> None: + async def test_userfiles_create(self) -> None: """Test case for userfiles_create """ pass - def test_userfiles_destroy(self) -> None: + async def test_userfiles_destroy(self) -> None: """Test case for userfiles_destroy """ pass - def test_userfiles_list(self) -> None: + async def test_userfiles_list(self) -> None: """Test case for userfiles_list """ pass - def test_userfiles_retrieve(self) -> None: + async def test_userfiles_retrieve(self) -> None: """Test case for userfiles_retrieve """ pass - def test_userfiles_retrieve_0(self) -> None: + async def test_userfiles_retrieve_0(self) -> None: """Test case for userfiles_retrieve_0 """ pass - def test_userfiles_search_list(self) -> None: + async def test_userfiles_search_list(self) -> None: """Test case for userfiles_search_list """ pass - def test_userfiles_update(self) -> None: + async def test_userfiles_update(self) -> None: """Test case for userfiles_update """ diff --git a/python-async/test/test_userpermissions_api.py b/python-async/test/test_userpermissions_api.py index a10768a..7edc87e 100644 --- a/python-async/test/test_userpermissions_api.py +++ b/python-async/test/test_userpermissions_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,40 +18,40 @@ from aiochris_oag.api.userpermissions_api import UserpermissionsApi -class TestUserpermissionsApi(unittest.TestCase): +class TestUserpermissionsApi(unittest.IsolatedAsyncioTestCase): """UserpermissionsApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = UserpermissionsApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_userpermissions_create(self) -> None: + async def test_userpermissions_create(self) -> None: """Test case for userpermissions_create """ pass - def test_userpermissions_destroy(self) -> None: + async def test_userpermissions_destroy(self) -> None: """Test case for userpermissions_destroy """ pass - def test_userpermissions_list(self) -> None: + async def test_userpermissions_list(self) -> None: """Test case for userpermissions_list """ pass - def test_userpermissions_retrieve(self) -> None: + async def test_userpermissions_retrieve(self) -> None: """Test case for userpermissions_retrieve """ pass - def test_userpermissions_search_list(self) -> None: + async def test_userpermissions_search_list(self) -> None: """Test case for userpermissions_search_list """ diff --git a/python-async/test/test_users_api.py b/python-async/test/test_users_api.py index edc6f91..4013c2e 100644 --- a/python-async/test/test_users_api.py +++ b/python-async/test/test_users_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,40 +18,40 @@ from aiochris_oag.api.users_api import UsersApi -class TestUsersApi(unittest.TestCase): +class TestUsersApi(unittest.IsolatedAsyncioTestCase): """UsersApi unit test stubs""" - def setUp(self) -> None: + async def asyncSetUp(self) -> None: self.api = UsersApi() - def tearDown(self) -> None: + async def asyncTearDown(self) -> None: pass - def test_users_create(self) -> None: + async def test_users_create(self) -> None: """Test case for users_create """ pass - def test_users_groups_list(self) -> None: + async def test_users_groups_list(self) -> None: """Test case for users_groups_list """ pass - def test_users_list(self) -> None: + async def test_users_list(self) -> None: """Test case for users_list """ pass - def test_users_retrieve(self) -> None: + async def test_users_retrieve(self) -> None: """Test case for users_retrieve """ pass - def test_users_update(self) -> None: + async def test_users_update(self) -> None: """Test case for users_update """ diff --git a/python-async/test/test_workflow.py b/python-async/test/test_workflow.py index 1b656d7..29e9399 100644 --- a/python-async/test/test_workflow.py +++ b/python-async/test/test_workflow.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python-async/test/test_workflow_request.py b/python-async/test/test_workflow_request.py index f78d6ad..b90e403 100644 --- a/python-async/test/test_workflow_request.py +++ b/python-async/test/test_workflow_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/.github/workflows/python.yml b/python/.github/workflows/python.yml index 8f317de..23c304f 100644 --- a/python/.github/workflows/python.yml +++ b/python/.github/workflows/python.yml @@ -13,10 +13,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -24,15 +24,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + pip install -r requirements.txt + pip install -r test-requirements.txt - name: Test with pytest run: | - pytest + pytest --cov={{packageName}} diff --git a/python/.gitlab-ci.yml b/python/.gitlab-ci.yml index b4c8aaf..c6f73a0 100644 --- a/python/.gitlab-ci.yml +++ b/python/.gitlab-ci.yml @@ -14,9 +14,6 @@ stages: - pip install -r test-requirements.txt - pytest --cov=chris_oag -pytest-3.7: - extends: .pytest - image: python:3.7-alpine pytest-3.8: extends: .pytest image: python:3.8-alpine @@ -29,3 +26,6 @@ pytest-3.10: pytest-3.11: extends: .pytest image: python:3.11-alpine +pytest-3.12: + extends: .pytest + image: python:3.12-alpine diff --git a/python/.openapi-generator/FILES b/python/.openapi-generator/FILES index fb83c32..19bae36 100644 --- a/python/.openapi-generator/FILES +++ b/python/.openapi-generator/FILES @@ -319,4 +319,154 @@ setup.cfg setup.py test-requirements.txt test/__init__.py +test/test_auth_token.py +test/test_auth_token_api.py +test/test_auth_token_request.py +test/test_blank_enum.py +test/test_bool_parameter.py +test/test_chris_admin_api.py +test/test_chris_instance.py +test/test_chrisinstance_api.py +test/test_comment.py +test/test_comment_request.py +test/test_comments_api.py +test/test_compute_resource.py +test/test_compute_resource_request.py +test/test_computeresources_api.py +test/test_default_api.py +test/test_default_piping_bool_parameter.py +test/test_default_piping_bool_parameter_request.py +test/test_default_piping_float_parameter.py +test/test_default_piping_float_parameter_request.py +test/test_default_piping_int_parameter.py +test/test_default_piping_int_parameter_request.py +test/test_default_piping_str_parameter.py +test/test_default_piping_str_parameter_request.py +test/test_downloadtokens_api.py +test/test_feed.py +test/test_feed_group_permission.py +test/test_feed_group_permission_request.py +test/test_feed_request.py +test/test_feed_user_permission.py +test/test_feed_user_permission_request.py +test/test_file_browser_file.py +test/test_file_browser_file_group_permission.py +test/test_file_browser_file_group_permission_request.py +test/test_file_browser_file_request.py +test/test_file_browser_file_user_permission.py +test/test_file_browser_file_user_permission_request.py +test/test_file_browser_folder.py +test/test_file_browser_folder_group_permission.py +test/test_file_browser_folder_group_permission_request.py +test/test_file_browser_folder_request.py +test/test_file_browser_folder_user_permission.py +test/test_file_browser_folder_user_permission_request.py +test/test_file_browser_link_file.py +test/test_file_browser_link_file_group_permission.py +test/test_file_browser_link_file_group_permission_request.py +test/test_file_browser_link_file_request.py +test/test_file_browser_link_file_user_permission.py +test/test_file_browser_link_file_user_permission_request.py +test/test_file_download_token.py +test/test_file_download_token_request.py +test/test_filebrowser_api.py +test/test_float_parameter.py +test/test_ftype_enum.py +test/test_generic_default_piping_parameter.py +test/test_generic_default_piping_parameter_value.py +test/test_generic_parameter.py +test/test_group.py +test/test_group_request.py +test/test_group_user.py +test/test_group_user_request.py +test/test_grouppermissions_api.py +test/test_groups_api.py +test/test_int_parameter.py +test/test_note.py +test/test_note_api.py +test/test_note_request.py +test/test_pacs_api.py +test/test_pacs_file.py +test/test_pacs_series.py +test/test_pacs_series_patient_sex.py +test/test_paginated_comment_list.py +test/test_paginated_compute_resource_list.py +test/test_paginated_feed_group_permission_list.py +test/test_paginated_feed_list.py +test/test_paginated_feed_user_permission_list.py +test/test_paginated_file_browser_file_group_permission_list.py +test/test_paginated_file_browser_file_list.py +test/test_paginated_file_browser_file_user_permission_list.py +test/test_paginated_file_browser_folder_group_permission_list.py +test/test_paginated_file_browser_folder_list.py +test/test_paginated_file_browser_folder_user_permission_list.py +test/test_paginated_file_browser_link_file_group_permission_list.py +test/test_paginated_file_browser_link_file_list.py +test/test_paginated_file_browser_link_file_user_permission_list.py +test/test_paginated_file_download_token_list.py +test/test_paginated_generic_default_piping_parameter_list.py +test/test_paginated_generic_parameter_list.py +test/test_paginated_group_list.py +test/test_paginated_group_user_list.py +test/test_paginated_pacs_file_list.py +test/test_paginated_pacs_series_list.py +test/test_paginated_pipeline_list.py +test/test_paginated_pipeline_source_file_list.py +test/test_paginated_plugin_admin_list.py +test/test_paginated_plugin_instance_list.py +test/test_paginated_plugin_instance_split_list.py +test/test_paginated_plugin_list.py +test/test_paginated_plugin_meta_list.py +test/test_paginated_plugin_parameter_list.py +test/test_paginated_plugin_piping_list.py +test/test_paginated_tag_list.py +test/test_paginated_tagging_list.py +test/test_paginated_user_file_list.py +test/test_paginated_user_list.py +test/test_paginated_workflow_list.py +test/test_path_parameter.py +test/test_patient_sex_enum.py +test/test_permission_enum.py +test/test_pipeline.py +test/test_pipeline_custom_json.py +test/test_pipeline_request.py +test/test_pipeline_source_file.py +test/test_pipeline_source_file_ftype.py +test/test_pipeline_source_file_request.py +test/test_pipelines_api.py +test/test_plugin.py +test/test_plugin_admin.py +test/test_plugin_admin_request.py +test/test_plugin_instance.py +test/test_plugin_instance_request.py +test/test_plugin_instance_split.py +test/test_plugin_instance_split_request.py +test/test_plugin_meta.py +test/test_plugin_parameter.py +test/test_plugin_parameter_default.py +test/test_plugin_parameter_type.py +test/test_plugin_piping.py +test/test_plugin_type.py +test/test_plugininstances_api.py +test/test_plugins_api.py +test/test_publicfeeds_api.py +test/test_schema_api.py +test/test_search_api.py +test/test_status_enum.py +test/test_str_parameter.py +test/test_tag.py +test/test_tag_request.py +test/test_tagging.py +test/test_taggings_api.py +test/test_tags_api.py +test/test_unextpath_parameter.py +test/test_user.py +test/test_user_file.py +test/test_user_file_request.py +test/test_user_request.py +test/test_userfiles_api.py +test/test_userpermissions_api.py +test/test_users_api.py +test/test_workflow.py +test/test_workflow_request.py tox.ini diff --git a/python/.openapi-generator/VERSION b/python/.openapi-generator/VERSION index 09a6d30..4bc5d61 100644 --- a/python/.openapi-generator/VERSION +++ b/python/.openapi-generator/VERSION @@ -1 +1 @@ -7.8.0 +7.9.0 diff --git a/python/.travis.yml b/python/.travis.yml index b93536b..ebfed44 100644 --- a/python/.travis.yml +++ b/python/.travis.yml @@ -1,13 +1,13 @@ # ref: https://docs.travis-ci.com/user/languages/python language: python python: - - "3.7" - "3.8" - "3.9" - "3.10" - "3.11" + - "3.12" # uncomment the following if needed - #- "3.11-dev" # 3.11 development branch + #- "3.12-dev" # 3.12 development branch #- "nightly" # nightly build # command to install dependencies install: diff --git a/python/README.md b/python/README.md index c3a437a..bd704bc 100644 --- a/python/README.md +++ b/python/README.md @@ -3,9 +3,9 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChR This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 0.0.0+unknown -- Package version: 0.0.1a4 -- Generator version: 7.8.0 +- API version: ${GITHUB_REF_NAME:1} +- Package version: 0.1.0b1 +- Generator version: 7.9.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit [https://chrisproject.org](https://chrisproject.org) @@ -19,9 +19,9 @@ Python 3.7+ If the python package is hosted on a repository, you can install directly using: ```sh -pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git +pip install git+https://github.com/FNNDSC/openapi-clients.git ``` -(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`) +(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/FNNDSC/openapi-clients.git`) Then import the package: ```python diff --git a/python/chris_oag/__init__.py b/python/chris_oag/__init__.py index aa73caa..f42e3a4 100644 --- a/python/chris_oag/__init__.py +++ b/python/chris_oag/__init__.py @@ -7,7 +7,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "0.0.1a4" +__version__ = "0.1.0b1" # import apis into sdk package from chris_oag.api.auth_token_api import AuthTokenApi diff --git a/python/chris_oag/api/auth_token_api.py b/python/chris_oag/api/auth_token_api.py index 0ab908e..befb654 100644 --- a/python/chris_oag/api/auth_token_api.py +++ b/python/chris_oag/api/auth_token_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -264,7 +264,9 @@ def _auth_token_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/chris_admin_api.py b/python/chris_oag/api/chris_admin_api.py index edc02be..84af152 100644 --- a/python/chris_oag/api/chris_admin_api.py +++ b/python/chris_oag/api/chris_admin_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -260,7 +260,9 @@ def _chris_admin_api_v1_computeresources_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -536,7 +538,9 @@ def _chris_admin_api_v1_computeresources_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -803,7 +807,9 @@ def _chris_admin_api_v1_computeresources_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1070,7 +1076,9 @@ def _chris_admin_api_v1_computeresources_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1331,7 +1339,9 @@ def _chris_admin_api_v1_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1607,7 +1617,9 @@ def _chris_admin_api_v1_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1874,7 +1886,9 @@ def _chris_admin_api_v1_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2141,7 +2155,9 @@ def _chris_admin_api_v1_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2415,7 +2431,9 @@ def _chris_admin_api_v1_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/chrisinstance_api.py b/python/chris_oag/api/chrisinstance_api.py index 99878d0..018e042 100644 --- a/python/chris_oag/api/chrisinstance_api.py +++ b/python/chris_oag/api/chrisinstance_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -253,7 +253,9 @@ def _chrisinstance_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/comments_api.py b/python/chris_oag/api/comments_api.py index 5335a9e..9314869 100644 --- a/python/chris_oag/api/comments_api.py +++ b/python/chris_oag/api/comments_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -270,7 +270,9 @@ def _comments_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -548,7 +550,9 @@ def _comments_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -828,7 +832,9 @@ def _comments_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1097,7 +1103,9 @@ def _comments_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1397,7 +1405,9 @@ def _comments_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1683,7 +1693,9 @@ def _comments_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/computeresources_api.py b/python/chris_oag/api/computeresources_api.py index e43530a..08de3bc 100644 --- a/python/chris_oag/api/computeresources_api.py +++ b/python/chris_oag/api/computeresources_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -269,7 +269,9 @@ def _computeresources_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -536,7 +538,9 @@ def _computeresources_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -875,7 +879,9 @@ def _computeresources_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/default_api.py b/python/chris_oag/api/default_api.py index 71b8ba9..60fcb6f 100644 --- a/python/chris_oag/api/default_api.py +++ b/python/chris_oag/api/default_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -257,7 +257,9 @@ def _root_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -524,7 +526,9 @@ def _root_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -791,7 +795,9 @@ def _root_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1065,7 +1071,9 @@ def _root_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/downloadtokens_api.py b/python/chris_oag/api/downloadtokens_api.py index 266a043..316641d 100644 --- a/python/chris_oag/api/downloadtokens_api.py +++ b/python/chris_oag/api/downloadtokens_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -257,7 +257,9 @@ def _downloadtokens_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -546,7 +548,9 @@ def _downloadtokens_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -813,7 +817,9 @@ def _downloadtokens_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1100,7 +1106,9 @@ def _downloadtokens_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/filebrowser_api.py b/python/chris_oag/api/filebrowser_api.py index ff872c0..79d745b 100644 --- a/python/chris_oag/api/filebrowser_api.py +++ b/python/chris_oag/api/filebrowser_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -18,7 +18,7 @@ from typing_extensions import Annotated from pydantic import Field, StrictBytes, StrictInt, StrictStr, field_validator -from typing import Optional, Union +from typing import Optional, Tuple, Union from typing_extensions import Annotated from chris_oag.models.file_browser_file import FileBrowserFile from chris_oag.models.file_browser_file_group_permission import FileBrowserFileGroupPermission @@ -307,7 +307,9 @@ def _filebrowser_children_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -576,7 +578,9 @@ def _filebrowser_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -852,7 +856,9 @@ def _filebrowser_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1106,7 +1112,9 @@ def _filebrowser_files_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1373,7 +1381,9 @@ def _filebrowser_files_grouppermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1651,7 +1661,9 @@ def _filebrowser_files_grouppermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1931,7 +1943,9 @@ def _filebrowser_files_grouppermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2200,7 +2214,9 @@ def _filebrowser_files_grouppermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2513,7 +2529,9 @@ def _filebrowser_files_grouppermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2803,7 +2821,9 @@ def _filebrowser_files_grouppermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3107,7 +3127,9 @@ def _filebrowser_files_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3376,7 +3398,9 @@ def _filebrowser_files_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3637,7 +3661,9 @@ def _filebrowser_files_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3911,7 +3937,9 @@ def _filebrowser_files_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4202,7 +4230,9 @@ def _filebrowser_files_userpermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4480,7 +4510,9 @@ def _filebrowser_files_userpermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4760,7 +4792,9 @@ def _filebrowser_files_userpermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5029,7 +5063,9 @@ def _filebrowser_files_userpermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5342,7 +5378,9 @@ def _filebrowser_files_userpermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5632,7 +5670,9 @@ def _filebrowser_files_userpermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5923,7 +5963,9 @@ def _filebrowser_grouppermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6201,7 +6243,9 @@ def _filebrowser_grouppermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6481,7 +6525,9 @@ def _filebrowser_grouppermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6750,7 +6796,9 @@ def _filebrowser_grouppermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7063,7 +7111,9 @@ def _filebrowser_grouppermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7353,7 +7403,9 @@ def _filebrowser_grouppermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7631,7 +7683,9 @@ def _filebrowser_linkfiles_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7898,7 +7952,9 @@ def _filebrowser_linkfiles_grouppermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8176,7 +8232,9 @@ def _filebrowser_linkfiles_grouppermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8456,7 +8514,9 @@ def _filebrowser_linkfiles_grouppermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8725,7 +8785,9 @@ def _filebrowser_linkfiles_grouppermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9038,7 +9100,9 @@ def _filebrowser_linkfiles_grouppermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9328,7 +9392,9 @@ def _filebrowser_linkfiles_grouppermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9632,7 +9698,9 @@ def _filebrowser_linkfiles_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9901,7 +9969,9 @@ def _filebrowser_linkfiles_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -10162,7 +10232,9 @@ def _filebrowser_linkfiles_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -10436,7 +10508,9 @@ def _filebrowser_linkfiles_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -10727,7 +10801,9 @@ def _filebrowser_linkfiles_userpermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -11005,7 +11081,9 @@ def _filebrowser_linkfiles_userpermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -11285,7 +11363,9 @@ def _filebrowser_linkfiles_userpermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -11554,7 +11634,9 @@ def _filebrowser_linkfiles_userpermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -11867,7 +11949,9 @@ def _filebrowser_linkfiles_userpermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -12157,7 +12241,9 @@ def _filebrowser_linkfiles_userpermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -12448,7 +12534,9 @@ def _filebrowser_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -12715,7 +12803,9 @@ def _filebrowser_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -12989,7 +13079,9 @@ def _filebrowser_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -13269,7 +13361,9 @@ def _filebrowser_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -13560,7 +13654,9 @@ def _filebrowser_userpermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -13838,7 +13934,9 @@ def _filebrowser_userpermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -14118,7 +14216,9 @@ def _filebrowser_userpermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -14387,7 +14487,9 @@ def _filebrowser_userpermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -14700,7 +14802,9 @@ def _filebrowser_userpermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -14990,7 +15094,9 @@ def _filebrowser_userpermissions_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/grouppermissions_api.py b/python/chris_oag/api/grouppermissions_api.py index 784d1ec..a57e211 100644 --- a/python/chris_oag/api/grouppermissions_api.py +++ b/python/chris_oag/api/grouppermissions_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -270,7 +270,9 @@ def _grouppermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -548,7 +550,9 @@ def _grouppermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -828,7 +832,9 @@ def _grouppermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1097,7 +1103,9 @@ def _grouppermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1410,7 +1418,9 @@ def _grouppermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/groups_api.py b/python/chris_oag/api/groups_api.py index 5327e3f..8533968 100644 --- a/python/chris_oag/api/groups_api.py +++ b/python/chris_oag/api/groups_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -260,7 +260,9 @@ def _groups_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -536,7 +538,9 @@ def _groups_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -803,7 +807,9 @@ def _groups_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1070,7 +1076,9 @@ def _groups_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1383,7 +1391,9 @@ def _groups_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1675,7 +1685,9 @@ def _groups_users_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1953,7 +1965,9 @@ def _groups_users_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2233,7 +2247,9 @@ def _groups_users_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2502,7 +2518,9 @@ def _groups_users_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2815,7 +2833,9 @@ def _groups_users_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/note_api.py b/python/chris_oag/api/note_api.py index 08b89c9..fb72ec8 100644 --- a/python/chris_oag/api/note_api.py +++ b/python/chris_oag/api/note_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -255,7 +255,9 @@ def _note_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -529,7 +531,9 @@ def _note_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/pacs_api.py b/python/chris_oag/api/pacs_api.py index de55254..084c9a0 100644 --- a/python/chris_oag/api/pacs_api.py +++ b/python/chris_oag/api/pacs_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ from datetime import date, datetime from pydantic import Field, StrictBytes, StrictInt, StrictStr, field_validator -from typing import Optional, Union +from typing import Optional, Tuple, Union from typing_extensions import Annotated from chris_oag.models.pacs_file import PACSFile from chris_oag.models.pacs_series import PACSSeries @@ -272,7 +272,9 @@ def _pacs_files_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -539,7 +541,9 @@ def _pacs_files_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -800,7 +804,9 @@ def _pacs_files_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1178,7 +1184,9 @@ def _pacs_files_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1508,7 +1516,9 @@ def _pacs_series_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1775,7 +1785,9 @@ def _pacs_series_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2283,7 +2295,9 @@ def _pacs_series_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/pipelines_api.py b/python/chris_oag/api/pipelines_api.py index 91e91dc..3675ddf 100644 --- a/python/chris_oag/api/pipelines_api.py +++ b/python/chris_oag/api/pipelines_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ from datetime import datetime from pydantic import Field, StrictBytes, StrictInt, StrictStr, field_validator -from typing import Optional, Union +from typing import Optional, Tuple, Union from typing_extensions import Annotated from chris_oag.models.default_piping_bool_parameter import DefaultPipingBoolParameter from chris_oag.models.default_piping_bool_parameter_request import DefaultPipingBoolParameterRequest @@ -291,7 +291,9 @@ def _all_workflows_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -558,7 +560,9 @@ def _pipelines_boolean_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -832,7 +836,9 @@ def _pipelines_boolean_parameter_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1110,7 +1116,9 @@ def _pipelines_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1386,7 +1394,9 @@ def _pipelines_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1640,7 +1650,9 @@ def _pipelines_float_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1914,7 +1926,9 @@ def _pipelines_float_parameter_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2192,7 +2206,9 @@ def _pipelines_integer_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2466,7 +2482,9 @@ def _pipelines_integer_parameter_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2744,7 +2762,9 @@ def _pipelines_json_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3018,7 +3038,9 @@ def _pipelines_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3311,7 +3333,9 @@ def _pipelines_parameters_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3606,7 +3630,9 @@ def _pipelines_pipings_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3875,7 +3901,9 @@ def _pipelines_pipings_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4162,7 +4190,9 @@ def _pipelines_plugins_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4431,7 +4461,9 @@ def _pipelines_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4809,7 +4841,9 @@ def _pipelines_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5126,7 +5160,9 @@ def _pipelines_sourcefiles_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5415,7 +5451,9 @@ def _pipelines_sourcefiles_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5682,7 +5720,9 @@ def _pipelines_sourcefiles_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5943,7 +5983,9 @@ def _pipelines_sourcefiles_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6308,7 +6350,9 @@ def _pipelines_sourcefiles_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6621,7 +6665,9 @@ def _pipelines_string_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6895,7 +6941,9 @@ def _pipelines_string_parameter_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7186,7 +7234,9 @@ def _pipelines_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7477,7 +7527,9 @@ def _pipelines_workflows_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7755,7 +7807,9 @@ def _pipelines_workflows_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8035,7 +8089,9 @@ def _pipelines_workflows_plugininstances_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8304,7 +8360,9 @@ def _pipelines_workflows_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8630,7 +8688,9 @@ def _pipelines_workflows_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8926,7 +8986,9 @@ def _pipelines_workflows_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -9230,7 +9292,9 @@ def _workflows_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/plugininstances_api.py b/python/chris_oag/api/plugininstances_api.py index cfa056c..750b0c5 100644 --- a/python/chris_oag/api/plugininstances_api.py +++ b/python/chris_oag/api/plugininstances_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -281,7 +281,9 @@ def _plugininstances_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/plugins_api.py b/python/chris_oag/api/plugins_api.py index decf1c1..c40292c 100644 --- a/python/chris_oag/api/plugins_api.py +++ b/python/chris_oag/api/plugins_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -288,7 +288,9 @@ def _all_plugins_instances_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -555,7 +557,9 @@ def _plugins_boolean_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -842,7 +846,9 @@ def _plugins_computeresources_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1111,7 +1117,9 @@ def _plugins_float_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1385,7 +1393,9 @@ def _plugins_instances_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1689,7 +1699,9 @@ def _plugins_instances_descendants_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1958,7 +1970,9 @@ def _plugins_instances_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2238,7 +2252,9 @@ def _plugins_instances_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2533,7 +2549,9 @@ def _plugins_instances_parameters_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2802,7 +2820,9 @@ def _plugins_instances_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3284,7 +3304,9 @@ def _plugins_instances_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3664,7 +3686,9 @@ def _plugins_instances_splits_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -3968,7 +3992,9 @@ def _plugins_instances_splits_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4237,7 +4263,9 @@ def _plugins_instances_splits_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4511,7 +4539,9 @@ def _plugins_instances_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -4789,7 +4819,9 @@ def _plugins_integer_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5063,7 +5095,9 @@ def _plugins_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5343,7 +5377,9 @@ def _plugins_metas_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5636,7 +5672,9 @@ def _plugins_metas_plugins_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -5905,7 +5943,9 @@ def _plugins_metas_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6322,7 +6362,9 @@ def _plugins_metas_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6677,7 +6719,9 @@ def _plugins_parameters_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -6946,7 +6990,9 @@ def _plugins_parameters_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7207,7 +7253,9 @@ def _plugins_path_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7468,7 +7516,9 @@ def _plugins_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -7911,7 +7961,9 @@ def _plugins_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8248,7 +8300,9 @@ def _plugins_string_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -8509,7 +8563,9 @@ def _plugins_unextpath_parameter_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/publicfeeds_api.py b/python/chris_oag/api/publicfeeds_api.py index 9bde63e..94263e8 100644 --- a/python/chris_oag/api/publicfeeds_api.py +++ b/python/chris_oag/api/publicfeeds_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -269,7 +269,9 @@ def _publicfeeds_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -666,7 +668,9 @@ def _publicfeeds_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/schema_api.py b/python/chris_oag/api/schema_api.py index b2f7d87..640e789 100644 --- a/python/chris_oag/api/schema_api.py +++ b/python/chris_oag/api/schema_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -266,7 +266,9 @@ def _schema_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/search_api.py b/python/chris_oag/api/search_api.py index 6ec064c..7778c0d 100644 --- a/python/chris_oag/api/search_api.py +++ b/python/chris_oag/api/search_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -386,7 +386,9 @@ def _search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/taggings_api.py b/python/chris_oag/api/taggings_api.py index 96a9131..e197a09 100644 --- a/python/chris_oag/api/taggings_api.py +++ b/python/chris_oag/api/taggings_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -256,7 +256,9 @@ def _taggings_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -517,7 +519,9 @@ def _taggings_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -797,7 +801,9 @@ def _taggings_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1066,7 +1072,9 @@ def _taggings_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/tags_api.py b/python/chris_oag/api/tags_api.py index 925a5a6..0010337 100644 --- a/python/chris_oag/api/tags_api.py +++ b/python/chris_oag/api/tags_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -286,7 +286,9 @@ def _feed_tags_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -555,7 +557,9 @@ def _tags_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -831,7 +835,9 @@ def _tags_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1111,7 +1117,9 @@ def _tags_feeds_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1393,7 +1401,9 @@ def _tags_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1660,7 +1670,9 @@ def _tags_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1986,7 +1998,9 @@ def _tags_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2269,7 +2283,9 @@ def _tags_taggings_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2556,7 +2572,9 @@ def _tags_taggings_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2838,7 +2856,9 @@ def _tags_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/userfiles_api.py b/python/chris_oag/api/userfiles_api.py index 8b1e7b1..264e196 100644 --- a/python/chris_oag/api/userfiles_api.py +++ b/python/chris_oag/api/userfiles_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ from datetime import datetime from pydantic import Field, StrictBytes, StrictInt, StrictStr, field_validator -from typing import Optional, Union +from typing import Optional, Tuple, Union from typing_extensions import Annotated from chris_oag.models.paginated_user_file_list import PaginatedUserFileList from chris_oag.models.user_file import UserFile @@ -258,7 +258,9 @@ def _userfiles_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -534,7 +536,9 @@ def _userfiles_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -801,7 +805,9 @@ def _userfiles_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1068,7 +1074,9 @@ def _userfiles_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1329,7 +1337,9 @@ def _userfiles_retrieve_0_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1720,7 +1730,9 @@ def _userfiles_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -2054,7 +2066,9 @@ def _userfiles_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/userpermissions_api.py b/python/chris_oag/api/userpermissions_api.py index 6fc9fa7..6abb58a 100644 --- a/python/chris_oag/api/userpermissions_api.py +++ b/python/chris_oag/api/userpermissions_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -270,7 +270,9 @@ def _userpermissions_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -548,7 +550,9 @@ def _userpermissions_destroy_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -828,7 +832,9 @@ def _userpermissions_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1097,7 +1103,9 @@ def _userpermissions_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1410,7 +1418,9 @@ def _userpermissions_search_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api/users_api.py b/python/chris_oag/api/users_api.py index bbb9b8a..958a636 100644 --- a/python/chris_oag/api/users_api.py +++ b/python/chris_oag/api/users_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -255,7 +255,9 @@ def _users_create_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -557,7 +559,9 @@ def _users_groups_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -836,7 +840,9 @@ def _users_list_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1100,7 +1106,9 @@ def _users_retrieve_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters @@ -1371,7 +1379,9 @@ def _users_update_serialize( _query_params: List[Tuple[str, str]] = [] _header_params: Dict[str, Optional[str]] = _headers or {} _form_params: List[Tuple[str, str]] = [] - _files: Dict[str, Union[str, bytes]] = {} + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} _body_params: Optional[bytes] = None # process the path parameters diff --git a/python/chris_oag/api_client.py b/python/chris_oag/api_client.py index 2c331c0..5eb258e 100644 --- a/python/chris_oag/api_client.py +++ b/python/chris_oag/api_client.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -91,7 +91,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.0.1a4/python' + self.user_agent = 'OpenAPI-Generator/0.1.0b1/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): @@ -405,12 +405,12 @@ def deserialize(self, response_text: str, response_type: str, content_type: Opti data = json.loads(response_text) except ValueError: data = response_text - elif content_type.startswith("application/json"): + elif re.match(r'^application/(json|[\w!#$&.+-^_]+\+json)\s*(;|$)', content_type, re.IGNORECASE): if response_text == "": data = "" else: data = json.loads(response_text) - elif content_type.startswith("text/plain"): + elif re.match(r'^text\/[a-z.+-]+\s*(;|$)', content_type, re.IGNORECASE): data = response_text else: raise ApiException( @@ -536,7 +536,10 @@ def parameters_to_url_query(self, params, collection_formats): return "&".join(["=".join(map(str, item)) for item in new_params]) - def files_parameters(self, files: Dict[str, Union[str, bytes]]): + def files_parameters( + self, + files: Dict[str, Union[str, bytes, List[str], List[bytes], Tuple[str, bytes]]], + ): """Builds form parameters. :param files: File parameters. @@ -551,6 +554,12 @@ def files_parameters(self, files: Dict[str, Union[str, bytes]]): elif isinstance(v, bytes): filename = k filedata = v + elif isinstance(v, tuple): + filename, filedata = v + elif isinstance(v, list): + for file_param in v: + params.extend(self.files_parameters({k: file_param})) + continue else: raise ValueError("Unsupported file value") mimetype = ( diff --git a/python/chris_oag/configuration.py b/python/chris_oag/configuration.py index f6bf4cf..ea5c066 100644 --- a/python/chris_oag/configuration.py +++ b/python/chris_oag/configuration.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -454,8 +454,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 0.0.0+unknown\n"\ - "SDK Package Version: 0.0.1a4".\ + "Version of the API: ${GITHUB_REF_NAME:1}\n"\ + "SDK Package Version: 0.1.0b1".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/python/chris_oag/exceptions.py b/python/chris_oag/exceptions.py index 877c37b..f359e00 100644 --- a/python/chris_oag/exceptions.py +++ b/python/chris_oag/exceptions.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/__init__.py b/python/chris_oag/models/__init__.py index 6d6f3c3..b8b7f70 100644 --- a/python/chris_oag/models/__init__.py +++ b/python/chris_oag/models/__init__.py @@ -6,7 +6,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/auth_token.py b/python/chris_oag/models/auth_token.py index 2d4d964..e7831dd 100644 --- a/python/chris_oag/models/auth_token.py +++ b/python/chris_oag/models/auth_token.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/auth_token_request.py b/python/chris_oag/models/auth_token_request.py index 0601365..5bd0123 100644 --- a/python/chris_oag/models/auth_token_request.py +++ b/python/chris_oag/models/auth_token_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/blank_enum.py b/python/chris_oag/models/blank_enum.py index 68c25e5..227e88c 100644 --- a/python/chris_oag/models/blank_enum.py +++ b/python/chris_oag/models/blank_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/bool_parameter.py b/python/chris_oag/models/bool_parameter.py index 6c794b1..d813a49 100644 --- a/python/chris_oag/models/bool_parameter.py +++ b/python/chris_oag/models/bool_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/chris_instance.py b/python/chris_oag/models/chris_instance.py index 47c0d5b..3081f56 100644 --- a/python/chris_oag/models/chris_instance.py +++ b/python/chris_oag/models/chris_instance.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/comment.py b/python/chris_oag/models/comment.py index 66cd78f..86d514d 100644 --- a/python/chris_oag/models/comment.py +++ b/python/chris_oag/models/comment.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/comment_request.py b/python/chris_oag/models/comment_request.py index a099944..4fd54d1 100644 --- a/python/chris_oag/models/comment_request.py +++ b/python/chris_oag/models/comment_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/compute_resource.py b/python/chris_oag/models/compute_resource.py index 8dff590..84b1874 100644 --- a/python/chris_oag/models/compute_resource.py +++ b/python/chris_oag/models/compute_resource.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/compute_resource_request.py b/python/chris_oag/models/compute_resource_request.py index 1dac13a..0793431 100644 --- a/python/chris_oag/models/compute_resource_request.py +++ b/python/chris_oag/models/compute_resource_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/default_piping_bool_parameter.py b/python/chris_oag/models/default_piping_bool_parameter.py index 38b85f8..743bfff 100644 --- a/python/chris_oag/models/default_piping_bool_parameter.py +++ b/python/chris_oag/models/default_piping_bool_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/default_piping_bool_parameter_request.py b/python/chris_oag/models/default_piping_bool_parameter_request.py index b459e66..b337192 100644 --- a/python/chris_oag/models/default_piping_bool_parameter_request.py +++ b/python/chris_oag/models/default_piping_bool_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/default_piping_float_parameter.py b/python/chris_oag/models/default_piping_float_parameter.py index 99ce88f..86a09ea 100644 --- a/python/chris_oag/models/default_piping_float_parameter.py +++ b/python/chris_oag/models/default_piping_float_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/default_piping_float_parameter_request.py b/python/chris_oag/models/default_piping_float_parameter_request.py index fd40f13..91b9682 100644 --- a/python/chris_oag/models/default_piping_float_parameter_request.py +++ b/python/chris_oag/models/default_piping_float_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/default_piping_int_parameter.py b/python/chris_oag/models/default_piping_int_parameter.py index aa78ca7..f01f553 100644 --- a/python/chris_oag/models/default_piping_int_parameter.py +++ b/python/chris_oag/models/default_piping_int_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/default_piping_int_parameter_request.py b/python/chris_oag/models/default_piping_int_parameter_request.py index 4b0c545..833daaa 100644 --- a/python/chris_oag/models/default_piping_int_parameter_request.py +++ b/python/chris_oag/models/default_piping_int_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/default_piping_str_parameter.py b/python/chris_oag/models/default_piping_str_parameter.py index ab1dbca..eda346b 100644 --- a/python/chris_oag/models/default_piping_str_parameter.py +++ b/python/chris_oag/models/default_piping_str_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/default_piping_str_parameter_request.py b/python/chris_oag/models/default_piping_str_parameter_request.py index 798bdd8..8a769b7 100644 --- a/python/chris_oag/models/default_piping_str_parameter_request.py +++ b/python/chris_oag/models/default_piping_str_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/feed.py b/python/chris_oag/models/feed.py index 61315be..7d48457 100644 --- a/python/chris_oag/models/feed.py +++ b/python/chris_oag/models/feed.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/feed_group_permission.py b/python/chris_oag/models/feed_group_permission.py index 98a5617..acca782 100644 --- a/python/chris_oag/models/feed_group_permission.py +++ b/python/chris_oag/models/feed_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/feed_group_permission_request.py b/python/chris_oag/models/feed_group_permission_request.py index 78e5433..4f490f4 100644 --- a/python/chris_oag/models/feed_group_permission_request.py +++ b/python/chris_oag/models/feed_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/feed_request.py b/python/chris_oag/models/feed_request.py index 42aebb1..c9f9488 100644 --- a/python/chris_oag/models/feed_request.py +++ b/python/chris_oag/models/feed_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/feed_user_permission.py b/python/chris_oag/models/feed_user_permission.py index 6eb7da0..2b5e313 100644 --- a/python/chris_oag/models/feed_user_permission.py +++ b/python/chris_oag/models/feed_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/feed_user_permission_request.py b/python/chris_oag/models/feed_user_permission_request.py index 86ff6ea..a7aa54f 100644 --- a/python/chris_oag/models/feed_user_permission_request.py +++ b/python/chris_oag/models/feed_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_file.py b/python/chris_oag/models/file_browser_file.py index 2c99154..a4000d6 100644 --- a/python/chris_oag/models/file_browser_file.py +++ b/python/chris_oag/models/file_browser_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_file_group_permission.py b/python/chris_oag/models/file_browser_file_group_permission.py index d955b77..a014e2e 100644 --- a/python/chris_oag/models/file_browser_file_group_permission.py +++ b/python/chris_oag/models/file_browser_file_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_file_group_permission_request.py b/python/chris_oag/models/file_browser_file_group_permission_request.py index 8de1b85..24ad09e 100644 --- a/python/chris_oag/models/file_browser_file_group_permission_request.py +++ b/python/chris_oag/models/file_browser_file_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_file_request.py b/python/chris_oag/models/file_browser_file_request.py index 849034c..4764b8f 100644 --- a/python/chris_oag/models/file_browser_file_request.py +++ b/python/chris_oag/models/file_browser_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictBytes, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -28,7 +28,7 @@ class FileBrowserFileRequest(BaseModel): """ FileBrowserFileRequest """ # noqa: E501 - fname: Optional[Union[StrictBytes, StrictStr]] = None + fname: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None public: Optional[StrictBool] = None new_file_path: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]] = None __properties: ClassVar[List[str]] = ["fname", "public", "new_file_path"] diff --git a/python/chris_oag/models/file_browser_file_user_permission.py b/python/chris_oag/models/file_browser_file_user_permission.py index b401561..630b9e7 100644 --- a/python/chris_oag/models/file_browser_file_user_permission.py +++ b/python/chris_oag/models/file_browser_file_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_file_user_permission_request.py b/python/chris_oag/models/file_browser_file_user_permission_request.py index ec9a9de..5038069 100644 --- a/python/chris_oag/models/file_browser_file_user_permission_request.py +++ b/python/chris_oag/models/file_browser_file_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_folder.py b/python/chris_oag/models/file_browser_folder.py index b822d9f..ba737ca 100644 --- a/python/chris_oag/models/file_browser_folder.py +++ b/python/chris_oag/models/file_browser_folder.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_folder_group_permission.py b/python/chris_oag/models/file_browser_folder_group_permission.py index b3bea8d..d6ae968 100644 --- a/python/chris_oag/models/file_browser_folder_group_permission.py +++ b/python/chris_oag/models/file_browser_folder_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_folder_group_permission_request.py b/python/chris_oag/models/file_browser_folder_group_permission_request.py index 3e954ef..913244b 100644 --- a/python/chris_oag/models/file_browser_folder_group_permission_request.py +++ b/python/chris_oag/models/file_browser_folder_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_folder_request.py b/python/chris_oag/models/file_browser_folder_request.py index 8dcd732..8fb0573 100644 --- a/python/chris_oag/models/file_browser_folder_request.py +++ b/python/chris_oag/models/file_browser_folder_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_folder_user_permission.py b/python/chris_oag/models/file_browser_folder_user_permission.py index ada67af..e624b2b 100644 --- a/python/chris_oag/models/file_browser_folder_user_permission.py +++ b/python/chris_oag/models/file_browser_folder_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_folder_user_permission_request.py b/python/chris_oag/models/file_browser_folder_user_permission_request.py index 2c484a9..18acce6 100644 --- a/python/chris_oag/models/file_browser_folder_user_permission_request.py +++ b/python/chris_oag/models/file_browser_folder_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_link_file.py b/python/chris_oag/models/file_browser_link_file.py index 14fa245..f7a6af1 100644 --- a/python/chris_oag/models/file_browser_link_file.py +++ b/python/chris_oag/models/file_browser_link_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_link_file_group_permission.py b/python/chris_oag/models/file_browser_link_file_group_permission.py index b7b32e7..7b5e103 100644 --- a/python/chris_oag/models/file_browser_link_file_group_permission.py +++ b/python/chris_oag/models/file_browser_link_file_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_link_file_group_permission_request.py b/python/chris_oag/models/file_browser_link_file_group_permission_request.py index cfcfb66..0d281b7 100644 --- a/python/chris_oag/models/file_browser_link_file_group_permission_request.py +++ b/python/chris_oag/models/file_browser_link_file_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_link_file_request.py b/python/chris_oag/models/file_browser_link_file_request.py index bd8c1c1..2a6ff3e 100644 --- a/python/chris_oag/models/file_browser_link_file_request.py +++ b/python/chris_oag/models/file_browser_link_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictBytes, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -29,7 +29,7 @@ class FileBrowserLinkFileRequest(BaseModel): FileBrowserLinkFileRequest """ # noqa: E501 path: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]] = None - fname: Optional[Union[StrictBytes, StrictStr]] = None + fname: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None public: Optional[StrictBool] = None new_link_file_path: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]] = None __properties: ClassVar[List[str]] = ["path", "fname", "public", "new_link_file_path"] diff --git a/python/chris_oag/models/file_browser_link_file_user_permission.py b/python/chris_oag/models/file_browser_link_file_user_permission.py index 87c8a34..e4fe1b5 100644 --- a/python/chris_oag/models/file_browser_link_file_user_permission.py +++ b/python/chris_oag/models/file_browser_link_file_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_browser_link_file_user_permission_request.py b/python/chris_oag/models/file_browser_link_file_user_permission_request.py index a6bb942..4643b6c 100644 --- a/python/chris_oag/models/file_browser_link_file_user_permission_request.py +++ b/python/chris_oag/models/file_browser_link_file_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_download_token.py b/python/chris_oag/models/file_download_token.py index 930613b..fd506aa 100644 --- a/python/chris_oag/models/file_download_token.py +++ b/python/chris_oag/models/file_download_token.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/file_download_token_request.py b/python/chris_oag/models/file_download_token_request.py index f44f675..33fa7d1 100644 --- a/python/chris_oag/models/file_download_token_request.py +++ b/python/chris_oag/models/file_download_token_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/float_parameter.py b/python/chris_oag/models/float_parameter.py index 6992dee..50edcf9 100644 --- a/python/chris_oag/models/float_parameter.py +++ b/python/chris_oag/models/float_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/ftype_enum.py b/python/chris_oag/models/ftype_enum.py index 7f82f4e..dca67d1 100644 --- a/python/chris_oag/models/ftype_enum.py +++ b/python/chris_oag/models/ftype_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/generic_default_piping_parameter.py b/python/chris_oag/models/generic_default_piping_parameter.py index ba4eb89..f2d7f08 100644 --- a/python/chris_oag/models/generic_default_piping_parameter.py +++ b/python/chris_oag/models/generic_default_piping_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/generic_default_piping_parameter_value.py b/python/chris_oag/models/generic_default_piping_parameter_value.py index 6d021ef..b06b3d3 100644 --- a/python/chris_oag/models/generic_default_piping_parameter_value.py +++ b/python/chris_oag/models/generic_default_piping_parameter_value.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/generic_parameter.py b/python/chris_oag/models/generic_parameter.py index fe1f80a..3ef9db9 100644 --- a/python/chris_oag/models/generic_parameter.py +++ b/python/chris_oag/models/generic_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/group.py b/python/chris_oag/models/group.py index a0eeacd..1c640a5 100644 --- a/python/chris_oag/models/group.py +++ b/python/chris_oag/models/group.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/group_request.py b/python/chris_oag/models/group_request.py index f4f4fce..2328f85 100644 --- a/python/chris_oag/models/group_request.py +++ b/python/chris_oag/models/group_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/group_user.py b/python/chris_oag/models/group_user.py index 43b7bac..9cfa789 100644 --- a/python/chris_oag/models/group_user.py +++ b/python/chris_oag/models/group_user.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/group_user_request.py b/python/chris_oag/models/group_user_request.py index d5836ec..4b4401f 100644 --- a/python/chris_oag/models/group_user_request.py +++ b/python/chris_oag/models/group_user_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/int_parameter.py b/python/chris_oag/models/int_parameter.py index 575470c..d45ac90 100644 --- a/python/chris_oag/models/int_parameter.py +++ b/python/chris_oag/models/int_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/note.py b/python/chris_oag/models/note.py index c7c7c38..153341b 100644 --- a/python/chris_oag/models/note.py +++ b/python/chris_oag/models/note.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/note_request.py b/python/chris_oag/models/note_request.py index e617c0a..22330a2 100644 --- a/python/chris_oag/models/note_request.py +++ b/python/chris_oag/models/note_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pacs_file.py b/python/chris_oag/models/pacs_file.py index 7af3231..d39f68d 100644 --- a/python/chris_oag/models/pacs_file.py +++ b/python/chris_oag/models/pacs_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pacs_series.py b/python/chris_oag/models/pacs_series.py index 7dbe9b2..27962ab 100644 --- a/python/chris_oag/models/pacs_series.py +++ b/python/chris_oag/models/pacs_series.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pacs_series_patient_sex.py b/python/chris_oag/models/pacs_series_patient_sex.py index d672518..46f3ab6 100644 --- a/python/chris_oag/models/pacs_series_patient_sex.py +++ b/python/chris_oag/models/pacs_series_patient_sex.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_comment_list.py b/python/chris_oag/models/paginated_comment_list.py index 5c7449e..28ce3cf 100644 --- a/python/chris_oag/models/paginated_comment_list.py +++ b/python/chris_oag/models/paginated_comment_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_compute_resource_list.py b/python/chris_oag/models/paginated_compute_resource_list.py index 8d5eaf2..99e9381 100644 --- a/python/chris_oag/models/paginated_compute_resource_list.py +++ b/python/chris_oag/models/paginated_compute_resource_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_feed_group_permission_list.py b/python/chris_oag/models/paginated_feed_group_permission_list.py index 974b140..1655015 100644 --- a/python/chris_oag/models/paginated_feed_group_permission_list.py +++ b/python/chris_oag/models/paginated_feed_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_feed_list.py b/python/chris_oag/models/paginated_feed_list.py index 385829d..713ec85 100644 --- a/python/chris_oag/models/paginated_feed_list.py +++ b/python/chris_oag/models/paginated_feed_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_feed_user_permission_list.py b/python/chris_oag/models/paginated_feed_user_permission_list.py index 4812a1d..6f5e7c9 100644 --- a/python/chris_oag/models/paginated_feed_user_permission_list.py +++ b/python/chris_oag/models/paginated_feed_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_file_group_permission_list.py b/python/chris_oag/models/paginated_file_browser_file_group_permission_list.py index fc0a61d..1d90d3b 100644 --- a/python/chris_oag/models/paginated_file_browser_file_group_permission_list.py +++ b/python/chris_oag/models/paginated_file_browser_file_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_file_list.py b/python/chris_oag/models/paginated_file_browser_file_list.py index 7343f2b..5b97cc2 100644 --- a/python/chris_oag/models/paginated_file_browser_file_list.py +++ b/python/chris_oag/models/paginated_file_browser_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_file_user_permission_list.py b/python/chris_oag/models/paginated_file_browser_file_user_permission_list.py index cbb0468..730b651 100644 --- a/python/chris_oag/models/paginated_file_browser_file_user_permission_list.py +++ b/python/chris_oag/models/paginated_file_browser_file_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_folder_group_permission_list.py b/python/chris_oag/models/paginated_file_browser_folder_group_permission_list.py index fbbbce2..6cdb467 100644 --- a/python/chris_oag/models/paginated_file_browser_folder_group_permission_list.py +++ b/python/chris_oag/models/paginated_file_browser_folder_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_folder_list.py b/python/chris_oag/models/paginated_file_browser_folder_list.py index 599c9bb..5d7ec03 100644 --- a/python/chris_oag/models/paginated_file_browser_folder_list.py +++ b/python/chris_oag/models/paginated_file_browser_folder_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_folder_user_permission_list.py b/python/chris_oag/models/paginated_file_browser_folder_user_permission_list.py index 6299475..40e7af3 100644 --- a/python/chris_oag/models/paginated_file_browser_folder_user_permission_list.py +++ b/python/chris_oag/models/paginated_file_browser_folder_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_link_file_group_permission_list.py b/python/chris_oag/models/paginated_file_browser_link_file_group_permission_list.py index 1e3be4b..e7ce644 100644 --- a/python/chris_oag/models/paginated_file_browser_link_file_group_permission_list.py +++ b/python/chris_oag/models/paginated_file_browser_link_file_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_link_file_list.py b/python/chris_oag/models/paginated_file_browser_link_file_list.py index 8581781..145cc27 100644 --- a/python/chris_oag/models/paginated_file_browser_link_file_list.py +++ b/python/chris_oag/models/paginated_file_browser_link_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_browser_link_file_user_permission_list.py b/python/chris_oag/models/paginated_file_browser_link_file_user_permission_list.py index 902d9bc..9ab69ea 100644 --- a/python/chris_oag/models/paginated_file_browser_link_file_user_permission_list.py +++ b/python/chris_oag/models/paginated_file_browser_link_file_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_file_download_token_list.py b/python/chris_oag/models/paginated_file_download_token_list.py index 3561a05..bb44963 100644 --- a/python/chris_oag/models/paginated_file_download_token_list.py +++ b/python/chris_oag/models/paginated_file_download_token_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_generic_default_piping_parameter_list.py b/python/chris_oag/models/paginated_generic_default_piping_parameter_list.py index 7310a65..3bdff97 100644 --- a/python/chris_oag/models/paginated_generic_default_piping_parameter_list.py +++ b/python/chris_oag/models/paginated_generic_default_piping_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_generic_parameter_list.py b/python/chris_oag/models/paginated_generic_parameter_list.py index 5871c78..1100a93 100644 --- a/python/chris_oag/models/paginated_generic_parameter_list.py +++ b/python/chris_oag/models/paginated_generic_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_group_list.py b/python/chris_oag/models/paginated_group_list.py index 04bf1b1..e41cb52 100644 --- a/python/chris_oag/models/paginated_group_list.py +++ b/python/chris_oag/models/paginated_group_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_group_user_list.py b/python/chris_oag/models/paginated_group_user_list.py index 3b768e0..230bd00 100644 --- a/python/chris_oag/models/paginated_group_user_list.py +++ b/python/chris_oag/models/paginated_group_user_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_pacs_file_list.py b/python/chris_oag/models/paginated_pacs_file_list.py index 34abb36..1b6eaa7 100644 --- a/python/chris_oag/models/paginated_pacs_file_list.py +++ b/python/chris_oag/models/paginated_pacs_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_pacs_series_list.py b/python/chris_oag/models/paginated_pacs_series_list.py index 61a8aee..08c12bd 100644 --- a/python/chris_oag/models/paginated_pacs_series_list.py +++ b/python/chris_oag/models/paginated_pacs_series_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_pipeline_list.py b/python/chris_oag/models/paginated_pipeline_list.py index 1b8e1cc..83f866f 100644 --- a/python/chris_oag/models/paginated_pipeline_list.py +++ b/python/chris_oag/models/paginated_pipeline_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_pipeline_source_file_list.py b/python/chris_oag/models/paginated_pipeline_source_file_list.py index 89fd4de..ca220cc 100644 --- a/python/chris_oag/models/paginated_pipeline_source_file_list.py +++ b/python/chris_oag/models/paginated_pipeline_source_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_plugin_admin_list.py b/python/chris_oag/models/paginated_plugin_admin_list.py index 40227d9..d6f3e10 100644 --- a/python/chris_oag/models/paginated_plugin_admin_list.py +++ b/python/chris_oag/models/paginated_plugin_admin_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_plugin_instance_list.py b/python/chris_oag/models/paginated_plugin_instance_list.py index 65cbe19..854596d 100644 --- a/python/chris_oag/models/paginated_plugin_instance_list.py +++ b/python/chris_oag/models/paginated_plugin_instance_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_plugin_instance_split_list.py b/python/chris_oag/models/paginated_plugin_instance_split_list.py index d783193..27e28f3 100644 --- a/python/chris_oag/models/paginated_plugin_instance_split_list.py +++ b/python/chris_oag/models/paginated_plugin_instance_split_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_plugin_list.py b/python/chris_oag/models/paginated_plugin_list.py index 81d6623..ac044e0 100644 --- a/python/chris_oag/models/paginated_plugin_list.py +++ b/python/chris_oag/models/paginated_plugin_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_plugin_meta_list.py b/python/chris_oag/models/paginated_plugin_meta_list.py index 1b43d8e..b3bbf2b 100644 --- a/python/chris_oag/models/paginated_plugin_meta_list.py +++ b/python/chris_oag/models/paginated_plugin_meta_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_plugin_parameter_list.py b/python/chris_oag/models/paginated_plugin_parameter_list.py index 55e5a03..503fa30 100644 --- a/python/chris_oag/models/paginated_plugin_parameter_list.py +++ b/python/chris_oag/models/paginated_plugin_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_plugin_piping_list.py b/python/chris_oag/models/paginated_plugin_piping_list.py index 868b3ba..27641dd 100644 --- a/python/chris_oag/models/paginated_plugin_piping_list.py +++ b/python/chris_oag/models/paginated_plugin_piping_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_tag_list.py b/python/chris_oag/models/paginated_tag_list.py index af1aacd..d660405 100644 --- a/python/chris_oag/models/paginated_tag_list.py +++ b/python/chris_oag/models/paginated_tag_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_tagging_list.py b/python/chris_oag/models/paginated_tagging_list.py index 9c08d43..b8c5559 100644 --- a/python/chris_oag/models/paginated_tagging_list.py +++ b/python/chris_oag/models/paginated_tagging_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_user_file_list.py b/python/chris_oag/models/paginated_user_file_list.py index 5342a1e..c161910 100644 --- a/python/chris_oag/models/paginated_user_file_list.py +++ b/python/chris_oag/models/paginated_user_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_user_list.py b/python/chris_oag/models/paginated_user_list.py index de99504..718afa3 100644 --- a/python/chris_oag/models/paginated_user_list.py +++ b/python/chris_oag/models/paginated_user_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/paginated_workflow_list.py b/python/chris_oag/models/paginated_workflow_list.py index 3266a23..6268646 100644 --- a/python/chris_oag/models/paginated_workflow_list.py +++ b/python/chris_oag/models/paginated_workflow_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/path_parameter.py b/python/chris_oag/models/path_parameter.py index 725b979..f78cb83 100644 --- a/python/chris_oag/models/path_parameter.py +++ b/python/chris_oag/models/path_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/patient_sex_enum.py b/python/chris_oag/models/patient_sex_enum.py index c92622e..abcc5a0 100644 --- a/python/chris_oag/models/patient_sex_enum.py +++ b/python/chris_oag/models/patient_sex_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/permission_enum.py b/python/chris_oag/models/permission_enum.py index 83097e5..4fea363 100644 --- a/python/chris_oag/models/permission_enum.py +++ b/python/chris_oag/models/permission_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pipeline.py b/python/chris_oag/models/pipeline.py index 5cdb315..1cb639c 100644 --- a/python/chris_oag/models/pipeline.py +++ b/python/chris_oag/models/pipeline.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pipeline_custom_json.py b/python/chris_oag/models/pipeline_custom_json.py index fc3d2d1..d781335 100644 --- a/python/chris_oag/models/pipeline_custom_json.py +++ b/python/chris_oag/models/pipeline_custom_json.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pipeline_request.py b/python/chris_oag/models/pipeline_request.py index 17396cf..e514aeb 100644 --- a/python/chris_oag/models/pipeline_request.py +++ b/python/chris_oag/models/pipeline_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pipeline_source_file.py b/python/chris_oag/models/pipeline_source_file.py index c064839..1ca4290 100644 --- a/python/chris_oag/models/pipeline_source_file.py +++ b/python/chris_oag/models/pipeline_source_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pipeline_source_file_ftype.py b/python/chris_oag/models/pipeline_source_file_ftype.py index 88cef0e..705df5a 100644 --- a/python/chris_oag/models/pipeline_source_file_ftype.py +++ b/python/chris_oag/models/pipeline_source_file_ftype.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/pipeline_source_file_request.py b/python/chris_oag/models/pipeline_source_file_request.py index 86f0849..fc3f385 100644 --- a/python/chris_oag/models/pipeline_source_file_request.py +++ b/python/chris_oag/models/pipeline_source_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictBytes, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -28,7 +28,7 @@ class PipelineSourceFileRequest(BaseModel): """ PipelineSourceFileRequest """ # noqa: E501 - fname: Union[StrictBytes, StrictStr] + fname: Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]] public: Optional[StrictBool] = None type: Optional[Annotated[str, Field(min_length=1, strict=True)]] = None __properties: ClassVar[List[str]] = ["fname", "public", "type"] diff --git a/python/chris_oag/models/plugin.py b/python/chris_oag/models/plugin.py index 2c1fa9f..9afae87 100644 --- a/python/chris_oag/models/plugin.py +++ b/python/chris_oag/models/plugin.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_admin.py b/python/chris_oag/models/plugin_admin.py index 8c6bccf..8cf4464 100644 --- a/python/chris_oag/models/plugin_admin.py +++ b/python/chris_oag/models/plugin_admin.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_admin_request.py b/python/chris_oag/models/plugin_admin_request.py index 6c316a4..719d375 100644 --- a/python/chris_oag/models/plugin_admin_request.py +++ b/python/chris_oag/models/plugin_admin_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBytes, StrictInt, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -42,7 +42,7 @@ class PluginAdminRequest(BaseModel): max_memory_limit: Optional[StrictInt] = None min_gpu_limit: Optional[Annotated[int, Field(le=2147483647, strict=True, ge=-2147483648)]] = None max_gpu_limit: Optional[Annotated[int, Field(le=2147483647, strict=True, ge=-2147483648)]] = None - fname: Optional[Union[StrictBytes, StrictStr]] = None + fname: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None plugin_store_url: Optional[Annotated[str, Field(min_length=1, strict=True)]] = None compute_names: Annotated[str, Field(min_length=1, strict=True, max_length=2000)] __properties: ClassVar[List[str]] = ["version", "dock_image", "description", "execshell", "selfpath", "selfexec", "min_number_of_workers", "max_number_of_workers", "min_cpu_limit", "max_cpu_limit", "min_memory_limit", "max_memory_limit", "min_gpu_limit", "max_gpu_limit", "fname", "plugin_store_url", "compute_names"] diff --git a/python/chris_oag/models/plugin_instance.py b/python/chris_oag/models/plugin_instance.py index a17e295..e3174ba 100644 --- a/python/chris_oag/models/plugin_instance.py +++ b/python/chris_oag/models/plugin_instance.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_instance_request.py b/python/chris_oag/models/plugin_instance_request.py index c924e1a..d40c75e 100644 --- a/python/chris_oag/models/plugin_instance_request.py +++ b/python/chris_oag/models/plugin_instance_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_instance_split.py b/python/chris_oag/models/plugin_instance_split.py index c8fbb4a..00bb7f2 100644 --- a/python/chris_oag/models/plugin_instance_split.py +++ b/python/chris_oag/models/plugin_instance_split.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_instance_split_request.py b/python/chris_oag/models/plugin_instance_split_request.py index 8d7c61a..b70ce36 100644 --- a/python/chris_oag/models/plugin_instance_split_request.py +++ b/python/chris_oag/models/plugin_instance_split_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_meta.py b/python/chris_oag/models/plugin_meta.py index 45df1f0..4a407b5 100644 --- a/python/chris_oag/models/plugin_meta.py +++ b/python/chris_oag/models/plugin_meta.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_parameter.py b/python/chris_oag/models/plugin_parameter.py index 10eba8a..cfc23a7 100644 --- a/python/chris_oag/models/plugin_parameter.py +++ b/python/chris_oag/models/plugin_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_parameter_default.py b/python/chris_oag/models/plugin_parameter_default.py index 27dccb6..566a629 100644 --- a/python/chris_oag/models/plugin_parameter_default.py +++ b/python/chris_oag/models/plugin_parameter_default.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_parameter_type.py b/python/chris_oag/models/plugin_parameter_type.py index db98145..784802c 100644 --- a/python/chris_oag/models/plugin_parameter_type.py +++ b/python/chris_oag/models/plugin_parameter_type.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_piping.py b/python/chris_oag/models/plugin_piping.py index 70f7334..020f817 100644 --- a/python/chris_oag/models/plugin_piping.py +++ b/python/chris_oag/models/plugin_piping.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/plugin_type.py b/python/chris_oag/models/plugin_type.py index efdad9d..62a6158 100644 --- a/python/chris_oag/models/plugin_type.py +++ b/python/chris_oag/models/plugin_type.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/status_enum.py b/python/chris_oag/models/status_enum.py index c3de54d..9805409 100644 --- a/python/chris_oag/models/status_enum.py +++ b/python/chris_oag/models/status_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/str_parameter.py b/python/chris_oag/models/str_parameter.py index 1256da4..b8ffa74 100644 --- a/python/chris_oag/models/str_parameter.py +++ b/python/chris_oag/models/str_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/tag.py b/python/chris_oag/models/tag.py index 29701ba..8e201f1 100644 --- a/python/chris_oag/models/tag.py +++ b/python/chris_oag/models/tag.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/tag_request.py b/python/chris_oag/models/tag_request.py index 1d7addd..7bc80f9 100644 --- a/python/chris_oag/models/tag_request.py +++ b/python/chris_oag/models/tag_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/tagging.py b/python/chris_oag/models/tagging.py index e02843e..492f9a5 100644 --- a/python/chris_oag/models/tagging.py +++ b/python/chris_oag/models/tagging.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/unextpath_parameter.py b/python/chris_oag/models/unextpath_parameter.py index 95b7433..b20d58e 100644 --- a/python/chris_oag/models/unextpath_parameter.py +++ b/python/chris_oag/models/unextpath_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/user.py b/python/chris_oag/models/user.py index da88fe0..c7d12c4 100644 --- a/python/chris_oag/models/user.py +++ b/python/chris_oag/models/user.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/user_file.py b/python/chris_oag/models/user_file.py index 19ed485..6d21c98 100644 --- a/python/chris_oag/models/user_file.py +++ b/python/chris_oag/models/user_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/user_file_request.py b/python/chris_oag/models/user_file_request.py index 8546f72..1a4fbbd 100644 --- a/python/chris_oag/models/user_file_request.py +++ b/python/chris_oag/models/user_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -19,7 +19,7 @@ import json from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictBytes, StrictStr -from typing import Any, ClassVar, Dict, List, Optional, Union +from typing import Any, ClassVar, Dict, List, Optional, Tuple, Union from typing_extensions import Annotated from typing import Optional, Set from typing_extensions import Self @@ -29,7 +29,7 @@ class UserFileRequest(BaseModel): UserFileRequest """ # noqa: E501 upload_path: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=1024)]] = None - fname: Optional[Union[StrictBytes, StrictStr]] = None + fname: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None public: Optional[StrictBool] = None __properties: ClassVar[List[str]] = ["upload_path", "fname", "public"] diff --git a/python/chris_oag/models/user_request.py b/python/chris_oag/models/user_request.py index 8256dfd..0f92558 100644 --- a/python/chris_oag/models/user_request.py +++ b/python/chris_oag/models/user_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/workflow.py b/python/chris_oag/models/workflow.py index 2e7e29a..706bac7 100644 --- a/python/chris_oag/models/workflow.py +++ b/python/chris_oag/models/workflow.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/models/workflow_request.py b/python/chris_oag/models/workflow_request.py index c9c63ba..1669a35 100644 --- a/python/chris_oag/models/workflow_request.py +++ b/python/chris_oag/models/workflow_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/chris_oag/rest.py b/python/chris_oag/rest.py index 2eed6e1..99098d8 100644 --- a/python/chris_oag/rest.py +++ b/python/chris_oag/rest.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -226,7 +226,7 @@ def request( headers=headers, preload_content=False ) - elif headers['Content-Type'] == 'text/plain' and isinstance(body, bool): + elif headers['Content-Type'].startswith('text/') and isinstance(body, bool): request_body = "true" if body else "false" r = self.pool_manager.request( method, diff --git a/python/git_push.sh b/python/git_push.sh index f53a75d..3d535cf 100644 --- a/python/git_push.sh +++ b/python/git_push.sh @@ -14,12 +14,12 @@ if [ "$git_host" = "" ]; then fi if [ "$git_user_id" = "" ]; then - git_user_id="GIT_USER_ID" + git_user_id="FNNDSC" echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id" fi if [ "$git_repo_id" = "" ]; then - git_repo_id="GIT_REPO_ID" + git_repo_id="openapi-clients" echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id" fi diff --git a/python/pyproject.toml b/python/pyproject.toml index f2ddd2d..73405f4 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,28 +1,29 @@ [tool.poetry] name = "chris_oag" -version = "0.0.1a4" +version = "0.1.0b1" description = "ChRIS Research Integration System: Ultron BackEnd (CUBE) API" authors = ["Fetal-Neonatal Neuroimaging Developmental Science Center "] license = "MIT" readme = "README.md" -repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" +repository = "https://github.com/FNNDSC/openapi-clients" keywords = ["OpenAPI", "OpenAPI-Generator", "ChRIS Research Integration System: Ultron BackEnd (CUBE) API"] include = ["chris_oag/py.typed"] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" -urllib3 = ">= 1.25.3" -python-dateutil = ">=2.8.2" -pydantic = ">=2" -typing-extensions = ">=4.7.1" +urllib3 = ">= 1.25.3 < 3.0.0" +python-dateutil = ">= 2.8.2" +pydantic = ">= 2" +typing-extensions = ">= 4.7.1" [tool.poetry.dev-dependencies] -pytest = ">=7.2.1" -tox = ">=3.9.0" -flake8 = ">=4.0.0" -types-python-dateutil = ">=2.8.19.14" -mypy = "1.4.1" +pytest = ">= 7.2.1" +pytest-cov = ">= 2.8.1" +tox = ">= 3.9.0" +flake8 = ">= 4.0.0" +types-python-dateutil = ">= 2.8.19.14" +mypy = ">= 1.5" [build-system] diff --git a/python/requirements.txt b/python/requirements.txt index cc85509..67f7f68 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,5 +1,4 @@ -python_dateutil >= 2.5.3 -setuptools >= 21.0.0 -urllib3 >= 1.25.3, < 2.1.0 +urllib3 >= 1.25.3, < 3.0.0 +python_dateutil >= 2.8.2 pydantic >= 2 typing-extensions >= 4.7.1 diff --git a/python/setup.py b/python/setup.py index 36705d6..52842c0 100644 --- a/python/setup.py +++ b/python/setup.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -22,11 +22,11 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "chris-oag" -VERSION = "0.0.1a4" -PYTHON_REQUIRES = ">=3.7" +VERSION = "0.1.0b1" +PYTHON_REQUIRES = ">= 3.8" REQUIRES = [ - "urllib3 >= 1.25.3, < 2.1.0", - "python-dateutil", + "urllib3 >= 1.25.3, < 3.0.0", + "python-dateutil >= 2.8.2", "pydantic >= 2", "typing-extensions >= 4.7.1", ] diff --git a/python/test-requirements.txt b/python/test-requirements.txt index 8e6d8cb..e98555c 100644 --- a/python/test-requirements.txt +++ b/python/test-requirements.txt @@ -1,5 +1,6 @@ -pytest~=7.1.3 -pytest-cov>=2.8.1 -pytest-randomly>=3.12.0 -mypy>=1.4.1 -types-python-dateutil>=2.8.19 +pytest >= 7.2.1 +pytest-cov >= 2.8.1 +tox >= 3.9.0 +flake8 >= 4.0.0 +types-python-dateutil >= 2.8.19.14 +mypy >= 1.5 diff --git a/python/test/test_auth_token.py b/python/test/test_auth_token.py index d83dac3..a31f4dd 100644 --- a/python/test/test_auth_token.py +++ b/python/test/test_auth_token.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_auth_token_api.py b/python/test/test_auth_token_api.py index 0810504..dccc82a 100644 --- a/python/test/test_auth_token_api.py +++ b/python/test/test_auth_token_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_auth_token_request.py b/python/test/test_auth_token_request.py index 4bc0acd..30e723a 100644 --- a/python/test/test_auth_token_request.py +++ b/python/test/test_auth_token_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_blank_enum.py b/python/test/test_blank_enum.py index b9034c1..dd107b4 100644 --- a/python/test/test_blank_enum.py +++ b/python/test/test_blank_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_bool_parameter.py b/python/test/test_bool_parameter.py index e219204..022ae42 100644 --- a/python/test/test_bool_parameter.py +++ b/python/test/test_bool_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_chris_admin_api.py b/python/test/test_chris_admin_api.py index be9906e..661689d 100644 --- a/python/test/test_chris_admin_api.py +++ b/python/test/test_chris_admin_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_chris_instance.py b/python/test/test_chris_instance.py index e506509..8bd251a 100644 --- a/python/test/test_chris_instance.py +++ b/python/test/test_chris_instance.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_chrisinstance_api.py b/python/test/test_chrisinstance_api.py index bbcf104..bdfc6b1 100644 --- a/python/test/test_chrisinstance_api.py +++ b/python/test/test_chrisinstance_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_comment.py b/python/test/test_comment.py index 62f3c4b..588e27d 100644 --- a/python/test/test_comment.py +++ b/python/test/test_comment.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_comment_request.py b/python/test/test_comment_request.py index 6812a0a..df8de22 100644 --- a/python/test/test_comment_request.py +++ b/python/test/test_comment_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_comments_api.py b/python/test/test_comments_api.py index bde6789..165272a 100644 --- a/python/test/test_comments_api.py +++ b/python/test/test_comments_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_compute_resource.py b/python/test/test_compute_resource.py index d874dd6..8d91c03 100644 --- a/python/test/test_compute_resource.py +++ b/python/test/test_compute_resource.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_compute_resource_request.py b/python/test/test_compute_resource_request.py index eb7d633..61246f1 100644 --- a/python/test/test_compute_resource_request.py +++ b/python/test/test_compute_resource_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_computeresources_api.py b/python/test/test_computeresources_api.py index 4efb1a3..ae3dc1f 100644 --- a/python/test/test_computeresources_api.py +++ b/python/test/test_computeresources_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_api.py b/python/test/test_default_api.py index c29d049..7938306 100644 --- a/python/test/test_default_api.py +++ b/python/test/test_default_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_piping_bool_parameter.py b/python/test/test_default_piping_bool_parameter.py index 069be80..f8c809c 100644 --- a/python/test/test_default_piping_bool_parameter.py +++ b/python/test/test_default_piping_bool_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_piping_bool_parameter_request.py b/python/test/test_default_piping_bool_parameter_request.py index 4586e6f..061646e 100644 --- a/python/test/test_default_piping_bool_parameter_request.py +++ b/python/test/test_default_piping_bool_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_piping_float_parameter.py b/python/test/test_default_piping_float_parameter.py index fdab0f5..0635ca1 100644 --- a/python/test/test_default_piping_float_parameter.py +++ b/python/test/test_default_piping_float_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_piping_float_parameter_request.py b/python/test/test_default_piping_float_parameter_request.py index bd9c378..6ce9a7b 100644 --- a/python/test/test_default_piping_float_parameter_request.py +++ b/python/test/test_default_piping_float_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_piping_int_parameter.py b/python/test/test_default_piping_int_parameter.py index a854d4c..166022f 100644 --- a/python/test/test_default_piping_int_parameter.py +++ b/python/test/test_default_piping_int_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_piping_int_parameter_request.py b/python/test/test_default_piping_int_parameter_request.py index 8015f66..cc7722a 100644 --- a/python/test/test_default_piping_int_parameter_request.py +++ b/python/test/test_default_piping_int_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_piping_str_parameter.py b/python/test/test_default_piping_str_parameter.py index 012dab2..8fe45d6 100644 --- a/python/test/test_default_piping_str_parameter.py +++ b/python/test/test_default_piping_str_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_default_piping_str_parameter_request.py b/python/test/test_default_piping_str_parameter_request.py index 83550c0..5a5b55c 100644 --- a/python/test/test_default_piping_str_parameter_request.py +++ b/python/test/test_default_piping_str_parameter_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_downloadtokens_api.py b/python/test/test_downloadtokens_api.py index 64659ce..78d6dc5 100644 --- a/python/test/test_downloadtokens_api.py +++ b/python/test/test_downloadtokens_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_feed.py b/python/test/test_feed.py index 2010093..dccf966 100644 --- a/python/test/test_feed.py +++ b/python/test/test_feed.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_feed_group_permission.py b/python/test/test_feed_group_permission.py index b990e9c..cd3d1e1 100644 --- a/python/test/test_feed_group_permission.py +++ b/python/test/test_feed_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_feed_group_permission_request.py b/python/test/test_feed_group_permission_request.py index 150843d..645d10d 100644 --- a/python/test/test_feed_group_permission_request.py +++ b/python/test/test_feed_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_feed_request.py b/python/test/test_feed_request.py index 0447123..9764456 100644 --- a/python/test/test_feed_request.py +++ b/python/test/test_feed_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_feed_user_permission.py b/python/test/test_feed_user_permission.py index d96bfd0..2cae5ff 100644 --- a/python/test/test_feed_user_permission.py +++ b/python/test/test_feed_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_feed_user_permission_request.py b/python/test/test_feed_user_permission_request.py index 634dd5d..a5ac238 100644 --- a/python/test/test_feed_user_permission_request.py +++ b/python/test/test_feed_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_file.py b/python/test/test_file_browser_file.py index 3c042d4..e878c00 100644 --- a/python/test/test_file_browser_file.py +++ b/python/test/test_file_browser_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_file_group_permission.py b/python/test/test_file_browser_file_group_permission.py index 052fcef..e9f6059 100644 --- a/python/test/test_file_browser_file_group_permission.py +++ b/python/test/test_file_browser_file_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_file_group_permission_request.py b/python/test/test_file_browser_file_group_permission_request.py index 32213ae..4f880ee 100644 --- a/python/test/test_file_browser_file_group_permission_request.py +++ b/python/test/test_file_browser_file_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_file_request.py b/python/test/test_file_browser_file_request.py index 226fedb..6ea19b7 100644 --- a/python/test/test_file_browser_file_request.py +++ b/python/test/test_file_browser_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_file_user_permission.py b/python/test/test_file_browser_file_user_permission.py index 55366c5..2652eef 100644 --- a/python/test/test_file_browser_file_user_permission.py +++ b/python/test/test_file_browser_file_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_file_user_permission_request.py b/python/test/test_file_browser_file_user_permission_request.py index b62984f..fe3bd07 100644 --- a/python/test/test_file_browser_file_user_permission_request.py +++ b/python/test/test_file_browser_file_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_folder.py b/python/test/test_file_browser_folder.py index f29a87b..6cf1bd2 100644 --- a/python/test/test_file_browser_folder.py +++ b/python/test/test_file_browser_folder.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_folder_group_permission.py b/python/test/test_file_browser_folder_group_permission.py index fa6b8fd..93dce2c 100644 --- a/python/test/test_file_browser_folder_group_permission.py +++ b/python/test/test_file_browser_folder_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_folder_group_permission_request.py b/python/test/test_file_browser_folder_group_permission_request.py index 53f3481..fe380a4 100644 --- a/python/test/test_file_browser_folder_group_permission_request.py +++ b/python/test/test_file_browser_folder_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_folder_request.py b/python/test/test_file_browser_folder_request.py index 1226636..460148a 100644 --- a/python/test/test_file_browser_folder_request.py +++ b/python/test/test_file_browser_folder_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_folder_user_permission.py b/python/test/test_file_browser_folder_user_permission.py index 50e0837..8e7abe3 100644 --- a/python/test/test_file_browser_folder_user_permission.py +++ b/python/test/test_file_browser_folder_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_folder_user_permission_request.py b/python/test/test_file_browser_folder_user_permission_request.py index 94ca2a1..e146b0f 100644 --- a/python/test/test_file_browser_folder_user_permission_request.py +++ b/python/test/test_file_browser_folder_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_link_file.py b/python/test/test_file_browser_link_file.py index 3227d9a..1dfd093 100644 --- a/python/test/test_file_browser_link_file.py +++ b/python/test/test_file_browser_link_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_link_file_group_permission.py b/python/test/test_file_browser_link_file_group_permission.py index 68dd1ad..984b054 100644 --- a/python/test/test_file_browser_link_file_group_permission.py +++ b/python/test/test_file_browser_link_file_group_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_link_file_group_permission_request.py b/python/test/test_file_browser_link_file_group_permission_request.py index aeef2fb..4f5d24d 100644 --- a/python/test/test_file_browser_link_file_group_permission_request.py +++ b/python/test/test_file_browser_link_file_group_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_link_file_request.py b/python/test/test_file_browser_link_file_request.py index 40c6557..de213e8 100644 --- a/python/test/test_file_browser_link_file_request.py +++ b/python/test/test_file_browser_link_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_link_file_user_permission.py b/python/test/test_file_browser_link_file_user_permission.py index 42be493..cd58395 100644 --- a/python/test/test_file_browser_link_file_user_permission.py +++ b/python/test/test_file_browser_link_file_user_permission.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_browser_link_file_user_permission_request.py b/python/test/test_file_browser_link_file_user_permission_request.py index d5a8c47..1092dd8 100644 --- a/python/test/test_file_browser_link_file_user_permission_request.py +++ b/python/test/test_file_browser_link_file_user_permission_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_download_token.py b/python/test/test_file_download_token.py index 9551e86..c924990 100644 --- a/python/test/test_file_download_token.py +++ b/python/test/test_file_download_token.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_file_download_token_request.py b/python/test/test_file_download_token_request.py index 108ef00..50cd690 100644 --- a/python/test/test_file_download_token_request.py +++ b/python/test/test_file_download_token_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_filebrowser_api.py b/python/test/test_filebrowser_api.py index 5050ec7..757f0f3 100644 --- a/python/test/test_filebrowser_api.py +++ b/python/test/test_filebrowser_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_float_parameter.py b/python/test/test_float_parameter.py index fe3f086..9ddd30b 100644 --- a/python/test/test_float_parameter.py +++ b/python/test/test_float_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_ftype_enum.py b/python/test/test_ftype_enum.py index b40c6d9..c8aa12b 100644 --- a/python/test/test_ftype_enum.py +++ b/python/test/test_ftype_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_generic_default_piping_parameter.py b/python/test/test_generic_default_piping_parameter.py index b669e8a..ca33293 100644 --- a/python/test/test_generic_default_piping_parameter.py +++ b/python/test/test_generic_default_piping_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_generic_default_piping_parameter_value.py b/python/test/test_generic_default_piping_parameter_value.py index 02c9cff..188992e 100644 --- a/python/test/test_generic_default_piping_parameter_value.py +++ b/python/test/test_generic_default_piping_parameter_value.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_generic_parameter.py b/python/test/test_generic_parameter.py index dcec6eb..5ce8dab 100644 --- a/python/test/test_generic_parameter.py +++ b/python/test/test_generic_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_group.py b/python/test/test_group.py index 1624e0b..5174daf 100644 --- a/python/test/test_group.py +++ b/python/test/test_group.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_group_request.py b/python/test/test_group_request.py index 5df1856..6639616 100644 --- a/python/test/test_group_request.py +++ b/python/test/test_group_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_group_user.py b/python/test/test_group_user.py index c0ec494..24e4ad8 100644 --- a/python/test/test_group_user.py +++ b/python/test/test_group_user.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_group_user_request.py b/python/test/test_group_user_request.py index 561c5a4..fb4aeec 100644 --- a/python/test/test_group_user_request.py +++ b/python/test/test_group_user_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_grouppermissions_api.py b/python/test/test_grouppermissions_api.py index 92bca10..c5f432e 100644 --- a/python/test/test_grouppermissions_api.py +++ b/python/test/test_grouppermissions_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_groups_api.py b/python/test/test_groups_api.py index 6c5b269..71ae173 100644 --- a/python/test/test_groups_api.py +++ b/python/test/test_groups_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_int_parameter.py b/python/test/test_int_parameter.py index 1322155..5d74dc6 100644 --- a/python/test/test_int_parameter.py +++ b/python/test/test_int_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_note.py b/python/test/test_note.py index f0c8c37..080baf4 100644 --- a/python/test/test_note.py +++ b/python/test/test_note.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_note_api.py b/python/test/test_note_api.py index 72cdb78..f2d4662 100644 --- a/python/test/test_note_api.py +++ b/python/test/test_note_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_note_request.py b/python/test/test_note_request.py index 42c0928..380b49a 100644 --- a/python/test/test_note_request.py +++ b/python/test/test_note_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pacs_api.py b/python/test/test_pacs_api.py index 7dd82f5..5a411ad 100644 --- a/python/test/test_pacs_api.py +++ b/python/test/test_pacs_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pacs_file.py b/python/test/test_pacs_file.py index 9adacfa..05f3c94 100644 --- a/python/test/test_pacs_file.py +++ b/python/test/test_pacs_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pacs_series.py b/python/test/test_pacs_series.py index 46455c6..4ab290b 100644 --- a/python/test/test_pacs_series.py +++ b/python/test/test_pacs_series.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pacs_series_patient_sex.py b/python/test/test_pacs_series_patient_sex.py index dbe2ae0..2541258 100644 --- a/python/test/test_pacs_series_patient_sex.py +++ b/python/test/test_pacs_series_patient_sex.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_comment_list.py b/python/test/test_paginated_comment_list.py index df9e87b..9cd44c9 100644 --- a/python/test/test_paginated_comment_list.py +++ b/python/test/test_paginated_comment_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_compute_resource_list.py b/python/test/test_paginated_compute_resource_list.py index a2a48d1..ecb1a6e 100644 --- a/python/test/test_paginated_compute_resource_list.py +++ b/python/test/test_paginated_compute_resource_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_feed_group_permission_list.py b/python/test/test_paginated_feed_group_permission_list.py index 7a5dc45..dd9f14b 100644 --- a/python/test/test_paginated_feed_group_permission_list.py +++ b/python/test/test_paginated_feed_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_feed_list.py b/python/test/test_paginated_feed_list.py index a1d185f..4e9431f 100644 --- a/python/test/test_paginated_feed_list.py +++ b/python/test/test_paginated_feed_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_feed_user_permission_list.py b/python/test/test_paginated_feed_user_permission_list.py index ed4563f..01a9b82 100644 --- a/python/test/test_paginated_feed_user_permission_list.py +++ b/python/test/test_paginated_feed_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_file_group_permission_list.py b/python/test/test_paginated_file_browser_file_group_permission_list.py index 9e5a147..ca23dfe 100644 --- a/python/test/test_paginated_file_browser_file_group_permission_list.py +++ b/python/test/test_paginated_file_browser_file_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_file_list.py b/python/test/test_paginated_file_browser_file_list.py index 4eecd50..82723d5 100644 --- a/python/test/test_paginated_file_browser_file_list.py +++ b/python/test/test_paginated_file_browser_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_file_user_permission_list.py b/python/test/test_paginated_file_browser_file_user_permission_list.py index 0349be9..42c86e4 100644 --- a/python/test/test_paginated_file_browser_file_user_permission_list.py +++ b/python/test/test_paginated_file_browser_file_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_folder_group_permission_list.py b/python/test/test_paginated_file_browser_folder_group_permission_list.py index 1ea4e0e..806af25 100644 --- a/python/test/test_paginated_file_browser_folder_group_permission_list.py +++ b/python/test/test_paginated_file_browser_folder_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_folder_list.py b/python/test/test_paginated_file_browser_folder_list.py index 3ab2d5e..8bd9b7f 100644 --- a/python/test/test_paginated_file_browser_folder_list.py +++ b/python/test/test_paginated_file_browser_folder_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_folder_user_permission_list.py b/python/test/test_paginated_file_browser_folder_user_permission_list.py index 7ed2d53..ce46617 100644 --- a/python/test/test_paginated_file_browser_folder_user_permission_list.py +++ b/python/test/test_paginated_file_browser_folder_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_link_file_group_permission_list.py b/python/test/test_paginated_file_browser_link_file_group_permission_list.py index e002c65..a31f849 100644 --- a/python/test/test_paginated_file_browser_link_file_group_permission_list.py +++ b/python/test/test_paginated_file_browser_link_file_group_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_link_file_list.py b/python/test/test_paginated_file_browser_link_file_list.py index 7868988..7cc7669 100644 --- a/python/test/test_paginated_file_browser_link_file_list.py +++ b/python/test/test_paginated_file_browser_link_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_browser_link_file_user_permission_list.py b/python/test/test_paginated_file_browser_link_file_user_permission_list.py index 5b709c6..8a268ed 100644 --- a/python/test/test_paginated_file_browser_link_file_user_permission_list.py +++ b/python/test/test_paginated_file_browser_link_file_user_permission_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_file_download_token_list.py b/python/test/test_paginated_file_download_token_list.py index 13fd600..1c0bcf6 100644 --- a/python/test/test_paginated_file_download_token_list.py +++ b/python/test/test_paginated_file_download_token_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_generic_default_piping_parameter_list.py b/python/test/test_paginated_generic_default_piping_parameter_list.py index 258fd87..c5078d2 100644 --- a/python/test/test_paginated_generic_default_piping_parameter_list.py +++ b/python/test/test_paginated_generic_default_piping_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_generic_parameter_list.py b/python/test/test_paginated_generic_parameter_list.py index 2d6fc08..cdff178 100644 --- a/python/test/test_paginated_generic_parameter_list.py +++ b/python/test/test_paginated_generic_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_group_list.py b/python/test/test_paginated_group_list.py index 529fd54..6513d3c 100644 --- a/python/test/test_paginated_group_list.py +++ b/python/test/test_paginated_group_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_group_user_list.py b/python/test/test_paginated_group_user_list.py index 926014d..7983923 100644 --- a/python/test/test_paginated_group_user_list.py +++ b/python/test/test_paginated_group_user_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_pacs_file_list.py b/python/test/test_paginated_pacs_file_list.py index be80c38..0005321 100644 --- a/python/test/test_paginated_pacs_file_list.py +++ b/python/test/test_paginated_pacs_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_pacs_series_list.py b/python/test/test_paginated_pacs_series_list.py index c8b73c7..9880542 100644 --- a/python/test/test_paginated_pacs_series_list.py +++ b/python/test/test_paginated_pacs_series_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_pipeline_list.py b/python/test/test_paginated_pipeline_list.py index 7dd658f..3123777 100644 --- a/python/test/test_paginated_pipeline_list.py +++ b/python/test/test_paginated_pipeline_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_pipeline_source_file_list.py b/python/test/test_paginated_pipeline_source_file_list.py index c4d4ad9..97281c1 100644 --- a/python/test/test_paginated_pipeline_source_file_list.py +++ b/python/test/test_paginated_pipeline_source_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_plugin_admin_list.py b/python/test/test_paginated_plugin_admin_list.py index c6d4e23..17fdc64 100644 --- a/python/test/test_paginated_plugin_admin_list.py +++ b/python/test/test_paginated_plugin_admin_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_plugin_instance_list.py b/python/test/test_paginated_plugin_instance_list.py index 20c5a9d..27b1e86 100644 --- a/python/test/test_paginated_plugin_instance_list.py +++ b/python/test/test_paginated_plugin_instance_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_plugin_instance_split_list.py b/python/test/test_paginated_plugin_instance_split_list.py index b970ad5..83a7471 100644 --- a/python/test/test_paginated_plugin_instance_split_list.py +++ b/python/test/test_paginated_plugin_instance_split_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_plugin_list.py b/python/test/test_paginated_plugin_list.py index 4a5c88f..ed4abee 100644 --- a/python/test/test_paginated_plugin_list.py +++ b/python/test/test_paginated_plugin_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_plugin_meta_list.py b/python/test/test_paginated_plugin_meta_list.py index 6b4fb2c..2a82c4c 100644 --- a/python/test/test_paginated_plugin_meta_list.py +++ b/python/test/test_paginated_plugin_meta_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_plugin_parameter_list.py b/python/test/test_paginated_plugin_parameter_list.py index c09c142..645e4f2 100644 --- a/python/test/test_paginated_plugin_parameter_list.py +++ b/python/test/test_paginated_plugin_parameter_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_plugin_piping_list.py b/python/test/test_paginated_plugin_piping_list.py index 52c3937..3eed0b1 100644 --- a/python/test/test_paginated_plugin_piping_list.py +++ b/python/test/test_paginated_plugin_piping_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_tag_list.py b/python/test/test_paginated_tag_list.py index ad50df1..7394635 100644 --- a/python/test/test_paginated_tag_list.py +++ b/python/test/test_paginated_tag_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_tagging_list.py b/python/test/test_paginated_tagging_list.py index babaf90..3f33718 100644 --- a/python/test/test_paginated_tagging_list.py +++ b/python/test/test_paginated_tagging_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_user_file_list.py b/python/test/test_paginated_user_file_list.py index b14c42c..fb5aa23 100644 --- a/python/test/test_paginated_user_file_list.py +++ b/python/test/test_paginated_user_file_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_user_list.py b/python/test/test_paginated_user_list.py index 9bda811..82cd3e4 100644 --- a/python/test/test_paginated_user_list.py +++ b/python/test/test_paginated_user_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_paginated_workflow_list.py b/python/test/test_paginated_workflow_list.py index 82065a8..9bbfdd4 100644 --- a/python/test/test_paginated_workflow_list.py +++ b/python/test/test_paginated_workflow_list.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_path_parameter.py b/python/test/test_path_parameter.py index 1d13599..c134f5b 100644 --- a/python/test/test_path_parameter.py +++ b/python/test/test_path_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_patient_sex_enum.py b/python/test/test_patient_sex_enum.py index eb04e9e..48cbac0 100644 --- a/python/test/test_patient_sex_enum.py +++ b/python/test/test_patient_sex_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_permission_enum.py b/python/test/test_permission_enum.py index 6c17f4a..5e959b2 100644 --- a/python/test/test_permission_enum.py +++ b/python/test/test_permission_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pipeline.py b/python/test/test_pipeline.py index 09572d5..156b94c 100644 --- a/python/test/test_pipeline.py +++ b/python/test/test_pipeline.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pipeline_custom_json.py b/python/test/test_pipeline_custom_json.py index 458a398..d217c3b 100644 --- a/python/test/test_pipeline_custom_json.py +++ b/python/test/test_pipeline_custom_json.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pipeline_request.py b/python/test/test_pipeline_request.py index ba77cbe..8361743 100644 --- a/python/test/test_pipeline_request.py +++ b/python/test/test_pipeline_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pipeline_source_file.py b/python/test/test_pipeline_source_file.py index b262500..44d1e6f 100644 --- a/python/test/test_pipeline_source_file.py +++ b/python/test/test_pipeline_source_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pipeline_source_file_ftype.py b/python/test/test_pipeline_source_file_ftype.py index db8ab6f..5c7bd3f 100644 --- a/python/test/test_pipeline_source_file_ftype.py +++ b/python/test/test_pipeline_source_file_ftype.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pipeline_source_file_request.py b/python/test/test_pipeline_source_file_request.py index edd2cd6..4106e5f 100644 --- a/python/test/test_pipeline_source_file_request.py +++ b/python/test/test_pipeline_source_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_pipelines_api.py b/python/test/test_pipelines_api.py index d2931e0..c68c2b2 100644 --- a/python/test/test_pipelines_api.py +++ b/python/test/test_pipelines_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin.py b/python/test/test_plugin.py index 299bf93..f7707a4 100644 --- a/python/test/test_plugin.py +++ b/python/test/test_plugin.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_admin.py b/python/test/test_plugin_admin.py index 1cbee01..9b95032 100644 --- a/python/test/test_plugin_admin.py +++ b/python/test/test_plugin_admin.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_admin_request.py b/python/test/test_plugin_admin_request.py index b0bc7d3..f4e4868 100644 --- a/python/test/test_plugin_admin_request.py +++ b/python/test/test_plugin_admin_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_instance.py b/python/test/test_plugin_instance.py index 8d0367d..8a9d762 100644 --- a/python/test/test_plugin_instance.py +++ b/python/test/test_plugin_instance.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_instance_request.py b/python/test/test_plugin_instance_request.py index 2cb4902..7c7e161 100644 --- a/python/test/test_plugin_instance_request.py +++ b/python/test/test_plugin_instance_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_instance_split.py b/python/test/test_plugin_instance_split.py index 6274f80..4794c92 100644 --- a/python/test/test_plugin_instance_split.py +++ b/python/test/test_plugin_instance_split.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_instance_split_request.py b/python/test/test_plugin_instance_split_request.py index aa8d6a7..7961f03 100644 --- a/python/test/test_plugin_instance_split_request.py +++ b/python/test/test_plugin_instance_split_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_meta.py b/python/test/test_plugin_meta.py index 214eb1c..8a185e8 100644 --- a/python/test/test_plugin_meta.py +++ b/python/test/test_plugin_meta.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_parameter.py b/python/test/test_plugin_parameter.py index 5ea0d55..11c1490 100644 --- a/python/test/test_plugin_parameter.py +++ b/python/test/test_plugin_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_parameter_default.py b/python/test/test_plugin_parameter_default.py index 46b184b..d531ea4 100644 --- a/python/test/test_plugin_parameter_default.py +++ b/python/test/test_plugin_parameter_default.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_parameter_type.py b/python/test/test_plugin_parameter_type.py index ddb8128..3b636b9 100644 --- a/python/test/test_plugin_parameter_type.py +++ b/python/test/test_plugin_parameter_type.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_piping.py b/python/test/test_plugin_piping.py index 5cbf538..147f63f 100644 --- a/python/test/test_plugin_piping.py +++ b/python/test/test_plugin_piping.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugin_type.py b/python/test/test_plugin_type.py index e6fd324..a382aa4 100644 --- a/python/test/test_plugin_type.py +++ b/python/test/test_plugin_type.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugininstances_api.py b/python/test/test_plugininstances_api.py index 8cd9f00..62f49ae 100644 --- a/python/test/test_plugininstances_api.py +++ b/python/test/test_plugininstances_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_plugins_api.py b/python/test/test_plugins_api.py index 6921ec4..6c95ba5 100644 --- a/python/test/test_plugins_api.py +++ b/python/test/test_plugins_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_publicfeeds_api.py b/python/test/test_publicfeeds_api.py index f31b13b..8d5a011 100644 --- a/python/test/test_publicfeeds_api.py +++ b/python/test/test_publicfeeds_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_schema_api.py b/python/test/test_schema_api.py index 8ed36fc..5f2a358 100644 --- a/python/test/test_schema_api.py +++ b/python/test/test_schema_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_search_api.py b/python/test/test_search_api.py index bb93039..e17b08b 100644 --- a/python/test/test_search_api.py +++ b/python/test/test_search_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_status_enum.py b/python/test/test_status_enum.py index 233396c..b84c611 100644 --- a/python/test/test_status_enum.py +++ b/python/test/test_status_enum.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_str_parameter.py b/python/test/test_str_parameter.py index 560b97b..383a25c 100644 --- a/python/test/test_str_parameter.py +++ b/python/test/test_str_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_tag.py b/python/test/test_tag.py index 3338dbf..f7836da 100644 --- a/python/test/test_tag.py +++ b/python/test/test_tag.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_tag_request.py b/python/test/test_tag_request.py index 388ef1d..f19e792 100644 --- a/python/test/test_tag_request.py +++ b/python/test/test_tag_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_tagging.py b/python/test/test_tagging.py index ffa796a..9842bd6 100644 --- a/python/test/test_tagging.py +++ b/python/test/test_tagging.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_taggings_api.py b/python/test/test_taggings_api.py index 3af19f1..0efd071 100644 --- a/python/test/test_taggings_api.py +++ b/python/test/test_taggings_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_tags_api.py b/python/test/test_tags_api.py index 942d53e..8b84222 100644 --- a/python/test/test_tags_api.py +++ b/python/test/test_tags_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_unextpath_parameter.py b/python/test/test_unextpath_parameter.py index e327cdb..0be1aba 100644 --- a/python/test/test_unextpath_parameter.py +++ b/python/test/test_unextpath_parameter.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_user.py b/python/test/test_user.py index 5503e6f..072ed47 100644 --- a/python/test/test_user.py +++ b/python/test/test_user.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_user_file.py b/python/test/test_user_file.py index 510f90b..d0e94c8 100644 --- a/python/test/test_user_file.py +++ b/python/test/test_user_file.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_user_file_request.py b/python/test/test_user_file_request.py index 1a861ca..f2ea912 100644 --- a/python/test/test_user_file_request.py +++ b/python/test/test_user_file_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_user_request.py b/python/test/test_user_request.py index c4e2a0f..d8b5874 100644 --- a/python/test/test_user_request.py +++ b/python/test/test_user_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_userfiles_api.py b/python/test/test_userfiles_api.py index 6e98c20..23f32a7 100644 --- a/python/test/test_userfiles_api.py +++ b/python/test/test_userfiles_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_userpermissions_api.py b/python/test/test_userpermissions_api.py index fb30829..077f330 100644 --- a/python/test/test_userpermissions_api.py +++ b/python/test/test_userpermissions_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_users_api.py b/python/test/test_users_api.py index 9d9a4c0..2be746b 100644 --- a/python/test/test_users_api.py +++ b/python/test/test_users_api.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_workflow.py b/python/test/test_workflow.py index 7051b6d..4a4cb7e 100644 --- a/python/test/test_workflow.py +++ b/python/test/test_workflow.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/python/test/test_workflow_request.py b/python/test/test_workflow_request.py index f12db47..21c169c 100644 --- a/python/test/test_workflow_request.py +++ b/python/test/test_workflow_request.py @@ -5,7 +5,7 @@ The ChRIS Ultron BackEnd (CUBE) is the core backend API of ChRIS. It manages ChRIS users, plugins, pipelines, and the provenance of data analyses as ChRIS feeds. - The version of the OpenAPI document: 0.0.0+unknown + The version of the OpenAPI document: ${GITHUB_REF_NAME:1} Contact: dev@babymri.org Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/version.txt b/version.txt index 2c6630c..4ab2ff6 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.0.1-alpha.4 +0.1.0-beta.1