File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1212RootModule = ' PSServiceNow.psm1'
1313
1414# Version number of this module.
15- ModuleVersion = ' 0.1.13 '
15+ ModuleVersion = ' 0.1.14 '
1616
1717# ID used to uniquely identify this module
1818GUID = ' b90d67da-f8d0-4406-ad74-89d169cd0633'
@@ -27,7 +27,7 @@ CompanyName = 'None'
2727Copyright = ' (c) 2015 Sam. All rights reserved.'
2828
2929# Description of the functionality provided by this module
30- # Description = 'This module provides cmdlets allowing you to retrieve information from your ServiceNow instance`s rest API'
30+ Description = ' This module provides cmdlets allowing you to retrieve information from your ServiceNow instance`s rest API'
3131
3232# Minimum version of the Windows PowerShell engine required by this module
3333# PowerShellVersion = '3.0'
@@ -86,7 +86,7 @@ PrivateData = @{
8686 PSData = @ {
8787
8888 # Tags applied to this module. These help with module discovery in online galleries.
89- Tags = @ (' Azure' , ' Automation' , ' ServiceNow' )
89+ Tags = @ (' Azure' , ' Automation' , ' ServiceNow' , ' PSModule ' )
9090
9191 # A URL to the license for this module.
9292 LicenseUri = ' https://github.com/Sam-Martin/servicenow-powershell/blob/master/LICENSE'
Original file line number Diff line number Diff line change @@ -10,20 +10,20 @@ function New-ServiceNowQuery{
1010
1111 param (
1212 # Machine name of the field to order by
13- [parameter (mandatory = $true )]
13+ [parameter (mandatory = $false )]
1414 [string ]$OrderBy = ' opened_at' ,
1515
1616 # Direction of ordering (Desc/Asc)
17- [parameter (mandatory = $true )]
17+ [parameter (mandatory = $false )]
1818 [ValidateSet (" Desc" , " Asc" )]
1919 [string ]$OrderDirection = ' Desc' ,
2020
2121 # Hashtable containing machine field names and values returned must match exactly (will be combined with AND)
22- [parameter (mandatory = $true )]
22+ [parameter (mandatory = $false )]
2323 [hashtable ]$MatchExact ,
2424
2525 # Hashtable containing machine field names and values returned rows must contain (will be combined with AND)
26- [parameter (mandatory = $true )]
26+ [parameter (mandatory = $false )]
2727 [hashtable ]$MatchContains
2828 )
2929 # Start the query off with a order direction
You can’t perform that action at this time.
0 commit comments