Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Cap-go/website
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Nov 9, 2024
2 parents b44916f + f44b3aa commit 744bdc3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/content/docs/docs/plugin/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ CapacitorUpdater can be configured with these options:
| **`localApiFiles`** | <code>string</code> | Configure the CLI to use a local file api for testing. | <code>undefined</code> | 6.3.3 |
| **`allowModifyUrl`** | <code>boolean</code> | Allow the plugin to modify the updateUrl, statsUrl and channelUrl dynamically from the JavaScript side. | <code>false</code> | 5.4.0 |
| **`defaultChannel`** | <code>string</code> | Set the default channel for the app in the config. | <code>undefined</code> | 5.5.0 |
| **`appId`** | <code>string</code> | Configure the app id for the app in the config. | <code>undefined</code> | 6.0.0 |

## Examples

Expand Down Expand Up @@ -70,7 +71,8 @@ In `capacitor.config.json`:
"localApi": undefined,
"localApiFiles": undefined,
"allowModifyUrl": undefined,
"defaultChannel": undefined
"defaultChannel": undefined,
"appId": undefined
}
}
}
Expand Down Expand Up @@ -109,6 +111,7 @@ const config: CapacitorConfig = {
localApiFiles: undefined,
allowModifyUrl: undefined,
defaultChannel: undefined,
appId: undefined,
},
},
};
Expand Down

0 comments on commit 744bdc3

Please sign in to comment.