@mcesystems/apple-kit 1.0.85 → 1.0.87
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 +51 -39
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +51 -39
- package/dist/index.mjs.map +3 -3
- package/dist/types/index.d.ts +2 -2
- package/package.json +4 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -286,7 +286,7 @@ export declare class AppleDeviceKit {
|
|
|
286
286
|
* @param startupTimeout Time to wait for proxy to start (ms)
|
|
287
287
|
* @returns The port forward result with the allocated local port
|
|
288
288
|
*/
|
|
289
|
-
startPortForwardAsync(devicePort: number): Promise<PortForwardResult>;
|
|
289
|
+
startPortForwardAsync(devicePort: number, timeoutMs?: number): Promise<PortForwardResult>;
|
|
290
290
|
/**
|
|
291
291
|
* Kill the current port forwarding process if running
|
|
292
292
|
*/
|
|
@@ -372,7 +372,7 @@ export declare class IosClient {
|
|
|
372
372
|
forward({ fromPort, toPort }: {
|
|
373
373
|
fromPort: number;
|
|
374
374
|
toPort: number;
|
|
375
|
-
}):
|
|
375
|
+
}): import("child_process").ChildProcessByStdio<null, import("stream").Readable, import("stream").Readable>;
|
|
376
376
|
info(): Promise<IosCommandResult>;
|
|
377
377
|
installApp(ipaPath: string): Promise<IosCommandResult>;
|
|
378
378
|
uninstallApp(bundleId: string): Promise<IosCommandResult>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcesystems/apple-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.87",
|
|
4
4
|
"description": "iOS device management toolkit using libimobiledevice command-line tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"graphql-request": "^5.2.0",
|
|
38
38
|
"tsx": "^4.21.0",
|
|
39
39
|
"plist": "^3.1.0",
|
|
40
|
-
"@mcesystems/tool-debug-g4": "1.0.
|
|
41
|
-
"@mcesystems/mdm-client-g4": "1.0.
|
|
40
|
+
"@mcesystems/tool-debug-g4": "1.0.87",
|
|
41
|
+
"@mcesystems/mdm-client-g4": "1.0.87"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/node": "^22.10.2",
|
|
@@ -53,8 +53,7 @@
|
|
|
53
53
|
"typescript": "^5.7.2",
|
|
54
54
|
"vitest": "^2.1.8",
|
|
55
55
|
"@types/plist": "^3.0.5",
|
|
56
|
-
"@mcesystems/usb-device-listener": "1.0.
|
|
57
|
-
"@mcesystems/usbmuxd-instance-manager": "1.0.85"
|
|
56
|
+
"@mcesystems/usb-device-listener": "1.0.87"
|
|
58
57
|
},
|
|
59
58
|
"files": [
|
|
60
59
|
"dist",
|