@cline/shared 0.0.52 → 0.0.53-nightly.1782703376
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/index.browser.d.ts +2 -2
- package/dist/index.browser.js +10 -10
- package/dist/index.d.ts +2 -2
- package/dist/index.js +23 -23
- package/dist/llms/gateway.d.ts +2 -1
- package/dist/llms/tokens.d.ts +1 -0
- package/package.json +1 -1
package/dist/llms/gateway.d.ts
CHANGED
|
@@ -7,7 +7,8 @@ export type JsonValue = string | number | boolean | null | JsonValue[] | {
|
|
|
7
7
|
};
|
|
8
8
|
export type GatewayModelCapability = "text" | "tools" | "reasoning" | "prompt-cache" | "images" | "audio" | "structured-output";
|
|
9
9
|
export type GatewayPromptCacheStrategy = "anthropic-automatic";
|
|
10
|
-
export
|
|
10
|
+
export declare const USAGE_COST_DISPLAYS: readonly ["show", "hide", "subscription"];
|
|
11
|
+
export type GatewayUsageCostDisplay = (typeof USAGE_COST_DISPLAYS)[number];
|
|
11
12
|
export type GatewayPromptCacheFormat = "anthropic-cache-control";
|
|
12
13
|
export type GatewayReasoningFormat = "anthropic-thinking" | "glm-thinking" | "minimax-thinking";
|
|
13
14
|
export type GatewayModelRoute = {
|
package/dist/llms/tokens.d.ts
CHANGED