@crewx/sdk 0.9.0-rc.69 → 0.9.0-rc.70
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.
- package/dist/config/model-compat.d.ts +5 -0
- package/dist/config/models.remote.d.ts +1 -0
- package/dist/esm/index.js +65 -65
- package/dist/index.browser.d.ts +1 -1
- package/dist/index.browser.js +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +66 -66
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export declare const CLAUDE_MODEL_COMPATIBILITY_PAIRS: readonly [{
|
|
|
13
13
|
readonly baseModelId: "claude-sonnet-4-6";
|
|
14
14
|
readonly catalogModelId: "claude-sonnet-4-6[1m]";
|
|
15
15
|
}];
|
|
16
|
+
export declare function normalizeAntigravityMode(mode: string): string;
|
|
16
17
|
export declare function resolveCatalogModelId(model: string): string;
|
|
17
18
|
export declare const ANTIGRAVITY_MODEL_COMPATIBILITY: ReadonlyArray<{
|
|
18
19
|
legacyId: string;
|
|
@@ -24,3 +25,7 @@ export type AntigravityResolvedModel = {
|
|
|
24
25
|
effort?: string;
|
|
25
26
|
};
|
|
26
27
|
export declare function resolveAntigravityModel(model?: string): AntigravityResolvedModel;
|
|
28
|
+
export declare function resolveProviderCatalogModel(providerId: string, model?: string): {
|
|
29
|
+
model?: string;
|
|
30
|
+
effort?: string;
|
|
31
|
+
};
|