Skip to content

Commit

Permalink
Update cloudcontroller client using openapi-generator 7.1.0 (#123)
Browse files Browse the repository at this point in the history
* 🎨 add sed statements to automatically fix verify_request model

* add noqa comment to model docstrings

* update type in from_dict method

* update model_rebuild method

* add noqa comment to model docstrings

* updated using latest 7.1.0 openapi generator

* updated using latest 7.1.0 openapi generator, maintaining prior manual changes

* version bump

* ⬆️ upgrade `black`

* ⬆️ upgrade `pytest-mock`

* ⬆️ upgrade `urllib3`

* version bump

* ⬆️ upgrade pydantic

* ⬆️ upgrade aiohttp

* ✨ save api_key and tenant_jwt in AcaPyClient instance

* set version to 0.9.0-rev2
  • Loading branch information
ff137 authored Nov 20, 2023
1 parent 1ed6db2 commit ff063b2
Show file tree
Hide file tree
Showing 317 changed files with 35,224 additions and 17,076 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
python -m pip install --upgrade pip
pip install \
isort~=5.12.0 \
black~=23.9.1
black~=23.11.0
- name: Check import style with isort
run: |
isort . --check --profile black --diff
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
python -m pip install --upgrade pip
pip install \
isort~=5.12.0 \
black~=23.9.1
black~=23.11.0
- name: Check import style with isort
run: |
isort . --check --profile black --diff
Expand Down
3 changes: 3 additions & 0 deletions aries_cloudcontroller/acapy_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def __init__(
" to use the controller without authentication."
)

self.api_key = api_key
self.tenant_jwt = tenant_jwt

# We will configure an ApiClient instance and pass it to our API modules
self.configuration = Configuration(host=base_url)
self.api_client = ApiClient(self.configuration)
Expand Down
Loading

0 comments on commit ff063b2

Please sign in to comment.