@alwaysmeticulous/api 2.82.0 → 2.83.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.
|
@@ -86,15 +86,12 @@ export interface ScreenshotDiffResultFlake {
|
|
|
86
86
|
* Note that in the context of these diffs base means the original head screenshot taken,
|
|
87
87
|
* and head means the new head screenshot taken.
|
|
88
88
|
*/
|
|
89
|
-
diffsToHeadScreenshotOnRetries:
|
|
89
|
+
diffsToHeadScreenshotOnRetries: ScreenshotDiffRetryResult[];
|
|
90
90
|
}
|
|
91
|
-
export type ScreenshotDiffRetryResult =
|
|
92
|
-
|
|
93
|
-
* Only present on diffs from newer replays.
|
|
94
|
-
*/
|
|
95
|
-
baseReplayId?: string;
|
|
91
|
+
export type ScreenshotDiffRetryResult = SingleTryScreenshotDiffRetryResult | ScreenshotDiffResultMissingBaseAndHead;
|
|
92
|
+
export type SingleTryScreenshotDiffRetryResult = {
|
|
96
93
|
/**
|
|
97
94
|
* Only present on diffs from newer replays.
|
|
98
95
|
*/
|
|
99
96
|
headReplayId?: string;
|
|
100
|
-
} &
|
|
97
|
+
} & SingleTryScreenshotDiffResult;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.83.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": "e92cb70a02982f9719a8556509c442ec8a3dc0a9"
|
|
39
39
|
}
|