@miosa/sdk 1.2.11 → 1.2.13

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
@@ -164,70 +164,13 @@ declare class Admin {
164
164
  }>;
165
165
  }
166
166
 
167
- type AgentRuntime = "osa" | "codex" | "claude" | "claude-code" | "pi" | "hermes" | "custom";
168
- interface AgentRuntimeProfile {
169
- id: string;
170
- tenant_id?: string;
171
- tenantId?: string;
172
- workspace_id?: string | null;
173
- workspaceId?: string | null;
174
- project_id?: string | null;
175
- projectId?: string | null;
176
- name: string;
177
- runtime: AgentRuntime | string;
178
- description?: string | null;
179
- applies_to?: Record<string, unknown>;
180
- appliesTo?: Record<string, unknown>;
181
- tools?: string[];
182
- connectors?: string[];
183
- env?: Record<string, string>;
184
- policy?: Record<string, unknown>;
185
- metadata?: Record<string, unknown>;
186
- is_default?: boolean;
187
- isDefault?: boolean;
188
- created_at?: string;
189
- createdAt?: string;
190
- updated_at?: string;
191
- updatedAt?: string;
192
- }
193
- interface AgentRuntimeProfileParams {
194
- workspaceId?: string;
195
- workspace_id?: string;
196
- projectId?: string;
197
- project_id?: string;
198
- name: string;
199
- runtime: AgentRuntime | string;
200
- description?: string;
201
- appliesTo?: Record<string, unknown>;
202
- applies_to?: Record<string, unknown>;
203
- tools?: string[];
204
- connectors?: string[];
205
- env?: Record<string, string>;
206
- policy?: Record<string, unknown>;
207
- metadata?: Record<string, unknown>;
208
- isDefault?: boolean;
209
- is_default?: boolean;
210
- }
211
- type AgentRuntimeProfileUpdateParams = Partial<AgentRuntimeProfileParams>;
212
- declare class AgentRuntimeProfiles {
213
- private readonly http;
214
- constructor(http: HttpClient);
215
- list(params?: {
216
- workspaceId?: string;
217
- workspace_id?: string;
218
- projectId?: string;
219
- project_id?: string;
220
- }): Promise<AgentRuntimeProfile[]>;
221
- get(id: string): Promise<AgentRuntimeProfile>;
222
- create(params: AgentRuntimeProfileParams): Promise<AgentRuntimeProfile>;
223
- update(id: string, params: AgentRuntimeProfileUpdateParams): Promise<AgentRuntimeProfile>;
224
- delete(id: string): Promise<void>;
225
- }
226
-
227
167
  type AgentRunTargetKind = "sandbox" | "computer";
228
168
  type AgentRunStatus = "running" | "succeeded" | "failed" | "canceled";
229
169
  interface AgentRun {
230
170
  id: string;
171
+ agent_run_group_id?: string;
172
+ parent_agent_run_id?: string;
173
+ orchestration_role?: string;
231
174
  target_kind: AgentRunTargetKind;
232
175
  target_id: string;
233
176
  provider: string;
@@ -252,7 +195,13 @@ interface AgentRunArtifact {
252
195
  kind?: string;
253
196
  mime_type?: string;
254
197
  size_bytes?: number;
198
+ sha256?: string;
199
+ status?: string;
200
+ persisted?: boolean;
201
+ storage_backend?: string | null;
202
+ persisted_at?: string | null;
255
203
  created_at?: string;
204
+ updated_at?: string;
256
205
  [key: string]: unknown;
257
206
  }
258
207
  interface AgentRunCreateParams {
@@ -271,6 +220,9 @@ interface AgentRunCreateParams {
271
220
  env?: Record<string, string>;
272
221
  agentRuntimeProfileId?: string;
273
222
  agentProfileId?: string;
223
+ agentRunGroupId?: string;
224
+ parentAgentRunId?: string;
225
+ orchestrationRole?: string;
274
226
  skipAgentRuntimeProfile?: boolean;
275
227
  metadata?: Record<string, unknown>;
276
228
  }
@@ -279,6 +231,7 @@ interface AgentRunListParams {
279
231
  targetId?: string;
280
232
  sandboxId?: string;
281
233
  computerId?: string;
234
+ agentRunGroupId?: string;
282
235
  status?: AgentRunStatus | string;
283
236
  }
284
237
  declare class AgentRuns {
@@ -294,6 +247,173 @@ declare class AgentRuns {
294
247
  cancel(id: string): Promise<AgentRun>;
295
248
  }
296
249
 
250
+ type AgentRunGroupStatus = "running" | "succeeded" | "failed" | "canceled";
251
+ interface AgentRunGroupCounts {
252
+ total: number;
253
+ running: number;
254
+ succeeded: number;
255
+ failed: number;
256
+ canceled: number;
257
+ }
258
+ interface AgentRunGroupEntryCounts extends AgentRunGroupCounts {
259
+ queued: number;
260
+ }
261
+ type AgentRunGroupEntryStatus = "queued" | "running" | "succeeded" | "failed" | "canceled";
262
+ interface AgentRunGroupEntry {
263
+ id: string;
264
+ agent_run_group_id: string;
265
+ agent_run_id?: string;
266
+ index: number;
267
+ status: AgentRunGroupEntryStatus;
268
+ attempts?: number;
269
+ error?: Record<string, unknown>;
270
+ queued_at?: string;
271
+ claimed_at?: string;
272
+ finished_at?: string;
273
+ updated_at?: string;
274
+ }
275
+ interface AgentRunGroup {
276
+ id: string;
277
+ tenant_id?: string;
278
+ user_id?: string;
279
+ workspace_id?: string;
280
+ project_id?: string;
281
+ name: string;
282
+ description?: string;
283
+ status: AgentRunGroupStatus;
284
+ concurrency_limit?: number;
285
+ expected_runs?: number;
286
+ counts?: AgentRunGroupCounts;
287
+ entry_counts?: AgentRunGroupEntryCounts;
288
+ metadata?: Record<string, unknown>;
289
+ started_at?: string;
290
+ finished_at?: string;
291
+ created_at?: string;
292
+ updated_at?: string;
293
+ runs?: AgentRun[];
294
+ [key: string]: unknown;
295
+ }
296
+ interface AgentRunGroupCreateParams {
297
+ name: string;
298
+ description?: string;
299
+ workspaceId?: string;
300
+ projectId?: string;
301
+ concurrencyLimit?: number;
302
+ expectedRuns?: number;
303
+ metadata?: Record<string, unknown>;
304
+ }
305
+ interface AgentRunGroupListParams {
306
+ workspaceId?: string;
307
+ projectId?: string;
308
+ status?: AgentRunGroupStatus | string;
309
+ limit?: number;
310
+ }
311
+ type AgentRunGroupDispatchEntry = AgentRunCreateParams & {
312
+ targetId?: string;
313
+ sandboxId?: string;
314
+ computerId?: string;
315
+ };
316
+ interface AgentRunGroupDispatchResult {
317
+ group: AgentRunGroup;
318
+ results?: Array<{
319
+ index: number;
320
+ ok: true;
321
+ run: AgentRun;
322
+ } | {
323
+ index: number;
324
+ ok: false;
325
+ error: Record<string, unknown>;
326
+ }>;
327
+ entries?: AgentRunGroupEntry[];
328
+ }
329
+ interface AgentRunGroupDispatchOptions {
330
+ async?: boolean;
331
+ }
332
+ interface AgentRunGroupEvent {
333
+ id: string;
334
+ agent_run_group_id?: string;
335
+ agent_run_id?: string;
336
+ sequence?: number;
337
+ type: string;
338
+ message?: string | null;
339
+ payload?: Record<string, unknown>;
340
+ created_at?: string | null;
341
+ [key: string]: unknown;
342
+ }
343
+ declare class AgentRunGroups {
344
+ private readonly http;
345
+ constructor(http: HttpClient);
346
+ list(params?: AgentRunGroupListParams): Promise<AgentRunGroup[]>;
347
+ create(params: AgentRunGroupCreateParams): Promise<AgentRunGroup>;
348
+ get(id: string, options?: {
349
+ includeRuns?: boolean;
350
+ }): Promise<AgentRunGroup>;
351
+ dispatch(id: string, runs: AgentRunGroupDispatchEntry[], options?: AgentRunGroupDispatchOptions): Promise<AgentRunGroupDispatchResult>;
352
+ cancel(id: string): Promise<AgentRunGroup>;
353
+ events(id: string): Promise<AgentRunGroupEvent[]>;
354
+ streamEvents(id: string): AsyncIterableIterator<AgentRunGroupEvent>;
355
+ }
356
+
357
+ type AgentRuntime = "osa" | "codex" | "claude" | "claude-code" | "pi" | "hermes" | "custom";
358
+ interface AgentRuntimeProfile {
359
+ id: string;
360
+ tenant_id?: string;
361
+ tenantId?: string;
362
+ workspace_id?: string | null;
363
+ workspaceId?: string | null;
364
+ project_id?: string | null;
365
+ projectId?: string | null;
366
+ name: string;
367
+ runtime: AgentRuntime | string;
368
+ description?: string | null;
369
+ applies_to?: Record<string, unknown>;
370
+ appliesTo?: Record<string, unknown>;
371
+ tools?: string[];
372
+ connectors?: string[];
373
+ env?: Record<string, string>;
374
+ policy?: Record<string, unknown>;
375
+ metadata?: Record<string, unknown>;
376
+ is_default?: boolean;
377
+ isDefault?: boolean;
378
+ created_at?: string;
379
+ createdAt?: string;
380
+ updated_at?: string;
381
+ updatedAt?: string;
382
+ }
383
+ interface AgentRuntimeProfileParams {
384
+ workspaceId?: string;
385
+ workspace_id?: string;
386
+ projectId?: string;
387
+ project_id?: string;
388
+ name: string;
389
+ runtime: AgentRuntime | string;
390
+ description?: string;
391
+ appliesTo?: Record<string, unknown>;
392
+ applies_to?: Record<string, unknown>;
393
+ tools?: string[];
394
+ connectors?: string[];
395
+ env?: Record<string, string>;
396
+ policy?: Record<string, unknown>;
397
+ metadata?: Record<string, unknown>;
398
+ isDefault?: boolean;
399
+ is_default?: boolean;
400
+ }
401
+ type AgentRuntimeProfileUpdateParams = Partial<AgentRuntimeProfileParams>;
402
+ declare class AgentRuntimeProfiles {
403
+ private readonly http;
404
+ constructor(http: HttpClient);
405
+ list(params?: {
406
+ workspaceId?: string;
407
+ workspace_id?: string;
408
+ projectId?: string;
409
+ project_id?: string;
410
+ }): Promise<AgentRuntimeProfile[]>;
411
+ get(id: string): Promise<AgentRuntimeProfile>;
412
+ create(params: AgentRuntimeProfileParams): Promise<AgentRuntimeProfile>;
413
+ update(id: string, params: AgentRuntimeProfileUpdateParams): Promise<AgentRuntimeProfile>;
414
+ delete(id: string): Promise<void>;
415
+ }
416
+
297
417
  /**
298
418
  * Analytics — overview + timeseries (admin scope).
299
419
  */
@@ -4592,7 +4712,7 @@ declare class Regions {
4592
4712
  }
4593
4713
 
4594
4714
  type RuntimeEnvScope = "tenant" | "workspace" | "project";
4595
- type RuntimeEnvTarget = "all" | "sandbox" | "computer" | "agent";
4715
+ type RuntimeEnvTarget = "all" | "sandbox" | "computer" | "agent" | "deployment";
4596
4716
  interface RuntimeEnvVar {
4597
4717
  id: string;
4598
4718
  tenant_id?: string;
@@ -6091,6 +6211,8 @@ declare class Miosa {
6091
6211
  readonly mcp: Mcp;
6092
6212
  /** Agent Runs — prompt dispatch into sandbox targets. */
6093
6213
  readonly agentRuns: AgentRuns;
6214
+ /** Agent Run Groups — durable multi-agent orchestration groups. */
6215
+ readonly agentRunGroups: AgentRunGroups;
6094
6216
  /** Agent runtime profiles — tenant/workspace defaults for sandbox/computer agents. */
6095
6217
  readonly agentRuntimeProfiles: AgentRuntimeProfiles;
6096
6218
  /** Inherited runtime env — tenant/workspace/project defaults for agent runtimes. */
@@ -6304,4 +6426,4 @@ declare class NetworkError extends MiosaError {
6304
6426
  constructor(message: string, cause: Error);
6305
6427
  }
6306
6428
 
6307
- 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 };
6429
+ 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 AgentRunGroupEvent, 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 };