@@ -39,7 +39,6 @@ namespace Codat.Platform
39
39
/// | Companies | Create and manage your SMB users' companies. |<br/>
40
40
/// | Connections | Create new and manage existing data connections for a company. |<br/>
41
41
/// | Connection management | Configure connection management UI and retrieve access tokens for authentication. |<br/>
42
- /// | Groups | Define and manage sets of companies based on a chosen characteristic. |<br/>
43
42
/// | Webhooks | Create and manage webhooks that listen to Codat's events. |<br/>
44
43
/// | Integrations | Get a list of integrations supported by Codat and their logos. |<br/>
45
44
/// | Refresh data | Initiate data refreshes, view pull status and history. |<br/>
@@ -73,11 +72,6 @@ public interface ICodatPlatform
73
72
/// </summary>
74
73
public IRefreshData RefreshData { get ; }
75
74
76
- /// <summary>
77
- /// Define and manage sets of companies based on a chosen characteristic.
78
- /// </summary>
79
- public IGroups Groups { get ; }
80
-
81
75
/// <summary>
82
76
/// Create and manage webhooks that listen to Codat's events.
83
77
/// </summary>
@@ -163,7 +157,6 @@ public ISpeakeasyHttpClient InitHooks(ISpeakeasyHttpClient client)
163
157
/// | Companies | Create and manage your SMB users' companies. |<br/>
164
158
/// | Connections | Create new and manage existing data connections for a company. |<br/>
165
159
/// | Connection management | Configure connection management UI and retrieve access tokens for authentication. |<br/>
166
- /// | Groups | Define and manage sets of companies based on a chosen characteristic. |<br/>
167
160
/// | Webhooks | Create and manage webhooks that listen to Codat's events. |<br/>
168
161
/// | Integrations | Get a list of integrations supported by Codat and their logos. |<br/>
169
162
/// | Refresh data | Initiate data refreshes, view pull status and history. |<br/>
@@ -179,10 +172,10 @@ public class CodatPlatform: ICodatPlatform
179
172
public SDKConfig SDKConfiguration { get ; private set ; }
180
173
181
174
private const string _language = "csharp" ;
182
- private const string _sdkVersion = "4 .0.0" ;
183
- private const string _sdkGenVersion = "2.415.6 " ;
175
+ private const string _sdkVersion = "5 .0.0" ;
176
+ private const string _sdkGenVersion = "2.442.11 " ;
184
177
private const string _openapiDocVersion = "3.0.0" ;
185
- private const string _userAgent = "speakeasy-sdk/csharp 4 .0.0 2.415.6 3.0.0 Codat.Platform" ;
178
+ private const string _userAgent = "speakeasy-sdk/csharp 5 .0.0 2.442.11 3.0.0 Codat.Platform" ;
186
179
private string _serverUrl = "" ;
187
180
private int _serverIndex = 0 ;
188
181
private ISpeakeasyHttpClient _client ;
@@ -191,7 +184,6 @@ public class CodatPlatform: ICodatPlatform
191
184
public IConnections Connections { get ; private set ; }
192
185
public IConnectionManagement ConnectionManagement { get ; private set ; }
193
186
public IRefreshData RefreshData { get ; private set ; }
194
- public IGroups Groups { get ; private set ; }
195
187
public IWebhooks Webhooks { get ; private set ; }
196
188
public IIntegrations Integrations { get ; private set ; }
197
189
public ISettings Settings { get ; private set ; }
@@ -256,9 +248,6 @@ public CodatPlatform(string? authHeader = null, Func<string>? authHeaderSource =
256
248
RefreshData = new RefreshData ( _client , _securitySource , _serverUrl , SDKConfiguration ) ;
257
249
258
250
259
- Groups = new Groups ( _client , _securitySource , _serverUrl , SDKConfiguration ) ;
260
-
261
-
262
251
Webhooks = new Webhooks ( _client , _securitySource , _serverUrl , SDKConfiguration ) ;
263
252
264
253
0 commit comments