Skip to content

Commit

Permalink
Resolves #5, Resolves #6; Corrected a misspelled variable and updated…
Browse files Browse the repository at this point in the history
… a variable type to allow the attribute to be null
  • Loading branch information
Skylar committed Jul 20, 2022
1 parent ca67d97 commit c7f5783
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@
- Fixed some parameter attributes for `New-SSCellHyperlink`, `Add-SmartsheetSheet`, `Add-SmartsheetSheetFromTemplate`, and `Move-SmartsheetSheet`.
## 0.1.4 - 2021-03-08
- Miscellaneous
- Fixed issue where `New-SSGroupObject` returned both pre-built object and built object
- Fixed issue where `New-SSGroupObject` returned both pre-built object and built object

## 0.1.5 - 2022-07-20
- [Issue #5](https://github.com/skywayskase/PSSmartsheet/issues/5)
- Corrected misspelled variable in `Get-SmartsheetSheet`
- [Issue #6](https://github.com/skywayskase/PSSmartsheet/issues/6)
- Updated type on `$ModifiedSince` attribute to allow it to be null
2 changes: 1 addition & 1 deletion Source/PSSmartsheet.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'PSSmartsheet.psm1'

# Version number of this module.
ModuleVersion = '0.1.4'
ModuleVersion = '0.1.5'

# Supported PSEditions
CompatiblePSEditions = @('Core', 'Desktop')
Expand Down
4 changes: 2 additions & 2 deletions Source/Public/Sheets/Get-SmartsheetSheet.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Function Get-SmartsheetSheet {
[Parameter(ParameterSetName = 'FullOrg')]
[switch]
$ListOrgSheets,
[datetime]
[nullable[datetime]]
$ModifiedSince = $null,
[Parameter(ParameterSetName = 'Individual')]
[ValidateNotNullOrEmpty()]
Expand All @@ -53,7 +53,7 @@ Function Get-SmartsheetSheet {
).data
}
Else {
$cript:SmartsheetClient.SheetResources.ListSheets(
$Script:SmartsheetClient.SheetResources.ListSheets(
$Include,
$PagingParams,
$ModifiedSince
Expand Down

0 comments on commit c7f5783

Please sign in to comment.