File tree Expand file tree Collapse file tree 19 files changed +45
-34
lines changed Expand file tree Collapse file tree 19 files changed +45
-34
lines changed Original file line number Diff line number Diff line change @@ -168,4 +168,14 @@ Based on:
168
168
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
169
169
- Speakeasy CLI 1.77.2 (2.93.0) https://github.com/speakeasy-api/speakeasy
170
170
### 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 - .
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ public class ApiEndpointsSDK: IApiEndpointsSDK
36
36
{
37
37
public SDKConfig Config { get ; private set ; }
38
38
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 " ;
41
41
private const string _openapiDocVersion = "0.3.0" ;
42
42
private string _serverUrl = "" ;
43
43
private ISpeakeasyHttpClient _defaultClient ;
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ public class ApisSDK: IApisSDK
34
34
{
35
35
public SDKConfig Config { get ; private set ; }
36
36
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 " ;
39
39
private const string _openapiDocVersion = "0.3.0" ;
40
40
private string _serverUrl = "" ;
41
41
private ISpeakeasyHttpClient _defaultClient ;
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ public class EmbedsSDK: IEmbedsSDK
31
31
{
32
32
public SDKConfig Config { get ; private set ; }
33
33
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 " ;
36
36
private const string _openapiDocVersion = "0.3.0" ;
37
37
private string _serverUrl = "" ;
38
38
private ISpeakeasyHttpClient _defaultClient ;
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ public class MetadataSDK: IMetadataSDK
31
31
{
32
32
public SDKConfig Config { get ; private set ; }
33
33
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 " ;
36
36
private const string _openapiDocVersion = "0.3.0" ;
37
37
private string _serverUrl = "" ;
38
38
private ISpeakeasyHttpClient _defaultClient ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class GetEmbedAccessTokenRequest
26
26
/// The duration (in minutes) of the embed access token.
27
27
/// </summary>
28
28
[ SpeakeasyMetadata ( "queryParam:style=form,explode=true,name=duration" ) ]
29
- public int ? Duration { get ; set ; }
29
+ public long ? Duration { get ; set ; }
30
30
31
31
/// <summary>
32
32
/// The filter to apply to the query.
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public class BoundedRequest
48
48
/// The latency of the request.
49
49
/// </summary>
50
50
[ JsonProperty ( "latency" ) ]
51
- public int Latency { get ; set ; }
51
+ public long Latency { get ; set ; }
52
52
53
53
/// <summary>
54
54
/// Metadata associated with this request
@@ -90,7 +90,7 @@ public class BoundedRequest
90
90
/// The status code of the request.
91
91
/// </summary>
92
92
[ JsonProperty ( "status" ) ]
93
- public int Status { get ; set ; }
93
+ public long Status { get ; set ; }
94
94
95
95
/// <summary>
96
96
/// The version ID of the Api this request was made to.
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ public class Filters
29
29
/// The maximum number of results to return.
30
30
/// </summary>
31
31
[ JsonProperty ( "limit" ) ]
32
- public int Limit { get ; set ; }
32
+ public long Limit { get ; set ; }
33
33
34
34
/// <summary>
35
35
/// The offset to start the query from.
36
36
/// </summary>
37
37
[ JsonProperty ( "offset" ) ]
38
- public int Offset { get ; set ; }
38
+ public long Offset { get ; set ; }
39
39
40
40
/// <summary>
41
41
/// The operator to use when combining filters.
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class UnboundedRequest
35
35
/// The size of the HAR content in bytes.
36
36
/// </summary>
37
37
[ JsonProperty ( "har_size_bytes" ) ]
38
- public int HarSizeBytes { get ; set ; }
38
+ public long HarSizeBytes { get ; set ; }
39
39
40
40
/// <summary>
41
41
/// The ID of this request.
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ public class PluginsSDK: IPluginsSDK
31
31
{
32
32
public SDKConfig Config { get ; private set ; }
33
33
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 " ;
36
36
private const string _openapiDocVersion = "0.3.0" ;
37
37
private string _serverUrl = "" ;
38
38
private ISpeakeasyHttpClient _defaultClient ;
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ public class RequestsSDK: IRequestsSDK
31
31
{
32
32
public SDKConfig Config { get ; private set ; }
33
33
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 " ;
36
36
private const string _openapiDocVersion = "0.3.0" ;
37
37
private string _serverUrl = "" ;
38
38
private ISpeakeasyHttpClient _defaultClient ;
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ public class SchemasSDK: ISchemasSDK
36
36
{
37
37
public SDKConfig Config { get ; private set ; }
38
38
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 " ;
41
41
private const string _openapiDocVersion = "0.3.0" ;
42
42
private string _serverUrl = "" ;
43
43
private ISpeakeasyHttpClient _defaultClient ;
Original file line number Diff line number Diff line change 2
2
<PropertyGroup >
3
3
<IsPackable >true</IsPackable >
4
4
<PackageId >SpeakeasySDK</PackageId >
5
- <Version >1.13.2 </Version >
5
+ <Version >1.13.3 </Version >
6
6
<Authors >Speakeasy</Authors >
7
7
<TargetFramework >net5.0</TargetFramework >
8
8
<Nullable >enable</Nullable >
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ public class SpeakeasySDK: ISpeakeasySDK
43
43
} ;
44
44
45
45
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 " ;
48
48
private const string _openapiDocVersion = "0.3.0" ;
49
49
private string _serverUrl = "" ;
50
50
private ISpeakeasyHttpClient _defaultClient ;
Original file line number Diff line number Diff line change 6
6
| Field | Type | Required | Description |
7
7
| ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- |
8
8
| ` 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. |
10
10
| ` filters ` | [ Filters] ( ../../models/shared/Filters.md ) | :heavy_minus_sign : | The filter to apply to the query. |
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ A BoundedRequest is a request that has been logged by the Speakeasy without the
11
11
| ` apiId ` | * string* | :heavy_check_mark : | The ID of the Api this request was made to. |
12
12
| ` createdAt ` | [ DateTime] ( https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0 ) | :heavy_check_mark : | Creation timestamp. |
13
13
| ` 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. |
15
15
| ` metadata ` | List<[ RequestMetadata] ( ../../models/shared/RequestMetadata.md ) > | :heavy_minus_sign : | Metadata associated with this request |
16
16
| ` method ` | * string* | :heavy_check_mark : | HTTP verb. |
17
17
| ` path ` | * string* | :heavy_check_mark : | The path of the request. |
18
18
| ` requestFinishTime ` | [ DateTime] ( https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0 ) | :heavy_check_mark : | The time the request finished. |
19
19
| ` requestId ` | * string* | :heavy_check_mark : | The ID of this request. |
20
20
| ` 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. |
22
22
| ` versionId ` | * string* | :heavy_check_mark : | The version ID of the Api this request was made to. |
23
23
| ` workspaceId ` | * string* | :heavy_check_mark : | The workspace ID this request was made to. |
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ Filters are used to query requests.
8
8
| Field | Type | Required | Description |
9
9
| --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
10
10
| ` 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. |
13
13
| ` operator ` | * string* | :heavy_check_mark : | The operator to use when combining filters. |
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ An UnboundedRequest represents the HAR content capture by Speakeasy when logging
9
9
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
10
10
| ` createdAt ` | [ DateTime] ( https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0 ) | :heavy_check_mark : | Creation timestamp. |
11
11
| ` 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. |
13
13
| ` requestId ` | * string* | :heavy_check_mark : | The ID of this request. |
14
14
| ` workspaceId ` | * string* | :heavy_check_mark : | The workspace ID this request was made to. |
Original file line number Diff line number Diff line change @@ -2,21 +2,22 @@ configVersion: 1.0.0
2
2
management :
3
3
docChecksum : 8c4f3932e054e1b349a9a34f12cf7e8c
4
4
docVersion : 0.3.0
5
- speakeasyVersion : 1.77.2
6
- generationVersion : 2.93.0
5
+ speakeasyVersion : 1.78.3
6
+ generationVersion : 2.96.3
7
7
generation :
8
8
sdkClassName : Speakeasy
9
9
singleTagPerOp : false
10
10
features :
11
11
csharp :
12
- core : 2.85.3
12
+ core : 2.85.4
13
13
examples : 2.81.1
14
14
globalSecurity : 2.81.1
15
15
globalServerURLs : 2.82.0
16
16
inputOutputModels : 2.81.1
17
17
serverIDs : 2.81.1
18
18
csharp :
19
- version : 1.13.2
19
+ version : 1.13.3
20
20
author : Speakeasy
21
+ dotnetVersion : net5.0
21
22
maxMethodParams : 0
22
23
packageName : SpeakeasySDK
You can’t perform that action at this time.
0 commit comments