@opencode-ai/client 0.0.0-next-15235 → 0.0.0-next-15248

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.
@@ -366,6 +366,15 @@ export function make(options) {
366
366
  declaredStatuses: [404, 500, 400, 401],
367
367
  empty: false,
368
368
  }, requestOptions).then((value) => value.data),
369
+ pending: {
370
+ list: (input, requestOptions) => request({
371
+ method: "GET",
372
+ path: `/api/session/${encodeURIComponent(input.sessionID)}/pending`,
373
+ successStatus: 200,
374
+ declaredStatuses: [404, 400, 401],
375
+ empty: false,
376
+ }, requestOptions).then((value) => value.data),
377
+ },
369
378
  instructions: {
370
379
  entry: {
371
380
  list: (input, requestOptions) => request({