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