@synsci/sdk 2.0.110 → 2.0.112

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.
@@ -571,6 +571,8 @@ export type CompactionPart = {
571
571
  handoffFile?: string;
572
572
  trigger?: "proactive" | "overflow" | "manual";
573
573
  rootID?: string;
574
+ before?: number;
575
+ after?: number;
574
576
  };
575
577
  export type Part = TextPart | SubtaskPart | ReasoningPart | FilePart | ToolPart | StepStartPart | StepFinishPart | SnapshotPart | PatchPart | AgentPart | ConversationPart | RetryPart | CompactionPart;
576
578
  export type EventMessagePartUpdated = {
@@ -1633,9 +1635,9 @@ export type AgentConfig = {
1633
1635
  [key: string]: unknown;
1634
1636
  };
1635
1637
  /**
1636
- * Hex color code for the agent (e.g., #FF5733)
1638
+ * Hex color code (e.g., #FF5733) or a theme color (primary, secondary, accent, success, warning, error, info)
1637
1639
  */
1638
- color?: string;
1640
+ color?: string | "primary" | "secondary" | "accent" | "success" | "warning" | "error" | "info";
1639
1641
  /**
1640
1642
  * Maximum number of agentic iterations before forcing text-only response
1641
1643
  */
@@ -2875,6 +2877,7 @@ export type AccountGetResponses = {
2875
2877
  credential: {
2876
2878
  type: "personal" | "organization";
2877
2879
  legacy: boolean;
2880
+ origin: "browser" | "key";
2878
2881
  } | null;
2879
2882
  credential_sync?: unknown;
2880
2883
  };
@@ -7511,6 +7514,8 @@ export type SettingsUpdatesInstallErrors = {
7511
7514
  */
7512
7515
  409: {
7513
7516
  error: string;
7517
+ blockers?: Array<string>;
7518
+ pausable?: boolean;
7514
7519
  };
7515
7520
  };
7516
7521
  export type SettingsUpdatesInstallError = SettingsUpdatesInstallErrors[keyof SettingsUpdatesInstallErrors];
@@ -7609,6 +7614,8 @@ export type SettingsUpdatesApplyErrors = {
7609
7614
  */
7610
7615
  409: {
7611
7616
  error: string;
7617
+ blockers?: Array<string>;
7618
+ pausable?: boolean;
7612
7619
  };
7613
7620
  };
7614
7621
  export type SettingsUpdatesApplyError = SettingsUpdatesApplyErrors[keyof SettingsUpdatesApplyErrors];
@@ -7640,12 +7647,16 @@ export type SettingsUpdatesDisposeErrors = {
7640
7647
  */
7641
7648
  401: {
7642
7649
  error: string;
7650
+ blockers?: Array<string>;
7651
+ pausable?: boolean;
7643
7652
  };
7644
7653
  /**
7645
7654
  * Runtime disposal did not finish within the bounded handoff
7646
7655
  */
7647
7656
  503: {
7648
7657
  error: string;
7658
+ blockers?: Array<string>;
7659
+ pausable?: boolean;
7649
7660
  };
7650
7661
  };
7651
7662
  export type SettingsUpdatesDisposeError = SettingsUpdatesDisposeErrors[keyof SettingsUpdatesDisposeErrors];
@@ -7929,6 +7940,12 @@ export type SettingsWalletGetResponses = {
7929
7940
  description: string;
7930
7941
  createdAt: string;
7931
7942
  }>;
7943
+ workspace?: {
7944
+ organizationId: string;
7945
+ name: string;
7946
+ personal: boolean;
7947
+ };
7948
+ origin?: "browser" | "key";
7932
7949
  refreshing: boolean;
7933
7950
  refreshedAt: number | null;
7934
7951
  error?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@synsci/sdk",
4
- "version": "2.0.110",
4
+ "version": "2.0.112",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {