@ericsanchezok/synergy-sdk 1.2.26 → 1.2.27

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.
@@ -1031,7 +1031,7 @@ export declare class Session extends HeyApiClient {
1031
1031
  /**
1032
1032
  * Send command
1033
1033
  *
1034
- * Send a new command to a session for execution by the AI assistant.
1034
+ * Send a new command to a session for execution by the AI assistant. Returns immediately; the agent processes the command asynchronously.
1035
1035
  */
1036
1036
  command<ThrowOnError extends boolean = false>(parameters: {
1037
1037
  sessionID: string;
@@ -2038,7 +2038,7 @@ export class Session extends HeyApiClient {
2038
2038
  /**
2039
2039
  * Send command
2040
2040
  *
2041
- * Send a new command to a session for execution by the AI assistant.
2041
+ * Send a new command to a session for execution by the AI assistant. Returns immediately; the agent processes the command asynchronously.
2042
2042
  */
2043
2043
  command(parameters, options) {
2044
2044
  const params = buildClientParams([parameters], [
@@ -5136,12 +5136,9 @@ export type SessionCommandErrors = {
5136
5136
  export type SessionCommandError = SessionCommandErrors[keyof SessionCommandErrors];
5137
5137
  export type SessionCommandResponses = {
5138
5138
  /**
5139
- * Created message
5139
+ * Command accepted
5140
5140
  */
5141
- 200: {
5142
- info: AssistantMessage;
5143
- parts: Array<Part>;
5144
- };
5141
+ 204: void;
5145
5142
  };
5146
5143
  export type SessionCommandResponse = SessionCommandResponses[keyof SessionCommandResponses];
5147
5144
  export type SessionShellData = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@ericsanchezok/synergy-sdk",
4
- "version": "1.2.26",
4
+ "version": "1.2.27",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {