@engineer-ai/sdk 1.7.2 → 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.
package/dist/v2/gen/sdk.gen.d.ts
CHANGED
|
@@ -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
|
*/
|
|
@@ -948,6 +948,10 @@ export type Session = {
|
|
|
948
948
|
worktreePath?: string;
|
|
949
949
|
branch?: string;
|
|
950
950
|
mode?: "agent" | "plan" | "goal";
|
|
951
|
+
/**
|
|
952
|
+
* Relative path to the plan file, set when a plan file exists for this session.
|
|
953
|
+
*/
|
|
954
|
+
planPath?: string;
|
|
951
955
|
revert?: {
|
|
952
956
|
messageID: string;
|
|
953
957
|
partID?: string;
|
|
@@ -1823,9 +1827,9 @@ export type Config = {
|
|
|
1823
1827
|
*/
|
|
1824
1828
|
memory_model?: string;
|
|
1825
1829
|
/**
|
|
1826
|
-
* Model to use for
|
|
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.
|
|
1827
1831
|
*/
|
|
1828
|
-
|
|
1832
|
+
inner_model?: {
|
|
1829
1833
|
modelID: string;
|
|
1830
1834
|
providerID: string;
|
|
1831
1835
|
};
|
|
@@ -1894,6 +1898,7 @@ export type Config = {
|
|
|
1894
1898
|
summary?: AgentConfig;
|
|
1895
1899
|
compaction?: AgentConfig;
|
|
1896
1900
|
sessionMemory?: AgentConfig;
|
|
1901
|
+
historyMemory?: AgentConfig;
|
|
1897
1902
|
[key: string]: AgentConfig | undefined;
|
|
1898
1903
|
};
|
|
1899
1904
|
/**
|
|
@@ -3027,7 +3032,7 @@ export type SessionCreateData = {
|
|
|
3027
3032
|
body?: {
|
|
3028
3033
|
parentID?: string;
|
|
3029
3034
|
title?: string;
|
|
3030
|
-
type?: "session_memory_extraction" | "cron";
|
|
3035
|
+
type?: "session_memory_extraction" | "cron" | "session_history_summary";
|
|
3031
3036
|
cronName?: string;
|
|
3032
3037
|
mode?: "agent" | "plan" | "goal";
|
|
3033
3038
|
permission?: PermissionRuleset;
|
|
@@ -5429,6 +5434,10 @@ export type AppSkillsResponses = {
|
|
|
5429
5434
|
name: string;
|
|
5430
5435
|
description: string;
|
|
5431
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;
|
|
5432
5441
|
location: string;
|
|
5433
5442
|
content: string;
|
|
5434
5443
|
}>;
|