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

ListPackageVersionsResult

import type { ListPackageVersionsResult } from "https://aws-api.deno.dev/v0.4/services/codeartifact.ts?docs=full";
interface ListPackageVersionsResult {
defaultDisplayVersion?: string | null;
format?: PackageFormat | null;
namespace?: string | null;
nextToken?: string | null;
package?: string | null;
versions?: PackageVersionSummary[] | null;
}

§Properties

§
defaultDisplayVersion?: string | null
[src]

The default package version to display. This depends on the package format:

  • For Maven and PyPI packages, it's the most recently published package version.
  • For npm packages, it's the version referenced by the latest tag. If the latest tag is not set, it's the most recently published package version.
§
format?: PackageFormat | null
[src]

A format of the package.

§
namespace?: string | null
[src]

The namespace of the package that contains the requested package versions. 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.
  • Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
§
nextToken?: string | null
[src]

If there are additional results, this is the token for the next set of results.

§
package?: string | null
[src]

The name of the package.

§
versions?: PackageVersionSummary[] | null
[src]

The returned list of PackageVersionSummary objects.