@alwaysmeticulous/api 2.116.0 → 2.124.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
|
@@ -6,7 +6,7 @@ export { TestRunEnvironment, TestRunGitHubContext, TestRunGitHubPullRequestConte
|
|
|
6
6
|
export { ReplayableEvent } from "./sdk-bundle-api/bidirectional/replayable-event";
|
|
7
7
|
export { HarEntry, HarLog, HarRequest, HarResponse, } from "./sdk-bundle-api/sdk-to-bundle/har-log";
|
|
8
8
|
export { Cookie, SessionData, UrlHistoryEvent, WindowData, ApplicationSpecificData, StorageEntry, EarlyRequest, } from "./sdk-bundle-api/sdk-to-bundle/session-data";
|
|
9
|
-
export { SequenceNumber, WebSocketConnectionData, WebSocketConnectionEvent, WebSocketConnectionCreatedEvent, WebSocketConnectionOpenedEvent, WebSocketConnectionMessageEvent, WebSocketConnectionErrorEvent, WebSocketConnectionClosedEvent, } from "./sdk-bundle-api/sdk-to-bundle/websocket-data";
|
|
9
|
+
export { SequenceNumber, WebSocketConnectionData, WebSocketConnectionEvent, WebSocketConnectionCreatedEvent, WebSocketConnectionOpenedEvent, EncodedArrayBuffer, EncodedBlob, WebSocketConnectionMessageEvent, WebSocketConnectionErrorEvent, WebSocketConnectionClosedEvent, } from "./sdk-bundle-api/sdk-to-bundle/websocket-data";
|
|
10
10
|
export { Replay } from "./replay/replay.types";
|
|
11
11
|
export { ScreenshotAssertionsOptions, ScreenshotAssertionsEnabledOptions, ScreenshottingEnabledOptions, StoryboardOptions, ScreenshotDiffOptions, ElementToIgnore, CSSSelectorToIgnore, } from "./sdk-bundle-api/sdk-to-bundle/screenshotting-options";
|
|
12
12
|
export { NetworkStubbingMode, StubAllRequests, StubNonSSRRequests, NoStubbing, CustomStubbing, RequestFilter, } from "./sdk-bundle-api/sdk-to-bundle/network-stubbing";
|
package/dist/project.types.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export interface Project {
|
|
|
16
16
|
defaultScreenshottingOptions?: ProjectSettingsScreenshottingOptions;
|
|
17
17
|
};
|
|
18
18
|
}
|
|
19
|
-
export type ProjectSettingsScreenshottingOptions = Partial<Pick<ScreenshottingEnabledOptions, "waitBeforeScreenshotsMs" | "captureFullPage" | "elementsToIgnore">>;
|
|
19
|
+
export type ProjectSettingsScreenshottingOptions = Partial<Pick<ScreenshottingEnabledOptions, "waitBeforeScreenshotsMs" | "captureFullPage" | "elementsToIgnore" | "waitForBaseToMatch">>;
|
|
20
20
|
export interface ProjectConfigurationData {
|
|
21
21
|
testCases?: TestCase[];
|
|
22
22
|
}
|
|
@@ -24,9 +24,21 @@ export interface WebSocketConnectionCreatedEvent extends WebSocketConnectionGene
|
|
|
24
24
|
export interface WebSocketConnectionOpenedEvent extends WebSocketConnectionGenericEvent {
|
|
25
25
|
type: "opened";
|
|
26
26
|
}
|
|
27
|
+
export interface EncodedArrayBuffer {
|
|
28
|
+
binaryType: "arraybuffer";
|
|
29
|
+
/** Base 64 encoded binary from an array buffer */
|
|
30
|
+
encodedData: string;
|
|
31
|
+
}
|
|
32
|
+
export interface EncodedBlob {
|
|
33
|
+
binaryType: "blob";
|
|
34
|
+
/** Base 64 encoded binary from a blob */
|
|
35
|
+
encodedData: string;
|
|
36
|
+
/** https://developer.mozilla.org/en-US/docs/Web/API/Blob/type */
|
|
37
|
+
mimeType: string;
|
|
38
|
+
}
|
|
27
39
|
export interface WebSocketConnectionMessageEvent extends WebSocketConnectionGenericEvent {
|
|
28
40
|
type: "message-sent" | "message-received";
|
|
29
|
-
data: string;
|
|
41
|
+
data: string | EncodedArrayBuffer | EncodedBlob;
|
|
30
42
|
}
|
|
31
43
|
export interface WebSocketConnectionErrorEvent extends WebSocketConnectionGenericEvent {
|
|
32
44
|
type: "error";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.124.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": "32f2fda0b7612c8256d4fa6923a95ff4b3d42886"
|
|
39
39
|
}
|