@nikcli-ai/sdk 1.279.0 → 1.281.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/httpapi/index.d.ts +0 -1061
- package/dist/httpapi/index.js +0 -11
- package/dist/server.d.ts +1059 -0
- package/dist/server.js +9 -0
- package/package.json +1 -1
package/dist/httpapi/index.d.ts
CHANGED
|
@@ -1,1064 +1,3 @@
|
|
|
1
1
|
export * as NikCli from "./generated/client.js";
|
|
2
2
|
export * from "./client.js";
|
|
3
|
-
export * from "../server.js";
|
|
4
3
|
export { NikCli as client } from "./generated/index.js";
|
|
5
|
-
import { type ServerOptions } from "../server.js";
|
|
6
|
-
/** Starts a local `nikcli serve` and returns a client bound to it. */
|
|
7
|
-
export declare function createNikcli(options?: ServerOptions): Promise<{
|
|
8
|
-
client: {
|
|
9
|
-
analytics: {
|
|
10
|
-
daily: (input?: (import("./client.js").AnalyticsDailyInput & {
|
|
11
|
-
readonly directory?: string;
|
|
12
|
-
readonly workspace?: string;
|
|
13
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").AnalyticsDailyOutput>>;
|
|
14
|
-
data: (input?: (import("./client.js").AnalyticsDataInput & {
|
|
15
|
-
readonly directory?: string;
|
|
16
|
-
readonly workspace?: string;
|
|
17
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").AnalyticsData>>;
|
|
18
|
-
global: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").AnalyticsGlobal>>;
|
|
19
|
-
leaderboard: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").AnalyticsLeaderboard>>;
|
|
20
|
-
session: (input: import("./client.js").AnalyticsSessionInput & {
|
|
21
|
-
readonly directory?: string;
|
|
22
|
-
readonly workspace?: string;
|
|
23
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").AnalyticsSession>>;
|
|
24
|
-
sessions: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").AnalyticsSessionsOutput>>;
|
|
25
|
-
};
|
|
26
|
-
app: {
|
|
27
|
-
agents: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").TopLevelAgentOutput>>;
|
|
28
|
-
log: (input: import("./client.js").AppLogInput & {
|
|
29
|
-
readonly directory?: string;
|
|
30
|
-
readonly workspace?: string;
|
|
31
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
32
|
-
skill: {
|
|
33
|
-
create: (input: import("./client.js").AppSkillCreateInput & {
|
|
34
|
-
readonly directory?: string;
|
|
35
|
-
readonly workspace?: string;
|
|
36
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").AppSkillInfo>>;
|
|
37
|
-
delete: (input: import("./client.js").AppSkillDeleteInput & {
|
|
38
|
-
readonly directory?: string;
|
|
39
|
-
readonly workspace?: string;
|
|
40
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
41
|
-
};
|
|
42
|
-
skills: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").TopLevelSkillOutput>>;
|
|
43
|
-
};
|
|
44
|
-
auth: {
|
|
45
|
-
remove: (input: import("./client.js").AuthRemoveInput & {
|
|
46
|
-
readonly directory?: string;
|
|
47
|
-
readonly workspace?: string;
|
|
48
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
49
|
-
set: (input: import("./client.js").AuthSetInput & {
|
|
50
|
-
readonly directory?: string;
|
|
51
|
-
readonly workspace?: string;
|
|
52
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
53
|
-
};
|
|
54
|
-
brain: {
|
|
55
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").BrainStatus>>;
|
|
56
|
-
trigger: (input?: (import("./client.js").BrainTriggerInput & {
|
|
57
|
-
readonly directory?: string;
|
|
58
|
-
readonly workspace?: string;
|
|
59
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").BrainResult>>;
|
|
60
|
-
};
|
|
61
|
-
command: {
|
|
62
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").TopLevelCommandOutput>>;
|
|
63
|
-
};
|
|
64
|
-
config: {
|
|
65
|
-
get: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Config>>;
|
|
66
|
-
providers: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ConfigProviders>>;
|
|
67
|
-
reload: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ConfigReloadResponse>>;
|
|
68
|
-
update: (input: import("./client.js").ConfigUpdateInput & {
|
|
69
|
-
readonly directory?: string;
|
|
70
|
-
readonly workspace?: string;
|
|
71
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Config>>;
|
|
72
|
-
};
|
|
73
|
-
connectors: {
|
|
74
|
-
auth: {
|
|
75
|
-
remove: (input: import("./client.js").ConnectorsAuthRemoveInput & {
|
|
76
|
-
readonly directory?: string;
|
|
77
|
-
readonly workspace?: string;
|
|
78
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ConnectorsSuccess>>;
|
|
79
|
-
set: (input: import("./client.js").ConnectorsAuthSetInput & {
|
|
80
|
-
readonly directory?: string;
|
|
81
|
-
readonly workspace?: string;
|
|
82
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ConnectorsSuccess>>;
|
|
83
|
-
};
|
|
84
|
-
invalidate: (input?: (import("./client.js").ConnectorsInvalidateInput & {
|
|
85
|
-
readonly directory?: string;
|
|
86
|
-
readonly workspace?: string;
|
|
87
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ConnectorsSuccess>>;
|
|
88
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ConnectorsStatusOutput2>>;
|
|
89
|
-
};
|
|
90
|
-
deleteConfigMcpName: (input: import("./client.js").ConfigManagementMcpRemoveInput & {
|
|
91
|
-
readonly directory?: string;
|
|
92
|
-
readonly workspace?: string;
|
|
93
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SuccessFlag>>;
|
|
94
|
-
doctor: {
|
|
95
|
-
run: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").DoctorReport>>;
|
|
96
|
-
};
|
|
97
|
-
event: {
|
|
98
|
-
subscribe: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<{
|
|
99
|
-
stream: AsyncIterable<import("./client.js").Event>;
|
|
100
|
-
}>;
|
|
101
|
-
};
|
|
102
|
-
experimental: {
|
|
103
|
-
resource: {
|
|
104
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").McpResourceMap>>;
|
|
105
|
-
};
|
|
106
|
-
workspace: {
|
|
107
|
-
adaptor: {
|
|
108
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").WorkspaceAdaptorsOutput>>;
|
|
109
|
-
};
|
|
110
|
-
create: (input: import("./client.js").WorkspaceCreateInput & {
|
|
111
|
-
readonly directory?: string;
|
|
112
|
-
readonly workspace?: string;
|
|
113
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Workspace1>>;
|
|
114
|
-
events: (input: import("./client.js").WorkspaceExtraEventsInput & {
|
|
115
|
-
readonly directory?: string;
|
|
116
|
-
readonly workspace?: string;
|
|
117
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").WorkspaceExtraEventsOutput>>;
|
|
118
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").WorkspaceListOutput>>;
|
|
119
|
-
remove: (input: import("./client.js").WorkspaceRemoveInput & {
|
|
120
|
-
readonly directory?: string;
|
|
121
|
-
readonly workspace?: string;
|
|
122
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").OptionalWorkspace>>;
|
|
123
|
-
restore: (input: import("./client.js").WorkspaceRestoreInput & {
|
|
124
|
-
readonly directory?: string;
|
|
125
|
-
readonly workspace?: string;
|
|
126
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").WorkspaceRestore>>;
|
|
127
|
-
session: {
|
|
128
|
-
restore: (input: import("./client.js").WorkspaceSessionRestoreInput & {
|
|
129
|
-
readonly directory?: string;
|
|
130
|
-
readonly workspace?: string;
|
|
131
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").WorkspaceSessionRestore>>;
|
|
132
|
-
warp: (input: import("./client.js").WorkspaceExtraSessionWarpInput & {
|
|
133
|
-
readonly directory?: string;
|
|
134
|
-
readonly workspace?: string;
|
|
135
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").WorkspaceSessionWarpResponse>>;
|
|
136
|
-
};
|
|
137
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").WorkspaceStatusOutput>>;
|
|
138
|
-
syncList: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<void>>;
|
|
139
|
-
warp: (input: import("./client.js").WorkspaceWarpInput & {
|
|
140
|
-
readonly directory?: string;
|
|
141
|
-
readonly workspace?: string;
|
|
142
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<void>>;
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
|
-
file: {
|
|
146
|
-
list: (input: import("./client.js").FileListInput & {
|
|
147
|
-
readonly directory?: string;
|
|
148
|
-
readonly workspace?: string;
|
|
149
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").FileListOutput>>;
|
|
150
|
-
read: (input: import("./client.js").FileContentInput & {
|
|
151
|
-
readonly directory?: string;
|
|
152
|
-
readonly workspace?: string;
|
|
153
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").FileContent>>;
|
|
154
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").FileStatusOutput>>;
|
|
155
|
-
write: (input: import("./client.js").FileWriteInput & {
|
|
156
|
-
readonly directory?: string;
|
|
157
|
-
readonly workspace?: string;
|
|
158
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").FileWriteResult>>;
|
|
159
|
-
};
|
|
160
|
-
find: {
|
|
161
|
-
files: (input: import("./client.js").FileFindFileInput & {
|
|
162
|
-
readonly directory?: string;
|
|
163
|
-
readonly workspace?: string;
|
|
164
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").FileFindFileOutput>>;
|
|
165
|
-
symbols: (input: import("./client.js").FileFindSymbolInput & {
|
|
166
|
-
readonly directory?: string;
|
|
167
|
-
readonly workspace?: string;
|
|
168
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").FileFindSymbolOutput>>;
|
|
169
|
-
text: (input: import("./client.js").FileFindTextInput & {
|
|
170
|
-
readonly directory?: string;
|
|
171
|
-
readonly workspace?: string;
|
|
172
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").FileFindTextOutput>>;
|
|
173
|
-
};
|
|
174
|
-
formatter: {
|
|
175
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").TopLevelFormatterOutput>>;
|
|
176
|
-
};
|
|
177
|
-
getApiShareShareId: (input: import("./client.js").ShareApiInput & {
|
|
178
|
-
readonly directory?: string;
|
|
179
|
-
readonly workspace?: string;
|
|
180
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ShareData>>;
|
|
181
|
-
getApiShareShareIdData: (input: import("./client.js").ShareDataInput & {
|
|
182
|
-
readonly directory?: string;
|
|
183
|
-
readonly workspace?: string;
|
|
184
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ShareData>>;
|
|
185
|
-
getShareShareId: (input: import("./client.js").SharePageInput & {
|
|
186
|
-
readonly directory?: string;
|
|
187
|
-
readonly workspace?: string;
|
|
188
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ShareData>>;
|
|
189
|
-
getSShareId: (input: import("./client.js").ShareShortInput & {
|
|
190
|
-
readonly directory?: string;
|
|
191
|
-
readonly workspace?: string;
|
|
192
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<any>>;
|
|
193
|
-
global: {
|
|
194
|
-
dispose: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
195
|
-
event: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<{
|
|
196
|
-
stream: AsyncIterable<import("./client.js").GlobalEvent>;
|
|
197
|
-
}>;
|
|
198
|
-
health: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").GlobalHealth>>;
|
|
199
|
-
};
|
|
200
|
-
instance: {
|
|
201
|
-
dispose: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
202
|
-
};
|
|
203
|
-
loop: {
|
|
204
|
-
abort: (input: import("./client.js").LoopAbortInput & {
|
|
205
|
-
readonly directory?: string;
|
|
206
|
-
readonly workspace?: string;
|
|
207
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
208
|
-
delete: (input: import("./client.js").LoopRemoveInput & {
|
|
209
|
-
readonly directory?: string;
|
|
210
|
-
readonly workspace?: string;
|
|
211
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
212
|
-
generate: (input: import("./client.js").LoopGenerateInput & {
|
|
213
|
-
readonly directory?: string;
|
|
214
|
-
readonly workspace?: string;
|
|
215
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopDefinition>>;
|
|
216
|
-
get: (input: import("./client.js").LoopGetInput & {
|
|
217
|
-
readonly directory?: string;
|
|
218
|
-
readonly workspace?: string;
|
|
219
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopGetOutput2>>;
|
|
220
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopListOutput2>>;
|
|
221
|
-
pause: (input: import("./client.js").LoopPauseInput & {
|
|
222
|
-
readonly directory?: string;
|
|
223
|
-
readonly workspace?: string;
|
|
224
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
225
|
-
recentRuns: (input?: (import("./client.js").LoopRecentRunsInput & {
|
|
226
|
-
readonly directory?: string;
|
|
227
|
-
readonly workspace?: string;
|
|
228
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopRunsOutput2>>;
|
|
229
|
-
resume: (input: import("./client.js").LoopResumeInput & {
|
|
230
|
-
readonly directory?: string;
|
|
231
|
-
readonly workspace?: string;
|
|
232
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
233
|
-
run: (input: import("./client.js").LoopRunInput & {
|
|
234
|
-
readonly directory?: string;
|
|
235
|
-
readonly workspace?: string;
|
|
236
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
237
|
-
runs: (input: import("./client.js").LoopRunsInput & {
|
|
238
|
-
readonly directory?: string;
|
|
239
|
-
readonly workspace?: string;
|
|
240
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopRunsOutput2>>;
|
|
241
|
-
templates: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopTemplatesOutput2>>;
|
|
242
|
-
toggle: (input: import("./client.js").LoopToggleInput & {
|
|
243
|
-
readonly directory?: string;
|
|
244
|
-
readonly workspace?: string;
|
|
245
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopDefinition>>;
|
|
246
|
-
update: (input: import("./client.js").LoopUpdateInput & {
|
|
247
|
-
readonly directory?: string;
|
|
248
|
-
readonly workspace?: string;
|
|
249
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopDefinition>>;
|
|
250
|
-
upsert: (input: import("./client.js").LoopUpsertInput & {
|
|
251
|
-
readonly directory?: string;
|
|
252
|
-
readonly workspace?: string;
|
|
253
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopDefinition>>;
|
|
254
|
-
};
|
|
255
|
-
lsp: {
|
|
256
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").TopLevelLspOutput>>;
|
|
257
|
-
};
|
|
258
|
-
managedWorktree: {
|
|
259
|
-
ancestors: (input: import("./client.js").ExperimentalManagedWorktreeAncestorsInput & {
|
|
260
|
-
readonly directory?: string;
|
|
261
|
-
readonly workspace?: string;
|
|
262
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ManagedWorktreeList>>;
|
|
263
|
-
children: (input: import("./client.js").ExperimentalManagedWorktreeChildrenInput & {
|
|
264
|
-
readonly directory?: string;
|
|
265
|
-
readonly workspace?: string;
|
|
266
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ManagedWorktreeList>>;
|
|
267
|
-
create: (input: import("./client.js").ExperimentalManagedWorktreeCreateInput & {
|
|
268
|
-
readonly directory?: string;
|
|
269
|
-
readonly workspace?: string;
|
|
270
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ManagedWorktreeInfo>>;
|
|
271
|
-
link: (input: import("./client.js").ExperimentalManagedWorktreeLinkInput & {
|
|
272
|
-
readonly directory?: string;
|
|
273
|
-
readonly workspace?: string;
|
|
274
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ManagedWorktreeInfo>>;
|
|
275
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ManagedWorktreeList>>;
|
|
276
|
-
remove: (input: import("./client.js").ExperimentalManagedWorktreeRemoveInput & {
|
|
277
|
-
readonly directory?: string;
|
|
278
|
-
readonly workspace?: string;
|
|
279
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<null>>;
|
|
280
|
-
};
|
|
281
|
-
mcp: {
|
|
282
|
-
add: (input: import("./client.js").McpAddInput & {
|
|
283
|
-
readonly directory?: string;
|
|
284
|
-
readonly workspace?: string;
|
|
285
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MCPStatusMap>>;
|
|
286
|
-
auth: {
|
|
287
|
-
authenticate: (input: import("./client.js").McpAuthenticateInput & {
|
|
288
|
-
readonly directory?: string;
|
|
289
|
-
readonly workspace?: string;
|
|
290
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MCPStatus>>;
|
|
291
|
-
callback: (input: import("./client.js").McpAuthCallbackInput & {
|
|
292
|
-
readonly directory?: string;
|
|
293
|
-
readonly workspace?: string;
|
|
294
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MCPStatus>>;
|
|
295
|
-
remove: (input: import("./client.js").McpRemoveAuthInput & {
|
|
296
|
-
readonly directory?: string;
|
|
297
|
-
readonly workspace?: string;
|
|
298
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").McpMutationSuccess>>;
|
|
299
|
-
start: (input: import("./client.js").McpStartAuthInput & {
|
|
300
|
-
readonly directory?: string;
|
|
301
|
-
readonly workspace?: string;
|
|
302
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").McpStartAuthResponse>>;
|
|
303
|
-
};
|
|
304
|
-
connect: (input: import("./client.js").McpConnectInput & {
|
|
305
|
-
readonly directory?: string;
|
|
306
|
-
readonly workspace?: string;
|
|
307
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
308
|
-
disconnect: (input: import("./client.js").McpDisconnectInput & {
|
|
309
|
-
readonly directory?: string;
|
|
310
|
-
readonly workspace?: string;
|
|
311
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
312
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MCPStatusMap>>;
|
|
313
|
-
toggle: (input: import("./client.js").McpToggleInput & {
|
|
314
|
-
readonly directory?: string;
|
|
315
|
-
readonly workspace?: string;
|
|
316
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MCPStatusMap>>;
|
|
317
|
-
};
|
|
318
|
-
mission: {
|
|
319
|
-
cancel: (input: import("./client.js").MissionCancelInput & {
|
|
320
|
-
readonly directory?: string;
|
|
321
|
-
readonly workspace?: string;
|
|
322
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
323
|
-
delete: (input: import("./client.js").MissionRemoveInput & {
|
|
324
|
-
readonly directory?: string;
|
|
325
|
-
readonly workspace?: string;
|
|
326
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
327
|
-
execs: (input: import("./client.js").MissionExecsInput & {
|
|
328
|
-
readonly directory?: string;
|
|
329
|
-
readonly workspace?: string;
|
|
330
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionExecsOutput2>>;
|
|
331
|
-
feature: {
|
|
332
|
-
mutate: (input: import("./client.js").MissionFeatureMutateInput & {
|
|
333
|
-
readonly directory?: string;
|
|
334
|
-
readonly workspace?: string;
|
|
335
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionDefinition>>;
|
|
336
|
-
};
|
|
337
|
-
generate: (input: import("./client.js").MissionGenerateInput & {
|
|
338
|
-
readonly directory?: string;
|
|
339
|
-
readonly workspace?: string;
|
|
340
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionDefinition>>;
|
|
341
|
-
get: (input: import("./client.js").MissionGetInput & {
|
|
342
|
-
readonly directory?: string;
|
|
343
|
-
readonly workspace?: string;
|
|
344
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionGetOutput2>>;
|
|
345
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionListOutput2>>;
|
|
346
|
-
pause: (input: import("./client.js").MissionPauseInput & {
|
|
347
|
-
readonly directory?: string;
|
|
348
|
-
readonly workspace?: string;
|
|
349
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
350
|
-
recentExecs: (input?: (import("./client.js").MissionRecentExecsInput & {
|
|
351
|
-
readonly directory?: string;
|
|
352
|
-
readonly workspace?: string;
|
|
353
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionExecsOutput2>>;
|
|
354
|
-
start: (input: import("./client.js").MissionStartInput & {
|
|
355
|
-
readonly directory?: string;
|
|
356
|
-
readonly workspace?: string;
|
|
357
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
358
|
-
templates: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionTemplatesOutput2>>;
|
|
359
|
-
update: (input: import("./client.js").MissionUpdateInput & {
|
|
360
|
-
readonly directory?: string;
|
|
361
|
-
readonly workspace?: string;
|
|
362
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionDefinition>>;
|
|
363
|
-
upsert: (input: import("./client.js").MissionUpsertInput & {
|
|
364
|
-
readonly directory?: string;
|
|
365
|
-
readonly workspace?: string;
|
|
366
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MissionDefinition>>;
|
|
367
|
-
};
|
|
368
|
-
mobile: {
|
|
369
|
-
auth: {
|
|
370
|
-
token: {
|
|
371
|
-
create: (input?: (import("./client.js").MobileAuthTokenCreateInput & {
|
|
372
|
-
readonly directory?: string;
|
|
373
|
-
readonly workspace?: string;
|
|
374
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileAuthTokenCreateOutput>>;
|
|
375
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileAuthTokenListOutput>>;
|
|
376
|
-
revoke: (input: import("./client.js").MobileAuthTokenRevokeInput & {
|
|
377
|
-
readonly directory?: string;
|
|
378
|
-
readonly workspace?: string;
|
|
379
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileAuthTokenRevokeOutput>>;
|
|
380
|
-
};
|
|
381
|
-
};
|
|
382
|
-
bootstrap: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileBootstrap>>;
|
|
383
|
-
command: {
|
|
384
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileCommandListOutput>>;
|
|
385
|
-
};
|
|
386
|
-
git: {
|
|
387
|
-
branches: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGitBranchesOutput>>;
|
|
388
|
-
checkout: (input: import("./client.js").MobileGitCheckoutInput & {
|
|
389
|
-
readonly directory?: string;
|
|
390
|
-
readonly workspace?: string;
|
|
391
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
392
|
-
commit: (input: import("./client.js").MobileGitCommitInput & {
|
|
393
|
-
readonly directory?: string;
|
|
394
|
-
readonly workspace?: string;
|
|
395
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGitCommitOutput>>;
|
|
396
|
-
commits: (input?: (import("./client.js").MobileGitCommitsInput & {
|
|
397
|
-
readonly directory?: string;
|
|
398
|
-
readonly workspace?: string;
|
|
399
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGitCommitsOutput>>;
|
|
400
|
-
diff: (input?: (import("./client.js").MobileGitDiffInput & {
|
|
401
|
-
readonly directory?: string;
|
|
402
|
-
readonly workspace?: string;
|
|
403
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGitDiffOutput>>;
|
|
404
|
-
discard: (input: import("./client.js").MobileGitDiscardInput & {
|
|
405
|
-
readonly directory?: string;
|
|
406
|
-
readonly workspace?: string;
|
|
407
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
408
|
-
pull: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGitPullOutput>>;
|
|
409
|
-
push: (input?: (import("./client.js").MobileGitPushInput & {
|
|
410
|
-
readonly directory?: string;
|
|
411
|
-
readonly workspace?: string;
|
|
412
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGitPushOutput>>;
|
|
413
|
-
stage: (input: import("./client.js").MobileGitStageInput & {
|
|
414
|
-
readonly directory?: string;
|
|
415
|
-
readonly workspace?: string;
|
|
416
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
417
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGitStatus>>;
|
|
418
|
-
unstage: (input: import("./client.js").MobileGitUnstageInput & {
|
|
419
|
-
readonly directory?: string;
|
|
420
|
-
readonly workspace?: string;
|
|
421
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
422
|
-
};
|
|
423
|
-
github: {
|
|
424
|
-
auth: {
|
|
425
|
-
remove: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
426
|
-
set: (input: import("./client.js").MobileGithubAuthSetInput & {
|
|
427
|
-
readonly directory?: string;
|
|
428
|
-
readonly workspace?: string;
|
|
429
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
430
|
-
};
|
|
431
|
-
branches: (input: import("./client.js").MobileGithubBranchesInput & {
|
|
432
|
-
readonly directory?: string;
|
|
433
|
-
readonly workspace?: string;
|
|
434
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGithubBranchesOutput>>;
|
|
435
|
-
import: (input: import("./client.js").MobileGithubImportInput & {
|
|
436
|
-
readonly directory?: string;
|
|
437
|
-
readonly workspace?: string;
|
|
438
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGithubImportOutput>>;
|
|
439
|
-
imports: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGithubImportsOutput>>;
|
|
440
|
-
oauth: {
|
|
441
|
-
clientId: {
|
|
442
|
-
set: (input: import("./client.js").MobileGithubOauthClientInput & {
|
|
443
|
-
readonly directory?: string;
|
|
444
|
-
readonly workspace?: string;
|
|
445
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileConfigInfo>>;
|
|
446
|
-
};
|
|
447
|
-
device: {
|
|
448
|
-
poll: (input: import("./client.js").MobileGithubOauthDevicePollInput & {
|
|
449
|
-
readonly directory?: string;
|
|
450
|
-
readonly workspace?: string;
|
|
451
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGithubDeviceAuthPollResult>>;
|
|
452
|
-
start: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGithubDeviceAuthStart>>;
|
|
453
|
-
};
|
|
454
|
-
};
|
|
455
|
-
repos: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGithubReposOutput>>;
|
|
456
|
-
session: {
|
|
457
|
-
cleanup: (input: import("./client.js").MobileSessionCleanupInput & {
|
|
458
|
-
readonly directory?: string;
|
|
459
|
-
readonly workspace?: string;
|
|
460
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
461
|
-
create: (input: import("./client.js").MobileGithubSessionCreateInput & {
|
|
462
|
-
readonly directory?: string;
|
|
463
|
-
readonly workspace?: string;
|
|
464
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGithubSessionCreateResult>>;
|
|
465
|
-
publish: (input: import("./client.js").MobileSessionPublishInput & {
|
|
466
|
-
readonly directory?: string;
|
|
467
|
-
readonly workspace?: string;
|
|
468
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileGithubPublishResult>>;
|
|
469
|
-
};
|
|
470
|
-
};
|
|
471
|
-
loop: {
|
|
472
|
-
abort: (input: import("./client.js").MobileLoopAbortInput & {
|
|
473
|
-
readonly directory?: string;
|
|
474
|
-
readonly workspace?: string;
|
|
475
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
476
|
-
create: (input: import("./client.js").MobileLoopCreateInput & {
|
|
477
|
-
readonly directory?: string;
|
|
478
|
-
readonly workspace?: string;
|
|
479
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopDefinition>>;
|
|
480
|
-
delete: (input: import("./client.js").MobileLoopDeleteInput & {
|
|
481
|
-
readonly directory?: string;
|
|
482
|
-
readonly workspace?: string;
|
|
483
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
484
|
-
generate: (input: import("./client.js").MobileLoopGenerateInput & {
|
|
485
|
-
readonly directory?: string;
|
|
486
|
-
readonly workspace?: string;
|
|
487
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopDefinition>>;
|
|
488
|
-
get: (input: import("./client.js").MobileLoopGetInput & {
|
|
489
|
-
readonly directory?: string;
|
|
490
|
-
readonly workspace?: string;
|
|
491
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileLoopGetOutput>>;
|
|
492
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileLoopListOutput>>;
|
|
493
|
-
pause: (input: import("./client.js").MobileLoopPauseInput & {
|
|
494
|
-
readonly directory?: string;
|
|
495
|
-
readonly workspace?: string;
|
|
496
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
497
|
-
resume: (input: import("./client.js").MobileLoopResumeInput & {
|
|
498
|
-
readonly directory?: string;
|
|
499
|
-
readonly workspace?: string;
|
|
500
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
501
|
-
run: (input: import("./client.js").MobileLoopRunInput & {
|
|
502
|
-
readonly directory?: string;
|
|
503
|
-
readonly workspace?: string;
|
|
504
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
505
|
-
runs: (input: import("./client.js").MobileLoopRunsInput & {
|
|
506
|
-
readonly directory?: string;
|
|
507
|
-
readonly workspace?: string;
|
|
508
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileLoopRunsOutput>>;
|
|
509
|
-
runs2: {
|
|
510
|
-
recent: (input?: (import("./client.js").MobileLoopRunsRecentInput & {
|
|
511
|
-
readonly directory?: string;
|
|
512
|
-
readonly workspace?: string;
|
|
513
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileLoopRunsRecentOutput>>;
|
|
514
|
-
};
|
|
515
|
-
templates: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileLoopTemplatesOutput>>;
|
|
516
|
-
toggle: (input: import("./client.js").MobileLoopToggleInput & {
|
|
517
|
-
readonly directory?: string;
|
|
518
|
-
readonly workspace?: string;
|
|
519
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopDefinition>>;
|
|
520
|
-
update: (input: import("./client.js").MobileLoopUpdateInput & {
|
|
521
|
-
readonly directory?: string;
|
|
522
|
-
readonly workspace?: string;
|
|
523
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").LoopDefinition>>;
|
|
524
|
-
};
|
|
525
|
-
memory: {
|
|
526
|
-
history: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileMemoryHistoryOutput>>;
|
|
527
|
-
search: (input: import("./client.js").MobileMemorySearchInput & {
|
|
528
|
-
readonly directory?: string;
|
|
529
|
-
readonly workspace?: string;
|
|
530
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileMemorySearchOutput>>;
|
|
531
|
-
stash: {
|
|
532
|
-
create: (input: import("./client.js").MobileMemoryStashCreateInput & {
|
|
533
|
-
readonly directory?: string;
|
|
534
|
-
readonly workspace?: string;
|
|
535
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobilePromptStashEntry>>;
|
|
536
|
-
delete: (input: import("./client.js").MobileMemoryStashDeleteInput & {
|
|
537
|
-
readonly directory?: string;
|
|
538
|
-
readonly workspace?: string;
|
|
539
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
540
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileMemoryStashListOutput>>;
|
|
541
|
-
};
|
|
542
|
-
};
|
|
543
|
-
permission: {
|
|
544
|
-
respond: (input: import("./client.js").MobilePermissionRespondInput & {
|
|
545
|
-
readonly directory?: string;
|
|
546
|
-
readonly workspace?: string;
|
|
547
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
548
|
-
};
|
|
549
|
-
project: {
|
|
550
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileProjectListOutput>>;
|
|
551
|
-
};
|
|
552
|
-
pty: {
|
|
553
|
-
create: (input?: (import("./client.js").MobilePtyCreateInput & {
|
|
554
|
-
readonly directory?: string;
|
|
555
|
-
readonly workspace?: string;
|
|
556
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Pty>>;
|
|
557
|
-
get: (input: import("./client.js").MobilePtyGetInput & {
|
|
558
|
-
readonly directory?: string;
|
|
559
|
-
readonly workspace?: string;
|
|
560
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Pty>>;
|
|
561
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobilePtyListOutput>>;
|
|
562
|
-
remove: (input: import("./client.js").MobilePtyRemoveInput & {
|
|
563
|
-
readonly directory?: string;
|
|
564
|
-
readonly workspace?: string;
|
|
565
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
566
|
-
update: (input: import("./client.js").MobilePtyUpdateInput & {
|
|
567
|
-
readonly directory?: string;
|
|
568
|
-
readonly workspace?: string;
|
|
569
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Pty>>;
|
|
570
|
-
};
|
|
571
|
-
question: {
|
|
572
|
-
reject: (input: import("./client.js").MobileQuestionRejectInput & {
|
|
573
|
-
readonly directory?: string;
|
|
574
|
-
readonly workspace?: string;
|
|
575
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
576
|
-
respond: (input: import("./client.js").MobileQuestionRespondInput & {
|
|
577
|
-
readonly directory?: string;
|
|
578
|
-
readonly workspace?: string;
|
|
579
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
580
|
-
};
|
|
581
|
-
routine: {
|
|
582
|
-
create: (input: import("./client.js").MobileRoutineCreateInput & {
|
|
583
|
-
readonly directory?: string;
|
|
584
|
-
readonly workspace?: string;
|
|
585
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Routine>>;
|
|
586
|
-
delete: (input: import("./client.js").MobileRoutineDeleteInput & {
|
|
587
|
-
readonly directory?: string;
|
|
588
|
-
readonly workspace?: string;
|
|
589
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
590
|
-
get: (input: import("./client.js").MobileRoutineGetInput & {
|
|
591
|
-
readonly directory?: string;
|
|
592
|
-
readonly workspace?: string;
|
|
593
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Routine>>;
|
|
594
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileRoutineListOutput>>;
|
|
595
|
-
pause: (input: import("./client.js").MobileRoutinePauseInput & {
|
|
596
|
-
readonly directory?: string;
|
|
597
|
-
readonly workspace?: string;
|
|
598
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Routine>>;
|
|
599
|
-
resume: (input: import("./client.js").MobileRoutineResumeInput & {
|
|
600
|
-
readonly directory?: string;
|
|
601
|
-
readonly workspace?: string;
|
|
602
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Routine>>;
|
|
603
|
-
run: (input: import("./client.js").MobileRoutineRunInput & {
|
|
604
|
-
readonly directory?: string;
|
|
605
|
-
readonly workspace?: string;
|
|
606
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
607
|
-
trigger: (input: import("./client.js").MobileRoutineTriggerInput & {
|
|
608
|
-
readonly directory?: string;
|
|
609
|
-
readonly workspace?: string;
|
|
610
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
611
|
-
update: (input: import("./client.js").MobileRoutineUpdateInput & {
|
|
612
|
-
readonly directory?: string;
|
|
613
|
-
readonly workspace?: string;
|
|
614
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Routine>>;
|
|
615
|
-
};
|
|
616
|
-
session: {
|
|
617
|
-
abort: (input: import("./client.js").MobileSessionAbortInput & {
|
|
618
|
-
readonly directory?: string;
|
|
619
|
-
readonly workspace?: string;
|
|
620
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
621
|
-
command: (input: import("./client.js").MobileSessionCommandInput & {
|
|
622
|
-
readonly directory?: string;
|
|
623
|
-
readonly workspace?: string;
|
|
624
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSessionCommandOutput>>;
|
|
625
|
-
command2: {
|
|
626
|
-
list: (input: import("./client.js").MobileSessionCommandListInput & {
|
|
627
|
-
readonly directory?: string;
|
|
628
|
-
readonly workspace?: string;
|
|
629
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSessionCommandListOutput>>;
|
|
630
|
-
};
|
|
631
|
-
create: (input?: (import("./client.js").MobileSessionCreateInput & {
|
|
632
|
-
readonly directory?: string;
|
|
633
|
-
readonly workspace?: string;
|
|
634
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
635
|
-
delete: (input: import("./client.js").MobileSessionDeleteInput & {
|
|
636
|
-
readonly directory?: string;
|
|
637
|
-
readonly workspace?: string;
|
|
638
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
639
|
-
detail: (input: import("./client.js").MobileSessionDetailInput & {
|
|
640
|
-
readonly directory?: string;
|
|
641
|
-
readonly workspace?: string;
|
|
642
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSessionDetail>>;
|
|
643
|
-
diff: (input: import("./client.js").MobileSessionDiffInput & {
|
|
644
|
-
readonly directory?: string;
|
|
645
|
-
readonly workspace?: string;
|
|
646
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSessionDiffOutput>>;
|
|
647
|
-
list: (input?: (import("./client.js").MobileSessionListInput & {
|
|
648
|
-
readonly directory?: string;
|
|
649
|
-
readonly workspace?: string;
|
|
650
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSessionListOutput>>;
|
|
651
|
-
message: (input: import("./client.js").MobileSessionMessageInput & {
|
|
652
|
-
readonly directory?: string;
|
|
653
|
-
readonly workspace?: string;
|
|
654
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSessionMessageOutput>>;
|
|
655
|
-
rename: (input: import("./client.js").MobileSessionRenameInput & {
|
|
656
|
-
readonly directory?: string;
|
|
657
|
-
readonly workspace?: string;
|
|
658
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
659
|
-
stream: (input: import("./client.js").MobileSessionStreamInput & {
|
|
660
|
-
readonly directory?: string;
|
|
661
|
-
readonly workspace?: string;
|
|
662
|
-
}, options?: import("./compat.js").CallOptions) => Promise<{
|
|
663
|
-
stream: AsyncIterable<any>;
|
|
664
|
-
}>;
|
|
665
|
-
teleport: (input: import("./client.js").MobileTeleportInInput & {
|
|
666
|
-
readonly directory?: string;
|
|
667
|
-
readonly workspace?: string;
|
|
668
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileTeleportResult>>;
|
|
669
|
-
teleport2: {
|
|
670
|
-
out: (input: import("./client.js").MobileTeleportOutInput & {
|
|
671
|
-
readonly directory?: string;
|
|
672
|
-
readonly workspace?: string;
|
|
673
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileTeleportResult>>;
|
|
674
|
-
upload: {
|
|
675
|
-
begin: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileTeleportUploadBeginOutput>>;
|
|
676
|
-
chunk: (input: import("./client.js").MobileTeleportUploadChunkInput & {
|
|
677
|
-
readonly directory?: string;
|
|
678
|
-
readonly workspace?: string;
|
|
679
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileTeleportUploadChunkOutput>>;
|
|
680
|
-
};
|
|
681
|
-
};
|
|
682
|
-
};
|
|
683
|
-
worktree: {
|
|
684
|
-
create: (input: import("./client.js").MobileWorktreeCreateInput & {
|
|
685
|
-
readonly directory?: string;
|
|
686
|
-
readonly workspace?: string;
|
|
687
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ManagedWorktreeInfo>>;
|
|
688
|
-
remove: (input: import("./client.js").MobileWorktreeRemoveInput & {
|
|
689
|
-
readonly directory?: string;
|
|
690
|
-
readonly workspace?: string;
|
|
691
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
692
|
-
reset: (input: import("./client.js").MobileWorktreeResetInput & {
|
|
693
|
-
readonly directory?: string;
|
|
694
|
-
readonly workspace?: string;
|
|
695
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MobileSuccess>>;
|
|
696
|
-
};
|
|
697
|
-
};
|
|
698
|
-
part: {
|
|
699
|
-
delete: (input: import("./client.js").SessionPartRemoveInput & {
|
|
700
|
-
readonly directory?: string;
|
|
701
|
-
readonly workspace?: string;
|
|
702
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
703
|
-
update: (input: import("./client.js").SessionPartUpdateInput & {
|
|
704
|
-
readonly directory?: string;
|
|
705
|
-
readonly workspace?: string;
|
|
706
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Part>>;
|
|
707
|
-
};
|
|
708
|
-
patchConfigMcpName: (input: import("./client.js").ConfigManagementMcpUpdateInput & {
|
|
709
|
-
readonly directory?: string;
|
|
710
|
-
readonly workspace?: string;
|
|
711
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SuccessFlag>>;
|
|
712
|
-
patchUserId: (input: import("./client.js").UsersUpdateInput & {
|
|
713
|
-
readonly directory?: string;
|
|
714
|
-
readonly workspace?: string;
|
|
715
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").PublicUser>>;
|
|
716
|
-
path: {
|
|
717
|
-
get: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Path>>;
|
|
718
|
-
};
|
|
719
|
-
permission: {
|
|
720
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").PermissionListOutput>>;
|
|
721
|
-
reply: (input: import("./client.js").PermissionReplyInput & {
|
|
722
|
-
readonly directory?: string;
|
|
723
|
-
readonly workspace?: string;
|
|
724
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
725
|
-
respond: (input: import("./client.js").SessionPermissionRespondInput & {
|
|
726
|
-
readonly directory?: string;
|
|
727
|
-
readonly workspace?: string;
|
|
728
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
729
|
-
};
|
|
730
|
-
postConfigMcp: (input: import("./client.js").ConfigManagementMcpAddInput & {
|
|
731
|
-
readonly directory?: string;
|
|
732
|
-
readonly workspace?: string;
|
|
733
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SuccessFlag>>;
|
|
734
|
-
postConfigProfiles: (input: import("./client.js").ConfigManagementProfileCreateInput & {
|
|
735
|
-
readonly directory?: string;
|
|
736
|
-
readonly workspace?: string;
|
|
737
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SuccessFlag>>;
|
|
738
|
-
postConfigProfilesActivateName: (input: import("./client.js").ConfigManagementProfileActivateInput & {
|
|
739
|
-
readonly directory?: string;
|
|
740
|
-
readonly workspace?: string;
|
|
741
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SuccessFlag>>;
|
|
742
|
-
postUserLogin: (input: import("./client.js").UsersLoginInput & {
|
|
743
|
-
readonly directory?: string;
|
|
744
|
-
readonly workspace?: string;
|
|
745
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").UserSession>>;
|
|
746
|
-
postUserRegister: (input: import("./client.js").UsersRegisterInput & {
|
|
747
|
-
readonly directory?: string;
|
|
748
|
-
readonly workspace?: string;
|
|
749
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").UserSession>>;
|
|
750
|
-
project: {
|
|
751
|
-
current: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Project>>;
|
|
752
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ProjectListOutput>>;
|
|
753
|
-
update: (input: import("./client.js").ProjectUpdateInput & {
|
|
754
|
-
readonly directory?: string;
|
|
755
|
-
readonly workspace?: string;
|
|
756
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Project>>;
|
|
757
|
-
};
|
|
758
|
-
provider: {
|
|
759
|
-
api: {
|
|
760
|
-
set: (input: import("./client.js").ProviderApiInput & {
|
|
761
|
-
readonly directory?: string;
|
|
762
|
-
readonly workspace?: string;
|
|
763
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ProviderMutationSuccess>>;
|
|
764
|
-
};
|
|
765
|
-
auth: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ProviderAuthMethods>>;
|
|
766
|
-
auth2: {
|
|
767
|
-
remove: (input: import("./client.js").ProviderRemoveAuthInput & {
|
|
768
|
-
readonly directory?: string;
|
|
769
|
-
readonly workspace?: string;
|
|
770
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ProviderMutationSuccess>>;
|
|
771
|
-
};
|
|
772
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ProviderList>>;
|
|
773
|
-
oauth: {
|
|
774
|
-
authorize: (input: import("./client.js").ProviderOauthAuthorizeInput & {
|
|
775
|
-
readonly directory?: string;
|
|
776
|
-
readonly workspace?: string;
|
|
777
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ProviderOauthAuthorizeOutput>>;
|
|
778
|
-
callback: (input: import("./client.js").ProviderOauthCallbackInput & {
|
|
779
|
-
readonly directory?: string;
|
|
780
|
-
readonly workspace?: string;
|
|
781
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
782
|
-
};
|
|
783
|
-
};
|
|
784
|
-
pty: {
|
|
785
|
-
create: (input?: (import("./client.js").PtyCreateInput & {
|
|
786
|
-
readonly directory?: string;
|
|
787
|
-
readonly workspace?: string;
|
|
788
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Pty1>>;
|
|
789
|
-
get: (input: import("./client.js").PtyGetInput & {
|
|
790
|
-
readonly directory?: string;
|
|
791
|
-
readonly workspace?: string;
|
|
792
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Pty1>>;
|
|
793
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").PtyList>>;
|
|
794
|
-
remove: (input: import("./client.js").PtyRemoveInput & {
|
|
795
|
-
readonly directory?: string;
|
|
796
|
-
readonly workspace?: string;
|
|
797
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
798
|
-
update: (input: import("./client.js").PtyUpdateInput & {
|
|
799
|
-
readonly directory?: string;
|
|
800
|
-
readonly workspace?: string;
|
|
801
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Pty1>>;
|
|
802
|
-
};
|
|
803
|
-
question: {
|
|
804
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").QuestionListOutput>>;
|
|
805
|
-
reject: (input: import("./client.js").QuestionRejectInput & {
|
|
806
|
-
readonly directory?: string;
|
|
807
|
-
readonly workspace?: string;
|
|
808
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
809
|
-
reply: (input: import("./client.js").QuestionReplyInput & {
|
|
810
|
-
readonly directory?: string;
|
|
811
|
-
readonly workspace?: string;
|
|
812
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
813
|
-
};
|
|
814
|
-
session: {
|
|
815
|
-
abort: (input: import("./client.js").SessionAbortInput & {
|
|
816
|
-
readonly directory?: string;
|
|
817
|
-
readonly workspace?: string;
|
|
818
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
819
|
-
background: (input: import("./client.js").SessionBackgroundInput & {
|
|
820
|
-
readonly directory?: string;
|
|
821
|
-
readonly workspace?: string;
|
|
822
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionBackgroundOutput2>>;
|
|
823
|
-
background2: {
|
|
824
|
-
cancel: (input: import("./client.js").SessionBackgroundCancelInput & {
|
|
825
|
-
readonly directory?: string;
|
|
826
|
-
readonly workspace?: string;
|
|
827
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
828
|
-
inspect: (input: import("./client.js").SessionBackgroundInspectInput & {
|
|
829
|
-
readonly directory?: string;
|
|
830
|
-
readonly workspace?: string;
|
|
831
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionBackgroundInspectOutput2>>;
|
|
832
|
-
read: (input: import("./client.js").SessionBackgroundReadInput & {
|
|
833
|
-
readonly directory?: string;
|
|
834
|
-
readonly workspace?: string;
|
|
835
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<string>>;
|
|
836
|
-
};
|
|
837
|
-
children: (input: import("./client.js").SessionChildrenInput & {
|
|
838
|
-
readonly directory?: string;
|
|
839
|
-
readonly workspace?: string;
|
|
840
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionList>>;
|
|
841
|
-
command: (input: import("./client.js").SessionCommandInput & {
|
|
842
|
-
readonly directory?: string;
|
|
843
|
-
readonly workspace?: string;
|
|
844
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MessageWithParts>>;
|
|
845
|
-
context: (input: import("./client.js").SessionContextBreakdownInput & {
|
|
846
|
-
readonly directory?: string;
|
|
847
|
-
readonly workspace?: string;
|
|
848
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionContextBreakdown>>;
|
|
849
|
-
contextToggle: (input: import("./client.js").SessionContextToggleInput & {
|
|
850
|
-
readonly directory?: string;
|
|
851
|
-
readonly workspace?: string;
|
|
852
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionContextBreakdown>>;
|
|
853
|
-
create: (input?: (import("./client.js").SessionCreateInput & {
|
|
854
|
-
readonly directory?: string;
|
|
855
|
-
readonly workspace?: string;
|
|
856
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
857
|
-
delete: (input: import("./client.js").SessionRemoveInput & {
|
|
858
|
-
readonly directory?: string;
|
|
859
|
-
readonly workspace?: string;
|
|
860
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
861
|
-
diff: (input: import("./client.js").SessionDiffInput & {
|
|
862
|
-
readonly directory?: string;
|
|
863
|
-
readonly workspace?: string;
|
|
864
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").FileDiffList>>;
|
|
865
|
-
fork: (input: import("./client.js").SessionForkInput & {
|
|
866
|
-
readonly directory?: string;
|
|
867
|
-
readonly workspace?: string;
|
|
868
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
869
|
-
get: (input: import("./client.js").SessionGetInput & {
|
|
870
|
-
readonly directory?: string;
|
|
871
|
-
readonly workspace?: string;
|
|
872
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
873
|
-
goal: (input: import("./client.js").SessionGoalInput & {
|
|
874
|
-
readonly directory?: string;
|
|
875
|
-
readonly workspace?: string;
|
|
876
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionGoalOutput2>>;
|
|
877
|
-
instructions: (input: import("./client.js").SessionInstructionsInput & {
|
|
878
|
-
readonly directory?: string;
|
|
879
|
-
readonly workspace?: string;
|
|
880
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionInstructionList>>;
|
|
881
|
-
list: (input?: import("./client.js").SessionListInput | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionList>>;
|
|
882
|
-
message: (input: import("./client.js").SessionMessageInput & {
|
|
883
|
-
readonly directory?: string;
|
|
884
|
-
readonly workspace?: string;
|
|
885
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MessageWithParts>>;
|
|
886
|
-
messages: (input: import("./client.js").SessionMessagesInput & {
|
|
887
|
-
readonly directory?: string;
|
|
888
|
-
readonly workspace?: string;
|
|
889
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MessageList>>;
|
|
890
|
-
monitor: (input: import("./client.js").SessionMonitorInput & {
|
|
891
|
-
readonly directory?: string;
|
|
892
|
-
readonly workspace?: string;
|
|
893
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionMonitorOutput2>>;
|
|
894
|
-
monitorCancel: (input: import("./client.js").SessionMonitorCancelInput & {
|
|
895
|
-
readonly directory?: string;
|
|
896
|
-
readonly workspace?: string;
|
|
897
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionMonitorOutput2>>;
|
|
898
|
-
monitorLog: (input: import("./client.js").SessionMonitorLogInput & {
|
|
899
|
-
readonly directory?: string;
|
|
900
|
-
readonly workspace?: string;
|
|
901
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionMonitorLogOutput2>>;
|
|
902
|
-
prompt: (input: import("./client.js").SessionPromptPromptInput & {
|
|
903
|
-
readonly directory?: string;
|
|
904
|
-
readonly workspace?: string;
|
|
905
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionPromptResponse>>;
|
|
906
|
-
promptAsync: (input: import("./client.js").SessionPromptPromptAsyncInput & {
|
|
907
|
-
readonly directory?: string;
|
|
908
|
-
readonly workspace?: string;
|
|
909
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<void>>;
|
|
910
|
-
revert: (input: import("./client.js").SessionRevertInput & {
|
|
911
|
-
readonly directory?: string;
|
|
912
|
-
readonly workspace?: string;
|
|
913
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
914
|
-
share: (input: import("./client.js").SessionShareInput & {
|
|
915
|
-
readonly directory?: string;
|
|
916
|
-
readonly workspace?: string;
|
|
917
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
918
|
-
shell: (input: import("./client.js").SessionShellInput & {
|
|
919
|
-
readonly directory?: string;
|
|
920
|
-
readonly workspace?: string;
|
|
921
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").MessageWithParts>>;
|
|
922
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionStatusMap>>;
|
|
923
|
-
summarize: (input: import("./client.js").SessionSummarizeInput & {
|
|
924
|
-
readonly directory?: string;
|
|
925
|
-
readonly workspace?: string;
|
|
926
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
927
|
-
todo: (input: import("./client.js").SessionTodoInput & {
|
|
928
|
-
readonly directory?: string;
|
|
929
|
-
readonly workspace?: string;
|
|
930
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").TodoList>>;
|
|
931
|
-
unrevert: (input: import("./client.js").SessionUnrevertInput & {
|
|
932
|
-
readonly directory?: string;
|
|
933
|
-
readonly workspace?: string;
|
|
934
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
935
|
-
unshare: (input: import("./client.js").SessionUnshareInput & {
|
|
936
|
-
readonly directory?: string;
|
|
937
|
-
readonly workspace?: string;
|
|
938
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
939
|
-
update: (input: import("./client.js").SessionUpdateInput & {
|
|
940
|
-
readonly directory?: string;
|
|
941
|
-
readonly workspace?: string;
|
|
942
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Session>>;
|
|
943
|
-
v2: {
|
|
944
|
-
entries: (input: import("./client.js").SessionV2EntriesInput & {
|
|
945
|
-
readonly directory?: string;
|
|
946
|
-
readonly workspace?: string;
|
|
947
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionV2EntryList>>;
|
|
948
|
-
events: (input: import("./client.js").SessionV2EventsInput & {
|
|
949
|
-
readonly directory?: string;
|
|
950
|
-
readonly workspace?: string;
|
|
951
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SessionV2EventList>>;
|
|
952
|
-
state: (input: import("./client.js").SessionV2StateInput & {
|
|
953
|
-
readonly directory?: string;
|
|
954
|
-
readonly workspace?: string;
|
|
955
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<any>>;
|
|
956
|
-
};
|
|
957
|
-
};
|
|
958
|
-
sync: {
|
|
959
|
-
config: {
|
|
960
|
-
set: (input: import("./client.js").SyncConfigInput & {
|
|
961
|
-
readonly directory?: string;
|
|
962
|
-
readonly workspace?: string;
|
|
963
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SyncConfigSetResponse>>;
|
|
964
|
-
};
|
|
965
|
-
connect: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<void>>;
|
|
966
|
-
disconnect: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<void>>;
|
|
967
|
-
drain: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<void>>;
|
|
968
|
-
event: {
|
|
969
|
-
push: (input: import("./client.js").SyncEventInput & {
|
|
970
|
-
readonly directory?: string;
|
|
971
|
-
readonly workspace?: string;
|
|
972
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<void>>;
|
|
973
|
-
stream: (input: import("./client.js").SyncStreamInput & {
|
|
974
|
-
readonly directory?: string;
|
|
975
|
-
readonly workspace?: string;
|
|
976
|
-
}, options?: import("./compat.js").CallOptions) => Promise<{
|
|
977
|
-
stream: AsyncIterable<any>;
|
|
978
|
-
}>;
|
|
979
|
-
};
|
|
980
|
-
outbox: {
|
|
981
|
-
list: (input: import("./client.js").SyncOutboxInput & {
|
|
982
|
-
readonly directory?: string;
|
|
983
|
-
readonly workspace?: string;
|
|
984
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SyncOutboxResponse>>;
|
|
985
|
-
};
|
|
986
|
-
snapshot: {
|
|
987
|
-
get: (input: import("./client.js").SyncSnapshotInput & {
|
|
988
|
-
readonly directory?: string;
|
|
989
|
-
readonly workspace?: string;
|
|
990
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SyncSnapshotResponse>>;
|
|
991
|
-
};
|
|
992
|
-
stats: (input?: (import("./client.js").SyncStatsInput & {
|
|
993
|
-
readonly directory?: string;
|
|
994
|
-
readonly workspace?: string;
|
|
995
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").SyncStatsOutput2>>;
|
|
996
|
-
};
|
|
997
|
-
tool: {
|
|
998
|
-
ids: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ToolIDs>>;
|
|
999
|
-
list: (input: import("./client.js").ExperimentalToolsInput & {
|
|
1000
|
-
readonly directory?: string;
|
|
1001
|
-
readonly workspace?: string;
|
|
1002
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").ToolList>>;
|
|
1003
|
-
};
|
|
1004
|
-
tui: {
|
|
1005
|
-
appendPrompt: (input: import("./client.js").TuiAppendPromptInput & {
|
|
1006
|
-
readonly directory?: string;
|
|
1007
|
-
readonly workspace?: string;
|
|
1008
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1009
|
-
clearPrompt: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1010
|
-
control: {
|
|
1011
|
-
next: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").TuiControlRequest>>;
|
|
1012
|
-
response: (input: import("./client.js").TuiControlResponseInput & {
|
|
1013
|
-
readonly directory?: string;
|
|
1014
|
-
readonly workspace?: string;
|
|
1015
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1016
|
-
};
|
|
1017
|
-
executeCommand: (input: import("./client.js").TuiExecuteCommandInput & {
|
|
1018
|
-
readonly directory?: string;
|
|
1019
|
-
readonly workspace?: string;
|
|
1020
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1021
|
-
openHelp: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1022
|
-
openModels: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1023
|
-
openSessions: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1024
|
-
openThemes: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1025
|
-
publish: (input: import("./client.js").TuiPublishInput & {
|
|
1026
|
-
readonly directory?: string;
|
|
1027
|
-
readonly workspace?: string;
|
|
1028
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1029
|
-
selectSession: (input: import("./client.js").TuiSelectSessionInput & {
|
|
1030
|
-
readonly directory?: string;
|
|
1031
|
-
readonly workspace?: string;
|
|
1032
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1033
|
-
showToast: (input: import("./client.js").TuiShowToastInput & {
|
|
1034
|
-
readonly directory?: string;
|
|
1035
|
-
readonly workspace?: string;
|
|
1036
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1037
|
-
submitPrompt: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1038
|
-
};
|
|
1039
|
-
vcs: {
|
|
1040
|
-
apply: (input: import("./client.js").TopLevelVcsApplyInput & {
|
|
1041
|
-
readonly directory?: string;
|
|
1042
|
-
readonly workspace?: string;
|
|
1043
|
-
}, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").VcsApplyResult>>;
|
|
1044
|
-
diff: {
|
|
1045
|
-
raw: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<string>>;
|
|
1046
|
-
};
|
|
1047
|
-
get: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").VcsInfo>>;
|
|
1048
|
-
status: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").TopLevelVcsStatusOutput>>;
|
|
1049
|
-
};
|
|
1050
|
-
worktree: {
|
|
1051
|
-
create: (input?: (import("./client.js").ExperimentalWorktreeCreateInput & {
|
|
1052
|
-
readonly directory?: string;
|
|
1053
|
-
readonly workspace?: string;
|
|
1054
|
-
}) | undefined, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").Worktree>>;
|
|
1055
|
-
list: (options?: import("./compat.js").CallOptions, overrides?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<import("./client.js").WorktreeList>>;
|
|
1056
|
-
remove: (input: import("./client.js").ExperimentalWorktreeRemoveInput, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1057
|
-
reset: (input: import("./client.js").ExperimentalWorktreeResetInput, options?: import("./compat.js").CallOptions) => Promise<import("./compat.js").Result<boolean>>;
|
|
1058
|
-
};
|
|
1059
|
-
};
|
|
1060
|
-
server: {
|
|
1061
|
-
url: string;
|
|
1062
|
-
close(): void;
|
|
1063
|
-
};
|
|
1064
|
-
}>;
|