@opencode-ai/sdk 1.0.185 → 1.0.187

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.
@@ -719,6 +719,14 @@ export type KeybindsConfig = {
719
719
  * Navigate to last message
720
720
  */
721
721
  messages_last?: string;
722
+ /**
723
+ * Navigate to next message
724
+ */
725
+ messages_next?: string;
726
+ /**
727
+ * Navigate to previous message
728
+ */
729
+ messages_previous?: string;
722
730
  /**
723
731
  * Navigate to last user message
724
732
  */
@@ -359,6 +359,7 @@ export declare class Session extends HeyApiClient {
359
359
  directory?: string;
360
360
  providerID?: string;
361
361
  modelID?: string;
362
+ auto?: boolean;
362
363
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SessionSummarizeResponses, SessionSummarizeErrors, ThrowOnError, "fields">;
363
364
  /**
364
365
  * Get session messages
@@ -673,6 +673,7 @@ export class Session extends HeyApiClient {
673
673
  { in: "query", key: "directory" },
674
674
  { in: "body", key: "providerID" },
675
675
  { in: "body", key: "modelID" },
676
+ { in: "body", key: "auto" },
676
677
  ],
677
678
  },
678
679
  ]);
@@ -748,6 +748,14 @@ export type KeybindsConfig = {
748
748
  * Navigate to last message
749
749
  */
750
750
  messages_last?: string;
751
+ /**
752
+ * Navigate to next message
753
+ */
754
+ messages_next?: string;
755
+ /**
756
+ * Navigate to previous message
757
+ */
758
+ messages_previous?: string;
751
759
  /**
752
760
  * Navigate to last user message
753
761
  */
@@ -972,6 +980,10 @@ export type KeybindsConfig = {
972
980
  * Previous child session
973
981
  */
974
982
  session_child_cycle_reverse?: string;
983
+ /**
984
+ * Go to parent session
985
+ */
986
+ session_parent?: string;
975
987
  /**
976
988
  * Suspend terminal
977
989
  */
@@ -2392,6 +2404,7 @@ export type SessionSummarizeData = {
2392
2404
  body?: {
2393
2405
  providerID: string;
2394
2406
  modelID: string;
2407
+ auto?: boolean;
2395
2408
  };
2396
2409
  path: {
2397
2410
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/sdk",
4
- "version": "1.0.185",
4
+ "version": "1.0.187",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "typecheck": "tsgo --noEmit",