appium-uiautomator2-server 10.0.0 → 10.1.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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [10.1.0](https://github.com/appium/appium-uiautomator2-server/compare/v10.0.1...v10.1.0) (2026-05-13)
2
+
3
+ ### Features
4
+
5
+ * Add type exports ([#765](https://github.com/appium/appium-uiautomator2-server/issues/765)) ([9094b2e](https://github.com/appium/appium-uiautomator2-server/commit/9094b2e9ca8cb35727301e2709d485020e6674d3))
6
+
7
+ ## [10.0.1](https://github.com/appium/appium-uiautomator2-server/compare/v10.0.0...v10.0.1) (2026-05-09)
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * **deps:** bump io.netty:netty-codec-http ([#764](https://github.com/appium/appium-uiautomator2-server/issues/764)) ([7eac732](https://github.com/appium/appium-uiautomator2-server/commit/7eac732d588fa0371bfdfb7a540453466d3dc8a1))
12
+
1
13
  ## [10.0.0](https://github.com/appium/appium-uiautomator2-server/compare/v9.11.2...v10.0.0) (2026-05-08)
2
14
 
3
15
  ### ⚠ BREAKING CHANGES
package/index.d.mts ADDED
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Version of this package (mirrors package.json#version).
3
+ */
4
+ export const version: string;
5
+
6
+ /**
7
+ * Absolute path to the `appium-uiautomator2-server-v<version>.apk` APK.
8
+ */
9
+ export const SERVER_APK_PATH: string;
10
+
11
+ /**
12
+ * Absolute path to the `appium-uiautomator2-server-debug-androidTest.apk` APK.
13
+ */
14
+ export const TEST_APK_PATH: string;
package/package.json CHANGED
@@ -1,9 +1,17 @@
1
1
  {
2
2
  "name": "appium-uiautomator2-server",
3
- "version": "10.0.0",
3
+ "version": "10.1.0",
4
4
  "description": "A netty server with uiautomator2 handlers",
5
5
  "type": "module",
6
- "main": "index.mjs",
6
+ "main": "./index.mjs",
7
+ "types": "./index.d.mts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./index.d.mts",
11
+ "default": "./index.mjs"
12
+ },
13
+ "./package.json": "./package.json"
14
+ },
7
15
  "repository": {
8
16
  "type": "git",
9
17
  "url": "https://github.com/appium/appium-uiautomator2-server"
@@ -24,6 +32,7 @@
24
32
  },
25
33
  "files": [
26
34
  "./index.mjs",
35
+ "./index.d.mts",
27
36
  "./apks",
28
37
  "CHANGELOG.md"
29
38
  ],