@engineer-ai/sdk 1.7.3 → 1.8.0

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.
@@ -338,7 +338,7 @@ export declare class Session extends HeyApiClient {
338
338
  directory?: string;
339
339
  parentID?: string;
340
340
  title?: string;
341
- type?: "session_memory_extraction" | "cron";
341
+ type?: "session_memory_extraction" | "cron" | "session_history_summary";
342
342
  cronName?: string;
343
343
  mode?: "agent" | "plan" | "goal";
344
344
  permission?: PermissionRuleset;
@@ -917,7 +917,7 @@ export type Session = {
917
917
  projectID: string;
918
918
  directory: string;
919
919
  parentID?: string;
920
- type?: "session_memory_extraction" | "cron";
920
+ type?: "session_memory_extraction" | "cron" | "session_history_summary";
921
921
  /**
922
922
  * Cron config name that created this session
923
923
  */
@@ -1827,9 +1827,9 @@ export type Config = {
1827
1827
  */
1828
1828
  memory_model?: string;
1829
1829
  /**
1830
- * Model to use for lead agent.
1830
+ * Model to use for the inner (history-memory) agent. If not set, the historyMemory agent falls back to memory_model or the default model.
1831
1831
  */
1832
- lead_model?: {
1832
+ inner_model?: {
1833
1833
  modelID: string;
1834
1834
  providerID: string;
1835
1835
  };
@@ -1898,6 +1898,7 @@ export type Config = {
1898
1898
  summary?: AgentConfig;
1899
1899
  compaction?: AgentConfig;
1900
1900
  sessionMemory?: AgentConfig;
1901
+ historyMemory?: AgentConfig;
1901
1902
  [key: string]: AgentConfig | undefined;
1902
1903
  };
1903
1904
  /**
@@ -3031,7 +3032,7 @@ export type SessionCreateData = {
3031
3032
  body?: {
3032
3033
  parentID?: string;
3033
3034
  title?: string;
3034
- type?: "session_memory_extraction" | "cron";
3035
+ type?: "session_memory_extraction" | "cron" | "session_history_summary";
3035
3036
  cronName?: string;
3036
3037
  mode?: "agent" | "plan" | "goal";
3037
3038
  permission?: PermissionRuleset;
@@ -5433,6 +5434,10 @@ export type AppSkillsResponses = {
5433
5434
  name: string;
5434
5435
  description: string;
5435
5436
  inject?: boolean;
5437
+ /**
5438
+ * Whether this skill can be auto-updated by the extraction agent. Defaults to true for memory/skills, false otherwise.
5439
+ */
5440
+ autoUpdate?: boolean;
5436
5441
  location: string;
5437
5442
  content: string;
5438
5443
  }>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@engineer-ai/sdk",
4
- "version": "1.7.3",
4
+ "version": "1.8.0",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {