@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.
@@ -79,6 +79,7 @@ class BaseMidsceneTools {
79
79
  if (!reportFileName) return;
80
80
  return {
81
81
  reportFileName,
82
+ appendToExistingReport: true,
82
83
  reportAttributes: {
83
84
  'data-group-id': reportFileName
84
85
  }
@@ -107,6 +107,7 @@ class BaseMidsceneTools {
107
107
  if (!reportFileName) return;
108
108
  return {
109
109
  reportFileName,
110
+ appendToExistingReport: true,
110
111
  reportAttributes: {
111
112
  'data-group-id': reportFileName
112
113
  }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midscene/shared",
3
- "version": "1.7.6",
3
+ "version": "1.7.7-beta-20260428102047.0",
4
4
  "repository": "https://github.com/web-infra-dev/midscene",
5
5
  "homepage": "https://midscenejs.com/",
6
6
  "types": "./dist/types/index.d.ts",
@@ -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
  },