diff --git a/striker-ui-api/src/types/ApiHost.d.ts b/striker-ui-api/src/types/ApiHost.d.ts index 9b35e8af..8b2681a2 100644 --- a/striker-ui-api/src/types/ApiHost.d.ts +++ b/striker-ui-api/src/types/ApiHost.d.ts @@ -48,6 +48,7 @@ type HostOverview = { }; type InitializeStrikerNetworkForm = { + createBridge?: StringBoolean; interfaces: Array; ipAddress: string; name: string; diff --git a/striker-ui-api/src/types/StringBoolean.d.ts b/striker-ui-api/src/types/StringBoolean.d.ts new file mode 100644 index 00000000..30abef23 --- /dev/null +++ b/striker-ui-api/src/types/StringBoolean.d.ts @@ -0,0 +1 @@ +type StringBoolean = '0' | '1';