Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.12.2b1 release #179

Merged
merged 3 commits into from
Jun 26, 2024
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
  •  
  •  
  •  
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
Generated by OpenAPI Generator (https://openapi-generator.tech)

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


__version__ = "0.12.2b0"
__version__ = "0.12.2b1"

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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
24 changes: 23 additions & 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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -853,9 +853,15 @@ async def get_connections(
Optional[StrictStr],
Field(description="Identifier of the associated Invitation Message"),
] = None,
limit: Annotated[
Optional[StrictInt], Field(description="Number of results to return")
] = None,
my_did: Annotated[
Optional[Annotated[str, Field(strict=True)]], Field(description="My DID")
] = None,
offset: Annotated[
Optional[StrictInt], Field(description="Offset for pagination")
] = None,
state: Annotated[
Optional[StrictStr], Field(description="Connection state")
] = None,
Expand Down Expand Up @@ -893,8 +899,12 @@ async def get_connections(
:type invitation_key: str
:param invitation_msg_id: Identifier of the associated Invitation Message
:type invitation_msg_id: str
:param limit: Number of results to return
:type limit: int
:param my_did: My DID
:type my_did: str
:param offset: Offset for pagination
:type offset: int
:param state: Connection state
:type state: str
:param their_did: Their DID
Expand All @@ -911,7 +921,9 @@ async def get_connections(
connection_protocol=connection_protocol,
invitation_key=invitation_key,
invitation_msg_id=invitation_msg_id,
limit=limit,
my_did=my_did,
offset=offset,
state=state,
their_did=their_did,
their_public_did=their_public_did,
Expand Down Expand Up @@ -940,7 +952,9 @@ def _get_connections_serialize(
connection_protocol,
invitation_key,
invitation_msg_id,
limit,
my_did,
offset,
state,
their_did,
their_public_did,
Expand Down Expand Up @@ -980,10 +994,18 @@ def _get_connections_serialize(

_query_params.append(("invitation_msg_id", invitation_msg_id))

if limit is not None:

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

if my_did is not None:

_query_params.append(("my_did", my_did))

if offset is not None:

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

if state is not None:

_query_params.append(("state", state))
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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/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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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/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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
24 changes: 23 additions & 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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -488,6 +488,12 @@ async def get_records(
connection_id: Annotated[
Optional[StrictStr], Field(description="Connection identifier")
] = None,
limit: Annotated[
Optional[StrictInt], Field(description="Number of results to return")
] = None,
offset: Annotated[
Optional[StrictInt], Field(description="Offset for pagination")
] = None,
role: Annotated[
Optional[StrictStr],
Field(description="Role assigned in credential exchange"),
Expand Down Expand Up @@ -515,6 +521,10 @@ async def get_records(

:param connection_id: Connection identifier
:type connection_id: str
:param limit: Number of results to return
:type limit: int
:param offset: Offset for pagination
:type offset: int
:param role: Role assigned in credential exchange
:type role: str
:param state: Credential exchange state
Expand All @@ -529,6 +539,8 @@ async def get_records(

_param = self._get_records_serialize(
connection_id=connection_id,
limit=limit,
offset=offset,
role=role,
state=state,
thread_id=thread_id,
Expand All @@ -553,6 +565,8 @@ async def get_records(
def _get_records_serialize(
self,
connection_id,
limit,
offset,
role,
state,
thread_id,
Expand All @@ -579,6 +593,14 @@ def _get_records_serialize(

_query_params.append(("connection_id", connection_id))

if limit is not None:

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

if offset is not None:

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

if role is not None:

_query_params.append(("role", role))
Expand Down
24 changes: 23 additions & 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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -464,6 +464,12 @@ async def get_records(
connection_id: Annotated[
Optional[StrictStr], Field(description="Connection identifier")
] = None,
limit: Annotated[
Optional[StrictInt], Field(description="Number of results to return")
] = None,
offset: Annotated[
Optional[StrictInt], Field(description="Offset for pagination")
] = None,
role: Annotated[
Optional[StrictStr],
Field(description="Role assigned in credential exchange"),
Expand Down Expand Up @@ -491,6 +497,10 @@ async def get_records(

:param connection_id: Connection identifier
:type connection_id: str
:param limit: Number of results to return
:type limit: int
:param offset: Offset for pagination
:type offset: int
:param role: Role assigned in credential exchange
:type role: str
:param state: Credential exchange state
Expand All @@ -502,6 +512,8 @@ async def get_records(

_param = self._get_records_serialize(
connection_id=connection_id,
limit=limit,
offset=offset,
role=role,
state=state,
thread_id=thread_id,
Expand All @@ -526,6 +538,8 @@ async def get_records(
def _get_records_serialize(
self,
connection_id,
limit,
offset,
role,
state,
thread_id,
Expand All @@ -552,6 +566,14 @@ def _get_records_serialize(

_query_params.append(("connection_id", connection_id))

if limit is not None:

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

if offset is not None:

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

if role is not None:

_query_params.append(("role", role))
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
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: v0.12.1
The version of the OpenAPI document: v0.12.2b1
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Loading