UNPKG

1.07 kBTypeScriptView Raw
1export interface MakerZIPConfig {
2 /**
3 * A URL to the directory containing your existing macOS auto-update
4 * RELEASES.json file. If given this maker will download the existing
5 * file and add this release to it, also setting the "currentRelease" to
6 * this release.
7 *
8 * For instance if your URL is "https://update.example.com/my-app/darwin/x64/RELEASES.json"
9 * you should provide "https://update.example.com/my-app/darwin/x64". This logic assumes
10 * that you published your files using a forge publisher compatible with the auto updater (e.g. S3).
11 *
12 * Publishing this RELEASES.json will result in clients downloading this version
13 * as an update.
14 *
15 * If this option is not set no RELEASES.json file will be generated.
16 */
17 macUpdateManifestBaseUrl?: string;
18 /**
19 * Only used if `squirrelMacManifestBaseUrl` is provided. Used to populate
20 * the "notes" field of the releases manifest for macOS updates.
21 */
22 macUpdateReleaseNotes?: string;
23}
24//# sourceMappingURL=Config.d.ts.map
\No newline at end of file