Skip to content

Commit f3371d5

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.400.0
1 parent bcd3215 commit f3371d5

File tree

253 files changed

+364
-313
lines changed

Some content is hidden

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

253 files changed

+364
-313
lines changed

.speakeasy/gen.lock

Lines changed: 256 additions & 251 deletions
Large diffs are not rendered by default.

.speakeasy/workflow.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
speakeasyVersion: 1.399.2
1+
speakeasyVersion: 1.400.0
22
sources:
33
speakeasy:
44
sourceNamespace: speakeasy
5-
sourceRevisionDigest: sha256:c3f47f9740aebf3b24e24c0df0e12a713f3b0e53814878b5683ed4a36707b052
5+
sourceRevisionDigest: sha256:780f67279a06564bd229dec0bc85843b7304309e58668de26325742aa8c7b921
66
sourceBlobDigest: sha256:88704527b94e0f552679a1b9305054543883de59097a5102e669d5f049d7929e
77
tags:
88
- latest
@@ -11,10 +11,10 @@ targets:
1111
speakeasy-client-sdk-csharp:
1212
source: speakeasy
1313
sourceNamespace: speakeasy
14-
sourceRevisionDigest: sha256:c3f47f9740aebf3b24e24c0df0e12a713f3b0e53814878b5683ed4a36707b052
14+
sourceRevisionDigest: sha256:780f67279a06564bd229dec0bc85843b7304309e58668de26325742aa8c7b921
1515
sourceBlobDigest: sha256:88704527b94e0f552679a1b9305054543883de59097a5102e669d5f049d7929e
1616
codeSamplesNamespace: code-samples-csharp-speakeasy-client-sdk-csharp
17-
codeSamplesRevisionDigest: sha256:4654b6467fa525870f9523de86c710be302bbaa9e945d25108cbb097b4e6145c
17+
codeSamplesRevisionDigest: sha256:f4c81795d8921b1fc5c4ada4b7c29196d1435a034ec4c259d2c889209884384e
1818
workflow:
1919
workflowVersion: 1.0.0
2020
speakeasyVersion: latest

README.md

Lines changed: 1 addition & 1 deletion

RELEASES.md

Lines changed: 11 additions & 1 deletion

SpeakeasySDK.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpeakeasySDK", "SpeakeasySDK\SpeakeasySDK.csproj", "{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}"
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpeakeasySDK", "src\SpeakeasySDK\SpeakeasySDK.csproj", "{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}"
44
EndProject
55

66
Global

gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ generation:
1010
auth:
1111
oAuth2ClientCredentialsEnabled: false
1212
csharp:
13-
version: 5.9.28
13+
version: 5.10.0
1414
additionalDependencies: []
1515
author: Speakeasy
1616
clientServerStatusCodesAsErrors: true
@@ -30,7 +30,7 @@ csharp:
3030
inputModelSuffix: input
3131
maxMethodParams: 0
3232
outputModelSuffix: output
33-
sourceDirectory: src
3433
packageName: SpeakeasySDK
3534
packageTags: Speakeasy SDK Generation
3635
responseFormat: envelope
36+
sourceDirectory: src

SpeakeasySDK/ApiEndpoints.cs renamed to src/SpeakeasySDK/ApiEndpoints.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ public class ApiEndpoints: IApiEndpoints
9898
{
9999
public SDKConfig SDKConfiguration { get; private set; }
100100
private const string _language = "csharp";
101-
private const string _sdkVersion = "5.9.28";
102-
private const string _sdkGenVersion = "2.416.6";
101+
private const string _sdkVersion = "5.10.0";
102+
private const string _sdkGenVersion = "2.420.2";
103103
private const string _openapiDocVersion = "0.4.0 .";
104-
private const string _userAgent = "speakeasy-sdk/csharp 5.9.28 2.416.6 0.4.0 . SpeakeasySDK";
104+
private const string _userAgent = "speakeasy-sdk/csharp 5.10.0 2.420.2 0.4.0 . SpeakeasySDK";
105105
private string _serverUrl = "";
106106
private ISpeakeasyHttpClient _client;
107107
private Func<SpeakeasySDK.Models.Shared.Security>? _securitySource;

SpeakeasySDK/Apis.cs renamed to src/SpeakeasySDK/Apis.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ public class Apis: IApis
9494
{
9595
public SDKConfig SDKConfiguration { get; private set; }
9696
private const string _language = "csharp";
97-
private const string _sdkVersion = "5.9.28";
98-
private const string _sdkGenVersion = "2.416.6";
97+
private const string _sdkVersion = "5.10.0";
98+
private const string _sdkGenVersion = "2.420.2";
9999
private const string _openapiDocVersion = "0.4.0 .";
100-
private const string _userAgent = "speakeasy-sdk/csharp 5.9.28 2.416.6 0.4.0 . SpeakeasySDK";
100+
private const string _userAgent = "speakeasy-sdk/csharp 5.10.0 2.420.2 0.4.0 . SpeakeasySDK";
101101
private string _serverUrl = "";
102102
private ISpeakeasyHttpClient _client;
103103
private Func<SpeakeasySDK.Models.Shared.Security>? _securitySource;

SpeakeasySDK/Artifacts.cs renamed to src/SpeakeasySDK/Artifacts.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ public class Artifacts: IArtifacts
6464
{
6565
public SDKConfig SDKConfiguration { get; private set; }
6666
private const string _language = "csharp";
67-
private const string _sdkVersion = "5.9.28";
68-
private const string _sdkGenVersion = "2.416.6";
67+
private const string _sdkVersion = "5.10.0";
68+
private const string _sdkGenVersion = "2.420.2";
6969
private const string _openapiDocVersion = "0.4.0 .";
70-
private const string _userAgent = "speakeasy-sdk/csharp 5.9.28 2.416.6 0.4.0 . SpeakeasySDK";
70+
private const string _userAgent = "speakeasy-sdk/csharp 5.10.0 2.420.2 0.4.0 . SpeakeasySDK";
7171
private string _serverUrl = "";
7272
private ISpeakeasyHttpClient _client;
7373
private Func<SpeakeasySDK.Models.Shared.Security>? _securitySource;

SpeakeasySDK/Auth.cs renamed to src/SpeakeasySDK/Auth.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ public class Auth: IAuth
6060
{
6161
public SDKConfig SDKConfiguration { get; private set; }
6262
private const string _language = "csharp";
63-
private const string _sdkVersion = "5.9.28";
64-
private const string _sdkGenVersion = "2.416.6";
63+
private const string _sdkVersion = "5.10.0";
64+
private const string _sdkGenVersion = "2.420.2";
6565
private const string _openapiDocVersion = "0.4.0 .";
66-
private const string _userAgent = "speakeasy-sdk/csharp 5.9.28 2.416.6 0.4.0 . SpeakeasySDK";
66+
private const string _userAgent = "speakeasy-sdk/csharp 5.10.0 2.420.2 0.4.0 . SpeakeasySDK";
6767
private string _serverUrl = "";
6868
private ISpeakeasyHttpClient _client;
6969
private Func<SpeakeasySDK.Models.Shared.Security>? _securitySource;

0 commit comments

Comments
 (0)