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
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ public class StorageConsumptionPart
/// The range of timestamps covered by the result.
/// </summary>
public DateTimeRange Range { get; set; }

/// <summary>
/// The available range of timestamps.
/// </summary>
public DateTimeRange FullRange { get; set; }

/// <summary>
/// The duration of the timestamp interval covered by each result.
Expand Down
5 changes: 5 additions & 0 deletions src/Seq.Api/Model/Users/AuthProviderInfoPart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,10 @@ public class AuthProviderInfoPart
/// log in using the default provider.
/// </summary>
public bool IsAlternative { get; set; }

/// <summary>
/// A template for the URL where the user can log in.
/// </summary>
public Link Challenge { get; set; }
}
}
2 changes: 1 addition & 1 deletion src/Seq.Api/Seq.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Tavis.UriTemplates" Version="1.1.1" />
</ItemGroup>

Expand Down