UNPKG

n8n-nodes-aiscraper

Version:

n8n node to call Parsera API for AI Scraping

15 lines (14 loc) 347 B
export type AttributeItem = { name: string; description?: string; type: string; }; export type TransformedAttributes = AttributeItem[]; export type AttributeFieldItem = { fieldName: string; fieldType: string; fieldDescription?: string; }; export type AttributesFieldsParameter = { fieldValues: AttributeFieldItem[]; };