Skip to content
Merged
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
078151b
Add Support for Passwords API
CalebAlbers Mar 21, 2018
d9b8378
Add support for EU API endpoints
CalebAlbers Mar 21, 2018
3cdbbaf
Added enhanced filtering capability
CalebAlbers Mar 31, 2018
96453fd
Fixed Configurations Return Data
CalebAlbers Mar 31, 2018
14c1f10
Compatability Update
CalebAlbers Jun 12, 2018
eb4284e
Added file to resolve Import-Module HRESULT: 0x8013104
Jul 11, 2018
81a306c
Update development branch with current proposed updates (#22)
CalebAlbers Jul 19, 2018
fab0051
Markdown formatting edits and update doc for additional commands
Aug 13, 2018
e0919b5
Markdown formatting edits
Aug 13, 2018
ead9f25
Intial check in of basic tests for the module
Aug 27, 2018
6c8f31e
Expanded testing
Aug 31, 2018
281fc5a
Minor edits
Aug 31, 2018
1acb203
Update Documents in Development branch (#25)
Sep 2, 2018
c659d6c
Revert "Expanded testing"
Sep 4, 2018
1e1371d
Revert "Intial check in of basic tests for the module"
Sep 4, 2018
f71ac40
Merge branch 'development' of https://github.com/itglue/powershellwra…
Sep 4, 2018
8574af6
Corrected test for test files
Sep 4, 2018
29e7dda
Update to Current API Standards
CalebAlbers Sep 9, 2018
1848d94
Minor ITGlueAPI.psd1 file edits (#27)
Sep 9, 2018
95f969a
Update to 2.0.0
CalebAlbers Sep 10, 2018
5d4ceb4
Merge branch 'development' of https://github.com/itglue/powershellwra…
CalebAlbers Sep 10, 2018
1c0d58e
Merge branch 'development' of https://github.com/itglue/powershellwra…
Sep 17, 2018
56b35dd
Sync'ing with current development branch
Sep 17, 2018
a7c2103
Updated to test to remove a check due to changes in module
Sep 17, 2018
09bbe9b
Minor to cleanup error caused by debug details
Sep 17, 2018
0a75af6
Implement Error Handling on REST Headers
CalebAlbers Sep 18, 2018
29f4530
Merge branch 'development' of https://github.com/itglue/powershellwra…
Sep 18, 2018
9dfd045
Sync'ing master with 2.0.0 release
Sep 18, 2018
e4a07c2
Merge branch 'development' of https://github.com/adrianwells/powershe…
Sep 18, 2018
2277c59
Minor edit
Sep 18, 2018
684ca79
Inital Commit
Sep 18, 2018
d89d0da
Fix to remove variable correclty and minor spacing edits
Sep 18, 2018
437aeeb
Pulling in patch
Sep 18, 2018
96fe1dd
Merge branch 'master' of https://github.com/itglue/powershellwrapper
Sep 18, 2018
f9eaab7
Added Semantic Versioning guidance
Sep 18, 2018
a6f0d92
Initial Commit
Sep 25, 2018
28cb67b
Fix Remove-ITGlueAPIKey and minor edits
Sep 25, 2018
659fba5
Increment version for recent patch in APIKey.ps1
Sep 25, 2018
d5911c0
Sync with master branch
Sep 25, 2018
cd7914b
Merge branch 'development' of https://github.com/adrianwells/powershe…
Sep 25, 2018
c4341a0
Improve testing, add variables, and minor code formatting
Sep 25, 2018
7af0d2e
Merge branch 'master' of https://github.com/itglue/powershellwrapper
Oct 9, 2018
05dc256
Added missing FunctionsToExport
Dec 6, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ITGlueAPI/ITGlueAPI.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RootModule = '.\ITGlueAPI.psm1'
# -- MAJOR version when you make incompatible API changes,
# -- MINOR version when you add functionality in a backwards-compatible manner, and
# -- PATCH version when you make backwards-compatible bug fixes.
ModuleVersion = '2.0.2'
ModuleVersion = '2.0.3'

# ID used to uniquely identify this module
#GUID = ''
Expand Down Expand Up @@ -123,6 +123,7 @@ FunctionsToExport = 'Add-ITGlueAPIKey',
'New-ITGlueConfigurations',
'Get-ITGlueConfigurations',
'Set-ITGlueConfigurations',
'Remove-ITGlueConfigurations',

'New-ITGlueContactTypes',
'Get-ITGlueContactTypes',
Expand All @@ -131,6 +132,7 @@ FunctionsToExport = 'Add-ITGlueAPIKey',
'New-ITGlueContacts',
'Get-ITGlueContacts',
'Set-ITGlueContacts',
'Remove-ITGlueContacts',

'Get-ITGlueCountries',

Expand Down