Interface OuraNodeParameters

Source
interface OuraNodeParameters {
    filters?: { end?: string; start?: string };
    limit?: number;
    operation?:
        | "get"
        | "getActivity"
        | "getReadiness"
        | "getSleep";
    resource?: "profile"
    | "summary";
    returnAll?: boolean;
}

Properties§

Source§

readonly filters?: { end?: string; start?: string }

Default: {}

Source§

readonly limit?: number

Max number of results to return Default: 5 Type options: {"minValue":1,"maxValue":10}

Source§

readonly operation?: "get" | "getActivity" | "getReadiness" | "getSleep"

Default: "get"

Source§

readonly resource?: "profile" | "summary"

Default: "summary"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit