Model Ingestion Version message (#427)
.NET Build and Publish / build (push) Has been cancelled

This commit is contained in:
Jedd Morgan
2026-01-26 16:03:16 +00:00
committed by GitHub
parent 94b0473157
commit 49ef9917c4
2 changed files with 7 additions and 2 deletions
@@ -19,7 +19,12 @@ public record ModelIngestionCreateInput(
public record ModelIngestionUpdateInput(string ingestionId, string projectId, string progressMessage, double? progress);
public record ModelIngestionSuccessInput(string ingestionId, string projectId, string rootObjectId);
public record ModelIngestionSuccessInput(
string ingestionId,
string projectId,
string rootObjectId,
string? versionMessage
);
public record ModelIngestionFailedInput(
string ingestionId,
@@ -130,7 +130,7 @@ public sealed class ModelIngestionResourceTests : IAsyncLifetime
new(true, true)
);
ModelIngestionSuccessInput finish = new(ingest.id, _project.id, sendResult.RootId);
ModelIngestionSuccessInput finish = new(ingest.id, _project.id, sendResult.RootId, "yay!");
string versionId = await Sut.Complete(finish);
Version version = await _testUser.Version.Get(versionId, _project.id);
Assert.Equal(version.id, versionId);