-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Endpoints refactor; Added OptionsExtensions (#231)
- Loading branch information
1 parent
09349d9
commit 852d7b9
Showing
17 changed files
with
254 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace TrueLayer.Auth | ||
{ | ||
internal static class AuthEndpoints | ||
{ | ||
internal const string Token = "connect/token"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace TrueLayer.Mandates; | ||
|
||
internal static class MandatesEndpoints | ||
{ | ||
internal static readonly string V3Mandates = new("/v3/mandates/"); | ||
internal static readonly string AuthorizationFlow = new("/authorization-flow"); | ||
internal static readonly string ProviderSelection = new("/authorization-flow/actions/provider-selection"); | ||
internal static readonly string Consent = new("/authorization-flow/actions/consent"); | ||
internal static readonly string Funds = new("/funds"); | ||
internal static readonly string Constraints = new("/constraints"); | ||
internal static readonly string Revoke = new("/revoke"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace TrueLayer.MerchantAccounts; | ||
|
||
internal static class MerchantAccountsEndpoints | ||
{ | ||
internal const string V3MerchantAccounts = "/v3/merchant-accounts"; | ||
internal const string Transactions = "/transactions"; | ||
} |
Oops, something went wrong.