@realtimex/sdk 1.4.5 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts
CHANGED
|
@@ -1144,6 +1144,10 @@ interface AcpAgentInfo {
|
|
|
1144
1144
|
source?: string | null;
|
|
1145
1145
|
/** Non-null if model fetch failed and fell back. */
|
|
1146
1146
|
error?: string | null;
|
|
1147
|
+
/** Whether this agent supports using credentials from another provider. */
|
|
1148
|
+
supportsProviderForwarding?: boolean;
|
|
1149
|
+
/** Provider IDs that can be forwarded (e.g. ["openai", "anthropic"]). */
|
|
1150
|
+
forwardableProviders?: string[];
|
|
1147
1151
|
}
|
|
1148
1152
|
interface AcpSessionOptions {
|
|
1149
1153
|
agent_id: string;
|
|
@@ -1151,6 +1155,8 @@ interface AcpSessionOptions {
|
|
|
1151
1155
|
label?: string;
|
|
1152
1156
|
model?: string;
|
|
1153
1157
|
approvalPolicy?: "approve-all" | "approve-reads" | "deny-all";
|
|
1158
|
+
/** Use another provider's credentials (e.g. "openai"). Agent must support forwarding. */
|
|
1159
|
+
forwardedProvider?: string;
|
|
1154
1160
|
}
|
|
1155
1161
|
interface AcpSession {
|
|
1156
1162
|
session_key: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1144,6 +1144,10 @@ interface AcpAgentInfo {
|
|
|
1144
1144
|
source?: string | null;
|
|
1145
1145
|
/** Non-null if model fetch failed and fell back. */
|
|
1146
1146
|
error?: string | null;
|
|
1147
|
+
/** Whether this agent supports using credentials from another provider. */
|
|
1148
|
+
supportsProviderForwarding?: boolean;
|
|
1149
|
+
/** Provider IDs that can be forwarded (e.g. ["openai", "anthropic"]). */
|
|
1150
|
+
forwardableProviders?: string[];
|
|
1147
1151
|
}
|
|
1148
1152
|
interface AcpSessionOptions {
|
|
1149
1153
|
agent_id: string;
|
|
@@ -1151,6 +1155,8 @@ interface AcpSessionOptions {
|
|
|
1151
1155
|
label?: string;
|
|
1152
1156
|
model?: string;
|
|
1153
1157
|
approvalPolicy?: "approve-all" | "approve-reads" | "deny-all";
|
|
1158
|
+
/** Use another provider's credentials (e.g. "openai"). Agent must support forwarding. */
|
|
1159
|
+
forwardedProvider?: string;
|
|
1154
1160
|
}
|
|
1155
1161
|
interface AcpSession {
|
|
1156
1162
|
session_key: string;
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: realtimex-moderator-sdk
|
|
3
3
|
description: Control and interact with the RealTimeX application through its Node.js SDK. This skill should be used when users want to manage workspaces, threads, agents, activities, LLM chat, vector store, MCP tools, ACP agent sessions, TTS/STT, or any other RealTimeX platform feature via the API. All method signatures are verified against the SDK source code.
|
|
4
|
-
generated: 2026-03-
|
|
5
|
-
sdk_version: 1.
|
|
4
|
+
generated: 2026-03-31
|
|
5
|
+
sdk_version: 1.5.0
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# RealTimeX Moderator (SDK Source-Verified)
|
|
9
9
|
|
|
10
|
-
Interact with the RealTimeX desktop app (`http://localhost:3001`) using `@realtimex/sdk` **v1.
|
|
10
|
+
Interact with the RealTimeX desktop app (`http://localhost:3001`) using `@realtimex/sdk` **v1.5.0** in Developer Mode (API Key).
|
|
11
11
|
|
|
12
12
|
> Auto-generated from the `@realtimex/sdk` TypeScript source.
|
|
13
13
|
> Refresh: `node scripts/generate-skill.mjs --force` from the SDK repo root.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# RealTimeX SDK — API Reference
|
|
2
2
|
|
|
3
|
-
> Auto-generated from `@realtimex/sdk` source · v**1.
|
|
3
|
+
> Auto-generated from `@realtimex/sdk` source · v**1.5.0** · 2026-03-31
|
|
4
4
|
|
|
5
5
|
**Package:** `@realtimex/sdk` (CJS) · **Server:** `http://localhost:3001`
|
|
6
6
|
**Developer Mode auth:** `Authorization: Bearer <apiKey>`
|
|
@@ -444,6 +444,7 @@ cwd?: string
|
|
|
444
444
|
label?: string
|
|
445
445
|
model?: string
|
|
446
446
|
approvalPolicy?: "approve-all" | "approve-reads" | "deny-all"
|
|
447
|
+
forwardedProvider?: string
|
|
447
448
|
```
|
|
448
449
|
|
|
449
450
|
#### `AcpSession`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Known Issues — Source-Detected
|
|
2
2
|
|
|
3
|
-
> Auto-generated by `scripts/generate-skill.mjs` · SDK **1.
|
|
3
|
+
> Auto-generated by `scripts/generate-skill.mjs` · SDK **1.5.0** · 2026-03-31
|
|
4
4
|
|
|
5
5
|
Run `node scripts/generate-skill.mjs --force` after SDK source changes to refresh.
|
|
6
6
|
|