interface HostingAiInstructionsRequest {
    builds?: Record<string, string>;
    custom_domain?: string;
    databases?: Pick<HostingDatabase, "name" | "engine" | "plan">[];
    entry_point?: string;
    framework?: string;
    game_build_id?: string;
    preset?: "single_server" | "stateful_game_server" | "web_and_api" | "authoritative_world" | "large_realtime_world";
    services?: HostingServiceDefinition[];
    version?: string;
}

Hierarchy

Properties

builds?: Record<string, string>
custom_domain?: string
databases?: Pick<HostingDatabase, "name" | "engine" | "plan">[]
entry_point?: string

Candidate only; the generated instructions require proof from the finished artifact.

framework?: string
game_build_id?: string
preset?: "single_server" | "stateful_game_server" | "web_and_api" | "authoritative_world" | "large_realtime_world"
version?: string

Generated using TypeDoc