Skip to content

Commit d9518d9

Browse files
authored
Merge pull request #12 from Sam-Martin/development
v1.14
2 parents 1e6ed2c + 9e31bef commit d9518d9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

PSServiceNow.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = '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
1818
GUID = 'b90d67da-f8d0-4406-ad74-89d169cd0633'
@@ -27,7 +27,7 @@ CompanyName = 'None'
2727
Copyright = '(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'

PSServiceNow.psm1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)