@wdio/types 9.0.0-alpha.78 → 9.0.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/Capabilities.d.ts +196 -114
- package/build/Capabilities.d.ts.map +1 -1
- package/build/Network.d.ts +39 -0
- package/build/Network.d.ts.map +1 -0
- package/build/Options.d.ts +6 -225
- package/build/Options.d.ts.map +1 -1
- package/build/Reporters.d.ts +2 -4
- package/build/Reporters.d.ts.map +1 -1
- package/build/Services.d.ts +15 -15
- package/build/Services.d.ts.map +1 -1
- package/build/Workers.d.ts +5 -7
- package/build/Workers.d.ts.map +1 -1
- package/build/index.d.ts +41 -5
- package/build/index.d.ts.map +1 -1
- package/build/index.js +21 -4
- package/package.json +6 -4
- package/build/Automation.js +0 -1
- package/build/Capabilities.js +0 -1
- package/build/Clients.d.ts +0 -8
- package/build/Clients.d.ts.map +0 -1
- package/build/Clients.js +0 -1
- package/build/Frameworks.js +0 -1
- package/build/Options.js +0 -1
- package/build/Reporters.js +0 -1
- package/build/Services.js +0 -1
- package/build/Workers.js +0 -27
- /package/{LICENSE-MIT → LICENSE} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/types",
|
|
3
|
-
"version": "9.0.0
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Utility package providing type information for a variety of WebdriverIO interfaces",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-types",
|
|
@@ -8,8 +8,10 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"types": "./build/index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
|
-
".":
|
|
12
|
-
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./build/index.js",
|
|
13
|
+
"types": "./build/index.d.ts"
|
|
14
|
+
}
|
|
13
15
|
},
|
|
14
16
|
"engines": {
|
|
15
17
|
"node": ">=18"
|
|
@@ -32,5 +34,5 @@
|
|
|
32
34
|
"dependencies": {
|
|
33
35
|
"@types/node": "^20.1.0"
|
|
34
36
|
},
|
|
35
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "957693463371a4cb329395dcdbce8fb0c930ab93"
|
|
36
38
|
}
|
package/build/Automation.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/Capabilities.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/Clients.d.ts
DELETED
package/build/Clients.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Clients.d.ts","sourceRoot":"","sources":["../src/Clients.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AAE5D,MAAM,WAAW,WAAW;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,YAAY,EAAE,mBAAmB,CAAA;CACpC;AAED,MAAM,WAAW,OAAO;CAAG"}
|
package/build/Clients.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/Frameworks.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/Options.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/Reporters.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/Services.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/Workers.js
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The following defines a new worker messaging system
|
|
3
|
-
*/
|
|
4
|
-
export var MESSAGE_TYPES;
|
|
5
|
-
(function (MESSAGE_TYPES) {
|
|
6
|
-
/**
|
|
7
|
-
* @wdio/browser-runner messages
|
|
8
|
-
*/
|
|
9
|
-
MESSAGE_TYPES[MESSAGE_TYPES["consoleMessage"] = 0] = "consoleMessage";
|
|
10
|
-
MESSAGE_TYPES[MESSAGE_TYPES["commandRequestMessage"] = 1] = "commandRequestMessage";
|
|
11
|
-
MESSAGE_TYPES[MESSAGE_TYPES["commandResponseMessage"] = 2] = "commandResponseMessage";
|
|
12
|
-
MESSAGE_TYPES[MESSAGE_TYPES["hookTriggerMessage"] = 3] = "hookTriggerMessage";
|
|
13
|
-
MESSAGE_TYPES[MESSAGE_TYPES["hookResultMessage"] = 4] = "hookResultMessage";
|
|
14
|
-
MESSAGE_TYPES[MESSAGE_TYPES["expectRequestMessage"] = 5] = "expectRequestMessage";
|
|
15
|
-
MESSAGE_TYPES[MESSAGE_TYPES["expectResponseMessage"] = 6] = "expectResponseMessage";
|
|
16
|
-
MESSAGE_TYPES[MESSAGE_TYPES["expectMatchersRequest"] = 7] = "expectMatchersRequest";
|
|
17
|
-
MESSAGE_TYPES[MESSAGE_TYPES["expectMatchersResponse"] = 8] = "expectMatchersResponse";
|
|
18
|
-
MESSAGE_TYPES[MESSAGE_TYPES["coverageMap"] = 9] = "coverageMap";
|
|
19
|
-
MESSAGE_TYPES[MESSAGE_TYPES["customCommand"] = 10] = "customCommand";
|
|
20
|
-
MESSAGE_TYPES[MESSAGE_TYPES["initiateBrowserStateRequest"] = 11] = "initiateBrowserStateRequest";
|
|
21
|
-
MESSAGE_TYPES[MESSAGE_TYPES["initiateBrowserStateResponse"] = 12] = "initiateBrowserStateResponse";
|
|
22
|
-
MESSAGE_TYPES[MESSAGE_TYPES["browserTestResult"] = 13] = "browserTestResult";
|
|
23
|
-
/**
|
|
24
|
-
* @wdio/runner messages
|
|
25
|
-
* TODO: add runner messages
|
|
26
|
-
*/
|
|
27
|
-
})(MESSAGE_TYPES || (MESSAGE_TYPES = {}));
|
/package/{LICENSE-MIT → LICENSE}
RENAMED
|
File without changes
|