@miosa/sdk 1.2.16 → 1.2.17

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/dist/index.d.ts CHANGED
@@ -251,6 +251,7 @@ interface AgentRunCreateParams {
251
251
  runtimeCommand?: string;
252
252
  cwd?: string;
253
253
  timeout?: number;
254
+ wait?: boolean;
254
255
  env?: Record<string, string>;
255
256
  agentRuntimeProfileId?: string;
256
257
  agentProfileId?: string;
package/dist/index.js CHANGED
@@ -1045,6 +1045,7 @@ var AgentRuns = class {
1045
1045
  runtime_command: params.runtimeCommand,
1046
1046
  cwd: params.cwd,
1047
1047
  timeout: params.timeout,
1048
+ wait: params.wait,
1048
1049
  env: params.env,
1049
1050
  agent_runtime_profile_id: params.agentRuntimeProfileId,
1050
1051
  agent_profile_id: params.agentProfileId,