mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <netroy@users.noreply.github.com> Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
export type FormField = {
|
|
fieldLabel: string;
|
|
fieldType: string;
|
|
requiredField: boolean;
|
|
fieldOptions?: { values: Array<{ option: string }> };
|
|
multiselect?: boolean;
|
|
multipleFiles?: boolean;
|
|
acceptFileTypes?: string;
|
|
formatDate?: string;
|
|
placeholder?: string;
|
|
};
|
|
|
|
export type FormTriggerInput = {
|
|
isSelect?: boolean;
|
|
isMultiSelect?: boolean;
|
|
isTextarea?: boolean;
|
|
isFileInput?: boolean;
|
|
isInput?: boolean;
|
|
label: string;
|
|
defaultValue?: string;
|
|
id: string;
|
|
errorId: string;
|
|
type?: 'text' | 'number' | 'date';
|
|
inputRequired: 'form-required' | '';
|
|
selectOptions?: string[];
|
|
multiSelectOptions?: Array<{ id: string; label: string }>;
|
|
acceptFileTypes?: string;
|
|
multipleFiles?: 'multiple' | '';
|
|
placeholder?: string;
|
|
};
|
|
|
|
export type FormTriggerData = {
|
|
testRun: boolean;
|
|
validForm: boolean;
|
|
formTitle: string;
|
|
formDescription?: string;
|
|
formSubmittedText?: string;
|
|
redirectUrl?: string;
|
|
n8nWebsiteLink: string;
|
|
formFields: FormTriggerInput[];
|
|
useResponseData?: boolean;
|
|
appendAttribution?: boolean;
|
|
customAttribution?: string;
|
|
};
|
|
|
|
export const FORM_TRIGGER_AUTHENTICATION_PROPERTY = 'authentication';
|