@kilocode/sdk 7.4.8 → 7.4.11

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.
@@ -2742,6 +2742,7 @@ export declare class Memory extends HeyApiClient {
2742
2742
  directory?: string;
2743
2743
  workspace?: string;
2744
2744
  autoConsolidate?: boolean;
2745
+ verbose?: boolean;
2745
2746
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<MemoryConfigureResponses, MemoryConfigureErrors, ThrowOnError, "fields">;
2746
2747
  /**
2747
2748
  * Rebuild memory index
@@ -5308,6 +5308,7 @@ export class Memory extends HeyApiClient {
5308
5308
  { in: "query", key: "directory" },
5309
5309
  { in: "query", key: "workspace" },
5310
5310
  { in: "body", key: "autoConsolidate" },
5311
+ { in: "body", key: "verbose" },
5311
5312
  ],
5312
5313
  },
5313
5314
  ]);
@@ -3055,6 +3055,8 @@ export type EventMemoryStatus = {
3055
3055
  duplicateOf?: string;
3056
3056
  tokens?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3057
3057
  operationCount?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3058
+ added?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3059
+ removed?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3058
3060
  skippedCount?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3059
3061
  sources?: Array<string>;
3060
3062
  files?: Array<string>;
@@ -3089,6 +3091,8 @@ export type EventMemoryUpdated = {
3089
3091
  duplicateOf?: string;
3090
3092
  tokens?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3091
3093
  operationCount?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3094
+ added?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3095
+ removed?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3092
3096
  skippedCount?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3093
3097
  sources?: Array<string>;
3094
3098
  files?: Array<string>;
@@ -3123,6 +3127,8 @@ export type EventMemoryError = {
3123
3127
  duplicateOf?: string;
3124
3128
  tokens?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3125
3129
  operationCount?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3130
+ added?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3131
+ removed?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3126
3132
  skippedCount?: number | "NaN" | "Infinity" | "-Infinity" | "Infinity" | "-Infinity" | "NaN";
3127
3133
  sources?: Array<string>;
3128
3134
  files?: Array<string>;
@@ -5219,6 +5225,8 @@ export type EventMemoryStatus1 = {
5219
5225
  duplicateOf?: string;
5220
5226
  tokens?: number | "NaN" | "Infinity" | "-Infinity";
5221
5227
  operationCount?: number | "NaN" | "Infinity" | "-Infinity";
5228
+ added?: number | "NaN" | "Infinity" | "-Infinity";
5229
+ removed?: number | "NaN" | "Infinity" | "-Infinity";
5222
5230
  skippedCount?: number | "NaN" | "Infinity" | "-Infinity";
5223
5231
  sources?: Array<string>;
5224
5232
  files?: Array<string>;
@@ -5253,6 +5261,8 @@ export type EventMemoryUpdated1 = {
5253
5261
  duplicateOf?: string;
5254
5262
  tokens?: number | "NaN" | "Infinity" | "-Infinity";
5255
5263
  operationCount?: number | "NaN" | "Infinity" | "-Infinity";
5264
+ added?: number | "NaN" | "Infinity" | "-Infinity";
5265
+ removed?: number | "NaN" | "Infinity" | "-Infinity";
5256
5266
  skippedCount?: number | "NaN" | "Infinity" | "-Infinity";
5257
5267
  sources?: Array<string>;
5258
5268
  files?: Array<string>;
@@ -5287,6 +5297,8 @@ export type EventMemoryError1 = {
5287
5297
  duplicateOf?: string;
5288
5298
  tokens?: number | "NaN" | "Infinity" | "-Infinity";
5289
5299
  operationCount?: number | "NaN" | "Infinity" | "-Infinity";
5300
+ added?: number | "NaN" | "Infinity" | "-Infinity";
5301
+ removed?: number | "NaN" | "Infinity" | "-Infinity";
5290
5302
  skippedCount?: number | "NaN" | "Infinity" | "-Infinity";
5291
5303
  sources?: Array<string>;
5292
5304
  files?: Array<string>;
@@ -11638,6 +11650,7 @@ export type MemoryStatusResponses = {
11638
11650
  scope: "project";
11639
11651
  autoInject: boolean;
11640
11652
  autoConsolidate: boolean;
11653
+ verbose: boolean;
11641
11654
  capture: {
11642
11655
  mode: "selective";
11643
11656
  turnClose: boolean;
@@ -11713,6 +11726,7 @@ export type MemoryShowResponses = {
11713
11726
  scope: "project";
11714
11727
  autoInject: boolean;
11715
11728
  autoConsolidate: boolean;
11729
+ verbose: boolean;
11716
11730
  capture: {
11717
11731
  mode: "selective";
11718
11732
  turnClose: boolean;
@@ -11788,6 +11802,7 @@ export type MemoryEnableResponses = {
11788
11802
  scope: "project";
11789
11803
  autoInject: boolean;
11790
11804
  autoConsolidate: boolean;
11805
+ verbose: boolean;
11791
11806
  capture: {
11792
11807
  mode: "selective";
11793
11808
  turnClose: boolean;
@@ -11860,6 +11875,7 @@ export type MemoryDisableResponses = {
11860
11875
  scope: "project";
11861
11876
  autoInject: boolean;
11862
11877
  autoConsolidate: boolean;
11878
+ verbose: boolean;
11863
11879
  capture: {
11864
11880
  mode: "selective";
11865
11881
  turnClose: boolean;
@@ -11897,6 +11913,7 @@ export type MemoryDisableResponse = MemoryDisableResponses[keyof MemoryDisableRe
11897
11913
  export type MemoryConfigureData = {
11898
11914
  body?: {
11899
11915
  autoConsolidate?: boolean;
11916
+ verbose?: boolean;
11900
11917
  };
11901
11918
  path?: never;
11902
11919
  query?: {
@@ -11928,6 +11945,7 @@ export type MemoryConfigureResponses = {
11928
11945
  scope: "project";
11929
11946
  autoInject: boolean;
11930
11947
  autoConsolidate: boolean;
11948
+ verbose: boolean;
11931
11949
  capture: {
11932
11950
  mode: "selective";
11933
11951
  turnClose: boolean;
@@ -11994,6 +12012,7 @@ export type MemoryRebuildResponses = {
11994
12012
  scope: "project";
11995
12013
  autoInject: boolean;
11996
12014
  autoConsolidate: boolean;
12015
+ verbose: boolean;
11997
12016
  capture: {
11998
12017
  mode: "selective";
11999
12018
  turnClose: boolean;
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.4.8",
4
+ "version": "7.4.11",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {