UNPKG

n8n-nodes-binalyze-air

Version:

Binalyze AIR nodes for automating DFIR with n8n workflows

10 lines (9 loc) 915 B
import { IExecuteFunctions, INodeExecutionData, ILoadOptionsFunctions, INodePropertyOptions, INodeListSearchResult, INodeProperties } from 'n8n-workflow'; import { AirCredentials } from '../../../credentials/AirApi.credentials'; export declare const OrganizationsOperations: INodeProperties[]; export declare function extractOrganizationId(organization: any): string; export declare function isValidOrganization(org: any): boolean; export declare function findOrganizationByName(context: IExecuteFunctions, credentials: AirCredentials, organizationName: string): Promise<string>; export declare function getOrganizations(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>; export declare function getOrganizationsOptions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; export declare function executeOrganizations(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;