cyberdesk 2.2.32 → 2.2.33

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.
@@ -342,6 +342,10 @@ export type ModelConfigurationCreate = {
342
342
  additional_params?: {
343
343
  [key: string]: unknown;
344
344
  } | null;
345
+ /**
346
+ * Agent harness version string used by Cyberdesk workers for prompt/tool selection.
347
+ */
348
+ agent_harness_version_string?: string | null;
345
349
  /**
346
350
  * True if this model has native computer use capabilities. If True, can be used for main agent, focused actions, and fallbacks for those agents.
347
351
  */
@@ -379,6 +383,10 @@ export type ModelConfigurationResponse = {
379
383
  additional_params?: {
380
384
  [key: string]: unknown;
381
385
  } | null;
386
+ /**
387
+ * Agent harness version string used by Cyberdesk workers for prompt/tool selection.
388
+ */
389
+ agent_harness_version_string?: string | null;
382
390
  /**
383
391
  * True if this model has native computer use capabilities. If True, can be used for main agent, focused actions, and fallbacks for those agents.
384
392
  */
@@ -420,6 +428,7 @@ export type ModelConfigurationUpdate = {
420
428
  additional_params?: {
421
429
  [key: string]: unknown;
422
430
  } | null;
431
+ agent_harness_version_string?: string | null;
423
432
  is_computer_use_model?: boolean | null;
424
433
  is_archived?: boolean | null;
425
434
  };
@@ -1223,7 +1232,7 @@ export type WorkflowCreate = {
1223
1232
  */
1224
1233
  is_webhooks_enabled?: boolean;
1225
1234
  /**
1226
- * Optional workflow-level model configuration metadata (main agent + fallbacks).
1235
+ * Optional workflow-level model configuration metadata (main agent, cache detection, and fallbacks).
1227
1236
  */
1228
1237
  model_metadata?: WorkflowModelMetadata | null;
1229
1238
  };
@@ -1285,6 +1294,10 @@ export type WorkflowModelMetadata = {
1285
1294
  * ModelConfiguration.id used for the main agent. Null → Cyberdesk default.
1286
1295
  */
1287
1296
  main_agent_model_id?: string | null;
1297
+ /**
1298
+ * ModelConfiguration.id used for cache detection. Null → Cyberdesk default.
1299
+ */
1300
+ cache_detection_model_id?: string | null;
1288
1301
  /**
1289
1302
  * ModelConfiguration.id used as fallback 1 (global across agents).
1290
1303
  */
@@ -1384,7 +1397,7 @@ export type WorkflowResponse = {
1384
1397
  */
1385
1398
  is_webhooks_enabled?: boolean;
1386
1399
  /**
1387
- * Optional workflow-level model configuration metadata (main agent + fallbacks).
1400
+ * Optional workflow-level model configuration metadata (main agent, cache detection, and fallbacks).
1388
1401
  */
1389
1402
  model_metadata?: WorkflowModelMetadata | null;
1390
1403
  id: string;
@@ -1517,7 +1530,7 @@ export type WorkflowUpdate = {
1517
1530
  */
1518
1531
  is_webhooks_enabled?: boolean | null;
1519
1532
  /**
1520
- * Optional workflow-level model configuration metadata (main agent + fallbacks).
1533
+ * Optional workflow-level model configuration metadata (main agent, cache detection, and fallbacks).
1521
1534
  */
1522
1535
  model_metadata?: WorkflowModelMetadata | null;
1523
1536
  /**
package/dist/index.d.ts CHANGED
@@ -25,7 +25,7 @@
25
25
  * });
26
26
  * ```
27
27
  */
28
- import { type MachineResponse, type MachinePoolUpdate, type PoolResponse, type PoolCreate, type PoolUpdate, type PoolWithMachines, type MachinePoolAssignment, type WorkflowResponse, type RunResponse, type ConnectionResponse, type TrajectoryResponse, type PaginatedResponseWithIncludesMachineResponse, type PaginatedResponseWithIncludesPoolResponse, type PaginatedResponseWorkflowResponse, type PaginatedResponseWithIncludesRunResponse, type PaginatedResponseConnectionResponse, type PaginatedResponseWithIncludesTrajectoryResponse, type MachineStatus, type RunStatus, type ConnectionStatus, type MachineCreate, type WorkflowCreate, type RunCreate, type RunBulkCreate, type RunBulkCreateResponse, type WorkflowChainCreate, type WorkflowChainResponse, type FileInput, type ConnectionCreate, type TrajectoryCreate, type MachineUpdate, type WorkflowUpdate, type RunUpdate, type TrajectoryUpdate, type RunAttachmentCreate, type RunAttachmentUpdate, type RunAttachmentResponse, type RunAttachmentDownloadUrlResponse, type AttachmentType, type IncludedResource, type PaginatedResponseRunAttachmentResponse, type RunRetry, type RunField, type RunListSortMode, type ModelConfigurationCreate, type ModelConfigurationUpdate, type ModelConfigurationResponse, type UsageAggregateResponse, type UsageMode, type WorkflowTagCreate, type WorkflowTagUpdate, type WorkflowTagResponse, type WorkflowTagGroupCreate, type WorkflowTagGroupUpdate, type WorkflowTagGroupResponse, type ReorderRequest, type AddTagsRequest, type BulkAddTagsRequest } from './client/types.gen';
28
+ import { type MachineResponse, type MachinePoolUpdate, type PoolResponse, type PoolCreate, type PoolUpdate, type PoolWithMachines, type MachinePoolAssignment, type WorkflowModelMetadata, type WorkflowResponse, type RunResponse, type ConnectionResponse, type TrajectoryResponse, type PaginatedResponseWithIncludesMachineResponse, type PaginatedResponseWithIncludesPoolResponse, type PaginatedResponseWorkflowResponse, type PaginatedResponseWithIncludesRunResponse, type PaginatedResponseConnectionResponse, type PaginatedResponseWithIncludesTrajectoryResponse, type MachineStatus, type RunStatus, type ConnectionStatus, type MachineCreate, type WorkflowCreate, type RunCreate, type RunBulkCreate, type RunBulkCreateResponse, type WorkflowChainCreate, type WorkflowChainResponse, type FileInput, type ConnectionCreate, type TrajectoryCreate, type MachineUpdate, type WorkflowUpdate, type RunUpdate, type TrajectoryUpdate, type RunAttachmentCreate, type RunAttachmentUpdate, type RunAttachmentResponse, type RunAttachmentDownloadUrlResponse, type AttachmentType, type IncludedResource, type PaginatedResponseRunAttachmentResponse, type RunRetry, type RunField, type RunListSortMode, type ModelConfigurationCreate, type ModelConfigurationUpdate, type ModelConfigurationResponse, type UsageAggregateResponse, type UsageMode, type WorkflowTagCreate, type WorkflowTagUpdate, type WorkflowTagResponse, type WorkflowTagGroupCreate, type WorkflowTagGroupUpdate, type WorkflowTagGroupResponse, type ReorderRequest, type AddTagsRequest, type BulkAddTagsRequest } from './client/types.gen';
29
29
  export * from './client/types.gen';
30
30
  export * from './client/sdk.gen';
31
31
  export * from './client/client.gen';
@@ -1785,4 +1785,4 @@ export declare function createCyberdeskClient(apiKey: string, baseUrl?: string,
1785
1785
  }>;
1786
1786
  };
1787
1787
  };
1788
- export type { MachineResponse, MachinePoolUpdate, PoolResponse, PoolCreate, PoolUpdate, PoolWithMachines, MachinePoolAssignment, WorkflowResponse, RunResponse, RunBulkCreate, RunBulkCreateResponse, ConnectionResponse, TrajectoryResponse, RunAttachmentResponse, RunAttachmentDownloadUrlResponse, FileInput, AttachmentType, IncludedResource, PaginatedResponseWithIncludesMachineResponse, PaginatedResponseWithIncludesPoolResponse, PaginatedResponseWorkflowResponse, PaginatedResponseWithIncludesRunResponse, PaginatedResponseConnectionResponse, PaginatedResponseWithIncludesTrajectoryResponse, PaginatedResponseRunAttachmentResponse, ModelConfigurationCreate, ModelConfigurationUpdate, ModelConfigurationResponse, UsageAggregateResponse, UsageMode, WorkflowTagCreate, WorkflowTagUpdate, WorkflowTagResponse, WorkflowTagGroupCreate, WorkflowTagGroupUpdate, WorkflowTagGroupResponse, ReorderRequest, AddTagsRequest, BulkAddTagsRequest, };
1788
+ export type { MachineResponse, MachinePoolUpdate, PoolResponse, PoolCreate, PoolUpdate, PoolWithMachines, MachinePoolAssignment, WorkflowModelMetadata, WorkflowResponse, RunResponse, RunBulkCreate, RunBulkCreateResponse, ConnectionResponse, TrajectoryResponse, RunAttachmentResponse, RunAttachmentDownloadUrlResponse, FileInput, AttachmentType, IncludedResource, PaginatedResponseWithIncludesMachineResponse, PaginatedResponseWithIncludesPoolResponse, PaginatedResponseWorkflowResponse, PaginatedResponseWithIncludesRunResponse, PaginatedResponseConnectionResponse, PaginatedResponseWithIncludesTrajectoryResponse, PaginatedResponseRunAttachmentResponse, ModelConfigurationCreate, ModelConfigurationUpdate, ModelConfigurationResponse, UsageAggregateResponse, UsageMode, WorkflowTagCreate, WorkflowTagUpdate, WorkflowTagResponse, WorkflowTagGroupCreate, WorkflowTagGroupUpdate, WorkflowTagGroupResponse, ReorderRequest, AddTagsRequest, BulkAddTagsRequest, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "2.2.32",
3
+ "version": "2.2.33",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",