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

UpgradeNote

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

An Upgrade Note represents a potential upgrade of a package to a given version. For each package version combination (i.e. bash 4.0, bash 4.1, bash 4.1.2), there will be an Upgrade Note. For Windows, windows_update field represents the information related to the update.

interface UpgradeNote {
distributions?: UpgradeDistribution[];
package?: string;
version?: Version;
windowsUpdate?: WindowsUpdate;
}

§Properties

§
distributions?: UpgradeDistribution[]
[src]

Metadata about the upgrade for each specific operating system.

§
package?: string
[src]

Required for non-Windows OS. The package this Upgrade is for.

§
version?: Version
[src]

Required for non-Windows OS. The version of the package in machine + human readable form.

§
windowsUpdate?: WindowsUpdate
[src]

Required for Windows OS. Represents the metadata about the Windows update.