diff --git a/api/README.md b/api/README.md index ef79e0ee6a42ff5f72b2ac9e7425d05765b03eaa..5be7e5770d0e0cf136d9f722ee293504dd4190a0 100644 --- a/api/README.md +++ b/api/README.md @@ -10,7 +10,6 @@ classes that provide the basic functionality to build an sdk-client. ```mermaid classDiagram - class CryptoService{ + decryptString + decryptBytes @@ -53,13 +52,17 @@ classDiagram + validateMetadataHashValues } - - - class Client{ + class SenderClient{ ClientFactory } + + class SubscriberClient{ + ClientFactory + } + -FitCoClient ..> ClientFactory : Uses +SenderClient ..> ClientFactory : Uses +SubscriberClient ..> ClientFactory : Uses ClientFactory ..> Sender : Creates ClientFactory ..> Subscriber : Creates @@ -74,5 +77,4 @@ Subscriber ..> OAuthService : Uses Subscriber ..> CryptoService : Uses Subscriber ..> MetadataValidator : Uses - ```