@kilocode/sdk 7.3.45 → 7.3.48

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.
@@ -596,6 +596,7 @@ export class Session extends HeyApiClient {
596
596
  { in: "query", key: "workspace" },
597
597
  { in: "query", key: "projectID" },
598
598
  { in: "query", key: "worktrees" },
599
+ { in: "query", key: "current" },
599
600
  { in: "query", key: "roots" },
600
601
  { in: "query", key: "start" },
601
602
  { in: "query", key: "cursor" },
@@ -892,7 +893,7 @@ export class Worktree extends HeyApiClient {
892
893
  /**
893
894
  * List worktrees
894
895
  *
895
- * List all sandbox worktrees for the current project.
896
+ * List all git worktrees for the current project and whether Kilo manages them.
896
897
  */
897
898
  list(parameters, options) {
898
899
  const params = buildClientParams([parameters], [
@@ -1277,6 +1278,7 @@ export class Vcs extends HeyApiClient {
1277
1278
  { in: "query", key: "directory" },
1278
1279
  { in: "query", key: "workspace" },
1279
1280
  { in: "query", key: "mode" },
1281
+ { in: "query", key: "context" },
1280
1282
  ],
1281
1283
  },
1282
1284
  ]);
@@ -3112,7 +3114,7 @@ export class Model extends HeyApiClient {
3112
3114
  * Retrieve available v2 models ordered by release date.
3113
3115
  */
3114
3116
  list(parameters, options) {
3115
- const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "instance" }] }]);
3117
+ const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "location" }] }]);
3116
3118
  return (options?.client ?? this.client).get({
3117
3119
  url: "/api/model",
3118
3120
  ...options,
@@ -3127,7 +3129,7 @@ export class Provider2 extends HeyApiClient {
3127
3129
  * Retrieve active v2 AI providers so clients can show provider availability and configuration.
3128
3130
  */
3129
3131
  list(parameters, options) {
3130
- const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "instance" }] }]);
3132
+ const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "location" }] }]);
3131
3133
  return (options?.client ?? this.client).get({
3132
3134
  url: "/api/provider",
3133
3135
  ...options,
@@ -3144,7 +3146,7 @@ export class Provider2 extends HeyApiClient {
3144
3146
  {
3145
3147
  args: [
3146
3148
  { in: "path", key: "providerID" },
3147
- { in: "query", key: "instance" },
3149
+ { in: "query", key: "location" },
3148
3150
  ],
3149
3151
  },
3150
3152
  ]);
@@ -3255,6 +3257,7 @@ export class Config3 extends HeyApiClient {
3255
3257
  { in: "body", key: "keybinds" },
3256
3258
  { in: "body", key: "plugin" },
3257
3259
  { in: "body", key: "plugin_enabled" },
3260
+ { in: "body", key: "title_icon" },
3258
3261
  { in: "body", key: "scroll_speed" },
3259
3262
  { in: "body", key: "scroll_acceleration" },
3260
3263
  { in: "body", key: "diff_style" },
@@ -4070,6 +4073,26 @@ export class Kilo extends HeyApiClient {
4070
4073
  ...params,
4071
4074
  });
4072
4075
  }
4076
+ /**
4077
+ * Get Kilo authentication status
4078
+ *
4079
+ * Check whether a locally stored Kilo credential can authenticate Gateway requests
4080
+ */
4081
+ authStatus(parameters, options) {
4082
+ const params = buildClientParams([parameters], [
4083
+ {
4084
+ args: [
4085
+ { in: "query", key: "directory" },
4086
+ { in: "query", key: "workspace" },
4087
+ ],
4088
+ },
4089
+ ]);
4090
+ return (options?.client ?? this.client).get({
4091
+ url: "/kilo/auth-status",
4092
+ ...options,
4093
+ ...params,
4094
+ });
4095
+ }
4073
4096
  /**
4074
4097
  * Get organization custom modes
4075
4098
  *
@@ -4390,7 +4413,7 @@ export class Kilocode extends HeyApiClient {
4390
4413
  /**
4391
4414
  * Remove a skill
4392
4415
  *
4393
- * Remove a skill by deleting its directory from disk and clearing it from cache.
4416
+ * Remove a skill by deleting its manifest from disk and clearing it from cache.
4394
4417
  */
4395
4418
  removeSkill(parameters, options) {
4396
4419
  const params = buildClientParams([parameters], [