Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions command-snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@
"flags-dir",
"json",
"loglevel",
"show-conversions-only",
"status",
"target-dev-hub",
"verbose"
Expand Down Expand Up @@ -363,7 +362,7 @@
"alias": ["force:package:update"],
"command": "package:update",
"flagAliases": ["apiversion", "errornotificationusername", "target-hub-org", "targetdevhubusername"],
"flagChars": ["d", "n", "o", "p", "v", "r"],
"flagChars": ["d", "n", "o", "p", "r", "v"],
"flags": [
"api-version",
"description",
Expand All @@ -374,9 +373,9 @@
"loglevel",
"name",
"package",
"target-dev-hub",
"recommended-version-id",
"skip-ancestor-check"
"skip-ancestor-check",
"target-dev-hub"
],
"plugin": "@salesforce/plugin-packaging"
},
Expand Down
4 changes: 0 additions & 4 deletions messages/bundle_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ Package Bundle ID

Alias

# description

Description

# flags.verbose.summary

Display extended details about the package bundles.
Expand Down
4 changes: 0 additions & 4 deletions messages/bundle_version_create_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ To get information about a specific request, run "<%= config.bin %> package bund

Status of the installation request, used to filter the list.

# flags.show-conversions-only.summary

Filter the list to display only converted package bundle versions.

# flags.verbose.summary

Display additional information, such as the version name and number for each package bundle version creation request.
Expand Down
4 changes: 0 additions & 4 deletions messages/bundle_version_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ Package Bundle ID

Alias

# description

Description

# flags.verbose.summary

Display extended details about the package bundle versions.
Expand Down
3 changes: 0 additions & 3 deletions src/commands/package/bundle/version/create/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ export class PackageBundleVersionCreateListCommand extends SfCommand<PackageBund
char: 's',
summary: messages.getMessage('flags.status.summary'),
}),
'show-conversions-only': Flags.boolean({
summary: messages.getMessage('flags.show-conversions-only.summary'),
}),
verbose: Flags.boolean({
summary: messages.getMessage('flags.verbose.summary'),
}),
Expand Down
1 change: 0 additions & 1 deletion src/commands/package/bundle/version/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export class PackageBundleVersionListCommand extends SfCommand<PackageBundleVers
public static readonly hidden = true;
public static state = 'beta';
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly flags = {
loglevel,
Expand Down
4 changes: 2 additions & 2 deletions src/commands/package/installed/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ export class PackageInstalledListCommand extends SfCommand<PackageInstalledComma

// Calculate Version Settings from the data already in the result
if (r.SubscriberPackageVersion) {
const isManaged = r.SubscriberPackageVersion.IsManaged;
const package2ContainerOptions = r.SubscriberPackageVersion.Package2ContainerOptions;
const isManaged = r.SubscriberPackageVersion.IsManaged as boolean;
const package2ContainerOptions = r.SubscriberPackageVersion.Package2ContainerOptions as string;

// Use namespace for 1GP managed packages. For 2GP managed packages use packageId. For anything else,
// Version Settings is not applicable, so leave it empty.
Expand Down
Loading