Skip to content

Commit

Permalink
Fix parameter on Update-NinjaOneOrgansation
Browse files Browse the repository at this point in the history
  • Loading branch information
homotechsual committed Nov 10, 2022
1 parent 062a8cd commit f051e38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions NinjaOne.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = '.\NinjaOne.psm1'

# Version number of this module.
ModuleVersion = '1.6.3'
ModuleVersion = '1.6.4'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -246,7 +246,7 @@
IconUri = 'https://pbs.twimg.com/profile_images/1452496768030187521/kIGQii5Y_400x400.jpg'

# ReleaseNotes of this module
ReleaseNotes = 'Fix an error in Update-NinjaOneOrganisation.'
ReleaseNotes = 'Fix incorrect parameter type on Update-NinjaOneOrganisation.'

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 1 addition & 1 deletion Public/Update/Update-NinjaOneOrganisation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function Update-NinjaOneOrganisation {
Param(
# The organisation to set the information for.
[Parameter(Mandatory = $true)]
[string[]]$organisationId,
[int]$organisationId,
# The organisation information body object.
[Parameter(Mandatory = $true)]
[object]$organisationInformation
Expand Down

0 comments on commit f051e38

Please sign in to comment.