From 66c82ca9ac2c25f6822f935f7373337034a87e90 Mon Sep 17 00:00:00 2001 From: "polylane[bot]" <277585245+polylane[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 00:43:31 +0000 Subject: [PATCH] fix: include acceptTerms in workspace create body to match generated client 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;