@alwaysmeticulous/client 2.297.1 → 2.298.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/api/__tests__/agent.api.spec.d.ts +1 -0
- package/dist/api/__tests__/agent.api.spec.js +56 -0
- package/dist/api/__tests__/agent.api.spec.js.map +1 -0
- package/dist/api/agent.api.d.ts +40 -2
- package/dist/api/agent.api.js +28 -4
- package/dist/api/agent.api.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="39873819-f201-5b0f-9909-477955da96dd")}catch(e){}}();
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
const vitest_1 = require("vitest");
|
|
6
|
+
const agent_api_1 = require("../agent.api");
|
|
7
|
+
(0, vitest_1.describe)("getTestRunDiffsSummary", () => {
|
|
8
|
+
let client;
|
|
9
|
+
const asClient = () => client;
|
|
10
|
+
const paramsFromLastCall = () => client.get.mock.calls[0][1].params;
|
|
11
|
+
(0, vitest_1.beforeEach)(() => {
|
|
12
|
+
client = {
|
|
13
|
+
get: vitest_1.vi.fn().mockResolvedValue({ data: { status: "complete" } }),
|
|
14
|
+
};
|
|
15
|
+
});
|
|
16
|
+
(0, vitest_1.it)("always sends the client version, even with no options", async () => {
|
|
17
|
+
await (0, agent_api_1.getTestRunDiffsSummary)(asClient(), "tr-1");
|
|
18
|
+
(0, vitest_1.expect)(client.get).toHaveBeenCalledWith("agent/test-runs/tr-1/diffs-summary", {
|
|
19
|
+
params: { clientVersion: String(agent_api_1.DIFFS_SUMMARY_CLIENT_VERSION) },
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
(0, vitest_1.it)("omits the opt-in params when their options are unset", async () => {
|
|
23
|
+
await (0, agent_api_1.getTestRunDiffsSummary)(asClient(), "tr-1", {});
|
|
24
|
+
(0, vitest_1.expect)(paramsFromLastCall()).toEqual({
|
|
25
|
+
clientVersion: String(agent_api_1.DIFFS_SUMMARY_CLIENT_VERSION),
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
(0, vitest_1.it)("maps each option to its query param", async () => {
|
|
29
|
+
await (0, agent_api_1.getTestRunDiffsSummary)(asClient(), "tr-1", {
|
|
30
|
+
includeReplayIds: true,
|
|
31
|
+
includeDomDiffIds: true,
|
|
32
|
+
includeAllDiffs: true,
|
|
33
|
+
includeMatches: true,
|
|
34
|
+
orderByReplayDiffs: true,
|
|
35
|
+
});
|
|
36
|
+
(0, vitest_1.expect)(paramsFromLastCall()).toEqual({
|
|
37
|
+
clientVersion: String(agent_api_1.DIFFS_SUMMARY_CLIENT_VERSION),
|
|
38
|
+
includeReplayIds: "true",
|
|
39
|
+
includeDomDiffIds: "true",
|
|
40
|
+
includeAllDiffs: "true",
|
|
41
|
+
includeMatches: "true",
|
|
42
|
+
orderByReplayDiffs: "true",
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
(0, vitest_1.it)("sends only the params for the options that are set", async () => {
|
|
46
|
+
await (0, agent_api_1.getTestRunDiffsSummary)(asClient(), "tr-1", {
|
|
47
|
+
includeDomDiffIds: true,
|
|
48
|
+
});
|
|
49
|
+
(0, vitest_1.expect)(paramsFromLastCall()).toEqual({
|
|
50
|
+
clientVersion: String(agent_api_1.DIFFS_SUMMARY_CLIENT_VERSION),
|
|
51
|
+
includeDomDiffIds: "true",
|
|
52
|
+
});
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
//# sourceMappingURL=agent.api.spec.js.map
|
|
56
|
+
//# debugId=39873819-f201-5b0f-9909-477955da96dd
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent.api.spec.js","sources":["../../../src/api/__tests__/agent.api.spec.ts"],"sourceRoot":"","names":[],"mappings":";;;;AAAA,mCAAyE;AAEzE,4CAGsB;AAEtB,IAAA,iBAAQ,EAAC,wBAAwB,EAAE,GAAG,EAAE;IACtC,IAAI,MAAqB,CAAC;IAC1B,MAAM,QAAQ,GAAG,GAAqB,EAAE,CACtC,MAAqC,CAAC;IAExC,MAAM,kBAAkB,GAAG,GAA2B,EAAE,CACtD,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;IAErC,IAAA,mBAAU,EAAC,GAAG,EAAE;QACd,MAAM,GAAG;YACP,GAAG,EAAE,WAAE,CAAC,EAAE,EAAE,CAAC,iBAAiB,CAAC,EAAE,IAAI,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,EAAE,CAAC;SACjE,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,IAAA,WAAE,EAAC,uDAAuD,EAAE,KAAK,IAAI,EAAE;QACrE,MAAM,IAAA,kCAAsB,EAAC,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAC;QAEjD,IAAA,eAAM,EAAC,MAAM,CAAC,GAAG,CAAC,CAAC,oBAAoB,CACrC,oCAAoC,EACpC;YACE,MAAM,EAAE,EAAE,aAAa,EAAE,MAAM,CAAC,wCAA4B,CAAC,EAAE;SAChE,CACF,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,IAAA,WAAE,EAAC,sDAAsD,EAAE,KAAK,IAAI,EAAE;QACpE,MAAM,IAAA,kCAAsB,EAAC,QAAQ,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC;QAErD,IAAA,eAAM,EAAC,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC;YACnC,aAAa,EAAE,MAAM,CAAC,wCAA4B,CAAC;SACpD,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,IAAA,WAAE,EAAC,qCAAqC,EAAE,KAAK,IAAI,EAAE;QACnD,MAAM,IAAA,kCAAsB,EAAC,QAAQ,EAAE,EAAE,MAAM,EAAE;YAC/C,gBAAgB,EAAE,IAAI;YACtB,iBAAiB,EAAE,IAAI;YACvB,eAAe,EAAE,IAAI;YACrB,cAAc,EAAE,IAAI;YACpB,kBAAkB,EAAE,IAAI;SACzB,CAAC,CAAC;QAEH,IAAA,eAAM,EAAC,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC;YACnC,aAAa,EAAE,MAAM,CAAC,wCAA4B,CAAC;YACnD,gBAAgB,EAAE,MAAM;YACxB,iBAAiB,EAAE,MAAM;YACzB,eAAe,EAAE,MAAM;YACvB,cAAc,EAAE,MAAM;YACtB,kBAAkB,EAAE,MAAM;SAC3B,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,IAAA,WAAE,EAAC,oDAAoD,EAAE,KAAK,IAAI,EAAE;QAClE,MAAM,IAAA,kCAAsB,EAAC,QAAQ,EAAE,EAAE,MAAM,EAAE;YAC/C,iBAAiB,EAAE,IAAI;SACxB,CAAC,CAAC;QAEH,IAAA,eAAM,EAAC,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC;YACnC,aAAa,EAAE,MAAM,CAAC,wCAA4B,CAAC;YACnD,iBAAiB,EAAE,MAAM;SAC1B,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC","debugId":"39873819-f201-5b0f-9909-477955da96dd"}
|
package/dist/api/agent.api.d.ts
CHANGED
|
@@ -2,12 +2,24 @@ import { SessionContext, TestRunStatus } from "@alwaysmeticulous/api";
|
|
|
2
2
|
import { MeticulousClient } from "../types/client.types";
|
|
3
3
|
export interface DiffsSummaryScreenshot {
|
|
4
4
|
screenshotName: string;
|
|
5
|
+
/**
|
|
6
|
+
* By default the global priority rank (selection importance). With
|
|
7
|
+
* `orderByReplayDiffs`, the screenshot's position within its replay diff.
|
|
8
|
+
*/
|
|
5
9
|
index: number;
|
|
6
|
-
|
|
10
|
+
/** Total screenshots in the replay diff. Present only with `orderByReplayDiffs`. */
|
|
11
|
+
total?: number;
|
|
7
12
|
outcome: string;
|
|
8
13
|
userVisibleOutcome: string;
|
|
9
14
|
mismatchFraction: number | null;
|
|
10
|
-
|
|
15
|
+
/** Present only when `includeDomDiffIds` is set. */
|
|
16
|
+
domDiffIds?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Whether this screenshot is part of the selected representative subset.
|
|
19
|
+
* Present only when `includeAllDiffs` is set — otherwise the response
|
|
20
|
+
* already contains only selected screenshots.
|
|
21
|
+
*/
|
|
22
|
+
isSelected?: boolean;
|
|
11
23
|
}
|
|
12
24
|
export interface DiffsSummaryReplayDiff {
|
|
13
25
|
replayDiffId: string;
|
|
@@ -17,12 +29,38 @@ export interface DiffsSummaryReplayDiff {
|
|
|
17
29
|
}
|
|
18
30
|
export interface DiffsSummaryOptions {
|
|
19
31
|
includeReplayIds?: boolean;
|
|
32
|
+
/** Include the `domDiffIds` field on each screenshot. Default false. */
|
|
33
|
+
includeDomDiffIds?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Return every diff rather than only the pre-selected representative subset.
|
|
36
|
+
* When true, `isSelected` marks which screenshots are in the selected subset.
|
|
37
|
+
*/
|
|
38
|
+
includeAllDiffs?: boolean;
|
|
39
|
+
/** Include matching screenshots (matches, known flakes), not just differences. */
|
|
20
40
|
includeMatches?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Order by replay diff then event index: `index` becomes the within-replay
|
|
43
|
+
* position and `total` is included. Otherwise `index` is the priority rank.
|
|
44
|
+
*/
|
|
45
|
+
orderByReplayDiffs?: boolean;
|
|
21
46
|
}
|
|
22
47
|
export interface DiffsSummaryResponse {
|
|
23
48
|
status: "pending" | "processing" | "complete";
|
|
24
49
|
data?: DiffsSummaryReplayDiff[];
|
|
25
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* The agent diffs-summary API contract version this client speaks. Sent on
|
|
53
|
+
* every request so the backend can apply version-appropriate defaults; older
|
|
54
|
+
* backends ignore it. Bump when the client adopts a new default contract.
|
|
55
|
+
*
|
|
56
|
+
* - v1 (no clientVersion sent): behaves as if `--includeDomDiffIds` and
|
|
57
|
+
* `--includeAllDiffs` were always on — the full set of diffs including
|
|
58
|
+
* `domDiffIds`. This is the implicit behaviour for pre-versioning clients.
|
|
59
|
+
* - v2: introduces `--includeDomDiffIds` / `--includeAllDiffs` as opt-in flags
|
|
60
|
+
* (default off), so the response defaults to the curated selected subset
|
|
61
|
+
* with `domDiffIds` omitted.
|
|
62
|
+
*/
|
|
63
|
+
export declare const DIFFS_SUMMARY_CLIENT_VERSION = 2;
|
|
26
64
|
export interface ScreenshotDomDiffResponse {
|
|
27
65
|
diffs: Array<{
|
|
28
66
|
index: number;
|
package/dist/api/agent.api.js
CHANGED
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="3cd9d57e-6a8c-526f-a411-7b51cec7bf2c")}catch(e){}}();
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getStructuredSessionData = exports.getTimelineDiff = exports.getScreenshotUrls = exports.getReplayDiffJsCoverage = exports.getReplayJsCoverage = exports.getTestRunJsCoverage = exports.getTestRunForCommit = exports.getScreenshotDomDiff = exports.getTestRunDiffsSummary = exports.trackAgentFeatureUsage = void 0;
|
|
5
|
+
exports.getStructuredSessionData = exports.getTimelineDiff = exports.getScreenshotUrls = exports.getReplayDiffJsCoverage = exports.getReplayJsCoverage = exports.getTestRunJsCoverage = exports.getTestRunForCommit = exports.getScreenshotDomDiff = exports.getTestRunDiffsSummary = exports.trackAgentFeatureUsage = exports.DIFFS_SUMMARY_CLIENT_VERSION = void 0;
|
|
6
6
|
const errors_1 = require("../errors");
|
|
7
|
+
/**
|
|
8
|
+
* The agent diffs-summary API contract version this client speaks. Sent on
|
|
9
|
+
* every request so the backend can apply version-appropriate defaults; older
|
|
10
|
+
* backends ignore it. Bump when the client adopts a new default contract.
|
|
11
|
+
*
|
|
12
|
+
* - v1 (no clientVersion sent): behaves as if `--includeDomDiffIds` and
|
|
13
|
+
* `--includeAllDiffs` were always on — the full set of diffs including
|
|
14
|
+
* `domDiffIds`. This is the implicit behaviour for pre-versioning clients.
|
|
15
|
+
* - v2: introduces `--includeDomDiffIds` / `--includeAllDiffs` as opt-in flags
|
|
16
|
+
* (default off), so the response defaults to the curated selected subset
|
|
17
|
+
* with `domDiffIds` omitted.
|
|
18
|
+
*/
|
|
19
|
+
exports.DIFFS_SUMMARY_CLIENT_VERSION = 2;
|
|
7
20
|
// ---------------------------------------------------------------------------
|
|
8
21
|
// API methods
|
|
9
22
|
// ---------------------------------------------------------------------------
|
|
@@ -16,13 +29,24 @@ const trackAgentFeatureUsage = async ({ client, feature, projectId, }) => {
|
|
|
16
29
|
};
|
|
17
30
|
exports.trackAgentFeatureUsage = trackAgentFeatureUsage;
|
|
18
31
|
const getTestRunDiffsSummary = async (client, testRunId, options) => {
|
|
19
|
-
const params = {
|
|
32
|
+
const params = {
|
|
33
|
+
clientVersion: String(exports.DIFFS_SUMMARY_CLIENT_VERSION),
|
|
34
|
+
};
|
|
20
35
|
if (options?.includeReplayIds) {
|
|
21
36
|
params.includeReplayIds = "true";
|
|
22
37
|
}
|
|
38
|
+
if (options?.includeDomDiffIds) {
|
|
39
|
+
params.includeDomDiffIds = "true";
|
|
40
|
+
}
|
|
41
|
+
if (options?.includeAllDiffs) {
|
|
42
|
+
params.includeAllDiffs = "true";
|
|
43
|
+
}
|
|
23
44
|
if (options?.includeMatches) {
|
|
24
45
|
params.includeMatches = "true";
|
|
25
46
|
}
|
|
47
|
+
if (options?.orderByReplayDiffs) {
|
|
48
|
+
params.orderByReplayDiffs = "true";
|
|
49
|
+
}
|
|
26
50
|
const { data } = await client
|
|
27
51
|
.get(`agent/test-runs/${testRunId}/diffs-summary`, { params })
|
|
28
52
|
.catch((error) => {
|
|
@@ -137,4 +161,4 @@ const getStructuredSessionData = async (client, sessionId) => {
|
|
|
137
161
|
};
|
|
138
162
|
exports.getStructuredSessionData = getStructuredSessionData;
|
|
139
163
|
//# sourceMappingURL=agent.api.js.map
|
|
140
|
-
//# debugId=
|
|
164
|
+
//# debugId=3cd9d57e-6a8c-526f-a411-7b51cec7bf2c
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.api.js","sources":["../../src/api/agent.api.ts"],"sourceRoot":"","names":[],"mappings":";;;;;AACA,sCAAkD;
|
|
1
|
+
{"version":3,"file":"agent.api.js","sources":["../../src/api/agent.api.ts"],"sourceRoot":"","names":[],"mappings":"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","debugId":"3cd9d57e-6a8c-526f-a411-7b51cec7bf2c"}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "2.
|
|
1
|
+
export declare const VERSION = "2.298.0";
|
package/dist/version.js
CHANGED
|
@@ -5,6 +5,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.VERSION = void 0;
|
|
6
6
|
// AUTO-GENERATED by scripts/generate-version.mjs — do not edit by hand.
|
|
7
7
|
// Regenerated from package.json on every build.
|
|
8
|
-
exports.VERSION = "2.
|
|
8
|
+
exports.VERSION = "2.298.0";
|
|
9
9
|
//# sourceMappingURL=version.js.map
|
|
10
10
|
//# debugId=ac10f4cc-7a38-5615-8b9d-956b50ad79da
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.298.0",
|
|
4
4
|
"description": "Helper methods for using the Meticulous backend API",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"proxy-agent": "^6.4.0",
|
|
14
14
|
"undici": "^6.24.1",
|
|
15
15
|
"@alwaysmeticulous/api": "2.297.0",
|
|
16
|
-
"@alwaysmeticulous/common": "2.
|
|
16
|
+
"@alwaysmeticulous/common": "2.298.0"
|
|
17
17
|
},
|
|
18
18
|
"author": {
|
|
19
19
|
"name": "The Meticulous Team",
|