UNPKG

n8n-nodes-binalyze-air

Version:

Binalyze AIR nodes for automating DFIR with n8n workflows

20 lines (19 loc) 638 B
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-workflow'; import { AirCredentials } from '../../../../credentials/AirApi.credentials'; export interface UpdateBannerRequest { message: string; enabled: boolean; } export interface UpdateBannerResponse { success: boolean; result: { message: string; enabled: boolean; updatedAt: string; }; statusCode: number; errors: string[]; } export declare const api: { updateBannerMessage(context: IExecuteFunctions | ILoadOptionsFunctions, credentials: AirCredentials, data: UpdateBannerRequest): Promise<UpdateBannerResponse>; };