/** * GitHub Node - Version 1.1 * Discriminator: resource=user, operation=invite */ interface Credentials { githubApi: CredentialReference; githubOAuth2Api: CredentialReference; } /** Invites a user to an organization */ export type GithubV11UserInviteParams = { resource: 'user'; operation: 'invite'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * The GitHub organization that the user is being invited to */ organization?: string | Expression | PlaceholderValue; /** * The email address of the invited user */ email?: string | Expression | PlaceholderValue; }; export type GithubV11UserInviteNode = { type: 'n8n-nodes-base.github'; version: 1.1; credentials?: Credentials; config: NodeConfig; };