From a4197ac1db9e9d288af0e81384875950acc67aba Mon Sep 17 00:00:00 2001 From: robert-j-y <212159665+robert-j-y@users.noreply.github.com> Date: Mon, 11 May 2026 19:37:39 -0700 Subject: [PATCH] chore: update OpenAPI spec from monorepo (#236) Co-authored-by: OpenRouter SDK Bot --- .speakeasy/in.openapi.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.speakeasy/in.openapi.yaml b/.speakeasy/in.openapi.yaml index 080973b..6979283 100644 --- a/.speakeasy/in.openapi.yaml +++ b/.speakeasy/in.openapi.yaml @@ -5381,11 +5381,11 @@ components: minLength: 1 type: string slug: - description: URL-friendly slug (lowercase alphanumeric and hyphens only) + description: URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens) example: production maxLength: 50 minLength: 1 - pattern: ^[a-z0-9-]+$ + pattern: ^[a-z0-9]+(?:-[a-z0-9]+)*$ type: string required: - name @@ -14663,11 +14663,13 @@ components: minLength: 1 type: string slug: - description: New URL-friendly slug + description: >- + New URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing + hyphens) example: updated-workspace maxLength: 50 minLength: 1 - pattern: ^[a-z0-9-]+$ + pattern: ^[a-z0-9]+(?:-[a-z0-9]+)*$ type: string type: object UpdateWorkspaceResponse: