From d13205d8a2f1d6797a2caa6ca7ad73ea313e1035 Mon Sep 17 00:00:00 2001 From: Shubham Naik Date: Tue, 25 Nov 2025 16:02:11 -0800 Subject: [PATCH] Shub/let 3923 identities totally broken [LET-3923] (#6346) * fix: identities sdk tests * fix: identities sdk tests * chore: fix tests * chore: update step orchestrator * chore: add logging * chore: add stripe keys * fix: check * chore: update db --------- Co-authored-by: Shubham Naik --- fern/openapi.json | 96 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) diff --git a/fern/openapi.json b/fern/openapi.json index 781c3f9e..ee4b023a 100644 --- a/fern/openapi.json +++ b/fern/openapi.json @@ -18874,6 +18874,102 @@ } } } + }, + "post": { + "description": "Create a new project", + "summary": "Create Project (Cloud-only)", + "tags": ["projects"], + "parameters": [], + "operationId": "projects.createProject", + "requestBody": { + "description": "Body", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "minLength": 3, + "maxLength": 50 + } + }, + "required": ["name"] + } + } + } + }, + "responses": { + "201": { + "description": "201", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "id": { + "type": "string" + } + }, + "required": ["name", "slug", "id"] + } + } + } + } + } + } + }, + "/v1/projects/{projectId}": { + "delete": { + "description": "Delete a project by ID", + "summary": "Delete Project (Cloud-only)", + "tags": ["projects"], + "parameters": [ + { + "name": "projectId", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "operationId": "projects.deleteProject", + "requestBody": { + "description": "Body", + "content": { + "application/json": { + "schema": { + "nullable": true + } + } + } + }, + "responses": { + "200": { + "description": "200", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + } + }, + "required": ["success"] + } + } + } + } + } } } },