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 <shub@memgpt.ai>
This commit is contained in:
Shubham Naik
2025-11-25 16:02:11 -08:00
committed by Caren Thomas
parent e349ba3bdd
commit d13205d8a2

View File

@@ -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"]
}
}
}
}
}
}
}
},