We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a96bce2 commit 0130b07Copy full SHA for 0130b07
1 file changed
src/commands/package/installed/list.ts
@@ -60,8 +60,8 @@ export class PackageInstalledListCommand extends SfCommand<PackageInstalledComma
60
61
// Calculate Version Settings from the data already in the result
62
if (r.SubscriberPackageVersion) {
63
- const isManaged = r.SubscriberPackageVersion.IsManaged;
64
- const package2ContainerOptions = r.SubscriberPackageVersion.Package2ContainerOptions;
+ const isManaged = r.SubscriberPackageVersion.IsManaged as boolean;
+ const package2ContainerOptions = r.SubscriberPackageVersion.Package2ContainerOptions as string;
65
66
// Use namespace for 1GP managed packages. For 2GP managed packages use packageId. For anything else,
67
// Version Settings is not applicable, so leave it empty.
0 commit comments