@crewx/sdk 0.9.0-rc.56 → 0.9.0-rc.58

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.
@@ -0,0 +1,6 @@
1
+ export type GrokSandbox = 'workspace' | 'read-only' | 'off';
2
+ export interface GrokNativeOptions {
3
+ alwaysApprove?: boolean;
4
+ sandbox?: GrokSandbox;
5
+ }
6
+ export declare function migrateGrokLegacyMode<T>(slot: T): T;
@@ -1,8 +1,8 @@
1
1
  import type { ModelApiPricing } from './pricing.types.js';
2
2
  export declare const MODEL_TIERS: readonly ["flagship", "balanced", "speed"];
3
3
  export type ModelTier = (typeof MODEL_TIERS)[number];
4
- export declare const MODEL_CATALOG_VERSION = 17;
5
- export declare const MODEL_CATALOG_UPDATED = "2026-08-13T14:50:03Z";
4
+ export declare const MODEL_CATALOG_VERSION = 18;
5
+ export declare const MODEL_CATALOG_UPDATED = "2026-08-14T00:00:00Z";
6
6
  export interface ModelCatalogEntry {
7
7
  id: string;
8
8
  name: string;
@@ -21,9 +21,18 @@ export interface ProviderModelOverride {
21
21
  effort?: string[];
22
22
  defaultEffort?: string;
23
23
  }
24
+ export type ProviderOptionSpec = {
25
+ key: string;
26
+ type: 'boolean';
27
+ } | {
28
+ key: string;
29
+ type: 'enum';
30
+ values: string[];
31
+ };
24
32
  export interface ProviderExecutionOptions {
25
33
  mode: string;
26
34
  effort: string;
35
+ providerOptions?: Record<string, unknown>;
27
36
  }
28
37
  export interface ProviderDefaultProfile {
29
38
  model: string;
@@ -39,6 +48,7 @@ export interface ProviderCatalogEntry {
39
48
  modes: ProviderModeEntry[];
40
49
  effort: string[];
41
50
  modelOverrides: Record<string, ProviderModelOverride>;
51
+ providerOptions?: ProviderOptionSpec[];
42
52
  }
43
53
  export declare const PROVIDER_CATALOGS: Record<string, ProviderCatalogEntry>;
44
54
  export declare const PROVIDER_DEFAULTS: ProviderDefaults;
@@ -3,6 +3,7 @@ export interface OverdriveProfile {
3
3
  model?: string;
4
4
  mode?: string;
5
5
  effort?: string;
6
+ providerOptions?: Record<string, unknown>;
6
7
  }
7
8
  export type OverdriveSignalInput = boolean | {
8
9
  mode?: 'count' | 'latch';
@@ -20,6 +21,7 @@ export interface OverdriveResolution {
20
21
  mode?: string;
21
22
  effort?: string;
22
23
  crossProvider: boolean;
24
+ providerOptions?: Record<string, unknown>;
23
25
  }
24
26
  export declare function resolveOverdrive(agentOptions: unknown, mode: 'query' | 'execute', baseProvider: string, signal: OverdriveSignal): OverdriveResolution;
25
27
  export interface ModeOverrideResolution {
@@ -1,6 +1,6 @@
1
1
  import type { ModelPricing } from './pricing.types.js';
2
2
  export declare const MODEL_PRICING: Record<string, ModelPricing>;
3
- export declare const MODEL_PRICING_VERSION = 17;
4
- export declare const MODEL_PRICING_UPDATED = "2026-08-13T14:50:03Z";
3
+ export declare const MODEL_PRICING_VERSION = 18;
4
+ export declare const MODEL_PRICING_UPDATED = "2026-08-14T00:00:00Z";
5
5
  export declare const UNPUBLISHED_MODEL_IDS: ReadonlySet<string>;
6
6
  export declare const CATALOG_MODEL_IDS: ReadonlySet<string>;