Skip to content

Commit 0130b07

Browse files
committed
chore: package installed type fix
1 parent a96bce2 commit 0130b07

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/commands/package/installed

src/commands/package/installed/list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ export class PackageInstalledListCommand extends SfCommand<PackageInstalledComma
6060

6161
// Calculate Version Settings from the data already in the result
6262
if (r.SubscriberPackageVersion) {
63-
const isManaged = r.SubscriberPackageVersion.IsManaged;
64-
const package2ContainerOptions = r.SubscriberPackageVersion.Package2ContainerOptions;
63+
const isManaged = r.SubscriberPackageVersion.IsManaged as boolean;
64+
const package2ContainerOptions = r.SubscriberPackageVersion.Package2ContainerOptions as string;
6565

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

0 commit comments

Comments
 (0)