@alwaysmeticulous/api 2.223.0 → 2.225.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.
package/dist/index.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ export { ConsoleMessageWithStackTracePointer, VirtualTimeChange, MeticulousConso
|
|
|
15
15
|
export { InjectableRequestHeader, StaticHeaderValue, DynamicHeaderValue, AllRequests, AppUrlRequestsOnly, CustomRequests, } from "./sdk-bundle-api/sdk-to-bundle/header-injection";
|
|
16
16
|
export { ConsoleErrorDivergenceIndicator, Divergence, DivergenceConsoleError, DivergenceIndicator, InitialNavigationDivergenceIndicator, NetworkActivityDivergenceIndicator, ScreenshotDivergenceIdentifier, UrlChangeEventDivergenceIndicator, UserEventDivergenceIndicator, } from "./sdk-bundle-api/bundle-to-sdk/replay-divergence";
|
|
17
17
|
export { AssetUploadMetadata } from "./sdk-bundle-api/sdk-to-bundle/asset-upload-metadata";
|
|
18
|
+
export { S3Location } from "./s3.types";
|
package/dist/s3.types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"s3.types.js","sourceRoot":"","sources":["../src/s3.types.ts"],"names":[],"mappings":""}
|
|
@@ -141,6 +141,13 @@ export interface ScreenshotDiffResultDifference extends ScreenshotDiffResultComp
|
|
|
141
141
|
* and this field will be true, otherwise this field will not be present.
|
|
142
142
|
*/
|
|
143
143
|
isClassNamesListTruncated?: true;
|
|
144
|
+
/**
|
|
145
|
+
* Records whether at least part of the diff was in the bounding box of an element that was ignored
|
|
146
|
+
* in either the base or head screenshot.
|
|
147
|
+
*
|
|
148
|
+
* Only present on replays since ~June 2025.
|
|
149
|
+
*/
|
|
150
|
+
diffInBoundingBoxOfIgnoredElement?: boolean;
|
|
144
151
|
}
|
|
145
152
|
/**
|
|
146
153
|
* The base screenshot differed from the head screenshot, but when the head
|
|
@@ -163,6 +170,13 @@ export interface ScreenshotDiffResultFlake {
|
|
|
163
170
|
* and head means the new head screenshot taken.
|
|
164
171
|
*/
|
|
165
172
|
diffsToHeadScreenshotOnRetries: ScreenshotDiffRetryResult[];
|
|
173
|
+
/**
|
|
174
|
+
* Records whether at least part of the diff was in the bounding box of an element that was ignored
|
|
175
|
+
* in either the base or head screenshot.
|
|
176
|
+
*
|
|
177
|
+
* Only present on replays since ~June 2025.
|
|
178
|
+
*/
|
|
179
|
+
diffInBoundingBoxOfIgnoredElement?: boolean;
|
|
166
180
|
}
|
|
167
181
|
/**
|
|
168
182
|
* - **varied-results-on-retry**: The head screenshot was retaken one or more times and at least one of
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.225.0",
|
|
4
4
|
"description": "Meticulous API types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "615032f8b34b25b5f2048639d31cecbbc013f2e6"
|
|
39
39
|
}
|