Skip to content

Commit f1e4bed

Browse files
authored
0.12.2b1 release (#179)
* 🎨 comment to keep custom changes, as regenerating overwrites these * ✨ pagination support * version 0.12.2b1
1 parent 5b8a53d commit f1e4bed

File tree

389 files changed

+601
-768
lines changed

Some content is hidden

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

389 files changed

+601
-768
lines changed

aries_cloudcontroller/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
88
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
99
10-
The version of the OpenAPI document: v0.12.1
10+
The version of the OpenAPI document: v0.12.2b1
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
1414
""" # noqa: E501
1515

1616

17-
__version__ = "0.12.2b0"
17+
__version__ = "0.12.2b1"
1818

1919
from aries_cloudcontroller.acapy_client import AcaPyClient
2020

aries_cloudcontroller/api/action_menu_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/anoncreds_credential_definitions_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/anoncreds_revocation_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/anoncreds_schemas_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/anoncreds_wallet_upgrade_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/basicmessage_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/connection_api.py

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -853,9 +853,15 @@ async def get_connections(
853853
Optional[StrictStr],
854854
Field(description="Identifier of the associated Invitation Message"),
855855
] = None,
856+
limit: Annotated[
857+
Optional[StrictInt], Field(description="Number of results to return")
858+
] = None,
856859
my_did: Annotated[
857860
Optional[Annotated[str, Field(strict=True)]], Field(description="My DID")
858861
] = None,
862+
offset: Annotated[
863+
Optional[StrictInt], Field(description="Offset for pagination")
864+
] = None,
859865
state: Annotated[
860866
Optional[StrictStr], Field(description="Connection state")
861867
] = None,
@@ -893,8 +899,12 @@ async def get_connections(
893899
:type invitation_key: str
894900
:param invitation_msg_id: Identifier of the associated Invitation Message
895901
:type invitation_msg_id: str
902+
:param limit: Number of results to return
903+
:type limit: int
896904
:param my_did: My DID
897905
:type my_did: str
906+
:param offset: Offset for pagination
907+
:type offset: int
898908
:param state: Connection state
899909
:type state: str
900910
:param their_did: Their DID
@@ -911,7 +921,9 @@ async def get_connections(
911921
connection_protocol=connection_protocol,
912922
invitation_key=invitation_key,
913923
invitation_msg_id=invitation_msg_id,
924+
limit=limit,
914925
my_did=my_did,
926+
offset=offset,
915927
state=state,
916928
their_did=their_did,
917929
their_public_did=their_public_did,
@@ -940,7 +952,9 @@ def _get_connections_serialize(
940952
connection_protocol,
941953
invitation_key,
942954
invitation_msg_id,
955+
limit,
943956
my_did,
957+
offset,
944958
state,
945959
their_did,
946960
their_public_did,
@@ -980,10 +994,18 @@ def _get_connections_serialize(
980994

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

997+
if limit is not None:
998+
999+
_query_params.append(("limit", limit))
1000+
9831001
if my_did is not None:
9841002

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

1005+
if offset is not None:
1006+
1007+
_query_params.append(("offset", offset))
1008+
9871009
if state is not None:
9881010

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

aries_cloudcontroller/api/credential_definition_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

aries_cloudcontroller/api/credentials_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8-
The version of the OpenAPI document: v0.12.1
8+
The version of the OpenAPI document: v0.12.2b1
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)