@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 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, any[]>;
6
+ export declare const __resourcePoolStore: Map<string, JsonArray>;
7
7
  export declare const startServer: () => Promise<{
8
8
  port: number;
9
9
  app: PolkaInstance;
@@ -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;AAI5E;;GAEG;AACH,eAAO,MAAM,OAAO,YAAQ,CAAA;AAC5B,eAAO,MAAM,mBAAmB,oBAAoB,CAAA;AAepD,eAAO,MAAM,WAAW;UAA6B,MAAM;SAAO,aAAa;EA8F7E,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
@@ -2,6 +2,6 @@ export interface SharedStoreServiceCapabilities extends WebdriverIO.Capabilities
2
2
  'wdio:sharedStoreServicePort': number;
3
3
  }
4
4
  export type GetValueOptions = {
5
- timeout: Number;
5
+ timeout: number;
6
6
  } | undefined;
7
7
  //# sourceMappingURL=types.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/shared-store-service",
3
- "version": "9.4.2",
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.1.3",
41
- "@wdio/types": "9.4.2",
40
+ "@wdio/logger": "9.4.4",
41
+ "@wdio/types": "9.4.4",
42
42
  "polka": "^0.5.2",
43
- "webdriverio": "9.4.2"
43
+ "webdriverio": "9.4.4"
44
44
  },
45
45
  "devDependencies": {
46
- "@wdio/globals": "9.4.2"
46
+ "@wdio/globals": "9.4.4"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
50
50
  },
51
- "gitHead": "e42d3e8d6958fd9a734fe1d9a9768357b6045893"
51
+ "gitHead": "d327d86e07d16eaa0ecdf0656c1868ba73261393"
52
52
  }