Skip to content

Commit

Permalink
✨ Upgrade to our 1.1.1b3 release (#219)
Browse files Browse the repository at this point in the history
* 1.1.1b3

* 🎨 descriptions

* 🎨 Update iterated variable names

* ✨ `in-memory` option removed from wallet_type

* ⚠️ Dropped query params from get_w3c_credentials

* 🎨 Deprecated count/start and implements limit/offset instead

* 📝 Updated openapi specs
  • Loading branch information
ff137 authored Nov 12, 2024
1 parent cc91894 commit 27a8473
Show file tree
Hide file tree
Showing 394 changed files with 686 additions and 589 deletions.
4 changes: 2 additions & 2 deletions aries_cloudcontroller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
The version of the OpenAPI document: v1.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501


__version__ = "1.1.1b0"
__version__ = "1.1.1b3"

from aries_cloudcontroller.acapy_client import AcaPyClient

Expand Down
2 changes: 1 addition & 1 deletion 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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/anoncreds_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/anoncreds_schemas_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/anoncreds_wallet_upgrade_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/basicmessage_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/connection_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/credential_definition_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
70 changes: 29 additions & 41 deletions aries_cloudcontroller/api/credentials_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down Expand Up @@ -439,11 +439,19 @@ async def get_records(
self,
count: Annotated[
Optional[Annotated[str, Field(strict=True)]],
Field(description="Maximum number to retrieve"),
Field(
description="Maximum number to retrieve (DEPRECATED - use limit instead)"
),
] = None,
limit: Annotated[
Optional[StrictInt], Field(description="Number of results to return")
] = None,
offset: Annotated[
Optional[StrictInt], Field(description="Offset for pagination")
] = None,
start: Annotated[
Optional[Annotated[str, Field(strict=True)]],
Field(description="Start index"),
Field(description="Start index (DEPRECATED - use offset instead)"),
] = None,
wql: Annotated[
Optional[Annotated[str, Field(strict=True)]],
Expand All @@ -464,9 +472,13 @@ async def get_records(
"""Fetch credentials from wallet
:param count: Maximum number to retrieve
:param count: Maximum number to retrieve (DEPRECATED - use limit instead)
:type count: str
:param start: Start index
:param limit: Number of results to return
:type limit: int
:param offset: Offset for pagination
:type offset: int
:param start: Start index (DEPRECATED - use offset instead)
:type start: str
:param wql: (JSON) WQL query
:type wql: str
Expand All @@ -475,6 +487,8 @@ async def get_records(

_param = self._get_records_serialize(
count=count,
limit=limit,
offset=offset,
start=start,
wql=wql,
_request_auth=_request_auth,
Expand All @@ -498,6 +512,8 @@ async def get_records(
def _get_records_serialize(
self,
count,
limit,
offset,
start,
wql,
_request_auth,
Expand Down Expand Up @@ -525,6 +541,14 @@ def _get_records_serialize(

_query_params.append(("count", count))

if limit is not None:

_query_params.append(("limit", limit))

if offset is not None:

_query_params.append(("offset", offset))

if start is not None:

_query_params.append(("start", start))
Expand Down Expand Up @@ -786,18 +810,6 @@ def _get_w3c_credential_serialize(
@validate_call
async def get_w3c_credentials(
self,
count: Annotated[
Optional[Annotated[str, Field(strict=True)]],
Field(description="Maximum number to retrieve"),
] = None,
start: Annotated[
Optional[Annotated[str, Field(strict=True)]],
Field(description="Start index"),
] = None,
wql: Annotated[
Optional[Annotated[str, Field(strict=True)]],
Field(description="(JSON) WQL query"),
] = None,
body: Optional[W3CCredentialsListRequest] = None,
_request_timeout: Union[
None,
Expand All @@ -814,21 +826,12 @@ async def get_w3c_credentials(
"""Fetch W3C credentials from wallet
:param count: Maximum number to retrieve
:type count: str
:param start: Start index
:type start: str
:param wql: (JSON) WQL query
:type wql: str
:param body:
:type body: W3CCredentialsListRequest
...
""" # noqa: E501

_param = self._get_w3c_credentials_serialize(
count=count,
start=start,
wql=wql,
body=body,
_request_auth=_request_auth,
_content_type=_content_type,
Expand All @@ -850,9 +853,6 @@ async def get_w3c_credentials(

def _get_w3c_credentials_serialize(
self,
count,
start,
wql,
body,
_request_auth,
_content_type,
Expand All @@ -875,18 +875,6 @@ def _get_w3c_credentials_serialize(

# process the path parameters
# process the query parameters
if count is not None:

_query_params.append(("count", count))

if start is not None:

_query_params.append(("start", start))

if wql is not None:

_query_params.append(("wql", wql))

# process the header parameters
# process the form parameters
# process the body parameter
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/default_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/did_exchange_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/did_rotate_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/discover_features_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/discover_features_v20_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/endorse_transaction_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/introduction_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/issue_credential_v10_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/issue_credential_v20_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/jsonld_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/ledger_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/mediation_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/multitenancy_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudcontroller/api/out_of_band_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.1.1b0
The version of the OpenAPI document: v1.1.1b3
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand Down
Loading

0 comments on commit 27a8473

Please sign in to comment.