appium-adb 12.10.1 → 12.10.2
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 +6 -0
- package/build/lib/adb.d.ts +164 -162
- package/build/lib/adb.d.ts.map +1 -1
- package/build/lib/adb.js +169 -167
- package/build/lib/adb.js.map +1 -1
- package/build/lib/tools/adb-commands.d.ts +0 -255
- package/build/lib/tools/adb-commands.d.ts.map +1 -1
- package/build/lib/tools/adb-commands.js +1 -621
- package/build/lib/tools/adb-commands.js.map +1 -1
- package/build/lib/tools/apk-utils.d.ts +0 -106
- package/build/lib/tools/apk-utils.d.ts.map +1 -1
- package/build/lib/tools/apk-utils.js +1 -452
- package/build/lib/tools/apk-utils.js.map +1 -1
- package/build/lib/tools/app-commands.d.ts +322 -0
- package/build/lib/tools/app-commands.d.ts.map +1 -0
- package/build/lib/tools/app-commands.js +1027 -0
- package/build/lib/tools/app-commands.js.map +1 -0
- package/build/lib/tools/fs-commands.d.ts +69 -0
- package/build/lib/tools/fs-commands.d.ts.map +1 -0
- package/build/lib/tools/fs-commands.js +133 -0
- package/build/lib/tools/fs-commands.js.map +1 -0
- package/build/lib/tools/system-calls.d.ts +0 -28
- package/build/lib/tools/system-calls.d.ts.map +1 -1
- package/build/lib/tools/system-calls.js +0 -71
- package/build/lib/tools/system-calls.js.map +1 -1
- package/lib/adb.ts +171 -167
- package/lib/tools/adb-commands.js +3 -609
- package/lib/tools/apk-utils.js +2 -475
- package/lib/tools/app-commands.js +1035 -0
- package/lib/tools/fs-commands.js +124 -0
- package/lib/tools/system-calls.js +0 -68
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [12.10.2](https://github.com/appium/appium-adb/compare/v12.10.1...v12.10.2) (2025-01-09)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* Regroup application and filesystem commands ([#788](https://github.com/appium/appium-adb/issues/788)) ([9908400](https://github.com/appium/appium-adb/commit/990840031f729bf5b51d3a16a517762dd84c4d06))
|
|
6
|
+
|
|
1
7
|
## [12.10.1](https://github.com/appium/appium-adb/compare/v12.10.0...v12.10.1) (2025-01-09)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/build/lib/adb.d.ts
CHANGED
|
@@ -3,17 +3,19 @@ import type { ADBOptions, ADBExecutable } from './types';
|
|
|
3
3
|
import type { Logcat } from './logcat';
|
|
4
4
|
import type { LogcatOpts, StringRecord } from './tools/types';
|
|
5
5
|
import type { LRUCache } from 'lru-cache';
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
6
|
+
import * as generalCommands from './tools/adb-commands';
|
|
7
|
+
import * as manifestCommands from './tools/android-manifest';
|
|
8
|
+
import * as systemCommands from './tools/system-calls';
|
|
9
|
+
import * as signingCommands from './tools/apk-signing';
|
|
10
|
+
import * as apkUtilCommands from './tools/apk-utils';
|
|
11
|
+
import * as apksUtilCommands from './tools/apks-utils';
|
|
12
|
+
import * as aabUtilCommands from './tools/aab-utils';
|
|
13
|
+
import * as emuCommands from './tools/adb-emu-commands';
|
|
14
14
|
import * as lockManagementCommands from './tools/lockmgmt';
|
|
15
15
|
import * as keyboardCommands from './tools/keyboard-commands';
|
|
16
16
|
import * as deviceSettingsCommands from './tools/device-settings';
|
|
17
|
+
import * as fsCommands from './tools/fs-commands';
|
|
18
|
+
import * as appCommands from './tools/app-commands';
|
|
17
19
|
export declare const DEFAULT_ADB_PORT = 5037;
|
|
18
20
|
export declare const DEFAULT_OPTS: {
|
|
19
21
|
readonly sdkRoot: string | undefined;
|
|
@@ -74,93 +76,89 @@ export declare class ADB implements ADBOptions {
|
|
|
74
76
|
*/
|
|
75
77
|
clone(opts?: ADBOptions): ADB;
|
|
76
78
|
static createADB(opts?: ADBOptions): Promise<ADB>;
|
|
77
|
-
shellChunks: typeof
|
|
78
|
-
getAdbWithCorrectAdbPath: typeof
|
|
79
|
-
initAapt: typeof
|
|
80
|
-
initAapt2: typeof
|
|
81
|
-
initZipAlign: typeof
|
|
82
|
-
initBundletool: typeof
|
|
83
|
-
getApiLevel: typeof
|
|
84
|
-
isDeviceConnected: typeof
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
getApkInfo: typeof apkUtilsMethods.getApkInfo;
|
|
161
|
-
getPackageInfo: typeof apkUtilsMethods.getPackageInfo;
|
|
162
|
-
pullApk: typeof apkUtilsMethods.pullApk;
|
|
163
|
-
activateApp: typeof apkUtilsMethods.activateApp;
|
|
79
|
+
shellChunks: typeof generalCommands.shellChunks;
|
|
80
|
+
getAdbWithCorrectAdbPath: typeof generalCommands.getAdbWithCorrectAdbPath;
|
|
81
|
+
initAapt: typeof generalCommands.initAapt;
|
|
82
|
+
initAapt2: typeof generalCommands.initAapt2;
|
|
83
|
+
initZipAlign: typeof generalCommands.initZipAlign;
|
|
84
|
+
initBundletool: typeof generalCommands.initBundletool;
|
|
85
|
+
getApiLevel: typeof generalCommands.getApiLevel;
|
|
86
|
+
isDeviceConnected: typeof generalCommands.isDeviceConnected;
|
|
87
|
+
clearTextField: typeof generalCommands.clearTextField;
|
|
88
|
+
lock: typeof generalCommands.lock;
|
|
89
|
+
back: typeof generalCommands.back;
|
|
90
|
+
goToHome: typeof generalCommands.goToHome;
|
|
91
|
+
getAdbPath: typeof generalCommands.getAdbPath;
|
|
92
|
+
sendTelnetCommand: typeof generalCommands.sendTelnetCommand;
|
|
93
|
+
getForwardList: typeof generalCommands.getForwardList;
|
|
94
|
+
forwardPort: typeof generalCommands.forwardPort;
|
|
95
|
+
removePortForward: typeof generalCommands.removePortForward;
|
|
96
|
+
getReverseList: typeof generalCommands.getReverseList;
|
|
97
|
+
reversePort: typeof generalCommands.reversePort;
|
|
98
|
+
removePortReverse: typeof generalCommands.removePortReverse;
|
|
99
|
+
forwardAbstractPort: typeof generalCommands.forwardAbstractPort;
|
|
100
|
+
ping: typeof generalCommands.ping;
|
|
101
|
+
restart: typeof generalCommands.restart;
|
|
102
|
+
startLogcat: typeof generalCommands.startLogcat;
|
|
103
|
+
stopLogcat: typeof generalCommands.stopLogcat;
|
|
104
|
+
getLogcatLogs: typeof generalCommands.getLogcatLogs;
|
|
105
|
+
setLogcatListener: typeof generalCommands.setLogcatListener;
|
|
106
|
+
removeLogcatListener: typeof generalCommands.removeLogcatListener;
|
|
107
|
+
bugreport: typeof generalCommands.bugreport;
|
|
108
|
+
screenrecord: typeof generalCommands.screenrecord;
|
|
109
|
+
listFeatures: typeof generalCommands.listFeatures;
|
|
110
|
+
isStreamedInstallSupported: typeof generalCommands.isStreamedInstallSupported;
|
|
111
|
+
isIncrementalInstallSupported: typeof generalCommands.isIncrementalInstallSupported;
|
|
112
|
+
takeScreenshot: typeof generalCommands.takeScreenshot;
|
|
113
|
+
listPorts: typeof generalCommands.listPorts;
|
|
114
|
+
executeApksigner: typeof signingCommands.executeApksigner;
|
|
115
|
+
signWithDefaultCert: typeof signingCommands.signWithDefaultCert;
|
|
116
|
+
signWithCustomCert: typeof signingCommands.signWithCustomCert;
|
|
117
|
+
sign: typeof signingCommands.sign;
|
|
118
|
+
zipAlignApk: typeof signingCommands.zipAlignApk;
|
|
119
|
+
checkApkCert: typeof signingCommands.checkApkCert;
|
|
120
|
+
getKeystoreHash: typeof signingCommands.getKeystoreHash;
|
|
121
|
+
grantAllPermissions: typeof appCommands.grantAllPermissions;
|
|
122
|
+
grantPermissions: typeof appCommands.grantPermissions;
|
|
123
|
+
grantPermission: typeof appCommands.grantPermission;
|
|
124
|
+
revokePermission: typeof appCommands.revokePermission;
|
|
125
|
+
getGrantedPermissions: typeof appCommands.getGrantedPermissions;
|
|
126
|
+
getDeniedPermissions: typeof appCommands.getDeniedPermissions;
|
|
127
|
+
getReqPermissions: typeof appCommands.getReqPermissions;
|
|
128
|
+
stopAndClear: typeof appCommands.stopAndClear;
|
|
129
|
+
isValidClass: typeof appCommands.isValidClass;
|
|
130
|
+
resolveLaunchableActivity: typeof appCommands.resolveLaunchableActivity;
|
|
131
|
+
forceStop: typeof appCommands.forceStop;
|
|
132
|
+
killPackage: typeof appCommands.killPackage;
|
|
133
|
+
clear: typeof appCommands.clear;
|
|
134
|
+
listProcessStatus: typeof appCommands.listProcessStatus;
|
|
135
|
+
getNameByPid: typeof appCommands.getNameByPid;
|
|
136
|
+
getPIDsByName: typeof appCommands.getPIDsByName;
|
|
137
|
+
killProcessesByName: typeof appCommands.killProcessesByName;
|
|
138
|
+
killProcessByPID: typeof appCommands.killProcessByPID;
|
|
139
|
+
broadcastProcessEnd: typeof appCommands.broadcastProcessEnd;
|
|
140
|
+
broadcast: typeof appCommands.broadcast;
|
|
141
|
+
processExists: typeof appCommands.processExists;
|
|
142
|
+
readonly APP_INSTALL_STATE: StringRecord<import("./tools/types").InstallState>;
|
|
143
|
+
isAppInstalled: typeof appCommands.isAppInstalled;
|
|
144
|
+
startUri: typeof appCommands.startUri;
|
|
145
|
+
startApp: typeof appCommands.startApp;
|
|
146
|
+
dumpWindows: typeof appCommands.dumpWindows;
|
|
147
|
+
getFocusedPackageAndActivity: typeof appCommands.getFocusedPackageAndActivity;
|
|
148
|
+
waitForActivityOrNot: typeof appCommands.waitForActivityOrNot;
|
|
149
|
+
waitForActivity: typeof appCommands.waitForActivity;
|
|
150
|
+
waitForNotActivity: typeof appCommands.waitForNotActivity;
|
|
151
|
+
getPackageInfo: typeof appCommands.getPackageInfo;
|
|
152
|
+
pullApk: typeof appCommands.pullApk;
|
|
153
|
+
activateApp: typeof appCommands.activateApp;
|
|
154
|
+
uninstallApk: typeof apkUtilCommands.uninstallApk;
|
|
155
|
+
installFromDevicePath: typeof apkUtilCommands.installFromDevicePath;
|
|
156
|
+
cacheApk: typeof apkUtilCommands.cacheApk;
|
|
157
|
+
install: typeof apkUtilCommands.install;
|
|
158
|
+
installOrUpgrade: typeof apkUtilCommands.installOrUpgrade;
|
|
159
|
+
extractStringsFromApk: typeof apkUtilCommands.extractStringsFromApk;
|
|
160
|
+
getApkInfo: typeof apkUtilCommands.getApkInfo;
|
|
161
|
+
getApplicationInstallState: typeof apkUtilCommands.getApplicationInstallState;
|
|
164
162
|
hideKeyboard: typeof keyboardCommands.hideKeyboard;
|
|
165
163
|
isSoftKeyboardPresent: typeof keyboardCommands.isSoftKeyboardPresent;
|
|
166
164
|
keyevent: typeof keyboardCommands.keyevent;
|
|
@@ -180,36 +178,36 @@ export declare class ADB implements ADBOptions {
|
|
|
180
178
|
isScreenLocked: typeof lockManagementCommands.isScreenLocked;
|
|
181
179
|
dismissKeyguard: typeof lockManagementCommands.dismissKeyguard;
|
|
182
180
|
cycleWakeUp: typeof lockManagementCommands.cycleWakeUp;
|
|
183
|
-
getSdkBinaryPath: typeof
|
|
181
|
+
getSdkBinaryPath: typeof systemCommands.getSdkBinaryPath;
|
|
184
182
|
getBinaryNameForOS: ((binaryName: string) => string) & _.MemoizedFunction;
|
|
185
|
-
getBinaryFromSdkRoot: typeof
|
|
186
|
-
getBinaryFromPath: typeof
|
|
187
|
-
getConnectedDevices: typeof
|
|
188
|
-
getDevicesWithRetry: typeof
|
|
189
|
-
reconnect: typeof
|
|
190
|
-
restartAdb: typeof
|
|
191
|
-
killServer: typeof
|
|
183
|
+
getBinaryFromSdkRoot: typeof systemCommands.getBinaryFromSdkRoot;
|
|
184
|
+
getBinaryFromPath: typeof systemCommands.getBinaryFromPath;
|
|
185
|
+
getConnectedDevices: typeof systemCommands.getConnectedDevices;
|
|
186
|
+
getDevicesWithRetry: typeof systemCommands.getDevicesWithRetry;
|
|
187
|
+
reconnect: typeof systemCommands.reconnect;
|
|
188
|
+
restartAdb: typeof systemCommands.restartAdb;
|
|
189
|
+
killServer: typeof systemCommands.killServer;
|
|
192
190
|
resetTelnetAuthToken: (() => Promise<boolean>) & _.MemoizedFunction;
|
|
193
|
-
adbExecEmu: typeof
|
|
191
|
+
adbExecEmu: typeof systemCommands.adbExecEmu;
|
|
194
192
|
EXEC_OUTPUT_FORMAT: {
|
|
195
193
|
STDOUT: "stdout";
|
|
196
194
|
FULL: "full";
|
|
197
195
|
};
|
|
198
|
-
adbExec: typeof
|
|
199
|
-
shell: typeof
|
|
200
|
-
createSubProcess: typeof
|
|
201
|
-
getAdbServerPort: typeof
|
|
202
|
-
getEmulatorPort: typeof
|
|
203
|
-
getPortFromEmulatorString: typeof
|
|
204
|
-
getConnectedEmulators: typeof
|
|
205
|
-
setEmulatorPort: typeof
|
|
206
|
-
setDeviceId: typeof
|
|
207
|
-
setDevice: typeof
|
|
208
|
-
getRunningAVD: typeof
|
|
209
|
-
getRunningAVDWithRetry: typeof
|
|
210
|
-
killAllEmulators: typeof
|
|
211
|
-
killEmulator: typeof
|
|
212
|
-
launchAVD: typeof
|
|
196
|
+
adbExec: typeof systemCommands.adbExec;
|
|
197
|
+
shell: typeof systemCommands.shell;
|
|
198
|
+
createSubProcess: typeof systemCommands.createSubProcess;
|
|
199
|
+
getAdbServerPort: typeof systemCommands.getAdbServerPort;
|
|
200
|
+
getEmulatorPort: typeof systemCommands.getEmulatorPort;
|
|
201
|
+
getPortFromEmulatorString: typeof systemCommands.getPortFromEmulatorString;
|
|
202
|
+
getConnectedEmulators: typeof systemCommands.getConnectedEmulators;
|
|
203
|
+
setEmulatorPort: typeof systemCommands.setEmulatorPort;
|
|
204
|
+
setDeviceId: typeof systemCommands.setDeviceId;
|
|
205
|
+
setDevice: typeof systemCommands.setDevice;
|
|
206
|
+
getRunningAVD: typeof systemCommands.getRunningAVD;
|
|
207
|
+
getRunningAVDWithRetry: typeof systemCommands.getRunningAVDWithRetry;
|
|
208
|
+
killAllEmulators: typeof systemCommands.killAllEmulators;
|
|
209
|
+
killEmulator: typeof systemCommands.killEmulator;
|
|
210
|
+
launchAVD: typeof systemCommands.launchAVD;
|
|
213
211
|
getVersion: (() => Promise<{
|
|
214
212
|
binary: {
|
|
215
213
|
version: import("semver").SemVer | null;
|
|
@@ -219,49 +217,46 @@ export declare class ADB implements ADBOptions {
|
|
|
219
217
|
version: import("semver").SemVer | null;
|
|
220
218
|
};
|
|
221
219
|
}>) & _.MemoizedFunction;
|
|
222
|
-
waitForEmulatorReady: typeof
|
|
223
|
-
waitForDevice: typeof
|
|
224
|
-
reboot: typeof
|
|
225
|
-
changeUserPrivileges: typeof
|
|
226
|
-
root: typeof
|
|
227
|
-
unroot: typeof
|
|
228
|
-
isRoot: typeof
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
getEmuVersionInfo: typeof emuMethods.getEmuVersionInfo;
|
|
263
|
-
getEmuImageProperties: typeof emuMethods.getEmuImageProperties;
|
|
264
|
-
checkAvdExist: typeof emuMethods.checkAvdExist;
|
|
220
|
+
waitForEmulatorReady: typeof systemCommands.waitForEmulatorReady;
|
|
221
|
+
waitForDevice: typeof systemCommands.waitForDevice;
|
|
222
|
+
reboot: typeof systemCommands.reboot;
|
|
223
|
+
changeUserPrivileges: typeof systemCommands.changeUserPrivileges;
|
|
224
|
+
root: typeof systemCommands.root;
|
|
225
|
+
unroot: typeof systemCommands.unroot;
|
|
226
|
+
isRoot: typeof systemCommands.isRoot;
|
|
227
|
+
installMitmCertificate: typeof systemCommands.installMitmCertificate;
|
|
228
|
+
isMitmCertificateInstalled: typeof systemCommands.isMitmCertificateInstalled;
|
|
229
|
+
execBundletool: typeof apksUtilCommands.execBundletool;
|
|
230
|
+
getDeviceSpec: typeof apksUtilCommands.getDeviceSpec;
|
|
231
|
+
installMultipleApks: typeof apksUtilCommands.installMultipleApks;
|
|
232
|
+
installApks: typeof apksUtilCommands.installApks;
|
|
233
|
+
extractBaseApk: typeof apksUtilCommands.extractBaseApk;
|
|
234
|
+
extractLanguageApk: typeof apksUtilCommands.extractLanguageApk;
|
|
235
|
+
isTestPackageOnlyError: typeof apksUtilCommands.isTestPackageOnlyError;
|
|
236
|
+
packageAndLaunchActivityFromManifest: typeof manifestCommands.packageAndLaunchActivityFromManifest;
|
|
237
|
+
targetSdkVersionFromManifest: typeof manifestCommands.targetSdkVersionFromManifest;
|
|
238
|
+
targetSdkVersionUsingPKG: typeof manifestCommands.targetSdkVersionUsingPKG;
|
|
239
|
+
compileManifest: typeof manifestCommands.compileManifest;
|
|
240
|
+
insertManifest: typeof manifestCommands.insertManifest;
|
|
241
|
+
hasInternetPermissionFromManifest: typeof manifestCommands.hasInternetPermissionFromManifest;
|
|
242
|
+
extractUniversalApk: typeof aabUtilCommands.extractUniversalApk;
|
|
243
|
+
isEmulatorConnected: typeof emuCommands.isEmulatorConnected;
|
|
244
|
+
verifyEmulatorConnected: typeof emuCommands.verifyEmulatorConnected;
|
|
245
|
+
fingerprint: typeof emuCommands.fingerprint;
|
|
246
|
+
rotate: typeof emuCommands.rotate;
|
|
247
|
+
powerAC: typeof emuCommands.powerAC;
|
|
248
|
+
sensorSet: typeof emuCommands.sensorSet;
|
|
249
|
+
powerCapacity: typeof emuCommands.powerCapacity;
|
|
250
|
+
powerOFF: typeof emuCommands.powerOFF;
|
|
251
|
+
sendSMS: typeof emuCommands.sendSMS;
|
|
252
|
+
gsmCall: typeof emuCommands.gsmCall;
|
|
253
|
+
gsmSignal: typeof emuCommands.gsmSignal;
|
|
254
|
+
gsmVoice: typeof emuCommands.gsmVoice;
|
|
255
|
+
networkSpeed: typeof emuCommands.networkSpeed;
|
|
256
|
+
execEmuConsoleCommand: typeof emuCommands.execEmuConsoleCommand;
|
|
257
|
+
getEmuVersionInfo: typeof emuCommands.getEmuVersionInfo;
|
|
258
|
+
getEmuImageProperties: typeof emuCommands.getEmuImageProperties;
|
|
259
|
+
checkAvdExist: typeof emuCommands.checkAvdExist;
|
|
265
260
|
readonly POWER_AC_STATES: {
|
|
266
261
|
readonly POWER_AC_ON: "on";
|
|
267
262
|
readonly POWER_AC_OFF: "off";
|
|
@@ -311,6 +306,13 @@ export declare class ADB implements ADBOptions {
|
|
|
311
306
|
readonly HEART_RATE: "heart-rate";
|
|
312
307
|
readonly RGBC_LIGHT: "rgbc-light";
|
|
313
308
|
};
|
|
309
|
+
fileExists: typeof fsCommands.fileExists;
|
|
310
|
+
ls: typeof fsCommands.ls;
|
|
311
|
+
fileSize: typeof fsCommands.fileSize;
|
|
312
|
+
rimraf: typeof fsCommands.rimraf;
|
|
313
|
+
push: typeof fsCommands.push;
|
|
314
|
+
pull: typeof fsCommands.pull;
|
|
315
|
+
mkdir: typeof fsCommands.mkdir;
|
|
314
316
|
getDeviceProperty: typeof deviceSettingsCommands.getDeviceProperty;
|
|
315
317
|
setDeviceProperty: typeof deviceSettingsCommands.setDeviceProperty;
|
|
316
318
|
getDeviceSysLanguage: typeof deviceSettingsCommands.getDeviceSysLanguage;
|
package/build/lib/adb.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adb.d.ts","sourceRoot":"","sources":["../../lib/adb.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,QAAQ,CAAC;AAQvB,OAAO,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AACzD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,KAAK,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC9D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAG1C,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"adb.d.ts","sourceRoot":"","sources":["../../lib/adb.ts"],"names":[],"mappings":"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"}
|