Skip to content

Commit

Permalink
fix(package): install using v58.0 PackageInstallRequest parameters (d…
Browse files Browse the repository at this point in the history
…xatscale#1370)

Co-authored-by: Azlam <[email protected]>
  • Loading branch information
ruslan-kurchenko and azlam-abdulsalam authored Sep 3, 2023
1 parent f686074 commit e0c728a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export default class InstallUnlockedPackage extends InstallPackageCommand {
}),
securitytype: Flags.string({
description: messages.getMessage('securityTypeFlagDescription'),
options: ['AllUsers', 'AdminsOnly'],
default: 'AllUsers',
options: ['Custom', 'Full', 'None'],
default: 'Full',
}),
skipifalreadyinstalled: Flags.boolean({
char: 'f',
Expand All @@ -54,8 +54,8 @@ export default class InstallUnlockedPackage extends InstallPackageCommand {
}),
upgradetype: Flags.string({
description: messages.getMessage('upgradeTypeFlagDescription'),
options: ['DeprecateOnly', 'Mixed', 'Delete'],
default: 'Mixed',
options: ['delete-only', 'deprecate-only', 'mixed-mode'],
default: 'mixed-mode',
}),
waittime: Flags.string({
description: messages.getMessage('waitTimeFlagDescription'),
Expand Down

0 comments on commit e0c728a

Please sign in to comment.