From 43a2408bee64632da692aedc3cee9e8ea03a8f13 Mon Sep 17 00:00:00 2001 From: akwasi-cot <145698514+akwasi-cot@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:14:44 +0100 Subject: [PATCH 1/2] add documentation --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b9688902..37259e38 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,9 @@ Execute the `dotnet fsi GenerateSdkFromSourceUrl.fsx` command in the root source - Remove all examples for every response and request for all paths and operations. - These don't actually add any value to the SDK generation, but they do create a lot of noise in validation output due to the examples not matching the specification in a lot of cases. - Done in the `applyRequestModifications` → `removeOpenApiMediaTypeExamples`, `applyResponseModifications` → `removeOpenApiMediaTypeExamples` functions. +- Add the authorisation reversal path to path list manually + - This endpoint is currently undocumented. A method has been added to append it the paths present if it is not added by Marqeta + - Done in the `addAuthorizationReversalPath` function ## Custom serialization As alluded to in the [Gotchas and known issues](#gotchas-and-known-issues) section, we've had to add some custom deserializers to support our needs. From de951a7cb7d006ab992df9e6b129791f115ffaf8 Mon Sep 17 00:00:00 2001 From: akwasi-cot <145698514+akwasi-cot@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:15:52 +0100 Subject: [PATCH 2/2] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37259e38..9bb72b9a 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Execute the `dotnet fsi GenerateSdkFromSourceUrl.fsx` command in the root source - Remove all examples for every response and request for all paths and operations. - These don't actually add any value to the SDK generation, but they do create a lot of noise in validation output due to the examples not matching the specification in a lot of cases. - Done in the `applyRequestModifications` → `removeOpenApiMediaTypeExamples`, `applyResponseModifications` → `removeOpenApiMediaTypeExamples` functions. -- Add the authorisation reversal path to path list manually +- Add the authorization reversal path to path list manually - This endpoint is currently undocumented. A method has been added to append it the paths present if it is not added by Marqeta - Done in the `addAuthorizationReversalPath` function ## Custom serialization