computer-agents 2.3.0 → 2.5.0
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/README.md +61 -18
- package/dist/ComputerAgentsClient.d.ts +63 -41
- package/dist/ComputerAgentsClient.js +84 -44
- package/dist/ComputerAgentsClient.js.map +1 -1
- package/dist/cloud/resources/AgentsResource.d.ts +12 -1
- package/dist/cloud/resources/AgentsResource.js +16 -0
- package/dist/cloud/resources/AgentsResource.js.map +1 -1
- package/dist/cloud/resources/DatabasesResource.d.ts +36 -0
- package/dist/cloud/resources/DatabasesResource.js +68 -0
- package/dist/cloud/resources/DatabasesResource.js.map +1 -0
- package/dist/cloud/resources/EnvironmentsResource.d.ts +110 -0
- package/dist/cloud/resources/EnvironmentsResource.js +75 -0
- package/dist/cloud/resources/EnvironmentsResource.js.map +1 -1
- package/dist/cloud/resources/GitResource.d.ts +60 -2
- package/dist/cloud/resources/GitResource.js +86 -10
- package/dist/cloud/resources/GitResource.js.map +1 -1
- package/dist/cloud/resources/ResourcesResource.d.ts +92 -0
- package/dist/cloud/resources/ResourcesResource.js +151 -0
- package/dist/cloud/resources/ResourcesResource.js.map +1 -0
- package/dist/cloud/resources/SkillsResource.d.ts +17 -0
- package/dist/cloud/resources/SkillsResource.js +36 -0
- package/dist/cloud/resources/SkillsResource.js.map +1 -0
- package/dist/cloud/resources/ThreadsResource.d.ts +78 -0
- package/dist/cloud/resources/ThreadsResource.js +64 -0
- package/dist/cloud/resources/ThreadsResource.js.map +1 -1
- package/dist/cloud/resources/index.d.ts +7 -1
- package/dist/cloud/resources/index.js +9 -3
- package/dist/cloud/resources/index.js.map +1 -1
- package/dist/cloud/types.d.ts +185 -3
- package/dist/index.d.ts +4 -4
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
package/dist/cloud/types.d.ts
CHANGED
|
@@ -144,6 +144,11 @@ export interface Environment {
|
|
|
144
144
|
/** @deprecated Use userId instead */
|
|
145
145
|
projectId?: string;
|
|
146
146
|
}
|
|
147
|
+
/**
|
|
148
|
+
* ACP product surfaces refer to environments as computers.
|
|
149
|
+
* The underlying API still uses `environment` in route names.
|
|
150
|
+
*/
|
|
151
|
+
export type Computer = Environment;
|
|
147
152
|
export interface CreateEnvironmentParams {
|
|
148
153
|
name: string;
|
|
149
154
|
description?: string;
|
|
@@ -171,6 +176,8 @@ export interface UpdateEnvironmentParams {
|
|
|
171
176
|
internetAccess?: boolean;
|
|
172
177
|
isDefault?: boolean;
|
|
173
178
|
}
|
|
179
|
+
export type CreateComputerParams = CreateEnvironmentParams;
|
|
180
|
+
export type UpdateComputerParams = UpdateEnvironmentParams;
|
|
174
181
|
export interface ContainerStatus {
|
|
175
182
|
status: EnvironmentStatus;
|
|
176
183
|
uptime?: number;
|
|
@@ -181,6 +188,11 @@ export interface ContainerStatus {
|
|
|
181
188
|
cpu?: {
|
|
182
189
|
usage: number;
|
|
183
190
|
};
|
|
191
|
+
containerId?: string;
|
|
192
|
+
startedAt?: string;
|
|
193
|
+
lastUsedAt?: string;
|
|
194
|
+
executionCount?: number;
|
|
195
|
+
message?: string;
|
|
184
196
|
}
|
|
185
197
|
export interface BuildResult {
|
|
186
198
|
success: boolean;
|
|
@@ -453,11 +465,13 @@ export interface RunDiff {
|
|
|
453
465
|
additions?: number;
|
|
454
466
|
deletions?: number;
|
|
455
467
|
}
|
|
468
|
+
export type BuiltinAgentModel = 'claude-opus-4-6' | 'claude-sonnet-4-5' | 'claude-haiku-4-5' | 'gemini-3-flash' | 'gemini-3-1-pro';
|
|
469
|
+
export type ExternalAgentModel = `external:${string}`;
|
|
456
470
|
/**
|
|
457
|
-
*
|
|
458
|
-
*
|
|
471
|
+
* Agent model identifiers can refer to built-in managed models or
|
|
472
|
+
* workspace-connected external inference endpoints.
|
|
459
473
|
*/
|
|
460
|
-
export type AgentModel =
|
|
474
|
+
export type AgentModel = BuiltinAgentModel | ExternalAgentModel | (string & {});
|
|
461
475
|
/**
|
|
462
476
|
* Reasoning effort level for extended thinking.
|
|
463
477
|
*/
|
|
@@ -502,10 +516,178 @@ export interface UpdateAgentParams {
|
|
|
502
516
|
description?: string;
|
|
503
517
|
model?: AgentModel;
|
|
504
518
|
instructions?: string;
|
|
519
|
+
binary?: AgentBinary;
|
|
505
520
|
reasoningEffort?: ReasoningEffort;
|
|
506
521
|
enabledSkills?: string[];
|
|
522
|
+
deepResearchModel?: DeepResearchModel;
|
|
507
523
|
metadata?: Record<string, unknown>;
|
|
508
524
|
}
|
|
525
|
+
export interface AgentModelCatalogEntry {
|
|
526
|
+
id: string;
|
|
527
|
+
label?: string;
|
|
528
|
+
description?: string;
|
|
529
|
+
intelligence?: string;
|
|
530
|
+
contextWindow?: string;
|
|
531
|
+
speed?: string;
|
|
532
|
+
source?: 'managed' | 'external' | string;
|
|
533
|
+
providerType?: string | null;
|
|
534
|
+
requiredTier?: string;
|
|
535
|
+
locked?: boolean;
|
|
536
|
+
}
|
|
537
|
+
export interface AgentAnalyticsBucket {
|
|
538
|
+
label: string;
|
|
539
|
+
requestCount: number;
|
|
540
|
+
successCount: number;
|
|
541
|
+
failureCount: number;
|
|
542
|
+
p95RuntimeMs?: number;
|
|
543
|
+
}
|
|
544
|
+
export interface AgentAnalyticsResponse {
|
|
545
|
+
agentId: string;
|
|
546
|
+
summary?: Record<string, unknown>;
|
|
547
|
+
charts?: {
|
|
548
|
+
activity24h?: AgentAnalyticsBucket[];
|
|
549
|
+
[key: string]: unknown;
|
|
550
|
+
};
|
|
551
|
+
}
|
|
552
|
+
export type ResourceKind = 'web_app' | 'function' | 'auth' | 'agent_runtime';
|
|
553
|
+
export type ResourceAuthMode = 'public' | 'private';
|
|
554
|
+
export type ResourceStatus = 'draft' | 'deploying' | 'deployed' | 'failed' | 'inactive';
|
|
555
|
+
export interface Resource {
|
|
556
|
+
id: string;
|
|
557
|
+
userId?: string;
|
|
558
|
+
projectId?: string | null;
|
|
559
|
+
name: string;
|
|
560
|
+
description?: string;
|
|
561
|
+
kind: ResourceKind;
|
|
562
|
+
sourceType?: string | null;
|
|
563
|
+
sourceEnvironmentId?: string | null;
|
|
564
|
+
sourcePath?: string | null;
|
|
565
|
+
region?: string | null;
|
|
566
|
+
runtime?: string | null;
|
|
567
|
+
authMode?: ResourceAuthMode | null;
|
|
568
|
+
serviceUrl?: string | null;
|
|
569
|
+
customDomain?: string | null;
|
|
570
|
+
cloudRunServiceName?: string | null;
|
|
571
|
+
imageUrl?: string | null;
|
|
572
|
+
status?: ResourceStatus | null;
|
|
573
|
+
lastDeployedAt?: string | null;
|
|
574
|
+
metadata?: Record<string, unknown> | null;
|
|
575
|
+
createdAt?: string | null;
|
|
576
|
+
updatedAt?: string | null;
|
|
577
|
+
}
|
|
578
|
+
export interface CreateResourceParams {
|
|
579
|
+
projectId?: string | null;
|
|
580
|
+
name: string;
|
|
581
|
+
description?: string;
|
|
582
|
+
kind: ResourceKind;
|
|
583
|
+
sourceType?: string;
|
|
584
|
+
sourceEnvironmentId?: string | null;
|
|
585
|
+
sourcePath?: string | null;
|
|
586
|
+
region?: string;
|
|
587
|
+
runtime?: string;
|
|
588
|
+
authMode?: ResourceAuthMode;
|
|
589
|
+
serviceUrl?: string | null;
|
|
590
|
+
customDomain?: string | null;
|
|
591
|
+
cloudRunServiceName?: string | null;
|
|
592
|
+
imageUrl?: string | null;
|
|
593
|
+
status?: ResourceStatus;
|
|
594
|
+
lastDeployedAt?: string | null;
|
|
595
|
+
metadata?: Record<string, unknown> | null;
|
|
596
|
+
}
|
|
597
|
+
export interface UpdateResourceParams extends Partial<CreateResourceParams> {
|
|
598
|
+
}
|
|
599
|
+
export interface ResourceAnalyticsResponse {
|
|
600
|
+
serverId: string;
|
|
601
|
+
serviceName?: string | null;
|
|
602
|
+
available?: boolean;
|
|
603
|
+
summary?: Record<string, unknown>;
|
|
604
|
+
charts?: Record<string, unknown>;
|
|
605
|
+
recentRequests?: Array<Record<string, unknown>>;
|
|
606
|
+
deployment?: Record<string, unknown> | null;
|
|
607
|
+
}
|
|
608
|
+
export interface ResourceLogEntry {
|
|
609
|
+
timestamp?: string | null;
|
|
610
|
+
severity?: string | null;
|
|
611
|
+
stream?: string | null;
|
|
612
|
+
message?: string | null;
|
|
613
|
+
method?: string | null;
|
|
614
|
+
path?: string | null;
|
|
615
|
+
status?: number | null;
|
|
616
|
+
}
|
|
617
|
+
export interface ResourceBinding {
|
|
618
|
+
id?: string;
|
|
619
|
+
targetType?: 'database' | 'auth' | 'agent_runtime' | string;
|
|
620
|
+
targetId?: string;
|
|
621
|
+
alias?: string;
|
|
622
|
+
accessMode?: string;
|
|
623
|
+
metadata?: Record<string, unknown> | null;
|
|
624
|
+
}
|
|
625
|
+
export interface Database {
|
|
626
|
+
id: string;
|
|
627
|
+
userId?: string;
|
|
628
|
+
projectId?: string | null;
|
|
629
|
+
name: string;
|
|
630
|
+
description?: string;
|
|
631
|
+
location?: string;
|
|
632
|
+
status?: 'active' | 'provisioning' | 'error' | string;
|
|
633
|
+
metadata?: Record<string, unknown> | null;
|
|
634
|
+
createdAt?: string;
|
|
635
|
+
updatedAt?: string;
|
|
636
|
+
}
|
|
637
|
+
export interface CreateDatabaseParams {
|
|
638
|
+
projectId?: string | null;
|
|
639
|
+
name: string;
|
|
640
|
+
description?: string;
|
|
641
|
+
location?: string;
|
|
642
|
+
metadata?: Record<string, unknown> | null;
|
|
643
|
+
}
|
|
644
|
+
export interface UpdateDatabaseParams extends Partial<CreateDatabaseParams> {
|
|
645
|
+
status?: 'active' | 'provisioning' | 'error' | string;
|
|
646
|
+
}
|
|
647
|
+
export interface DatabaseCollection {
|
|
648
|
+
id: string;
|
|
649
|
+
name: string;
|
|
650
|
+
description?: string;
|
|
651
|
+
documentCount?: number;
|
|
652
|
+
createdAt?: string;
|
|
653
|
+
updatedAt?: string;
|
|
654
|
+
}
|
|
655
|
+
export interface DatabaseDocument {
|
|
656
|
+
id: string;
|
|
657
|
+
data: Record<string, unknown>;
|
|
658
|
+
createdAt?: string;
|
|
659
|
+
updatedAt?: string;
|
|
660
|
+
}
|
|
661
|
+
export type SkillCategory = 'research' | 'creative' | 'productivity' | 'development' | 'custom';
|
|
662
|
+
export interface SkillFile {
|
|
663
|
+
name: string;
|
|
664
|
+
content: string;
|
|
665
|
+
language?: string;
|
|
666
|
+
}
|
|
667
|
+
export interface Skill {
|
|
668
|
+
id: string;
|
|
669
|
+
userId?: string;
|
|
670
|
+
name: string;
|
|
671
|
+
description?: string;
|
|
672
|
+
markdown?: string;
|
|
673
|
+
files?: SkillFile[];
|
|
674
|
+
icon?: string;
|
|
675
|
+
category?: SkillCategory;
|
|
676
|
+
isActive?: boolean;
|
|
677
|
+
createdAt?: string;
|
|
678
|
+
updatedAt?: string;
|
|
679
|
+
}
|
|
680
|
+
export interface CreateSkillParams {
|
|
681
|
+
name: string;
|
|
682
|
+
description?: string;
|
|
683
|
+
markdown?: string;
|
|
684
|
+
files?: SkillFile[];
|
|
685
|
+
icon?: string;
|
|
686
|
+
category?: SkillCategory;
|
|
687
|
+
isActive?: boolean;
|
|
688
|
+
}
|
|
689
|
+
export interface UpdateSkillParams extends Partial<CreateSkillParams> {
|
|
690
|
+
}
|
|
509
691
|
export interface BudgetStatus {
|
|
510
692
|
balance: number;
|
|
511
693
|
spent: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*
|
|
14
14
|
* // Execute a task
|
|
15
15
|
* const result = await client.run('Create a REST API', {
|
|
16
|
-
*
|
|
16
|
+
* computerId: 'env_xxx',
|
|
17
17
|
* onEvent: (event) => console.log(event.type)
|
|
18
18
|
* });
|
|
19
19
|
*
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
*/
|
|
23
23
|
export { ComputerAgentsClient, CloudClient, TestbaseClient, ApiClientError, } from './ComputerAgentsClient';
|
|
24
24
|
export type { ComputerAgentsClientConfig, RunOptions, RunResult, ApiClientConfig, } from './ComputerAgentsClient';
|
|
25
|
-
export { ProjectsResource, EnvironmentsResource,
|
|
26
|
-
export type { StreamEventCallback, SendMessageOptions, SendMessageResult, ListEnvironmentsParams, } from './cloud/resources';
|
|
27
|
-
export type { PaginationParams, PaginatedResponse, ApiError, Project, CreateProjectParams, UpdateProjectParams, ProjectStats, ProjectType, ProjectSource, Environment, CreateEnvironmentParams, UpdateEnvironmentParams, EnvironmentStatus, EnvironmentVariable, McpServer, ContainerStatus, BuildResult, BuildStatus, BuildStatusResult, BuildLogsResult, TestBuildResult, DockerfileResult, ValidateDockerfileResult, RuntimeConfig, PackagesConfig, AvailableRuntimes, PackageType, InstallPackagesResult, StartContainerParams, StartContainerResult, Thread, CreateThreadParams, UpdateThreadParams, ListThreadsParams, SendMessageParams, ThreadMessage, ThreadStatus, AgentConfig, CopyThreadParams, SearchThreadsParams, SearchThreadResult, SearchThreadsResponse, ThreadLogEntry, ResearchSession, StreamEvent, MessageStreamEvent, ResponseStartedEvent, ResponseItemCompletedEvent, ResponseCompletedEvent, StreamCompletedEvent, StreamErrorEvent, Run, CreateRunParams, UpdateRunParams, ListRunsParams, RunStatus, RunLogEntry, RunDiff, TokenUsage, CloudAgent, CreateAgentParams, UpdateAgentParams, AgentModel, ReasoningEffort, DeepResearchModel, AgentBinary, BudgetStatus, CanExecuteResult, IncreaseBudgetParams, IncreaseBudgetResult, BillingRecord, ListBillingRecordsParams, BillingAccount, UsageStats, UsageStatsParams, FileEntry, ListFilesParams, UploadFileParams, CreateDirectoryParams, GitDiffFile, GitDiffResult, GitCommitParams, GitCommitResult, GitPushParams, GitPushResult, Schedule, CreateScheduleParams, UpdateScheduleParams, ScheduleType, TriggerSource, Trigger, TriggerAction, CreateTriggerParams, UpdateTriggerParams, TriggerExecution, OrchestrationStrategy, OrchestrationStep, Orchestration, CreateOrchestrationParams, UpdateOrchestrationParams, OrchestrationRun, OrchestrationStepResult, HealthCheck, Metrics, } from './cloud/types';
|
|
25
|
+
export { ProjectsResource, EnvironmentsResource, ComputersResource, ThreadsResource, AgentsResource, ResourcesResource, DatabasesResource, SkillsResource, BudgetResource, BillingResource, SchedulesResource, TriggersResource, OrchestrationsResource, GitResource, } from './cloud/resources';
|
|
26
|
+
export type { StreamEventCallback, SendMessageOptions, SendMessageResult, ListEnvironmentsParams, ListResourcesParams, ResourceInvokeParams, ResourceFileUploadParams, ListDatabasesParams, CreateDatabaseCollectionParams, CreateDatabaseDocumentParams, UpdateDatabaseDocumentParams, ListSkillsParams, } from './cloud/resources';
|
|
27
|
+
export type { PaginationParams, PaginatedResponse, ApiError, Project, CreateProjectParams, UpdateProjectParams, ProjectStats, ProjectType, ProjectSource, Environment, Computer, CreateEnvironmentParams, CreateComputerParams, UpdateEnvironmentParams, UpdateComputerParams, EnvironmentStatus, EnvironmentVariable, McpServer, ContainerStatus, BuildResult, BuildStatus, BuildStatusResult, BuildLogsResult, TestBuildResult, DockerfileResult, ValidateDockerfileResult, RuntimeConfig, PackagesConfig, AvailableRuntimes, PackageType, InstallPackagesResult, StartContainerParams, StartContainerResult, Thread, CreateThreadParams, UpdateThreadParams, ListThreadsParams, SendMessageParams, ThreadMessage, ThreadStatus, AgentConfig, CopyThreadParams, SearchThreadsParams, SearchThreadResult, SearchThreadsResponse, ThreadLogEntry, ResearchSession, StreamEvent, MessageStreamEvent, ResponseStartedEvent, ResponseItemCompletedEvent, ResponseCompletedEvent, StreamCompletedEvent, StreamErrorEvent, Run, CreateRunParams, UpdateRunParams, ListRunsParams, RunStatus, RunLogEntry, RunDiff, TokenUsage, CloudAgent, CreateAgentParams, UpdateAgentParams, BuiltinAgentModel, AgentModel, ReasoningEffort, DeepResearchModel, AgentBinary, AgentModelCatalogEntry, AgentAnalyticsResponse, Resource, CreateResourceParams, UpdateResourceParams, ResourceKind, ResourceAuthMode, ResourceStatus, ResourceAnalyticsResponse, ResourceLogEntry, ResourceBinding, Database, CreateDatabaseParams, UpdateDatabaseParams, DatabaseCollection, DatabaseDocument, Skill, SkillFile, SkillCategory, CreateSkillParams, UpdateSkillParams, BudgetStatus, CanExecuteResult, IncreaseBudgetParams, IncreaseBudgetResult, BillingRecord, ListBillingRecordsParams, BillingAccount, UsageStats, UsageStatsParams, FileEntry, ListFilesParams, UploadFileParams, CreateDirectoryParams, GitDiffFile, GitDiffResult, GitCommitParams, GitCommitResult, GitPushParams, GitPushResult, Schedule, CreateScheduleParams, UpdateScheduleParams, ScheduleType, TriggerSource, Trigger, TriggerAction, CreateTriggerParams, UpdateTriggerParams, TriggerExecution, OrchestrationStrategy, OrchestrationStep, Orchestration, CreateOrchestrationParams, UpdateOrchestrationParams, OrchestrationRun, OrchestrationStepResult, HealthCheck, Metrics, } from './cloud/types';
|
|
28
28
|
export { ApiClient } from './cloud/ApiClient';
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
*
|
|
15
15
|
* // Execute a task
|
|
16
16
|
* const result = await client.run('Create a REST API', {
|
|
17
|
-
*
|
|
17
|
+
* computerId: 'env_xxx',
|
|
18
18
|
* onEvent: (event) => console.log(event.type)
|
|
19
19
|
* });
|
|
20
20
|
*
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* ```
|
|
23
23
|
*/
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.ApiClient = exports.GitResource = exports.OrchestrationsResource = exports.TriggersResource = exports.SchedulesResource = exports.BillingResource = exports.BudgetResource = exports.
|
|
25
|
+
exports.ApiClient = exports.GitResource = exports.OrchestrationsResource = exports.TriggersResource = exports.SchedulesResource = exports.BillingResource = exports.BudgetResource = exports.SkillsResource = exports.DatabasesResource = exports.ResourcesResource = exports.AgentsResource = exports.ThreadsResource = exports.ComputersResource = exports.EnvironmentsResource = exports.ProjectsResource = exports.ApiClientError = exports.TestbaseClient = exports.CloudClient = exports.ComputerAgentsClient = void 0;
|
|
26
26
|
// ============================================================================
|
|
27
27
|
// Main Client
|
|
28
28
|
// ============================================================================
|
|
@@ -39,9 +39,12 @@ Object.defineProperty(exports, "ApiClientError", { enumerable: true, get: functi
|
|
|
39
39
|
var resources_1 = require("./cloud/resources");
|
|
40
40
|
Object.defineProperty(exports, "ProjectsResource", { enumerable: true, get: function () { return resources_1.ProjectsResource; } });
|
|
41
41
|
Object.defineProperty(exports, "EnvironmentsResource", { enumerable: true, get: function () { return resources_1.EnvironmentsResource; } });
|
|
42
|
+
Object.defineProperty(exports, "ComputersResource", { enumerable: true, get: function () { return resources_1.ComputersResource; } });
|
|
42
43
|
Object.defineProperty(exports, "ThreadsResource", { enumerable: true, get: function () { return resources_1.ThreadsResource; } });
|
|
43
|
-
Object.defineProperty(exports, "RunsResource", { enumerable: true, get: function () { return resources_1.RunsResource; } });
|
|
44
44
|
Object.defineProperty(exports, "AgentsResource", { enumerable: true, get: function () { return resources_1.AgentsResource; } });
|
|
45
|
+
Object.defineProperty(exports, "ResourcesResource", { enumerable: true, get: function () { return resources_1.ResourcesResource; } });
|
|
46
|
+
Object.defineProperty(exports, "DatabasesResource", { enumerable: true, get: function () { return resources_1.DatabasesResource; } });
|
|
47
|
+
Object.defineProperty(exports, "SkillsResource", { enumerable: true, get: function () { return resources_1.SkillsResource; } });
|
|
45
48
|
Object.defineProperty(exports, "BudgetResource", { enumerable: true, get: function () { return resources_1.BudgetResource; } });
|
|
46
49
|
Object.defineProperty(exports, "BillingResource", { enumerable: true, get: function () { return resources_1.BillingResource; } });
|
|
47
50
|
Object.defineProperty(exports, "SchedulesResource", { enumerable: true, get: function () { return resources_1.SchedulesResource; } });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAEH,+EAA+E;AAC/E,cAAc;AACd,+EAA+E;AAE/E,+DAOgC;AAN9B,4HAAA,oBAAoB,OAAA;AACpB,kCAAkC;AAClC,mHAAA,WAAW,OAAA;AACX,sHAAA,cAAc,OAAA;AACd,cAAc;AACd,sHAAA,cAAc,OAAA;AAUhB,+EAA+E;AAC/E,yCAAyC;AACzC,+EAA+E;AAE/E,+
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAEH,+EAA+E;AAC/E,cAAc;AACd,+EAA+E;AAE/E,+DAOgC;AAN9B,4HAAA,oBAAoB,OAAA;AACpB,kCAAkC;AAClC,mHAAA,WAAW,OAAA;AACX,sHAAA,cAAc,OAAA;AACd,cAAc;AACd,sHAAA,cAAc,OAAA;AAUhB,+EAA+E;AAC/E,yCAAyC;AACzC,+EAA+E;AAE/E,+CAe2B;AAdzB,6GAAA,gBAAgB,OAAA;AAChB,iHAAA,oBAAoB,OAAA;AACpB,8GAAA,iBAAiB,OAAA;AACjB,4GAAA,eAAe,OAAA;AACf,2GAAA,cAAc,OAAA;AACd,8GAAA,iBAAiB,OAAA;AACjB,8GAAA,iBAAiB,OAAA;AACjB,2GAAA,cAAc,OAAA;AACd,2GAAA,cAAc,OAAA;AACd,4GAAA,eAAe,OAAA;AACf,8GAAA,iBAAiB,OAAA;AACjB,6GAAA,gBAAgB,OAAA;AAChB,mHAAA,sBAAsB,OAAA;AACtB,wGAAA,WAAW,OAAA;AAuLb,+EAA+E;AAC/E,4CAA4C;AAC5C,+EAA+E;AAE/E,+CAA8C;AAArC,sGAAA,SAAS,OAAA"}
|
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"name": "computer-agents",
|
|
3
3
|
"repository": "https://github.com/computer-agents/computer-agents-sdk",
|
|
4
4
|
"homepage": "https://computer-agents.com",
|
|
5
|
-
"version": "2.
|
|
6
|
-
"description": "Official SDK for the Computer Agents
|
|
5
|
+
"version": "2.5.0",
|
|
6
|
+
"description": "Official SDK for the Computer Agents Agentic Compute Platform API. Build with threads, computers, agents, resources, and databases.",
|
|
7
7
|
"author": "Computer Agents",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
"computer-agents",
|
|
24
24
|
"ai",
|
|
25
25
|
"agents",
|
|
26
|
-
"
|
|
27
|
-
"anthropic",
|
|
26
|
+
"agentic-compute-platform",
|
|
28
27
|
"cloud",
|
|
29
28
|
"api",
|
|
30
29
|
"sdk",
|