Skip to content

Commit

Permalink
Updated dotnet Released Package Version (#1707)
Browse files Browse the repository at this point in the history
Co-authored-by: geel9 <[email protected]>
  • Loading branch information
github-actions[bot] and geel9 committed Jul 5, 2024
1 parent f44d38f commit 12d68bc
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 13 deletions.
2 changes: 1 addition & 1 deletion connect/config-csharp.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
additionalProperties:
# https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/csharp.md
packageVersion: 0.0.6
packageVersion: 0.0.7
packageName: Trinsic.Connect
packageTitle: Trinsic Connect SDK
packageCompany: trinsic.id
Expand Down
2 changes: 1 addition & 1 deletion connect/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v1
- SDK version: 0.0.6
- SDK version: 0.0.7
- Generator version: 7.8.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen

Expand Down
26 changes: 19 additions & 7 deletions connect/dotnet/src/Trinsic.Connect/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "0.0.6";
public const string Version = "0.0.7";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down Expand Up @@ -115,7 +115,7 @@ public class Configuration : IReadableConfiguration
public Configuration()
{
Proxy = null;
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.0.6/csharp");
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.0.7/csharp");
BasePath = "https://connect.trinsic.id";
DefaultHeaders = new ConcurrentDictionary<string, string>();
ApiKey = new ConcurrentDictionary<string, string>();
Expand Down Expand Up @@ -362,7 +362,10 @@ public virtual string DateTimeFormat
public virtual IDictionary<string, string> ApiKeyPrefix
{
get => _apiKeyPrefix;
set => _apiKeyPrefix = value ?? throw new InvalidOperationException("ApiKeyPrefix collection may not be null.");
set
{
_apiKeyPrefix = value ?? throw new InvalidOperationException("ApiKeyPrefix collection may not be null.");
}
}

/// <summary>
Expand All @@ -372,7 +375,10 @@ public virtual IDictionary<string, string> ApiKeyPrefix
public virtual IDictionary<string, string> ApiKey
{
get => _apiKey;
set => _apiKey = value ?? throw new InvalidOperationException("ApiKey collection may not be null.");
set
{
_apiKey = value ?? throw new InvalidOperationException("ApiKey collection may not be null.");
}
}

/// <summary>
Expand All @@ -382,7 +388,10 @@ public virtual IDictionary<string, string> ApiKey
public virtual IList<IReadOnlyDictionary<string, object>> Servers
{
get => _servers;
set => _servers = value ?? throw new InvalidOperationException("Servers may not be null.");
set
{
_servers = value ?? throw new InvalidOperationException("Servers may not be null.");
}
}

/// <summary>
Expand All @@ -392,7 +401,10 @@ public virtual IList<IReadOnlyDictionary<string, object>> Servers
public virtual IReadOnlyDictionary<string, List<IReadOnlyDictionary<string, object>>> OperationServers
{
get => _operationServers;
set => _operationServers = value ?? throw new InvalidOperationException("Operation servers may not be null.");
set
{
_operationServers = value ?? throw new InvalidOperationException("Operation servers may not be null.");
}
}

/// <summary>
Expand Down Expand Up @@ -515,7 +527,7 @@ public static string ToDebugReport()
report += " OS: " + System.Environment.OSVersion + "\n";
report += " .NET Framework Version: " + System.Environment.Version + "\n";
report += " Version of the API: v1\n";
report += " SDK Package Version: 0.0.6\n";
report += " SDK Package Version: 0.0.7\n";

return report;
}
Expand Down
5 changes: 2 additions & 3 deletions connect/dotnet/src/Trinsic.Connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v1
- SDK version: 0.0.6
- SDK version: 0.0.7
- Generator version: 7.8.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen

Expand Down Expand Up @@ -143,7 +143,7 @@ Class | Method | HTTP request | Description
*SessionsApi* | [**CreateSession**](docs/SessionsApi.md#createsession) | **POST** /api/v1/sessions |
*SessionsApi* | [**GetSession**](docs/SessionsApi.md#getsession) | **GET** /api/v1/sessions/{sessionId} |
*SessionsApi* | [**ListSessions**](docs/SessionsApi.md#listsessions) | **GET** /api/v1/sessions |
*SessionsApi* | [**RedactSession**](docs/SessionsApi.md#redactsession) | **POST** /api/v1/sessions/redact |
*SessionsApi* | [**RedactSession**](docs/SessionsApi.md#redactsession) | **POST** /api/v1/sessions/{sessionId}/redact |


<a id="documentation-for-models"></a>
Expand All @@ -157,7 +157,6 @@ Class | Method | HTTP request | Description
- [Model.GovernmentIDOptions](docs/GovernmentIDOptions.md)
- [Model.GovernmentIDOptionsRequest](docs/GovernmentIDOptionsRequest.md)
- [Model.IDVSessionState](docs/IDVSessionState.md)
- [Model.ListSessionsRequest](docs/ListSessionsRequest.md)
- [Model.ListSessionsResponse](docs/ListSessionsResponse.md)
- [Model.NormalizedIdentityData](docs/NormalizedIdentityData.md)
- [Model.OrderDirection](docs/OrderDirection.md)
Expand Down
2 changes: 1 addition & 1 deletion connect/dotnet/src/Trinsic.Connect/Trinsic.Connect.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Description>Trinsic Connect SDK</Description>
<Copyright>No Copyright</Copyright>
<RootNamespace>Trinsic.Connect</RootNamespace>
<Version>0.0.6</Version>
<Version>0.0.7</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Trinsic.Connect.xml</DocumentationFile>
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit 12d68bc

Please sign in to comment.