mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add Wufoo-Trigger node (#597)
* 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>
This commit is contained in:
27
packages/nodes-base/nodes/Wufoo/Interface.ts
Normal file
27
packages/nodes-base/nodes/Wufoo/Interface.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
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];
|
||||
}
|
||||
Reference in New Issue
Block a user