@alwaysmeticulous/cli 2.43.0 → 2.44.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.
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
/// <reference types="yargs" />
|
|
2
|
-
import { Replay, ScreenshotDiffOptions
|
|
2
|
+
import { Replay, ScreenshotDiffOptions } from "@alwaysmeticulous/api";
|
|
3
3
|
import { ReplayExecutionOptions, ReplayTarget } from "@alwaysmeticulous/sdk-bundles-api";
|
|
4
|
-
export interface ReplayAndStoreResultsResult {
|
|
5
|
-
replay: Replay;
|
|
6
|
-
/**
|
|
7
|
-
* Empty if screenshottingOptions.enabled was false.
|
|
8
|
-
*/
|
|
9
|
-
screenshotDiffResultsByBaseReplayId: Record<string, ScreenshotDiffResult[]>;
|
|
10
|
-
}
|
|
11
4
|
export interface RawReplayCommandHandlerOptions extends ScreenshotDiffOptions, Omit<ReplayExecutionOptions, "maxDurationMs" | "maxEventCount"> {
|
|
12
5
|
screenshot: boolean;
|
|
13
6
|
appUrl: string | null | undefined;
|
|
@@ -59,9 +52,7 @@ export declare const replayCommand: import("yargs").CommandModule<unknown, impor
|
|
|
59
52
|
readonly default: false;
|
|
60
53
|
};
|
|
61
54
|
shiftTime: {
|
|
62
|
-
readonly boolean: true;
|
|
63
|
-
* Empty if screenshottingOptions.enabled was false.
|
|
64
|
-
*/
|
|
55
|
+
readonly boolean: true;
|
|
65
56
|
readonly description: "Shift time during simulation to be set as the recording time";
|
|
66
57
|
readonly default: true;
|
|
67
58
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.44.0",
|
|
4
4
|
"description": "The Meticulous CLI",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"depcheck": "depcheck --ignore-patterns=dist"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@alwaysmeticulous/api": "^2.
|
|
31
|
-
"@alwaysmeticulous/client": "^2.
|
|
32
|
-
"@alwaysmeticulous/common": "^2.
|
|
33
|
-
"@alwaysmeticulous/downloading-helpers": "^2.
|
|
34
|
-
"@alwaysmeticulous/record": "^2.
|
|
30
|
+
"@alwaysmeticulous/api": "^2.44.0",
|
|
31
|
+
"@alwaysmeticulous/client": "^2.44.0",
|
|
32
|
+
"@alwaysmeticulous/common": "^2.44.0",
|
|
33
|
+
"@alwaysmeticulous/downloading-helpers": "^2.44.0",
|
|
34
|
+
"@alwaysmeticulous/record": "^2.44.0",
|
|
35
35
|
"@alwaysmeticulous/replay-debugger-ui": "^2.42.0",
|
|
36
|
-
"@alwaysmeticulous/replay-orchestrator-launcher": "^2.
|
|
37
|
-
"@alwaysmeticulous/sdk-bundles-api": "^2.
|
|
36
|
+
"@alwaysmeticulous/replay-orchestrator-launcher": "^2.44.0",
|
|
37
|
+
"@alwaysmeticulous/sdk-bundles-api": "^2.44.0",
|
|
38
38
|
"@alwaysmeticulous/sentry": "^2.40.0",
|
|
39
39
|
"@sentry/node": "^7.36.0",
|
|
40
40
|
"axios": "^1.2.6",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"coverageDirectory": "../coverage",
|
|
80
80
|
"testEnvironment": "node"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "3895b3036d7c97609f83e8b41593995eba5062ba"
|
|
83
83
|
}
|