@kilocode/sdk 7.0.38 → 7.0.40

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.
@@ -882,7 +882,7 @@ export type PermissionConfig = {
882
882
  [key: string]: PermissionRuleConfig | Array<string> | PermissionActionConfig | undefined;
883
883
  } | PermissionActionConfig;
884
884
  export type AgentConfig = {
885
- model?: string;
885
+ model?: string | null;
886
886
  /**
887
887
  * Default model variant for this agent (applies only when using the agent's configured model).
888
888
  */
@@ -922,7 +922,7 @@ export type AgentConfig = {
922
922
  */
923
923
  maxSteps?: number;
924
924
  permission?: PermissionConfig;
925
- [key: string]: unknown | string | number | {
925
+ [key: string]: unknown | string | null | string | number | {
926
926
  [key: string]: boolean;
927
927
  } | boolean | "subagent" | "primary" | "all" | {
928
928
  [key: string]: unknown;
@@ -1146,11 +1146,11 @@ export type Config = {
1146
1146
  /**
1147
1147
  * Model to use in the format of provider/model, eg anthropic/claude-2
1148
1148
  */
1149
- model?: string;
1149
+ model?: string | null;
1150
1150
  /**
1151
1151
  * Small model to use for tasks like title generation in the format of provider/model
1152
1152
  */
1153
- small_model?: string;
1153
+ small_model?: string | null;
1154
1154
  /**
1155
1155
  * Default agent to use when none is specified. Must be a primary agent. Falls back to 'code' if not set or if the specified agent is invalid.
1156
1156
  */
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.38",
4
+ "version": "7.0.40",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {