Skip to content

Commit 9c6054b

Browse files
authored
Release v1.2.0-20241205 (#224)
* 🎨 Set version to v1.2.0.post20241205 * 🎨 Version * 🎨 Updated description * ✨ Additional models and fields for anoncreds in Cred Filter and Pres Formats * 📝 Update specs * 🎨 Updated V20CredFilterAnoncreds fields * 📝 Update specs
1 parent b18600d commit 9c6054b

File tree

404 files changed

+1729
-459
lines changed

Some content is hidden

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

404 files changed

+1729
-459
lines changed

aries_cloudcontroller/__init__.py

Lines changed: 9 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: v1.1.1b3
10+
The version of the OpenAPI document: v1.2.0.post20241205
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
1414
""" # noqa: E501
1515

1616

17-
__version__ = "1.1.1b3"
17+
__version__ = "1.2.0-20241205"
1818

1919
from aries_cloudcontroller.acapy_client import AcaPyClient
2020

@@ -80,6 +80,12 @@
8080
AdminStatusLiveliness,
8181
AdminStatusReadiness,
8282
AMLRecord,
83+
AnoncredsPresentationReqAttrSpec,
84+
AnoncredsPresentationReqAttrSpecNonRevoked,
85+
AnoncredsPresentationReqPredSpec,
86+
AnoncredsPresentationReqPredSpecNonRevoked,
87+
AnoncredsPresentationRequest,
88+
AnoncredsPresentationRequestNonRevoked,
8389
AnonCredsSchema,
8490
AttachDecorator,
8591
AttachDecoratorData,
@@ -371,6 +377,7 @@
371377
V20CredExRecordLDProof,
372378
V20CredExRecordListResult,
373379
V20CredFilter,
380+
V20CredFilterAnoncreds,
374381
V20CredFilterIndy,
375382
V20CredFilterLDProof,
376383
V20CredFilterVCDI,

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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
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: 2 additions & 2 deletions
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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -51,7 +51,7 @@ async def create_credential_definition(
5151
_headers: Optional[Dict[StrictStr, Any]] = None,
5252
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5353
) -> CredDefResult:
54-
"""Create a credential definition on the connected ledger
54+
"""Create a credential definition on the connected datastore
5555
5656
5757
:param body:

aries_cloudcontroller/api/anoncreds_revocation_api.py

Lines changed: 3 additions & 3 deletions
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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -83,7 +83,7 @@ async def create_rev_reg_definition(
8383
_headers: Optional[Dict[StrictStr, Any]] = None,
8484
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
8585
) -> RevRegDefResult:
86-
"""Create and publish a registration revocation on the connected ledger
86+
"""Create and publish a registration revocation on the connected datastore
8787
8888
8989
:param body:
@@ -1032,7 +1032,7 @@ async def post_revocation_list(
10321032
_headers: Optional[Dict[StrictStr, Any]] = None,
10331033
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
10341034
) -> RevListResult:
1035-
"""Create and publish a revocation status list on the connected ledger
1035+
"""Create and publish a revocation status list on the connected datastore
10361036
10371037
10381038
:param body:

aries_cloudcontroller/api/anoncreds_schemas_api.py

Lines changed: 2 additions & 2 deletions
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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -51,7 +51,7 @@ async def create_schema(
5151
_headers: Optional[Dict[StrictStr, Any]] = None,
5252
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5353
) -> SchemaResult:
54-
"""Create a schema on the connected ledger
54+
"""Create a schema on the connected datastore
5555
5656
5757
:param body:

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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
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: 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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
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: v1.1.1b3
8+
The version of the OpenAPI document: v1.2.0.post20241205
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)