Skip to content

Commit 042bb1e

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.78.3
1 parent 64cc848 commit 042bb1e

19 files changed

+45
-34
lines changed

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,14 @@ Based on:
168168
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
169169
- Speakeasy CLI 1.77.2 (2.93.0) https://github.com/speakeasy-api/speakeasy
170170
### Generated
171-
- [csharp v1.13.2] .
171+
- [csharp v1.13.2] .
172+
173+
## 2023-09-05 00:03:00
174+
### Changes
175+
Based on:
176+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
177+
- Speakeasy CLI 1.78.3 (2.96.3) https://github.com/speakeasy-api/speakeasy
178+
### Generated
179+
- [csharp v1.13.3] .
180+
### Releases
181+
- [NuGet v1.13.3] https://www.nuget.org/packages/SpeakeasySDK/1.13.3 - .

Speakeasy/ApiEndpoints.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public class ApiEndpointsSDK: IApiEndpointsSDK
3636
{
3737
public SDKConfig Config { get; private set; }
3838
private const string _language = "csharp";
39-
private const string _sdkVersion = "1.13.2";
40-
private const string _sdkGenVersion = "2.93.0";
39+
private const string _sdkVersion = "1.13.3";
40+
private const string _sdkGenVersion = "2.96.3";
4141
private const string _openapiDocVersion = "0.3.0";
4242
private string _serverUrl = "";
4343
private ISpeakeasyHttpClient _defaultClient;

Speakeasy/Apis.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public class ApisSDK: IApisSDK
3434
{
3535
public SDKConfig Config { get; private set; }
3636
private const string _language = "csharp";
37-
private const string _sdkVersion = "1.13.2";
38-
private const string _sdkGenVersion = "2.93.0";
37+
private const string _sdkVersion = "1.13.3";
38+
private const string _sdkGenVersion = "2.96.3";
3939
private const string _openapiDocVersion = "0.3.0";
4040
private string _serverUrl = "";
4141
private ISpeakeasyHttpClient _defaultClient;

Speakeasy/Embeds.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public class EmbedsSDK: IEmbedsSDK
3131
{
3232
public SDKConfig Config { get; private set; }
3333
private const string _language = "csharp";
34-
private const string _sdkVersion = "1.13.2";
35-
private const string _sdkGenVersion = "2.93.0";
34+
private const string _sdkVersion = "1.13.3";
35+
private const string _sdkGenVersion = "2.96.3";
3636
private const string _openapiDocVersion = "0.3.0";
3737
private string _serverUrl = "";
3838
private ISpeakeasyHttpClient _defaultClient;

Speakeasy/Metadata.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public class MetadataSDK: IMetadataSDK
3131
{
3232
public SDKConfig Config { get; private set; }
3333
private const string _language = "csharp";
34-
private const string _sdkVersion = "1.13.2";
35-
private const string _sdkGenVersion = "2.93.0";
34+
private const string _sdkVersion = "1.13.3";
35+
private const string _sdkGenVersion = "2.96.3";
3636
private const string _openapiDocVersion = "0.3.0";
3737
private string _serverUrl = "";
3838
private ISpeakeasyHttpClient _defaultClient;

Speakeasy/Models/Operations/GetEmbedAccessTokenRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class GetEmbedAccessTokenRequest
2626
/// The duration (in minutes) of the embed access token.
2727
/// </summary>
2828
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=duration")]
29-
public int? Duration { get; set; }
29+
public long? Duration { get; set; }
3030

3131
/// <summary>
3232
/// The filter to apply to the query.

Speakeasy/Models/Shared/BoundedRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class BoundedRequest
4848
/// The latency of the request.
4949
/// </summary>
5050
[JsonProperty("latency")]
51-
public int Latency { get; set; }
51+
public long Latency { get; set; }
5252

5353
/// <summary>
5454
/// Metadata associated with this request
@@ -90,7 +90,7 @@ public class BoundedRequest
9090
/// The status code of the request.
9191
/// </summary>
9292
[JsonProperty("status")]
93-
public int Status { get; set; }
93+
public long Status { get; set; }
9494

9595
/// <summary>
9696
/// The version ID of the Api this request was made to.

Speakeasy/Models/Shared/Filters.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ public class Filters
2929
/// The maximum number of results to return.
3030
/// </summary>
3131
[JsonProperty("limit")]
32-
public int Limit { get; set; }
32+
public long Limit { get; set; }
3333

3434
/// <summary>
3535
/// The offset to start the query from.
3636
/// </summary>
3737
[JsonProperty("offset")]
38-
public int Offset { get; set; }
38+
public long Offset { get; set; }
3939

4040
/// <summary>
4141
/// The operator to use when combining filters.

Speakeasy/Models/Shared/UnboundedRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class UnboundedRequest
3535
/// The size of the HAR content in bytes.
3636
/// </summary>
3737
[JsonProperty("har_size_bytes")]
38-
public int HarSizeBytes { get; set; }
38+
public long HarSizeBytes { get; set; }
3939

4040
/// <summary>
4141
/// The ID of this request.

Speakeasy/Plugins.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public class PluginsSDK: IPluginsSDK
3131
{
3232
public SDKConfig Config { get; private set; }
3333
private const string _language = "csharp";
34-
private const string _sdkVersion = "1.13.2";
35-
private const string _sdkGenVersion = "2.93.0";
34+
private const string _sdkVersion = "1.13.3";
35+
private const string _sdkGenVersion = "2.96.3";
3636
private const string _openapiDocVersion = "0.3.0";
3737
private string _serverUrl = "";
3838
private ISpeakeasyHttpClient _defaultClient;

Speakeasy/Requests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public class RequestsSDK: IRequestsSDK
3131
{
3232
public SDKConfig Config { get; private set; }
3333
private const string _language = "csharp";
34-
private const string _sdkVersion = "1.13.2";
35-
private const string _sdkGenVersion = "2.93.0";
34+
private const string _sdkVersion = "1.13.3";
35+
private const string _sdkGenVersion = "2.96.3";
3636
private const string _openapiDocVersion = "0.3.0";
3737
private string _serverUrl = "";
3838
private ISpeakeasyHttpClient _defaultClient;

Speakeasy/Schemas.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public class SchemasSDK: ISchemasSDK
3636
{
3737
public SDKConfig Config { get; private set; }
3838
private const string _language = "csharp";
39-
private const string _sdkVersion = "1.13.2";
40-
private const string _sdkGenVersion = "2.93.0";
39+
private const string _sdkVersion = "1.13.3";
40+
private const string _sdkGenVersion = "2.96.3";
4141
private const string _openapiDocVersion = "0.3.0";
4242
private string _serverUrl = "";
4343
private ISpeakeasyHttpClient _defaultClient;

Speakeasy/Speakeasy.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<IsPackable>true</IsPackable>
44
<PackageId>SpeakeasySDK</PackageId>
5-
<Version>1.13.2</Version>
5+
<Version>1.13.3</Version>
66
<Authors>Speakeasy</Authors>
77
<TargetFramework>net5.0</TargetFramework>
88
<Nullable>enable</Nullable>

Speakeasy/SpeakeasySDK.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public class SpeakeasySDK: ISpeakeasySDK
4343
};
4444

4545
private const string _language = "csharp";
46-
private const string _sdkVersion = "1.13.2";
47-
private const string _sdkGenVersion = "2.93.0";
46+
private const string _sdkVersion = "1.13.3";
47+
private const string _sdkGenVersion = "2.96.3";
4848
private const string _openapiDocVersion = "0.3.0";
4949
private string _serverUrl = "";
5050
private ISpeakeasyHttpClient _defaultClient;

docs/models/operations/GetEmbedAccessTokenRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
| Field | Type | Required | Description |
77
| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- |
88
| `description` | *string* | :heavy_minus_sign: | The description of the embed access token. |
9-
| `duration` | *int* | :heavy_minus_sign: | The duration (in minutes) of the embed access token. |
9+
| `duration` | *long* | :heavy_minus_sign: | The duration (in minutes) of the embed access token. |
1010
| `filters` | [Filters](../../models/shared/Filters.md) | :heavy_minus_sign: | The filter to apply to the query. |

docs/models/shared/BoundedRequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ A BoundedRequest is a request that has been logged by the Speakeasy without the
1111
| `apiId` | *string* | :heavy_check_mark: | The ID of the Api this request was made to. |
1212
| `createdAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | Creation timestamp. |
1313
| `customerId` | *string* | :heavy_check_mark: | The ID of the customer that made this request. |
14-
| `latency` | *int* | :heavy_check_mark: | The latency of the request. |
14+
| `latency` | *long* | :heavy_check_mark: | The latency of the request. |
1515
| `metadata` | List<[RequestMetadata](../../models/shared/RequestMetadata.md)> | :heavy_minus_sign: | Metadata associated with this request |
1616
| `method` | *string* | :heavy_check_mark: | HTTP verb. |
1717
| `path` | *string* | :heavy_check_mark: | The path of the request. |
1818
| `requestFinishTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The time the request finished. |
1919
| `requestId` | *string* | :heavy_check_mark: | The ID of this request. |
2020
| `requestStartTime` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | The time the request was made. |
21-
| `status` | *int* | :heavy_check_mark: | The status code of the request. |
21+
| `status` | *long* | :heavy_check_mark: | The status code of the request. |
2222
| `versionId` | *string* | :heavy_check_mark: | The version ID of the Api this request was made to. |
2323
| `workspaceId` | *string* | :heavy_check_mark: | The workspace ID this request was made to. |

docs/models/shared/Filters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Filters are used to query requests.
88
| Field | Type | Required | Description |
99
| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
1010
| `filters` | List<[Filter](../../models/shared/Filter.md)> | :heavy_check_mark: | A list of filters to apply to the query. |
11-
| `limit` | *int* | :heavy_check_mark: | The maximum number of results to return. |
12-
| `offset` | *int* | :heavy_check_mark: | The offset to start the query from. |
11+
| `limit` | *long* | :heavy_check_mark: | The maximum number of results to return. |
12+
| `offset` | *long* | :heavy_check_mark: | The offset to start the query from. |
1313
| `operator` | *string* | :heavy_check_mark: | The operator to use when combining filters. |

docs/models/shared/UnboundedRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ An UnboundedRequest represents the HAR content capture by Speakeasy when logging
99
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
1010
| `createdAt` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_check_mark: | Creation timestamp. |
1111
| `har` | *string* | :heavy_check_mark: | The HAR content of the request. |
12-
| `harSizeBytes` | *int* | :heavy_check_mark: | The size of the HAR content in bytes. |
12+
| `harSizeBytes` | *long* | :heavy_check_mark: | The size of the HAR content in bytes. |
1313
| `requestId` | *string* | :heavy_check_mark: | The ID of this request. |
1414
| `workspaceId` | *string* | :heavy_check_mark: | The workspace ID this request was made to. |

gen.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@ configVersion: 1.0.0
22
management:
33
docChecksum: 8c4f3932e054e1b349a9a34f12cf7e8c
44
docVersion: 0.3.0
5-
speakeasyVersion: 1.77.2
6-
generationVersion: 2.93.0
5+
speakeasyVersion: 1.78.3
6+
generationVersion: 2.96.3
77
generation:
88
sdkClassName: Speakeasy
99
singleTagPerOp: false
1010
features:
1111
csharp:
12-
core: 2.85.3
12+
core: 2.85.4
1313
examples: 2.81.1
1414
globalSecurity: 2.81.1
1515
globalServerURLs: 2.82.0
1616
inputOutputModels: 2.81.1
1717
serverIDs: 2.81.1
1818
csharp:
19-
version: 1.13.2
19+
version: 1.13.3
2020
author: Speakeasy
21+
dotnetVersion: net5.0
2122
maxMethodParams: 0
2223
packageName: SpeakeasySDK

0 commit comments

Comments
 (0)