@kilocode/sdk 7.0.49 → 7.0.50
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.
|
@@ -984,6 +984,7 @@ export type ProviderConfig = {
|
|
|
984
984
|
};
|
|
985
985
|
recommendedIndex?: number;
|
|
986
986
|
prompt?: "codex" | "gemini" | "beast" | "anthropic" | "trinity" | "anthropic_without_todo";
|
|
987
|
+
isFree?: boolean;
|
|
987
988
|
experimental?: boolean;
|
|
988
989
|
status?: "alpha" | "beta" | "deprecated";
|
|
989
990
|
options?: {
|
|
@@ -1393,6 +1394,7 @@ export type Model = {
|
|
|
1393
1394
|
};
|
|
1394
1395
|
recommendedIndex?: number;
|
|
1395
1396
|
prompt?: "codex" | "gemini" | "beast" | "anthropic" | "trinity" | "anthropic_without_todo";
|
|
1397
|
+
isFree?: boolean;
|
|
1396
1398
|
};
|
|
1397
1399
|
export type Provider = {
|
|
1398
1400
|
id: string;
|
|
@@ -3561,6 +3563,7 @@ export type ProviderListResponses = {
|
|
|
3561
3563
|
};
|
|
3562
3564
|
recommendedIndex?: number;
|
|
3563
3565
|
prompt?: "codex" | "gemini" | "beast" | "anthropic" | "trinity" | "anthropic_without_todo";
|
|
3566
|
+
isFree?: boolean;
|
|
3564
3567
|
experimental?: boolean;
|
|
3565
3568
|
status?: "alpha" | "beta" | "deprecated";
|
|
3566
3569
|
options: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@kilocode/sdk",
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.50",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@tsconfig/node22": "22.0.2",
|
|
52
52
|
"@types/node": "22.13.9",
|
|
53
53
|
"typescript": "5.8.2",
|
|
54
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
54
|
+
"@typescript/native-preview": "7.0.0-dev.20260316.1"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {},
|
|
57
57
|
"peerDependencies": {}
|