@wdio/shared-store-service 9.4.2 → 9.4.4
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/server.d.ts +2 -2
- package/build/server.d.ts.map +1 -1
- package/build/types.d.ts +1 -1
- package/package.json +6 -6
package/build/server.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { JsonObject } from '@wdio/types';
|
|
1
|
+
import type { JsonObject, JsonArray } from '@wdio/types';
|
|
2
2
|
/**
|
|
3
3
|
* @private
|
|
4
4
|
*/
|
|
5
5
|
export declare const __store: JsonObject;
|
|
6
|
-
export declare const __resourcePoolStore: Map<string,
|
|
6
|
+
export declare const __resourcePoolStore: Map<string, JsonArray>;
|
|
7
7
|
export declare const startServer: () => Promise<{
|
|
8
8
|
port: number;
|
|
9
9
|
app: PolkaInstance;
|
package/build/server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAiC,UAAU,EAAE,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAiC,UAAU,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAIvF;;GAEG;AACH,eAAO,MAAM,OAAO,YAAQ,CAAA;AAC5B,eAAO,MAAM,mBAAmB,wBAAoB,CAAA;AAepD,eAAO,MAAM,WAAW;UAA6B,MAAM;SAAO,aAAa;EA8F7E,CAAA"}
|
package/build/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/shared-store-service",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.4",
|
|
4
4
|
"description": "A WebdriverIO service to exchange data across processes",
|
|
5
5
|
"author": "Mykola Grybyk <mykola.grybyk@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-shared-store-service",
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"typeScriptVersion": "3.8.3",
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@polka/parse": "^1.0.0-next.0",
|
|
40
|
-
"@wdio/logger": "9.
|
|
41
|
-
"@wdio/types": "9.4.
|
|
40
|
+
"@wdio/logger": "9.4.4",
|
|
41
|
+
"@wdio/types": "9.4.4",
|
|
42
42
|
"polka": "^0.5.2",
|
|
43
|
-
"webdriverio": "9.4.
|
|
43
|
+
"webdriverio": "9.4.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@wdio/globals": "9.4.
|
|
46
|
+
"@wdio/globals": "9.4.4"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "d327d86e07d16eaa0ecdf0656c1868ba73261393"
|
|
52
52
|
}
|