interface GotifyNodeParameters {
additionalFields?: {
priority?: number;
title?: string;
};
limit?: number;
message?: string;
messageId?: string;
operation?: "create"
| "getAll"
| "delete";
options?: {
contentType?: "text/plain" | "text/markdown";
};
resource?: "message";
returnAll?: boolean;
}
Default: {}