@mcesystems/apple-kit 1.0.98 → 1.0.100
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/dist/index.js +34 -13
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +28 -7
- package/dist/index.mjs.map +2 -2
- package/dist/types/index.d.ts +5 -1
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -372,6 +372,10 @@ export declare class AppleDeviceKit {
|
|
|
372
372
|
*/
|
|
373
373
|
private ensureNotDisposed;
|
|
374
374
|
info(): Promise<LockdownInfo>;
|
|
375
|
+
batteryInfo(): Promise<BatteryInfo>;
|
|
376
|
+
capacityInfo(): Promise<CapacityInfo>;
|
|
377
|
+
cloudConfigInfo(): Promise<CloudConfigurationInfo>;
|
|
378
|
+
regularModelNumber(): Promise<string>;
|
|
375
379
|
listDevices(): Promise<IosListResult>;
|
|
376
380
|
/**
|
|
377
381
|
* Wait for device to be paired
|
|
@@ -548,7 +552,7 @@ export declare class IosClient {
|
|
|
548
552
|
batteryInfo(): Promise<IosCommandResult>;
|
|
549
553
|
capacityInfo(): Promise<IosCommandResult>;
|
|
550
554
|
cloudConfigInfo(): Promise<IosCommandResult>;
|
|
551
|
-
regularModelNumber(): Promise<
|
|
555
|
+
regularModelNumber(): Promise<string>;
|
|
552
556
|
installApp(ipaPath: string): Promise<IosCommandResult>;
|
|
553
557
|
uninstallApp(bundleId: string): Promise<IosCommandResult>;
|
|
554
558
|
listApps(): Promise<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcesystems/apple-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.100",
|
|
4
4
|
"description": "iOS device management toolkit using libimobiledevice command-line tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"tsx": "^4.21.0",
|
|
40
40
|
"plist": "^3.1.0",
|
|
41
41
|
"ts-retry-promise": "^0.8.1",
|
|
42
|
-
"@mcesystems/mdm-client-g4": "1.0.
|
|
43
|
-
"@mcesystems/tool-debug-g4": "1.0.
|
|
42
|
+
"@mcesystems/mdm-client-g4": "1.0.100",
|
|
43
|
+
"@mcesystems/tool-debug-g4": "1.0.100"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "^22.10.2",
|