diff --git a/models.gen.go b/models.gen.go index d1e5aac..be9f26a 100644 --- a/models.gen.go +++ b/models.gen.go @@ -347,8 +347,7 @@ type PluginTier string // PluginUpdate defines model for PluginUpdate. type PluginUpdate struct { // Category Supported categories for plugins - Category PluginCategory `json:"category"` - Destination bool `json:"destination"` + Category PluginCategory `json:"category"` // DisplayName The plugin's display name, as shown in the CloudQuery Hub. DisplayName string `json:"display_name"` @@ -363,7 +362,6 @@ type PluginUpdate struct { // ShortDescription Short description of the plugin. This will be shown in the CloudQuery Hub. ShortDescription string `json:"short_description"` - Source bool `json:"source"` // Tier Supported tiers for plugins Tier PluginTier `json:"tier"` diff --git a/spec.json b/spec.json index 45e0c39..09af10c 100644 --- a/spec.json +++ b/spec.json @@ -2425,8 +2425,6 @@ "tier", "display_name", "short_description", - "source", - "destination", "logo" ], "properties": { @@ -2454,12 +2452,6 @@ "type": "string", "example": "https://github.com/cloudquery/cloudquery" }, - "source": { - "type": "boolean" - }, - "destination": { - "type": "boolean" - }, "logo": { "type": "string", "description": "URL to the plugin's logo. This will be shown in the CloudQuery Hub. This must point to https://images.cloudquery.io/...",