@crewx/sdk 0.9.0-rc.87 → 0.9.0-rc.89

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.
@@ -1,8 +1,12 @@
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 = 21;
5
- export declare const MODEL_CATALOG_UPDATED = "2026-09-02T00:00:00Z";
4
+ export declare const EFFORT_LEVELS: readonly ["none", "minimal", "low", "medium", "high", "xhigh", "max", "ultra"];
5
+ export type EffortLevel = (typeof EFFORT_LEVELS)[number];
6
+ export type KnownEffortLevel = EffortLevel;
7
+ export declare const PROVIDER_ARGV_EFFORTS: Record<string, readonly string[]>;
8
+ export declare const MODEL_CATALOG_VERSION = 22;
9
+ export declare const MODEL_CATALOG_UPDATED = "2026-09-04T00:00:00Z";
6
10
  export interface ModelCatalogEntry {
7
11
  id: string;
8
12
  name: string;
@@ -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 = 21;
4
- export declare const MODEL_PRICING_UPDATED = "2026-09-02T00:00:00Z";
3
+ export declare const MODEL_PRICING_VERSION = 22;
4
+ export declare const MODEL_PRICING_UPDATED = "2026-09-04T00:00:00Z";
5
5
  export declare const UNPUBLISHED_MODEL_IDS: ReadonlySet<string>;
6
6
  export declare const CATALOG_MODEL_IDS: ReadonlySet<string>;