Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export interface AppleDevice {
udid: string;
simctl?: any;
devicectl?: any;
/** @deprecated We'll stop supporting idb */
idb?: any;
[key: string]: any;
}
Expand Down
4 changes: 3 additions & 1 deletion lib/webdriveragent.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class WebDriverAgent {
agentPath;

/**
* @param {import('appium-xcode').XcodeVersion} xcodeVersion
* @param {import('appium-xcode').XcodeVersion | undefined} xcodeVersion @deprecated Will be removed as no actual usage.
* @param {import('./types').WebDriverAgentArgs} args
* @param {import('@appium/types').AppiumLogger?} [log=null]
*/
Expand All @@ -51,6 +51,7 @@ export class WebDriverAgent {
this.iosSdkVersion = args.iosSdkVersion;
this.host = args.host;
this.isRealDevice = !!args.realDevice;
/** @deprecated We'll stop supporting idb */
this.idb = args.device.idb;
this.wdaBundlePath = args.wdaBundlePath;

Expand Down Expand Up @@ -539,6 +540,7 @@ export class WebDriverAgent {
}

/**
* @deprecated We'll stop using idb
* @returns {Promise<{wdaBundleId: string, testBundleId: string, wdaBundlePath: string}>}
*/
async prepareWDA () {
Expand Down
2 changes: 1 addition & 1 deletion lib/xcodebuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class XcodeBuild {
xcodebuild;

/**
* @param {import('appium-xcode').XcodeVersion} xcodeVersion
* @param {import('appium-xcode').XcodeVersion | undefined} xcodeVersion @deprecated Will be removed as no actual usage.
* @param {import('./types').AppleDevice} device
* @param {import('./types').XcodeBuildArgs} args
* @param {import('@appium/types').AppiumLogger | null} [log=null]
Expand Down
Loading