diff --git a/codex-rs/app-server-protocol/schema/json/ClientRequest.json b/codex-rs/app-server-protocol/schema/json/ClientRequest.json index 0ccf453020..afde31622d 100644 --- a/codex-rs/app-server-protocol/schema/json/ClientRequest.json +++ b/codex-rs/app-server-protocol/schema/json/ClientRequest.json @@ -21,6 +21,7 @@ "type": "object" }, "AppsListParams": { + "description": "EXPERIMENTAL - list available apps/connectors.", "properties": { "cursor": { "description": "Opaque pagination cursor returned by a previous call.", diff --git a/codex-rs/app-server-protocol/schema/json/ServerNotification.json b/codex-rs/app-server-protocol/schema/json/ServerNotification.json index ffaedbf860..74dbc08fa5 100644 --- a/codex-rs/app-server-protocol/schema/json/ServerNotification.json +++ b/codex-rs/app-server-protocol/schema/json/ServerNotification.json @@ -166,6 +166,7 @@ ] }, "AppInfo": { + "description": "EXPERIMENTAL - app metadata returned by app-list APIs.", "properties": { "description": { "type": [ @@ -215,6 +216,7 @@ "type": "object" }, "AppListUpdatedNotification": { + "description": "EXPERIMENTAL - notification emitted when the app list changes.", "properties": { "data": { "items": { diff --git a/codex-rs/app-server-protocol/schema/json/codex_app_server_protocol.schemas.json b/codex-rs/app-server-protocol/schema/json/codex_app_server_protocol.schemas.json index c681e94e5e..8564c8175e 100644 --- a/codex-rs/app-server-protocol/schema/json/codex_app_server_protocol.schemas.json +++ b/codex-rs/app-server-protocol/schema/json/codex_app_server_protocol.schemas.json @@ -9872,6 +9872,7 @@ "type": "string" }, "AppInfo": { + "description": "EXPERIMENTAL - app metadata returned by app-list APIs.", "properties": { "description": { "type": [ @@ -9922,6 +9923,7 @@ }, "AppListUpdatedNotification": { "$schema": "http://json-schema.org/draft-07/schema#", + "description": "EXPERIMENTAL - notification emitted when the app list changes.", "properties": { "data": { "items": { @@ -9941,6 +9943,7 @@ }, "AppsListParams": { "$schema": "http://json-schema.org/draft-07/schema#", + "description": "EXPERIMENTAL - list available apps/connectors.", "properties": { "cursor": { "description": "Opaque pagination cursor returned by a previous call.", @@ -9964,6 +9967,7 @@ }, "AppsListResponse": { "$schema": "http://json-schema.org/draft-07/schema#", + "description": "EXPERIMENTAL - app list response.", "properties": { "data": { "items": { diff --git a/codex-rs/app-server-protocol/schema/json/v2/AppListUpdatedNotification.json b/codex-rs/app-server-protocol/schema/json/v2/AppListUpdatedNotification.json index b9541eb9ad..cf75f10ce0 100644 --- a/codex-rs/app-server-protocol/schema/json/v2/AppListUpdatedNotification.json +++ b/codex-rs/app-server-protocol/schema/json/v2/AppListUpdatedNotification.json @@ -2,6 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "AppInfo": { + "description": "EXPERIMENTAL - app metadata returned by app-list APIs.", "properties": { "description": { "type": [ @@ -51,6 +52,7 @@ "type": "object" } }, + "description": "EXPERIMENTAL - notification emitted when the app list changes.", "properties": { "data": { "items": { diff --git a/codex-rs/app-server-protocol/schema/json/v2/AppsListParams.json b/codex-rs/app-server-protocol/schema/json/v2/AppsListParams.json index 3625f7b30b..3b4ea2d6db 100644 --- a/codex-rs/app-server-protocol/schema/json/v2/AppsListParams.json +++ b/codex-rs/app-server-protocol/schema/json/v2/AppsListParams.json @@ -1,5 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", + "description": "EXPERIMENTAL - list available apps/connectors.", "properties": { "cursor": { "description": "Opaque pagination cursor returned by a previous call.", diff --git a/codex-rs/app-server-protocol/schema/json/v2/AppsListResponse.json b/codex-rs/app-server-protocol/schema/json/v2/AppsListResponse.json index f5cac70771..d2b5cc5ef9 100644 --- a/codex-rs/app-server-protocol/schema/json/v2/AppsListResponse.json +++ b/codex-rs/app-server-protocol/schema/json/v2/AppsListResponse.json @@ -2,6 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "AppInfo": { + "description": "EXPERIMENTAL - app metadata returned by app-list APIs.", "properties": { "description": { "type": [ @@ -51,6 +52,7 @@ "type": "object" } }, + "description": "EXPERIMENTAL - app list response.", "properties": { "data": { "items": { diff --git a/codex-rs/app-server-protocol/schema/typescript/v2/AppInfo.ts b/codex-rs/app-server-protocol/schema/typescript/v2/AppInfo.ts index 6e959cc2ef..0957c0dd4f 100644 --- a/codex-rs/app-server-protocol/schema/typescript/v2/AppInfo.ts +++ b/codex-rs/app-server-protocol/schema/typescript/v2/AppInfo.ts @@ -2,4 +2,7 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. +/** + * EXPERIMENTAL - app metadata returned by app-list APIs. + */ export type AppInfo = { id: string, name: string, description: string | null, logoUrl: string | null, logoUrlDark: string | null, distributionChannel: string | null, installUrl: string | null, isAccessible: boolean, }; diff --git a/codex-rs/app-server-protocol/schema/typescript/v2/AppListUpdatedNotification.ts b/codex-rs/app-server-protocol/schema/typescript/v2/AppListUpdatedNotification.ts index 014b172be7..c6ad87f2cf 100644 --- a/codex-rs/app-server-protocol/schema/typescript/v2/AppListUpdatedNotification.ts +++ b/codex-rs/app-server-protocol/schema/typescript/v2/AppListUpdatedNotification.ts @@ -3,4 +3,7 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. import type { AppInfo } from "./AppInfo"; +/** + * EXPERIMENTAL - notification emitted when the app list changes. + */ export type AppListUpdatedNotification = { data: Array, }; diff --git a/codex-rs/app-server-protocol/schema/typescript/v2/AppsListParams.ts b/codex-rs/app-server-protocol/schema/typescript/v2/AppsListParams.ts index a3e6fbf624..69c6662887 100644 --- a/codex-rs/app-server-protocol/schema/typescript/v2/AppsListParams.ts +++ b/codex-rs/app-server-protocol/schema/typescript/v2/AppsListParams.ts @@ -2,6 +2,9 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. +/** + * EXPERIMENTAL - list available apps/connectors. + */ export type AppsListParams = { /** * Opaque pagination cursor returned by a previous call. diff --git a/codex-rs/app-server-protocol/schema/typescript/v2/AppsListResponse.ts b/codex-rs/app-server-protocol/schema/typescript/v2/AppsListResponse.ts index b6f5c653f2..cb1e45f203 100644 --- a/codex-rs/app-server-protocol/schema/typescript/v2/AppsListResponse.ts +++ b/codex-rs/app-server-protocol/schema/typescript/v2/AppsListResponse.ts @@ -3,6 +3,9 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. import type { AppInfo } from "./AppInfo"; +/** + * EXPERIMENTAL - app list response. + */ export type AppsListResponse = { data: Array, /** * Opaque cursor to pass to the next call to continue after the last item.