@daocloud-proto/kangaroo 0.3.1-50 → 0.3.1-54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -123,12 +123,25 @@ export type Artifacts = {
|
|
|
123
123
|
digest?: string
|
|
124
124
|
tags?: Tag[]
|
|
125
125
|
scanOverview?: ScanOverview
|
|
126
|
+
references?: Reference[]
|
|
126
127
|
imageSize?: string
|
|
127
128
|
pushTime?: string
|
|
128
129
|
pullTime?: string
|
|
129
130
|
imagePullUrl?: string
|
|
130
131
|
}
|
|
131
132
|
|
|
133
|
+
export type Reference = {
|
|
134
|
+
childDigest?: string
|
|
135
|
+
platform?: Platform
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export type Platform = {
|
|
139
|
+
osVersion?: string
|
|
140
|
+
architecture?: string
|
|
141
|
+
os?: string
|
|
142
|
+
variant?: string
|
|
143
|
+
}
|
|
144
|
+
|
|
132
145
|
export type ListArtifactsRequest = {
|
|
133
146
|
workspace?: string
|
|
134
147
|
registry?: string
|
|
@@ -158,6 +171,7 @@ export type TagInfoResponse = {
|
|
|
158
171
|
extraAttrs?: ExtraAttrs
|
|
159
172
|
buildHistory?: BuildHistory[]
|
|
160
173
|
scanOverview?: ScanOverview
|
|
174
|
+
references?: Reference[]
|
|
161
175
|
}
|
|
162
176
|
|
|
163
177
|
export type ExtraAttrs = {
|