File tree Expand file tree Collapse file tree
content/docs/references/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ const result = ApiRoutes.parse(data);
3333| :--- | :--- | :--- | :--- |
3434| ** data** | ` string ` | ✅ | e.g. /api/v1/data |
3535| ** metadata** | ` string ` | ✅ | e.g. /api/v1/meta |
36+ | ** discovery** | ` string ` | optional | e.g. /api/v1/discovery |
3637| ** ui** | ` string ` | optional | e.g. /api/v1/ui |
3738| ** auth** | ` string ` | optional | e.g. /api/v1/auth |
3839| ** automation** | ` string ` | optional | e.g. /api/v1/automation |
@@ -45,6 +46,7 @@ const result = ApiRoutes.parse(data);
4546| ** notifications** | ` string ` | optional | e.g. /api/v1/notifications |
4647| ** ai** | ` string ` | optional | e.g. /api/v1/ai |
4748| ** i18n** | ` string ` | optional | e.g. /api/v1/i18n |
49+ | ** feed** | ` string ` | optional | e.g. /api/v1/feed |
4850
4951
5052---
Original file line number Diff line number Diff line change @@ -429,11 +429,16 @@ const result = AiChatRequest.parse(data);
429429
430430| Property | Type | Required | Description |
431431| :--- | :--- | :--- | :--- |
432- | ** version** | ` string ` | ✅ | API version (e.g., "v1", "2024-01") |
433- | ** apiName** | ` string ` | ✅ | API name |
434- | ** routes** | ` Object ` | optional | Available endpoint paths |
435- | ** services** | ` Record<string, Object> ` | optional | Per-service availability map |
436- | ** capabilities** | ` Object ` | optional | Well-known capability flags for frontend adaptation |
432+ | ** name** | ` string ` | optional | |
433+ | ** version** | ` string ` | ✅ | |
434+ | ** environment** | ` Enum<'production' \| 'sandbox' \| 'development'> ` | optional | |
435+ | ** routes** | ` Object ` | optional | |
436+ | ** locale** | ` Object ` | optional | |
437+ | ** services** | ` Record<string, Object> ` | optional | Per-service availability map keyed by CoreServiceName |
438+ | ** capabilities** | ` Record<string, Object> ` | optional | Hierarchical capability descriptors for frontend intelligent adaptation |
439+ | ** schemaDiscovery** | ` Object ` | optional | Schema discovery endpoints for API toolchain integration |
440+ | ** metadata** | ` Record<string, any> ` | optional | Custom metadata key-value pairs for extensibility |
441+ | ** apiName** | ` string ` | optional | API name (deprecated — use name) |
437442
438443
439444---
You can’t perform that action at this time.
0 commit comments