Skip to content

Commit

Permalink
v1.8.0 (#16)
Browse files Browse the repository at this point in the history
* v1.8.0

* Fix GitIgnore

---------

Co-authored-by: JT <[email protected]>
  • Loading branch information
Hawxy and Hawxy authored Nov 26, 2024
1 parent dc6f4db commit 47ac10f
Show file tree
Hide file tree
Showing 362 changed files with 4,218 additions and 590 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ Generated_Code/
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
Expand Down
119 changes: 60 additions & 59 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,60 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/build",
"title": "Build Schema",
"properties": {
"NugetApiKey": {
"type": "string",
"description": "Nuget Api Key",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
}
},
"definitions": {
"build": {
"type": "object",
"Host": {
"type": "string",
"enum": [
"AppVeyor",
"AzurePipelines",
"Bamboo",
"Bitbucket",
"Bitrise",
"GitHubActions",
"GitLab",
"Jenkins",
"Rider",
"SpaceAutomation",
"TeamCity",
"Terminal",
"TravisCI",
"VisualStudio",
"VSCode"
]
},
"ExecutableTarget": {
"type": "string",
"enum": [
"Clean",
"Compile",
"NugetPack",
"NugetPush",
"Restore",
"Test",
"Update"
]
},
"Verbosity": {
"type": "string",
"description": "",
"enum": [
"Verbose",
"Normal",
"Minimal",
"Quiet"
]
},
"NukeBuild": {
"properties": {
"Continue": {
"type": "boolean",
Expand All @@ -15,35 +65,13 @@
"description": "Shows the help text for this build assembly"
},
"Host": {
"type": "string",
"description": "Host for execution. Default is 'automatic'",
"enum": [
"AppVeyor",
"AzurePipelines",
"Bamboo",
"Bitbucket",
"Bitrise",
"GitHubActions",
"GitLab",
"Jenkins",
"Rider",
"SpaceAutomation",
"TeamCity",
"Terminal",
"TravisCI",
"VisualStudio",
"VSCode"
]
"$ref": "#/definitions/Host"
},
"NoLogo": {
"type": "boolean",
"description": "Disables displaying the NUKE logo"
},
"NugetApiKey": {
"type": "string",
"description": "Nuget Api Key",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
"Partition": {
"type": "string",
"description": "Partition to use on CI"
Expand All @@ -67,49 +95,22 @@
"type": "array",
"description": "List of targets to be skipped. Empty list skips all dependencies",
"items": {
"type": "string",
"enum": [
"Clean",
"Compile",
"NugetPack",
"NugetPush",
"Restore",
"Test",
"Update"
]
"$ref": "#/definitions/ExecutableTarget"
}
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
},
"Target": {
"type": "array",
"description": "List of targets to be invoked. Default is '{default_target}'",
"items": {
"type": "string",
"enum": [
"Clean",
"Compile",
"NugetPack",
"NugetPush",
"Restore",
"Test",
"Update"
]
"$ref": "#/definitions/ExecutableTarget"
}
},
"Verbosity": {
"type": "string",
"description": "Logging verbosity during build execution. Default is 'Normal'",
"enum": [
"Minimal",
"Normal",
"Quiet",
"Verbose"
]
"$ref": "#/definitions/Verbosity"
}
}
}
}
},
"$ref": "#/definitions/NukeBuild"
}
2 changes: 1 addition & 1 deletion Package.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>1.7.0</Version>
<Version>1.8.0</Version>
<Authors>Hawxy</Authors>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Playwright" Version="1.47.0" />
<PackageReference Include="Nuke.Common" Version="8.1.0" />
<PackageDownload Include="Microsoft.OpenApi.Kiota" Version="[1.18.0]" />
<PackageDownload Include="Microsoft.OpenApi.Kiota" Version="[1.20.0]" />
</ItemGroup>

</Project>
12 changes: 6 additions & 6 deletions src/Clerk.Net/Clerk.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.13.0" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.13.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.13.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.13.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.13.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.13.0" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.15.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace Clerk.Net.Client.Actor_tokens
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
#pragma warning disable CS1591
public partial class Actor_tokensPostRequestBody : IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Clerk.Net.Client.Actor_tokens
/// <summary>
/// The actor payload. It needs to include a sub property which should contain the ID of the actor.This whole payload will be also included in the JWT session token.
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class Actor_tokensPostRequestBody_actor : IAdditionalDataHolder, IParsable
{
/// <summary>Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Clerk.Net.Client.Actor_tokens
/// <summary>
/// Builds and executes requests for operations under \actor_tokens
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class Actor_tokensRequestBuilder : BaseRequestBuilder
{
/// <summary>Gets an item from the Clerk.Net.Client.actor_tokens.item collection</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Clerk.Net.Client.Actor_tokens.Item.Revoke
/// <summary>
/// Builds and executes requests for operations under \actor_tokens\{actor_token_id}\revoke
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class RevokeRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Clerk.Net.Client.Actor_tokens.Item
/// <summary>
/// Builds and executes requests for operations under \actor_tokens\{actor_token_id}
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class WithActor_token_ItemRequestBuilder : BaseRequestBuilder
{
/// <summary>The revoke property</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace Clerk.Net.Client.Allowlist_identifiers
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
#pragma warning disable CS1591
public partial class Allowlist_identifiersPostRequestBody : IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Clerk.Net.Client.Allowlist_identifiers
/// <summary>
/// Builds and executes requests for operations under \allowlist_identifiers
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class Allowlist_identifiersRequestBuilder : BaseRequestBuilder
{
/// <summary>Gets an item from the Clerk.Net.Client.allowlist_identifiers.item collection</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Clerk.Net.Client.Allowlist_identifiers.Item
/// <summary>
/// Builds and executes requests for operations under \allowlist_identifiers\{identifier_id}
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class WithIdentifier_ItemRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Clerk.Net.Client.Beta_features
/// <summary>
/// Builds and executes requests for operations under \beta_features
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class Beta_featuresRequestBuilder : BaseRequestBuilder
{
/// <summary>The domain property</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace Clerk.Net.Client.Beta_features.Domain
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
#pragma warning disable CS1591
public partial class DomainPutRequestBody : IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Clerk.Net.Client.Beta_features.Domain
/// <summary>
/// Builds and executes requests for operations under \beta_features\domain
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class DomainRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace Clerk.Net.Client.Beta_features.Instance_settings
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
#pragma warning disable CS1591
public partial class Instance_settingsPatchRequestBody : IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace Clerk.Net.Client.Beta_features.Instance_settings
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
#pragma warning disable CS1591
public partial class Instance_settingsPatchResponse : IAdditionalDataHolder, IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Clerk.Net.Client.Beta_features.Instance_settings
{
/// <summary>String representing the object&apos;s type. Objects of the same type share the same value.</summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public enum Instance_settingsPatchResponse_object
{
[EnumMember(Value = "instance_settings")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Clerk.Net.Client.Beta_features.Instance_settings
/// <summary>
/// Builds and executes requests for operations under \beta_features\instance_settings
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class Instance_settingsRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace Clerk.Net.Client.Blocklist_identifiers
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
#pragma warning disable CS1591
public partial class Blocklist_identifiersPostRequestBody : IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Clerk.Net.Client.Blocklist_identifiers
/// <summary>
/// Builds and executes requests for operations under \blocklist_identifiers
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class Blocklist_identifiersRequestBuilder : BaseRequestBuilder
{
/// <summary>Gets an item from the Clerk.Net.Client.blocklist_identifiers.item collection</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Clerk.Net.Client.Blocklist_identifiers.Item
/// <summary>
/// Builds and executes requests for operations under \blocklist_identifiers\{identifier_id}
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
public partial class WithIdentifier_ItemRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Loading

0 comments on commit 47ac10f

Please sign in to comment.