diff --git a/src/types/common.ts b/src/types/common.ts index 914b1b27..c9aec060 100644 --- a/src/types/common.ts +++ b/src/types/common.ts @@ -154,6 +154,18 @@ export enum SandboxState { * Sandbox runtime has been deleted. */ STATE_DELETED = 'STATE_DELETED', + /** + * Sandbox runtime is paused. + */ + STATE_PAUSED = 'STATE_PAUSED', + /** + * Sandbox runtime is pausing. + */ + STATE_PAUSING = 'STATE_PAUSING', + /** + * Sandbox runtime is resuming. + */ + STATE_RESUMING = 'STATE_RESUMING', } /** Protocol for port. Defaults to TCP if not specified. */