43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import type { JsonObject } from 'n8n-workflow';
|
|
import { EventMessageTypeNames } from 'n8n-workflow';
|
|
import { AbstractEventMessage, isEventMessageOptionsWithType } from './AbstractEventMessage';
|
|
import type { AbstractEventPayload } from './AbstractEventPayload';
|
|
import type { AbstractEventMessageOptions } from './AbstractEventMessageOptions';
|
|
|
|
export const eventMessageGenericDestinationTestEvent = 'n8n.destination.test';
|
|
|
|
export interface EventPayloadGeneric extends AbstractEventPayload {
|
|
msg?: string;
|
|
}
|
|
|
|
export interface EventMessageGenericOptions extends AbstractEventMessageOptions {
|
|
payload?: EventPayloadGeneric;
|
|
}
|
|
|
|
export class EventMessageGeneric extends AbstractEventMessage {
|
|
readonly __type = EventMessageTypeNames.generic;
|
|
|
|
payload: EventPayloadGeneric;
|
|
|
|
constructor(options: EventMessageGenericOptions) {
|
|
super(options);
|
|
if (options.payload) this.setPayload(options.payload);
|
|
if (options.anonymize) {
|
|
this.anonymize();
|
|
}
|
|
}
|
|
|
|
setPayload(payload: EventPayloadGeneric): this {
|
|
this.payload = payload;
|
|
return this;
|
|
}
|
|
|
|
deserialize(data: JsonObject): this {
|
|
if (isEventMessageOptionsWithType(data, this.__type)) {
|
|
this.setOptionsOrDefault(data);
|
|
if (data.payload) this.setPayload(data.payload as EventPayloadGeneric);
|
|
}
|
|
return this;
|
|
}
|
|
}
|