Skip to content

Commit

Permalink
Updated dotnet Released Package Version (#1715)
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 authored Jul 18, 2024
1 parent 395da6d commit 1866a46
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 16 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.7
packageVersion: 0.0.8
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.7
- SDK version: 0.0.8
- Generator version: 7.8.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen

Expand Down
1 change: 0 additions & 1 deletion connect/dotnet/src/Trinsic.Connect/Api/SessionsApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

namespace Trinsic.Connect.Api;


/// <summary>
/// Represents a collection of functions to interact with the API endpoints
/// </summary>
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.7";
public const string Version = "0.0.8";

/// <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.7/csharp");
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.0.8/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.7\n";
report += " SDK Package Version: 0.0.8\n";

return report;
}
Expand Down
1 change: 0 additions & 1 deletion connect/dotnet/src/Trinsic.Connect/Client/FileParameter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

namespace Trinsic.Connect.Client;


/// <summary>
/// Represents a File passed to the API as a Parameter, allows using different backends for files
/// </summary>
Expand Down
11 changes: 7 additions & 4 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.7
- SDK version: 0.0.8
- Generator version: 7.8.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen

Expand Down Expand Up @@ -149,17 +149,20 @@ Class | Method | HTTP request | Description
<a id="documentation-for-models"></a>
## Documentation for Models

- [Model.Address](docs/Address.md)
- [Model.CancelSessionResponse](docs/CancelSessionResponse.md)
- [Model.CreateSessionRequest](docs/CreateSessionRequest.md)
- [Model.CreateSessionResponse](docs/CreateSessionResponse.md)
- [Model.DisclosedFields](docs/DisclosedFields.md)
- [Model.DisclosedFieldsRequest](docs/DisclosedFieldsRequest.md)
- [Model.DocumentData](docs/DocumentData.md)
- [Model.FailureMessage](docs/FailureMessage.md)
- [Model.GetSessionResponseV1](docs/GetSessionResponseV1.md)
- [Model.GovernmentIDOptions](docs/GovernmentIDOptions.md)
- [Model.GovernmentIDOptionsRequest](docs/GovernmentIDOptionsRequest.md)
- [Model.IDVSessionState](docs/IDVSessionState.md)
- [Model.IdentityData](docs/IdentityData.md)
- [Model.ListSessionsResponse](docs/ListSessionsResponse.md)
- [Model.NormalizedIdentityData](docs/NormalizedIdentityData.md)
- [Model.OrderDirection](docs/OrderDirection.md)
- [Model.PersonData](docs/PersonData.md)
- [Model.Session](docs/Session.md)
- [Model.SessionFailCode](docs/SessionFailCode.md)
- [Model.SessionOrdering](docs/SessionOrdering.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.7</Version>
<Version>0.0.8</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 1866a46

Please sign in to comment.