tensorlake 0.4.42 → 0.4.45
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/bin/darwin-arm64/tensorlake +0 -0
- package/dist/bin/darwin-arm64/tl +0 -0
- package/dist/bin/linux-x64/tensorlake +0 -0
- package/dist/bin/linux-x64/tl +0 -0
- package/dist/bin/win32-x64/tensorlake.exe +0 -0
- package/dist/bin/win32-x64/tl.exe +0 -0
- package/dist/index.cjs +2427 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +101 -4
- package/dist/index.d.ts +101 -4
- package/dist/index.js +2425 -8
- package/dist/index.js.map +1 -1
- package/dist/{sandbox-image-DKPhc4Lv.d.cts → sandbox-image-B5Fa0xqb.d.cts} +25 -5
- package/dist/{sandbox-image-DKPhc4Lv.d.ts → sandbox-image-B5Fa0xqb.d.ts} +25 -5
- package/dist/sandbox-image.cjs +2423 -8
- package/dist/sandbox-image.cjs.map +1 -1
- package/dist/sandbox-image.d.cts +1 -1
- package/dist/sandbox-image.d.ts +1 -1
- package/dist/sandbox-image.js +2423 -8
- package/dist/sandbox-image.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,100 @@
|
|
|
1
|
-
import { C as CreatePtySessionOptions, S as SandboxOptions, R as RunOptions, a as CommandResult, b as StartProcessOptions, P as ProcessInfo, c as SendSignalResponse, O as OutputResponse, d as OutputEvent, L as ListDirectoryResponse, e as PtySessionInfo, H as HealthResponse, D as DaemonInfo, f as SandboxClientOptions, g as CreateSandboxOptions, h as CreateSandboxResponse, i as SandboxInfo, U as UpdateSandboxOptions, j as SandboxPortAccess, k as
|
|
2
|
-
export {
|
|
1
|
+
import { C as CreatePtySessionOptions, S as SandboxOptions, R as RunOptions, a as CommandResult, b as StartProcessOptions, P as ProcessInfo, c as SendSignalResponse, O as OutputResponse, d as OutputEvent, L as ListDirectoryResponse, e as PtySessionInfo, H as HealthResponse, D as DaemonInfo, f as SandboxClientOptions, g as CreateSandboxOptions, h as CreateSandboxResponse, i as SandboxInfo, U as UpdateSandboxOptions, j as SandboxPortAccess, k as SnapshotOptions, l as CreateSnapshotResponse, m as SnapshotInfo, n as SnapshotAndWaitOptions, o as CreatePoolOptions, p as CreateSandboxPoolResponse, q as SandboxPoolInfo, r as UpdatePoolOptions, s as CreateAndConnectOptions } from './sandbox-image-B5Fa0xqb.cjs';
|
|
2
|
+
export { t as ContainerResourcesInfo, u as ContainerState, v as CreateSandboxImageOptions, w as DirectoryEntry, x as DockerfileBuildPlan, y as DockerfileInstruction, I as Image, z as ImageBuildOperation, A as ImageBuildOperationType, A as ImageBuildOperationTypeValue, B as ImageOptions, N as NetworkConfig, E as OutputMode, F as PoolContainerInfo, G as ProcessStatus, J as SandboxImageSource, K as SandboxStatus, M as SnapshotContentMode, Q as SnapshotStatus, T as StdinMode, V as createSandboxImage, W as dockerfileContent } from './sandbox-image-B5Fa0xqb.cjs';
|
|
3
|
+
|
|
4
|
+
type MouseButton = "left" | "middle" | "right";
|
|
5
|
+
interface ConnectDesktopOptions {
|
|
6
|
+
/** Remote VNC port. Defaults to `5901`. */
|
|
7
|
+
port?: number;
|
|
8
|
+
/** Optional VNC password for classic VNC authentication. */
|
|
9
|
+
password?: string;
|
|
10
|
+
/** Whether to request a shared VNC session. Defaults to `true`. */
|
|
11
|
+
shared?: boolean;
|
|
12
|
+
/** Seconds to wait while opening the desktop session. Defaults to `10`. */
|
|
13
|
+
connectTimeout?: number;
|
|
14
|
+
}
|
|
15
|
+
interface DesktopPointerOptions {
|
|
16
|
+
button?: MouseButton;
|
|
17
|
+
x?: number;
|
|
18
|
+
y?: number;
|
|
19
|
+
}
|
|
20
|
+
interface DesktopDoubleClickOptions extends DesktopPointerOptions {
|
|
21
|
+
delayMs?: number;
|
|
22
|
+
}
|
|
23
|
+
interface DesktopConnectRequest extends ConnectDesktopOptions {
|
|
24
|
+
baseUrl: string;
|
|
25
|
+
wsHeaders: Record<string, string>;
|
|
26
|
+
}
|
|
27
|
+
declare class Desktop {
|
|
28
|
+
private session;
|
|
29
|
+
private readonly connectRequest;
|
|
30
|
+
private operationChain;
|
|
31
|
+
private reconnectPromise;
|
|
32
|
+
private closed;
|
|
33
|
+
private constructor();
|
|
34
|
+
static connect(options: DesktopConnectRequest): Promise<Desktop>;
|
|
35
|
+
get width(): number;
|
|
36
|
+
get height(): number;
|
|
37
|
+
close(): Promise<void>;
|
|
38
|
+
screenshot(timeout?: number): Promise<Uint8Array>;
|
|
39
|
+
getFrameVersion(): number;
|
|
40
|
+
screenshotAfter(frameVersion: number, timeout?: number): Promise<Uint8Array>;
|
|
41
|
+
moveMouse(x: number, y: number): Promise<void>;
|
|
42
|
+
mousePress(options?: DesktopPointerOptions): Promise<void>;
|
|
43
|
+
mouseRelease(options?: DesktopPointerOptions): Promise<void>;
|
|
44
|
+
click(options?: DesktopPointerOptions): Promise<void>;
|
|
45
|
+
doubleClick(options?: DesktopDoubleClickOptions): Promise<void>;
|
|
46
|
+
leftClick(x?: number, y?: number): Promise<void>;
|
|
47
|
+
middleClick(x?: number, y?: number): Promise<void>;
|
|
48
|
+
rightClick(x?: number, y?: number): Promise<void>;
|
|
49
|
+
scroll(steps: number, x?: number, y?: number): Promise<void>;
|
|
50
|
+
scrollUp(steps?: number, x?: number, y?: number): Promise<void>;
|
|
51
|
+
scrollDown(steps?: number, x?: number, y?: number): Promise<void>;
|
|
52
|
+
keyDown(key: string): Promise<void>;
|
|
53
|
+
keyUp(key: string): Promise<void>;
|
|
54
|
+
press(keys: string | string[]): Promise<void>;
|
|
55
|
+
typeText(text: string): Promise<void>;
|
|
56
|
+
private enqueue;
|
|
57
|
+
private captureScreenshot;
|
|
58
|
+
private captureScreenshotAfter;
|
|
59
|
+
private reconnect;
|
|
60
|
+
private performReconnect;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
interface CreateTunnelOptions {
|
|
64
|
+
/** Local host/interface to bind. Defaults to `127.0.0.1`. */
|
|
65
|
+
localHost?: string;
|
|
66
|
+
/** Local port to bind. Defaults to the remote port. Use `0` for an ephemeral port. */
|
|
67
|
+
localPort?: number;
|
|
68
|
+
/** Seconds to wait for each websocket tunnel connection. Defaults to `10`. */
|
|
69
|
+
connectTimeout?: number;
|
|
70
|
+
}
|
|
71
|
+
interface TunnelAddress {
|
|
72
|
+
host: string;
|
|
73
|
+
port: number;
|
|
74
|
+
}
|
|
75
|
+
declare class TcpTunnel {
|
|
76
|
+
readonly remotePort: number;
|
|
77
|
+
readonly localHost: string;
|
|
78
|
+
readonly localPort: number;
|
|
79
|
+
private readonly baseUrl;
|
|
80
|
+
private readonly wsHeaders;
|
|
81
|
+
private readonly server;
|
|
82
|
+
private readonly connectTimeoutMs;
|
|
83
|
+
private readonly activeRelays;
|
|
84
|
+
private closePromise;
|
|
85
|
+
private constructor();
|
|
86
|
+
static listen(options: {
|
|
87
|
+
baseUrl: string;
|
|
88
|
+
wsHeaders: Record<string, string>;
|
|
89
|
+
remotePort: number;
|
|
90
|
+
localHost?: string;
|
|
91
|
+
localPort?: number;
|
|
92
|
+
connectTimeout?: number;
|
|
93
|
+
}): Promise<TcpTunnel>;
|
|
94
|
+
address(): TunnelAddress;
|
|
95
|
+
close(): Promise<void>;
|
|
96
|
+
private handleConnection;
|
|
97
|
+
}
|
|
3
98
|
|
|
4
99
|
type PtyDataHandler = (data: Uint8Array) => void;
|
|
5
100
|
type PtyExitHandler = (exitCode: number) => void;
|
|
@@ -89,6 +184,8 @@ declare class Sandbox {
|
|
|
89
184
|
createPtySession(options: CreatePtySessionOptions): Promise<PtySessionInfo>;
|
|
90
185
|
createPty(options: CreatePtyOptions): Promise<Pty>;
|
|
91
186
|
connectPty(sessionId: string, token: string, options?: PtyConnectionOptions): Promise<Pty>;
|
|
187
|
+
createTunnel(remotePort: number, options?: CreateTunnelOptions): Promise<TcpTunnel>;
|
|
188
|
+
connectDesktop(options?: ConnectDesktopOptions): Promise<Desktop>;
|
|
92
189
|
ptyWsUrl(sessionId: string, token: string): string;
|
|
93
190
|
health(): Promise<HealthResponse>;
|
|
94
191
|
info(): Promise<DaemonInfo>;
|
|
@@ -136,7 +233,7 @@ declare class SandboxClient {
|
|
|
136
233
|
suspend(sandboxId: string): Promise<void>;
|
|
137
234
|
resume(sandboxId: string): Promise<void>;
|
|
138
235
|
claim(poolId: string): Promise<CreateSandboxResponse>;
|
|
139
|
-
snapshot(sandboxId: string): Promise<CreateSnapshotResponse>;
|
|
236
|
+
snapshot(sandboxId: string, options?: SnapshotOptions): Promise<CreateSnapshotResponse>;
|
|
140
237
|
getSnapshot(snapshotId: string): Promise<SnapshotInfo>;
|
|
141
238
|
listSnapshots(): Promise<SnapshotInfo[]>;
|
|
142
239
|
deleteSnapshot(snapshotId: string): Promise<void>;
|
|
@@ -395,4 +492,4 @@ declare class RequestExecutionError extends Error {
|
|
|
395
492
|
constructor(message: string, functionName?: string);
|
|
396
493
|
}
|
|
397
494
|
|
|
398
|
-
export { APIClient, type ApiKeyIntrospection, type ApplicationBuildContext, type ApplicationBuildImageResult, type ApplicationBuildResponse, type ApplicationManifest, type ApplicationSummary, type BinaryPayload, type BuildInfo, type BuildLogEntry, CloudClient, type CloudClientOptions, CommandResult, CreateAndConnectOptions, type CreateApplicationBuildImageRequest, type CreateApplicationBuildRequest, CreatePoolOptions, type CreatePtyOptions, CreatePtySessionOptions, CreateSandboxOptions, CreateSandboxPoolResponse, CreateSandboxResponse, CreateSnapshotResponse, DaemonInfo, HealthResponse, ListDirectoryResponse, type NewSecret, OutputEvent, OutputResponse, PoolInUseError, PoolNotFoundError, ProcessInfo, Pty, type PtyConnectionOptions, type PtyDataHandler, type PtyExitHandler, PtySessionInfo, RemoteAPIError, type RequestErrorInfo, RequestExecutionError, RequestFailedError, type RequestInput, type RequestMetadata, RequestNotFinishedError, type RequestOutput, RunOptions, Sandbox, SandboxClient, SandboxClientOptions, SandboxConnectionError, SandboxError, SandboxException, SandboxInfo, SandboxNotFoundError, SandboxOptions, SandboxPoolInfo, SandboxPortAccess, type Secret, type SecretsList, type SecretsPagination, SendSignalResponse, SnapshotAndWaitOptions, SnapshotInfo, type StartImageBuildRequest, StartProcessOptions, UpdatePoolOptions, type UpsertSecretResponse };
|
|
495
|
+
export { APIClient, type ApiKeyIntrospection, type ApplicationBuildContext, type ApplicationBuildImageResult, type ApplicationBuildResponse, type ApplicationManifest, type ApplicationSummary, type BinaryPayload, type BuildInfo, type BuildLogEntry, CloudClient, type CloudClientOptions, CommandResult, type ConnectDesktopOptions, CreateAndConnectOptions, type CreateApplicationBuildImageRequest, type CreateApplicationBuildRequest, CreatePoolOptions, type CreatePtyOptions, CreatePtySessionOptions, CreateSandboxOptions, CreateSandboxPoolResponse, CreateSandboxResponse, CreateSnapshotResponse, type CreateTunnelOptions, DaemonInfo, Desktop, type DesktopDoubleClickOptions, type DesktopPointerOptions, HealthResponse, ListDirectoryResponse, type MouseButton, type NewSecret, OutputEvent, OutputResponse, PoolInUseError, PoolNotFoundError, ProcessInfo, Pty, type PtyConnectionOptions, type PtyDataHandler, type PtyExitHandler, PtySessionInfo, RemoteAPIError, type RequestErrorInfo, RequestExecutionError, RequestFailedError, type RequestInput, type RequestMetadata, RequestNotFinishedError, type RequestOutput, RunOptions, Sandbox, SandboxClient, SandboxClientOptions, SandboxConnectionError, SandboxError, SandboxException, SandboxInfo, SandboxNotFoundError, SandboxOptions, SandboxPoolInfo, SandboxPortAccess, type Secret, type SecretsList, type SecretsPagination, SendSignalResponse, SnapshotAndWaitOptions, SnapshotInfo, SnapshotOptions, type StartImageBuildRequest, StartProcessOptions, TcpTunnel, type TunnelAddress, UpdatePoolOptions, type UpsertSecretResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,100 @@
|
|
|
1
|
-
import { C as CreatePtySessionOptions, S as SandboxOptions, R as RunOptions, a as CommandResult, b as StartProcessOptions, P as ProcessInfo, c as SendSignalResponse, O as OutputResponse, d as OutputEvent, L as ListDirectoryResponse, e as PtySessionInfo, H as HealthResponse, D as DaemonInfo, f as SandboxClientOptions, g as CreateSandboxOptions, h as CreateSandboxResponse, i as SandboxInfo, U as UpdateSandboxOptions, j as SandboxPortAccess, k as
|
|
2
|
-
export {
|
|
1
|
+
import { C as CreatePtySessionOptions, S as SandboxOptions, R as RunOptions, a as CommandResult, b as StartProcessOptions, P as ProcessInfo, c as SendSignalResponse, O as OutputResponse, d as OutputEvent, L as ListDirectoryResponse, e as PtySessionInfo, H as HealthResponse, D as DaemonInfo, f as SandboxClientOptions, g as CreateSandboxOptions, h as CreateSandboxResponse, i as SandboxInfo, U as UpdateSandboxOptions, j as SandboxPortAccess, k as SnapshotOptions, l as CreateSnapshotResponse, m as SnapshotInfo, n as SnapshotAndWaitOptions, o as CreatePoolOptions, p as CreateSandboxPoolResponse, q as SandboxPoolInfo, r as UpdatePoolOptions, s as CreateAndConnectOptions } from './sandbox-image-B5Fa0xqb.js';
|
|
2
|
+
export { t as ContainerResourcesInfo, u as ContainerState, v as CreateSandboxImageOptions, w as DirectoryEntry, x as DockerfileBuildPlan, y as DockerfileInstruction, I as Image, z as ImageBuildOperation, A as ImageBuildOperationType, A as ImageBuildOperationTypeValue, B as ImageOptions, N as NetworkConfig, E as OutputMode, F as PoolContainerInfo, G as ProcessStatus, J as SandboxImageSource, K as SandboxStatus, M as SnapshotContentMode, Q as SnapshotStatus, T as StdinMode, V as createSandboxImage, W as dockerfileContent } from './sandbox-image-B5Fa0xqb.js';
|
|
3
|
+
|
|
4
|
+
type MouseButton = "left" | "middle" | "right";
|
|
5
|
+
interface ConnectDesktopOptions {
|
|
6
|
+
/** Remote VNC port. Defaults to `5901`. */
|
|
7
|
+
port?: number;
|
|
8
|
+
/** Optional VNC password for classic VNC authentication. */
|
|
9
|
+
password?: string;
|
|
10
|
+
/** Whether to request a shared VNC session. Defaults to `true`. */
|
|
11
|
+
shared?: boolean;
|
|
12
|
+
/** Seconds to wait while opening the desktop session. Defaults to `10`. */
|
|
13
|
+
connectTimeout?: number;
|
|
14
|
+
}
|
|
15
|
+
interface DesktopPointerOptions {
|
|
16
|
+
button?: MouseButton;
|
|
17
|
+
x?: number;
|
|
18
|
+
y?: number;
|
|
19
|
+
}
|
|
20
|
+
interface DesktopDoubleClickOptions extends DesktopPointerOptions {
|
|
21
|
+
delayMs?: number;
|
|
22
|
+
}
|
|
23
|
+
interface DesktopConnectRequest extends ConnectDesktopOptions {
|
|
24
|
+
baseUrl: string;
|
|
25
|
+
wsHeaders: Record<string, string>;
|
|
26
|
+
}
|
|
27
|
+
declare class Desktop {
|
|
28
|
+
private session;
|
|
29
|
+
private readonly connectRequest;
|
|
30
|
+
private operationChain;
|
|
31
|
+
private reconnectPromise;
|
|
32
|
+
private closed;
|
|
33
|
+
private constructor();
|
|
34
|
+
static connect(options: DesktopConnectRequest): Promise<Desktop>;
|
|
35
|
+
get width(): number;
|
|
36
|
+
get height(): number;
|
|
37
|
+
close(): Promise<void>;
|
|
38
|
+
screenshot(timeout?: number): Promise<Uint8Array>;
|
|
39
|
+
getFrameVersion(): number;
|
|
40
|
+
screenshotAfter(frameVersion: number, timeout?: number): Promise<Uint8Array>;
|
|
41
|
+
moveMouse(x: number, y: number): Promise<void>;
|
|
42
|
+
mousePress(options?: DesktopPointerOptions): Promise<void>;
|
|
43
|
+
mouseRelease(options?: DesktopPointerOptions): Promise<void>;
|
|
44
|
+
click(options?: DesktopPointerOptions): Promise<void>;
|
|
45
|
+
doubleClick(options?: DesktopDoubleClickOptions): Promise<void>;
|
|
46
|
+
leftClick(x?: number, y?: number): Promise<void>;
|
|
47
|
+
middleClick(x?: number, y?: number): Promise<void>;
|
|
48
|
+
rightClick(x?: number, y?: number): Promise<void>;
|
|
49
|
+
scroll(steps: number, x?: number, y?: number): Promise<void>;
|
|
50
|
+
scrollUp(steps?: number, x?: number, y?: number): Promise<void>;
|
|
51
|
+
scrollDown(steps?: number, x?: number, y?: number): Promise<void>;
|
|
52
|
+
keyDown(key: string): Promise<void>;
|
|
53
|
+
keyUp(key: string): Promise<void>;
|
|
54
|
+
press(keys: string | string[]): Promise<void>;
|
|
55
|
+
typeText(text: string): Promise<void>;
|
|
56
|
+
private enqueue;
|
|
57
|
+
private captureScreenshot;
|
|
58
|
+
private captureScreenshotAfter;
|
|
59
|
+
private reconnect;
|
|
60
|
+
private performReconnect;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
interface CreateTunnelOptions {
|
|
64
|
+
/** Local host/interface to bind. Defaults to `127.0.0.1`. */
|
|
65
|
+
localHost?: string;
|
|
66
|
+
/** Local port to bind. Defaults to the remote port. Use `0` for an ephemeral port. */
|
|
67
|
+
localPort?: number;
|
|
68
|
+
/** Seconds to wait for each websocket tunnel connection. Defaults to `10`. */
|
|
69
|
+
connectTimeout?: number;
|
|
70
|
+
}
|
|
71
|
+
interface TunnelAddress {
|
|
72
|
+
host: string;
|
|
73
|
+
port: number;
|
|
74
|
+
}
|
|
75
|
+
declare class TcpTunnel {
|
|
76
|
+
readonly remotePort: number;
|
|
77
|
+
readonly localHost: string;
|
|
78
|
+
readonly localPort: number;
|
|
79
|
+
private readonly baseUrl;
|
|
80
|
+
private readonly wsHeaders;
|
|
81
|
+
private readonly server;
|
|
82
|
+
private readonly connectTimeoutMs;
|
|
83
|
+
private readonly activeRelays;
|
|
84
|
+
private closePromise;
|
|
85
|
+
private constructor();
|
|
86
|
+
static listen(options: {
|
|
87
|
+
baseUrl: string;
|
|
88
|
+
wsHeaders: Record<string, string>;
|
|
89
|
+
remotePort: number;
|
|
90
|
+
localHost?: string;
|
|
91
|
+
localPort?: number;
|
|
92
|
+
connectTimeout?: number;
|
|
93
|
+
}): Promise<TcpTunnel>;
|
|
94
|
+
address(): TunnelAddress;
|
|
95
|
+
close(): Promise<void>;
|
|
96
|
+
private handleConnection;
|
|
97
|
+
}
|
|
3
98
|
|
|
4
99
|
type PtyDataHandler = (data: Uint8Array) => void;
|
|
5
100
|
type PtyExitHandler = (exitCode: number) => void;
|
|
@@ -89,6 +184,8 @@ declare class Sandbox {
|
|
|
89
184
|
createPtySession(options: CreatePtySessionOptions): Promise<PtySessionInfo>;
|
|
90
185
|
createPty(options: CreatePtyOptions): Promise<Pty>;
|
|
91
186
|
connectPty(sessionId: string, token: string, options?: PtyConnectionOptions): Promise<Pty>;
|
|
187
|
+
createTunnel(remotePort: number, options?: CreateTunnelOptions): Promise<TcpTunnel>;
|
|
188
|
+
connectDesktop(options?: ConnectDesktopOptions): Promise<Desktop>;
|
|
92
189
|
ptyWsUrl(sessionId: string, token: string): string;
|
|
93
190
|
health(): Promise<HealthResponse>;
|
|
94
191
|
info(): Promise<DaemonInfo>;
|
|
@@ -136,7 +233,7 @@ declare class SandboxClient {
|
|
|
136
233
|
suspend(sandboxId: string): Promise<void>;
|
|
137
234
|
resume(sandboxId: string): Promise<void>;
|
|
138
235
|
claim(poolId: string): Promise<CreateSandboxResponse>;
|
|
139
|
-
snapshot(sandboxId: string): Promise<CreateSnapshotResponse>;
|
|
236
|
+
snapshot(sandboxId: string, options?: SnapshotOptions): Promise<CreateSnapshotResponse>;
|
|
140
237
|
getSnapshot(snapshotId: string): Promise<SnapshotInfo>;
|
|
141
238
|
listSnapshots(): Promise<SnapshotInfo[]>;
|
|
142
239
|
deleteSnapshot(snapshotId: string): Promise<void>;
|
|
@@ -395,4 +492,4 @@ declare class RequestExecutionError extends Error {
|
|
|
395
492
|
constructor(message: string, functionName?: string);
|
|
396
493
|
}
|
|
397
494
|
|
|
398
|
-
export { APIClient, type ApiKeyIntrospection, type ApplicationBuildContext, type ApplicationBuildImageResult, type ApplicationBuildResponse, type ApplicationManifest, type ApplicationSummary, type BinaryPayload, type BuildInfo, type BuildLogEntry, CloudClient, type CloudClientOptions, CommandResult, CreateAndConnectOptions, type CreateApplicationBuildImageRequest, type CreateApplicationBuildRequest, CreatePoolOptions, type CreatePtyOptions, CreatePtySessionOptions, CreateSandboxOptions, CreateSandboxPoolResponse, CreateSandboxResponse, CreateSnapshotResponse, DaemonInfo, HealthResponse, ListDirectoryResponse, type NewSecret, OutputEvent, OutputResponse, PoolInUseError, PoolNotFoundError, ProcessInfo, Pty, type PtyConnectionOptions, type PtyDataHandler, type PtyExitHandler, PtySessionInfo, RemoteAPIError, type RequestErrorInfo, RequestExecutionError, RequestFailedError, type RequestInput, type RequestMetadata, RequestNotFinishedError, type RequestOutput, RunOptions, Sandbox, SandboxClient, SandboxClientOptions, SandboxConnectionError, SandboxError, SandboxException, SandboxInfo, SandboxNotFoundError, SandboxOptions, SandboxPoolInfo, SandboxPortAccess, type Secret, type SecretsList, type SecretsPagination, SendSignalResponse, SnapshotAndWaitOptions, SnapshotInfo, type StartImageBuildRequest, StartProcessOptions, UpdatePoolOptions, type UpsertSecretResponse };
|
|
495
|
+
export { APIClient, type ApiKeyIntrospection, type ApplicationBuildContext, type ApplicationBuildImageResult, type ApplicationBuildResponse, type ApplicationManifest, type ApplicationSummary, type BinaryPayload, type BuildInfo, type BuildLogEntry, CloudClient, type CloudClientOptions, CommandResult, type ConnectDesktopOptions, CreateAndConnectOptions, type CreateApplicationBuildImageRequest, type CreateApplicationBuildRequest, CreatePoolOptions, type CreatePtyOptions, CreatePtySessionOptions, CreateSandboxOptions, CreateSandboxPoolResponse, CreateSandboxResponse, CreateSnapshotResponse, type CreateTunnelOptions, DaemonInfo, Desktop, type DesktopDoubleClickOptions, type DesktopPointerOptions, HealthResponse, ListDirectoryResponse, type MouseButton, type NewSecret, OutputEvent, OutputResponse, PoolInUseError, PoolNotFoundError, ProcessInfo, Pty, type PtyConnectionOptions, type PtyDataHandler, type PtyExitHandler, PtySessionInfo, RemoteAPIError, type RequestErrorInfo, RequestExecutionError, RequestFailedError, type RequestInput, type RequestMetadata, RequestNotFinishedError, type RequestOutput, RunOptions, Sandbox, SandboxClient, SandboxClientOptions, SandboxConnectionError, SandboxError, SandboxException, SandboxInfo, SandboxNotFoundError, SandboxOptions, SandboxPoolInfo, SandboxPortAccess, type Secret, type SecretsList, type SecretsPagination, SendSignalResponse, SnapshotAndWaitOptions, SnapshotInfo, SnapshotOptions, type StartImageBuildRequest, StartProcessOptions, TcpTunnel, type TunnelAddress, UpdatePoolOptions, type UpsertSecretResponse };
|