Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
14 changes: 6 additions & 8 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,12 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install \
isort~=6.0.0 \
black~=25.1.0
- name: Check import style with isort
run: |
isort . --check --profile black --diff
- name: Check code style with Black
run: |
black . --check --diff
ruff~=0.12.10
- name: Check code style with Ruff
run: ruff format --check
- name: Check code lint rules with Ruff
run: ruff check

deploy:
# if: ${{ startsWith(github.ref, 'refs/tags/') && github.event.base_ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/python-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install \
isort~=6.0.0 \
black~=25.1.0
- name: Check import style with isort
run: |
isort . --check --profile black --diff
- name: Check code style with Black
run: |
black . --check --diff
ruff~=0.12.10
- name: Check code style with Ruff
run: ruff format --check
- name: Check code lint rules with Ruff
run: ruff check

deploy:
runs-on: ubuntu-latest
Expand Down
8 changes: 5 additions & 3 deletions aries_cloudcontroller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

The version of the OpenAPI document: v1.3.0.post20250507
The version of the OpenAPI document: v1.3.2rc0.post20250822
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501


__version__ = "1.3.0rc1-20250417"
__version__ = "1.3.2rc0-20250822"

from aries_cloudcontroller.acapy_client import AcaPyClient

Expand Down Expand Up @@ -150,6 +149,7 @@
CredRevRecordDetailsResultSchemaAnonCreds,
CredRevRecordResult,
CredRevRecordResultSchemaAnonCreds,
CustomDIDEndpointWithType,
DataIntegrityProofOptions,
DeactivateCheqdDIDRequest,
DeactivateCheqdDIDResponse,
Expand All @@ -158,6 +158,8 @@
DIDDocument,
DIDEndpoint,
DIDEndpointWithType,
DIDImport,
DIDImportResponse,
DIDList,
DIDResult,
DIDRotateRequestJSON,
Expand Down
7 changes: 1 addition & 6 deletions aries_cloudcontroller/api/action_menu_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

The version of the OpenAPI document: v1.3.0.post20250507
The version of the OpenAPI document: v1.3.2rc0.post20250822
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -86,7 +86,6 @@ def _close_active_menu_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -184,7 +183,6 @@ def _fetch_active_menu_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -287,7 +285,6 @@ def _perform_action_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -397,7 +394,6 @@ def _request_active_menu_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -500,7 +496,6 @@ def _send_menu_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

The version of the OpenAPI document: v1.3.0.post20250507
The version of the OpenAPI document: v1.3.2rc0.post20250822
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -87,7 +87,6 @@ def _create_credential_definition_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -197,7 +196,6 @@ def _get_credential_definition_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -319,7 +317,6 @@ def _get_credential_definitions_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand All @@ -336,19 +333,15 @@ def _get_credential_definitions_serialize(
# process the path parameters
# process the query parameters
if issuer_id is not None:

_query_params.append(("issuer_id", issuer_id))

if schema_id is not None:

_query_params.append(("schema_id", schema_id))

if schema_name is not None:

_query_params.append(("schema_name", schema_name))

if schema_version is not None:

_query_params.append(("schema_version", schema_version))

# process the header parameters
Expand Down
26 changes: 1 addition & 25 deletions aries_cloudcontroller/api/anon_creds_revocation_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

The version of the OpenAPI document: v1.3.0.post20250507
The version of the OpenAPI document: v1.3.2rc0.post20250822
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -119,7 +119,6 @@ def _create_rev_reg_definition_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -229,7 +228,6 @@ def _get_active_revocation_registry_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -346,7 +344,6 @@ def _get_cred_rev_record_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand All @@ -363,15 +360,12 @@ def _get_cred_rev_record_serialize(
# process the path parameters
# process the query parameters
if cred_ex_id is not None:

_query_params.append(("cred_ex_id", cred_ex_id))

if cred_rev_id is not None:

_query_params.append(("cred_rev_id", cred_rev_id))

if rev_reg_id is not None:

_query_params.append(("rev_reg_id", rev_reg_id))

# process the header parameters
Expand Down Expand Up @@ -456,7 +450,6 @@ def _get_rev_reg_issued_count_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -556,7 +549,6 @@ def _get_rev_reg_issued_details_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -656,7 +648,6 @@ def _get_rev_reg_issued_indy_recs_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -764,7 +755,6 @@ def _get_revocation_registries_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand All @@ -781,11 +771,9 @@ def _get_revocation_registries_serialize(
# process the path parameters
# process the query parameters
if cred_def_id is not None:

_query_params.append(("cred_def_id", cred_def_id))

if state is not None:

_query_params.append(("state", state))

# process the header parameters
Expand Down Expand Up @@ -870,7 +858,6 @@ def _get_revocation_registry_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -970,7 +957,6 @@ def _get_tails_file_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -1068,7 +1054,6 @@ def _post_revocation_list_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -1176,7 +1161,6 @@ def _publish_revocations_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -1284,7 +1268,6 @@ def _revoke_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -1394,7 +1377,6 @@ def _rotate_active_revocation_registry_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -1494,7 +1476,6 @@ def _set_active_registry_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down Expand Up @@ -1601,7 +1582,6 @@ def _set_rev_reg_state_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand All @@ -1620,7 +1600,6 @@ def _set_rev_reg_state_serialize(
_path_params["rev_reg_id"] = rev_reg_id
# process the query parameters
if state is not None:

_query_params.append(("state", state))

# process the header parameters
Expand Down Expand Up @@ -1713,7 +1692,6 @@ def _update_rev_reg_revoked_state_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand All @@ -1732,7 +1710,6 @@ def _update_rev_reg_revoked_state_serialize(
_path_params["rev_reg_id"] = rev_reg_id
# process the query parameters
if apply_ledger_update is not None:

_query_params.append(("apply_ledger_update", apply_ledger_update))

# process the header parameters
Expand Down Expand Up @@ -1817,7 +1794,6 @@ def _upload_tails_file_serialize(
_headers,
_host_index,
) -> RequestSerialized:

_host = None

_collection_formats: Dict[str, str] = {}
Expand Down
Loading