@synsci/sdk 2.0.59 → 2.0.61

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.
@@ -1963,6 +1963,11 @@ export type Model = {
1963
1963
  };
1964
1964
  };
1965
1965
  };
1966
+ pricing?: {
1967
+ upstream_provider: "anthropic" | "gemini" | "xai" | "meta" | "openrouter";
1968
+ audited_at?: string;
1969
+ source_url?: string;
1970
+ };
1966
1971
  limit: {
1967
1972
  context: number;
1968
1973
  input?: number;
@@ -2518,6 +2523,7 @@ export type AccountGetResponses = {
2518
2523
  type: "personal" | "organization";
2519
2524
  legacy: boolean;
2520
2525
  } | null;
2526
+ credential_sync?: unknown;
2521
2527
  };
2522
2528
  };
2523
2529
  export type AccountGetResponse = AccountGetResponses[keyof AccountGetResponses];
@@ -2756,7 +2762,8 @@ export type SettingsCredentialsListResponses = {
2756
2762
  connected: boolean;
2757
2763
  set_fields: Array<string>;
2758
2764
  updated_at: string | null;
2759
- source: "local" | null;
2765
+ source: "local" | "account" | null;
2766
+ organization_id: string | null;
2760
2767
  }>;
2761
2768
  };
2762
2769
  };
@@ -2790,7 +2797,8 @@ export type SettingsCredentialsRemoveResponses = {
2790
2797
  connected: boolean;
2791
2798
  set_fields: Array<string>;
2792
2799
  updated_at: string | null;
2793
- source: "local" | null;
2800
+ source: "local" | "account" | null;
2801
+ organization_id: string | null;
2794
2802
  }>;
2795
2803
  };
2796
2804
  };
@@ -2829,7 +2837,8 @@ export type SettingsCredentialsSetResponses = {
2829
2837
  connected: boolean;
2830
2838
  set_fields: Array<string>;
2831
2839
  updated_at: string | null;
2832
- source: "local" | null;
2840
+ source: "local" | "account" | null;
2841
+ organization_id: string | null;
2833
2842
  }>;
2834
2843
  };
2835
2844
  };
@@ -7396,6 +7405,8 @@ export type SettingsWalletGetResponses = {
7396
7405
  200: {
7397
7406
  signedIn: boolean;
7398
7407
  balanceUsd: number | null;
7408
+ balanceRedacted?: boolean;
7409
+ accessVerified?: boolean;
7399
7410
  billingMode: "managed" | "byok" | null;
7400
7411
  managedSupported: boolean;
7401
7412
  managedUnlocked: boolean;
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.59",
4
+ "version": "2.0.61",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {