Skip to content

Commit ff063b2

Browse files
authored
Update cloudcontroller client using openapi-generator 7.1.0 (#123)
* 🎨 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
1 parent 1ed6db2 commit ff063b2

File tree

317 files changed

+35224
-17076
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+35224
-17076
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
python -m pip install --upgrade pip
3838
pip install \
3939
isort~=5.12.0 \
40-
black~=23.9.1
40+
black~=23.11.0
4141
- name: Check import style with isort
4242
run: |
4343
isort . --check --profile black --diff

.github/workflows/python-test-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
python -m pip install --upgrade pip
4040
pip install \
4141
isort~=5.12.0 \
42-
black~=23.9.1
42+
black~=23.11.0
4343
- name: Check import style with isort
4444
run: |
4545
isort . --check --profile black --diff

aries_cloudcontroller/acapy_client.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ def __init__(
7777
" to use the controller without authentication."
7878
)
7979

80+
self.api_key = api_key
81+
self.tenant_jwt = tenant_jwt
82+
8083
# We will configure an ApiClient instance and pass it to our API modules
8184
self.configuration = Configuration(host=base_url)
8285
self.api_client = ApiClient(self.configuration)

0 commit comments

Comments
 (0)