diff --git a/models_gen.go b/models_gen.go index 581ec11..d0cf958 100644 --- a/models_gen.go +++ b/models_gen.go @@ -2601,6 +2601,7 @@ type ServiceDeploymentAttributes struct { Protect *bool `json:"protect,omitempty"` RepositoryID *string `json:"repositoryId,omitempty"` DryRun *bool `json:"dryRun,omitempty"` + Interval *string `json:"interval,omitempty"` Git *GitRefAttributes `json:"git,omitempty"` Helm *HelmConfigAttributes `json:"helm,omitempty"` Kustomize *KustomizeAttributes `json:"kustomize,omitempty"` @@ -2657,6 +2658,8 @@ type ServiceStatusCount struct { type ServiceUpdateAttributes struct { Version *string `json:"version,omitempty"` Protect *bool `json:"protect,omitempty"` + DryRun *bool `json:"dryRun,omitempty"` + Interval *string `json:"interval,omitempty"` Git *GitRefAttributes `json:"git,omitempty"` Helm *HelmConfigAttributes `json:"helm,omitempty"` Configuration []*ConfigAttributes `json:"configuration,omitempty"` diff --git a/schema/schema.graphql b/schema/schema.graphql index e399c73..dae8d01 100644 --- a/schema/schema.graphql +++ b/schema/schema.graphql @@ -993,6 +993,7 @@ input ServiceDeploymentAttributes { protect: Boolean repositoryId: ID dryRun: Boolean + interval: String git: GitRefAttributes helm: HelmConfigAttributes kustomize: KustomizeAttributes @@ -1030,6 +1031,8 @@ input HelmValueAttributes { input ServiceUpdateAttributes { version: String protect: Boolean + dryRun: Boolean + interval: String git: GitRefAttributes helm: HelmConfigAttributes configuration: [ConfigAttributes]