Skip to content

Commit 2c4191c

Browse files
committed
✨ 0.9.0: new field: replacement_id: Optional identifier used to manage credential replacement
1 parent f6287b2 commit 2c4191c

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

aries_cloudcontroller/model/v20_cred_ex_free.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class V20CredExFree(BaseModel):
2323
auto_remove: Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting) [Optional].
2424
comment: Human-readable comment [Optional].
2525
credential_preview: The credential_preview of this V20CredExFree [Optional].
26+
replacement_id: Optional identifier used to manage credential replacement [Optional].
2627
trace: Record trace information, based on agent configuration [Optional].
2728
verification_method: For ld-proofs. Verification method for signing. [Optional].
2829
"""
@@ -32,6 +33,7 @@ class V20CredExFree(BaseModel):
3233
auto_remove: Optional[bool] = None
3334
comment: Optional[str] = None
3435
credential_preview: Optional[V20CredPreview] = None
36+
replacement_id: Optional[str] = None
3537
trace: Optional[bool] = None
3638
verification_method: Optional[str] = None
3739

aries_cloudcontroller/model/v20_cred_offer_conn_free_request.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class V20CredOfferConnFreeRequest(BaseModel):
2323
auto_remove: Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting) [Optional].
2424
comment: Human-readable comment [Optional].
2525
credential_preview: The credential_preview of this V20CredOfferConnFreeRequest [Optional].
26+
replacement_id: Optional identifier used to manage credential replacement [Optional].
2627
trace: Record trace information, based on agent configuration [Optional].
2728
"""
2829

@@ -31,6 +32,7 @@ class V20CredOfferConnFreeRequest(BaseModel):
3132
auto_remove: Optional[bool] = None
3233
comment: Optional[str] = None
3334
credential_preview: Optional[V20CredPreview] = None
35+
replacement_id: Optional[str] = None
3436
trace: Optional[bool] = None
3537

3638
class Config:

aries_cloudcontroller/model/v20_cred_offer_request.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class V20CredOfferRequest(BaseModel):
2424
auto_remove: Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting) [Optional].
2525
comment: Human-readable comment [Optional].
2626
credential_preview: The credential_preview of this V20CredOfferRequest [Optional].
27+
replacement_id: Optional identifier used to manage credential replacement [Optional].
2728
trace: Record trace information, based on agent configuration [Optional].
2829
"""
2930

@@ -33,6 +34,7 @@ class V20CredOfferRequest(BaseModel):
3334
auto_remove: Optional[bool] = None
3435
comment: Optional[str] = None
3536
credential_preview: Optional[V20CredPreview] = None
37+
replacement_id: Optional[str] = None
3638
trace: Optional[bool] = None
3739

3840
class Config:

aries_cloudcontroller/model/v20_issue_cred_schema_core.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ class V20IssueCredSchemaCore(BaseModel):
2222
auto_remove: Whether to remove the credential exchange record on completion (overrides --preserve-exchange-records configuration setting) [Optional].
2323
comment: Human-readable comment [Optional].
2424
credential_preview: The credential_preview of this V20IssueCredSchemaCore [Optional].
25+
replacement_id: Optional identifier used to manage credential replacement [Optional].
2526
trace: Record trace information, based on agent configuration [Optional].
2627
"""
2728

2829
filter: V20CredFilter
2930
auto_remove: Optional[bool] = None
3031
comment: Optional[str] = None
3132
credential_preview: Optional[V20CredPreview] = None
33+
replacement_id: Optional[str] = None
3234
trace: Optional[bool] = None
3335

3436
class Config:

0 commit comments

Comments
 (0)