Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions assistant/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5825,6 +5825,24 @@ paths:
required: true
schema:
type: string
/v1/domain/register:
post:
operationId: domain_register_post
summary: Register a subdomain for this assistant
tags:
- domain
responses:
"200":
description: Successful response
/v1/domain/status:
get:
operationId: domain_status_get
summary: Show domain registration and health
tags:
- domain
responses:
"200":
description: Successful response
/v1/email/attachment-get:
get:
operationId: email_attachmentget_get
Expand Down
2 changes: 1 addition & 1 deletion assistant/src/cli/COMMAND_INVENTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Run `bun run lint:inventory` to validate.
| `conversations` | _(pending migration)_ | `ipc` | _(pending migration)_ | `LEGACY` | |
| `conversations-import` | `import` | `ipc` | `conversations_import` | `THIN` | |
| `credentials` | _(pending migration)_ | `ipc` | _(pending migration)_ | `LEGACY` | |
| `domain` | _(pending migration)_ | `ipc` | _(pending migration)_ | `LEGACY` | |
| `domain` | `register`, `status` | `ipc` | `domain_register`, `domain_status` | `THIN` | |
| `email` | `register`, `unregister`, `send`, `list`, `status`, `download`, `attachment` | `ipc` | `email_register`, `email_unregister`, `email_send`, `email_list`, `email_status`, `email_download`, `email_attachment_list`, `email_attachment_get` | `THIN` | `attachment` uses `cliIpcCallStream` for binary download |
| `image-generation` | `generate` | `ipc` | `image_generation_generate` | `THIN` | |
| `inference` | _(pending migration)_ | `ipc` | _(pending migration)_ | `LEGACY` | |
Expand Down
Loading
Loading