Skip to content

Commit 3522325

Browse files
ci: regenerated with OpenAPI Doc 3.0.0, Speakeay CLI 1.84.0 (#62)
Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
1 parent c60c018 commit 3522325

9 files changed

+80
-18
lines changed

bank-feeds/CodatBankFeeds/AccountMapping.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,15 @@ public interface IAccountMappingSDK
2525
Task<GetBankAccountMappingResponse> GetAsync(GetBankAccountMappingRequest? request = null);
2626
}
2727

28+
/// <summary>
29+
/// Bank feed bank account mapping.
30+
/// </summary>
2831
public class AccountMappingSDK: IAccountMappingSDK
2932
{
3033
public SDKConfig Config { get; private set; }
3134
private const string _language = "csharp";
32-
private const string _sdkVersion = "0.7.0";
33-
private const string _sdkGenVersion = "2.109.3";
35+
private const string _sdkVersion = "0.8.0";
36+
private const string _sdkGenVersion = "2.113.0";
3437
private const string _openapiDocVersion = "3.0.0";
3538
private string _serverUrl = "";
3639
private ISpeakeasyHttpClient _defaultClient;

bank-feeds/CodatBankFeeds/CodatBankFeeds.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<IsPackable>true</IsPackable>
44
<PackageId>Codat.BankFeeds</PackageId>
5-
<Version>0.7.0</Version>
5+
<Version>0.8.0</Version>
66
<Authors>Codat</Authors>
77
<TargetFramework>net6.0</TargetFramework>
88
<Nullable>enable</Nullable>

bank-feeds/CodatBankFeeds/CodatBankFeedsSDK.cs

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,28 @@ public class SDKConfig
3030
{
3131
}
3232

33+
/// <summary>
34+
/// Bank Feeds API: Bank Feeds API enables your SMB users to set up bank feeds from accounts in your application to supported accounting platforms.
35+
///
36+
/// <remarks>
37+
///
38+
/// A bank feed is a connection between a source bank account in your application and a target bank account in a supported accounting package.
39+
///
40+
/// [Explore product](https://docs.codat.io/bank-feeds-api/overview) | [See OpenAPI spec](https://github.com/codatio/oas)
41+
///
42+
/// ---
43+
///
44+
/// ## Endpoints
45+
///
46+
/// | Endpoints | Description |
47+
/// | :- | :- |
48+
/// | Companies | Create and manage your SMB users' companies. |
49+
/// | Connections | Create new and manage existing data connections for a company. |
50+
/// | Source accounts | Provide and manage lists of source bank accounts. |
51+
/// | Transactions | Create new bank account transactions for a company's connections, and see previous operations. |
52+
/// | Account mapping | Extra functionality for building an account management UI |
53+
/// </remarks>
54+
/// </summary>
3355
public class CodatBankFeedsSDK: ICodatBankFeedsSDK
3456
{
3557
public SDKConfig Config { get; private set; }
@@ -39,16 +61,31 @@ public class CodatBankFeedsSDK: ICodatBankFeedsSDK
3961
};
4062

4163
private const string _language = "csharp";
42-
private const string _sdkVersion = "0.7.0";
43-
private const string _sdkGenVersion = "2.109.3";
64+
private const string _sdkVersion = "0.8.0";
65+
private const string _sdkGenVersion = "2.113.0";
4466
private const string _openapiDocVersion = "3.0.0";
4567
private string _serverUrl = "";
4668
private ISpeakeasyHttpClient _defaultClient;
4769
private ISpeakeasyHttpClient _securityClient;
70+
/// <summary>
71+
/// Bank feed bank account mapping.
72+
/// </summary>
4873
public IAccountMappingSDK AccountMapping { get; private set; }
74+
/// <summary>
75+
/// Create and manage your Codat companies.
76+
/// </summary>
4977
public ICompaniesSDK Companies { get; private set; }
78+
/// <summary>
79+
/// Manage your companies' data connections.
80+
/// </summary>
5081
public IConnectionsSDK Connections { get; private set; }
82+
/// <summary>
83+
/// Source accounts act as a bridge to bank accounts in accounting software.
84+
/// </summary>
5185
public ISourceAccountsSDK SourceAccounts { get; private set; }
86+
/// <summary>
87+
/// Transactions represent debits and credits from a source account.
88+
/// </summary>
5289
public ITransactionsSDK Transactions { get; private set; }
5390

5491
public CodatBankFeedsSDK(Security? security = null, string? serverUrl = null, ISpeakeasyHttpClient? client = null)

bank-feeds/CodatBankFeeds/Companies.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,15 @@ public interface ICompaniesSDK
2828
Task<UpdateCompanyResponse> UpdateAsync(UpdateCompanyRequest? request = null);
2929
}
3030

31+
/// <summary>
32+
/// Create and manage your Codat companies.
33+
/// </summary>
3134
public class CompaniesSDK: ICompaniesSDK
3235
{
3336
public SDKConfig Config { get; private set; }
3437
private const string _language = "csharp";
35-
private const string _sdkVersion = "0.7.0";
36-
private const string _sdkGenVersion = "2.109.3";
38+
private const string _sdkVersion = "0.8.0";
39+
private const string _sdkGenVersion = "2.113.0";
3740
private const string _openapiDocVersion = "3.0.0";
3841
private string _serverUrl = "";
3942
private ISpeakeasyHttpClient _defaultClient;

bank-feeds/CodatBankFeeds/Connections.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,15 @@ public interface IConnectionsSDK
2828
Task<UnlinkConnectionResponse> UnlinkAsync(UnlinkConnectionRequest? request = null);
2929
}
3030

31+
/// <summary>
32+
/// Manage your companies' data connections.
33+
/// </summary>
3134
public class ConnectionsSDK: IConnectionsSDK
3235
{
3336
public SDKConfig Config { get; private set; }
3437
private const string _language = "csharp";
35-
private const string _sdkVersion = "0.7.0";
36-
private const string _sdkGenVersion = "2.109.3";
38+
private const string _sdkVersion = "0.8.0";
39+
private const string _sdkGenVersion = "2.113.0";
3740
private const string _openapiDocVersion = "3.0.0";
3841
private string _serverUrl = "";
3942
private ISpeakeasyHttpClient _defaultClient;

bank-feeds/CodatBankFeeds/SourceAccounts.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,15 @@ public interface ISourceAccountsSDK
2929
Task<UpdateSourceAccountResponse> UpdateAsync(UpdateSourceAccountRequest? request = null);
3030
}
3131

32+
/// <summary>
33+
/// Source accounts act as a bridge to bank accounts in accounting software.
34+
/// </summary>
3235
public class SourceAccountsSDK: ISourceAccountsSDK
3336
{
3437
public SDKConfig Config { get; private set; }
3538
private const string _language = "csharp";
36-
private const string _sdkVersion = "0.7.0";
37-
private const string _sdkGenVersion = "2.109.3";
39+
private const string _sdkVersion = "0.8.0";
40+
private const string _sdkGenVersion = "2.113.0";
3841
private const string _openapiDocVersion = "3.0.0";
3942
private string _serverUrl = "";
4043
private ISpeakeasyHttpClient _defaultClient;

bank-feeds/CodatBankFeeds/Transactions.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,15 @@ public interface ITransactionsSDK
2626
Task<ListCreateOperationsResponse> ListCreateOperationsAsync(ListCreateOperationsRequest? request = null);
2727
}
2828

29+
/// <summary>
30+
/// Transactions represent debits and credits from a source account.
31+
/// </summary>
2932
public class TransactionsSDK: ITransactionsSDK
3033
{
3134
public SDKConfig Config { get; private set; }
3235
private const string _language = "csharp";
33-
private const string _sdkVersion = "0.7.0";
34-
private const string _sdkGenVersion = "2.109.3";
36+
private const string _sdkVersion = "0.8.0";
37+
private const string _sdkGenVersion = "2.113.0";
3538
private const string _openapiDocVersion = "3.0.0";
3639
private string _serverUrl = "";
3740
private ISpeakeasyHttpClient _defaultClient;

bank-feeds/RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,14 @@ Based on:
5858
### Generated
5959
- [csharp v0.7.0] bank-feeds
6060
### Releases
61-
- [NuGet v0.7.0] https://www.nuget.org/packages/Codat.BankFeeds/0.7.0 - bank-feeds
61+
- [NuGet v0.7.0] https://www.nuget.org/packages/Codat.BankFeeds/0.7.0 - bank-feeds
62+
63+
## 2023-09-15 11:34:45
64+
### Changes
65+
Based on:
66+
- OpenAPI Doc 3.0.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
67+
- Speakeasy CLI 1.84.0 (2.113.0) https://github.com/speakeasy-api/speakeasy
68+
### Generated
69+
- [csharp v0.8.0] bank-feeds
70+
### Releases
71+
- [NuGet v0.8.0] https://www.nuget.org/packages/Codat.BankFeeds/0.8.0 - bank-feeds

bank-feeds/gen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ configVersion: 1.0.0
22
management:
33
docChecksum: 7815cab00193c62a7c7b468e85607ca1
44
docVersion: 3.0.0
5-
speakeasyVersion: 1.83.2
6-
generationVersion: 2.109.3
5+
speakeasyVersion: 1.84.0
6+
generationVersion: 2.113.0
77
generation:
88
sdkClassName: Codat.BankFeeds
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
features:
1212
csharp:
13-
core: 2.85.6
13+
core: 2.85.7
1414
deprecations: 2.81.1
1515
examples: 2.81.2
1616
globalSecurity: 2.81.1
1717
globalServerURLs: 2.82.0
1818
nameOverrides: 2.81.1
1919
csharp:
20-
version: 0.7.0
20+
version: 0.8.0
2121
author: Codat
2222
description: Set up bank feeds from accounts in your application to supported accounting platforms.
2323
dotnetVersion: net6.0

0 commit comments

Comments
 (0)