feat: include data connections and SMTP in artifact deployment

This commit is contained in:
Joseph Doherty
2026-03-17 13:48:52 -04:00
parent e313eda9fd
commit 2f3e0ceecb
17 changed files with 151 additions and 29 deletions

View File

@@ -117,7 +117,7 @@ public class MessageConventionTests
{
new("script1", "code", null, null)
},
null, null, null,
null, null, null, null, null,
DateTimeOffset.UtcNow);
var json = JsonSerializer.Serialize(msg);

View File

@@ -80,6 +80,6 @@ public class ArtifactDeploymentServiceTests
private static DeployArtifactsCommand CreateCommand()
{
return new DeployArtifactsCommand(
"dep1", null, null, null, null, DateTimeOffset.UtcNow);
"dep1", null, null, null, null, null, null, DateTimeOffset.UtcNow);
}
}