Interface NotaryToolPasswordCredentials

You can generate an app-specific password for your Apple ID to notarize your Electron applications.

This method also requires you to specify the Team ID of the Developer Team you want to notarize under. An Apple ID may be part of multiple Teams.

interface NotaryToolPasswordCredentials {
    appleId: string;
    appleIdPassword: string;
    teamId: string;
}

Properties

appleId: string

The login username of your Apple Developer account.

appleIdPassword: string

An app-specific password for your Apple ID (not your Apple ID password).

Do not hard code this password into your packaging scripts.

teamId: string

The Team ID for the Developer Team you want to notarize under. Your Apple ID may be a member of multiple teams.