Skip to content

Commit 5e5b5e7

Browse files
authored
Add SBOM gen flag to repository struture (#554)
1 parent 1b60399 commit 5e5b5e7

1 file changed

Lines changed: 23 additions & 22 deletions

File tree

repository.go

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,29 @@ type RepositoryId struct {
1313
}
1414

1515
type Repository struct {
16-
ArchivedAt iso8601.Time
17-
CreatedOn iso8601.Time
18-
DefaultAlias string
19-
DefaultBranch string
20-
Description string
21-
Forked bool
22-
HtmlUrl string
23-
Id ID
24-
Languages []Language
25-
LastOwnerChangedAt iso8601.Time
26-
Locked bool
27-
Name string
28-
Organization string
29-
Owner TeamId
30-
Private bool
31-
RepoKey string
32-
Services *RepositoryServiceConnection
33-
Tags *TagConnection
34-
Tier Tier
35-
Type string
36-
Url string
37-
Visible bool
16+
ArchivedAt iso8601.Time
17+
CreatedOn iso8601.Time
18+
DefaultAlias string
19+
DefaultBranch string
20+
Description string
21+
Forked bool
22+
HtmlUrl string
23+
Id ID
24+
Languages []Language
25+
LastOwnerChangedAt iso8601.Time
26+
Locked bool
27+
Name string
28+
Organization string
29+
Owner TeamId
30+
Private bool
31+
RepoKey string
32+
SBOMGenerationConfiguration SBOMGenerationConfiguration
33+
Services *RepositoryServiceConnection
34+
Tags *TagConnection
35+
Tier Tier
36+
Type string
37+
Url string
38+
Visible bool
3839
}
3940

4041
// RepositoryConnection The connection type for Repository

0 commit comments

Comments
 (0)