n8n-nodes-binalyze-air
Version:
Binalyze AIR nodes for automating DFIR with n8n workflows
13 lines (12 loc) • 1.27 kB
TypeScript
import { IExecuteFunctions, INodeExecutionData, ILoadOptionsFunctions, INodePropertyOptions, INodeListSearchResult, INodeProperties } from 'n8n-workflow';
import { AirCredentials } from '../../../credentials/AirApi.credentials';
export declare const AssetsOperations: INodeProperties[];
export declare function extractAssetId(asset: any): string;
export declare function isValidAsset(asset: any): boolean;
export declare function fetchAllAssets(context: ILoadOptionsFunctions | IExecuteFunctions, credentials: AirCredentials, organizationId?: string, searchFilter?: string, pageSize?: number): Promise<any[]>;
export declare function buildAssetQueryParams(organizationIds: string, additionalFields: any): Record<string, string | number>;
export declare function buildAssetFilter(filterOptions: any): any;
export declare function getAssets(this: ILoadOptionsFunctions, searchTerm?: string): Promise<INodeListSearchResult>;
export declare function getAssetsByOrganizationForDeviceActions(this: ILoadOptionsFunctions, searchTerm?: string): Promise<INodeListSearchResult>;
export declare function getAssetsOptions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
export declare function executeAssets(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;