@miosa/sdk 1.2.11 → 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 +165 -62
- package/dist/index.js +605 -503
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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;
|
|
@@ -271,6 +214,9 @@ interface AgentRunCreateParams {
|
|
|
271
214
|
env?: Record<string, string>;
|
|
272
215
|
agentRuntimeProfileId?: string;
|
|
273
216
|
agentProfileId?: string;
|
|
217
|
+
agentRunGroupId?: string;
|
|
218
|
+
parentAgentRunId?: string;
|
|
219
|
+
orchestrationRole?: string;
|
|
274
220
|
skipAgentRuntimeProfile?: boolean;
|
|
275
221
|
metadata?: Record<string, unknown>;
|
|
276
222
|
}
|
|
@@ -279,6 +225,7 @@ interface AgentRunListParams {
|
|
|
279
225
|
targetId?: string;
|
|
280
226
|
sandboxId?: string;
|
|
281
227
|
computerId?: string;
|
|
228
|
+
agentRunGroupId?: string;
|
|
282
229
|
status?: AgentRunStatus | string;
|
|
283
230
|
}
|
|
284
231
|
declare class AgentRuns {
|
|
@@ -294,6 +241,160 @@ declare class AgentRuns {
|
|
|
294
241
|
cancel(id: string): Promise<AgentRun>;
|
|
295
242
|
}
|
|
296
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
|
+
|
|
338
|
+
type AgentRuntime = "osa" | "codex" | "claude" | "claude-code" | "pi" | "hermes" | "custom";
|
|
339
|
+
interface AgentRuntimeProfile {
|
|
340
|
+
id: string;
|
|
341
|
+
tenant_id?: string;
|
|
342
|
+
tenantId?: string;
|
|
343
|
+
workspace_id?: string | null;
|
|
344
|
+
workspaceId?: string | null;
|
|
345
|
+
project_id?: string | null;
|
|
346
|
+
projectId?: string | null;
|
|
347
|
+
name: string;
|
|
348
|
+
runtime: AgentRuntime | string;
|
|
349
|
+
description?: string | null;
|
|
350
|
+
applies_to?: Record<string, unknown>;
|
|
351
|
+
appliesTo?: Record<string, unknown>;
|
|
352
|
+
tools?: string[];
|
|
353
|
+
connectors?: string[];
|
|
354
|
+
env?: Record<string, string>;
|
|
355
|
+
policy?: Record<string, unknown>;
|
|
356
|
+
metadata?: Record<string, unknown>;
|
|
357
|
+
is_default?: boolean;
|
|
358
|
+
isDefault?: boolean;
|
|
359
|
+
created_at?: string;
|
|
360
|
+
createdAt?: string;
|
|
361
|
+
updated_at?: string;
|
|
362
|
+
updatedAt?: string;
|
|
363
|
+
}
|
|
364
|
+
interface AgentRuntimeProfileParams {
|
|
365
|
+
workspaceId?: string;
|
|
366
|
+
workspace_id?: string;
|
|
367
|
+
projectId?: string;
|
|
368
|
+
project_id?: string;
|
|
369
|
+
name: string;
|
|
370
|
+
runtime: AgentRuntime | string;
|
|
371
|
+
description?: string;
|
|
372
|
+
appliesTo?: Record<string, unknown>;
|
|
373
|
+
applies_to?: Record<string, unknown>;
|
|
374
|
+
tools?: string[];
|
|
375
|
+
connectors?: string[];
|
|
376
|
+
env?: Record<string, string>;
|
|
377
|
+
policy?: Record<string, unknown>;
|
|
378
|
+
metadata?: Record<string, unknown>;
|
|
379
|
+
isDefault?: boolean;
|
|
380
|
+
is_default?: boolean;
|
|
381
|
+
}
|
|
382
|
+
type AgentRuntimeProfileUpdateParams = Partial<AgentRuntimeProfileParams>;
|
|
383
|
+
declare class AgentRuntimeProfiles {
|
|
384
|
+
private readonly http;
|
|
385
|
+
constructor(http: HttpClient);
|
|
386
|
+
list(params?: {
|
|
387
|
+
workspaceId?: string;
|
|
388
|
+
workspace_id?: string;
|
|
389
|
+
projectId?: string;
|
|
390
|
+
project_id?: string;
|
|
391
|
+
}): Promise<AgentRuntimeProfile[]>;
|
|
392
|
+
get(id: string): Promise<AgentRuntimeProfile>;
|
|
393
|
+
create(params: AgentRuntimeProfileParams): Promise<AgentRuntimeProfile>;
|
|
394
|
+
update(id: string, params: AgentRuntimeProfileUpdateParams): Promise<AgentRuntimeProfile>;
|
|
395
|
+
delete(id: string): Promise<void>;
|
|
396
|
+
}
|
|
397
|
+
|
|
297
398
|
/**
|
|
298
399
|
* Analytics — overview + timeseries (admin scope).
|
|
299
400
|
*/
|
|
@@ -4592,7 +4693,7 @@ declare class Regions {
|
|
|
4592
4693
|
}
|
|
4593
4694
|
|
|
4594
4695
|
type RuntimeEnvScope = "tenant" | "workspace" | "project";
|
|
4595
|
-
type RuntimeEnvTarget = "all" | "sandbox" | "computer" | "agent";
|
|
4696
|
+
type RuntimeEnvTarget = "all" | "sandbox" | "computer" | "agent" | "deployment";
|
|
4596
4697
|
interface RuntimeEnvVar {
|
|
4597
4698
|
id: string;
|
|
4598
4699
|
tenant_id?: string;
|
|
@@ -6091,6 +6192,8 @@ declare class Miosa {
|
|
|
6091
6192
|
readonly mcp: Mcp;
|
|
6092
6193
|
/** Agent Runs — prompt dispatch into sandbox targets. */
|
|
6093
6194
|
readonly agentRuns: AgentRuns;
|
|
6195
|
+
/** Agent Run Groups — durable multi-agent orchestration groups. */
|
|
6196
|
+
readonly agentRunGroups: AgentRunGroups;
|
|
6094
6197
|
/** Agent runtime profiles — tenant/workspace defaults for sandbox/computer agents. */
|
|
6095
6198
|
readonly agentRuntimeProfiles: AgentRuntimeProfiles;
|
|
6096
6199
|
/** Inherited runtime env — tenant/workspace/project defaults for agent runtimes. */
|
|
@@ -6304,4 +6407,4 @@ declare class NetworkError extends MiosaError {
|
|
|
6304
6407
|
constructor(message: string, cause: Error);
|
|
6305
6408
|
}
|
|
6306
6409
|
|
|
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 };
|
|
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 };
|