@tangle-network/sandbox 0.4.0 → 0.4.3

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.
@@ -2056,6 +2056,7 @@ interface FleetExecDispatchResult {
2056
2056
  message: string;
2057
2057
  status?: number;
2058
2058
  failureClass?: SandboxFleetDispatchFailureClass;
2059
+ retryAfterMs?: number;
2059
2060
  };
2060
2061
  }
2061
2062
  interface FleetPromptDispatchOptions extends Pick<PromptOptions, "sessionId" | "model" | "backend" | "timeoutMs" | "context"> {
@@ -2082,6 +2083,7 @@ interface FleetPromptDispatchResult {
2082
2083
  message: string;
2083
2084
  status?: number;
2084
2085
  failureClass?: SandboxFleetDispatchFailureClass;
2086
+ retryAfterMs?: number;
2085
2087
  };
2086
2088
  }
2087
2089
  type SandboxFleetDispatchFailureClass = "oom" | "timeout" | "dependency" | "infra" | "model" | "user_code";