Skip to content

Commit df3d0f0

Browse files
ci: regenerated with OpenAPI Doc 3.0.0, Speakeasy CLI 1.386.0 (#273)
Co-authored-by: speakeasybot <[email protected]>
1 parent c0a8053 commit df3d0f0

File tree

22 files changed

+184
-105
lines changed

22 files changed

+184
-105
lines changed

sync-for-payables/.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: 00cbdd6c-b863-4d25-8a48-4bec7ae20fc1
33
management:
44
docChecksum: 0d5e6db903200fe527a4756c50a29993
55
docVersion: 3.0.0
6-
speakeasyVersion: 1.381.0
7-
generationVersion: 2.404.9
8-
releaseVersion: 0.0.2
9-
configChecksum: 817d6436951bf17dedd471943b753352
6+
speakeasyVersion: 1.386.0
7+
generationVersion: 2.407.2
8+
releaseVersion: 0.0.3
9+
configChecksum: e63998c49db1fe8c138a30d9cc4081b6
1010
repoURL: https://github.com/codatio/client-sdk-csharp.git
1111
repoSubDirectory: sync-for-payables
1212
published: true

sync-for-payables/.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ generation:
1212
auth:
1313
oAuth2ClientCredentialsEnabled: true
1414
csharp:
15-
version: 0.0.2
15+
version: 0.0.3
1616
additionalDependencies: []
1717
author: Speakeasy
1818
clientServerStatusCodesAsErrors: true

sync-for-payables/NUGET.md

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ var res = await sdk.Companies.ListAsync(
1717
page: 1,
1818
pageSize: 100,
1919
query: "id=e3334455-1aed-4e71-ab43-6bccf12092ee",
20-
orderBy: "-modifiedDate");
20+
orderBy: "-modifiedDate"
21+
);
2122

2223
// handle response
2324
```
@@ -37,10 +38,6 @@ using Openapi.Models.Components;
3738
var sdk = new SDK(authHeader: "Basic BASE_64_ENCODED(API_KEY)");
3839

3940
var res = await sdk.Companies.ListAsync(
40-
page: 1,
41-
pageSize: 100,
42-
query: "id=e3334455-1aed-4e71-ab43-6bccf12092ee",
43-
orderBy: "-modifiedDate",
4441
retryConfig: new RetryConfig(
4542
strategy: RetryConfig.RetryStrategy.BACKOFF,
4643
backoff: new BackoffStrategy(
@@ -50,7 +47,12 @@ var res = await sdk.Companies.ListAsync(
5047
exponent: 1.1
5148
),
5249
retryConnectionErrors: false
53-
));
50+
),
51+
page: 1,
52+
pageSize: 100,
53+
query: "id=e3334455-1aed-4e71-ab43-6bccf12092ee",
54+
orderBy: "-modifiedDate"
55+
);
5456

5557
// handle response
5658
```
@@ -71,14 +73,16 @@ var sdk = new SDK(
7173
exponent: 1.1
7274
),
7375
retryConnectionErrors: false
74-
),
75-
authHeader: "Basic BASE_64_ENCODED(API_KEY)");
76+
),
77+
authHeader: "Basic BASE_64_ENCODED(API_KEY)"
78+
);
7679

7780
var res = await sdk.Companies.ListAsync(
7881
page: 1,
7982
pageSize: 100,
8083
query: "id=e3334455-1aed-4e71-ab43-6bccf12092ee",
81-
orderBy: "-modifiedDate");
84+
orderBy: "-modifiedDate"
85+
);
8286

8387
// handle response
8488
```
@@ -108,10 +112,12 @@ var sdk = new SDK(authHeader: "Basic BASE_64_ENCODED(API_KEY)");
108112
try
109113
{
110114
var res = await sdk.Companies.ListAsync(
111-
page: 1,
112-
pageSize: 100,
113-
query: "id=e3334455-1aed-4e71-ab43-6bccf12092ee",
114-
orderBy: "-modifiedDate");
115+
page: 1,
116+
pageSize: 100,
117+
query: "id=e3334455-1aed-4e71-ab43-6bccf12092ee",
118+
orderBy: "-modifiedDate"
119+
);
120+
115121
// handle response
116122
}
117123
catch (Exception ex)
@@ -125,7 +131,6 @@ catch (Exception ex)
125131
// handle exception
126132
}
127133
}
128-
129134
```
130135
<!-- End Error Handling [errors] -->
131136

@@ -171,7 +176,8 @@ var res = await sdk.Companies.ListAsync(
171176
page: 1,
172177
pageSize: 100,
173178
query: "id=e3334455-1aed-4e71-ab43-6bccf12092ee",
174-
orderBy: "-modifiedDate");
179+
orderBy: "-modifiedDate"
180+
);
175181

176182
// handle response
177183
```

sync-for-payables/Openapi/BankAccounts.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ public class BankAccounts: IBankAccounts
4747
{
4848
public SDKConfig SDKConfiguration { get; private set; }
4949
private const string _language = "csharp";
50-
private const string _sdkVersion = "0.0.2";
51-
private const string _sdkGenVersion = "2.404.9";
50+
private const string _sdkVersion = "0.0.3";
51+
private const string _sdkGenVersion = "2.407.2";
5252
private const string _openapiDocVersion = "3.0.0";
53-
private const string _userAgent = "speakeasy-sdk/csharp 0.0.2 2.404.9 3.0.0 Openapi";
53+
private const string _userAgent = "speakeasy-sdk/csharp 0.0.3 2.407.2 3.0.0 Openapi";
5454
private string _serverUrl = "";
5555
private ISpeakeasyHttpClient _client;
5656
private Func<Openapi.Models.Components.Security>? _securitySource;

sync-for-payables/Openapi/BillPayments.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ public class BillPayments: IBillPayments
6060
{
6161
public SDKConfig SDKConfiguration { get; private set; }
6262
private const string _language = "csharp";
63-
private const string _sdkVersion = "0.0.2";
64-
private const string _sdkGenVersion = "2.404.9";
63+
private const string _sdkVersion = "0.0.3";
64+
private const string _sdkGenVersion = "2.407.2";
6565
private const string _openapiDocVersion = "3.0.0";
66-
private const string _userAgent = "speakeasy-sdk/csharp 0.0.2 2.404.9 3.0.0 Openapi";
66+
private const string _userAgent = "speakeasy-sdk/csharp 0.0.3 2.407.2 3.0.0 Openapi";
6767
private string _serverUrl = "";
6868
private ISpeakeasyHttpClient _client;
6969
private Func<Openapi.Models.Components.Security>? _securitySource;

sync-for-payables/Openapi/Bills.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ public class Bills: IBills
109109
{
110110
public SDKConfig SDKConfiguration { get; private set; }
111111
private const string _language = "csharp";
112-
private const string _sdkVersion = "0.0.2";
113-
private const string _sdkGenVersion = "2.404.9";
112+
private const string _sdkVersion = "0.0.3";
113+
private const string _sdkGenVersion = "2.407.2";
114114
private const string _openapiDocVersion = "3.0.0";
115-
private const string _userAgent = "speakeasy-sdk/csharp 0.0.2 2.404.9 3.0.0 Openapi";
115+
private const string _userAgent = "speakeasy-sdk/csharp 0.0.3 2.407.2 3.0.0 Openapi";
116116
private string _serverUrl = "";
117117
private ISpeakeasyHttpClient _client;
118118
private Func<Openapi.Models.Components.Security>? _securitySource;

sync-for-payables/Openapi/Companies.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ public class Companies: ICompanies
101101
{
102102
public SDKConfig SDKConfiguration { get; private set; }
103103
private const string _language = "csharp";
104-
private const string _sdkVersion = "0.0.2";
105-
private const string _sdkGenVersion = "2.404.9";
104+
private const string _sdkVersion = "0.0.3";
105+
private const string _sdkGenVersion = "2.407.2";
106106
private const string _openapiDocVersion = "3.0.0";
107-
private const string _userAgent = "speakeasy-sdk/csharp 0.0.2 2.404.9 3.0.0 Openapi";
107+
private const string _userAgent = "speakeasy-sdk/csharp 0.0.3 2.407.2 3.0.0 Openapi";
108108
private string _serverUrl = "";
109109
private ISpeakeasyHttpClient _client;
110110
private Func<Openapi.Models.Components.Security>? _securitySource;

sync-for-payables/Openapi/CompanyInformation.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ public class CompanyInformation: ICompanyInformation
4747
{
4848
public SDKConfig SDKConfiguration { get; private set; }
4949
private const string _language = "csharp";
50-
private const string _sdkVersion = "0.0.2";
51-
private const string _sdkGenVersion = "2.404.9";
50+
private const string _sdkVersion = "0.0.3";
51+
private const string _sdkGenVersion = "2.407.2";
5252
private const string _openapiDocVersion = "3.0.0";
53-
private const string _userAgent = "speakeasy-sdk/csharp 0.0.2 2.404.9 3.0.0 Openapi";
53+
private const string _userAgent = "speakeasy-sdk/csharp 0.0.3 2.407.2 3.0.0 Openapi";
5454
private string _serverUrl = "";
5555
private ISpeakeasyHttpClient _client;
5656
private Func<Openapi.Models.Components.Security>? _securitySource;

sync-for-payables/Openapi/Connections.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ public class Connections: IConnections
8484
{
8585
public SDKConfig SDKConfiguration { get; private set; }
8686
private const string _language = "csharp";
87-
private const string _sdkVersion = "0.0.2";
88-
private const string _sdkGenVersion = "2.404.9";
87+
private const string _sdkVersion = "0.0.3";
88+
private const string _sdkGenVersion = "2.407.2";
8989
private const string _openapiDocVersion = "3.0.0";
90-
private const string _userAgent = "speakeasy-sdk/csharp 0.0.2 2.404.9 3.0.0 Openapi";
90+
private const string _userAgent = "speakeasy-sdk/csharp 0.0.3 2.407.2 3.0.0 Openapi";
9191
private string _serverUrl = "";
9292
private ISpeakeasyHttpClient _client;
9393
private Func<Openapi.Models.Components.Security>? _securitySource;

sync-for-payables/Openapi/Openapi.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<IsPackable>true</IsPackable>
55
<PackageId>Openapi</PackageId>
6-
<Version>0.0.2</Version>
6+
<Version>0.0.3</Version>
77
<TargetFramework>net8.0</TargetFramework>
88
<Authors>Speakeasy</Authors>
99
<Copyright>Copyright (c) Speakeasy 2024</Copyright>

0 commit comments

Comments
 (0)