@synsci/sdk 1.2.3 → 1.2.5

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.
@@ -287,7 +287,7 @@ export declare class Billing extends HeyApiClient {
287
287
  * Update billing spend toggles (managed vs BYOK)
288
288
  */
289
289
  update<ThrowOnError extends boolean = false>(parameters?: {
290
- llm?: "managed" | "byok";
290
+ llm?: "managed" | "byok" | null;
291
291
  compute?: "managed" | "byok";
292
292
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsBillingUpdateResponses, unknown, ThrowOnError, "fields">;
293
293
  }
@@ -1433,9 +1433,9 @@ export type Config = {
1433
1433
  */
1434
1434
  billing?: {
1435
1435
  /**
1436
- * How LLM inference is paid for. 'managed' routes through the Atlas wallet (metered credits); 'byok' uses your own provider API keys or first-party OAuth (ChatGPT/Claude Pro/Copilot) and is never billed. Unset = auto-detect from the resolved credential.
1436
+ * How LLM inference is paid for. 'managed' routes through the Atlas wallet (metered credits); 'byok' uses your own provider API keys or first-party OAuth (ChatGPT/Claude Pro/Copilot) and is never billed. Unset or null = auto-detect from the resolved credential.
1437
1437
  */
1438
- llm?: "managed" | "byok";
1438
+ llm?: "managed" | "byok" | null;
1439
1439
  /**
1440
1440
  * How GPU/compute is paid for. 'managed' runs on Atlas-provisioned compute billed to your wallet (via the bundled atlas CLI); 'byok' uses your own connected GPU providers (Modal, Tinker, TensorPool, …). Unset = byok.
1441
1441
  */
@@ -2759,7 +2759,7 @@ export type SettingsBillingGetResponses = {
2759
2759
  export type SettingsBillingGetResponse = SettingsBillingGetResponses[keyof SettingsBillingGetResponses];
2760
2760
  export type SettingsBillingUpdateData = {
2761
2761
  body?: {
2762
- llm?: "managed" | "byok";
2762
+ llm?: "managed" | "byok" | null;
2763
2763
  compute?: "managed" | "byok";
2764
2764
  };
2765
2765
  path?: never;
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": "1.2.3",
4
+ "version": "1.2.5",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {