From 87ba644a87799e86e5632b524b4bf07e5cafc90d Mon Sep 17 00:00:00 2001 From: "polylane[bot]" <277585245+polylane[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 00:44:12 +0000 Subject: [PATCH] fix: add required acceptTerms field to workspace create body Co-authored-by: polylane[bot] <277585245+polylane[bot]@users.noreply.github.com> --- src/commands/workspace/create.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/workspace/create.ts b/src/commands/workspace/create.ts index 3666ace..3a64b94 100644 --- a/src/commands/workspace/create.ts +++ b/src/commands/workspace/create.ts @@ -34,7 +34,7 @@ export const workspaceCreateCommand: Command = { 'By creating a workspace you accept the Polylane Terms of Service: https://console.polylane.com/terms\n', ); - const body: CreateWorkspaceBody = { name }; + const body: CreateWorkspaceBody = { name, acceptTerms: true }; if (description !== undefined) body.description = description; if (slug !== undefined) body.slug = slug;