UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

33 lines (29 loc) 975 B
/** * Sentry.io Node - Version 1 * Discriminator: resource=release, operation=delete */ interface Credentials { sentryIoOAuth2Api: CredentialReference; sentryIoApi: CredentialReference; sentryIoServerApi: CredentialReference; } /** Delete an issue */ export type SentryIoV1ReleaseDeleteParams = { resource: 'release'; operation: 'delete'; authentication?: 'accessToken' | 'oAuth2' | 'accessTokenServer' | Expression<string>; /** * The slug of the organization the release belongs to. 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>; /** * The version identifier of the release */ version?: string | Expression<string> | PlaceholderValue; }; export type SentryIoV1ReleaseDeleteNode = { type: 'n8n-nodes-base.sentryIo'; version: 1; credentials?: Credentials; config: NodeConfig<SentryIoV1ReleaseDeleteParams>; };