@miosa/sdk 1.2.10 → 1.2.12
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 +175 -56
- package/dist/index.js +621 -502
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -164,6 +164,177 @@ declare class Admin {
|
|
|
164
164
|
}>;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
+
type AgentRunTargetKind = "sandbox" | "computer";
|
|
168
|
+
type AgentRunStatus = "running" | "succeeded" | "failed" | "canceled";
|
|
169
|
+
interface AgentRun {
|
|
170
|
+
id: string;
|
|
171
|
+
agent_run_group_id?: string;
|
|
172
|
+
parent_agent_run_id?: string;
|
|
173
|
+
orchestration_role?: string;
|
|
174
|
+
target_kind: AgentRunTargetKind;
|
|
175
|
+
target_id: string;
|
|
176
|
+
provider: string;
|
|
177
|
+
prompt: string;
|
|
178
|
+
status: AgentRunStatus;
|
|
179
|
+
output?: string;
|
|
180
|
+
stderr?: string;
|
|
181
|
+
exit_code?: number;
|
|
182
|
+
metadata?: Record<string, unknown>;
|
|
183
|
+
started_at?: string;
|
|
184
|
+
finished_at?: string;
|
|
185
|
+
created_at?: string;
|
|
186
|
+
updated_at?: string;
|
|
187
|
+
[key: string]: unknown;
|
|
188
|
+
}
|
|
189
|
+
interface AgentRunArtifact {
|
|
190
|
+
id: string;
|
|
191
|
+
agent_run_id?: string;
|
|
192
|
+
target_kind?: AgentRunTargetKind;
|
|
193
|
+
target_id?: string;
|
|
194
|
+
path: string;
|
|
195
|
+
kind?: string;
|
|
196
|
+
mime_type?: string;
|
|
197
|
+
size_bytes?: number;
|
|
198
|
+
created_at?: string;
|
|
199
|
+
[key: string]: unknown;
|
|
200
|
+
}
|
|
201
|
+
interface AgentRunCreateParams {
|
|
202
|
+
prompt: string;
|
|
203
|
+
targetKind?: AgentRunTargetKind;
|
|
204
|
+
targetId?: string;
|
|
205
|
+
sandboxId?: string;
|
|
206
|
+
/** Shortcut for a computer-backed Agent Run. */
|
|
207
|
+
computerId?: string;
|
|
208
|
+
provider?: string;
|
|
209
|
+
model?: string;
|
|
210
|
+
command?: string;
|
|
211
|
+
runtimeCommand?: string;
|
|
212
|
+
cwd?: string;
|
|
213
|
+
timeout?: number;
|
|
214
|
+
env?: Record<string, string>;
|
|
215
|
+
agentRuntimeProfileId?: string;
|
|
216
|
+
agentProfileId?: string;
|
|
217
|
+
agentRunGroupId?: string;
|
|
218
|
+
parentAgentRunId?: string;
|
|
219
|
+
orchestrationRole?: string;
|
|
220
|
+
skipAgentRuntimeProfile?: boolean;
|
|
221
|
+
metadata?: Record<string, unknown>;
|
|
222
|
+
}
|
|
223
|
+
interface AgentRunListParams {
|
|
224
|
+
targetKind?: AgentRunTargetKind;
|
|
225
|
+
targetId?: string;
|
|
226
|
+
sandboxId?: string;
|
|
227
|
+
computerId?: string;
|
|
228
|
+
agentRunGroupId?: string;
|
|
229
|
+
status?: AgentRunStatus | string;
|
|
230
|
+
}
|
|
231
|
+
declare class AgentRuns {
|
|
232
|
+
private readonly http;
|
|
233
|
+
constructor(http: HttpClient);
|
|
234
|
+
list(params?: AgentRunListParams): Promise<AgentRun[]>;
|
|
235
|
+
get(id: string): Promise<AgentRun>;
|
|
236
|
+
artifacts(id: string): Promise<AgentRunArtifact[]>;
|
|
237
|
+
downloadArtifact(id: string, artifactId: string, options?: {
|
|
238
|
+
inline?: boolean;
|
|
239
|
+
}): Promise<Uint8Array>;
|
|
240
|
+
run(params: AgentRunCreateParams): Promise<AgentRun>;
|
|
241
|
+
cancel(id: string): Promise<AgentRun>;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
type AgentRunGroupStatus = "running" | "succeeded" | "failed" | "canceled";
|
|
245
|
+
interface AgentRunGroupCounts {
|
|
246
|
+
total: number;
|
|
247
|
+
running: number;
|
|
248
|
+
succeeded: number;
|
|
249
|
+
failed: number;
|
|
250
|
+
canceled: number;
|
|
251
|
+
}
|
|
252
|
+
interface AgentRunGroupEntryCounts extends AgentRunGroupCounts {
|
|
253
|
+
queued: number;
|
|
254
|
+
}
|
|
255
|
+
type AgentRunGroupEntryStatus = "queued" | "running" | "succeeded" | "failed" | "canceled";
|
|
256
|
+
interface AgentRunGroupEntry {
|
|
257
|
+
id: string;
|
|
258
|
+
agent_run_group_id: string;
|
|
259
|
+
agent_run_id?: string;
|
|
260
|
+
index: number;
|
|
261
|
+
status: AgentRunGroupEntryStatus;
|
|
262
|
+
attempts?: number;
|
|
263
|
+
error?: Record<string, unknown>;
|
|
264
|
+
queued_at?: string;
|
|
265
|
+
claimed_at?: string;
|
|
266
|
+
finished_at?: string;
|
|
267
|
+
updated_at?: string;
|
|
268
|
+
}
|
|
269
|
+
interface AgentRunGroup {
|
|
270
|
+
id: string;
|
|
271
|
+
tenant_id?: string;
|
|
272
|
+
user_id?: string;
|
|
273
|
+
workspace_id?: string;
|
|
274
|
+
project_id?: string;
|
|
275
|
+
name: string;
|
|
276
|
+
description?: string;
|
|
277
|
+
status: AgentRunGroupStatus;
|
|
278
|
+
concurrency_limit?: number;
|
|
279
|
+
expected_runs?: number;
|
|
280
|
+
counts?: AgentRunGroupCounts;
|
|
281
|
+
entry_counts?: AgentRunGroupEntryCounts;
|
|
282
|
+
metadata?: Record<string, unknown>;
|
|
283
|
+
started_at?: string;
|
|
284
|
+
finished_at?: string;
|
|
285
|
+
created_at?: string;
|
|
286
|
+
updated_at?: string;
|
|
287
|
+
runs?: AgentRun[];
|
|
288
|
+
[key: string]: unknown;
|
|
289
|
+
}
|
|
290
|
+
interface AgentRunGroupCreateParams {
|
|
291
|
+
name: string;
|
|
292
|
+
description?: string;
|
|
293
|
+
workspaceId?: string;
|
|
294
|
+
projectId?: string;
|
|
295
|
+
concurrencyLimit?: number;
|
|
296
|
+
expectedRuns?: number;
|
|
297
|
+
metadata?: Record<string, unknown>;
|
|
298
|
+
}
|
|
299
|
+
interface AgentRunGroupListParams {
|
|
300
|
+
workspaceId?: string;
|
|
301
|
+
projectId?: string;
|
|
302
|
+
status?: AgentRunGroupStatus | string;
|
|
303
|
+
limit?: number;
|
|
304
|
+
}
|
|
305
|
+
type AgentRunGroupDispatchEntry = AgentRunCreateParams & {
|
|
306
|
+
targetId?: string;
|
|
307
|
+
sandboxId?: string;
|
|
308
|
+
computerId?: string;
|
|
309
|
+
};
|
|
310
|
+
interface AgentRunGroupDispatchResult {
|
|
311
|
+
group: AgentRunGroup;
|
|
312
|
+
results?: Array<{
|
|
313
|
+
index: number;
|
|
314
|
+
ok: true;
|
|
315
|
+
run: AgentRun;
|
|
316
|
+
} | {
|
|
317
|
+
index: number;
|
|
318
|
+
ok: false;
|
|
319
|
+
error: Record<string, unknown>;
|
|
320
|
+
}>;
|
|
321
|
+
entries?: AgentRunGroupEntry[];
|
|
322
|
+
}
|
|
323
|
+
interface AgentRunGroupDispatchOptions {
|
|
324
|
+
async?: boolean;
|
|
325
|
+
}
|
|
326
|
+
declare class AgentRunGroups {
|
|
327
|
+
private readonly http;
|
|
328
|
+
constructor(http: HttpClient);
|
|
329
|
+
list(params?: AgentRunGroupListParams): Promise<AgentRunGroup[]>;
|
|
330
|
+
create(params: AgentRunGroupCreateParams): Promise<AgentRunGroup>;
|
|
331
|
+
get(id: string, options?: {
|
|
332
|
+
includeRuns?: boolean;
|
|
333
|
+
}): Promise<AgentRunGroup>;
|
|
334
|
+
dispatch(id: string, runs: AgentRunGroupDispatchEntry[], options?: AgentRunGroupDispatchOptions): Promise<AgentRunGroupDispatchResult>;
|
|
335
|
+
cancel(id: string): Promise<AgentRunGroup>;
|
|
336
|
+
}
|
|
337
|
+
|
|
167
338
|
type AgentRuntime = "osa" | "codex" | "claude" | "claude-code" | "pi" | "hermes" | "custom";
|
|
168
339
|
interface AgentRuntimeProfile {
|
|
169
340
|
id: string;
|
|
@@ -224,60 +395,6 @@ declare class AgentRuntimeProfiles {
|
|
|
224
395
|
delete(id: string): Promise<void>;
|
|
225
396
|
}
|
|
226
397
|
|
|
227
|
-
type AgentRunTargetKind = "sandbox" | "computer";
|
|
228
|
-
type AgentRunStatus = "running" | "succeeded" | "failed" | "canceled";
|
|
229
|
-
interface AgentRun {
|
|
230
|
-
id: string;
|
|
231
|
-
target_kind: AgentRunTargetKind;
|
|
232
|
-
target_id: string;
|
|
233
|
-
provider: string;
|
|
234
|
-
prompt: string;
|
|
235
|
-
status: AgentRunStatus;
|
|
236
|
-
output?: string;
|
|
237
|
-
stderr?: string;
|
|
238
|
-
exit_code?: number;
|
|
239
|
-
metadata?: Record<string, unknown>;
|
|
240
|
-
started_at?: string;
|
|
241
|
-
finished_at?: string;
|
|
242
|
-
created_at?: string;
|
|
243
|
-
updated_at?: string;
|
|
244
|
-
[key: string]: unknown;
|
|
245
|
-
}
|
|
246
|
-
interface AgentRunCreateParams {
|
|
247
|
-
prompt: string;
|
|
248
|
-
targetKind?: AgentRunTargetKind;
|
|
249
|
-
targetId?: string;
|
|
250
|
-
sandboxId?: string;
|
|
251
|
-
/** Shortcut for a computer-backed Agent Run. */
|
|
252
|
-
computerId?: string;
|
|
253
|
-
provider?: string;
|
|
254
|
-
model?: string;
|
|
255
|
-
command?: string;
|
|
256
|
-
runtimeCommand?: string;
|
|
257
|
-
cwd?: string;
|
|
258
|
-
timeout?: number;
|
|
259
|
-
env?: Record<string, string>;
|
|
260
|
-
agentRuntimeProfileId?: string;
|
|
261
|
-
agentProfileId?: string;
|
|
262
|
-
skipAgentRuntimeProfile?: boolean;
|
|
263
|
-
metadata?: Record<string, unknown>;
|
|
264
|
-
}
|
|
265
|
-
interface AgentRunListParams {
|
|
266
|
-
targetKind?: AgentRunTargetKind;
|
|
267
|
-
targetId?: string;
|
|
268
|
-
sandboxId?: string;
|
|
269
|
-
computerId?: string;
|
|
270
|
-
status?: AgentRunStatus | string;
|
|
271
|
-
}
|
|
272
|
-
declare class AgentRuns {
|
|
273
|
-
private readonly http;
|
|
274
|
-
constructor(http: HttpClient);
|
|
275
|
-
list(params?: AgentRunListParams): Promise<AgentRun[]>;
|
|
276
|
-
get(id: string): Promise<AgentRun>;
|
|
277
|
-
run(params: AgentRunCreateParams): Promise<AgentRun>;
|
|
278
|
-
cancel(id: string): Promise<AgentRun>;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
398
|
/**
|
|
282
399
|
* Analytics — overview + timeseries (admin scope).
|
|
283
400
|
*/
|
|
@@ -4576,7 +4693,7 @@ declare class Regions {
|
|
|
4576
4693
|
}
|
|
4577
4694
|
|
|
4578
4695
|
type RuntimeEnvScope = "tenant" | "workspace" | "project";
|
|
4579
|
-
type RuntimeEnvTarget = "all" | "sandbox" | "computer" | "agent";
|
|
4696
|
+
type RuntimeEnvTarget = "all" | "sandbox" | "computer" | "agent" | "deployment";
|
|
4580
4697
|
interface RuntimeEnvVar {
|
|
4581
4698
|
id: string;
|
|
4582
4699
|
tenant_id?: string;
|
|
@@ -6075,6 +6192,8 @@ declare class Miosa {
|
|
|
6075
6192
|
readonly mcp: Mcp;
|
|
6076
6193
|
/** Agent Runs — prompt dispatch into sandbox targets. */
|
|
6077
6194
|
readonly agentRuns: AgentRuns;
|
|
6195
|
+
/** Agent Run Groups — durable multi-agent orchestration groups. */
|
|
6196
|
+
readonly agentRunGroups: AgentRunGroups;
|
|
6078
6197
|
/** Agent runtime profiles — tenant/workspace defaults for sandbox/computer agents. */
|
|
6079
6198
|
readonly agentRuntimeProfiles: AgentRuntimeProfiles;
|
|
6080
6199
|
/** Inherited runtime env — tenant/workspace/project defaults for agent runtimes. */
|
|
@@ -6288,4 +6407,4 @@ declare class NetworkError extends MiosaError {
|
|
|
6288
6407
|
constructor(message: string, cause: Error);
|
|
6289
6408
|
}
|
|
6290
6409
|
|
|
6291
|
-
export { type AcceptOrgInviteResponse, type AcceptWorkspaceInviteResponse, type AddDomainParams, type AddWorkspaceMemberParams, Admin, type AgentDispatchParams, type AgentEvent$1 as AgentEvent, type AgentEventType, type AgentRun, type AgentRunCreateParams, type AgentRunListParams, type AgentRunStatus, type AgentRunTargetKind, AgentRuns, AgentRuntimeProfiles, type AgentSessionCreateParams, type AgentSessionData, type AgentSessionListResponse$1 as AgentSessionListResponse, type AgentSessionStatus$1 as AgentSessionStatus, type AllowParams, Analytics, type AnalyticsFilters, type ApiKeyCreateParams, type ApiKeyCreateResult, type ApiKeyData, type ApiKeyId, type ApiKeyListParams, ApiKeys, AppAuth, type AppAuthConfig, type AppAuthResourceType, type AppAuthSession, type AppAuthTokenPayload, type AppCatalogEntry, type AppInstallData, type AppInstallEvent, type AuditListParams, AuditLog, type AuditLogEvent, type AuditLogListParams, type AuditTailParams, AuthError, type AuthToken, type BenchmarkCompareParams, type BenchmarkCreateParams, Benchmarks, type BindingCreateParams, type BindingListParams, type BrandingData, type BrandingUpdateParams, type BucketCreateParams, type BucketData, type BucketId, type BuilderSessionListParams, BuilderSessions, type BulkUserActionParams, type ChannelCreateParams, type ChannelData, type ChannelListParams, type ChannelUpdateParams, Channels, type ChatCompletionCreateParams, type ChatCompletionCreateStreamParams, Checkpoints, type ClickParams, type ClusterCreateParams, type ClusterData, type ClusterEvent, type ClusterId, type ClusterListResponse, type ClusterStatus, CommandCenter, Community, type CompletionCreateParams, type CompletionCreateStreamParams, Completions, Computer, ComputerAudit, ComputerAutoStop, type ComputerCreateParams, type ComputerData, ComputerEnv, type ComputerId, ComputerInbox, type ComputerListParams, type ComputerListResponse, ComputerLogs, type ComputerLogsGetParams, ComputerNetwork, ComputerOsa, ComputerPorts, ComputerSecrets, type ComputerSize, type ComputerStatus, type ComputerTemplateType, ComputerTerminal, type ComputerUpdateParams, type ComputerVisibility, ComputerVolumes, Computers, type CopyParams, type CreateAdminApiKeyParams, type CreateOrgInviteParams, type CreateWorkspaceInviteParams, type CreateWorkspaceInviteResponse, type CreditBalance, type CreditTransaction, type CreditTransactionListResponse, type CreditUsage, Credits, type CronJobCreateParams, type CronJobData, type CronJobExecutionData, type CronJobExecutionId, type CronJobId, type CronJobListParams, type CronJobUpdateParams, CronJobs, type CursorInfo, type CustomDomainCreateParams, type CustomDomainData, type CustomDomainId, type CustomDomainListParams, Dashboard, type DashboardSummary, type DatabaseCreateParams, type DatabaseCredentials, type DatabaseData, type DatabaseId, type DatabaseListParams, type DatabaseLogsParams, type DatabaseLogsResult, Databases, type DeploymentBuildData, type DeploymentCreateParams, type DeploymentData, DeploymentDomains, type DeploymentId, type DeploymentListParams, type DeploymentProduct, type DeploymentReleaseData, type DeploymentReleaseId, DeploymentReleases, DeploymentRuntimeInstances, type DeploymentServiceData, type DeploymentServiceId, type DeploymentServiceType, type DeploymentSourceType, type DeploymentState, type DeploymentUpdateParams, type DeploymentVersionData, type DeploymentVersionId, type DeploymentVersionKind, type DeploymentVersionState, DeploymentVersions, Deployments, Desktop$1 as Desktop, type DesktopActionResult, type DirEntry, type DirListResult, type DiscordSendTestParams, DockerDeploy, type DockerDeployApplianceStatus, type DockerDeployCreateParams, type DockerDeployDoctorCheck, type DockerDeployDoctorParams, type DockerDeployDoctorProbe, type DockerDeployDoctorResult, type DockerDeployHostData, type DockerDeployHostEnsureParams, type DockerDeployHostId, type DockerDeployHostListParams, type DockerDeployHostListResponse, type DockerDeployHostResponse, type DockerDeployHostStatus, type DoubleClickParams, type DragParams, type EgressAllowlistRule, EgressAudit, type EgressAuditEvent, type EgressBindingData, EgressNetwork, type EgressPolicyData, type EgressPolicyMode, type EgressRuleEffect, type EgressSecretData, type EgressSecretScope, type EgressSecretType, EgressSecrets, type EgressSuggestion, Email, EmailCampaigns, EmailInbox, EmailTemplates, type EmbeddingCreateParams, Embeddings, Exec, type ExecParams, type ExecPythonParams, type ExecResult, type ExternalAttribution, type ExternalKeyCreateParams, type ExternalKeyData, ExternalKeys, type FileDeleteParams, type FileDownloadParams, type FileEntry, type FileExportParams, type FileExportResult, type FileListParams, type FileListResult, type FileStat, Files, FlatCustomDomains, type FsEntry, type FsListResponse, type FsStat, type FunctionCreateParams, type FunctionData, type FunctionId, type FunctionInvokeParams, type FunctionListParams, type FunctionUpdateParams, Functions, type GithubRepo, type GithubSshKey, type HealthCheckCreateParams, type HealthCheckData, type HealthCheckId, type HealthCheckListParams, type HealthCheckUpdateParams, HealthChecks, type HostCreateParams, type HostData, type HostEvent, type HostId, type HostListResponse, type HostStatus, type HostUpdateParams, InsufficientCreditsError, type IntegrationCatalogEntry, type IntegrationData, Integrations, type JobData, type JobEvent, type JobEventType, type JobId, type JobListResponse, type JobRunParams, type JobStatus, type KeyParams, type LaunchParams, type LinearCreateIssueParams, type ListAdminApiKeysParams, type ListAdminComputersParams, type ListAdminTenantsParams, type ListAdminUsersParams, Mcp, type McpDispatchParams, Miosa, type MiosaClientConfig, MiosaError, type MkdirParams, type ModeParams, Models, type MouseButton, NetworkError, NetworkPolicy, type NetworkPolicyData, type NetworkPolicyEffect, type NetworkPolicyProtocol, type NetworkPolicyRule, type NetworkPolicySetParams, NotFoundError, type NotificationPrefsUpdateParams, OAuthFlow, type OauthConnectParams, type OauthProvider, type OauthStartResult, type OauthStatusResult, type ObjectListParams, type AgentEvent as OcAgentEvent, type OcAgentSessionData, type AgentSessionListResponse as OcAgentSessionListResponse, type OcWorkspaceCreateParams, type OcWorkspaceData, type OcWorkspaceEvent, type OcWorkspaceListResponse, type OcWorkspaceStatus, type OcWorkspaceUpdateParams, OpenComputers, type OrgInvite, type OrgInviteCreated, type OrgInviteCreatedResponse, type OrgInviteListResponse, type OrgInvitePreview, type OrgInviteRevokeResponse, OrgInvites, type OrgRole, type OverviewData, type PolicyCreateParams, type PolicyListParams, type PolicyUpdateParams, type PresignParams, type PresignResult, type PreviewDomainData, ProjectAuth, type ProjectAuthEnableParams, type ProjectAuthStatus, type ProjectAuthUpdateParams, type ProjectIntegrationCatalogEntry, type ProjectIntegrationCreateParams, type ProjectIntegrationData, type ProjectIntegrationListParams, type ProjectIntegrationUpdateParams, ProjectIntegrations, ProviderDefaults, type ProviderKeyUpsertParams, type PublishFromSandboxParams, type PublishParams, type PublishResult, RateLimitError, type RegionData, Regions, type RollbackParams, type RulesListParams, RuntimeEnv, type RuntimeEnvListParams, type RuntimeEnvScope, type RuntimeEnvSetParams, type RuntimeEnvTarget, type RuntimeEnvVar, type RuntimeInstanceData, type RuntimeInstanceId, type RuntimeInstanceState, type RuntimeLogsResult, SANDBOX_TEMPLATE, Sandbox, SandboxArtifacts, SandboxAudit, type SandboxBuildSpec, type SandboxBuildSpecError, type SandboxBuildSpecValidation, SandboxCommands, type SandboxCreateParams, type SandboxData, SandboxEnv, SandboxEvents, type SandboxExecOptions, type SandboxExecResult, SandboxFiles, type SandboxGetOrCreateParams, type SandboxId, type SandboxListParams, SandboxNetwork, SandboxPreview, SandboxPreviews, SandboxSecrets, type SandboxState, SandboxTags, type SandboxTemplate, type SandboxTemplateBuild, type SandboxTemplateBuildCreateParams, type SandboxTemplateBuildResourceData, type SandboxTemplateBuildResourceId, type SandboxTemplateCreateParams, type SandboxTemplateList, type SandboxTemplateListParams, type SandboxTemplateResourceData, type SandboxTemplateResourceId, SandboxTemplates, SandboxTerminal, Sandboxes, ScopedFs, type ScrollDirection, type ScrollParams, type SecretCreateParams, type SecretData, type SecretId, type SecretListParams, type SecretRotateParams, type SecretSetParams, type SecretUpdateParams, type SessionId, Settings, type SettingsUpdateParams, type SizeData, type SlackSendTestParams, type SnapshotCreateParams, type SnapshotData, type SnapshotListResponse, type SnapshotProgressEvent, type SnapshotRestoreResult, type SnapshotStatus, SnapshotsStandalone, Storage, type StorageObjectData, type SuggestionsParams, type TemplateBuildCreateParams, type TemplateCreateParams, type TemplateData, Tenant, type TenantBrandingUpdateParams, type TenantId, type TenantPlan, type TenantSummary, type TerminalCreateParams, TimeoutError, type TimeseriesParams, type TunnelAuthMode, type TunnelCreateParams, type TunnelData, type TunnelId, type TunnelListResponse, type TunnelUpdateParams, type TypeParams, type UpdateWorkspaceMemberRoleParams, Usage, type UsageReportParams, type UsageSession, type UsageSessionsParams, type UsageSummary, type UserId, ValidationError, type VersionListParams, type VolumeCreateParams, type VolumeData, type VolumeId, type VolumeListParams, Volumes, type WaitParams, type WebhookCreateParams, type WebhookData, type WebhookDeliveryData, type WebhookDeliveryId, type WebhookId, type WebhookListParams, type WebhookUpdateParams, Webhooks, type WindowFocusParams, type WindowInfo, type WorkspaceId, type WorkspaceInvite, type WorkspaceInviteCreatedResponse, type WorkspaceInviteListResponse, type WorkspaceInvitePreview, type WorkspaceInviteRevokeResponse, WorkspaceInvites, type WorkspaceMember, type WorkspaceMemberAddedResponse, type WorkspaceMemberDeleteResponse, type WorkspaceMemberListResponse, type WorkspaceMemberRecord, type WorkspaceMemberRecordResponse, WorkspaceMembers, type WorkspaceRole, type WsTicket, verifySignature };
|
|
6410
|
+
export { type AcceptOrgInviteResponse, type AcceptWorkspaceInviteResponse, type AddDomainParams, type AddWorkspaceMemberParams, Admin, type AgentDispatchParams, type AgentEvent$1 as AgentEvent, type AgentEventType, type AgentRun, type AgentRunCreateParams, type AgentRunGroup, type AgentRunGroupCounts, type AgentRunGroupCreateParams, type AgentRunGroupDispatchEntry, type AgentRunGroupDispatchResult, type AgentRunGroupListParams, type AgentRunGroupStatus, AgentRunGroups, type AgentRunListParams, type AgentRunStatus, type AgentRunTargetKind, AgentRuns, AgentRuntimeProfiles, type AgentSessionCreateParams, type AgentSessionData, type AgentSessionListResponse$1 as AgentSessionListResponse, type AgentSessionStatus$1 as AgentSessionStatus, type AllowParams, Analytics, type AnalyticsFilters, type ApiKeyCreateParams, type ApiKeyCreateResult, type ApiKeyData, type ApiKeyId, type ApiKeyListParams, ApiKeys, AppAuth, type AppAuthConfig, type AppAuthResourceType, type AppAuthSession, type AppAuthTokenPayload, type AppCatalogEntry, type AppInstallData, type AppInstallEvent, type AuditListParams, AuditLog, type AuditLogEvent, type AuditLogListParams, type AuditTailParams, AuthError, type AuthToken, type BenchmarkCompareParams, type BenchmarkCreateParams, Benchmarks, type BindingCreateParams, type BindingListParams, type BrandingData, type BrandingUpdateParams, type BucketCreateParams, type BucketData, type BucketId, type BuilderSessionListParams, BuilderSessions, type BulkUserActionParams, type ChannelCreateParams, type ChannelData, type ChannelListParams, type ChannelUpdateParams, Channels, type ChatCompletionCreateParams, type ChatCompletionCreateStreamParams, Checkpoints, type ClickParams, type ClusterCreateParams, type ClusterData, type ClusterEvent, type ClusterId, type ClusterListResponse, type ClusterStatus, CommandCenter, Community, type CompletionCreateParams, type CompletionCreateStreamParams, Completions, Computer, ComputerAudit, ComputerAutoStop, type ComputerCreateParams, type ComputerData, ComputerEnv, type ComputerId, ComputerInbox, type ComputerListParams, type ComputerListResponse, ComputerLogs, type ComputerLogsGetParams, ComputerNetwork, ComputerOsa, ComputerPorts, ComputerSecrets, type ComputerSize, type ComputerStatus, type ComputerTemplateType, ComputerTerminal, type ComputerUpdateParams, type ComputerVisibility, ComputerVolumes, Computers, type CopyParams, type CreateAdminApiKeyParams, type CreateOrgInviteParams, type CreateWorkspaceInviteParams, type CreateWorkspaceInviteResponse, type CreditBalance, type CreditTransaction, type CreditTransactionListResponse, type CreditUsage, Credits, type CronJobCreateParams, type CronJobData, type CronJobExecutionData, type CronJobExecutionId, type CronJobId, type CronJobListParams, type CronJobUpdateParams, CronJobs, type CursorInfo, type CustomDomainCreateParams, type CustomDomainData, type CustomDomainId, type CustomDomainListParams, Dashboard, type DashboardSummary, type DatabaseCreateParams, type DatabaseCredentials, type DatabaseData, type DatabaseId, type DatabaseListParams, type DatabaseLogsParams, type DatabaseLogsResult, Databases, type DeploymentBuildData, type DeploymentCreateParams, type DeploymentData, DeploymentDomains, type DeploymentId, type DeploymentListParams, type DeploymentProduct, type DeploymentReleaseData, type DeploymentReleaseId, DeploymentReleases, DeploymentRuntimeInstances, type DeploymentServiceData, type DeploymentServiceId, type DeploymentServiceType, type DeploymentSourceType, type DeploymentState, type DeploymentUpdateParams, type DeploymentVersionData, type DeploymentVersionId, type DeploymentVersionKind, type DeploymentVersionState, DeploymentVersions, Deployments, Desktop$1 as Desktop, type DesktopActionResult, type DirEntry, type DirListResult, type DiscordSendTestParams, DockerDeploy, type DockerDeployApplianceStatus, type DockerDeployCreateParams, type DockerDeployDoctorCheck, type DockerDeployDoctorParams, type DockerDeployDoctorProbe, type DockerDeployDoctorResult, type DockerDeployHostData, type DockerDeployHostEnsureParams, type DockerDeployHostId, type DockerDeployHostListParams, type DockerDeployHostListResponse, type DockerDeployHostResponse, type DockerDeployHostStatus, type DoubleClickParams, type DragParams, type EgressAllowlistRule, EgressAudit, type EgressAuditEvent, type EgressBindingData, EgressNetwork, type EgressPolicyData, type EgressPolicyMode, type EgressRuleEffect, type EgressSecretData, type EgressSecretScope, type EgressSecretType, EgressSecrets, type EgressSuggestion, Email, EmailCampaigns, EmailInbox, EmailTemplates, type EmbeddingCreateParams, Embeddings, Exec, type ExecParams, type ExecPythonParams, type ExecResult, type ExternalAttribution, type ExternalKeyCreateParams, type ExternalKeyData, ExternalKeys, type FileDeleteParams, type FileDownloadParams, type FileEntry, type FileExportParams, type FileExportResult, type FileListParams, type FileListResult, type FileStat, Files, FlatCustomDomains, type FsEntry, type FsListResponse, type FsStat, type FunctionCreateParams, type FunctionData, type FunctionId, type FunctionInvokeParams, type FunctionListParams, type FunctionUpdateParams, Functions, type GithubRepo, type GithubSshKey, type HealthCheckCreateParams, type HealthCheckData, type HealthCheckId, type HealthCheckListParams, type HealthCheckUpdateParams, HealthChecks, type HostCreateParams, type HostData, type HostEvent, type HostId, type HostListResponse, type HostStatus, type HostUpdateParams, InsufficientCreditsError, type IntegrationCatalogEntry, type IntegrationData, Integrations, type JobData, type JobEvent, type JobEventType, type JobId, type JobListResponse, type JobRunParams, type JobStatus, type KeyParams, type LaunchParams, type LinearCreateIssueParams, type ListAdminApiKeysParams, type ListAdminComputersParams, type ListAdminTenantsParams, type ListAdminUsersParams, Mcp, type McpDispatchParams, Miosa, type MiosaClientConfig, MiosaError, type MkdirParams, type ModeParams, Models, type MouseButton, NetworkError, NetworkPolicy, type NetworkPolicyData, type NetworkPolicyEffect, type NetworkPolicyProtocol, type NetworkPolicyRule, type NetworkPolicySetParams, NotFoundError, type NotificationPrefsUpdateParams, OAuthFlow, type OauthConnectParams, type OauthProvider, type OauthStartResult, type OauthStatusResult, type ObjectListParams, type AgentEvent as OcAgentEvent, type OcAgentSessionData, type AgentSessionListResponse as OcAgentSessionListResponse, type OcWorkspaceCreateParams, type OcWorkspaceData, type OcWorkspaceEvent, type OcWorkspaceListResponse, type OcWorkspaceStatus, type OcWorkspaceUpdateParams, OpenComputers, type OrgInvite, type OrgInviteCreated, type OrgInviteCreatedResponse, type OrgInviteListResponse, type OrgInvitePreview, type OrgInviteRevokeResponse, OrgInvites, type OrgRole, type OverviewData, type PolicyCreateParams, type PolicyListParams, type PolicyUpdateParams, type PresignParams, type PresignResult, type PreviewDomainData, ProjectAuth, type ProjectAuthEnableParams, type ProjectAuthStatus, type ProjectAuthUpdateParams, type ProjectIntegrationCatalogEntry, type ProjectIntegrationCreateParams, type ProjectIntegrationData, type ProjectIntegrationListParams, type ProjectIntegrationUpdateParams, ProjectIntegrations, ProviderDefaults, type ProviderKeyUpsertParams, type PublishFromSandboxParams, type PublishParams, type PublishResult, RateLimitError, type RegionData, Regions, type RollbackParams, type RulesListParams, RuntimeEnv, type RuntimeEnvListParams, type RuntimeEnvScope, type RuntimeEnvSetParams, type RuntimeEnvTarget, type RuntimeEnvVar, type RuntimeInstanceData, type RuntimeInstanceId, type RuntimeInstanceState, type RuntimeLogsResult, SANDBOX_TEMPLATE, Sandbox, SandboxArtifacts, SandboxAudit, type SandboxBuildSpec, type SandboxBuildSpecError, type SandboxBuildSpecValidation, SandboxCommands, type SandboxCreateParams, type SandboxData, SandboxEnv, SandboxEvents, type SandboxExecOptions, type SandboxExecResult, SandboxFiles, type SandboxGetOrCreateParams, type SandboxId, type SandboxListParams, SandboxNetwork, SandboxPreview, SandboxPreviews, SandboxSecrets, type SandboxState, SandboxTags, type SandboxTemplate, type SandboxTemplateBuild, type SandboxTemplateBuildCreateParams, type SandboxTemplateBuildResourceData, type SandboxTemplateBuildResourceId, type SandboxTemplateCreateParams, type SandboxTemplateList, type SandboxTemplateListParams, type SandboxTemplateResourceData, type SandboxTemplateResourceId, SandboxTemplates, SandboxTerminal, Sandboxes, ScopedFs, type ScrollDirection, type ScrollParams, type SecretCreateParams, type SecretData, type SecretId, type SecretListParams, type SecretRotateParams, type SecretSetParams, type SecretUpdateParams, type SessionId, Settings, type SettingsUpdateParams, type SizeData, type SlackSendTestParams, type SnapshotCreateParams, type SnapshotData, type SnapshotListResponse, type SnapshotProgressEvent, type SnapshotRestoreResult, type SnapshotStatus, SnapshotsStandalone, Storage, type StorageObjectData, type SuggestionsParams, type TemplateBuildCreateParams, type TemplateCreateParams, type TemplateData, Tenant, type TenantBrandingUpdateParams, type TenantId, type TenantPlan, type TenantSummary, type TerminalCreateParams, TimeoutError, type TimeseriesParams, type TunnelAuthMode, type TunnelCreateParams, type TunnelData, type TunnelId, type TunnelListResponse, type TunnelUpdateParams, type TypeParams, type UpdateWorkspaceMemberRoleParams, Usage, type UsageReportParams, type UsageSession, type UsageSessionsParams, type UsageSummary, type UserId, ValidationError, type VersionListParams, type VolumeCreateParams, type VolumeData, type VolumeId, type VolumeListParams, Volumes, type WaitParams, type WebhookCreateParams, type WebhookData, type WebhookDeliveryData, type WebhookDeliveryId, type WebhookId, type WebhookListParams, type WebhookUpdateParams, Webhooks, type WindowFocusParams, type WindowInfo, type WorkspaceId, type WorkspaceInvite, type WorkspaceInviteCreatedResponse, type WorkspaceInviteListResponse, type WorkspaceInvitePreview, type WorkspaceInviteRevokeResponse, WorkspaceInvites, type WorkspaceMember, type WorkspaceMemberAddedResponse, type WorkspaceMemberDeleteResponse, type WorkspaceMemberListResponse, type WorkspaceMemberRecord, type WorkspaceMemberRecordResponse, WorkspaceMembers, type WorkspaceRole, type WsTicket, verifySignature };
|