- added endpoints for dns and other

This commit is contained in:
2025-11-04 17:04:19 +00:00
parent 647fd201a3
commit 861f2dd31d
9 changed files with 261 additions and 84 deletions

View File

@@ -69,10 +69,16 @@ export type InitialValuesFormErrors = {
};
export type OptionalBOF2Constants = {
FFID?: "";
SCID?: "";
timestampSource?: "";
GPSFormat?: "";
FFID?: string;
SCID?: string;
timestampSource?: string;
GPSFormat?: string;
};
export type OptionalBOF2LaneIDs = {
LID1?: string;
LID2?: string;
LID3?: string;
};
export type NPEDFieldType = {
@@ -157,6 +163,13 @@ export type SystemValues = {
sntpInterval: number;
timeZone: string;
softwareUpdate?: File | null;
serverPrimary?: string;
serverSecondary?: string;
};
export type DNSSettingsType = {
serverPrimary?: string;
serverSecondary?: string;
};
export type SystemValuesErrors = {