@midscene/shared 1.7.6 → 1.7.7-beta-20260428102047.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.
|
@@ -88,6 +88,7 @@ export declare abstract class BaseMidsceneTools<TAgent extends BaseAgent = BaseA
|
|
|
88
88
|
protected readCliReportAgentOptions(): {
|
|
89
89
|
reportFileName: string;
|
|
90
90
|
reportAttributes: Record<string, string>;
|
|
91
|
+
appendToExistingReport: true;
|
|
91
92
|
} | undefined;
|
|
92
93
|
/**
|
|
93
94
|
* Must be implemented by subclasses to create a temporary device instance
|
package/package.json
CHANGED
package/src/mcp/base-tools.ts
CHANGED
|
@@ -228,6 +228,7 @@ export abstract class BaseMidsceneTools<
|
|
|
228
228
|
| {
|
|
229
229
|
reportFileName: string;
|
|
230
230
|
reportAttributes: Record<string, string>;
|
|
231
|
+
appendToExistingReport: true;
|
|
231
232
|
}
|
|
232
233
|
| undefined {
|
|
233
234
|
const reportFileName = this.readCliReportFileName();
|
|
@@ -236,6 +237,7 @@ export abstract class BaseMidsceneTools<
|
|
|
236
237
|
}
|
|
237
238
|
return {
|
|
238
239
|
reportFileName,
|
|
240
|
+
appendToExistingReport: true,
|
|
239
241
|
reportAttributes: {
|
|
240
242
|
'data-group-id': reportFileName,
|
|
241
243
|
},
|