@alwaysmeticulous/sdk-bundles-api 2.250.5 → 2.250.6

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/index.d.ts CHANGED
@@ -10,5 +10,5 @@ export { InProgressTestRun } from "./replay-orchestrator/bundle-to-sdk/execute-s
10
10
  export { InProgressTestRunChunk, ExecuteTestRunChunkResult, TestRunChunkExecution, } from "./replay-orchestrator/bundle-to-sdk/execute-scheduled-test-run-chunk";
11
11
  export { ReplayAndStoreResultsResult, ReplayExecution, BeforeUserEventResult, IndexedReplayableEvent, } from "./replay-orchestrator/bundle-to-sdk/execute-replay";
12
12
  export { ScreenshotDiffData } from "./replay-orchestrator/bundle-to-sdk/execute-replay";
13
- export { MeticulousPublicApi, InitialNavigationResponse, } from "./window-api/public-window-api";
13
+ export { MeticulousPublicApi } from "./window-api/public-window-api";
14
14
  export { MeticulousPrivateApi } from "./window-api/private-window-api";
@@ -1,3 +1,4 @@
1
+ import { InitialNavigationResponse } from "@alwaysmeticulous/api";
1
2
  /**
2
3
  * This API is exposed on the window under `window.Meticulous`.
3
4
  */
@@ -191,7 +192,7 @@ export interface MeticulousPublicRecordApi {
191
192
  * of server-side rendering (SSR) when running Meticulous. It is unlikely you will need
192
193
  * to call this method unless you have been directed to do so by Meticulous support.
193
194
  */
194
- recordInitialNavigationResponse(har: InitialNavigationResponse): {
195
+ recordInitialNavigationResponse(response: InitialNavigationResponse): {
195
196
  success: boolean;
196
197
  };
197
198
  /**
@@ -206,20 +207,6 @@ export interface MeticulousPublicRecordApi {
206
207
  */
207
208
  flush(): Promise<void>;
208
209
  }
209
- export interface InitialNavigationResponse {
210
- /**
211
- * The status code of the initial navigation response.
212
- */
213
- status: number;
214
- /**
215
- * The headers of the initial navigation response.
216
- */
217
- headers: Record<string, string>;
218
- /**
219
- * The body of the initial navigation response.
220
- */
221
- body: string;
222
- }
223
210
  export interface MeticulousPublicContextApi {
224
211
  /**
225
212
  * Call this method to record the value of a feature flag. If this method is called multiple times
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.250.5",
3
+ "version": "2.250.6",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -19,7 +19,7 @@
19
19
  "depcheck": "depcheck --ignore-patterns=dist"
20
20
  },
21
21
  "dependencies": {
22
- "@alwaysmeticulous/api": "2.250.3"
22
+ "@alwaysmeticulous/api": "2.250.6"
23
23
  },
24
24
  "author": {
25
25
  "name": "The Meticulous Team",
@@ -38,5 +38,5 @@
38
38
  "bugs": {
39
39
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
40
40
  },
41
- "gitHead": "aab594372aa74bc697ee00465266868b7d7a670c"
41
+ "gitHead": "7e686e4a5f40386a2c3d6327469204d6534b376b"
42
42
  }