Skip to content

Commit

Permalink
Merge pull request #25 from Sekers/develop
Browse files Browse the repository at this point in the history
Develop into Master 0.3.3
  • Loading branch information
Sekers committed Nov 27, 2022
2 parents 439e9de + aa569d0 commit 6059a2d
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog for SKYAPI PowerShell Module

## [0.3.2](https://github.com/Sekers/SKYAPI/tree/0.3.2) - (2022-11-26)
## [0.3.3](https://github.com/Sekers/SKYAPI/tree/0.3.3) - (2022-11-26)

### Features

Expand All @@ -12,7 +12,6 @@
- New Endpoint: Get-SKYAPIContext > Returns cached information about the current connection to the Blackbaud SKY API.
- New Connect-SKYAPI Parameter: ReturnConnectionInfo. Returns values when verifying the cached SKY API connection information.


### Other
- Made all function/cmdlet names consistent as singular (and some other adjustments) & removed the 'List' keyword from function names (as Blackbaud has moved away from using that descriptor and it's also unnecessary). The old function names are kept as aliases so there are no breaking changes due to these renames.
- Finished renaming all internal functions to prevent any naming conflicts with other modules.
Expand Down
30 changes: 28 additions & 2 deletions SKYAPI/SKYAPI.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'SKYAPI.psm1'

# Version number of this module.
ModuleVersion = '0.3.2'
ModuleVersion = '0.3.3'

# Supported PSEditions
CompatiblePSEditions = @('Desktop','Core')
Expand Down Expand Up @@ -121,7 +121,33 @@ CmdletsToExport = @()
VariablesToExport = '*'

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = @()
AliasesToExport = @(
'Get-SchoolLegacyList',
'Get-SchoolSchedulesMeetings',
'Get-SchoolActivityListBySchoolLevel',
'Get-SchoolAdvisoryListBySchoolLevel',
'Get-SchoolCourseList',
'Get-SchoolDepartmentList',
'Get-SchoolEducationList',
'Get-SchoolGradeLevelList',
'Get-SchoolLevelList',
'Get-SchoolNewsCategories',
'Get-SchoolNewsItems',
'Get-SchoolOfferingTypeList',
'Get-SchoolRoleList',
'Get-SchoolSectionListBySchoolLevel',
'Get-SchoolSectionListByStudent',
'Get-SchoolSectionListByTeacher',
'Get-SchoolStudentEnrollmentList',
'Get-SchoolStudentListBySection',
'Get-SchoolTermList',
'Get-SchoolUserExtendedList',
'Get-SchoolUserList',
'Get-SchoolUserPhoneList',
'Get-SchoolUserPhoneTypeList',
'Get-SchoolYearList',
'New-SchoolEventsCategory'
)

# DSC resources to export from this module
# DscResourcesToExport = @()
Expand Down
1 change: 0 additions & 1 deletion SKYAPI/SKYAPI.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ Set-Alias -Name Get-SchoolUserPhoneTypeList -Value Get-SchoolUserPhoneType
Set-Alias -Name Get-SchoolYearList -Value Get-SchoolYear
Set-Alias -Name New-SchoolEventsCategory -Value New-SchoolEventCategory


# Type Definitions

# Public Enum
Expand Down

0 comments on commit 6059a2d

Please sign in to comment.