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

PackageVersionDescription

import type { PackageVersionDescription } from "https://aws-api.deno.dev/v0.3/services/codeartifact.ts?docs=full";

Details about a package version.

interface PackageVersionDescription {
displayName?: string | null;
format?: PackageFormat | null;
homePage?: string | null;
licenses?: LicenseInfo[] | null;
namespace?: string | null;
packageName?: string | null;
publishedTime?: Date | number | null;
revision?: string | null;
sourceCodeRepository?: string | null;
status?: PackageVersionStatus | null;
summary?: string | null;
version?: string | null;
}

§Properties

§
displayName?: string | null
[src]

The name of the package that is displayed. The displayName varies depending on the package version's format. For example, if an npm package is named ui, is in the namespace vue, and has the format npm, then the displayName is @vue/ui.

§
format?: PackageFormat | null
[src]

The format of the package version. The valid package formats are:

  • npm: A Node Package Manager (npm) package.
  • pypi: A Python Package Index (PyPI) package.
  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.
§
homePage?: string | null
[src]

The homepage associated with the package.

§
licenses?: LicenseInfo[] | null
[src]

Information about licenses associated with the package version.

§
namespace?: string | null
[src]

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.
  • The namespace of an npm package is its scope.
  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.
§
packageName?: string | null
[src]

The name of the requested package.

§
publishedTime?: Date | number | null
[src]

A timestamp that contains the date and time the package version was published.

§
revision?: string | null
[src]

The revision of the package version.

§
sourceCodeRepository?: string | null
[src]

The repository for the source code in the package version, or the source code used to build it.

§

A string that contains the status of the package version. It can be one of the following:

  • Published
    
  • Unfinished
    
  • Unlisted
    
  • Archived
    
  • Disposed
    
§
summary?: string | null
[src]

A summary of the package version. The summary is extracted from the package. The information in and detail level of the summary depends on the package version's format.

§
version?: string | null
[src]

The version of the package.