Skip to content

Commit 295c885

Browse files
authored
Merge branch 'main' into feat/chunked-stack-uploads
2 parents 215e2a2 + 42f9a5c commit 295c885

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

internal/exec/describe_affected_upload.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ import (
1414
// - included_in_dependents: Used in filtering logic
1515
// - dependents: Nested stack processing (recursively stripped)
1616
// - settings.pro: Workflow dispatch configuration
17+
// - deleted: Marks components removed in HEAD.
18+
// - deletion_type: Whether a component or entire stack was deleted.
1719
//
1820
// Fields removed:
1921
// - settings.depends_on: Dependency graph (largest contributor to size)
@@ -36,6 +38,8 @@ func stripAffected(a schema.Affected) schema.Affected {
3638
IncludedInDependents: a.IncludedInDependents,
3739
Dependents: stripDependents(a.Dependents),
3840
Settings: stripSettings(a.Settings),
41+
Deleted: a.Deleted,
42+
DeletionType: a.DeletionType,
3943
}
4044
}
4145

0 commit comments

Comments
 (0)