/** * Sentry.io Node - Version 1 * Discriminator: resource=issue, operation=delete */ interface Credentials { sentryIoOAuth2Api: CredentialReference; sentryIoApi: CredentialReference; sentryIoServerApi: CredentialReference; } /** Delete an issue */ export type SentryIoV1IssueDeleteParams = { resource: 'issue'; operation: 'delete'; authentication?: 'accessToken' | 'oAuth2' | 'accessTokenServer' | Expression; /** * ID of issue to get */ issueId?: string | Expression | PlaceholderValue; }; export type SentryIoV1IssueDeleteNode = { type: 'n8n-nodes-base.sentryIo'; version: 1; credentials?: Credentials; config: NodeConfig; };