From f44b3aa0e2b211dbca70ab2ce7aee15b0504e156 Mon Sep 17 00:00:00 2001 From: Cap-go Date: Fri, 8 Nov 2024 17:52:54 +0000 Subject: [PATCH] Update from https://github.com/Cap-go/capacitor-updater/commit/354df19708c9a67ef8953db6a51b8d228cf7171d --- src/content/docs/docs/plugin/api.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/content/docs/docs/plugin/api.md b/src/content/docs/docs/plugin/api.md index 3badc82f..24aa31f7 100644 --- a/src/content/docs/docs/plugin/api.md +++ b/src/content/docs/docs/plugin/api.md @@ -39,6 +39,7 @@ CapacitorUpdater can be configured with these options: | **`localApiFiles`** | string | Configure the CLI to use a local file api for testing. | undefined | 6.3.3 | | **`allowModifyUrl`** | boolean | Allow the plugin to modify the updateUrl, statsUrl and channelUrl dynamically from the JavaScript side. | false | 5.4.0 | | **`defaultChannel`** | string | Set the default channel for the app in the config. | undefined | 5.5.0 | +| **`appId`** | string | Configure the app id for the app in the config. | undefined | 6.0.0 | ## Examples @@ -70,7 +71,8 @@ In `capacitor.config.json`: "localApi": undefined, "localApiFiles": undefined, "allowModifyUrl": undefined, - "defaultChannel": undefined + "defaultChannel": undefined, + "appId": undefined } } } @@ -109,6 +111,7 @@ const config: CapacitorConfig = { localApiFiles: undefined, allowModifyUrl: undefined, defaultChannel: undefined, + appId: undefined, }, }, };