@@ -210,6 +210,8 @@ type DeploymentFollowResponseUnion struct {
210210 // This field is from variant [DeploymentFollowResponseAppVersionSummaryEvent].
211211 Version string `json:"version"`
212212 // This field is from variant [DeploymentFollowResponseAppVersionSummaryEvent].
213+ Actions []string `json:"actions"`
214+ // This field is from variant [DeploymentFollowResponseAppVersionSummaryEvent].
213215 EnvVars map [string ]string `json:"env_vars"`
214216 // This field is from variant [DeploymentFollowResponseErrorEvent].
215217 Error DeploymentFollowResponseErrorEventError `json:"error"`
@@ -222,6 +224,7 @@ type DeploymentFollowResponseUnion struct {
222224 AppName respjson.Field
223225 Region respjson.Field
224226 Version respjson.Field
227+ Actions respjson.Field
225228 EnvVars respjson.Field
226229 Error respjson.Field
227230 raw string
@@ -358,6 +361,8 @@ type DeploymentFollowResponseAppVersionSummaryEvent struct {
358361 Timestamp time.Time `json:"timestamp,required" format:"date-time"`
359362 // Version label for the application
360363 Version string `json:"version,required"`
364+ // List of actions available on the app
365+ Actions []string `json:"actions"`
361366 // Environment variables configured for this app version
362367 EnvVars map [string ]string `json:"env_vars"`
363368 // JSON contains metadata for fields, check presence with [respjson.Field.Valid].
@@ -368,6 +373,7 @@ type DeploymentFollowResponseAppVersionSummaryEvent struct {
368373 Region respjson.Field
369374 Timestamp respjson.Field
370375 Version respjson.Field
376+ Actions respjson.Field
371377 EnvVars respjson.Field
372378 ExtraFields map [string ]respjson.Field
373379 raw string
0 commit comments