From 57040cb83b4c056b75dea3aeb0a08abaa59f1f78 Mon Sep 17 00:00:00 2001 From: "gocardless-ci-robot[bot]" <123969075+gocardless-ci-robot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 09:45:34 +0000 Subject: [PATCH 1/2] Changes generated by af2ab890b8a11c50c6c27ad7e344e4575d63a22a This commit was automatically created from gocardless/client-library-templates@af2ab890b8a11c50c6c27ad7e344e4575d63a22a by the `push-files` action. Workflow run: https://github.com/gocardless/client-library-templates/actions/runs/33493648113 --- GoCardless/Resources/Export.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GoCardless/Resources/Export.cs b/GoCardless/Resources/Export.cs index f5423b9..961c45e 100644 --- a/GoCardless/Resources/Export.cs +++ b/GoCardless/Resources/Export.cs @@ -139,6 +139,10 @@ public enum ExportExportType [EnumMember(Value = "organisation_authorisations")] OrganisationAuthorisations, + /// `export_type` with a value of "app_connected_organisations" + [EnumMember(Value = "app_connected_organisations")] + AppConnectedOrganisations, + /// `export_type` with a value of "gc_invalid_authorisation_requests" [EnumMember(Value = "gc_invalid_authorisation_requests")] GcInvalidAuthorisationRequests, From c627e24764d8385edc22b6ade1dbc17375dedc2b Mon Sep 17 00:00:00 2001 From: "gocardless-ci-robot[bot]" <123969075+gocardless-ci-robot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 09:46:12 +0000 Subject: [PATCH 2/2] Changes generated by 07ea10020df2bedfb9c4a9fb73d807829295a7ef This commit was automatically created from gocardless/client-library-templates@07ea10020df2bedfb9c4a9fb73d807829295a7ef by the `push-files` action. Workflow run: https://github.com/gocardless/client-library-templates/actions/runs/33493698880 --- CHANGELOG.md | 8 ++++++++ GoCardless/GoCardless.csproj | 4 ++-- GoCardless/GoCardlessClient.cs | 4 ++-- README.md | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ef7586..d5fec97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## 9.9.0 (2026-09-01) + +### Features + +#### Add `app_connected_organisations` export type + +Exports can now be created with `resource_type: app_connected_organisations`, allowing connected merchant details to be exported. + ## 9.8.4 (2026-08-27) ### Fixes diff --git a/GoCardless/GoCardless.csproj b/GoCardless/GoCardless.csproj index f0218aa..b9dcf99 100644 --- a/GoCardless/GoCardless.csproj +++ b/GoCardless/GoCardless.csproj @@ -1,7 +1,7 @@  GoCardless - 9.8.4 + 9.9.0 GoCardless Ltd Client for the GoCardless API - a powerful, simple solution for the collection of recurring bank-to-bank payments false @@ -10,7 +10,7 @@ GoCardless Ltd gocardless payments rest api direct debit https://github.com/gocardless/gocardless-dotnet/blob/master/LICENSE.txt - https://github.com/gocardless/gocardless-dotnet/releases/tag/v9.8.4 + https://github.com/gocardless/gocardless-dotnet/releases/tag/v9.9.0 netstandard2.0;netstandard2.1;net461;net8.0 True true diff --git a/GoCardless/GoCardlessClient.cs b/GoCardless/GoCardlessClient.cs index 6a07ab4..2a6771f 100644 --- a/GoCardless/GoCardlessClient.cs +++ b/GoCardless/GoCardlessClient.cs @@ -412,11 +412,11 @@ RequestSettings requestSettings #endif var userAgentInformation = - $" gocardless-dotnet/9.8.4 {runtimeFrameworkInformation} {Helpers.CleanupOSDescriptionString(OSRunningOn)}"; + $" gocardless-dotnet/9.9.0 {runtimeFrameworkInformation} {Helpers.CleanupOSDescriptionString(OSRunningOn)}"; requestMessage.Headers.Add("User-Agent", userAgentInformation); requestMessage.Headers.Add("GoCardless-Version", "2015-07-06"); - requestMessage.Headers.Add("GoCardless-Client-Version", "9.8.4"); + requestMessage.Headers.Add("GoCardless-Client-Version", "9.9.0"); requestMessage.Headers.Add("GoCardless-Client-Library", "gocardless-dotnet"); requestMessage.Headers.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", _accessToken); diff --git a/README.md b/README.md index 36bcc1c..ea16468 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ For full details of the GoCardless API, see the [API docs](https://developer.goc To install `GoCardless`, run the following command in the [Package Manager Console](https://docs.microsoft.com/en-us/nuget/tools/package-manager-console) -`Install-Package GoCardless -Version 9.8.4` +`Install-Package GoCardless -Version 9.9.0` ## Usage