Skip to content

Commit

Permalink
Changes in generated code (#128)
Browse files Browse the repository at this point in the history
* New updates to generated code

* New updates to generated code
  • Loading branch information
octokitbot authored Oct 7, 2024
1 parent f77553c commit 0b165f2
Show file tree
Hide file tree
Showing 2,456 changed files with 3,111 additions and 2,893 deletions.
7 changes: 5 additions & 2 deletions cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ static async Task Main(string[] args)
{
if (args == null || args.Length == 0)
{
Console.WriteLine("Please provide an argument: 'AppInstallationToken' or 'PersonalAccessToken'");
Console.WriteLine("Please provide an argument: 'AppInstallationToken' or 'PersonalAccessToken' or 'Sandbox'");
return;
}

Expand All @@ -35,8 +35,11 @@ static async Task Main(string[] args)
case "PersonalAccessToken":
await PersonalAccessToken.Run(approach);
break;
case "Sandbox":
await Example.Run();
break;
default:
Console.WriteLine("Invalid argument. Please provide 'AppInstallationToken' or 'PersonalAccessToken'");
Console.WriteLine("Invalid argument. Please provide 'AppInstallationToken', 'PersonalAccessToken', or 'Sandbox'");
break;
}
}
Expand Down
21 changes: 21 additions & 0 deletions cli/SandBox.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using GitHub;
using GitHub.Octokit.Client;
using GitHub.Octokit.Client.Authentication;
using Microsoft.Kiota.Abstractions;
using System.Net.Http;
using System.IO;


public class Example
{
public static async Task Run()
{
Console.WriteLine("Hello, World!");
var tokenProvider = new TokenProvider(Environment.GetEnvironmentVariable("GITHUB_TOKEN") ?? "");
var adapter = RequestAdapter.Create(new TokenAuthProvider(tokenProvider));
var gitHubClient = new GitHubClient(adapter);

var response = await gitHubClient.Repos["octokit"]["octokit.net"].Contents["LICENSE.txt"].GetAsync();
var content = await response.ReadContentAsStringAsync();
}
}
2 changes: 1 addition & 1 deletion cli/cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<RestoreSources>$(RestoreSources);../src/bin/Debug;https://api.nuget.org/v3/index.json</RestoreSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.0.2" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.1.0" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.12.4" />
Expand Down
15 changes: 8 additions & 7 deletions src/GitHub.Octokit.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@

<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.1.0" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.12.4" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.13.0" />
<PackageReference Include="Microsoft.Kiota.Bundle" 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.Authentication.Azure" Version="1.13.0" />
<None Include="NugetREADME.md" Pack="true" PackagePath="\" />
<None Include="octokit.png" Pack="true" PackagePath="\" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/GitHub/Advisories/AdvisoriesRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace GitHub.Advisories
/// <summary>
/// Builds and executes requests for operations under \advisories
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class AdvisoriesRequestBuilder : BaseRequestBuilder
{
/// <summary>Gets an item from the GitHub.advisories.item collection</summary>
Expand Down Expand Up @@ -104,7 +104,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<gl
/// <summary>
/// Lists all global security advisories that match the specified parameters. If no other parameters are defined, the request will return only GitHub-reviewed advisories that are not malware.By default, all responses will exclude advisories for malware, because malware are not standard vulnerabilities. To list advisories for malware, you must include the `type` parameter in your request, with the value `malware`. For more information about the different types of security advisories, see &quot;[About the GitHub Advisory database](https://docs.github.com/code-security/security-advisories/global-security-advisories/about-the-github-advisory-database#about-types-of-security-advisories).&quot;
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class AdvisoriesRequestBuilderGetQueryParameters
{
/// <summary>If specified, only return advisories that affect any of `package` or `package@version`. A maximum of 1000 packages can be specified.If the query parameter causes the URL to exceed the maximum URL length supported by your client, you must specify fewer packages.Example: `affects=package1,[email protected],package3@^2.0.0` or `affects[]=package1&amp;affects[][email protected]`</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/Advisories/GetDirectionQueryParameterType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
namespace GitHub.Advisories
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public enum GetDirectionQueryParameterType
#pragma warning restore CS1591
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/Advisories/GetSeverityQueryParameterType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
namespace GitHub.Advisories
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public enum GetSeverityQueryParameterType
#pragma warning restore CS1591
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/Advisories/GetSortQueryParameterType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
namespace GitHub.Advisories
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public enum GetSortQueryParameterType
#pragma warning restore CS1591
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/Advisories/GetTypeQueryParameterType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
namespace GitHub.Advisories
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public enum GetTypeQueryParameterType
#pragma warning restore CS1591
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/Advisories/Item/WithGhsa_ItemRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.Advisories.Item
/// <summary>
/// Builds and executes requests for operations under \advisories\{ghsa_id}
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class WithGhsa_ItemRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/App/AppRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace GitHub.App
/// <summary>
/// Builds and executes requests for operations under \app
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class AppRequestBuilder : BaseRequestBuilder
{
/// <summary>The hook property</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/App/Hook/Config/ConfigPatchRequestBody.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System;
namespace GitHub.App.Hook.Config
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public partial class ConfigPatchRequestBody : IAdditionalDataHolder, IParsable
#pragma warning restore CS1591
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/App/Hook/Config/ConfigRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.App.Hook.Config
/// <summary>
/// Builds and executes requests for operations under \app\hook\config
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class ConfigRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/GitHub/App/Hook/Deliveries/DeliveriesRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace GitHub.App.Hook.Deliveries
/// <summary>
/// Builds and executes requests for operations under \app\hook\deliveries
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class DeliveriesRequestBuilder : BaseRequestBuilder
{
/// <summary>Gets an item from the GitHub.app.hook.deliveries.item collection</summary>
Expand Down Expand Up @@ -104,7 +104,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<gl
/// <summary>
/// Returns a list of webhook deliveries for the webhook configured for a GitHub App.You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class DeliveriesRequestBuilderGetQueryParameters
{
/// <summary>Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous page cursors.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace GitHub.App.Hook.Deliveries.Item.Attempts
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public partial class AttemptsPostResponse : IAdditionalDataHolder, IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.App.Hook.Deliveries.Item.Attempts
/// <summary>
/// Builds and executes requests for operations under \app\hook\deliveries\{delivery_id}\attempts
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class AttemptsRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace GitHub.App.Hook.Deliveries.Item
/// <summary>
/// Builds and executes requests for operations under \app\hook\deliveries\{delivery_id}
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class WithDelivery_ItemRequestBuilder : BaseRequestBuilder
{
/// <summary>The attempts property</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/App/Hook/HookRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace GitHub.App.Hook
/// <summary>
/// Builds and executes requests for operations under \app\hook
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class HookRequestBuilder : BaseRequestBuilder
{
/// <summary>The config property</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.App.InstallationRequests
/// <summary>
/// Builds and executes requests for operations under \app\installation-requests
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class InstallationRequestsRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down Expand Up @@ -89,7 +89,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<gl
/// <summary>
/// Lists all the pending installation requests for the authenticated GitHub App.
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class InstallationRequestsRequestBuilderGetQueryParameters
{
/// <summary>The page number of the results to fetch. For more information, see &quot;[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).&quot;</summary>
Expand Down
4 changes: 2 additions & 2 deletions src/GitHub/App/Installations/InstallationsRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace GitHub.App.Installations
/// <summary>
/// Builds and executes requests for operations under \app\installations
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class InstallationsRequestBuilder : BaseRequestBuilder
{
/// <summary>Gets an item from the GitHub.app.installations.item collection</summary>
Expand Down Expand Up @@ -97,7 +97,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<gl
/// <summary>
/// The permissions the installation has are included under the `permissions` key.You must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class InstallationsRequestBuilderGetQueryParameters
{
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System;
namespace GitHub.App.Installations.Item.Access_tokens
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public partial class Access_tokensPostRequestBody : IAdditionalDataHolder, IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.App.Installations.Item.Access_tokens
/// <summary>
/// Builds and executes requests for operations under \app\installations\{installation_id}\access_tokens
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class Access_tokensRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.App.Installations.Item.Suspended
/// <summary>
/// Builds and executes requests for operations under \app\installations\{installation_id}\suspended
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class SuspendedRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace GitHub.App.Installations.Item
/// <summary>
/// Builds and executes requests for operations under \app\installations\{installation_id}
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class WithInstallation_ItemRequestBuilder : BaseRequestBuilder
{
/// <summary>The access_tokens property</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/AppManifests/AppManifestsRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace GitHub.AppManifests
/// <summary>
/// Builds and executes requests for operations under \app-manifests
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class AppManifestsRequestBuilder : BaseRequestBuilder
{
/// <summary>Gets an item from the GitHub.appManifests.item collection</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.AppManifests.Item.Conversions
/// <summary>
/// Builds and executes requests for operations under \app-manifests\{code}\conversions
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class ConversionsRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/AppManifests/Item/Conversions/Integration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace GitHub.AppManifests.Item.Conversions
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public partial class Integration : global::GitHub.Models.Integration, IParsable
#pragma warning restore CS1591
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/AppManifests/Item/WithCodeItemRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace GitHub.AppManifests.Item
/// <summary>
/// Builds and executes requests for operations under \app-manifests\{code}
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class WithCodeItemRequestBuilder : BaseRequestBuilder
{
/// <summary>The conversions property</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/Applications/ApplicationsRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace GitHub.Applications
/// <summary>
/// Builds and executes requests for operations under \applications
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class ApplicationsRequestBuilder : BaseRequestBuilder
{
/// <summary>Gets an item from the GitHub.applications.item collection</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace GitHub.Applications.Item.Grant
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public partial class GrantDeleteRequestBody : IAdditionalDataHolder, IParsable
#pragma warning restore CS1591
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub/Applications/Item/Grant/GrantRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.Applications.Item.Grant
/// <summary>
/// Builds and executes requests for operations under \applications\{client_id}\grant
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class GrantRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System;
namespace GitHub.Applications.Item.Token.Scoped
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public partial class ScopedPostRequestBody : IAdditionalDataHolder, IParsable
#pragma warning restore CS1591
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GitHub.Applications.Item.Token.Scoped
/// <summary>
/// Builds and executes requests for operations under \applications\{client_id}\token\scoped
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
public partial class ScopedRequestBuilder : BaseRequestBuilder
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System;
namespace GitHub.Applications.Item.Token
{
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.18.0")]
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.19.0")]
#pragma warning disable CS1591
public partial class TokenDeleteRequestBody : IAdditionalDataHolder, IParsable
#pragma warning restore CS1591
Expand Down
Loading

0 comments on commit 0b165f2

Please sign in to comment.