@wdio/utils 7.19.7 → 7.20.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/build/monad.d.ts CHANGED
@@ -2,7 +2,7 @@ interface PropertiesObject {
2
2
  [key: string | symbol]: PropertyDescriptor;
3
3
  }
4
4
  export default function WebDriver(options: Record<string, any>, modifier?: Function, propertiesObject?: PropertiesObject): {
5
- (this: void, sessionId: string, commandWrapper?: Function | undefined): any;
5
+ (this: void, sessionId: string, commandWrapper?: Function): any;
6
6
  /**
7
7
  * Enhance monad prototype with function
8
8
  * @param {String} name name of function to attach to prototype
@@ -10,7 +10,7 @@ export default function WebDriver(options: Record<string, any>, modifier?: Funct
10
10
  * @param {Object} proto prototype to add function to (optional)
11
11
  * @param {Function} origCommand original command to be passed to custom command as first argument
12
12
  */
13
- lift(name: string, func: Function, proto: Record<string, any>, origCommand?: Function | undefined): void;
13
+ lift(name: string, func: Function, proto: Record<string, any>, origCommand?: Function): void;
14
14
  };
15
15
  export {};
16
16
  //# sourceMappingURL=monad.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"monad.d.ts","sourceRoot":"","sources":["../src/monad.ts"],"names":[],"mappings":"AAYA,UAAU,gBAAgB;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,kBAAkB,CAAA;CAC7C;AAED,MAAM,CAAC,OAAO,UAAU,SAAS,CAAE,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,QAAQ,CAAC,EAAE,QAAQ,EAAE,gBAAgB,GAAE,gBAAqB;WAkBpG,IAAI,aAAa,MAAM;IA+G5C;;;;;;OAMG;eACyB,MAAM,QAAQ,QAAQ,SAAS,OAAO,MAAM,EAAE,GAAG,CAAC;EAqCjF"}
1
+ {"version":3,"file":"monad.d.ts","sourceRoot":"","sources":["../src/monad.ts"],"names":[],"mappings":"AAYA,UAAU,gBAAgB;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,kBAAkB,CAAA;CAC7C;AAED,MAAM,CAAC,OAAO,UAAU,SAAS,CAAE,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,QAAQ,CAAC,EAAE,QAAQ,EAAE,gBAAgB,GAAE,gBAAqB;WAkBpG,IAAI,aAAa,MAAM,mBAAmB,QAAQ;IA+GvE;;;;;;OAMG;eACyB,MAAM,QAAQ,QAAQ,SAAS,OAAO,MAAM,EAAE,GAAG,CAAC,gBAAgB,QAAQ;EAqCzG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/utils",
3
- "version": "7.19.7",
3
+ "version": "7.20.0",
4
4
  "description": "A WDIO helper utility to provide several utility functions used across the project.",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-utils",
@@ -24,12 +24,12 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@wdio/logger": "7.19.0",
27
- "@wdio/types": "7.19.5",
27
+ "@wdio/types": "7.20.0",
28
28
  "p-iteration": "^1.1.8"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
33
  "types": "./build/index.d.ts",
34
- "gitHead": "ed5b7278190953d5e77d11083b59db2209ac99b5"
34
+ "gitHead": "b00976955d3901903fe8401d09ed10d8826d38b1"
35
35
  }