Skip to content

Commit

Permalink
fix: Make package parameter of deep link command optional (#847)
Browse files Browse the repository at this point in the history
  • Loading branch information
fur0ut0 authored Dec 11, 2024
1 parent 55993d1 commit ddc7477
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ Start URI that may take users directly to the specific content in the app. Read
Name | Type | Required | Description | Example
--- | --- | --- | --- | ---
url | string | yes | The URL to start | theapp://login/
package | string | yes | The name of the package to start the URI with | 'com.mycompany'
package | string | no | The name of the package to start the URI with. This argument was required previously but became optional since version 3.9.3 | 'com.mycompany'
waitForLaunch | boolean | no | If `false` then ADB won't wait for the started activity to return the control. `true` by default | false

### mobile: startLogsBroadcast
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface DeepLinkOpts {
/**
* The name of the package to start the URI with.
*/
package: string;
package?: string;
/**
* If `false` then adb won't wait for the started activity to return the control.
* @defaultValue true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"singleQuote": true
},
"dependencies": {
"appium-adb": "^12.7.0",
"appium-adb": "^12.7.3",
"appium-android-driver": "^9.14.2",
"appium-uiautomator2-server": "^7.0.24",
"asyncbox": "^3.0.0",
Expand Down

0 comments on commit ddc7477

Please sign in to comment.