Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.423.1 (#316)
Browse files Browse the repository at this point in the history
Co-authored-by: speakeasybot <[email protected]>
  • Loading branch information
github-actions[bot] and speakeasybot authored Oct 29, 2024
1 parent af1c860 commit 175e726
Show file tree
Hide file tree
Showing 115 changed files with 2,007 additions and 2,194 deletions.
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ sources:
- main
platform-source:
sourceNamespace: platform-source
sourceRevisionDigest: sha256:63cd9348c74d8931dbcbeaefdb72a6d1d62e739c2863ffd9eaee728cc1f61f98
sourceBlobDigest: sha256:e1e3f4c3ed16022322bc656bb0e4ef28c04fff8c92c271cc859c6e2b32af5613
sourceRevisionDigest: sha256:79a4904b9895618d236f55146f7a48a82d552ac798f86927edd76800692421c6
sourceBlobDigest: sha256:e4fb24c2ca300a5005adef27857ad9afba70f056e51a84fb38368609c61cafc8
tags:
- latest
- main
Expand Down Expand Up @@ -70,8 +70,8 @@ targets:
platform-library:
source: platform-source
sourceNamespace: platform-source
sourceRevisionDigest: sha256:63cd9348c74d8931dbcbeaefdb72a6d1d62e739c2863ffd9eaee728cc1f61f98
sourceBlobDigest: sha256:e1e3f4c3ed16022322bc656bb0e4ef28c04fff8c92c271cc859c6e2b32af5613
sourceRevisionDigest: sha256:79a4904b9895618d236f55146f7a48a82d552ac798f86927edd76800692421c6
sourceBlobDigest: sha256:e4fb24c2ca300a5005adef27857ad9afba70f056e51a84fb38368609c61cafc8
sync-for-commerce-library:
source: sync-for-commerce-source
sourceNamespace: sync-for-commerce-source
Expand Down
126 changes: 80 additions & 46 deletions platform/.speakeasy/gen.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion platform/.speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
csharp:
version: 4.0.0
version: 5.0.0
additionalDependencies: []
author: Codat
clientServerStatusCodesAsErrors: true
Expand All @@ -36,3 +36,4 @@ csharp:
packageName: Codat.Platform
packageTags: ""
responseFormat: envelope
sourceDirectory: ""
3 changes: 1 addition & 2 deletions platform/Codat/Platform/Codat.Platform.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Codat.Platform</PackageId>
<Version>4.0.0</Version>
<Version>5.0.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Authors>Codat</Authors>
<Copyright>Copyright (c) Codat 2024</Copyright>
Expand All @@ -24,7 +24,6 @@ These end points cover creating and managing your companies, data connections, a
| Companies | Create and manage your SMB users' companies. |
| Connections | Create new and manage existing data connections for a company. |
| Connection management | Configure connection management UI and retrieve access tokens for authentication. |
| Groups | Define and manage sets of companies based on a chosen characteristic. |
| Webhooks | Create and manage webhooks that listen to Codat's events. |
| Integrations | Get a list of integrations supported by Codat and their logos. |
| Refresh data | Initiate data refreshes, view pull status and history. |
Expand Down
17 changes: 3 additions & 14 deletions platform/Codat/Platform/CodatPlatform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ namespace Codat.Platform
/// | Companies | Create and manage your SMB users&apos; companies. |<br/>
/// | Connections | Create new and manage existing data connections for a company. |<br/>
/// | Connection management | Configure connection management UI and retrieve access tokens for authentication. |<br/>
/// | Groups | Define and manage sets of companies based on a chosen characteristic. |<br/>
/// | Webhooks | Create and manage webhooks that listen to Codat&apos;s events. |<br/>
/// | Integrations | Get a list of integrations supported by Codat and their logos. |<br/>
/// | Refresh data | Initiate data refreshes, view pull status and history. |<br/>
Expand Down Expand Up @@ -73,11 +72,6 @@ public interface ICodatPlatform
/// </summary>
public IRefreshData RefreshData { get; }

/// <summary>
/// Define and manage sets of companies based on a chosen characteristic.
/// </summary>
public IGroups Groups { get; }

/// <summary>
/// Create and manage webhooks that listen to Codat&apos;s events.
/// </summary>
Expand Down Expand Up @@ -163,7 +157,6 @@ public ISpeakeasyHttpClient InitHooks(ISpeakeasyHttpClient client)
/// | Companies | Create and manage your SMB users&apos; companies. |<br/>
/// | Connections | Create new and manage existing data connections for a company. |<br/>
/// | Connection management | Configure connection management UI and retrieve access tokens for authentication. |<br/>
/// | Groups | Define and manage sets of companies based on a chosen characteristic. |<br/>
/// | Webhooks | Create and manage webhooks that listen to Codat&apos;s events. |<br/>
/// | Integrations | Get a list of integrations supported by Codat and their logos. |<br/>
/// | Refresh data | Initiate data refreshes, view pull status and history. |<br/>
Expand All @@ -179,10 +172,10 @@ public class CodatPlatform: ICodatPlatform
public SDKConfig SDKConfiguration { get; private set; }

private const string _language = "csharp";
private const string _sdkVersion = "4.0.0";
private const string _sdkGenVersion = "2.415.6";
private const string _sdkVersion = "5.0.0";
private const string _sdkGenVersion = "2.442.11";
private const string _openapiDocVersion = "3.0.0";
private const string _userAgent = "speakeasy-sdk/csharp 4.0.0 2.415.6 3.0.0 Codat.Platform";
private const string _userAgent = "speakeasy-sdk/csharp 5.0.0 2.442.11 3.0.0 Codat.Platform";
private string _serverUrl = "";
private int _serverIndex = 0;
private ISpeakeasyHttpClient _client;
Expand All @@ -191,7 +184,6 @@ public class CodatPlatform: ICodatPlatform
public IConnections Connections { get; private set; }
public IConnectionManagement ConnectionManagement { get; private set; }
public IRefreshData RefreshData { get; private set; }
public IGroups Groups { get; private set; }
public IWebhooks Webhooks { get; private set; }
public IIntegrations Integrations { get; private set; }
public ISettings Settings { get; private set; }
Expand Down Expand Up @@ -256,9 +248,6 @@ public CodatPlatform(string? authHeader = null, Func<string>? authHeaderSource =
RefreshData = new RefreshData(_client, _securitySource, _serverUrl, SDKConfiguration);


Groups = new Groups(_client, _securitySource, _serverUrl, SDKConfiguration);


Webhooks = new Webhooks(_client, _securitySource, _serverUrl, SDKConfiguration);


Expand Down
Loading

0 comments on commit 175e726

Please sign in to comment.