@moxt-ai/mobius-sdk 0.0.29 → 0.0.33
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/channel.d.ts +1 -1
- package/dist/channel.d.ts.map +1 -1
- package/dist/channel.js.map +1 -1
- package/dist/client.d.ts +12 -2
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +17 -29
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/resources.d.ts +474 -1
- package/dist/resources.d.ts.map +1 -1
- package/dist/resources.js +1017 -2
- package/dist/resources.js.map +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/service-client.d.ts +357 -149
- package/dist/service-client.d.ts.map +1 -1
- package/dist/service-client.js +942 -3
- package/dist/service-client.js.map +1 -1
- package/dist/transport/http-transport.d.ts +8 -0
- package/dist/transport/http-transport.d.ts.map +1 -1
- package/dist/transport/http-transport.js +3 -0
- package/dist/transport/http-transport.js.map +1 -1
- package/dist/transport/ws-transport.d.ts +2 -1
- package/dist/transport/ws-transport.d.ts.map +1 -1
- package/dist/transport/ws-transport.js +136 -0
- package/dist/transport/ws-transport.js.map +1 -1
- package/package.json +2 -2
package/dist/service-client.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { type AgentSettingsDiscoveredEvent, type NativeSessionRequest, type WorkspaceEntriesEvent } from "@moxt-ai/mobius-protocol";
|
|
2
|
-
import { type MobiusBrowserCredential, type MobiusBrowserCredentialRequest, MobiusPairedRuntimePairingStatus, type MobiusRuntimeDescriptor, type MobiusRuntimePairing, type MobiusRuntimePairingRequest, type MobiusRuntimePairingStatus, type MobiusRuntimePairingWaitOptions } from "./resources.ts";
|
|
3
|
-
import { type MobiusHttpTransport } from "./transport/http-transport.ts";
|
|
1
|
+
import { type AgentSettingsDiscoveredEvent, type Attempt, type Interaction, type NativeMessagePage, type NativeSessionRequest, type NativeSessionResult, type SessionConfigureCommand, type WorkspaceEntriesEvent } from "@moxt-ai/mobius-protocol";
|
|
2
|
+
import { type CancelMobiusTurnRequest, type ConfigureMobiusSessionRequest, type CreateMobiusSessionRequest, type MobiusBrowserCredential, type MobiusBrowserCredentialRequest, type MobiusEventPage, type MobiusInteractionResponseRequest, type MobiusMessagePage, MobiusPageRequest, MobiusPairedRuntimePairingStatus, type MobiusRuntimeDescriptor, type MobiusRuntimePairing, type MobiusRuntimePairingRequest, type MobiusRuntimePairingStatus, type MobiusRuntimePairingWaitOptions, type MobiusServiceCapabilities, type MobiusSession, MobiusSessionAccess, type MobiusSessionEvent, type MobiusSessionExport, type MobiusSessionImportBinding, type MobiusSessionPage, type MobiusSessionState, type MobiusToolCallDetail, type MobiusTurn, type SubmitMobiusTurnRequest } from "./resources.ts";
|
|
3
|
+
import { type MobiusHttpTransport, type MobiusTransportSessionEvent } from "./transport/http-transport.ts";
|
|
4
4
|
export interface MobiusCredentialProvider {
|
|
5
5
|
readonly credential: (signal: AbortSignal) => Promise<string>;
|
|
6
6
|
}
|
|
@@ -20,25 +20,58 @@ export interface MobiusEndpointOptions {
|
|
|
20
20
|
readonly authenticationProviderId?: string;
|
|
21
21
|
readonly credentialProvider: MobiusCredentialProvider;
|
|
22
22
|
readonly endpoint: string;
|
|
23
|
+
readonly maxStreamReconnectAttempts?: number;
|
|
23
24
|
readonly observeResponse?: (metadata: MobiusResponseMetadata) => void;
|
|
24
25
|
readonly operationTimeoutMilliseconds?: number;
|
|
26
|
+
readonly streamConnectionTimeoutMilliseconds?: number;
|
|
27
|
+
readonly streamLivenessTimeoutMilliseconds?: number;
|
|
25
28
|
readonly transport?: MobiusHttpTransport;
|
|
26
29
|
}
|
|
27
30
|
export interface MobiusClientOptions extends MobiusEndpointOptions {
|
|
28
31
|
readonly projectId: string;
|
|
29
32
|
}
|
|
33
|
+
declare class StreamConnection {
|
|
34
|
+
#private;
|
|
35
|
+
readonly response: Response;
|
|
36
|
+
constructor(response: Response, controller: AbortController, release: () => void, livenessTimeoutMilliseconds: number);
|
|
37
|
+
get hasActivity(): boolean;
|
|
38
|
+
readonly close: () => void;
|
|
39
|
+
readonly touch: () => void;
|
|
40
|
+
readonly translateFailure: (cause: unknown) => never;
|
|
41
|
+
private readonly abortFromLivenessTimeout;
|
|
42
|
+
}
|
|
43
|
+
declare class LiveEventConnection {
|
|
44
|
+
#private;
|
|
45
|
+
readonly events: ReadableStream<MobiusTransportSessionEvent>;
|
|
46
|
+
constructor(events: ReadableStream<MobiusTransportSessionEvent>, controller: AbortController, release: () => void);
|
|
47
|
+
readonly close: () => void;
|
|
48
|
+
}
|
|
30
49
|
export declare class MobiusRequestExecutor {
|
|
31
50
|
#private;
|
|
32
51
|
constructor(options: MobiusEndpointOptions);
|
|
33
52
|
readonly get: (path: string, signal: AbortSignal) => Promise<unknown>;
|
|
53
|
+
readonly getFile: (path: string, maximumBytes: number, signal: AbortSignal) => Promise<{
|
|
54
|
+
readonly bytes: Uint8Array;
|
|
55
|
+
readonly mediaType: string;
|
|
56
|
+
readonly modifiedAt: string;
|
|
57
|
+
readonly name: string;
|
|
58
|
+
}>;
|
|
34
59
|
readonly post: (path: string, body: unknown, signal: AbortSignal) => Promise<unknown>;
|
|
35
60
|
readonly put: (path: string, body: unknown, signal: AbortSignal) => Promise<unknown>;
|
|
36
61
|
readonly delete: (path: string, signal: AbortSignal) => Promise<unknown>;
|
|
37
62
|
readonly deleteEmpty: (path: string, signal: AbortSignal) => Promise<void>;
|
|
63
|
+
readonly openEventStream: (path: string, signal: AbortSignal) => Promise<StreamConnection>;
|
|
64
|
+
readonly openLiveEventStream: (path: string, signal: AbortSignal) => Promise<LiveEventConnection>;
|
|
38
65
|
private readonly request;
|
|
39
66
|
private readonly requestEmpty;
|
|
40
67
|
private readonly authenticationHeaders;
|
|
41
68
|
}
|
|
69
|
+
export declare function readExactResponseBytes(response: Response, expectedByteLength: number, signal: AbortSignal, verifyDigest?: boolean): Promise<Uint8Array>;
|
|
70
|
+
export declare class MobiusCapabilityResources {
|
|
71
|
+
#private;
|
|
72
|
+
constructor(executor: MobiusRequestExecutor);
|
|
73
|
+
readonly read: (signal: AbortSignal) => Promise<MobiusServiceCapabilities>;
|
|
74
|
+
}
|
|
42
75
|
export declare class MobiusCredentialResources {
|
|
43
76
|
#private;
|
|
44
77
|
constructor(executor: MobiusRequestExecutor, projectId: string);
|
|
@@ -68,79 +101,6 @@ export declare class MobiusRuntimeResources {
|
|
|
68
101
|
kind: "native.session.result";
|
|
69
102
|
action: "create";
|
|
70
103
|
nativeSessionId: string;
|
|
71
|
-
}> | Readonly<{
|
|
72
|
-
requestId: string;
|
|
73
|
-
sessionId: string;
|
|
74
|
-
kind: "native.session.result";
|
|
75
|
-
action: "linked-history";
|
|
76
|
-
targetSessionId: string;
|
|
77
|
-
history: Readonly<{
|
|
78
|
-
status: "available";
|
|
79
|
-
messages: readonly (Readonly<{
|
|
80
|
-
role: "user";
|
|
81
|
-
text: string;
|
|
82
|
-
images?: readonly Readonly<{
|
|
83
|
-
data: string;
|
|
84
|
-
mimeType: "image/gif" | "image/jpeg" | "image/png" | "image/webp";
|
|
85
|
-
name: string;
|
|
86
|
-
}>[] | undefined;
|
|
87
|
-
}> | Readonly<{
|
|
88
|
-
activities: readonly Readonly<{
|
|
89
|
-
activityId: string;
|
|
90
|
-
activityType: string;
|
|
91
|
-
content: readonly Readonly<{
|
|
92
|
-
artifactId: string;
|
|
93
|
-
data: string;
|
|
94
|
-
mimeType: string;
|
|
95
|
-
name: string;
|
|
96
|
-
newText: string;
|
|
97
|
-
oldText: string;
|
|
98
|
-
path: string;
|
|
99
|
-
terminalId: string;
|
|
100
|
-
text: string;
|
|
101
|
-
type: "diff" | "image" | "resource" | "resource_link" | "terminal" | "text" | "video";
|
|
102
|
-
uri: string;
|
|
103
|
-
}>[];
|
|
104
|
-
input: string;
|
|
105
|
-
locations: readonly string[];
|
|
106
|
-
name: string;
|
|
107
|
-
output: string;
|
|
108
|
-
sequence: number;
|
|
109
|
-
status: string;
|
|
110
|
-
title: string;
|
|
111
|
-
toolKind: string;
|
|
112
|
-
}>[];
|
|
113
|
-
content: readonly Readonly<{
|
|
114
|
-
artifactId: string;
|
|
115
|
-
data: string;
|
|
116
|
-
mimeType: string;
|
|
117
|
-
name: string;
|
|
118
|
-
newText: string;
|
|
119
|
-
oldText: string;
|
|
120
|
-
path: string;
|
|
121
|
-
terminalId: string;
|
|
122
|
-
text: string;
|
|
123
|
-
type: "diff" | "image" | "resource" | "resource_link" | "terminal" | "text" | "video";
|
|
124
|
-
uri: string;
|
|
125
|
-
}>[];
|
|
126
|
-
role: "assistant";
|
|
127
|
-
text: string;
|
|
128
|
-
images?: readonly Readonly<{
|
|
129
|
-
data: string;
|
|
130
|
-
mimeType: "image/gif" | "image/jpeg" | "image/png" | "image/webp";
|
|
131
|
-
name: string;
|
|
132
|
-
}>[] | undefined;
|
|
133
|
-
}>)[];
|
|
134
|
-
truncated: boolean;
|
|
135
|
-
coveredCommandIds: readonly string[];
|
|
136
|
-
coveredMessageIds: readonly string[];
|
|
137
|
-
}> | Readonly<{
|
|
138
|
-
status: "unavailable";
|
|
139
|
-
cause: Readonly<{
|
|
140
|
-
code: string;
|
|
141
|
-
message: string;
|
|
142
|
-
}>;
|
|
143
|
-
}>;
|
|
144
104
|
}> | Readonly<{
|
|
145
105
|
requestId: string;
|
|
146
106
|
sessionId: string;
|
|
@@ -153,15 +113,55 @@ export declare class MobiusRuntimeResources {
|
|
|
153
113
|
text: string;
|
|
154
114
|
truncated: boolean;
|
|
155
115
|
epoch: string;
|
|
116
|
+
interaction: Readonly<{
|
|
117
|
+
commandId: string;
|
|
118
|
+
interactionId: string;
|
|
119
|
+
kind: "session.permission.requested";
|
|
120
|
+
options: readonly Readonly<{
|
|
121
|
+
kind: "allow_always" | "allow_once" | "reject_always" | "reject_once";
|
|
122
|
+
name: string;
|
|
123
|
+
optionId: string;
|
|
124
|
+
}>[];
|
|
125
|
+
sessionId: string;
|
|
126
|
+
title: string;
|
|
127
|
+
toolCallId: string;
|
|
128
|
+
toolKind: string;
|
|
129
|
+
}> | Readonly<{
|
|
130
|
+
accepted: boolean;
|
|
131
|
+
commandId: string;
|
|
132
|
+
elicitationId: string;
|
|
133
|
+
fields: readonly Readonly<{
|
|
134
|
+
defaultBooleanValue: boolean;
|
|
135
|
+
defaultNumberValue: number;
|
|
136
|
+
defaultStringValue: string;
|
|
137
|
+
description: string;
|
|
138
|
+
format: string;
|
|
139
|
+
hasDefaultValue: boolean;
|
|
140
|
+
maximum: string;
|
|
141
|
+
maximumLength: string;
|
|
142
|
+
minimum: string;
|
|
143
|
+
minimumLength: string;
|
|
144
|
+
name: string;
|
|
145
|
+
options: readonly Readonly<{
|
|
146
|
+
description: string;
|
|
147
|
+
label: string;
|
|
148
|
+
value: string;
|
|
149
|
+
}>[];
|
|
150
|
+
pattern: string;
|
|
151
|
+
required: boolean;
|
|
152
|
+
title: string;
|
|
153
|
+
type: "boolean" | "integer" | "multiselect" | "number" | "select" | "string";
|
|
154
|
+
}>[];
|
|
155
|
+
interactionId: string;
|
|
156
|
+
kind: "session.elicitation.requested";
|
|
157
|
+
message: string;
|
|
158
|
+
mode: "form" | "url";
|
|
159
|
+
sessionId: string;
|
|
160
|
+
url: string;
|
|
161
|
+
}> | null;
|
|
156
162
|
sequence: number;
|
|
157
163
|
state: "running";
|
|
158
164
|
}> | null;
|
|
159
|
-
}> | Readonly<{
|
|
160
|
-
requestId: string;
|
|
161
|
-
sessionId: string;
|
|
162
|
-
kind: "native.session.result";
|
|
163
|
-
action: "unlinked-history";
|
|
164
|
-
targetSessionId: string;
|
|
165
165
|
}> | Readonly<{
|
|
166
166
|
requestId: string;
|
|
167
167
|
sessionId: string;
|
|
@@ -169,6 +169,7 @@ export declare class MobiusRuntimeResources {
|
|
|
169
169
|
action: "find";
|
|
170
170
|
entry: Readonly<{
|
|
171
171
|
entryId: string;
|
|
172
|
+
mobiusSessionIds: readonly string[];
|
|
172
173
|
nativeSessionId: string;
|
|
173
174
|
title: string;
|
|
174
175
|
directoryId: string;
|
|
@@ -200,6 +201,7 @@ export declare class MobiusRuntimeResources {
|
|
|
200
201
|
}>;
|
|
201
202
|
entries: readonly Readonly<{
|
|
202
203
|
entryId: string;
|
|
204
|
+
mobiusSessionIds: readonly string[];
|
|
203
205
|
nativeSessionId: string;
|
|
204
206
|
title: string;
|
|
205
207
|
directoryId: string;
|
|
@@ -271,73 +273,6 @@ export declare class MobiusRuntimeResources {
|
|
|
271
273
|
}>[] | undefined;
|
|
272
274
|
sessionId: string;
|
|
273
275
|
}>;
|
|
274
|
-
history: Readonly<{
|
|
275
|
-
status: "available";
|
|
276
|
-
messages: readonly (Readonly<{
|
|
277
|
-
role: "user";
|
|
278
|
-
text: string;
|
|
279
|
-
images?: readonly Readonly<{
|
|
280
|
-
data: string;
|
|
281
|
-
mimeType: "image/gif" | "image/jpeg" | "image/png" | "image/webp";
|
|
282
|
-
name: string;
|
|
283
|
-
}>[] | undefined;
|
|
284
|
-
}> | Readonly<{
|
|
285
|
-
activities: readonly Readonly<{
|
|
286
|
-
activityId: string;
|
|
287
|
-
activityType: string;
|
|
288
|
-
content: readonly Readonly<{
|
|
289
|
-
artifactId: string;
|
|
290
|
-
data: string;
|
|
291
|
-
mimeType: string;
|
|
292
|
-
name: string;
|
|
293
|
-
newText: string;
|
|
294
|
-
oldText: string;
|
|
295
|
-
path: string;
|
|
296
|
-
terminalId: string;
|
|
297
|
-
text: string;
|
|
298
|
-
type: "diff" | "image" | "resource" | "resource_link" | "terminal" | "text" | "video";
|
|
299
|
-
uri: string;
|
|
300
|
-
}>[];
|
|
301
|
-
input: string;
|
|
302
|
-
locations: readonly string[];
|
|
303
|
-
name: string;
|
|
304
|
-
output: string;
|
|
305
|
-
sequence: number;
|
|
306
|
-
status: string;
|
|
307
|
-
title: string;
|
|
308
|
-
toolKind: string;
|
|
309
|
-
}>[];
|
|
310
|
-
content: readonly Readonly<{
|
|
311
|
-
artifactId: string;
|
|
312
|
-
data: string;
|
|
313
|
-
mimeType: string;
|
|
314
|
-
name: string;
|
|
315
|
-
newText: string;
|
|
316
|
-
oldText: string;
|
|
317
|
-
path: string;
|
|
318
|
-
terminalId: string;
|
|
319
|
-
text: string;
|
|
320
|
-
type: "diff" | "image" | "resource" | "resource_link" | "terminal" | "text" | "video";
|
|
321
|
-
uri: string;
|
|
322
|
-
}>[];
|
|
323
|
-
role: "assistant";
|
|
324
|
-
text: string;
|
|
325
|
-
images?: readonly Readonly<{
|
|
326
|
-
data: string;
|
|
327
|
-
mimeType: "image/gif" | "image/jpeg" | "image/png" | "image/webp";
|
|
328
|
-
name: string;
|
|
329
|
-
}>[] | undefined;
|
|
330
|
-
}>)[];
|
|
331
|
-
truncated: boolean;
|
|
332
|
-
coveredCommandIds: readonly string[];
|
|
333
|
-
coveredMessageIds: readonly string[];
|
|
334
|
-
}> | Readonly<{
|
|
335
|
-
status: "unavailable";
|
|
336
|
-
cause: Readonly<{
|
|
337
|
-
code: string;
|
|
338
|
-
message: string;
|
|
339
|
-
}>;
|
|
340
|
-
}>;
|
|
341
276
|
title: string;
|
|
342
277
|
}> | Readonly<{
|
|
343
278
|
requestId: string;
|
|
@@ -497,6 +432,19 @@ export declare class MobiusRuntimeResources {
|
|
|
497
432
|
entryId: string;
|
|
498
433
|
deletedSessionIds: readonly string[];
|
|
499
434
|
}>>;
|
|
435
|
+
readonly querySessions: (runtimeId: string, sessionIds: readonly string[], signal: AbortSignal) => Promise<readonly Readonly<{
|
|
436
|
+
additionalDirectories: readonly Readonly<{
|
|
437
|
+
directoryId: string;
|
|
438
|
+
name: string;
|
|
439
|
+
}>[];
|
|
440
|
+
agentId: string;
|
|
441
|
+
directoryId: string;
|
|
442
|
+
directoryLabel: string;
|
|
443
|
+
prompted: boolean;
|
|
444
|
+
sessionId: string;
|
|
445
|
+
title: string;
|
|
446
|
+
updatedAt: string;
|
|
447
|
+
}>[]>;
|
|
500
448
|
readonly findNativeSessionByNativeSessionId: (runtimeId: string, request: Omit<Extract<NativeSessionRequest, {
|
|
501
449
|
readonly action: "find";
|
|
502
450
|
}>, "kind" | "requestId" | "sessionId" | "bindingId" | "action">, signal: AbortSignal) => Promise<Readonly<{
|
|
@@ -506,6 +454,7 @@ export declare class MobiusRuntimeResources {
|
|
|
506
454
|
action: "find";
|
|
507
455
|
entry: Readonly<{
|
|
508
456
|
entryId: string;
|
|
457
|
+
mobiusSessionIds: readonly string[];
|
|
509
458
|
nativeSessionId: string;
|
|
510
459
|
title: string;
|
|
511
460
|
directoryId: string;
|
|
@@ -526,10 +475,269 @@ export declare class MobiusRuntimePairingResources {
|
|
|
526
475
|
readonly read: (pairingId: string, signal: AbortSignal) => Promise<MobiusRuntimePairingStatus>;
|
|
527
476
|
readonly waitUntilPaired: (pairingId: string, options: MobiusRuntimePairingWaitOptions, signal: AbortSignal) => Promise<MobiusPairedRuntimePairingStatus>;
|
|
528
477
|
}
|
|
478
|
+
export declare class MobiusSessionResources {
|
|
479
|
+
#private;
|
|
480
|
+
constructor(executor: MobiusRequestExecutor, projectId: string);
|
|
481
|
+
readonly create: (request: CreateMobiusSessionRequest, signal: AbortSignal) => Promise<Readonly<{
|
|
482
|
+
additionalDirectories: readonly Readonly<{
|
|
483
|
+
directoryId: string;
|
|
484
|
+
name: string;
|
|
485
|
+
}>[];
|
|
486
|
+
agentId: string;
|
|
487
|
+
agentName: string;
|
|
488
|
+
agentVersion: string;
|
|
489
|
+
capabilities: Readonly<{
|
|
490
|
+
additionalDirectories: boolean;
|
|
491
|
+
audioPrompt: boolean;
|
|
492
|
+
closeSession: boolean;
|
|
493
|
+
deleteSession: boolean;
|
|
494
|
+
embeddedContextPrompt: boolean;
|
|
495
|
+
imagePrompt: boolean;
|
|
496
|
+
listSessions: boolean;
|
|
497
|
+
loadSession: boolean;
|
|
498
|
+
promptQueueing: boolean;
|
|
499
|
+
resumeSession: boolean;
|
|
500
|
+
steering: boolean;
|
|
501
|
+
unstableForkSession: boolean;
|
|
502
|
+
}>;
|
|
503
|
+
commands: readonly Readonly<{
|
|
504
|
+
description: string;
|
|
505
|
+
inputHint: string;
|
|
506
|
+
name: string;
|
|
507
|
+
}>[];
|
|
508
|
+
configOptions: readonly Readonly<{
|
|
509
|
+
booleanValue: boolean;
|
|
510
|
+
category: string;
|
|
511
|
+
currentValue: string;
|
|
512
|
+
description: string;
|
|
513
|
+
id: string;
|
|
514
|
+
name: string;
|
|
515
|
+
type: "boolean" | "select";
|
|
516
|
+
values: readonly Readonly<{
|
|
517
|
+
description: string;
|
|
518
|
+
groupId: string;
|
|
519
|
+
groupName: string;
|
|
520
|
+
name: string;
|
|
521
|
+
value: string;
|
|
522
|
+
}>[];
|
|
523
|
+
}>[];
|
|
524
|
+
directoryId: string;
|
|
525
|
+
directoryLabel: string;
|
|
526
|
+
kind: "session.ready";
|
|
527
|
+
requestId: string;
|
|
528
|
+
restored: boolean;
|
|
529
|
+
runtimeTimings?: readonly Readonly<{
|
|
530
|
+
durationMilliseconds: number;
|
|
531
|
+
name: string;
|
|
532
|
+
}>[] | undefined;
|
|
533
|
+
sessionId: string;
|
|
534
|
+
}>>;
|
|
535
|
+
readonly createAccess: (runtimeId: string, sessionId: string, expiresInSeconds: number, signal: AbortSignal) => Promise<MobiusSessionAccess>;
|
|
536
|
+
readonly load: (runtimeId: string, sessionId: string, request: {
|
|
537
|
+
readonly additionalDirectoryIds: readonly string[];
|
|
538
|
+
readonly agentId: string;
|
|
539
|
+
readonly directoryId: string;
|
|
540
|
+
}, signal: AbortSignal) => Promise<Readonly<{
|
|
541
|
+
additionalDirectories: readonly Readonly<{
|
|
542
|
+
directoryId: string;
|
|
543
|
+
name: string;
|
|
544
|
+
}>[];
|
|
545
|
+
agentId: string;
|
|
546
|
+
agentName: string;
|
|
547
|
+
agentVersion: string;
|
|
548
|
+
capabilities: Readonly<{
|
|
549
|
+
additionalDirectories: boolean;
|
|
550
|
+
audioPrompt: boolean;
|
|
551
|
+
closeSession: boolean;
|
|
552
|
+
deleteSession: boolean;
|
|
553
|
+
embeddedContextPrompt: boolean;
|
|
554
|
+
imagePrompt: boolean;
|
|
555
|
+
listSessions: boolean;
|
|
556
|
+
loadSession: boolean;
|
|
557
|
+
promptQueueing: boolean;
|
|
558
|
+
resumeSession: boolean;
|
|
559
|
+
steering: boolean;
|
|
560
|
+
unstableForkSession: boolean;
|
|
561
|
+
}>;
|
|
562
|
+
commands: readonly Readonly<{
|
|
563
|
+
description: string;
|
|
564
|
+
inputHint: string;
|
|
565
|
+
name: string;
|
|
566
|
+
}>[];
|
|
567
|
+
configOptions: readonly Readonly<{
|
|
568
|
+
booleanValue: boolean;
|
|
569
|
+
category: string;
|
|
570
|
+
currentValue: string;
|
|
571
|
+
description: string;
|
|
572
|
+
id: string;
|
|
573
|
+
name: string;
|
|
574
|
+
type: "boolean" | "select";
|
|
575
|
+
values: readonly Readonly<{
|
|
576
|
+
description: string;
|
|
577
|
+
groupId: string;
|
|
578
|
+
groupName: string;
|
|
579
|
+
name: string;
|
|
580
|
+
value: string;
|
|
581
|
+
}>[];
|
|
582
|
+
}>[];
|
|
583
|
+
directoryId: string;
|
|
584
|
+
directoryLabel: string;
|
|
585
|
+
kind: "session.ready";
|
|
586
|
+
requestId: string;
|
|
587
|
+
restored: boolean;
|
|
588
|
+
runtimeTimings?: readonly Readonly<{
|
|
589
|
+
durationMilliseconds: number;
|
|
590
|
+
name: string;
|
|
591
|
+
}>[] | undefined;
|
|
592
|
+
sessionId: string;
|
|
593
|
+
}>>;
|
|
594
|
+
readonly updateConfiguration: (...operation: readonly [runtimeId: string, sessionId: string, request: Omit<SessionConfigureCommand, "bindingId" | "kind" | "requestId" | "sessionId">, signal: AbortSignal] | readonly [sessionId: string, request: Pick<SessionConfigureCommand, "additionalDirectoryIds" | "agentId" | "booleanValue" | "configId" | "directoryId" | "value" | "valueType">, signal: AbortSignal]) => Promise<Readonly<{
|
|
595
|
+
configOptions: readonly Readonly<{
|
|
596
|
+
booleanValue: boolean;
|
|
597
|
+
category: string;
|
|
598
|
+
currentValue: string;
|
|
599
|
+
description: string;
|
|
600
|
+
id: string;
|
|
601
|
+
name: string;
|
|
602
|
+
type: "boolean" | "select";
|
|
603
|
+
values: readonly Readonly<{
|
|
604
|
+
description: string;
|
|
605
|
+
groupId: string;
|
|
606
|
+
groupName: string;
|
|
607
|
+
name: string;
|
|
608
|
+
value: string;
|
|
609
|
+
}>[];
|
|
610
|
+
}>[];
|
|
611
|
+
kind: "session.config.updated";
|
|
612
|
+
requestId: string;
|
|
613
|
+
sessionId: string;
|
|
614
|
+
}>>;
|
|
615
|
+
readonly configure: (sessionId: string, request: ConfigureMobiusSessionRequest, signal: AbortSignal) => Promise<MobiusSession>;
|
|
616
|
+
readonly delete: (sessionId: string, signal: AbortSignal) => Promise<MobiusSessionState>;
|
|
617
|
+
readonly export: (sessionId: string, signal: AbortSignal) => Promise<MobiusSessionExport>;
|
|
618
|
+
readonly import: (exported: MobiusSessionExport, targetBinding: MobiusSessionImportBinding, signal: AbortSignal) => Promise<MobiusSession>;
|
|
619
|
+
readonly read: (sessionId: string, signal: AbortSignal) => Promise<MobiusSession>;
|
|
620
|
+
readonly readFile: (sessionId: string, path: string, signal: AbortSignal, maximumBytes?: number) => Promise<{
|
|
621
|
+
readonly bytes: Uint8Array;
|
|
622
|
+
readonly mediaType: string;
|
|
623
|
+
readonly modifiedAt: string;
|
|
624
|
+
readonly name: string;
|
|
625
|
+
}>;
|
|
626
|
+
readonly list: (page: MobiusPageRequest, signal: AbortSignal) => Promise<MobiusSessionPage>;
|
|
627
|
+
readonly readMessages: (sessionId: string, page: MobiusPageRequest, signal: AbortSignal) => Promise<MobiusMessagePage>;
|
|
628
|
+
readonly queryNativeMessages: (...request: readonly [runtimeId: string, sessionId: string, identity: {
|
|
629
|
+
readonly additionalDirectoryIds: readonly string[];
|
|
630
|
+
readonly agentId: string;
|
|
631
|
+
readonly directoryId: string;
|
|
632
|
+
}, page: MobiusPageRequest, signal: AbortSignal] | readonly [runtimeId: string, sessionId: string, identity: {
|
|
633
|
+
readonly additionalDirectoryIds: readonly string[];
|
|
634
|
+
readonly agentId: string;
|
|
635
|
+
readonly directoryId: string;
|
|
636
|
+
}, signal: AbortSignal] | readonly [sessionId: string, page: MobiusPageRequest, signal: AbortSignal] | readonly [sessionId: string, signal: AbortSignal]) => Promise<NativeMessagePage>;
|
|
637
|
+
readonly querySessionNativeMessages: (sessionId: string, identity: {
|
|
638
|
+
readonly additionalDirectoryIds: readonly string[];
|
|
639
|
+
readonly agentId: string;
|
|
640
|
+
readonly directoryId: string;
|
|
641
|
+
}, page: MobiusPageRequest, signal: AbortSignal) => Promise<NativeMessagePage>;
|
|
642
|
+
readonly readActiveTurn: (sessionId: string, identity: {
|
|
643
|
+
readonly additionalDirectoryIds: readonly string[];
|
|
644
|
+
readonly agentId: string;
|
|
645
|
+
readonly directoryId: string;
|
|
646
|
+
}, signal: AbortSignal) => Promise<Extract<NativeSessionResult, {
|
|
647
|
+
readonly action: "active-turn";
|
|
648
|
+
}>["turn"]>;
|
|
649
|
+
}
|
|
650
|
+
export declare class MobiusTurnResources {
|
|
651
|
+
#private;
|
|
652
|
+
constructor(executor: MobiusRequestExecutor, projectId: string);
|
|
653
|
+
readonly submit: (sessionId: string, request: SubmitMobiusTurnRequest & {
|
|
654
|
+
readonly agentId?: string;
|
|
655
|
+
readonly directoryId?: string;
|
|
656
|
+
}, signal: AbortSignal) => Promise<MobiusTurn>;
|
|
657
|
+
readonly submitToRuntime: (runtimeId: string, sessionId: string, request: SubmitMobiusTurnRequest & {
|
|
658
|
+
readonly agentId: string;
|
|
659
|
+
readonly directoryId: string;
|
|
660
|
+
}, signal: AbortSignal) => Promise<{
|
|
661
|
+
readonly turnId: string;
|
|
662
|
+
}>;
|
|
663
|
+
readonly read: (sessionId: string, turnId: string, signal: AbortSignal) => Promise<MobiusTurn>;
|
|
664
|
+
readonly cancel: (sessionId: string, turnId: string, request: CancelMobiusTurnRequest, signal: AbortSignal) => Promise<MobiusTurn>;
|
|
665
|
+
readonly steer: (sessionId: string, turnId: string, signal: AbortSignal) => Promise<MobiusTurn>;
|
|
666
|
+
}
|
|
667
|
+
export declare class MobiusAttemptResources {
|
|
668
|
+
#private;
|
|
669
|
+
constructor(executor: MobiusRequestExecutor, projectId: string);
|
|
670
|
+
readonly read: (sessionId: string, attemptId: string, signal: AbortSignal) => Promise<Attempt>;
|
|
671
|
+
}
|
|
672
|
+
export declare class MobiusToolCallResources {
|
|
673
|
+
#private;
|
|
674
|
+
constructor(executor: MobiusRequestExecutor, projectId: string);
|
|
675
|
+
readonly readDetail: (sessionId: string, attemptId: string, toolCallId: string, signal: AbortSignal) => Promise<MobiusToolCallDetail>;
|
|
676
|
+
}
|
|
677
|
+
export declare class MobiusInteractionResources {
|
|
678
|
+
#private;
|
|
679
|
+
constructor(executor: MobiusRequestExecutor, projectId: string);
|
|
680
|
+
readonly listPending: (sessionId: string, signal: AbortSignal) => Promise<readonly Interaction[]>;
|
|
681
|
+
readonly read: (sessionId: string, interactionId: string, signal: AbortSignal) => Promise<Interaction>;
|
|
682
|
+
readonly respond: (sessionId: string, interactionId: string, request: MobiusInteractionResponseRequest, signal: AbortSignal) => Promise<void>;
|
|
683
|
+
}
|
|
684
|
+
export interface MobiusSessionEventObserver {
|
|
685
|
+
readonly receive: (event: MobiusSessionEvent) => Promise<boolean>;
|
|
686
|
+
}
|
|
687
|
+
export declare class MobiusEventSubscription {
|
|
688
|
+
#private;
|
|
689
|
+
readonly completed: Promise<void>;
|
|
690
|
+
constructor(executor: MobiusRequestExecutor, path: string, cursor: string, observer: MobiusSessionEventObserver, signal: AbortSignal, controller: AbortController, firstConnection: StreamConnection, maximumReconnectAttempts: number);
|
|
691
|
+
get cursor(): string;
|
|
692
|
+
readonly close: () => void;
|
|
693
|
+
private readonly abortFromExternal;
|
|
694
|
+
private readonly run;
|
|
695
|
+
private readonly consume;
|
|
696
|
+
private readonly consumeBlock;
|
|
697
|
+
private readonly pathWithCursor;
|
|
698
|
+
private readonly recover;
|
|
699
|
+
private readonly throwIfTerminal;
|
|
700
|
+
private readonly reconnectDelay;
|
|
701
|
+
}
|
|
702
|
+
export type MobiusLiveSessionConnection = {
|
|
703
|
+
readonly kind: "initial";
|
|
704
|
+
} | {
|
|
705
|
+
readonly kind: "reconnected";
|
|
706
|
+
};
|
|
707
|
+
export interface MobiusLiveSessionEventObserver extends MobiusSessionEventObserver {
|
|
708
|
+
readonly reconcile: (connection: MobiusLiveSessionConnection) => Promise<void>;
|
|
709
|
+
}
|
|
710
|
+
export declare class MobiusLiveEventSubscription {
|
|
711
|
+
#private;
|
|
712
|
+
readonly connected: Promise<void>;
|
|
713
|
+
readonly completed: Promise<void>;
|
|
714
|
+
constructor(executor: MobiusRequestExecutor, path: string, observer: MobiusLiveSessionEventObserver, signal: AbortSignal, maximumReconnectAttempts: number);
|
|
715
|
+
readonly close: () => void;
|
|
716
|
+
private readonly run;
|
|
717
|
+
private readonly reconnectDelay;
|
|
718
|
+
}
|
|
719
|
+
export declare class MobiusEventResources {
|
|
720
|
+
#private;
|
|
721
|
+
constructor(executor: MobiusRequestExecutor, projectId: string, maximumReconnectAttempts: number);
|
|
722
|
+
readonly subscribe: (sessionId: string, cursor: string, observer: MobiusSessionEventObserver, signal: AbortSignal) => Promise<MobiusEventSubscription>;
|
|
723
|
+
readonly subscribeLive: (sessionId: string, observer: MobiusLiveSessionEventObserver, signal: AbortSignal) => Promise<MobiusLiveEventSubscription>;
|
|
724
|
+
readonly list: (sessionId: string, page: MobiusPageRequest, signal: AbortSignal) => Promise<MobiusEventPage>;
|
|
725
|
+
readonly wait: (sessionId: string, page: MobiusPageRequest, waitMilliseconds: number, signal: AbortSignal) => Promise<MobiusEventPage>;
|
|
726
|
+
readonly close: () => void;
|
|
727
|
+
}
|
|
529
728
|
export declare class MobiusClient {
|
|
729
|
+
readonly attempts: MobiusAttemptResources;
|
|
730
|
+
readonly capabilities: MobiusCapabilityResources;
|
|
530
731
|
readonly credentials: MobiusCredentialResources;
|
|
732
|
+
readonly events: MobiusEventResources;
|
|
733
|
+
readonly interactions: MobiusInteractionResources;
|
|
531
734
|
readonly runtimePairings: MobiusRuntimePairingResources;
|
|
532
735
|
readonly runtimes: MobiusRuntimeResources;
|
|
736
|
+
readonly sessions: MobiusSessionResources;
|
|
737
|
+
readonly turns: MobiusTurnResources;
|
|
738
|
+
readonly toolCalls: MobiusToolCallResources;
|
|
533
739
|
constructor(options: MobiusClientOptions);
|
|
740
|
+
readonly close: () => void;
|
|
534
741
|
}
|
|
742
|
+
export {};
|
|
535
743
|
//# sourceMappingURL=service-client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service-client.d.ts","sourceRoot":"","sources":["../src/service-client.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"service-client.d.ts","sourceRoot":"","sources":["../src/service-client.ts"],"names":[],"mappings":"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"}
|