@alwaysmeticulous/sdk-bundles-api 2.242.1 → 2.242.2

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.
@@ -10,5 +10,5 @@ export interface MeticulousPrivateApi {
10
10
  /** Initialises and starts Meticulous recording */
11
11
  initialiseRecorder?: () => void;
12
12
  stopRecording?: () => void;
13
- flushPendingPayloads?: Promise<void>;
13
+ flushPendingPayloads?: () => Promise<void>;
14
14
  }
@@ -82,7 +82,7 @@ export interface MeticulousPublicRecordApi {
82
82
  * are recording automated tests, it is recommended to call this at the end of each test
83
83
  * and before any full-page navigation.
84
84
  */
85
- flush(): Promise<void>;
85
+ flush(): () => Promise<void>;
86
86
  }
87
87
  export interface MeticulousPublicContextApi {
88
88
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.242.1",
3
+ "version": "2.242.2",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -38,5 +38,5 @@
38
38
  "bugs": {
39
39
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
40
40
  },
41
- "gitHead": "617b38e544044cd57b67c442ed15b83bea34aa55"
41
+ "gitHead": "078e8d238054af0fd51d889a88bd9f951e8aef58"
42
42
  }