Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Release

import type { Release } from "https://googleapis.deno.dev/v1/versionhistory:v1.ts";

A Release is owned by a Version. A Release contains information about the release(s) of its parent version. This includes when the release began and ended, as well as what percentage it was released at. If the version is released again, or if the serving percentage changes, it will create another release under the version.

interface Release {
fraction?: number;
fractionGroup?: bigint;
name?: string;
serving?: Interval;
version?: string;
}

§Properties

§
fraction?: number
[src]

Rollout fraction. This fraction indicates the fraction of people that should receive this version in this release. If the fraction is not specified in ReleaseManager, the API will assume fraction is 1.

§
fractionGroup?: bigint
[src]

Rollout fraction group. Only fractions with the same fraction_group are statistically comparable: there may be non-fractional differences between different fraction groups.

§
name?: string
[src]

Release name. Format is "{product}/platforms/{platform}/channels/{channel}/versions/{version}/releases/{release}"

§
serving?: Interval
[src]

Timestamp interval of when the release was live. If end_time is unspecified, the release is currently live.

§
version?: string
[src]

String containing just the version number. e.g. "84.0.4147.38"