-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
## 2.20.0 * [Issue #115](#115) * Renamed: `Get-GSCalendarEventList` to `Get-GSCalendarEvent` and set the original name as an exported Alias to the new name for backwards compatibility. * Added: `EventId` parameter to `Get-GSCalendarEvent` to specify individual event ID's to get instead of a filtered list. * Added: `PrivateExtendedProperty` parameter to `Get-GSCalendarEvent`. * Added: `SharedExtendedProperty` parameter to `Get-GSCalendarEvent`. * Added: `PrivateExtendedProperties` parameter to `New-GSCalendarEvent` and `Update-GSCalendarEvent`. * Added: `SharedExtendedProperties` parameter to `New-GSCalendarEvent` and `Update-GSCalendarEvent`. * Added: `ExtendedProperties` parameter to `New-GSCalendarEvent` and `Update-GSCalendarEvent`. * Added: `Id` parameter to `New-GSCalendarEvent` and `Update-GSCalendarEvent`. * [Issue #117](#117) * Fixed: Type error on `States` parameter of `Get-GSStudentGuardianInvitation`. * Miscellaneous * Updated Contributing doc with new Build script steps * Removed `DebugMode.ps1` script since it's no longer needed (use `build.ps1` instead)
- Loading branch information
Showing
14 changed files
with
482 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,38 @@ | ||
@{ | ||
'Add-GSDriveFilePermissions' = 'Add-GSDrivePermission' | ||
'Export-PSGSuiteConfiguration' = 'Set-PSGSuiteConfig' | ||
'Get-GSCalendarResourceList' = 'Get-GSResourceList' | ||
'Switch-PSGSuiteDomain' = 'Switch-PSGSuiteConfig' | ||
'Get-GSUserSchemaInfo' = 'Get-GSUserSchema' | ||
'Get-GSUserLicenseInfo' = 'Get-GSUserLicense' | ||
'Get-GSGmailMessageInfo' = 'Get-GSGmailMessage' | ||
'New-GSCalendarResource' = 'New-GSResource' | ||
'Update-GSCalendarResource' = 'Update-GSResource' | ||
'Get-GSShortURLInfo' = 'Get-GSShortURL' | ||
'Move-GSGmailMessageToTrash' = 'Remove-GSGmailMessage' | ||
'Remove-GSGmailMessageFromTrash' = 'Restore-GSGmailMessage' | ||
'Get-GSGmailFilterList' = 'Get-GSGmailFilter' | ||
'Get-GSGmailLabelList' = 'Get-GSGmailLabel' | ||
'Get-GSCalendarEventList' = 'Get-GSCalendarEvent' | ||
'Get-GSDataTransferApplicationList' = 'Get-GSDataTransferApplication' | ||
'Get-GSDriveFileInfo' = 'Get-GSDriveFile' | ||
'Get-GSTeamDrivesList' = 'Get-GSTeamDrive' | ||
'Add-GSDriveFilePermissions' = 'Add-GSDrivePermission' | ||
'Get-GSDriveFilePermissionsList' = 'Get-GSDrivePermission' | ||
'Get-GSGmailDelegates' = 'Get-GSGmailDelegate' | ||
'Get-GSGmailFilterList' = 'Get-GSGmailFilter' | ||
'Get-GSGmailLabelList' = 'Get-GSGmailLabel' | ||
'Get-GSGmailMessageInfo' = 'Get-GSGmailMessage' | ||
'Get-GSGroupList' = 'Get-GSGroup' | ||
'Get-GSGroupMemberList' = 'Get-GSGroupMember' | ||
'Get-GSOrgUnitList' = 'Get-GSOrganizationalUnit' | ||
'Get-GSOU' = 'Get-GSOrganizationalUnit' | ||
'Get-GSMobileDeviceList' = 'Get-GSMobileDevice' | ||
'Get-GSOrganizationalUnitList' = 'Get-GSOrganizationalUnit' | ||
'Get-GSOrgUnit' = 'Get-GSOrganizationalUnit' | ||
'Get-GSMobileDeviceList' = 'Get-GSMobileDevice' | ||
'Get-GSDataTransferApplicationList' = 'Get-GSDataTransferApplication' | ||
'Get-GSOrgUnitList' = 'Get-GSOrganizationalUnit' | ||
'Get-GSOU' = 'Get-GSOrganizationalUnit' | ||
'Get-GSResourceList' = 'Get-GSResource' | ||
'Get-GSShortURLInfo' = 'Get-GSShortURL' | ||
'Get-GSTeamDrivesList' = 'Get-GSTeamDrive' | ||
'Get-GSUserASPList' = 'Get-GSUserASP' | ||
'Get-GSUserLicenseInfo' = 'Get-GSUserLicense' | ||
'Get-GSUserLicenseList' = 'Get-GSUserLicense' | ||
'Get-GSUserList' = 'Get-GSUser' | ||
'Get-GSUserSchemaInfo' = 'Get-GSUserSchema' | ||
'Get-GSUserSchemaList' = 'Get-GSUserSchema' | ||
'Get-GSUserTokenList' = 'Get-GSUserToken' | ||
'Get-GSUserLicenseList' = 'Get-GSUserLicense' | ||
'Update-GSSheetValue' = 'Export-GSSheet' | ||
'Export-PSGSuiteConfiguration' = 'Set-PSGSuiteConfig' | ||
'Import-PSGSuiteConfiguration' = 'Get-PSGSuiteConfig' | ||
'Move-GSGmailMessageToTrash' = 'Remove-GSGmailMessage' | ||
'New-GSCalendarResource' = 'New-GSResource' | ||
'Remove-GSGmailMessageFromTrash' = 'Restore-GSGmailMessage' | ||
'Set-PSGSuiteDefaultDomain' = 'Switch-PSGSuiteConfig' | ||
'Get-GSGmailDelegates' = 'Get-GSGmailDelegate' | ||
'Switch-PSGSuiteDomain' = 'Switch-PSGSuiteConfig' | ||
'Update-GSCalendarResource' = 'Update-GSResource' | ||
'Update-GSSheetValue' = 'Export-GSSheet' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.