/** * Sentry.io Node - Version 1 * Discriminator: resource=team, operation=create */ interface Credentials { sentryIoOAuth2Api: CredentialReference; sentryIoApi: CredentialReference; sentryIoServerApi: CredentialReference; } /** Create an organization */ export type SentryIoV1TeamCreateParams = { resource: 'team'; operation: 'create'; authentication?: 'accessToken' | 'oAuth2' | 'accessTokenServer' | Expression; /** * The slug of the organization the team belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ organizationSlug?: string | Expression; /** * The name of the team */ name?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** The optional slug for this team. If not provided it will be auto generated from the name. */ slug?: string | Expression | PlaceholderValue; }; }; export type SentryIoV1TeamCreateNode = { type: 'n8n-nodes-base.sentryIo'; version: 1; credentials?: Credentials; config: NodeConfig; };