UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

29 lines (25 loc) 882 B
/** * Sentry.io Node - Version 1 * Discriminator: resource=organization, operation=get */ interface Credentials { sentryIoOAuth2Api: CredentialReference; sentryIoApi: CredentialReference; sentryIoServerApi: CredentialReference; } /** Get event by ID */ export type SentryIoV1OrganizationGetParams = { resource: 'organization'; operation: 'get'; authentication?: 'accessToken' | 'oAuth2' | 'accessTokenServer' | Expression<string>; /** * The slug of the organization the team should be created for. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ organizationSlug?: string | Expression<string>; }; export type SentryIoV1OrganizationGetNode = { type: 'n8n-nodes-base.sentryIo'; version: 1; credentials?: Credentials; config: NodeConfig<SentryIoV1OrganizationGetParams>; };