@kilocode/sdk 7.3.46 → 7.3.49

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
  ]);
@@ -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
  *