From a53c87dddce7d985fad3079cc64d7cfae7475898 Mon Sep 17 00:00:00 2001 From: Ariel Gentile Date: Mon, 8 Jul 2024 19:12:15 -0300 Subject: [PATCH] fix: add handshake_protocols to oob invitation Signed-off-by: Ariel Gentile --- oidc-controller/api/core/aries/out_of_band.py | 1 + 1 file changed, 1 insertion(+) diff --git a/oidc-controller/api/core/aries/out_of_band.py b/oidc-controller/api/core/aries/out_of_band.py index c24f3478..eb81b1c0 100644 --- a/oidc-controller/api/core/aries/out_of_band.py +++ b/oidc-controller/api/core/aries/out_of_band.py @@ -26,5 +26,6 @@ class OutOfBandMessage(BaseModel): alias="requests~attach" ) services: List[Union[OOBServiceDecorator, str]] = Field(alias="services") + handshake_protocols: List[str] = Field(alias="handshake_protocols", default=None) model_config = ConfigDict(populate_by_name=True)