@kilocode/sdk 7.0.46 → 7.0.47
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/v2/gen/sdk.gen.d.ts +164 -1
- package/dist/v2/gen/sdk.gen.js +453 -33
- package/dist/v2/gen/types.gen.d.ts +284 -14
- package/package.json +1 -1
|
@@ -453,6 +453,7 @@ export type CompactionPart = {
|
|
|
453
453
|
messageID: string;
|
|
454
454
|
type: "compaction";
|
|
455
455
|
auto: boolean;
|
|
456
|
+
overflow?: boolean;
|
|
456
457
|
};
|
|
457
458
|
export type Part = TextPart | SubtaskPart | ReasoningPart | FilePart | ToolPart | StepStartPart | StepFinishPart | SnapshotPart | PatchPart | AgentPart | RetryPart | CompactionPart;
|
|
458
459
|
export type EventMessagePartUpdated = {
|
|
@@ -696,6 +697,7 @@ export type Session = {
|
|
|
696
697
|
id: string;
|
|
697
698
|
slug: string;
|
|
698
699
|
projectID: string;
|
|
700
|
+
workspaceID?: string;
|
|
699
701
|
directory: string;
|
|
700
702
|
parentID?: string;
|
|
701
703
|
summary?: {
|
|
@@ -774,6 +776,31 @@ export type EventVcsBranchUpdated = {
|
|
|
774
776
|
branch?: string;
|
|
775
777
|
};
|
|
776
778
|
};
|
|
779
|
+
export type EventWorktreeReady = {
|
|
780
|
+
type: "worktree.ready";
|
|
781
|
+
properties: {
|
|
782
|
+
name: string;
|
|
783
|
+
branch: string;
|
|
784
|
+
};
|
|
785
|
+
};
|
|
786
|
+
export type EventWorktreeFailed = {
|
|
787
|
+
type: "worktree.failed";
|
|
788
|
+
properties: {
|
|
789
|
+
message: string;
|
|
790
|
+
};
|
|
791
|
+
};
|
|
792
|
+
export type EventWorkspaceReady = {
|
|
793
|
+
type: "workspace.ready";
|
|
794
|
+
properties: {
|
|
795
|
+
name: string;
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
export type EventWorkspaceFailed = {
|
|
799
|
+
type: "workspace.failed";
|
|
800
|
+
properties: {
|
|
801
|
+
message: string;
|
|
802
|
+
};
|
|
803
|
+
};
|
|
777
804
|
export type Pty = {
|
|
778
805
|
id: string;
|
|
779
806
|
title: string;
|
|
@@ -808,20 +835,7 @@ export type EventPtyDeleted = {
|
|
|
808
835
|
id: string;
|
|
809
836
|
};
|
|
810
837
|
};
|
|
811
|
-
export type
|
|
812
|
-
type: "worktree.ready";
|
|
813
|
-
properties: {
|
|
814
|
-
name: string;
|
|
815
|
-
branch: string;
|
|
816
|
-
};
|
|
817
|
-
};
|
|
818
|
-
export type EventWorktreeFailed = {
|
|
819
|
-
type: "worktree.failed";
|
|
820
|
-
properties: {
|
|
821
|
-
message: string;
|
|
822
|
-
};
|
|
823
|
-
};
|
|
824
|
-
export type Event = EventInstallationUpdated | EventInstallationUpdateAvailable | EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventLspClientDiagnostics | EventLspUpdated | EventFileEdited | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartDelta | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventFileWatcherUpdated | EventTodoUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventSessionTurnOpen | EventSessionTurnClose | EventVcsBranchUpdated | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventWorktreeReady | EventWorktreeFailed;
|
|
838
|
+
export type Event = EventInstallationUpdated | EventInstallationUpdateAvailable | EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventLspClientDiagnostics | EventLspUpdated | EventFileEdited | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartDelta | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventFileWatcherUpdated | EventTodoUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventSessionTurnOpen | EventSessionTurnClose | EventVcsBranchUpdated | EventWorktreeReady | EventWorktreeFailed | EventWorkspaceReady | EventWorkspaceFailed | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted;
|
|
825
839
|
export type GlobalEvent = {
|
|
826
840
|
directory: string;
|
|
827
841
|
payload: Event;
|
|
@@ -1408,12 +1422,33 @@ export type WorktreeCreateInput = {
|
|
|
1408
1422
|
*/
|
|
1409
1423
|
startCommand?: string;
|
|
1410
1424
|
};
|
|
1425
|
+
export type Workspace = {
|
|
1426
|
+
id: string;
|
|
1427
|
+
branch: string | null;
|
|
1428
|
+
projectID: string;
|
|
1429
|
+
config: {
|
|
1430
|
+
directory: string;
|
|
1431
|
+
type: "worktree";
|
|
1432
|
+
};
|
|
1433
|
+
};
|
|
1411
1434
|
export type WorktreeRemoveInput = {
|
|
1412
1435
|
directory: string;
|
|
1413
1436
|
};
|
|
1414
1437
|
export type WorktreeResetInput = {
|
|
1415
1438
|
directory: string;
|
|
1416
1439
|
};
|
|
1440
|
+
export type WorktreeDiffItem = {
|
|
1441
|
+
file: string;
|
|
1442
|
+
before: string;
|
|
1443
|
+
after: string;
|
|
1444
|
+
additions: number;
|
|
1445
|
+
deletions: number;
|
|
1446
|
+
status?: "added" | "deleted" | "modified";
|
|
1447
|
+
tracked: boolean;
|
|
1448
|
+
generatedLike: boolean;
|
|
1449
|
+
summarized: boolean;
|
|
1450
|
+
stamp: string;
|
|
1451
|
+
};
|
|
1417
1452
|
export type ProjectSummary = {
|
|
1418
1453
|
id: string;
|
|
1419
1454
|
name?: string;
|
|
@@ -1423,6 +1458,7 @@ export type GlobalSession = {
|
|
|
1423
1458
|
id: string;
|
|
1424
1459
|
slug: string;
|
|
1425
1460
|
projectID: string;
|
|
1461
|
+
workspaceID?: string;
|
|
1426
1462
|
directory: string;
|
|
1427
1463
|
parentID?: string;
|
|
1428
1464
|
summary?: {
|
|
@@ -1747,6 +1783,7 @@ export type ProjectListData = {
|
|
|
1747
1783
|
path?: never;
|
|
1748
1784
|
query?: {
|
|
1749
1785
|
directory?: string;
|
|
1786
|
+
workspace?: string;
|
|
1750
1787
|
};
|
|
1751
1788
|
url: "/project";
|
|
1752
1789
|
};
|
|
@@ -1762,6 +1799,7 @@ export type ProjectCurrentData = {
|
|
|
1762
1799
|
path?: never;
|
|
1763
1800
|
query?: {
|
|
1764
1801
|
directory?: string;
|
|
1802
|
+
workspace?: string;
|
|
1765
1803
|
};
|
|
1766
1804
|
url: "/project/current";
|
|
1767
1805
|
};
|
|
@@ -1792,6 +1830,7 @@ export type ProjectUpdateData = {
|
|
|
1792
1830
|
};
|
|
1793
1831
|
query?: {
|
|
1794
1832
|
directory?: string;
|
|
1833
|
+
workspace?: string;
|
|
1795
1834
|
};
|
|
1796
1835
|
url: "/project/{projectID}";
|
|
1797
1836
|
};
|
|
@@ -1818,6 +1857,7 @@ export type PtyListData = {
|
|
|
1818
1857
|
path?: never;
|
|
1819
1858
|
query?: {
|
|
1820
1859
|
directory?: string;
|
|
1860
|
+
workspace?: string;
|
|
1821
1861
|
};
|
|
1822
1862
|
url: "/pty";
|
|
1823
1863
|
};
|
|
@@ -1841,6 +1881,7 @@ export type PtyCreateData = {
|
|
|
1841
1881
|
path?: never;
|
|
1842
1882
|
query?: {
|
|
1843
1883
|
directory?: string;
|
|
1884
|
+
workspace?: string;
|
|
1844
1885
|
};
|
|
1845
1886
|
url: "/pty";
|
|
1846
1887
|
};
|
|
@@ -1865,6 +1906,7 @@ export type PtyRemoveData = {
|
|
|
1865
1906
|
};
|
|
1866
1907
|
query?: {
|
|
1867
1908
|
directory?: string;
|
|
1909
|
+
workspace?: string;
|
|
1868
1910
|
};
|
|
1869
1911
|
url: "/pty/{ptyID}";
|
|
1870
1912
|
};
|
|
@@ -1889,6 +1931,7 @@ export type PtyGetData = {
|
|
|
1889
1931
|
};
|
|
1890
1932
|
query?: {
|
|
1891
1933
|
directory?: string;
|
|
1934
|
+
workspace?: string;
|
|
1892
1935
|
};
|
|
1893
1936
|
url: "/pty/{ptyID}";
|
|
1894
1937
|
};
|
|
@@ -1919,6 +1962,7 @@ export type PtyUpdateData = {
|
|
|
1919
1962
|
};
|
|
1920
1963
|
query?: {
|
|
1921
1964
|
directory?: string;
|
|
1965
|
+
workspace?: string;
|
|
1922
1966
|
};
|
|
1923
1967
|
url: "/pty/{ptyID}";
|
|
1924
1968
|
};
|
|
@@ -1943,6 +1987,7 @@ export type PtyConnectData = {
|
|
|
1943
1987
|
};
|
|
1944
1988
|
query?: {
|
|
1945
1989
|
directory?: string;
|
|
1990
|
+
workspace?: string;
|
|
1946
1991
|
};
|
|
1947
1992
|
url: "/pty/{ptyID}/connect";
|
|
1948
1993
|
};
|
|
@@ -1965,6 +2010,7 @@ export type ConfigGetData = {
|
|
|
1965
2010
|
path?: never;
|
|
1966
2011
|
query?: {
|
|
1967
2012
|
directory?: string;
|
|
2013
|
+
workspace?: string;
|
|
1968
2014
|
};
|
|
1969
2015
|
url: "/config";
|
|
1970
2016
|
};
|
|
@@ -1980,6 +2026,7 @@ export type ConfigUpdateData = {
|
|
|
1980
2026
|
path?: never;
|
|
1981
2027
|
query?: {
|
|
1982
2028
|
directory?: string;
|
|
2029
|
+
workspace?: string;
|
|
1983
2030
|
};
|
|
1984
2031
|
url: "/config";
|
|
1985
2032
|
};
|
|
@@ -2002,6 +2049,7 @@ export type ConfigProvidersData = {
|
|
|
2002
2049
|
path?: never;
|
|
2003
2050
|
query?: {
|
|
2004
2051
|
directory?: string;
|
|
2052
|
+
workspace?: string;
|
|
2005
2053
|
};
|
|
2006
2054
|
url: "/config/providers";
|
|
2007
2055
|
};
|
|
@@ -2022,6 +2070,7 @@ export type ToolIdsData = {
|
|
|
2022
2070
|
path?: never;
|
|
2023
2071
|
query?: {
|
|
2024
2072
|
directory?: string;
|
|
2073
|
+
workspace?: string;
|
|
2025
2074
|
};
|
|
2026
2075
|
url: "/experimental/tool/ids";
|
|
2027
2076
|
};
|
|
@@ -2044,6 +2093,7 @@ export type ToolListData = {
|
|
|
2044
2093
|
path?: never;
|
|
2045
2094
|
query: {
|
|
2046
2095
|
directory?: string;
|
|
2096
|
+
workspace?: string;
|
|
2047
2097
|
provider: string;
|
|
2048
2098
|
model: string;
|
|
2049
2099
|
};
|
|
@@ -2068,6 +2118,7 @@ export type WorktreeRemoveData = {
|
|
|
2068
2118
|
path?: never;
|
|
2069
2119
|
query?: {
|
|
2070
2120
|
directory?: string;
|
|
2121
|
+
workspace?: string;
|
|
2071
2122
|
};
|
|
2072
2123
|
url: "/experimental/worktree";
|
|
2073
2124
|
};
|
|
@@ -2090,6 +2141,7 @@ export type WorktreeListData = {
|
|
|
2090
2141
|
path?: never;
|
|
2091
2142
|
query?: {
|
|
2092
2143
|
directory?: string;
|
|
2144
|
+
workspace?: string;
|
|
2093
2145
|
};
|
|
2094
2146
|
url: "/experimental/worktree";
|
|
2095
2147
|
};
|
|
@@ -2105,6 +2157,7 @@ export type WorktreeCreateData = {
|
|
|
2105
2157
|
path?: never;
|
|
2106
2158
|
query?: {
|
|
2107
2159
|
directory?: string;
|
|
2160
|
+
workspace?: string;
|
|
2108
2161
|
};
|
|
2109
2162
|
url: "/experimental/worktree";
|
|
2110
2163
|
};
|
|
@@ -2122,11 +2175,84 @@ export type WorktreeCreateResponses = {
|
|
|
2122
2175
|
200: Worktree;
|
|
2123
2176
|
};
|
|
2124
2177
|
export type WorktreeCreateResponse = WorktreeCreateResponses[keyof WorktreeCreateResponses];
|
|
2178
|
+
export type ExperimentalWorkspaceRemoveData = {
|
|
2179
|
+
body?: never;
|
|
2180
|
+
path: {
|
|
2181
|
+
id: string;
|
|
2182
|
+
};
|
|
2183
|
+
query?: {
|
|
2184
|
+
directory?: string;
|
|
2185
|
+
workspace?: string;
|
|
2186
|
+
};
|
|
2187
|
+
url: "/experimental/workspace/{id}";
|
|
2188
|
+
};
|
|
2189
|
+
export type ExperimentalWorkspaceRemoveErrors = {
|
|
2190
|
+
/**
|
|
2191
|
+
* Bad request
|
|
2192
|
+
*/
|
|
2193
|
+
400: BadRequestError;
|
|
2194
|
+
};
|
|
2195
|
+
export type ExperimentalWorkspaceRemoveError = ExperimentalWorkspaceRemoveErrors[keyof ExperimentalWorkspaceRemoveErrors];
|
|
2196
|
+
export type ExperimentalWorkspaceRemoveResponses = {
|
|
2197
|
+
/**
|
|
2198
|
+
* Workspace removed
|
|
2199
|
+
*/
|
|
2200
|
+
200: Workspace;
|
|
2201
|
+
};
|
|
2202
|
+
export type ExperimentalWorkspaceRemoveResponse = ExperimentalWorkspaceRemoveResponses[keyof ExperimentalWorkspaceRemoveResponses];
|
|
2203
|
+
export type ExperimentalWorkspaceCreateData = {
|
|
2204
|
+
body?: {
|
|
2205
|
+
branch: string | null;
|
|
2206
|
+
config: {
|
|
2207
|
+
directory: string;
|
|
2208
|
+
type: "worktree";
|
|
2209
|
+
};
|
|
2210
|
+
};
|
|
2211
|
+
path: {
|
|
2212
|
+
id: string;
|
|
2213
|
+
};
|
|
2214
|
+
query?: {
|
|
2215
|
+
directory?: string;
|
|
2216
|
+
workspace?: string;
|
|
2217
|
+
};
|
|
2218
|
+
url: "/experimental/workspace/{id}";
|
|
2219
|
+
};
|
|
2220
|
+
export type ExperimentalWorkspaceCreateErrors = {
|
|
2221
|
+
/**
|
|
2222
|
+
* Bad request
|
|
2223
|
+
*/
|
|
2224
|
+
400: BadRequestError;
|
|
2225
|
+
};
|
|
2226
|
+
export type ExperimentalWorkspaceCreateError = ExperimentalWorkspaceCreateErrors[keyof ExperimentalWorkspaceCreateErrors];
|
|
2227
|
+
export type ExperimentalWorkspaceCreateResponses = {
|
|
2228
|
+
/**
|
|
2229
|
+
* Workspace created
|
|
2230
|
+
*/
|
|
2231
|
+
200: Workspace;
|
|
2232
|
+
};
|
|
2233
|
+
export type ExperimentalWorkspaceCreateResponse = ExperimentalWorkspaceCreateResponses[keyof ExperimentalWorkspaceCreateResponses];
|
|
2234
|
+
export type ExperimentalWorkspaceListData = {
|
|
2235
|
+
body?: never;
|
|
2236
|
+
path?: never;
|
|
2237
|
+
query?: {
|
|
2238
|
+
directory?: string;
|
|
2239
|
+
workspace?: string;
|
|
2240
|
+
};
|
|
2241
|
+
url: "/experimental/workspace";
|
|
2242
|
+
};
|
|
2243
|
+
export type ExperimentalWorkspaceListResponses = {
|
|
2244
|
+
/**
|
|
2245
|
+
* Workspaces
|
|
2246
|
+
*/
|
|
2247
|
+
200: Array<Workspace>;
|
|
2248
|
+
};
|
|
2249
|
+
export type ExperimentalWorkspaceListResponse = ExperimentalWorkspaceListResponses[keyof ExperimentalWorkspaceListResponses];
|
|
2125
2250
|
export type WorktreeResetData = {
|
|
2126
2251
|
body?: WorktreeResetInput;
|
|
2127
2252
|
path?: never;
|
|
2128
2253
|
query?: {
|
|
2129
2254
|
directory?: string;
|
|
2255
|
+
workspace?: string;
|
|
2130
2256
|
};
|
|
2131
2257
|
url: "/experimental/worktree/reset";
|
|
2132
2258
|
};
|
|
@@ -2149,6 +2275,7 @@ export type WorktreeDiffData = {
|
|
|
2149
2275
|
path?: never;
|
|
2150
2276
|
query?: {
|
|
2151
2277
|
directory?: string;
|
|
2278
|
+
workspace?: string;
|
|
2152
2279
|
/**
|
|
2153
2280
|
* Base branch or ref to diff against
|
|
2154
2281
|
*/
|
|
@@ -2170,6 +2297,64 @@ export type WorktreeDiffResponses = {
|
|
|
2170
2297
|
200: Array<FileDiff>;
|
|
2171
2298
|
};
|
|
2172
2299
|
export type WorktreeDiffResponse = WorktreeDiffResponses[keyof WorktreeDiffResponses];
|
|
2300
|
+
export type WorktreeDiffSummaryData = {
|
|
2301
|
+
body?: never;
|
|
2302
|
+
path?: never;
|
|
2303
|
+
query?: {
|
|
2304
|
+
directory?: string;
|
|
2305
|
+
workspace?: string;
|
|
2306
|
+
/**
|
|
2307
|
+
* Base branch or ref to diff against
|
|
2308
|
+
*/
|
|
2309
|
+
base?: string;
|
|
2310
|
+
};
|
|
2311
|
+
url: "/experimental/worktree/diff/summary";
|
|
2312
|
+
};
|
|
2313
|
+
export type WorktreeDiffSummaryErrors = {
|
|
2314
|
+
/**
|
|
2315
|
+
* Bad request
|
|
2316
|
+
*/
|
|
2317
|
+
400: BadRequestError;
|
|
2318
|
+
};
|
|
2319
|
+
export type WorktreeDiffSummaryError = WorktreeDiffSummaryErrors[keyof WorktreeDiffSummaryErrors];
|
|
2320
|
+
export type WorktreeDiffSummaryResponses = {
|
|
2321
|
+
/**
|
|
2322
|
+
* Diff summary items
|
|
2323
|
+
*/
|
|
2324
|
+
200: Array<WorktreeDiffItem>;
|
|
2325
|
+
};
|
|
2326
|
+
export type WorktreeDiffSummaryResponse = WorktreeDiffSummaryResponses[keyof WorktreeDiffSummaryResponses];
|
|
2327
|
+
export type WorktreeDiffFileData = {
|
|
2328
|
+
body?: never;
|
|
2329
|
+
path?: never;
|
|
2330
|
+
query: {
|
|
2331
|
+
directory?: string;
|
|
2332
|
+
workspace?: string;
|
|
2333
|
+
/**
|
|
2334
|
+
* Base branch or ref to diff against
|
|
2335
|
+
*/
|
|
2336
|
+
base?: string;
|
|
2337
|
+
/**
|
|
2338
|
+
* Relative file path to load diff contents for
|
|
2339
|
+
*/
|
|
2340
|
+
file: string;
|
|
2341
|
+
};
|
|
2342
|
+
url: "/experimental/worktree/diff/file";
|
|
2343
|
+
};
|
|
2344
|
+
export type WorktreeDiffFileErrors = {
|
|
2345
|
+
/**
|
|
2346
|
+
* Bad request
|
|
2347
|
+
*/
|
|
2348
|
+
400: BadRequestError;
|
|
2349
|
+
};
|
|
2350
|
+
export type WorktreeDiffFileError = WorktreeDiffFileErrors[keyof WorktreeDiffFileErrors];
|
|
2351
|
+
export type WorktreeDiffFileResponses = {
|
|
2352
|
+
/**
|
|
2353
|
+
* Diff detail item
|
|
2354
|
+
*/
|
|
2355
|
+
200: WorktreeDiffItem | null;
|
|
2356
|
+
};
|
|
2357
|
+
export type WorktreeDiffFileResponse = WorktreeDiffFileResponses[keyof WorktreeDiffFileResponses];
|
|
2173
2358
|
export type ExperimentalSessionListData = {
|
|
2174
2359
|
body?: never;
|
|
2175
2360
|
path?: never;
|
|
@@ -2178,6 +2363,7 @@ export type ExperimentalSessionListData = {
|
|
|
2178
2363
|
* Filter sessions by project directory
|
|
2179
2364
|
*/
|
|
2180
2365
|
directory?: string;
|
|
2366
|
+
workspace?: string;
|
|
2181
2367
|
/**
|
|
2182
2368
|
* Only return root sessions (no parentID)
|
|
2183
2369
|
*/
|
|
@@ -2217,6 +2403,7 @@ export type ExperimentalResourceListData = {
|
|
|
2217
2403
|
path?: never;
|
|
2218
2404
|
query?: {
|
|
2219
2405
|
directory?: string;
|
|
2406
|
+
workspace?: string;
|
|
2220
2407
|
};
|
|
2221
2408
|
url: "/experimental/resource";
|
|
2222
2409
|
};
|
|
@@ -2237,6 +2424,7 @@ export type SessionListData = {
|
|
|
2237
2424
|
* Filter sessions by project directory
|
|
2238
2425
|
*/
|
|
2239
2426
|
directory?: string;
|
|
2427
|
+
workspace?: string;
|
|
2240
2428
|
/**
|
|
2241
2429
|
* Only return root sessions (no parentID)
|
|
2242
2430
|
*/
|
|
@@ -2273,6 +2461,7 @@ export type SessionCreateData = {
|
|
|
2273
2461
|
path?: never;
|
|
2274
2462
|
query?: {
|
|
2275
2463
|
directory?: string;
|
|
2464
|
+
workspace?: string;
|
|
2276
2465
|
};
|
|
2277
2466
|
url: "/session";
|
|
2278
2467
|
};
|
|
@@ -2295,6 +2484,7 @@ export type SessionStatusData = {
|
|
|
2295
2484
|
path?: never;
|
|
2296
2485
|
query?: {
|
|
2297
2486
|
directory?: string;
|
|
2487
|
+
workspace?: string;
|
|
2298
2488
|
};
|
|
2299
2489
|
url: "/session/status";
|
|
2300
2490
|
};
|
|
@@ -2321,6 +2511,7 @@ export type SessionDeleteData = {
|
|
|
2321
2511
|
};
|
|
2322
2512
|
query?: {
|
|
2323
2513
|
directory?: string;
|
|
2514
|
+
workspace?: string;
|
|
2324
2515
|
};
|
|
2325
2516
|
url: "/session/{sessionID}";
|
|
2326
2517
|
};
|
|
@@ -2349,6 +2540,7 @@ export type SessionGetData = {
|
|
|
2349
2540
|
};
|
|
2350
2541
|
query?: {
|
|
2351
2542
|
directory?: string;
|
|
2543
|
+
workspace?: string;
|
|
2352
2544
|
};
|
|
2353
2545
|
url: "/session/{sessionID}";
|
|
2354
2546
|
};
|
|
@@ -2382,6 +2574,7 @@ export type SessionUpdateData = {
|
|
|
2382
2574
|
};
|
|
2383
2575
|
query?: {
|
|
2384
2576
|
directory?: string;
|
|
2577
|
+
workspace?: string;
|
|
2385
2578
|
};
|
|
2386
2579
|
url: "/session/{sessionID}";
|
|
2387
2580
|
};
|
|
@@ -2410,6 +2603,7 @@ export type SessionChildrenData = {
|
|
|
2410
2603
|
};
|
|
2411
2604
|
query?: {
|
|
2412
2605
|
directory?: string;
|
|
2606
|
+
workspace?: string;
|
|
2413
2607
|
};
|
|
2414
2608
|
url: "/session/{sessionID}/children";
|
|
2415
2609
|
};
|
|
@@ -2441,6 +2635,7 @@ export type SessionTodoData = {
|
|
|
2441
2635
|
};
|
|
2442
2636
|
query?: {
|
|
2443
2637
|
directory?: string;
|
|
2638
|
+
workspace?: string;
|
|
2444
2639
|
};
|
|
2445
2640
|
url: "/session/{sessionID}/todo";
|
|
2446
2641
|
};
|
|
@@ -2476,6 +2671,7 @@ export type SessionInitData = {
|
|
|
2476
2671
|
};
|
|
2477
2672
|
query?: {
|
|
2478
2673
|
directory?: string;
|
|
2674
|
+
workspace?: string;
|
|
2479
2675
|
};
|
|
2480
2676
|
url: "/session/{sessionID}/init";
|
|
2481
2677
|
};
|
|
@@ -2506,6 +2702,7 @@ export type SessionForkData = {
|
|
|
2506
2702
|
};
|
|
2507
2703
|
query?: {
|
|
2508
2704
|
directory?: string;
|
|
2705
|
+
workspace?: string;
|
|
2509
2706
|
};
|
|
2510
2707
|
url: "/session/{sessionID}/fork";
|
|
2511
2708
|
};
|
|
@@ -2523,6 +2720,7 @@ export type SessionAbortData = {
|
|
|
2523
2720
|
};
|
|
2524
2721
|
query?: {
|
|
2525
2722
|
directory?: string;
|
|
2723
|
+
workspace?: string;
|
|
2526
2724
|
};
|
|
2527
2725
|
url: "/session/{sessionID}/abort";
|
|
2528
2726
|
};
|
|
@@ -2551,6 +2749,7 @@ export type SessionUnshareData = {
|
|
|
2551
2749
|
};
|
|
2552
2750
|
query?: {
|
|
2553
2751
|
directory?: string;
|
|
2752
|
+
workspace?: string;
|
|
2554
2753
|
};
|
|
2555
2754
|
url: "/session/{sessionID}/share";
|
|
2556
2755
|
};
|
|
@@ -2579,6 +2778,7 @@ export type SessionShareData = {
|
|
|
2579
2778
|
};
|
|
2580
2779
|
query?: {
|
|
2581
2780
|
directory?: string;
|
|
2781
|
+
workspace?: string;
|
|
2582
2782
|
};
|
|
2583
2783
|
url: "/session/{sessionID}/share";
|
|
2584
2784
|
};
|
|
@@ -2607,6 +2807,7 @@ export type SessionDiffData = {
|
|
|
2607
2807
|
};
|
|
2608
2808
|
query?: {
|
|
2609
2809
|
directory?: string;
|
|
2810
|
+
workspace?: string;
|
|
2610
2811
|
messageID?: string;
|
|
2611
2812
|
};
|
|
2612
2813
|
url: "/session/{sessionID}/diff";
|
|
@@ -2632,6 +2833,7 @@ export type SessionSummarizeData = {
|
|
|
2632
2833
|
};
|
|
2633
2834
|
query?: {
|
|
2634
2835
|
directory?: string;
|
|
2836
|
+
workspace?: string;
|
|
2635
2837
|
};
|
|
2636
2838
|
url: "/session/{sessionID}/summarize";
|
|
2637
2839
|
};
|
|
@@ -2663,6 +2865,7 @@ export type SessionMessagesData = {
|
|
|
2663
2865
|
};
|
|
2664
2866
|
query?: {
|
|
2665
2867
|
directory?: string;
|
|
2868
|
+
workspace?: string;
|
|
2666
2869
|
limit?: number;
|
|
2667
2870
|
};
|
|
2668
2871
|
url: "/session/{sessionID}/message";
|
|
@@ -2723,6 +2926,7 @@ export type SessionPromptData = {
|
|
|
2723
2926
|
};
|
|
2724
2927
|
query?: {
|
|
2725
2928
|
directory?: string;
|
|
2929
|
+
workspace?: string;
|
|
2726
2930
|
};
|
|
2727
2931
|
url: "/session/{sessionID}/message";
|
|
2728
2932
|
};
|
|
@@ -2761,6 +2965,7 @@ export type SessionDeleteMessageData = {
|
|
|
2761
2965
|
};
|
|
2762
2966
|
query?: {
|
|
2763
2967
|
directory?: string;
|
|
2968
|
+
workspace?: string;
|
|
2764
2969
|
};
|
|
2765
2970
|
url: "/session/{sessionID}/message/{messageID}";
|
|
2766
2971
|
};
|
|
@@ -2796,6 +3001,7 @@ export type SessionMessageData = {
|
|
|
2796
3001
|
};
|
|
2797
3002
|
query?: {
|
|
2798
3003
|
directory?: string;
|
|
3004
|
+
workspace?: string;
|
|
2799
3005
|
};
|
|
2800
3006
|
url: "/session/{sessionID}/message/{messageID}";
|
|
2801
3007
|
};
|
|
@@ -2838,6 +3044,7 @@ export type PartDeleteData = {
|
|
|
2838
3044
|
};
|
|
2839
3045
|
query?: {
|
|
2840
3046
|
directory?: string;
|
|
3047
|
+
workspace?: string;
|
|
2841
3048
|
};
|
|
2842
3049
|
url: "/session/{sessionID}/message/{messageID}/part/{partID}";
|
|
2843
3050
|
};
|
|
@@ -2877,6 +3084,7 @@ export type PartUpdateData = {
|
|
|
2877
3084
|
};
|
|
2878
3085
|
query?: {
|
|
2879
3086
|
directory?: string;
|
|
3087
|
+
workspace?: string;
|
|
2880
3088
|
};
|
|
2881
3089
|
url: "/session/{sessionID}/message/{messageID}/part/{partID}";
|
|
2882
3090
|
};
|
|
@@ -2933,6 +3141,7 @@ export type SessionPromptAsyncData = {
|
|
|
2933
3141
|
};
|
|
2934
3142
|
query?: {
|
|
2935
3143
|
directory?: string;
|
|
3144
|
+
workspace?: string;
|
|
2936
3145
|
};
|
|
2937
3146
|
url: "/session/{sessionID}/prompt_async";
|
|
2938
3147
|
};
|
|
@@ -2979,6 +3188,7 @@ export type SessionCommandData = {
|
|
|
2979
3188
|
};
|
|
2980
3189
|
query?: {
|
|
2981
3190
|
directory?: string;
|
|
3191
|
+
workspace?: string;
|
|
2982
3192
|
};
|
|
2983
3193
|
url: "/session/{sessionID}/command";
|
|
2984
3194
|
};
|
|
@@ -3020,6 +3230,7 @@ export type SessionShellData = {
|
|
|
3020
3230
|
};
|
|
3021
3231
|
query?: {
|
|
3022
3232
|
directory?: string;
|
|
3233
|
+
workspace?: string;
|
|
3023
3234
|
};
|
|
3024
3235
|
url: "/session/{sessionID}/shell";
|
|
3025
3236
|
};
|
|
@@ -3051,6 +3262,7 @@ export type SessionRevertData = {
|
|
|
3051
3262
|
};
|
|
3052
3263
|
query?: {
|
|
3053
3264
|
directory?: string;
|
|
3265
|
+
workspace?: string;
|
|
3054
3266
|
};
|
|
3055
3267
|
url: "/session/{sessionID}/revert";
|
|
3056
3268
|
};
|
|
@@ -3079,6 +3291,7 @@ export type SessionUnrevertData = {
|
|
|
3079
3291
|
};
|
|
3080
3292
|
query?: {
|
|
3081
3293
|
directory?: string;
|
|
3294
|
+
workspace?: string;
|
|
3082
3295
|
};
|
|
3083
3296
|
url: "/session/{sessionID}/unrevert";
|
|
3084
3297
|
};
|
|
@@ -3110,6 +3323,7 @@ export type PermissionRespondData = {
|
|
|
3110
3323
|
};
|
|
3111
3324
|
query?: {
|
|
3112
3325
|
directory?: string;
|
|
3326
|
+
workspace?: string;
|
|
3113
3327
|
};
|
|
3114
3328
|
url: "/session/{sessionID}/permissions/{permissionID}";
|
|
3115
3329
|
};
|
|
@@ -3141,6 +3355,7 @@ export type PermissionReplyData = {
|
|
|
3141
3355
|
};
|
|
3142
3356
|
query?: {
|
|
3143
3357
|
directory?: string;
|
|
3358
|
+
workspace?: string;
|
|
3144
3359
|
};
|
|
3145
3360
|
url: "/permission/{requestID}/reply";
|
|
3146
3361
|
};
|
|
@@ -3167,6 +3382,7 @@ export type PermissionListData = {
|
|
|
3167
3382
|
path?: never;
|
|
3168
3383
|
query?: {
|
|
3169
3384
|
directory?: string;
|
|
3385
|
+
workspace?: string;
|
|
3170
3386
|
};
|
|
3171
3387
|
url: "/permission";
|
|
3172
3388
|
};
|
|
@@ -3182,6 +3398,7 @@ export type QuestionListData = {
|
|
|
3182
3398
|
path?: never;
|
|
3183
3399
|
query?: {
|
|
3184
3400
|
directory?: string;
|
|
3401
|
+
workspace?: string;
|
|
3185
3402
|
};
|
|
3186
3403
|
url: "/question";
|
|
3187
3404
|
};
|
|
@@ -3204,6 +3421,7 @@ export type QuestionReplyData = {
|
|
|
3204
3421
|
};
|
|
3205
3422
|
query?: {
|
|
3206
3423
|
directory?: string;
|
|
3424
|
+
workspace?: string;
|
|
3207
3425
|
};
|
|
3208
3426
|
url: "/question/{requestID}/reply";
|
|
3209
3427
|
};
|
|
@@ -3232,6 +3450,7 @@ export type QuestionRejectData = {
|
|
|
3232
3450
|
};
|
|
3233
3451
|
query?: {
|
|
3234
3452
|
directory?: string;
|
|
3453
|
+
workspace?: string;
|
|
3235
3454
|
};
|
|
3236
3455
|
url: "/question/{requestID}/reject";
|
|
3237
3456
|
};
|
|
@@ -3258,6 +3477,7 @@ export type ProviderListData = {
|
|
|
3258
3477
|
path?: never;
|
|
3259
3478
|
query?: {
|
|
3260
3479
|
directory?: string;
|
|
3480
|
+
workspace?: string;
|
|
3261
3481
|
};
|
|
3262
3482
|
url: "/provider";
|
|
3263
3483
|
};
|
|
@@ -3340,6 +3560,7 @@ export type ProviderAuthData = {
|
|
|
3340
3560
|
path?: never;
|
|
3341
3561
|
query?: {
|
|
3342
3562
|
directory?: string;
|
|
3563
|
+
workspace?: string;
|
|
3343
3564
|
};
|
|
3344
3565
|
url: "/provider/auth";
|
|
3345
3566
|
};
|
|
@@ -3367,6 +3588,7 @@ export type ProviderOauthAuthorizeData = {
|
|
|
3367
3588
|
};
|
|
3368
3589
|
query?: {
|
|
3369
3590
|
directory?: string;
|
|
3591
|
+
workspace?: string;
|
|
3370
3592
|
};
|
|
3371
3593
|
url: "/provider/{providerID}/oauth/authorize";
|
|
3372
3594
|
};
|
|
@@ -3403,6 +3625,7 @@ export type ProviderOauthCallbackData = {
|
|
|
3403
3625
|
};
|
|
3404
3626
|
query?: {
|
|
3405
3627
|
directory?: string;
|
|
3628
|
+
workspace?: string;
|
|
3406
3629
|
};
|
|
3407
3630
|
url: "/provider/{providerID}/oauth/callback";
|
|
3408
3631
|
};
|
|
@@ -3436,6 +3659,7 @@ export type TelemetryCaptureData = {
|
|
|
3436
3659
|
path?: never;
|
|
3437
3660
|
query?: {
|
|
3438
3661
|
directory?: string;
|
|
3662
|
+
workspace?: string;
|
|
3439
3663
|
};
|
|
3440
3664
|
url: "/telemetry/capture";
|
|
3441
3665
|
};
|
|
@@ -3471,6 +3695,7 @@ export type CommitMessageGenerateData = {
|
|
|
3471
3695
|
path?: never;
|
|
3472
3696
|
query?: {
|
|
3473
3697
|
directory?: string;
|
|
3698
|
+
workspace?: string;
|
|
3474
3699
|
};
|
|
3475
3700
|
url: "/commit-message";
|
|
3476
3701
|
};
|
|
@@ -3500,6 +3725,7 @@ export type EnhancePromptEnhanceData = {
|
|
|
3500
3725
|
path?: never;
|
|
3501
3726
|
query?: {
|
|
3502
3727
|
directory?: string;
|
|
3728
|
+
workspace?: string;
|
|
3503
3729
|
};
|
|
3504
3730
|
url: "/enhance-prompt";
|
|
3505
3731
|
};
|
|
@@ -3524,6 +3750,7 @@ export type KiloProfileData = {
|
|
|
3524
3750
|
path?: never;
|
|
3525
3751
|
query?: {
|
|
3526
3752
|
directory?: string;
|
|
3753
|
+
workspace?: string;
|
|
3527
3754
|
};
|
|
3528
3755
|
url: "/kilo/profile";
|
|
3529
3756
|
};
|
|
@@ -3562,6 +3789,7 @@ export type KiloOrganizationSetData = {
|
|
|
3562
3789
|
path?: never;
|
|
3563
3790
|
query?: {
|
|
3564
3791
|
directory?: string;
|
|
3792
|
+
workspace?: string;
|
|
3565
3793
|
};
|
|
3566
3794
|
url: "/kilo/organization";
|
|
3567
3795
|
};
|
|
@@ -3590,6 +3818,7 @@ export type KiloFimData = {
|
|
|
3590
3818
|
path?: never;
|
|
3591
3819
|
query?: {
|
|
3592
3820
|
directory?: string;
|
|
3821
|
+
workspace?: string;
|
|
3593
3822
|
};
|
|
3594
3823
|
url: "/kilo/fim";
|
|
3595
3824
|
};
|
|
@@ -3623,6 +3852,7 @@ export type KiloNotificationsData = {
|
|
|
3623
3852
|
path?: never;
|
|
3624
3853
|
query?: {
|
|
3625
3854
|
directory?: string;
|
|
3855
|
+
workspace?: string;
|
|
3626
3856
|
};
|
|
3627
3857
|
url: "/kilo/notifications";
|
|
3628
3858
|
};
|
|
@@ -3656,6 +3886,7 @@ export type KiloCloudSessionGetData = {
|
|
|
3656
3886
|
};
|
|
3657
3887
|
query?: {
|
|
3658
3888
|
directory?: string;
|
|
3889
|
+
workspace?: string;
|
|
3659
3890
|
};
|
|
3660
3891
|
url: "/kilo/cloud/session/{id}";
|
|
3661
3892
|
};
|
|
@@ -3679,6 +3910,7 @@ export type KiloCloudSessionImportData = {
|
|
|
3679
3910
|
path?: never;
|
|
3680
3911
|
query?: {
|
|
3681
3912
|
directory?: string;
|
|
3913
|
+
workspace?: string;
|
|
3682
3914
|
};
|
|
3683
3915
|
url: "/kilo/cloud/session/import";
|
|
3684
3916
|
};
|
|
@@ -3704,6 +3936,7 @@ export type KiloCloudSessionsData = {
|
|
|
3704
3936
|
path?: never;
|
|
3705
3937
|
query?: {
|
|
3706
3938
|
directory?: string;
|
|
3939
|
+
workspace?: string;
|
|
3707
3940
|
cursor?: string;
|
|
3708
3941
|
limit?: number;
|
|
3709
3942
|
gitUrl?: string;
|
|
@@ -3738,6 +3971,7 @@ export type FindTextData = {
|
|
|
3738
3971
|
path?: never;
|
|
3739
3972
|
query: {
|
|
3740
3973
|
directory?: string;
|
|
3974
|
+
workspace?: string;
|
|
3741
3975
|
pattern: string;
|
|
3742
3976
|
};
|
|
3743
3977
|
url: "/find";
|
|
@@ -3770,6 +4004,7 @@ export type FindFilesData = {
|
|
|
3770
4004
|
path?: never;
|
|
3771
4005
|
query: {
|
|
3772
4006
|
directory?: string;
|
|
4007
|
+
workspace?: string;
|
|
3773
4008
|
query: string;
|
|
3774
4009
|
dirs?: "true" | "false";
|
|
3775
4010
|
type?: "file" | "directory";
|
|
@@ -3789,6 +4024,7 @@ export type FindSymbolsData = {
|
|
|
3789
4024
|
path?: never;
|
|
3790
4025
|
query: {
|
|
3791
4026
|
directory?: string;
|
|
4027
|
+
workspace?: string;
|
|
3792
4028
|
query: string;
|
|
3793
4029
|
};
|
|
3794
4030
|
url: "/find/symbol";
|
|
@@ -3805,6 +4041,7 @@ export type FileListData = {
|
|
|
3805
4041
|
path?: never;
|
|
3806
4042
|
query: {
|
|
3807
4043
|
directory?: string;
|
|
4044
|
+
workspace?: string;
|
|
3808
4045
|
path: string;
|
|
3809
4046
|
};
|
|
3810
4047
|
url: "/file";
|
|
@@ -3821,6 +4058,7 @@ export type FileReadData = {
|
|
|
3821
4058
|
path?: never;
|
|
3822
4059
|
query: {
|
|
3823
4060
|
directory?: string;
|
|
4061
|
+
workspace?: string;
|
|
3824
4062
|
path: string;
|
|
3825
4063
|
};
|
|
3826
4064
|
url: "/file/content";
|
|
@@ -3837,6 +4075,7 @@ export type FileStatusData = {
|
|
|
3837
4075
|
path?: never;
|
|
3838
4076
|
query?: {
|
|
3839
4077
|
directory?: string;
|
|
4078
|
+
workspace?: string;
|
|
3840
4079
|
};
|
|
3841
4080
|
url: "/file/status";
|
|
3842
4081
|
};
|
|
@@ -3852,6 +4091,7 @@ export type McpStatusData = {
|
|
|
3852
4091
|
path?: never;
|
|
3853
4092
|
query?: {
|
|
3854
4093
|
directory?: string;
|
|
4094
|
+
workspace?: string;
|
|
3855
4095
|
};
|
|
3856
4096
|
url: "/mcp";
|
|
3857
4097
|
};
|
|
@@ -3872,6 +4112,7 @@ export type McpAddData = {
|
|
|
3872
4112
|
path?: never;
|
|
3873
4113
|
query?: {
|
|
3874
4114
|
directory?: string;
|
|
4115
|
+
workspace?: string;
|
|
3875
4116
|
};
|
|
3876
4117
|
url: "/mcp";
|
|
3877
4118
|
};
|
|
@@ -3898,6 +4139,7 @@ export type McpAuthRemoveData = {
|
|
|
3898
4139
|
};
|
|
3899
4140
|
query?: {
|
|
3900
4141
|
directory?: string;
|
|
4142
|
+
workspace?: string;
|
|
3901
4143
|
};
|
|
3902
4144
|
url: "/mcp/{name}/auth";
|
|
3903
4145
|
};
|
|
@@ -3924,6 +4166,7 @@ export type McpAuthStartData = {
|
|
|
3924
4166
|
};
|
|
3925
4167
|
query?: {
|
|
3926
4168
|
directory?: string;
|
|
4169
|
+
workspace?: string;
|
|
3927
4170
|
};
|
|
3928
4171
|
url: "/mcp/{name}/auth";
|
|
3929
4172
|
};
|
|
@@ -3962,6 +4205,7 @@ export type McpAuthCallbackData = {
|
|
|
3962
4205
|
};
|
|
3963
4206
|
query?: {
|
|
3964
4207
|
directory?: string;
|
|
4208
|
+
workspace?: string;
|
|
3965
4209
|
};
|
|
3966
4210
|
url: "/mcp/{name}/auth/callback";
|
|
3967
4211
|
};
|
|
@@ -3990,6 +4234,7 @@ export type McpAuthAuthenticateData = {
|
|
|
3990
4234
|
};
|
|
3991
4235
|
query?: {
|
|
3992
4236
|
directory?: string;
|
|
4237
|
+
workspace?: string;
|
|
3993
4238
|
};
|
|
3994
4239
|
url: "/mcp/{name}/auth/authenticate";
|
|
3995
4240
|
};
|
|
@@ -4018,6 +4263,7 @@ export type McpConnectData = {
|
|
|
4018
4263
|
};
|
|
4019
4264
|
query?: {
|
|
4020
4265
|
directory?: string;
|
|
4266
|
+
workspace?: string;
|
|
4021
4267
|
};
|
|
4022
4268
|
url: "/mcp/{name}/connect";
|
|
4023
4269
|
};
|
|
@@ -4035,6 +4281,7 @@ export type McpDisconnectData = {
|
|
|
4035
4281
|
};
|
|
4036
4282
|
query?: {
|
|
4037
4283
|
directory?: string;
|
|
4284
|
+
workspace?: string;
|
|
4038
4285
|
};
|
|
4039
4286
|
url: "/mcp/{name}/disconnect";
|
|
4040
4287
|
};
|
|
@@ -4052,6 +4299,7 @@ export type TuiAppendPromptData = {
|
|
|
4052
4299
|
path?: never;
|
|
4053
4300
|
query?: {
|
|
4054
4301
|
directory?: string;
|
|
4302
|
+
workspace?: string;
|
|
4055
4303
|
};
|
|
4056
4304
|
url: "/tui/append-prompt";
|
|
4057
4305
|
};
|
|
@@ -4074,6 +4322,7 @@ export type TuiOpenHelpData = {
|
|
|
4074
4322
|
path?: never;
|
|
4075
4323
|
query?: {
|
|
4076
4324
|
directory?: string;
|
|
4325
|
+
workspace?: string;
|
|
4077
4326
|
};
|
|
4078
4327
|
url: "/tui/open-help";
|
|
4079
4328
|
};
|
|
@@ -4089,6 +4338,7 @@ export type TuiOpenSessionsData = {
|
|
|
4089
4338
|
path?: never;
|
|
4090
4339
|
query?: {
|
|
4091
4340
|
directory?: string;
|
|
4341
|
+
workspace?: string;
|
|
4092
4342
|
};
|
|
4093
4343
|
url: "/tui/open-sessions";
|
|
4094
4344
|
};
|
|
@@ -4104,6 +4354,7 @@ export type TuiOpenThemesData = {
|
|
|
4104
4354
|
path?: never;
|
|
4105
4355
|
query?: {
|
|
4106
4356
|
directory?: string;
|
|
4357
|
+
workspace?: string;
|
|
4107
4358
|
};
|
|
4108
4359
|
url: "/tui/open-themes";
|
|
4109
4360
|
};
|
|
@@ -4119,6 +4370,7 @@ export type TuiOpenModelsData = {
|
|
|
4119
4370
|
path?: never;
|
|
4120
4371
|
query?: {
|
|
4121
4372
|
directory?: string;
|
|
4373
|
+
workspace?: string;
|
|
4122
4374
|
};
|
|
4123
4375
|
url: "/tui/open-models";
|
|
4124
4376
|
};
|
|
@@ -4134,6 +4386,7 @@ export type TuiSubmitPromptData = {
|
|
|
4134
4386
|
path?: never;
|
|
4135
4387
|
query?: {
|
|
4136
4388
|
directory?: string;
|
|
4389
|
+
workspace?: string;
|
|
4137
4390
|
};
|
|
4138
4391
|
url: "/tui/submit-prompt";
|
|
4139
4392
|
};
|
|
@@ -4149,6 +4402,7 @@ export type TuiClearPromptData = {
|
|
|
4149
4402
|
path?: never;
|
|
4150
4403
|
query?: {
|
|
4151
4404
|
directory?: string;
|
|
4405
|
+
workspace?: string;
|
|
4152
4406
|
};
|
|
4153
4407
|
url: "/tui/clear-prompt";
|
|
4154
4408
|
};
|
|
@@ -4166,6 +4420,7 @@ export type TuiExecuteCommandData = {
|
|
|
4166
4420
|
path?: never;
|
|
4167
4421
|
query?: {
|
|
4168
4422
|
directory?: string;
|
|
4423
|
+
workspace?: string;
|
|
4169
4424
|
};
|
|
4170
4425
|
url: "/tui/execute-command";
|
|
4171
4426
|
};
|
|
@@ -4196,6 +4451,7 @@ export type TuiShowToastData = {
|
|
|
4196
4451
|
path?: never;
|
|
4197
4452
|
query?: {
|
|
4198
4453
|
directory?: string;
|
|
4454
|
+
workspace?: string;
|
|
4199
4455
|
};
|
|
4200
4456
|
url: "/tui/show-toast";
|
|
4201
4457
|
};
|
|
@@ -4211,6 +4467,7 @@ export type TuiPublishData = {
|
|
|
4211
4467
|
path?: never;
|
|
4212
4468
|
query?: {
|
|
4213
4469
|
directory?: string;
|
|
4470
|
+
workspace?: string;
|
|
4214
4471
|
};
|
|
4215
4472
|
url: "/tui/publish";
|
|
4216
4473
|
};
|
|
@@ -4238,6 +4495,7 @@ export type TuiSelectSessionData = {
|
|
|
4238
4495
|
path?: never;
|
|
4239
4496
|
query?: {
|
|
4240
4497
|
directory?: string;
|
|
4498
|
+
workspace?: string;
|
|
4241
4499
|
};
|
|
4242
4500
|
url: "/tui/select-session";
|
|
4243
4501
|
};
|
|
@@ -4264,6 +4522,7 @@ export type TuiControlNextData = {
|
|
|
4264
4522
|
path?: never;
|
|
4265
4523
|
query?: {
|
|
4266
4524
|
directory?: string;
|
|
4525
|
+
workspace?: string;
|
|
4267
4526
|
};
|
|
4268
4527
|
url: "/tui/control/next";
|
|
4269
4528
|
};
|
|
@@ -4282,6 +4541,7 @@ export type TuiControlResponseData = {
|
|
|
4282
4541
|
path?: never;
|
|
4283
4542
|
query?: {
|
|
4284
4543
|
directory?: string;
|
|
4544
|
+
workspace?: string;
|
|
4285
4545
|
};
|
|
4286
4546
|
url: "/tui/control/response";
|
|
4287
4547
|
};
|
|
@@ -4297,6 +4557,7 @@ export type InstanceDisposeData = {
|
|
|
4297
4557
|
path?: never;
|
|
4298
4558
|
query?: {
|
|
4299
4559
|
directory?: string;
|
|
4560
|
+
workspace?: string;
|
|
4300
4561
|
};
|
|
4301
4562
|
url: "/instance/dispose";
|
|
4302
4563
|
};
|
|
@@ -4312,6 +4573,7 @@ export type PathGetData = {
|
|
|
4312
4573
|
path?: never;
|
|
4313
4574
|
query?: {
|
|
4314
4575
|
directory?: string;
|
|
4576
|
+
workspace?: string;
|
|
4315
4577
|
};
|
|
4316
4578
|
url: "/path";
|
|
4317
4579
|
};
|
|
@@ -4327,6 +4589,7 @@ export type VcsGetData = {
|
|
|
4327
4589
|
path?: never;
|
|
4328
4590
|
query?: {
|
|
4329
4591
|
directory?: string;
|
|
4592
|
+
workspace?: string;
|
|
4330
4593
|
};
|
|
4331
4594
|
url: "/vcs";
|
|
4332
4595
|
};
|
|
@@ -4342,6 +4605,7 @@ export type CommandListData = {
|
|
|
4342
4605
|
path?: never;
|
|
4343
4606
|
query?: {
|
|
4344
4607
|
directory?: string;
|
|
4608
|
+
workspace?: string;
|
|
4345
4609
|
};
|
|
4346
4610
|
url: "/command";
|
|
4347
4611
|
};
|
|
@@ -4376,6 +4640,7 @@ export type AppLogData = {
|
|
|
4376
4640
|
path?: never;
|
|
4377
4641
|
query?: {
|
|
4378
4642
|
directory?: string;
|
|
4643
|
+
workspace?: string;
|
|
4379
4644
|
};
|
|
4380
4645
|
url: "/log";
|
|
4381
4646
|
};
|
|
@@ -4398,6 +4663,7 @@ export type AppAgentsData = {
|
|
|
4398
4663
|
path?: never;
|
|
4399
4664
|
query?: {
|
|
4400
4665
|
directory?: string;
|
|
4666
|
+
workspace?: string;
|
|
4401
4667
|
};
|
|
4402
4668
|
url: "/agent";
|
|
4403
4669
|
};
|
|
@@ -4413,6 +4679,7 @@ export type AppSkillsData = {
|
|
|
4413
4679
|
path?: never;
|
|
4414
4680
|
query?: {
|
|
4415
4681
|
directory?: string;
|
|
4682
|
+
workspace?: string;
|
|
4416
4683
|
};
|
|
4417
4684
|
url: "/skill";
|
|
4418
4685
|
};
|
|
@@ -4433,6 +4700,7 @@ export type LspStatusData = {
|
|
|
4433
4700
|
path?: never;
|
|
4434
4701
|
query?: {
|
|
4435
4702
|
directory?: string;
|
|
4703
|
+
workspace?: string;
|
|
4436
4704
|
};
|
|
4437
4705
|
url: "/lsp";
|
|
4438
4706
|
};
|
|
@@ -4448,6 +4716,7 @@ export type FormatterStatusData = {
|
|
|
4448
4716
|
path?: never;
|
|
4449
4717
|
query?: {
|
|
4450
4718
|
directory?: string;
|
|
4719
|
+
workspace?: string;
|
|
4451
4720
|
};
|
|
4452
4721
|
url: "/formatter";
|
|
4453
4722
|
};
|
|
@@ -4463,6 +4732,7 @@ export type EventSubscribeData = {
|
|
|
4463
4732
|
path?: never;
|
|
4464
4733
|
query?: {
|
|
4465
4734
|
directory?: string;
|
|
4735
|
+
workspace?: string;
|
|
4466
4736
|
};
|
|
4467
4737
|
url: "/event";
|
|
4468
4738
|
};
|