File tree Expand file tree Collapse file tree 4 files changed +35
-7
lines changed Expand file tree Collapse file tree 4 files changed +35
-7
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 20
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/opencode%2Fopencode-e2f67adede4455c3fe4507ac6f0b2ed1a91ee951ab30e01179555c18765750d4 .yml
3
- openapi_spec_hash : 6005bcfff58c025d61739be42030a339
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/opencode%2Fopencode-945f9da9e9a4c4008834deef63e4346c0076e020eed3d3c98c249095033c1ac5 .yml
3
+ openapi_spec_hash : 522a44f6cb0677435fe2ac7693848ad7
4
4
config_hash : 6c8822d278ba83456e5eed6d774ca230
Original file line number Diff line number Diff line change @@ -43,6 +43,11 @@ export interface Config {
43
43
44
44
experimental ?: Config . Experimental ;
45
45
46
+ /**
47
+ * Additional instruction files or patterns to include
48
+ */
49
+ instructions ?: Array < string > ;
50
+
46
51
/**
47
52
* Custom keybind configurations
48
53
*/
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ export type EventListResponse =
23
23
| EventListResponse . EventStorageWrite
24
24
| EventListResponse . EventInstallationUpdated
25
25
| EventListResponse . EventMessageUpdated
26
+ | EventListResponse . EventMessageRemoved
26
27
| EventListResponse . EventMessagePartUpdated
27
28
| EventListResponse . EventSessionUpdated
28
29
| EventListResponse . EventSessionDeleted
@@ -121,6 +122,20 @@ export namespace EventListResponse {
121
122
}
122
123
}
123
124
125
+ export interface EventMessageRemoved {
126
+ properties : EventMessageRemoved . Properties ;
127
+
128
+ type : 'message.removed' ;
129
+ }
130
+
131
+ export namespace EventMessageRemoved {
132
+ export interface Properties {
133
+ messageID : string ;
134
+
135
+ sessionID : string ;
136
+ }
137
+ }
138
+
124
139
export interface EventMessagePartUpdated {
125
140
properties : EventMessagePartUpdated . Properties ;
126
141
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export namespace Message {
114
114
115
115
error ?: Shared . ProviderAuthError | Shared . UnknownError | Metadata . MessageOutputLengthError ;
116
116
117
- user ?: Metadata . User ;
117
+ snapshot ?: string ;
118
118
}
119
119
120
120
export namespace Metadata {
@@ -129,6 +129,8 @@ export namespace Message {
129
129
130
130
title : string ;
131
131
132
+ snapshot ?: string ;
133
+
132
134
[ k : string ] : unknown ;
133
135
}
134
136
@@ -187,10 +189,6 @@ export namespace Message {
187
189
188
190
name : 'MessageOutputLengthError' ;
189
191
}
190
-
191
- export interface User {
192
- snapshot ?: string ;
193
- }
194
192
}
195
193
}
196
194
@@ -221,6 +219,8 @@ export interface Session {
221
219
222
220
parentID ?: string ;
223
221
222
+ revert ?: Session . Revert ;
223
+
224
224
share ?: Session . Share ;
225
225
}
226
226
@@ -231,6 +231,14 @@ export namespace Session {
231
231
updated : number ;
232
232
}
233
233
234
+ export interface Revert {
235
+ messageID : string ;
236
+
237
+ part : number ;
238
+
239
+ snapshot ?: string ;
240
+ }
241
+
234
242
export interface Share {
235
243
url : string ;
236
244
}
You can’t perform that action at this time.
0 commit comments