Skip to content

Commit af29bcc

Browse files
ci: regenerated with OpenAPI Doc 3.0.0, Speakeay CLI 1.87.0 (#87)
Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
1 parent 974f696 commit af29bcc

File tree

636 files changed

+9293
-10453
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

636 files changed

+9293
-10453
lines changed

lending/CodatLending/AccountingBankData.cs

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,36 @@ namespace CodatLending
1919
using System.Threading.Tasks;
2020
using System;
2121

22+
/// <summary>
23+
/// Access bank transactions from an accounting platform.
24+
/// </summary>
2225
public interface IAccountingBankDataSDK
2326
{
2427
public IAccountingBankDataAccountsSDK Accounts { get; }
28+
29+
/// <summary>
30+
/// List bank account transactions
31+
///
32+
/// <remarks>
33+
/// The *List account bank transactions* endpoint returns a list of <a href="https://docs.codat.io/accounting-api#/schemas/BankTransactions">bank account transactions</a> for a given company&apos;s connection.<br/>
34+
/// <br/>
35+
/// <a href="https://docs.codat.io/accounting-api#/schemas/BankTransactions">Bank account transactions</a> are records of money that has moved in and out of an SMB&apos;s bank account.<br/>
36+
/// <br/>
37+
/// Check out our <a href="https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&amp;dataType=bankTransactions">coverage explorer</a> for integrations that support listing bank transactions.<br/>
38+
/// <br/>
39+
/// Before using this endpoint, you must have <a href="https://docs.codat.io/lending-api#/operations/refresh-company-data">retrieved data for the company</a>.<br/>
40+
///
41+
/// </remarks>
42+
/// </summary>
2543
Task<ListAccountingBankAccountTransactionsResponse> ListTransactionsAsync(ListAccountingBankAccountTransactionsRequest? request = null);
2644
}
2745

28-
/// <summary>
29-
/// Access bank transactions from an accounting platform.
30-
/// </summary>
3146
public class AccountingBankDataSDK: IAccountingBankDataSDK
3247
{
3348
public SDKConfig Config { get; private set; }
3449
private const string _language = "csharp";
35-
private const string _sdkVersion = "2.3.0";
36-
private const string _sdkGenVersion = "2.113.0";
50+
private const string _sdkVersion = "3.1.0";
51+
private const string _sdkGenVersion = "2.116.0";
3752
private const string _openapiDocVersion = "3.0.0";
3853
private string _serverUrl = "";
3954
private ISpeakeasyHttpClient _defaultClient;
@@ -50,20 +65,6 @@ public AccountingBankDataSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpC
5065
}
5166

5267

53-
/// <summary>
54-
/// List bank account transactions
55-
///
56-
/// <remarks>
57-
/// The *List account bank transactions* endpoint returns a list of [bank account transactions](https://docs.codat.io/accounting-api#/schemas/BankTransactions) for a given company's connection.
58-
///
59-
/// [Bank account transactions](https://docs.codat.io/accounting-api#/schemas/BankTransactions) are records of money that has moved in and out of an SMB's bank account.
60-
///
61-
/// Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bankTransactions) for integrations that support listing bank transactions.
62-
///
63-
/// Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
64-
///
65-
/// </remarks>
66-
/// </summary>
6768
public async Task<ListAccountingBankAccountTransactionsResponse> ListTransactionsAsync(ListAccountingBankAccountTransactionsRequest? request = null)
6869
{
6970
string baseUrl = _serverUrl;

lending/CodatLending/AccountingBankDataAccounts.cs

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,44 @@ namespace CodatLending
2121

2222
public interface IAccountingBankDataAccountsSDK
2323
{
24+
25+
/// <summary>
26+
/// Get bank account
27+
///
28+
/// <remarks>
29+
/// The *Get bank account* endpoint returns a single account for a given accountId.<br/>
30+
/// <br/>
31+
/// <a href="https://docs.codat.io/accounting-api#/schemas/BankAccount">Bank accounts</a> are financial accounts maintained by a bank or other financial institution.<br/>
32+
/// <br/>
33+
/// Check out our <a href="https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&amp;dataType=bankAccounts">coverage explorer</a> for integrations that support getting a specific bank account.<br/>
34+
/// <br/>
35+
/// Before using this endpoint, you must have <a href="https://docs.codat.io/lending-api#/operations/refresh-company-data">retrieved data for the company</a>.<br/>
36+
///
37+
/// </remarks>
38+
/// </summary>
2439
Task<GetAccountingBankAccountResponse> GetAsync(GetAccountingBankAccountRequest? request = null);
40+
41+
/// <summary>
42+
/// List bank accounts
43+
///
44+
/// <remarks>
45+
/// The *List bank accounts* endpoint returns a list of <a href="https://docs.codat.io/accounting-api#/schemas/BankAccount">bank accounts</a> for a given company&apos;s connection.<br/>
46+
/// <br/>
47+
/// <a href="https://docs.codat.io/accounting-api#/schemas/BankAccount">Bank accounts</a> are financial accounts maintained by a bank or other financial institution.<br/>
48+
/// <br/>
49+
/// Before using this endpoint, you must have <a href="https://docs.codat.io/lending-api#/operations/refresh-company-data">retrieved data for the company</a>.<br/>
50+
///
51+
/// </remarks>
52+
/// </summary>
2553
Task<ListAccountingBankAccountsResponse> ListAsync(ListAccountingBankAccountsRequest? request = null);
2654
}
2755

2856
public class AccountingBankDataAccountsSDK: IAccountingBankDataAccountsSDK
2957
{
3058
public SDKConfig Config { get; private set; }
3159
private const string _language = "csharp";
32-
private const string _sdkVersion = "2.3.0";
33-
private const string _sdkGenVersion = "2.113.0";
60+
private const string _sdkVersion = "3.1.0";
61+
private const string _sdkGenVersion = "2.116.0";
3462
private const string _openapiDocVersion = "3.0.0";
3563
private string _serverUrl = "";
3664
private ISpeakeasyHttpClient _defaultClient;
@@ -45,20 +73,6 @@ public AccountingBankDataAccountsSDK(ISpeakeasyHttpClient defaultClient, ISpeake
4573
}
4674

4775

48-
/// <summary>
49-
/// Get bank account
50-
///
51-
/// <remarks>
52-
/// The *Get bank account* endpoint returns a single account for a given accountId.
53-
///
54-
/// [Bank accounts](https://docs.codat.io/accounting-api#/schemas/BankAccount) are financial accounts maintained by a bank or other financial institution.
55-
///
56-
/// Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bankAccounts) for integrations that support getting a specific bank account.
57-
///
58-
/// Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
59-
///
60-
/// </remarks>
61-
/// </summary>
6276
public async Task<GetAccountingBankAccountResponse> GetAsync(GetAccountingBankAccountRequest? request = null)
6377
{
6478
string baseUrl = _serverUrl;
@@ -107,18 +121,6 @@ public async Task<GetAccountingBankAccountResponse> GetAsync(GetAccountingBankAc
107121
}
108122

109123

110-
/// <summary>
111-
/// List bank accounts
112-
///
113-
/// <remarks>
114-
/// The *List bank accounts* endpoint returns a list of [bank accounts](https://docs.codat.io/accounting-api#/schemas/BankAccount) for a given company's connection.
115-
///
116-
/// [Bank accounts](https://docs.codat.io/accounting-api#/schemas/BankAccount) are financial accounts maintained by a bank or other financial institution.
117-
///
118-
/// Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
119-
///
120-
/// </remarks>
121-
/// </summary>
122124
public async Task<ListAccountingBankAccountsResponse> ListAsync(ListAccountingBankAccountsRequest? request = null)
123125
{
124126
string baseUrl = _serverUrl;

lending/CodatLending/AccountsPayable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public class AccountsPayableSDK: IAccountsPayableSDK
2525
{
2626
public SDKConfig Config { get; private set; }
2727
private const string _language = "csharp";
28-
private const string _sdkVersion = "2.3.0";
29-
private const string _sdkGenVersion = "2.113.0";
28+
private const string _sdkVersion = "3.1.0";
29+
private const string _sdkGenVersion = "2.116.0";
3030
private const string _openapiDocVersion = "3.0.0";
3131
private string _serverUrl = "";
3232
private ISpeakeasyHttpClient _defaultClient;

lending/CodatLending/AccountsPayableBillCreditNotes.cs

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,44 @@ namespace CodatLending
2121

2222
public interface IAccountsPayableBillCreditNotesSDK
2323
{
24+
25+
/// <summary>
26+
/// Get bill credit note
27+
///
28+
/// <remarks>
29+
/// The *Get bill credit note* endpoint returns a single bill credit note for a given billCreditNoteId.<br/>
30+
/// <br/>
31+
/// <a href="https://docs.codat.io/accounting-api#/schemas/BillCreditNote">Bill credit notes</a> are issued by a supplier for the purpose of recording credit.<br/>
32+
/// <br/>
33+
/// Check out our <a href="https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&amp;dataType=billCreditNotes">coverage explorer</a> for integrations that support getting a specific bill credit note.<br/>
34+
/// <br/>
35+
/// Before using this endpoint, you must have <a href="https://docs.codat.io/lending-api#/operations/refresh-company-data">retrieved data for the company</a>.<br/>
36+
///
37+
/// </remarks>
38+
/// </summary>
2439
Task<GetAccountingBillCreditNoteResponse> GetAsync(GetAccountingBillCreditNoteRequest? request = null);
40+
41+
/// <summary>
42+
/// List bill credit notes
43+
///
44+
/// <remarks>
45+
/// The *List bill credit notes* endpoint returns a list of <a href="https://docs.codat.io/accounting-api#/schemas/BillCreditNote">bill credit notes</a> for a given company&apos;s connection.<br/>
46+
/// <br/>
47+
/// <a href="https://docs.codat.io/accounting-api#/schemas/BillCreditNote">Bill credit notes</a> are issued by a supplier for the purpose of recording credit.<br/>
48+
/// <br/>
49+
/// Before using this endpoint, you must have <a href="https://docs.codat.io/lending-api#/operations/refresh-company-data">retrieved data for the company</a>.<br/>
50+
///
51+
/// </remarks>
52+
/// </summary>
2553
Task<ListAccountingBillCreditNotesResponse> ListAsync(ListAccountingBillCreditNotesRequest? request = null);
2654
}
2755

2856
public class AccountsPayableBillCreditNotesSDK: IAccountsPayableBillCreditNotesSDK
2957
{
3058
public SDKConfig Config { get; private set; }
3159
private const string _language = "csharp";
32-
private const string _sdkVersion = "2.3.0";
33-
private const string _sdkGenVersion = "2.113.0";
60+
private const string _sdkVersion = "3.1.0";
61+
private const string _sdkGenVersion = "2.116.0";
3462
private const string _openapiDocVersion = "3.0.0";
3563
private string _serverUrl = "";
3664
private ISpeakeasyHttpClient _defaultClient;
@@ -45,20 +73,6 @@ public AccountsPayableBillCreditNotesSDK(ISpeakeasyHttpClient defaultClient, ISp
4573
}
4674

4775

48-
/// <summary>
49-
/// Get bill credit note
50-
///
51-
/// <remarks>
52-
/// The *Get bill credit note* endpoint returns a single bill credit note for a given billCreditNoteId.
53-
///
54-
/// [Bill credit notes](https://docs.codat.io/accounting-api#/schemas/BillCreditNote) are issued by a supplier for the purpose of recording credit.
55-
///
56-
/// Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=billCreditNotes) for integrations that support getting a specific bill credit note.
57-
///
58-
/// Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
59-
///
60-
/// </remarks>
61-
/// </summary>
6276
public async Task<GetAccountingBillCreditNoteResponse> GetAsync(GetAccountingBillCreditNoteRequest? request = null)
6377
{
6478
string baseUrl = _serverUrl;
@@ -107,18 +121,6 @@ public async Task<GetAccountingBillCreditNoteResponse> GetAsync(GetAccountingBil
107121
}
108122

109123

110-
/// <summary>
111-
/// List bill credit notes
112-
///
113-
/// <remarks>
114-
/// The *List bill credit notes* endpoint returns a list of [bill credit notes](https://docs.codat.io/accounting-api#/schemas/BillCreditNote) for a given company's connection.
115-
///
116-
/// [Bill credit notes](https://docs.codat.io/accounting-api#/schemas/BillCreditNote) are issued by a supplier for the purpose of recording credit.
117-
///
118-
/// Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
119-
///
120-
/// </remarks>
121-
/// </summary>
122124
public async Task<ListAccountingBillCreditNotesResponse> ListAsync(ListAccountingBillCreditNotesRequest? request = null)
123125
{
124126
string baseUrl = _serverUrl;

lending/CodatLending/AccountsPayableBillPayments.cs

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,44 @@ namespace CodatLending
2121

2222
public interface IAccountsPayableBillPaymentsSDK
2323
{
24+
25+
/// <summary>
26+
/// Get bill payment
27+
///
28+
/// <remarks>
29+
/// The *Get bill payment* endpoint returns a single bill payment for a given billPaymentId.<br/>
30+
/// <br/>
31+
/// <a href="https://docs.codat.io/accounting-api#/schemas/BillPayment">Bill payments</a> are an allocation of money within any customer accounts payable account.<br/>
32+
/// <br/>
33+
/// Check out our <a href="https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&amp;dataType=billPayments">coverage explorer</a> for integrations that support getting a specific bill payment.<br/>
34+
/// <br/>
35+
/// Before using this endpoint, you must have <a href="https://docs.codat.io/lending-api#/operations/refresh-company-data">retrieved data for the company</a>.<br/>
36+
///
37+
/// </remarks>
38+
/// </summary>
2439
Task<GetAccountingBillPaymentResponse> GetAsync(GetAccountingBillPaymentRequest? request = null);
40+
41+
/// <summary>
42+
/// List bill payments
43+
///
44+
/// <remarks>
45+
/// The *List bill payments* endpoint returns a list of <a href="https://docs.codat.io/accounting-api#/schemas/BillPayment">bill payments</a> for a given company&apos;s connection.<br/>
46+
/// <br/>
47+
/// <a href="https://docs.codat.io/accounting-api#/schemas/BillPayment">Bill payments</a> are an allocation of money within any customer accounts payable account.<br/>
48+
/// <br/>
49+
/// Before using this endpoint, you must have <a href="https://docs.codat.io/lending-api#/operations/refresh-company-data">retrieved data for the company</a>.<br/>
50+
///
51+
/// </remarks>
52+
/// </summary>
2553
Task<ListAccountingBillPaymentsResponse> ListAsync(ListAccountingBillPaymentsRequest? request = null);
2654
}
2755

2856
public class AccountsPayableBillPaymentsSDK: IAccountsPayableBillPaymentsSDK
2957
{
3058
public SDKConfig Config { get; private set; }
3159
private const string _language = "csharp";
32-
private const string _sdkVersion = "2.3.0";
33-
private const string _sdkGenVersion = "2.113.0";
60+
private const string _sdkVersion = "3.1.0";
61+
private const string _sdkGenVersion = "2.116.0";
3462
private const string _openapiDocVersion = "3.0.0";
3563
private string _serverUrl = "";
3664
private ISpeakeasyHttpClient _defaultClient;
@@ -45,20 +73,6 @@ public AccountsPayableBillPaymentsSDK(ISpeakeasyHttpClient defaultClient, ISpeak
4573
}
4674

4775

48-
/// <summary>
49-
/// Get bill payment
50-
///
51-
/// <remarks>
52-
/// The *Get bill payment* endpoint returns a single bill payment for a given billPaymentId.
53-
///
54-
/// [Bill payments](https://docs.codat.io/accounting-api#/schemas/BillPayment) are an allocation of money within any customer accounts payable account.
55-
///
56-
/// Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=billPayments) for integrations that support getting a specific bill payment.
57-
///
58-
/// Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
59-
///
60-
/// </remarks>
61-
/// </summary>
6276
public async Task<GetAccountingBillPaymentResponse> GetAsync(GetAccountingBillPaymentRequest? request = null)
6377
{
6478
string baseUrl = _serverUrl;
@@ -107,18 +121,6 @@ public async Task<GetAccountingBillPaymentResponse> GetAsync(GetAccountingBillPa
107121
}
108122

109123

110-
/// <summary>
111-
/// List bill payments
112-
///
113-
/// <remarks>
114-
/// The *List bill payments* endpoint returns a list of [bill payments](https://docs.codat.io/accounting-api#/schemas/BillPayment) for a given company's connection.
115-
///
116-
/// [Bill payments](https://docs.codat.io/accounting-api#/schemas/BillPayment) are an allocation of money within any customer accounts payable account.
117-
///
118-
/// Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
119-
///
120-
/// </remarks>
121-
/// </summary>
122124
public async Task<ListAccountingBillPaymentsResponse> ListAsync(ListAccountingBillPaymentsRequest? request = null)
123125
{
124126
string baseUrl = _serverUrl;

0 commit comments

Comments
 (0)