@opencode-ai/sdk 0.1.0-alpha.1 → 0.1.0-alpha.10
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/CHANGELOG.md +79 -0
- package/LICENSE +198 -4
- package/README.md +20 -6
- package/client.d.mts +15 -56
- package/client.d.mts.map +1 -1
- package/client.d.ts +15 -56
- package/client.d.ts.map +1 -1
- package/client.js +14 -67
- package/client.js.map +1 -1
- package/client.mjs +14 -67
- package/client.mjs.map +1 -1
- package/core/streaming.d.mts +31 -0
- package/core/streaming.d.mts.map +1 -0
- package/core/streaming.d.ts +31 -0
- package/core/streaming.d.ts.map +1 -0
- package/core/streaming.js +257 -0
- package/core/streaming.js.map +1 -0
- package/core/streaming.mjs +252 -0
- package/core/streaming.mjs.map +1 -0
- package/internal/decoders/line.d.mts +17 -0
- package/internal/decoders/line.d.mts.map +1 -0
- package/internal/decoders/line.d.ts +17 -0
- package/internal/decoders/line.d.ts.map +1 -0
- package/internal/decoders/line.js +113 -0
- package/internal/decoders/line.js.map +1 -0
- package/internal/decoders/line.mjs +108 -0
- package/internal/decoders/line.mjs.map +1 -0
- package/internal/parse.d.mts.map +1 -1
- package/internal/parse.d.ts.map +1 -1
- package/internal/parse.js +10 -0
- package/internal/parse.js.map +1 -1
- package/internal/parse.mjs +10 -0
- package/internal/parse.mjs.map +1 -1
- package/internal/request-options.d.mts +2 -0
- package/internal/request-options.d.mts.map +1 -1
- package/internal/request-options.d.ts +2 -0
- package/internal/request-options.d.ts.map +1 -1
- package/internal/request-options.js.map +1 -1
- package/internal/request-options.mjs.map +1 -1
- package/internal/tslib.js +6 -6
- package/internal/types.d.mts +8 -6
- package/internal/types.d.mts.map +1 -1
- package/internal/types.d.ts +8 -6
- package/internal/types.d.ts.map +1 -1
- package/internal/uploads.js +1 -1
- package/internal/uploads.js.map +1 -1
- package/internal/uploads.mjs +1 -1
- package/internal/uploads.mjs.map +1 -1
- package/internal/utils/log.js +1 -1
- package/internal/utils/log.js.map +1 -1
- package/internal/utils/log.mjs +1 -1
- package/internal/utils/log.mjs.map +1 -1
- package/internal/utils/path.d.mts.map +1 -1
- package/internal/utils/path.d.ts.map +1 -1
- package/internal/utils/path.js +26 -5
- package/internal/utils/path.js.map +1 -1
- package/internal/utils/path.mjs +26 -5
- package/internal/utils/path.mjs.map +1 -1
- package/package.json +13 -3
- package/resources/app.d.mts +38 -0
- package/resources/app.d.mts.map +1 -0
- package/resources/app.d.ts +38 -0
- package/resources/app.d.ts.map +1 -0
- package/resources/app.js +21 -0
- package/resources/app.js.map +1 -0
- package/resources/app.mjs +17 -0
- package/resources/app.mjs.map +1 -0
- package/resources/config.d.mts +304 -0
- package/resources/config.d.mts.map +1 -0
- package/resources/config.d.ts +304 -0
- package/resources/config.d.ts.map +1 -0
- package/resources/config.js +21 -0
- package/resources/config.js.map +1 -0
- package/resources/config.mjs +17 -0
- package/resources/config.mjs.map +1 -0
- package/resources/event.d.mts +24 -8
- package/resources/event.d.mts.map +1 -1
- package/resources/event.d.ts +24 -8
- package/resources/event.d.ts.map +1 -1
- package/resources/event.js +1 -1
- package/resources/event.js.map +1 -1
- package/resources/event.mjs +1 -1
- package/resources/event.mjs.map +1 -1
- package/resources/file.d.mts +17 -0
- package/resources/file.d.mts.map +1 -0
- package/resources/file.d.ts +17 -0
- package/resources/file.d.ts.map +1 -0
- package/resources/{file-search.js → file.js} +6 -6
- package/resources/file.js.map +1 -0
- package/resources/{file-search.mjs → file.mjs} +4 -4
- package/resources/file.mjs.map +1 -0
- package/resources/index.d.mts +5 -16
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +5 -16
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +11 -33
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +5 -16
- package/resources/index.mjs.map +1 -1
- package/resources/session.d.mts +207 -0
- package/resources/session.d.mts.map +1 -0
- package/resources/session.d.ts +207 -0
- package/resources/session.d.ts.map +1 -0
- package/resources/session.js +70 -0
- package/resources/session.js.map +1 -0
- package/resources/session.mjs +66 -0
- package/resources/session.mjs.map +1 -0
- package/resources/shared.d.mts +20 -0
- package/resources/shared.d.mts.map +1 -0
- package/resources/shared.d.ts +20 -0
- package/resources/shared.d.ts.map +1 -0
- package/resources/shared.js +4 -0
- package/resources/shared.js.map +1 -0
- package/resources/shared.mjs +3 -0
- package/resources/shared.mjs.map +1 -0
- package/src/client.ts +79 -156
- package/src/core/streaming.ts +301 -0
- package/src/internal/decoders/line.ts +135 -0
- package/src/internal/parse.ts +14 -0
- package/src/internal/request-options.ts +2 -0
- package/src/internal/types.ts +9 -6
- package/src/internal/uploads.ts +1 -1
- package/src/internal/utils/log.ts +1 -1
- package/src/internal/utils/path.ts +32 -7
- package/src/resources/app.ts +59 -0
- package/src/resources/config.ts +390 -0
- package/src/resources/event.ts +30 -8
- package/src/resources/file.ts +24 -0
- package/src/resources/index.ts +35 -33
- package/src/resources/session.ts +355 -0
- package/src/resources/shared.ts +27 -0
- package/src/streaming.ts +2 -0
- package/src/version.ts +1 -1
- package/streaming.d.mts +2 -0
- package/streaming.d.mts.map +1 -0
- package/streaming.d.ts +2 -0
- package/streaming.d.ts.map +1 -0
- package/streaming.js +6 -0
- package/streaming.js.map +1 -0
- package/streaming.mjs +2 -0
- package/streaming.mjs.map +1 -0
- package/version.d.mts +1 -1
- package/version.d.mts.map +1 -1
- package/version.d.ts +1 -1
- package/version.d.ts.map +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
- package/version.mjs +1 -1
- package/version.mjs.map +1 -1
- package/resources/app-info.d.mts +0 -31
- package/resources/app-info.d.mts.map +0 -1
- package/resources/app-info.d.ts +0 -31
- package/resources/app-info.d.ts.map +0 -1
- package/resources/app-info.js +0 -15
- package/resources/app-info.js.map +0 -1
- package/resources/app-info.mjs +0 -11
- package/resources/app-info.mjs.map +0 -1
- package/resources/app-initialize.d.mts +0 -14
- package/resources/app-initialize.d.mts.map +0 -1
- package/resources/app-initialize.d.ts +0 -14
- package/resources/app-initialize.d.ts.map +0 -1
- package/resources/app-initialize.js +0 -15
- package/resources/app-initialize.js.map +0 -1
- package/resources/app-initialize.mjs +0 -11
- package/resources/app-initialize.mjs.map +0 -1
- package/resources/config-get.d.mts +0 -236
- package/resources/config-get.d.mts.map +0 -1
- package/resources/config-get.d.ts +0 -236
- package/resources/config-get.d.ts.map +0 -1
- package/resources/config-get.js +0 -15
- package/resources/config-get.js.map +0 -1
- package/resources/config-get.mjs +0 -11
- package/resources/config-get.mjs.map +0 -1
- package/resources/file-search.d.mts +0 -17
- package/resources/file-search.d.mts.map +0 -1
- package/resources/file-search.d.ts +0 -17
- package/resources/file-search.d.ts.map +0 -1
- package/resources/file-search.js.map +0 -1
- package/resources/file-search.mjs.map +0 -1
- package/resources/installation-info.d.mts +0 -17
- package/resources/installation-info.d.mts.map +0 -1
- package/resources/installation-info.d.ts +0 -17
- package/resources/installation-info.d.ts.map +0 -1
- package/resources/installation-info.js +0 -15
- package/resources/installation-info.js.map +0 -1
- package/resources/installation-info.mjs +0 -11
- package/resources/installation-info.mjs.map +0 -1
- package/resources/path-get.d.mts +0 -19
- package/resources/path-get.d.mts.map +0 -1
- package/resources/path-get.d.ts +0 -19
- package/resources/path-get.d.ts.map +0 -1
- package/resources/path-get.js +0 -15
- package/resources/path-get.js.map +0 -1
- package/resources/path-get.mjs +0 -11
- package/resources/path-get.mjs.map +0 -1
- package/resources/provider-list.d.mts +0 -58
- package/resources/provider-list.d.mts.map +0 -1
- package/resources/provider-list.d.ts +0 -58
- package/resources/provider-list.d.ts.map +0 -1
- package/resources/provider-list.js +0 -15
- package/resources/provider-list.js.map +0 -1
- package/resources/provider-list.mjs +0 -11
- package/resources/provider-list.mjs.map +0 -1
- package/resources/session-abort.d.mts +0 -17
- package/resources/session-abort.d.mts.map +0 -1
- package/resources/session-abort.d.ts +0 -17
- package/resources/session-abort.d.ts.map +0 -1
- package/resources/session-abort.js +0 -15
- package/resources/session-abort.js.map +0 -1
- package/resources/session-abort.mjs +0 -11
- package/resources/session-abort.mjs.map +0 -1
- package/resources/session-chat.d.mts +0 -160
- package/resources/session-chat.d.mts.map +0 -1
- package/resources/session-chat.d.ts +0 -160
- package/resources/session-chat.d.ts.map +0 -1
- package/resources/session-chat.js +0 -15
- package/resources/session-chat.js.map +0 -1
- package/resources/session-chat.mjs +0 -11
- package/resources/session-chat.mjs.map +0 -1
- package/resources/session-create.d.mts +0 -30
- package/resources/session-create.d.mts.map +0 -1
- package/resources/session-create.d.ts +0 -30
- package/resources/session-create.d.ts.map +0 -1
- package/resources/session-create.js +0 -15
- package/resources/session-create.js.map +0 -1
- package/resources/session-create.mjs +0 -11
- package/resources/session-create.mjs.map +0 -1
- package/resources/session-initialize.d.mts +0 -19
- package/resources/session-initialize.d.mts.map +0 -1
- package/resources/session-initialize.d.ts +0 -19
- package/resources/session-initialize.d.ts.map +0 -1
- package/resources/session-initialize.js +0 -15
- package/resources/session-initialize.js.map +0 -1
- package/resources/session-initialize.mjs +0 -11
- package/resources/session-initialize.mjs.map +0 -1
- package/resources/session-list.d.mts +0 -15
- package/resources/session-list.d.mts.map +0 -1
- package/resources/session-list.d.ts +0 -15
- package/resources/session-list.d.ts.map +0 -1
- package/resources/session-list.js +0 -15
- package/resources/session-list.js.map +0 -1
- package/resources/session-list.mjs +0 -11
- package/resources/session-list.mjs.map +0 -1
- package/resources/session-messages.d.mts +0 -18
- package/resources/session-messages.d.mts.map +0 -1
- package/resources/session-messages.d.ts +0 -18
- package/resources/session-messages.d.ts.map +0 -1
- package/resources/session-messages.js +0 -15
- package/resources/session-messages.js.map +0 -1
- package/resources/session-messages.mjs +0 -11
- package/resources/session-messages.mjs.map +0 -1
- package/resources/session-share.d.mts +0 -17
- package/resources/session-share.d.mts.map +0 -1
- package/resources/session-share.d.ts +0 -17
- package/resources/session-share.d.ts.map +0 -1
- package/resources/session-share.js +0 -15
- package/resources/session-share.js.map +0 -1
- package/resources/session-share.mjs +0 -11
- package/resources/session-share.mjs.map +0 -1
- package/resources/session-summarize.d.mts +0 -19
- package/resources/session-summarize.d.mts.map +0 -1
- package/resources/session-summarize.d.ts +0 -19
- package/resources/session-summarize.d.ts.map +0 -1
- package/resources/session-summarize.js +0 -15
- package/resources/session-summarize.js.map +0 -1
- package/resources/session-summarize.mjs +0 -11
- package/resources/session-summarize.mjs.map +0 -1
- package/resources/session-unshare.d.mts +0 -17
- package/resources/session-unshare.d.mts.map +0 -1
- package/resources/session-unshare.d.ts +0 -17
- package/resources/session-unshare.d.ts.map +0 -1
- package/resources/session-unshare.js +0 -15
- package/resources/session-unshare.js.map +0 -1
- package/resources/session-unshare.mjs +0 -11
- package/resources/session-unshare.mjs.map +0 -1
- package/src/resources/app-info.ts +0 -46
- package/src/resources/app-initialize.ts +0 -20
- package/src/resources/config-get.ts +0 -294
- package/src/resources/file-search.ts +0 -27
- package/src/resources/installation-info.ts +0 -24
- package/src/resources/path-get.ts +0 -28
- package/src/resources/provider-list.ts +0 -80
- package/src/resources/session-abort.ts +0 -27
- package/src/resources/session-chat.ts +0 -250
- package/src/resources/session-create.ts +0 -44
- package/src/resources/session-initialize.ts +0 -34
- package/src/resources/session-list.ts +0 -21
- package/src/resources/session-messages.ts +0 -31
- package/src/resources/session-share.ts +0 -23
- package/src/resources/session-summarize.ts +0 -34
- package/src/resources/session-unshare.ts +0 -26
|
@@ -0,0 +1,390 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { APIResource } from '../core/resource';
|
|
4
|
+
import { APIPromise } from '../core/api-promise';
|
|
5
|
+
import { RequestOptions } from '../internal/request-options';
|
|
6
|
+
|
|
7
|
+
export class ConfigResource extends APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get config info
|
|
10
|
+
*/
|
|
11
|
+
get(options?: RequestOptions): APIPromise<Config> {
|
|
12
|
+
return this._client.get('/config', options);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* List all providers
|
|
17
|
+
*/
|
|
18
|
+
providers(options?: RequestOptions): APIPromise<ConfigProvidersResponse> {
|
|
19
|
+
return this._client.get('/config/providers', options);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface Config {
|
|
24
|
+
/**
|
|
25
|
+
* JSON schema reference for configuration validation
|
|
26
|
+
*/
|
|
27
|
+
$schema?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Share newly created sessions automatically
|
|
31
|
+
*/
|
|
32
|
+
autoshare?: boolean;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Automatically update to the latest version
|
|
36
|
+
*/
|
|
37
|
+
autoupdate?: boolean;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Disable providers that are loaded automatically
|
|
41
|
+
*/
|
|
42
|
+
disabled_providers?: Array<string>;
|
|
43
|
+
|
|
44
|
+
experimental?: Config.Experimental;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Custom keybind configurations
|
|
48
|
+
*/
|
|
49
|
+
keybinds?: Keybinds;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* MCP (Model Context Protocol) server configurations
|
|
53
|
+
*/
|
|
54
|
+
mcp?: { [key: string]: McpLocal | McpRemote };
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Model to use in the format of provider/model, eg anthropic/claude-2
|
|
58
|
+
*/
|
|
59
|
+
model?: string;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Custom provider configurations and model overrides
|
|
63
|
+
*/
|
|
64
|
+
provider?: { [key: string]: Config.Provider };
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Theme name to use for the interface
|
|
68
|
+
*/
|
|
69
|
+
theme?: string;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export namespace Config {
|
|
73
|
+
export interface Experimental {
|
|
74
|
+
hook?: Experimental.Hook;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export namespace Experimental {
|
|
78
|
+
export interface Hook {
|
|
79
|
+
file_edited?: { [key: string]: Array<Hook.FileEdited> };
|
|
80
|
+
|
|
81
|
+
session_completed?: Array<Hook.SessionCompleted>;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export namespace Hook {
|
|
85
|
+
export interface FileEdited {
|
|
86
|
+
command: Array<string>;
|
|
87
|
+
|
|
88
|
+
environment?: { [key: string]: string };
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export interface SessionCompleted {
|
|
92
|
+
command: Array<string>;
|
|
93
|
+
|
|
94
|
+
environment?: { [key: string]: string };
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface Provider {
|
|
100
|
+
models: { [key: string]: Provider.Models };
|
|
101
|
+
|
|
102
|
+
id?: string;
|
|
103
|
+
|
|
104
|
+
api?: string;
|
|
105
|
+
|
|
106
|
+
env?: Array<string>;
|
|
107
|
+
|
|
108
|
+
name?: string;
|
|
109
|
+
|
|
110
|
+
npm?: string;
|
|
111
|
+
|
|
112
|
+
options?: { [key: string]: unknown };
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export namespace Provider {
|
|
116
|
+
export interface Models {
|
|
117
|
+
id?: string;
|
|
118
|
+
|
|
119
|
+
attachment?: boolean;
|
|
120
|
+
|
|
121
|
+
cost?: Models.Cost;
|
|
122
|
+
|
|
123
|
+
limit?: Models.Limit;
|
|
124
|
+
|
|
125
|
+
name?: string;
|
|
126
|
+
|
|
127
|
+
options?: { [key: string]: unknown };
|
|
128
|
+
|
|
129
|
+
reasoning?: boolean;
|
|
130
|
+
|
|
131
|
+
temperature?: boolean;
|
|
132
|
+
|
|
133
|
+
tool_call?: boolean;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export namespace Models {
|
|
137
|
+
export interface Cost {
|
|
138
|
+
input: number;
|
|
139
|
+
|
|
140
|
+
output: number;
|
|
141
|
+
|
|
142
|
+
cache_read?: number;
|
|
143
|
+
|
|
144
|
+
cache_write?: number;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface Limit {
|
|
148
|
+
context: number;
|
|
149
|
+
|
|
150
|
+
output: number;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export interface Keybinds {
|
|
157
|
+
/**
|
|
158
|
+
* Exit the application
|
|
159
|
+
*/
|
|
160
|
+
app_exit?: string;
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Open external editor
|
|
164
|
+
*/
|
|
165
|
+
editor_open?: string;
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Show help dialog
|
|
169
|
+
*/
|
|
170
|
+
help?: string;
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Navigate to next history item
|
|
174
|
+
*/
|
|
175
|
+
history_next?: string;
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* Navigate to previous history item
|
|
179
|
+
*/
|
|
180
|
+
history_previous?: string;
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Clear input field
|
|
184
|
+
*/
|
|
185
|
+
input_clear?: string;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Insert newline in input
|
|
189
|
+
*/
|
|
190
|
+
input_newline?: string;
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Paste from clipboard
|
|
194
|
+
*/
|
|
195
|
+
input_paste?: string;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Submit input
|
|
199
|
+
*/
|
|
200
|
+
input_submit?: string;
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Leader key for keybind combinations
|
|
204
|
+
*/
|
|
205
|
+
leader?: string;
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Navigate to first message
|
|
209
|
+
*/
|
|
210
|
+
messages_first?: string;
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Scroll messages down by half page
|
|
214
|
+
*/
|
|
215
|
+
messages_half_page_down?: string;
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* Scroll messages up by half page
|
|
219
|
+
*/
|
|
220
|
+
messages_half_page_up?: string;
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* Navigate to last message
|
|
224
|
+
*/
|
|
225
|
+
messages_last?: string;
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* Navigate to next message
|
|
229
|
+
*/
|
|
230
|
+
messages_next?: string;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Scroll messages down by one page
|
|
234
|
+
*/
|
|
235
|
+
messages_page_down?: string;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Scroll messages up by one page
|
|
239
|
+
*/
|
|
240
|
+
messages_page_up?: string;
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* Navigate to previous message
|
|
244
|
+
*/
|
|
245
|
+
messages_previous?: string;
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* List available models
|
|
249
|
+
*/
|
|
250
|
+
model_list?: string;
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Initialize project configuration
|
|
254
|
+
*/
|
|
255
|
+
project_init?: string;
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Toggle compact mode for session
|
|
259
|
+
*/
|
|
260
|
+
session_compact?: string;
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Interrupt current session
|
|
264
|
+
*/
|
|
265
|
+
session_interrupt?: string;
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* List all sessions
|
|
269
|
+
*/
|
|
270
|
+
session_list?: string;
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Create a new session
|
|
274
|
+
*/
|
|
275
|
+
session_new?: string;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Share current session
|
|
279
|
+
*/
|
|
280
|
+
session_share?: string;
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* List available themes
|
|
284
|
+
*/
|
|
285
|
+
theme_list?: string;
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Show tool details
|
|
289
|
+
*/
|
|
290
|
+
tool_details?: string;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export interface McpLocal {
|
|
294
|
+
/**
|
|
295
|
+
* Command and arguments to run the MCP server
|
|
296
|
+
*/
|
|
297
|
+
command: Array<string>;
|
|
298
|
+
|
|
299
|
+
/**
|
|
300
|
+
* Type of MCP server connection
|
|
301
|
+
*/
|
|
302
|
+
type: 'local';
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* Environment variables to set when running the MCP server
|
|
306
|
+
*/
|
|
307
|
+
environment?: { [key: string]: string };
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
export interface McpRemote {
|
|
311
|
+
/**
|
|
312
|
+
* Type of MCP server connection
|
|
313
|
+
*/
|
|
314
|
+
type: 'remote';
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* URL of the remote MCP server
|
|
318
|
+
*/
|
|
319
|
+
url: string;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface Model {
|
|
323
|
+
id: string;
|
|
324
|
+
|
|
325
|
+
attachment: boolean;
|
|
326
|
+
|
|
327
|
+
cost: Model.Cost;
|
|
328
|
+
|
|
329
|
+
limit: Model.Limit;
|
|
330
|
+
|
|
331
|
+
name: string;
|
|
332
|
+
|
|
333
|
+
options: { [key: string]: unknown };
|
|
334
|
+
|
|
335
|
+
reasoning: boolean;
|
|
336
|
+
|
|
337
|
+
temperature: boolean;
|
|
338
|
+
|
|
339
|
+
tool_call: boolean;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export namespace Model {
|
|
343
|
+
export interface Cost {
|
|
344
|
+
input: number;
|
|
345
|
+
|
|
346
|
+
output: number;
|
|
347
|
+
|
|
348
|
+
cache_read?: number;
|
|
349
|
+
|
|
350
|
+
cache_write?: number;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
export interface Limit {
|
|
354
|
+
context: number;
|
|
355
|
+
|
|
356
|
+
output: number;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
export interface Provider {
|
|
361
|
+
id: string;
|
|
362
|
+
|
|
363
|
+
env: Array<string>;
|
|
364
|
+
|
|
365
|
+
models: { [key: string]: Model };
|
|
366
|
+
|
|
367
|
+
name: string;
|
|
368
|
+
|
|
369
|
+
api?: string;
|
|
370
|
+
|
|
371
|
+
npm?: string;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
export interface ConfigProvidersResponse {
|
|
375
|
+
default: { [key: string]: string };
|
|
376
|
+
|
|
377
|
+
providers: Array<Provider>;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export declare namespace ConfigResource {
|
|
381
|
+
export {
|
|
382
|
+
type Config as Config,
|
|
383
|
+
type Keybinds as Keybinds,
|
|
384
|
+
type McpLocal as McpLocal,
|
|
385
|
+
type McpRemote as McpRemote,
|
|
386
|
+
type Model as Model,
|
|
387
|
+
type Provider as Provider,
|
|
388
|
+
type ConfigProvidersResponse as ConfigProvidersResponse,
|
|
389
|
+
};
|
|
390
|
+
}
|
package/src/resources/event.ts
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../core/resource';
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
4
|
+
import * as SessionAPI from './session';
|
|
5
|
+
import * as Shared from './shared';
|
|
6
6
|
import { APIPromise } from '../core/api-promise';
|
|
7
|
+
import { Stream } from '../core/streaming';
|
|
7
8
|
import { RequestOptions } from '../internal/request-options';
|
|
8
9
|
|
|
9
10
|
export class Event extends APIResource {
|
|
10
11
|
/**
|
|
11
12
|
* Get events
|
|
12
13
|
*/
|
|
13
|
-
list(options?: RequestOptions): APIPromise<EventListResponse
|
|
14
|
-
return this._client.get('/event', options)
|
|
14
|
+
list(options?: RequestOptions): APIPromise<Stream<EventListResponse>> {
|
|
15
|
+
return this._client.get('/event', { ...options, stream: true }) as APIPromise<Stream<EventListResponse>>;
|
|
15
16
|
}
|
|
16
17
|
}
|
|
17
18
|
|
|
@@ -23,6 +24,7 @@ export type EventListResponse =
|
|
|
23
24
|
| EventListResponse.EventMessageUpdated
|
|
24
25
|
| EventListResponse.EventMessagePartUpdated
|
|
25
26
|
| EventListResponse.EventSessionUpdated
|
|
27
|
+
| EventListResponse.EventSessionDeleted
|
|
26
28
|
| EventListResponse.EventSessionError;
|
|
27
29
|
|
|
28
30
|
export namespace EventListResponse {
|
|
@@ -100,7 +102,7 @@ export namespace EventListResponse {
|
|
|
100
102
|
|
|
101
103
|
export namespace EventMessageUpdated {
|
|
102
104
|
export interface Properties {
|
|
103
|
-
info:
|
|
105
|
+
info: SessionAPI.Message;
|
|
104
106
|
}
|
|
105
107
|
}
|
|
106
108
|
|
|
@@ -114,7 +116,7 @@ export namespace EventListResponse {
|
|
|
114
116
|
export interface Properties {
|
|
115
117
|
messageID: string;
|
|
116
118
|
|
|
117
|
-
part:
|
|
119
|
+
part: SessionAPI.MessagePart;
|
|
118
120
|
|
|
119
121
|
sessionID: string;
|
|
120
122
|
}
|
|
@@ -128,7 +130,19 @@ export namespace EventListResponse {
|
|
|
128
130
|
|
|
129
131
|
export namespace EventSessionUpdated {
|
|
130
132
|
export interface Properties {
|
|
131
|
-
info:
|
|
133
|
+
info: SessionAPI.Session;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface EventSessionDeleted {
|
|
138
|
+
properties: EventSessionDeleted.Properties;
|
|
139
|
+
|
|
140
|
+
type: 'session.deleted';
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export namespace EventSessionDeleted {
|
|
144
|
+
export interface Properties {
|
|
145
|
+
info: SessionAPI.Session;
|
|
132
146
|
}
|
|
133
147
|
}
|
|
134
148
|
|
|
@@ -140,7 +154,15 @@ export namespace EventListResponse {
|
|
|
140
154
|
|
|
141
155
|
export namespace EventSessionError {
|
|
142
156
|
export interface Properties {
|
|
143
|
-
error?:
|
|
157
|
+
error?: Shared.ProviderAuthError | Shared.UnknownError | Properties.MessageOutputLengthError;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export namespace Properties {
|
|
161
|
+
export interface MessageOutputLengthError {
|
|
162
|
+
data: unknown;
|
|
163
|
+
|
|
164
|
+
name: 'MessageOutputLengthError';
|
|
165
|
+
}
|
|
144
166
|
}
|
|
145
167
|
}
|
|
146
168
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { APIResource } from '../core/resource';
|
|
4
|
+
import { APIPromise } from '../core/api-promise';
|
|
5
|
+
import { RequestOptions } from '../internal/request-options';
|
|
6
|
+
|
|
7
|
+
export class File extends APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Search for files
|
|
10
|
+
*/
|
|
11
|
+
search(query: FileSearchParams, options?: RequestOptions): APIPromise<FileSearchResponse> {
|
|
12
|
+
return this._client.get('/file', { query, ...options });
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export type FileSearchResponse = Array<string>;
|
|
17
|
+
|
|
18
|
+
export interface FileSearchParams {
|
|
19
|
+
query: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export declare namespace File {
|
|
23
|
+
export { type FileSearchResponse as FileSearchResponse, type FileSearchParams as FileSearchParams };
|
|
24
|
+
}
|
package/src/resources/index.ts
CHANGED
|
@@ -1,38 +1,40 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
export
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
3
|
+
export * from './shared';
|
|
4
|
+
export { AppResource, type App, type AppInitResponse } from './app';
|
|
5
|
+
export {
|
|
6
|
+
ConfigResource,
|
|
7
|
+
type Config,
|
|
8
|
+
type Keybinds,
|
|
9
|
+
type McpLocal,
|
|
10
|
+
type McpRemote,
|
|
11
|
+
type Model,
|
|
12
|
+
type Provider,
|
|
13
|
+
type ConfigProvidersResponse,
|
|
14
|
+
} from './config';
|
|
6
15
|
export { Event, type EventListResponse } from './event';
|
|
7
|
-
export {
|
|
8
|
-
export { InstallationInfo, type InstallationInfoCreateResponse } from './installation-info';
|
|
9
|
-
export { PathGet, type PathGetCreateResponse } from './path-get';
|
|
10
|
-
export { ProviderList, type ProviderListCreateResponse } from './provider-list';
|
|
11
|
-
export { SessionAbort, type SessionAbortAbortResponse, type SessionAbortAbortParams } from './session-abort';
|
|
16
|
+
export { File, type FileSearchResponse, type FileSearchParams } from './file';
|
|
12
17
|
export {
|
|
13
|
-
|
|
14
|
-
type
|
|
18
|
+
SessionResource,
|
|
19
|
+
type FilePart,
|
|
20
|
+
type Message,
|
|
15
21
|
type MessagePart,
|
|
16
|
-
type
|
|
17
|
-
type
|
|
18
|
-
type
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
type
|
|
24
|
-
type
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
type
|
|
30
|
-
type
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
type SessionSummarizeSummarizeResponse,
|
|
36
|
-
type SessionSummarizeSummarizeParams,
|
|
37
|
-
} from './session-summarize';
|
|
38
|
-
export { SessionUnshare, type SessionUnshareUnshareParams } from './session-unshare';
|
|
22
|
+
type ReasoningPart,
|
|
23
|
+
type Session,
|
|
24
|
+
type SourceURLPart,
|
|
25
|
+
type StepStartPart,
|
|
26
|
+
type TextPart,
|
|
27
|
+
type ToolCall,
|
|
28
|
+
type ToolInvocationPart,
|
|
29
|
+
type ToolPartialCall,
|
|
30
|
+
type ToolResult,
|
|
31
|
+
type SessionListResponse,
|
|
32
|
+
type SessionDeleteResponse,
|
|
33
|
+
type SessionAbortResponse,
|
|
34
|
+
type SessionInitResponse,
|
|
35
|
+
type SessionMessagesResponse,
|
|
36
|
+
type SessionSummarizeResponse,
|
|
37
|
+
type SessionChatParams,
|
|
38
|
+
type SessionInitParams,
|
|
39
|
+
type SessionSummarizeParams,
|
|
40
|
+
} from './session';
|