appium-android-driver 5.14.0-alpha.0 → 5.14.0-alpha.1

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.
@@ -0,0 +1,9 @@
1
+ import { AndroidDriver } from './lib/driver';
2
+ export type * from './lib/commands/types';
3
+ export { ANDROID_DRIVER_CONSTRAINTS as commonCapConstraints } from './lib/constraints';
4
+ export * from './lib/driver';
5
+ export { SETTINGS_HELPER_PKG_ID, default as androidHelpers } from './lib/helpers/android';
6
+ export type * from './lib/helpers/types';
7
+ export { CHROMIUM_WIN, NATIVE_WIN, WEBVIEW_BASE, WEBVIEW_WIN, default as webviewHelpers, } from './lib/helpers/webview';
8
+ export default AndroidDriver;
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,aAAa,EAAC,MAAM,cAAc,CAAC;AAC3C,mBAAmB,sBAAsB,CAAC;AAC1C,OAAO,EAAC,0BAA0B,IAAI,oBAAoB,EAAC,MAAM,mBAAmB,CAAC;AACrF,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAC,sBAAsB,EAAE,OAAO,IAAI,cAAc,EAAC,MAAM,uBAAuB,CAAC;AACxF,mBAAmB,qBAAqB,CAAC;AACzC,OAAO,EACL,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,WAAW,EACX,OAAO,IAAI,cAAc,GAC1B,MAAM,uBAAuB,CAAC;AAE/B,eAAe,aAAa,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,2DAA2C;AAC3C,IAAA,4BAAO,GAAE,CAAC;AAEV,yCAA2C;AAE3C,iDAAqF;AAA7E,mHAAA,0BAA0B,OAAwB;AAC1D,+CAA6B;AAC7B,iDAAwF;AAAhF,iHAAA,sBAAsB,OAAA;AAAE,0HAAA,OAAO,OAAkB;AAEzD,iDAM+B;AAL7B,uGAAA,YAAY,OAAA;AACZ,qGAAA,UAAU,OAAA;AACV,uGAAA,YAAY,OAAA;AACZ,sGAAA,WAAW,OAAA;AACX,0HAAA,OAAO,OAAkB;AAG3B,kBAAe,sBAAa,CAAC"}
package/index.ts ADDED
@@ -0,0 +1,18 @@
1
+ import {install} from 'source-map-support';
2
+ install();
3
+
4
+ import {AndroidDriver} from './lib/driver';
5
+ export type * from './lib/commands/types';
6
+ export {ANDROID_DRIVER_CONSTRAINTS as commonCapConstraints} from './lib/constraints';
7
+ export * from './lib/driver';
8
+ export {SETTINGS_HELPER_PKG_ID, default as androidHelpers} from './lib/helpers/android';
9
+ export type * from './lib/helpers/types';
10
+ export {
11
+ CHROMIUM_WIN,
12
+ NATIVE_WIN,
13
+ WEBVIEW_BASE,
14
+ WEBVIEW_WIN,
15
+ default as webviewHelpers,
16
+ } from './lib/helpers/webview';
17
+
18
+ export default AndroidDriver;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appium-android-driver",
3
- "version": "5.14.0-alpha.0",
3
+ "version": "5.14.0-alpha.1",
4
4
  "description": "Android UiAutomator and Chrome support for Appium",
5
5
  "keywords": [
6
6
  "appium",
@@ -25,12 +25,13 @@
25
25
  "lib": "lib"
26
26
  },
27
27
  "files": [
28
- "index.js",
28
+ "index.ts",
29
29
  "lib",
30
- "build/index.js",
31
- "build/lib",
30
+ "build",
32
31
  "bootstrap/bin/AppiumBootstrap.jar",
33
- "CHANGELOG.md"
32
+ "CHANGELOG.md",
33
+ "!build/test",
34
+ "!build/tsconfig.tsbuildinfo"
34
35
  ],
35
36
  "scripts": {
36
37
  "build": "tsc -b",