Provides the ability to get, list, and create 1st generation package versions.

Examples

List all 1GP package versions in the org:

const pkgList = await Package1Version.list(connection);

Create a new 1GP package vesion in the org:

const myPkg = await Package1Version.create(connection, options, pollingOptions);

More implementation examples are in the plugin here: https://github.com/salesforcecli/plugin-packaging/tree/main/src/commands/force/package1/

Implements

Constructors

Methods

  • Lists package versions available in the org. If package ID is supplied, only list versions of that package, otherwise, list all package versions, up to 10,000. If more records are needed use the SF_ORG_MAX_QUERY_LIMIT env var.

    Parameters

    • connection: Connection<Schema>

      Connection to the org

    • Optional id: string

    Returns Promise<MetadataPackageVersion[]>

    Array of package version results