diff --git a/models.gen.go b/models.gen.go index cca1d2a..359b6b5 100644 --- a/models.gen.go +++ b/models.gen.go @@ -667,6 +667,9 @@ type CreatePlatformDestinationSession201Response struct { // ExpiresInSeconds Seconds until the token expires. ExpiresInSeconds int `json:"expires_in_seconds"` + // PluginVersion Recommended cloudquery/platform destination plugin version for this tenant. Optional; when present the CLI pins the injected destination to it, otherwise it uses its own default. + PluginVersion *string `json:"plugin_version,omitempty"` + // Token HMAC-signed, tenant-scoped token for /external-syncs/*. Token string `json:"token"` } diff --git a/spec.json b/spec.json index 2fd805d..0759e83 100644 --- a/spec.json +++ b/spec.json @@ -8725,6 +8725,11 @@ "api_url" : { "description" : "Base URL of the tenant's platform API (e.g. https://acme.us.platform.cloudquery.io). The CLI uses it to reach /external-syncs/* directly — no CQ_PLATFORM_API_URL configuration needed.", "type" : "string" + }, + "plugin_version" : { + "description" : "Recommended cloudquery/platform destination plugin version for this tenant. Optional; when present the CLI pins the injected destination to it, otherwise it uses its own default.", + "example" : "v1.0.0", + "type" : "string" } }, "required" : [ "api_url", "expires_in_seconds", "token" ]