Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libs/GitHub/Generated/GitHub.Models.DiffEntry.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public sealed partial class DiffEntry
/// <example>bbcd538c8e72b8c175046e27cc8f907076331401</example>
[global::System.Text.Json.Serialization.JsonPropertyName("sha")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string Sha { get; set; }
public required string? Sha { get; set; }

/// <summary>
/// Example: file1.txt
Expand Down Expand Up @@ -141,7 +141,7 @@ public sealed partial class DiffEntry
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
public DiffEntry(
string sha,
string? sha,
string filename,
global::GitHub.DiffEntryStatus status,
int additions,
Expand Down
1 change: 1 addition & 0 deletions src/libs/GitHub/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88621,6 +88621,7 @@ components:
properties:
sha:
type: string
nullable: true
example: bbcd538c8e72b8c175046e27cc8f907076331401
filename:
type: string
Expand Down
Loading