From 942941d67f10a20f188cf4cc014c52fbb4bc2d9f Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Tue, 31 Oct 2023 17:28:05 +0200 Subject: [PATCH] fix: Generate CloudQuery Go API Client from `spec.json` (#58) This PR was created by a scheduled workflow to generate the CloudQuery Go API Client from `spec.json` --- models.gen.go | 12 ++++++------ spec.json | 7 +++++-- 2 files changed, 11 insertions(+), 8 deletions(-) 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",