- created forms for JSON, BOF2, UTMC and FTP
This commit is contained in:
@@ -21,3 +21,39 @@ export type SystemHealthStatus = {
|
||||
id: string;
|
||||
tags: string[];
|
||||
};
|
||||
|
||||
export type BearerTypeFields = {
|
||||
format: string;
|
||||
enabled: boolean;
|
||||
backOfficeURL: string;
|
||||
username: string;
|
||||
password: string;
|
||||
connectTimeoutSeconds: number;
|
||||
readTimeoutSeconds: number;
|
||||
overviewQuality: string;
|
||||
cropSizeFactor: string;
|
||||
};
|
||||
|
||||
export type OptionalConstants = {
|
||||
FFID?: string;
|
||||
SCID?: string;
|
||||
timestampSource?: string;
|
||||
GPSFormat?: string;
|
||||
};
|
||||
|
||||
export type OptionalLaneIDs = {
|
||||
laneId?: string;
|
||||
LID1?: string;
|
||||
LID2?: string;
|
||||
LID3?: string;
|
||||
};
|
||||
|
||||
export type InitialValuesFormErrors = {
|
||||
backOfficeURL?: string;
|
||||
username?: string;
|
||||
password?: string;
|
||||
connectTimeoutSeconds?: string;
|
||||
readTimeoutSeconds?: string;
|
||||
};
|
||||
|
||||
export type FormTypes = BearerTypeFields & OptionalConstants & OptionalLaneIDs;
|
||||
|
||||
Reference in New Issue
Block a user