@crewx/sdk 0.9.0-rc.67 → 0.9.0-rc.69

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.
@@ -14,3 +14,13 @@ export declare const CLAUDE_MODEL_COMPATIBILITY_PAIRS: readonly [{
14
14
  readonly catalogModelId: "claude-sonnet-4-6[1m]";
15
15
  }];
16
16
  export declare function resolveCatalogModelId(model: string): string;
17
+ export declare const ANTIGRAVITY_MODEL_COMPATIBILITY: ReadonlyArray<{
18
+ legacyId: string;
19
+ model: string;
20
+ effort?: string;
21
+ }>;
22
+ export type AntigravityResolvedModel = {
23
+ model?: string;
24
+ effort?: string;
25
+ };
26
+ export declare function resolveAntigravityModel(model?: string): AntigravityResolvedModel;
@@ -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 = 19;
5
- export declare const MODEL_CATALOG_UPDATED = "2026-08-18T00:00:00Z";
4
+ export declare const MODEL_CATALOG_VERSION = 20;
5
+ export declare const MODEL_CATALOG_UPDATED = "2026-08-19T00:00:00Z";
6
6
  export interface ModelCatalogEntry {
7
7
  id: string;
8
8
  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 = 19;
4
- export declare const MODEL_PRICING_UPDATED = "2026-08-18T00:00:00Z";
3
+ export declare const MODEL_PRICING_VERSION = 20;
4
+ export declare const MODEL_PRICING_UPDATED = "2026-08-19T00:00:00Z";
5
5
  export declare const UNPUBLISHED_MODEL_IDS: ReadonlySet<string>;
6
6
  export declare const CATALOG_MODEL_IDS: ReadonlySet<string>;