@alwaysmeticulous/sdk-bundles-api 2.189.0 → 2.192.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,6 +1,6 @@
1
1
  import { Cookie, InjectableRequestHeader, NetworkStubbingMode, ScreenshotAssertionsEnabledOptions, ScreenshotDiffOptions, ScreenshottingEnabledOptions } from "@alwaysmeticulous/api";
2
- import { LogLevelNumbers } from "loglevel";
3
2
  import { BeforeUserEventResult } from "../bundle-to-sdk/execute-replay";
3
+ import { LogLevelNumbers } from "./loglevel";
4
4
  export interface ReplayAndStoreResultsOptions {
5
5
  chromeExecutablePath?: string;
6
6
  replayTarget: ReplayTarget;
@@ -1,7 +1,7 @@
1
1
  import { ScreenshotAssertionsEnabledOptions, TestRunEnvironment } from "@alwaysmeticulous/api";
2
- import { LogLevelNumbers } from "loglevel";
3
2
  import { RunningTestRunExecution } from "../bundle-to-sdk/execute-test-run";
4
3
  import { ReplayExecutionOptions } from "./execute-replay";
4
+ import { LogLevelNumbers } from "./loglevel";
5
5
  export interface ExecuteTestRunOptions {
6
6
  chromeExecutablePath?: string;
7
7
  /**
@@ -0,0 +1,6 @@
1
+ /**
2
+ * The log levels that can be used in the SDK.
3
+ *
4
+ * Similar to the LogLevelNumbers in the `loglevel` package.
5
+ */
6
+ export type LogLevelNumbers = 0 | 1 | 2 | 3 | 4 | 5;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=loglevel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"loglevel.js","sourceRoot":"","sources":["../../../src/replay-orchestrator/sdk-to-bundle/loglevel.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.189.0",
3
+ "version": "2.192.0",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -18,16 +18,8 @@
18
18
  "lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" --cache --fix",
19
19
  "depcheck": "depcheck --ignore-patterns=dist"
20
20
  },
21
- "devDependencies": {
22
- "@alwaysmeticulous/api": "^2.189.0"
23
- },
24
- "peerDependencies": {
25
- "loglevel": "^1.8.0"
26
- },
27
- "peerDependenciesMeta": {
28
- "loglevel": {
29
- "optional": true
30
- }
21
+ "dependencies": {
22
+ "@alwaysmeticulous/api": "^2.192.0"
31
23
  },
32
24
  "author": {
33
25
  "name": "The Meticulous Team",
@@ -46,5 +38,5 @@
46
38
  "bugs": {
47
39
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
48
40
  },
49
- "gitHead": "13157dddb2b56ba517a67ace75e8441cdf2d7cc1"
41
+ "gitHead": "3fa1ccc14d7803319ea1f007eea51eead1085c6d"
50
42
  }