@salesforce/plugin-packaging
Version:
SF plugin that support Salesforce Packaging Platform
24 lines (23 loc) • 1.2 kB
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
export type PackageInstalledListResult = {
Id: string;
SubscriberPackageId?: string;
SubscriberPackageName?: string;
SubscriberPackageNamespace?: string;
SubscriberPackageVersionId?: string;
SubscriberPackageVersionName?: string;
SubscriberPackageVersionNumber?: string;
};
export type PackageInstalledCommandResult = PackageInstalledListResult[];
export declare class PackageInstalledListCommand extends SfCommand<PackageInstalledCommandResult> {
static readonly summary: string;
static readonly examples: string[];
static readonly deprecateAliases = true;
static readonly aliases: string[];
static readonly flags: {
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
};
run(): Promise<PackageInstalledCommandResult>;
}