mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
9b5731450f
* Generic functions, credentials, interface, logo, triggernode * TSLint tabs rule, request error handling, webhook done On hold until Wufoo responds with sandbox account * Removed test logging, fixed various errors, cleaned up * Sorted imports, adjusted data display, removed anys, tslint import sort rule * RAAAAAW data * ⚡ Fix logo and improve formatting * ⚡ Improvements * ⚡ Minor improvements to WuFoo-Trigger Co-authored-by: Rupenieks <ru@myos,co> Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
28 lines
426 B
TypeScript
28 lines
426 B
TypeScript
export interface IFormQuery {
|
|
includeTodayCount?: boolean;
|
|
}
|
|
|
|
export interface IWebhook {
|
|
url: string;
|
|
handshakeKey?: string;
|
|
metadata?: boolean;
|
|
}
|
|
|
|
interface ISubField {
|
|
DefaultVal: string;
|
|
ID: string;
|
|
Label: string;
|
|
}
|
|
|
|
export interface IField {
|
|
Title: string;
|
|
Instructions: string;
|
|
IsRequired: number;
|
|
ClassNames: string;
|
|
DefaultVal: string;
|
|
Page: number;
|
|
Type: string;
|
|
ID: string;
|
|
SubFields: [ISubField];
|
|
}
|