@midscene/core 1.3.3-beta-20260129042850.0 → 1.3.3

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.
@@ -6,7 +6,7 @@ export interface ConversationHistoryOptions {
6
6
  export declare class ConversationHistory {
7
7
  private readonly messages;
8
8
  private subGoals;
9
- private notes;
9
+ private memories;
10
10
  pendingFeedbackMessage: string;
11
11
  constructor(options?: ConversationHistoryOptions);
12
12
  resetPendingFeedbackMessageIfExists(): void;
@@ -51,21 +51,21 @@ export declare class ConversationHistory {
51
51
  */
52
52
  subGoalsToText(): string;
53
53
  /**
54
- * Append a note to the notes list
54
+ * Append a memory to the memories list
55
55
  */
56
- appendNote(note: string): void;
56
+ appendMemory(memory: string): void;
57
57
  /**
58
- * Get all notes
58
+ * Get all memories
59
59
  */
60
- getNotes(): string[];
60
+ getMemories(): string[];
61
61
  /**
62
- * Convert notes to text representation
62
+ * Convert memories to text representation
63
63
  */
64
- notesToText(): string;
64
+ memoriesToText(): string;
65
65
  /**
66
- * Clear all notes
66
+ * Clear all memories
67
67
  */
68
- clearNotes(): void;
68
+ clearMemories(): void;
69
69
  /**
70
70
  * Compress the conversation history if it exceeds the threshold.
71
71
  * Removes the oldest messages and replaces them with a single placeholder message.
@@ -178,7 +178,7 @@ export interface RawResponsePlanningAIResponse {
178
178
  action: PlanningAction;
179
179
  thought?: string;
180
180
  log: string;
181
- note?: string;
181
+ memory?: string;
182
182
  error?: string;
183
183
  finalizeMessage?: string;
184
184
  finalizeSuccess?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@midscene/core",
3
3
  "description": "Automate browser actions, extract data, and perform assertions using AI. It offers JavaScript SDK, Chrome extension, and support for scripting in YAML. See https://midscenejs.com/ for details.",
4
- "version": "1.3.3-beta-20260129042850.0",
4
+ "version": "1.3.3",
5
5
  "repository": "https://github.com/web-infra-dev/midscene",
6
6
  "homepage": "https://midscenejs.com/",
7
7
  "main": "./dist/lib/index.js",
@@ -89,7 +89,7 @@
89
89
  "semver": "7.5.2",
90
90
  "undici": "^6.0.0",
91
91
  "zod": "3.24.3",
92
- "@midscene/shared": "1.3.3-beta-20260129042850.0"
92
+ "@midscene/shared": "1.3.3"
93
93
  },
94
94
  "devDependencies": {
95
95
  "@rslib/core": "^0.18.3",