- added formik custom fields to settings and output

This commit is contained in:
2025-12-03 19:51:02 +00:00
parent 018203b203
commit 7f9923167e
4 changed files with 184 additions and 89 deletions

View File

@@ -56,6 +56,10 @@ export type OptionalLaneIDs = {
LID3?: string;
};
export type CustomFields = {
customFields?: string[];
};
export type InitialValuesFormErrors = {
backOfficeURL?: string;
username?: string;
@@ -64,7 +68,7 @@ export type InitialValuesFormErrors = {
readTimeoutSeconds?: string;
};
export type FormTypes = BearerTypeFields & OptionalConstants & OptionalLaneIDs;
export type FormTypes = BearerTypeFields & OptionalConstants & OptionalLaneIDs & CustomFields;
type FieldProperty = {
datatype: string;
value: string;