26 lines
724 B
TypeScript
26 lines
724 B
TypeScript
import type { GatewayAuthChoice } from "../commands/onboard-types.js";
|
|
|
|
export type WizardFlow = "quickstart" | "advanced";
|
|
|
|
export type QuickstartGatewayDefaults = {
|
|
hasExisting: boolean;
|
|
port: number;
|
|
bind: "loopback" | "lan" | "auto" | "custom" | "tailnet";
|
|
authMode: GatewayAuthChoice;
|
|
tailscaleMode: "off" | "serve" | "funnel";
|
|
token?: string;
|
|
password?: string;
|
|
customBindHost?: string;
|
|
tailscaleResetOnExit: boolean;
|
|
};
|
|
|
|
export type GatewayWizardSettings = {
|
|
port: number;
|
|
bind: "loopback" | "lan" | "auto" | "custom" | "tailnet";
|
|
customBindHost?: string;
|
|
authMode: GatewayAuthChoice;
|
|
gatewayToken?: string;
|
|
tailscaleMode: "off" | "serve" | "funnel";
|
|
tailscaleResetOnExit: boolean;
|
|
};
|