From a9d5b821d10536715fa5d57d74969fbb33f3f90c Mon Sep 17 00:00:00 2001 From: visargD Date: Mon, 16 Feb 2026 11:27:23 +0530 Subject: [PATCH] feat: add default provider options to integration workspace access in OpenAPI spec --- openapi.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index ef95813a..def73499 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -31222,6 +31222,13 @@ components: override_existing_workspace_access: type: boolean description: Whether to override existing workspace access settings + create_default_provider: + type: boolean + default: true + description: Whether to automatically create a default provider when granting workspace access. Defaults to true. Can be overridden per workspace. + default_provider_slug: + type: string + description: Custom slug for the auto-created default provider. Applies to all workspaces unless overridden per workspace. If the slug already exists, the request will fail with a validation error. WorkspaceUpdateRequest: type: object @@ -31251,6 +31258,12 @@ components: reset_usage: type: boolean description: Whether to reset current usage. If the current status is exhausted, this will change it back to active. + create_default_provider: + type: boolean + description: Whether to automatically create a default provider for this workspace. Overrides the top-level create_default_provider setting. + default_provider_slug: + type: string + description: Custom slug for the auto-created default provider for this workspace. Overrides the top-level default_provider_slug. If the slug already exists, the request will fail with a validation error. Providers: type: object