@skriptfabrik/n8n-nodes-sentry-io-enhanced
Version:
Enhanced Sentry.io community nodes for n8n
13 lines (12 loc) • 545 B
TypeScript
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>;
}