diff --git a/models.gen.go b/models.gen.go index 0248caf..86a8279 100644 --- a/models.gen.go +++ b/models.gen.go @@ -464,9 +464,9 @@ type ListPlugin struct { // ReleaseStage Official plugins go through two release stages: Preview, and GA. // Both Preview and GA plugins follow semantic versioning. The main differences between the two stages are: // Preview plugins are still experimental and may have frequent breaking changes. Preview plugins might get deprecated due to lack of usage. Long Term Support with community Discord and bug fixes is only guaranteed for GA plugins. Premium plugins are often discounted or free during the Preview stage. - ReleaseStage *PluginReleaseStage `json:"release_stage,omitempty"` - Repository *string `json:"repository,omitempty"` - ShortDescription string `json:"short_description"` + ReleaseStage PluginReleaseStage `json:"release_stage"` + Repository *string `json:"repository,omitempty"` + ShortDescription string `json:"short_description"` // TeamName The unique name for the team. TeamName TeamName `json:"team_name"` @@ -565,9 +565,9 @@ type Plugin struct { // ReleaseStage Official plugins go through two release stages: Preview, and GA. // Both Preview and GA plugins follow semantic versioning. The main differences between the two stages are: // Preview plugins are still experimental and may have frequent breaking changes. Preview plugins might get deprecated due to lack of usage. Long Term Support with community Discord and bug fixes is only guaranteed for GA plugins. Premium plugins are often discounted or free during the Preview stage. - ReleaseStage *PluginReleaseStage `json:"release_stage,omitempty"` - Repository *string `json:"repository,omitempty"` - ShortDescription string `json:"short_description"` + ReleaseStage PluginReleaseStage `json:"release_stage"` + Repository *string `json:"repository,omitempty"` + ShortDescription string `json:"short_description"` // TeamName The unique name for the team. TeamName TeamName `json:"team_name"` diff --git a/spec.json b/spec.json index 5501cc3..e469e99 100644 --- a/spec.json +++ b/spec.json @@ -141,7 +141,8 @@ "repository": "https://github.com/cloudquery/cloudquery", "tier": "paid", "usd_per_row": "0.00123", - "free_rows_per_month": 10000 + "free_rows_per_month": 10000, + "release_stage": "preview" } ] }, @@ -2068,7 +2069,8 @@ "repository": "https://github.com/cloudquery/cloudquery", "tier": "paid", "usd_per_row": "0.00123", - "free_rows_per_month": 10000 + "free_rows_per_month": 10000, + "release_stage": "preview" } ] }, @@ -3520,6 +3522,7 @@ "name", "kind", "category", + "release_stage", "created_at", "logo", "display_name",