From 7b32d724a2ee8be5b7cf3fad69d799429f3b821b Mon Sep 17 00:00:00 2001 From: ayeshLK Date: Sat, 15 Jun 2024 19:51:10 +0530 Subject: [PATCH] Update package spec --- docs/spec/spec.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/spec/spec.md b/docs/spec/spec.md index 9e99e157..f0e58d14 100644 --- a/docs/spec/spec.md +++ b/docs/spec/spec.md @@ -1,9 +1,9 @@ # Specification: Ballerina JWT Library -_Owners_: @ldclakmal @shafreenAnfar +_Authors_: @ldclakmal @shafreenAnfar @ayeshLK _Reviewers_: @shafreenAnfar _Created_: 2021/10/01 -_Updated_: 2022/02/17 +_Updated_: 2024/06/15 _Edition_: Swan Lake ## Introduction @@ -104,7 +104,7 @@ public type ValidatorSignatureConfig record {| cache:CacheConfig cacheConfig?; ClientConfiguration clientConfig = {}; |} jwksConfig?; - string certFile?; + string|crypto:PublicKey certFile?; record {| crypto:TrustStore trustStore; string certAlias; @@ -222,7 +222,7 @@ public type IssuerSignatureConfig record {| |}|record {| string keyFile; string keyPassword?; - |}|string config?; + |}|crypto:PrivateKey|string config?; |}; public class ClientSelfSignedJwtAuthProvider {