@appium/base-plugin 2.2.39 → 2.2.40
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/lib/plugin.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export default BasePlugin;
|
|
2
|
-
export type Plugin = import(
|
|
3
|
-
export type NextPluginCallback = import(
|
|
4
|
-
export type Constraints = import(
|
|
5
|
-
export type Driver<C extends
|
|
2
|
+
export type Plugin = import("@appium/types").Plugin;
|
|
3
|
+
export type NextPluginCallback = import("@appium/types").NextPluginCallback;
|
|
4
|
+
export type Constraints = import("@appium/types").Constraints;
|
|
5
|
+
export type Driver<C extends Constraints> = import("@appium/types").Driver<C>;
|
|
6
6
|
/**
|
|
7
7
|
* @implements {Plugin}
|
|
8
8
|
*/
|
|
@@ -60,6 +60,6 @@ export class BasePlugin implements Plugin {
|
|
|
60
60
|
* @param {string} script
|
|
61
61
|
* @param {readonly [import('@appium/types').StringRecord<unknown>] | readonly any[]} protoArgs
|
|
62
62
|
*/
|
|
63
|
-
executeMethod<C extends
|
|
63
|
+
executeMethod<C extends Constraints>(next: NextPluginCallback, driver: Driver<C>, script: string, protoArgs: readonly [import("@appium/types").StringRecord<unknown>] | readonly any[]): Promise<unknown>;
|
|
64
64
|
}
|
|
65
65
|
//# sourceMappingURL=plugin.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../lib/plugin.js"],"names":[],"mappings":";qBAuFa,OAAO,eAAe,EAAE,MAAM;iCAC9B,OAAO,eAAe,EAAE,kBAAkB;0BAC1C,OAAO,eAAe,EAAE,WAAW;
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../lib/plugin.js"],"names":[],"mappings":";qBAuFa,OAAO,eAAe,EAAE,MAAM;iCAC9B,OAAO,eAAe,EAAE,kBAAkB;0BAC1C,OAAO,eAAe,EAAE,WAAW;mBAIrB,CAAC,SAAd,WAAY,IACb,OAAO,eAAe,EAAE,MAAM,CAAC,CAAC,CAAC;AA3F9C;;GAEG;AACH,mCAFgB,MAAM;IAGpB;;;;;;;;;;;;;;OAcG;IACH,wBAAyB;IAEzB;;;;;;;;;;;;;;;OAeG;IACH,4BAA6B;IAE7B;;;OAGG;IACH,kBAHW,MAAM,iDAOhB;IAHC,aAAgB;IAChB,iCAAsB;IACtB,6CAAkD;IAGpD;;;;;;;;;;;OAWG;IACH,cAN2B,CAAC,SAAd,WAAY,QACf,kBAAkB,UAClB,MAAM,CAAC,CAAC,CAAC,UACT,MAAM,aACN,SAAS,CAAC,OAAO,eAAe,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC,GAAG,SAAS,GAAG,EAAE,oBAkBnF;CACF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appium/base-plugin",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.40",
|
|
4
4
|
"description": "The base plugin used to create Appium 2.0 plugins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"automation",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"test:unit": "mocha \"./test/unit/**/*.spec.js\""
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@appium/base-driver": "^9.
|
|
44
|
-
"@appium/support": "^5.0
|
|
43
|
+
"@appium/base-driver": "^9.11.0",
|
|
44
|
+
"@appium/support": "^5.1.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "e8a838417a75464ebb8ce08584311f39afdd67bd",
|
|
54
54
|
"tags": [
|
|
55
55
|
"appium"
|
|
56
56
|
]
|