@nikcli-ai/sdk 1.243.0 → 1.245.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.
@@ -2018,6 +2018,16 @@ export type ProviderConfig = {
2018
2018
  npm: string;
2019
2019
  api: string;
2020
2020
  };
2021
+ reasoning_options?: Array<{
2022
+ type: "effort";
2023
+ values: Array<string | null>;
2024
+ } | {
2025
+ type: "toggle";
2026
+ } | {
2027
+ type: "budget_tokens";
2028
+ min?: number;
2029
+ max?: number;
2030
+ }>;
2021
2031
  /**
2022
2032
  * Variant-specific configuration
2023
2033
  */
@@ -7643,6 +7653,16 @@ export type ProviderListResponses = {
7643
7653
  npm: string;
7644
7654
  api: string;
7645
7655
  };
7656
+ reasoning_options?: Array<{
7657
+ type: "effort";
7658
+ values: Array<string | null>;
7659
+ } | {
7660
+ type: "toggle";
7661
+ } | {
7662
+ type: "budget_tokens";
7663
+ min?: number;
7664
+ max?: number;
7665
+ }>;
7646
7666
  variants?: {
7647
7667
  [key: string]: {
7648
7668
  [key: string]: unknown;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@nikcli-ai/sdk",
4
- "version": "1.243.0",
4
+ "version": "1.245.0",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {