@eventcatalog/notifier
Version:
CLI tool to detect EventCatalog changes and send notifications
16 lines • 603 B
TypeScript
import { Notification, NotifierConfig, Stage, CLIOptions } from '../types';
export declare class Event {
changedFiles: string[];
catalogPath: string;
commitRange: string;
options: CLIOptions;
constructor({ catalogPath, changedFiles, commitRange, options, }: {
catalogPath: string;
changedFiles: string[];
commitRange?: string;
options: CLIOptions;
});
process(): Promise<Notification[]>;
static getSlackMessage(config: NotifierConfig, notification: Notification, stage: Stage, actionUrl: string): any;
}
//# sourceMappingURL=Event.d.ts.map