@alwaysmeticulous/api 2.264.0 → 2.273.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 +2 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/organization.types.js +4 -1
- package/dist/organization.types.js.map +1 -1
- package/dist/project.types.js +4 -1
- package/dist/project.types.js.map +1 -1
- package/dist/replay/replay.types.js +4 -1
- package/dist/replay/replay.types.js.map +1 -1
- package/dist/replay/test-run-chunk.types.js +4 -1
- package/dist/replay/test-run-chunk.types.js.map +1 -1
- package/dist/replay/test-run-debug-context.types.d.ts +51 -0
- package/dist/replay/test-run-debug-context.types.js +6 -0
- package/dist/replay/test-run-debug-context.types.js.map +1 -0
- package/dist/replay/test-run.types.d.ts +36 -1
- package/dist/replay/test-run.types.js +4 -1
- package/dist/replay/test-run.types.js.map +1 -1
- package/dist/s3.types.js +4 -1
- package/dist/s3.types.js.map +1 -1
- package/dist/sdk-bundle-api/bidirectional/replayable-event.js +4 -1
- package/dist/sdk-bundle-api/bidirectional/replayable-event.js.map +1 -1
- package/dist/sdk-bundle-api/bundle-to-sdk/console-message.js +4 -1
- package/dist/sdk-bundle-api/bundle-to-sdk/console-message.js.map +1 -1
- package/dist/sdk-bundle-api/bundle-to-sdk/replay-divergence.js +4 -1
- package/dist/sdk-bundle-api/bundle-to-sdk/replay-divergence.js.map +1 -1
- package/dist/sdk-bundle-api/bundle-to-sdk/screenshot-diff-result.js +4 -1
- package/dist/sdk-bundle-api/bundle-to-sdk/screenshot-diff-result.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/asset-upload-metadata.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/asset-upload-metadata.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/companion-assets.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/companion-assets.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/deployment-archive-type.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/deployment-archive-type.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/event-source-data.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/event-source-data.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/har-log.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/har-log.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/header-injection.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/header-injection.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/network-stubbing.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/network-stubbing.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/screenshotting-options.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/screenshotting-options.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/session-data.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/session-data.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/streaming-fetch-data.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/streaming-fetch-data.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/test-run-environment.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/test-run-environment.js.map +1 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/websocket-data.js +4 -1
- package/dist/sdk-bundle-api/sdk-to-bundle/websocket-data.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export { Organization } from "./organization.types";
|
|
2
2
|
export { Project, ProjectSettingsScreenshottingOptions } from "./project.types";
|
|
3
3
|
export { EndStateScreenshot, ScreenshotAfterEvent, ScreenshotDiffResult, ScreenshotDiffResultCompared, ScreenshotDiffResultDifferentSize, ScreenshotDiffResultMissingBase, ScreenshotDiffResultMissingBaseAndHead, ScreenshotDiffResultMissingHead, ScreenshotDiffResultDifference, ScreenshotDiffResultNoDifference, ScreenshotIdentifier, ScreenshotVariant, SingleTryScreenshotDiffResult, ScreenshotDiffRetryResult, SingleTryScreenshotDiffRetryResult, RedactedScreenshotIncompatible, RedactedScreenshotsCompared, RedactedScreenshotsComparison, } from "./sdk-bundle-api/bundle-to-sdk/screenshot-diff-result";
|
|
4
|
-
export { SessionRelevance, isPrAuthorRelevance, TestCase, TestCaseReplayOptions, TestRunStatus, TestCaseResult, TestCaseResultStatus, AppContainerLogsLocations, TestRunDataLocations, } from "./replay/test-run.types";
|
|
4
|
+
export { SessionRelevance, isPrAuthorRelevance, TestCase, TestCaseReplayOptions, TestRunStatus, TestCaseResult, TestCaseResultStatus, AppContainerLogsLocations, TestRunDataLocations, TestRun, ExecuteSecureTunnelTestRunOptions, ExecuteSecureTunnelTestRunResponse, } from "./replay/test-run.types";
|
|
5
|
+
export { BaseResolutionDetails, FailedForOtherReason, RequiredNewWorkflowRunButFailedDueToNewCommitToBaseBranch, SuitableTestRunAlreadyExisted, TestRunTriggerDebugContext, TriggeredNewWorkflowRunSuccessfully, WaitedForExistingWorkflowRun, } from "./replay/test-run-debug-context.types";
|
|
5
6
|
export { TestRunChunkStatus } from "./replay/test-run-chunk.types";
|
|
6
7
|
export * from "./sdk-bundle-api/sdk-to-bundle/test-run-environment";
|
|
7
8
|
export { ReplayableEvent } from "./sdk-bundle-api/bidirectional/replayable-event";
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
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]="241d0bfa-4ceb-5286-b3c4-2a8e60fcaee0")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
5
|
if (k2 === undefined) k2 = k;
|
|
4
6
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -22,4 +24,5 @@ __exportStar(require("./sdk-bundle-api/sdk-to-bundle/test-run-environment"), exp
|
|
|
22
24
|
var session_data_1 = require("./sdk-bundle-api/sdk-to-bundle/session-data");
|
|
23
25
|
Object.defineProperty(exports, "CustomDataSingletonInternalKey", { enumerable: true, get: function () { return session_data_1.CustomDataSingletonInternalKey; } });
|
|
24
26
|
__exportStar(require("./sdk-bundle-api/sdk-to-bundle/event-source-data"), exports);
|
|
25
|
-
//# sourceMappingURL=index.js.map
|
|
27
|
+
//# sourceMappingURL=index.js.map
|
|
28
|
+
//# debugId=241d0bfa-4ceb-5286-b3c4-2a8e60fcaee0
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourceRoot":"","names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAsBA,0DAaiC;AAZ/B,kHAAA,gBAAgB,OAAA;AAChB,qHAAA,mBAAmB,OAAA;AAsBrB,sFAAoE;AAQpE,4EAoBqD;AAPnD,8HAAA,8BAA8B,OAAA;AAoBhC,mFAAiE","debugId":"241d0bfa-4ceb-5286-b3c4-2a8e60fcaee0"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="83bcf5ea-4a8a-5deb-8e81-113a696fa3c2")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=organization.types.js.map
|
|
5
|
+
//# sourceMappingURL=organization.types.js.map
|
|
6
|
+
//# debugId=83bcf5ea-4a8a-5deb-8e81-113a696fa3c2
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organization.types.js","
|
|
1
|
+
{"version":3,"file":"organization.types.js","sources":["../src/organization.types.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"83bcf5ea-4a8a-5deb-8e81-113a696fa3c2"}
|
package/dist/project.types.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
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]="d8889390-1237-55dd-b421-66646b35e0b7")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=project.types.js.map
|
|
5
|
+
//# sourceMappingURL=project.types.js.map
|
|
6
|
+
//# debugId=d8889390-1237-55dd-b421-66646b35e0b7
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project.types.js","
|
|
1
|
+
{"version":3,"file":"project.types.js","sources":["../src/project.types.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"d8889390-1237-55dd-b421-66646b35e0b7"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="4d3817a3-64e1-5b7a-b922-e0b0a254e34a")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=replay.types.js.map
|
|
5
|
+
//# sourceMappingURL=replay.types.js.map
|
|
6
|
+
//# debugId=4d3817a3-64e1-5b7a-b922-e0b0a254e34a
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"replay.types.js","
|
|
1
|
+
{"version":3,"file":"replay.types.js","sources":["../../src/replay/replay.types.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"4d3817a3-64e1-5b7a-b922-e0b0a254e34a"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="4457b3d4-73fc-5bfb-986c-63ee43d9ff1b")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=test-run-chunk.types.js.map
|
|
5
|
+
//# sourceMappingURL=test-run-chunk.types.js.map
|
|
6
|
+
//# debugId=4457b3d4-73fc-5bfb-986c-63ee43d9ff1b
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-run-chunk.types.js","
|
|
1
|
+
{"version":3,"file":"test-run-chunk.types.js","sources":["../../src/replay/test-run-chunk.types.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"4457b3d4-73fc-5bfb-986c-63ee43d9ff1b"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export interface TestRunTriggerDebugContext {
|
|
2
|
+
baseResolutionDetails?: BaseResolutionDetails;
|
|
3
|
+
}
|
|
4
|
+
/**
|
|
5
|
+
* We sometimes need to re-run the CI job for the base commit to (re-)compute Meticulous results for the base commit.
|
|
6
|
+
*
|
|
7
|
+
* The caller can optionally provide information on whether this happened or was required, and was successful or not.
|
|
8
|
+
*
|
|
9
|
+
* This is useful for debugging -- for example if the base isn't available.
|
|
10
|
+
*/
|
|
11
|
+
export type BaseResolutionDetails = SuitableTestRunAlreadyExisted | WaitedForExistingWorkflowRun | RequiredNewWorkflowRunButFailedDueToNewCommitToBaseBranch | TriggeredNewWorkflowRunSuccessfully | FailedForOtherReason;
|
|
12
|
+
export type SuitableTestRunAlreadyExisted = {
|
|
13
|
+
type: "suitable-test-run-already-existed";
|
|
14
|
+
testRunId: string;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* We waited for the CI workflow to complete before calling this function, and it completed successfully.
|
|
18
|
+
*/
|
|
19
|
+
export type WaitedForExistingWorkflowRun = {
|
|
20
|
+
type: "waited-for-existing-workflow-run";
|
|
21
|
+
workflowId: string;
|
|
22
|
+
baseCommitSha: string;
|
|
23
|
+
msTaken: number;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* No suitable existing Meticulous results existed for the target base commit, and no existing CI workflow was running, and we were
|
|
27
|
+
* not able to trigger a new CI workflow because the base branch had been updated to a new commit, and the CI system only supports
|
|
28
|
+
* triggering new runs on the latest commit on the base branch.
|
|
29
|
+
*/
|
|
30
|
+
export type RequiredNewWorkflowRunButFailedDueToNewCommitToBaseBranch = {
|
|
31
|
+
type: "required-new-workflow-run-but-failed-due-to-new-commit-to-base-branch";
|
|
32
|
+
baseRef: string;
|
|
33
|
+
targetBaseCommitSha: string;
|
|
34
|
+
currentLastestBaseCommitSha: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* No suitable existing Meticulous results existed for the target base commit, and no existing CI workflow was running,
|
|
38
|
+
* so we triggered a new CI workflow, waited for it to complete, and it completed successfully.
|
|
39
|
+
*/
|
|
40
|
+
export type TriggeredNewWorkflowRunSuccessfully = {
|
|
41
|
+
type: "triggered-new-workflow-run-successfully";
|
|
42
|
+
workflowId: string;
|
|
43
|
+
msTaken: number;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* A catch all for more exceptional failures
|
|
47
|
+
*/
|
|
48
|
+
export type FailedForOtherReason = {
|
|
49
|
+
type: "failed-for-other-reason";
|
|
50
|
+
message: string;
|
|
51
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
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]="ece528ed-5148-5cbc-ac24-fef3be6baf51")}catch(e){}}();
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=test-run-debug-context.types.js.map
|
|
6
|
+
//# debugId=ece528ed-5148-5cbc-ac24-fef3be6baf51
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"test-run-debug-context.types.js","sources":["../../src/replay/test-run-debug-context.types.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"ece528ed-5148-5cbc-ac24-fef3be6baf51"}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { Project } from "../project.types";
|
|
1
2
|
import { S3Location } from "../s3.types";
|
|
3
|
+
import { CompanionAssetsInfo } from "../sdk-bundle-api/sdk-to-bundle/companion-assets";
|
|
2
4
|
import { ScreenshotDiffOptions } from "../sdk-bundle-api/sdk-to-bundle/screenshotting-options";
|
|
5
|
+
import type { TestRunTriggerDebugContext } from "./test-run-debug-context.types";
|
|
3
6
|
/**
|
|
4
7
|
* Relevance of a session
|
|
5
8
|
*/
|
|
@@ -31,6 +34,9 @@ export interface TestCaseReplayOptions extends Partial<ScreenshotDiffOptions> {
|
|
|
31
34
|
*
|
|
32
35
|
* `Running` = a worker is actively running the test run.
|
|
33
36
|
*
|
|
37
|
+
* `Partial` = some sessions have completed but more can be added on demand. Used for lazy session execution
|
|
38
|
+
* where push test runs act as session pools — sessions are only executed when a PR needs them.
|
|
39
|
+
*
|
|
34
40
|
* `PostProcessing` = the replays have completed and the test run is being post-processed. This is only used for session selection runs.
|
|
35
41
|
*
|
|
36
42
|
* `Failure` = completed, and at least one replay had notable differences - a diff, missing-head or different-size (see has-notable-differences.ts in the main repo)
|
|
@@ -42,7 +48,7 @@ export interface TestCaseReplayOptions extends Partial<ScreenshotDiffOptions> {
|
|
|
42
48
|
* `ExecutionError` = the test run failed fatally, and didn't complete. To get accurate results it'll need to be re-run. The test run may shortly switch back
|
|
43
49
|
* into 'Running' in this case, if the worker retries it.
|
|
44
50
|
*/
|
|
45
|
-
export type TestRunStatus = "Scheduled" | "Running" | "PostProcessing" | "Success" | "Failure" | "Aborted" | "ExecutionError";
|
|
51
|
+
export type TestRunStatus = "Scheduled" | "Running" | "Partial" | "PostProcessing" | "Success" | "Failure" | "Aborted" | "ExecutionError";
|
|
46
52
|
/**
|
|
47
53
|
* Execution of a chunk of a test run chunk.
|
|
48
54
|
*
|
|
@@ -81,3 +87,32 @@ export interface TestRunDataLocations {
|
|
|
81
87
|
relevantReplayContexts: S3Location;
|
|
82
88
|
appContainerLogs?: AppContainerLogsLocations;
|
|
83
89
|
}
|
|
90
|
+
export interface TestRun {
|
|
91
|
+
id: string;
|
|
92
|
+
status: TestRunStatus;
|
|
93
|
+
project: Project;
|
|
94
|
+
configData: {
|
|
95
|
+
testCases?: TestCase[];
|
|
96
|
+
};
|
|
97
|
+
resultData?: {
|
|
98
|
+
results?: TestCaseResult[];
|
|
99
|
+
};
|
|
100
|
+
url: string;
|
|
101
|
+
}
|
|
102
|
+
export interface ExecuteSecureTunnelTestRunOptions {
|
|
103
|
+
headSha: string;
|
|
104
|
+
tunnelUrl: string;
|
|
105
|
+
basicAuthUser: string;
|
|
106
|
+
basicAuthPassword: string;
|
|
107
|
+
environment: string;
|
|
108
|
+
isLockable: boolean;
|
|
109
|
+
companionAssetsInfo?: CompanionAssetsInfo;
|
|
110
|
+
pullRequestHostingProviderId?: string;
|
|
111
|
+
postComment?: boolean;
|
|
112
|
+
debugContext?: TestRunTriggerDebugContext;
|
|
113
|
+
}
|
|
114
|
+
export interface ExecuteSecureTunnelTestRunResponse {
|
|
115
|
+
testRun?: TestRun;
|
|
116
|
+
deploymentId: string;
|
|
117
|
+
message?: string;
|
|
118
|
+
}
|
|
@@ -1,4 +1,6 @@
|
|
|
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]="eb3b2b0d-be93-5eab-b9e7-ddd3cd69022c")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
5
|
exports.isPrAuthorRelevance = exports.SessionRelevance = void 0;
|
|
4
6
|
/**
|
|
@@ -23,4 +25,5 @@ const isPrAuthorRelevance = (relevance) => {
|
|
|
23
25
|
relevance === SessionRelevance.IsPrAuthorNotRelevant);
|
|
24
26
|
};
|
|
25
27
|
exports.isPrAuthorRelevance = isPrAuthorRelevance;
|
|
26
|
-
//# sourceMappingURL=test-run.types.js.map
|
|
28
|
+
//# sourceMappingURL=test-run.types.js.map
|
|
29
|
+
//# debugId=eb3b2b0d-be93-5eab-b9e7-ddd3cd69022c
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-run.types.js","
|
|
1
|
+
{"version":3,"file":"test-run.types.js","sources":["../../src/replay/test-run.types.ts"],"sourceRoot":"","names":[],"mappings":";;;;;AAMA;;GAEG;AACH,IAAY,gBAQX;AARD,WAAY,gBAAgB;IAC1B,+CAA2B,CAAA;IAC3B,gEAA4C,CAAA;IAC5C,uEAAmD,CAAA;IACnD,uDAAmC,CAAA;IACnC,8CAA0B,CAAA;IAC1B,gDAA4B,CAAA;IAC5B,oDAAgC,CAAA;AAClC,CAAC,EARW,gBAAgB,gCAAhB,gBAAgB,QAQ3B;AAEM,MAAM,mBAAmB,GAAG,CACjC,SAA8C,EACrC,EAAE;IACX,IAAI,CAAC,SAAS,EAAE,CAAC;QACf,OAAO,KAAK,CAAC;IACf,CAAC;IAED,OAAO,CACL,SAAS,KAAK,gBAAgB,CAAC,UAAU;QACzC,SAAS,KAAK,gBAAgB,CAAC,kBAAkB;QACjD,SAAS,KAAK,gBAAgB,CAAC,qBAAqB,CACrD,CAAC;AACJ,CAAC,CAAC;AAZW,QAAA,mBAAmB,uBAY9B","debugId":"eb3b2b0d-be93-5eab-b9e7-ddd3cd69022c"}
|
package/dist/s3.types.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
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]="c85d4afa-63d0-54ab-b327-4ae75cb667cb")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=s3.types.js.map
|
|
5
|
+
//# sourceMappingURL=s3.types.js.map
|
|
6
|
+
//# debugId=c85d4afa-63d0-54ab-b327-4ae75cb667cb
|
package/dist/s3.types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"s3.types.js","
|
|
1
|
+
{"version":3,"file":"s3.types.js","sources":["../src/s3.types.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"c85d4afa-63d0-54ab-b327-4ae75cb667cb"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="f30e3b5d-dc92-5324-9952-3ee2cc41c1de")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=replayable-event.js.map
|
|
5
|
+
//# sourceMappingURL=replayable-event.js.map
|
|
6
|
+
//# debugId=f30e3b5d-dc92-5324-9952-3ee2cc41c1de
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"replayable-event.js","
|
|
1
|
+
{"version":3,"file":"replayable-event.js","sources":["../../../src/sdk-bundle-api/bidirectional/replayable-event.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"f30e3b5d-dc92-5324-9952-3ee2cc41c1de"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="ca6ad27d-f939-59b6-a18f-096f9f07fd92")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=console-message.js.map
|
|
5
|
+
//# sourceMappingURL=console-message.js.map
|
|
6
|
+
//# debugId=ca6ad27d-f939-59b6-a18f-096f9f07fd92
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"console-message.js","
|
|
1
|
+
{"version":3,"file":"console-message.js","sources":["../../../src/sdk-bundle-api/bundle-to-sdk/console-message.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"ca6ad27d-f939-59b6-a18f-096f9f07fd92"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="3c10d9c0-aba2-5b08-9839-12b2df871b5b")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=replay-divergence.js.map
|
|
5
|
+
//# sourceMappingURL=replay-divergence.js.map
|
|
6
|
+
//# debugId=3c10d9c0-aba2-5b08-9839-12b2df871b5b
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"replay-divergence.js","
|
|
1
|
+
{"version":3,"file":"replay-divergence.js","sources":["../../../src/sdk-bundle-api/bundle-to-sdk/replay-divergence.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"3c10d9c0-aba2-5b08-9839-12b2df871b5b"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="6f96f909-c940-53ad-b9d6-8123895d798d")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=screenshot-diff-result.js.map
|
|
5
|
+
//# sourceMappingURL=screenshot-diff-result.js.map
|
|
6
|
+
//# debugId=6f96f909-c940-53ad-b9d6-8123895d798d
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"screenshot-diff-result.js","
|
|
1
|
+
{"version":3,"file":"screenshot-diff-result.js","sources":["../../../src/sdk-bundle-api/bundle-to-sdk/screenshot-diff-result.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"6f96f909-c940-53ad-b9d6-8123895d798d"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="f6698ddf-3a23-5bea-b991-898202b19477")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=asset-upload-metadata.js.map
|
|
5
|
+
//# sourceMappingURL=asset-upload-metadata.js.map
|
|
6
|
+
//# debugId=f6698ddf-3a23-5bea-b991-898202b19477
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"asset-upload-metadata.js","
|
|
1
|
+
{"version":3,"file":"asset-upload-metadata.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/asset-upload-metadata.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"f6698ddf-3a23-5bea-b991-898202b19477"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="2fb66e2d-4f96-57e7-8cce-9273c91f51d3")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=companion-assets.js.map
|
|
5
|
+
//# sourceMappingURL=companion-assets.js.map
|
|
6
|
+
//# debugId=2fb66e2d-4f96-57e7-8cce-9273c91f51d3
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"companion-assets.js","
|
|
1
|
+
{"version":3,"file":"companion-assets.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/companion-assets.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"2fb66e2d-4f96-57e7-8cce-9273c91f51d3"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="492b3a4b-f72f-5c0b-8c36-cb81207ae55d")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=deployment-archive-type.js.map
|
|
5
|
+
//# sourceMappingURL=deployment-archive-type.js.map
|
|
6
|
+
//# debugId=492b3a4b-f72f-5c0b-8c36-cb81207ae55d
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployment-archive-type.js","
|
|
1
|
+
{"version":3,"file":"deployment-archive-type.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/deployment-archive-type.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"492b3a4b-f72f-5c0b-8c36-cb81207ae55d"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="50365261-6a34-58c2-812d-3dcd119ee37f")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=event-source-data.js.map
|
|
5
|
+
//# sourceMappingURL=event-source-data.js.map
|
|
6
|
+
//# debugId=50365261-6a34-58c2-812d-3dcd119ee37f
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-source-data.js","
|
|
1
|
+
{"version":3,"file":"event-source-data.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/event-source-data.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"50365261-6a34-58c2-812d-3dcd119ee37f"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="4d5632ac-0180-53cd-ac2a-efb48c9eee22")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=har-log.js.map
|
|
5
|
+
//# sourceMappingURL=har-log.js.map
|
|
6
|
+
//# debugId=4d5632ac-0180-53cd-ac2a-efb48c9eee22
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"har-log.js","
|
|
1
|
+
{"version":3,"file":"har-log.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/har-log.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"4d5632ac-0180-53cd-ac2a-efb48c9eee22"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="31cd81d6-d0a2-581e-b6cd-07b04b74df2e")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=header-injection.js.map
|
|
5
|
+
//# sourceMappingURL=header-injection.js.map
|
|
6
|
+
//# debugId=31cd81d6-d0a2-581e-b6cd-07b04b74df2e
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"header-injection.js","
|
|
1
|
+
{"version":3,"file":"header-injection.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/header-injection.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"31cd81d6-d0a2-581e-b6cd-07b04b74df2e"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="c36657b7-9ebf-5893-abbd-2db9345dee92")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=network-stubbing.js.map
|
|
5
|
+
//# sourceMappingURL=network-stubbing.js.map
|
|
6
|
+
//# debugId=c36657b7-9ebf-5893-abbd-2db9345dee92
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"network-stubbing.js","
|
|
1
|
+
{"version":3,"file":"network-stubbing.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/network-stubbing.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"c36657b7-9ebf-5893-abbd-2db9345dee92"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="6a431f4b-4fad-5e1b-aee5-af98ac73f8bc")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=screenshotting-options.js.map
|
|
5
|
+
//# sourceMappingURL=screenshotting-options.js.map
|
|
6
|
+
//# debugId=6a431f4b-4fad-5e1b-aee5-af98ac73f8bc
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"screenshotting-options.js","
|
|
1
|
+
{"version":3,"file":"screenshotting-options.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/screenshotting-options.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"6a431f4b-4fad-5e1b-aee5-af98ac73f8bc"}
|
|
@@ -1,4 +1,6 @@
|
|
|
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]="ec50e49c-13ee-5f41-8339-986e56ae6c3f")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
5
|
exports.CustomDataSingletonInternalKey = void 0;
|
|
4
6
|
var CustomDataSingletonInternalKey;
|
|
@@ -34,4 +36,5 @@ var CustomDataSingletonInternalKey;
|
|
|
34
36
|
*/
|
|
35
37
|
CustomDataSingletonInternalKey["CustomObjectTooLargeToSerialize"] = "met-custom-object-too-large-to-serialize";
|
|
36
38
|
})(CustomDataSingletonInternalKey || (exports.CustomDataSingletonInternalKey = CustomDataSingletonInternalKey = {}));
|
|
37
|
-
//# sourceMappingURL=session-data.js.map
|
|
39
|
+
//# sourceMappingURL=session-data.js.map
|
|
40
|
+
//# debugId=ec50e49c-13ee-5f41-8339-986e56ae6c3f
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session-data.js","
|
|
1
|
+
{"version":3,"file":"session-data.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/session-data.ts"],"sourceRoot":"","names":[],"mappings":";;;;;AA0QA,IAAY,8BAmCX;AAnCD,WAAY,8BAA8B;IACxC;;;OAGG;IACH,gGAA8D,CAAA;IAE9D;;;;;OAKG;IACH,oEAAkC,CAAA;IAElC;;;;;OAKG;IACH,6DAA2B,CAAA;IAE3B;;;OAGG;IACH,8DAA4B,CAAA;IAE5B;;;;OAIG;IACH,8GAA4E,CAAA;AAC9E,CAAC,EAnCW,8BAA8B,8CAA9B,8BAA8B,QAmCzC","debugId":"ec50e49c-13ee-5f41-8339-986e56ae6c3f"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="eeb2c9b9-5185-525c-8a6f-4667c6d9c81c")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=streaming-fetch-data.js.map
|
|
5
|
+
//# sourceMappingURL=streaming-fetch-data.js.map
|
|
6
|
+
//# debugId=eeb2c9b9-5185-525c-8a6f-4667c6d9c81c
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"streaming-fetch-data.js","
|
|
1
|
+
{"version":3,"file":"streaming-fetch-data.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/streaming-fetch-data.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"eeb2c9b9-5185-525c-8a6f-4667c6d9c81c"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="a3eabdbb-6ba0-592e-b64c-6daca2040c26")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=test-run-environment.js.map
|
|
5
|
+
//# sourceMappingURL=test-run-environment.js.map
|
|
6
|
+
//# debugId=a3eabdbb-6ba0-592e-b64c-6daca2040c26
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-run-environment.js","
|
|
1
|
+
{"version":3,"file":"test-run-environment.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/test-run-environment.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"a3eabdbb-6ba0-592e-b64c-6daca2040c26"}
|
|
@@ -1,3 +1,6 @@
|
|
|
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]="2786ad9c-8b8e-5f6b-a254-65b904b8b2e9")}catch(e){}}();
|
|
3
|
+
|
|
2
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=websocket-data.js.map
|
|
5
|
+
//# sourceMappingURL=websocket-data.js.map
|
|
6
|
+
//# debugId=2786ad9c-8b8e-5f6b-a254-65b904b8b2e9
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"websocket-data.js","
|
|
1
|
+
{"version":3,"file":"websocket-data.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/websocket-data.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"2786ad9c-8b8e-5f6b-a254-65b904b8b2e9"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.273.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": "a359e47f23aaf6606936babaaf9b12576bad188a"
|
|
39
39
|
}
|