UNPKG

@skriptfabrik/n8n-nodes-sentry-io-enhanced

Version:
13 lines (12 loc) 545 B
import type { ICredentialDataDecryptedObject, ICredentialType, IHttpRequestOptions, INodeProperties } from 'n8n-workflow'; export type SentryIoDSNApiCredential = ICredentialDataDecryptedObject & { projectId: string; dsn: string; }; export declare class SentryIoDSNApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; authenticate(credentials: ICredentialDataDecryptedObject, requestOptions: IHttpRequestOptions): Promise<IHttpRequestOptions>; }