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

PackageSummary

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

Details about a package, including its format, namespace, and name. The ListPackages operation returns a list of PackageSummary objects.

interface PackageSummary {
format?: PackageFormat | null;
namespace?: string | null;
package?: string | null;
}

§Properties

§
format?: PackageFormat | null
[src]

The format of the package. Valid values are:

  • npm
    
  • pypi
    
  • maven
    
§
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.
§
package?: string | null
[src]

The name of the package.