From 2bc02a5fd1ec78a731e5a79109691d396a5d27a3 Mon Sep 17 00:00:00 2001 From: Sekers <46898253+Sekers@users.noreply.github.com> Date: Sat, 26 Nov 2022 23:37:00 -0600 Subject: [PATCH 1/3] CHANGELOG MINOR TYPO FIX --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2df3eb1..5dd907b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. From e0831a2f491dcdfc09a6647ae293a3180f27679e Mon Sep 17 00:00:00 2001 From: Sekers <46898253+Sekers@users.noreply.github.com> Date: Sun, 27 Nov 2022 00:17:57 -0600 Subject: [PATCH 2/3] UPDATE ALIASES IN MANIFEST for 0.3.2 & 0.3.3 --- SKYAPI/SKYAPI.psd1 | 30 ++++++++++++++++++++++++++++-- SKYAPI/SKYAPI.psm1 | 1 - 2 files changed, 28 insertions(+), 3 deletions(-) diff --git a/SKYAPI/SKYAPI.psd1 b/SKYAPI/SKYAPI.psd1 index 7496504..cc9185c 100644 --- a/SKYAPI/SKYAPI.psd1 +++ b/SKYAPI/SKYAPI.psd1 @@ -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') @@ -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 = @() diff --git a/SKYAPI/SKYAPI.psm1 b/SKYAPI/SKYAPI.psm1 index 3c822fe..ee6e2ea 100644 --- a/SKYAPI/SKYAPI.psm1 +++ b/SKYAPI/SKYAPI.psm1 @@ -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 From aa569d0b1fbf3ea22d33bb00f40a39165e08bc16 Mon Sep 17 00:00:00 2001 From: Sekers <46898253+Sekers@users.noreply.github.com> Date: Sun, 27 Nov 2022 00:19:17 -0600 Subject: [PATCH 3/3] 0.3.3 CHANGELOG --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dd907b..9ef9b03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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