Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Create/Update/Delete Scheduling Master Schedule (SMS) #43

Merged
merged 10 commits into from Mar 1, 2022

Conversation

bsquidwrd
Copy link
Collaborator

Closes #15

@bsquidwrd bsquidwrd added the enhancement New feature or request label Nov 18, 2021
@bsquidwrd bsquidwrd added this to the Shipping 1.0.0 milestone Nov 18, 2021
@bsquidwrd bsquidwrd self-assigned this Nov 18, 2021
@bsquidwrd
Copy link
Collaborator Author

This is a doozy of an endpoint, as there's a lot of considerations for both Section Staff Schools vs Non-Section Staff Schools AND things related to Scheduling in general.

@jameslancaster
Copy link
Collaborator

This is a doozy of an endpoint, as there's a lot of considerations for both Section Staff Schools vs Non-Section Staff Schools AND things related to Scheduling in general.

Why ask for the "IsSectionStaff" parameter? Can this not be dynamically determined based on the school code given?

@bsquidwrd
Copy link
Collaborator Author

bsquidwrd commented Nov 18, 2021

Why ask for the "IsSectionStaff" parameter? Can this not be dynamically determined based on the school code given?

I attempted that at first before even pushing any code to this branch, but Section Staff isn't a setting we include in the Get-AeriesSchool data. The only determination I could find was if the Schedule Type is Flexible or not, but that doesn't help for Secondary Section Staff schools 😟

Edit: I may end up changing it to have ParameterSets to help differentiate it, and use that instead of being yet another parameter that will have to be passed in since that'd be more straight forward. This was just my first attempt to start having some code done for it, placeholders for the files, etc and then work through the logic at that point.
The issue arises for Remove-AeriesSchedulingSection might end up staying the same though, simply because the information is so generic it applies to both but requires different endpoints depending on Section Staff being used

Example from Edit-AeriesGradebookAssignment

[ValidateRange(1, [Int]::MaxValue)]
[Parameter(Mandatory=$true, ParameterSetName="AssignmentNumber")]
[Int]
$GradebookNumber,
[ValidateRange(1, [Int]::MaxValue)]
[Parameter(Mandatory=$true, ParameterSetName="AssignmentNumber")]
[Int]
$AssignmentNumber,
[Parameter(Mandatory=$true, ParameterSetName="UniqueID")]
[string]
$UniqueID,
[Parameter(Mandatory=$false, ParameterSetName="AssignmentNumber")]
[Parameter(Mandatory=$false, ParameterSetName="UniqueID")]
[string]
$Description,

@jameslancaster
Copy link
Collaborator

Why ask for the "IsSectionStaff" parameter? Can this not be dynamically determined based on the school code given?

I attempted that at first before even pushing any code to this branch, but Section Staff isn't a setting we include in the Get-AeriesSchool data. The only determination I could find was if the Schedule Type is Flexible or not, but that doesn't help for Secondary Section Staff schools 😟

Edit: I may end up changing it to have ParameterSets to help differentiate it, and use that instead of being yet another parameter that will have to be passed in since that'd be more straight forward. This was just my first attempt to start having some code done for it, placeholders for the files, etc and then work through the logic at that point. The issue arises for Remove-AeriesSchedulingSection might end up staying the same though, simply because the information is so generic it applies to both but requires different endpoints depending on Section Staff being used

It sounds like an API enhancement request should be made to have that information exposed in the "schools" endpoint.

@bsquidwrd
Copy link
Collaborator Author

I agree, it should be included in the API results. Will you be submitting that, or should I?

bsquidwrd added a commit that referenced this pull request Nov 18, 2021
@bsquidwrd bsquidwrd marked this pull request as ready for review March 1, 2022 00:44
@bsquidwrd
Copy link
Collaborator Author

@jameslancaster This is now ready for review. Once this merges, #44 should be ready for Review and merge as well.

@jameslancaster jameslancaster merged commit b6bc973 into dev Mar 1, 2022
@jameslancaster jameslancaster deleted the features/15 branch March 1, 2022 00:54
jameslancaster pushed a commit that referenced this pull request Mar 1, 2022
* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43
jameslancaster added a commit that referenced this pull request Mar 1, 2022
* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
@jameslancaster jameslancaster mentioned this pull request Mar 1, 2022
bsquidwrd added a commit that referenced this pull request Mar 1, 2022
* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
bsquidwrd added a commit that referenced this pull request Mar 2, 2022
* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
jameslancaster added a commit that referenced this pull request Mar 2, 2022
* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
jameslancaster added a commit that referenced this pull request Mar 2, 2022
* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
bsquidwrd added a commit that referenced this pull request Mar 3, 2022
* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>
jameslancaster added a commit that referenced this pull request Aug 15, 2023
* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>
jameslancaster added a commit that referenced this pull request Aug 15, 2023
* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>
bsquidwrd added a commit that referenced this pull request Aug 23, 2023
* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>
bsquidwrd added a commit that referenced this pull request Aug 23, 2023
* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

* Fix .gitignore to remove additional website copy/pasted info (#71)

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>
bsquidwrd added a commit that referenced this pull request Aug 23, 2023
* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

* Rename "Add" to "New" functions (#63)

* Fix .gitignore so I can actually commit new files

* Rename "Edit" functions to "New" to match Microsofts guidance on allowed verbs

* Update DOCs with new names

* Fix gitignore to not have unnecessary parts from copy/pasted gitignore templates

* Update AeriesApi.psd1 - Release Version 1.1.0 (#64)

Update Module version to 1.1.0

* Resolve merge conflicts #65 (#66)

* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>

* Resolve doc conflict #65 (#67)

* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>

* Features/resolve conflicts 65 (#69)

* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>

* Features/resolve gitignore (#72)

* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

* Fix .gitignore to remove additional website copy/pasted info (#71)

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>

---------

Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: Billy <billyb@aeries.com>
jameslancaster added a commit that referenced this pull request Aug 23, 2023
* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

* Rename "Add" to "New" functions (#63)

* Fix .gitignore so I can actually commit new files

* Rename "Edit" functions to "New" to match Microsofts guidance on allowed verbs

* Update DOCs with new names

* Fix gitignore to not have unnecessary parts from copy/pasted gitignore templates

* Update AeriesApi.psd1 - Release Version 1.1.0 (#64)

Update Module version to 1.1.0

* Resolve merge conflicts #65 (#66)

* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>

* Resolve doc conflict #65 (#67)

* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>

* Features/resolve conflicts 65 (#69)

* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>

* Features/resolve gitignore (#72)

* Release 1.0.0 (#45)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* PS Gallery Published changes (#49)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

* Release 1.0.0 (#45) (#46)

* Implement Staff Add/Update Functions (#2)

* Allow for multiple SuccessStatusCode

* Implement Add-AeriesStaff

* Implement Edit-AeriesStaff

* Features/3 (#6)

* Create CODE_OF_CONDUCT.md

* Update README.md

Added "Contributor Covenant" badge

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Update CONTRIBUTING.md

* Fix incorrect parameter validation  #21 (#22)

* Initial implementation of SendAlert endpoint (#23)

* Fix #25 (#26)

* Add/Edit/Remove Contacts Implemented (#24)

* Implement Add-AeriesContact

* Remove printing of the body sent for Add-AeriesContact

* Implement Edit-AeriesContact

* Fix typo in example text

* Implement Remove-AeriesContact

* Add support for ShouldProcess to allow -WhatIf

* Update CONTRIBUTING.md (#28)

Fixed Contributor Code of Conduct link

* Features/9 (#32)

* Create Add-AeriesActivity

* Create Edit-AeriesActivity

* Create Remove-AeriesActivity

* Features/10 (#33)

* Create Add-AeriesAuthorizations

* Add Edit-AeriesAuthorization

* Add Remove-AeriesAuthorization

* features/12 (#34)

* Add Edit-AeriesStudentTest

* Add 201 as a success status code

* Implement Create/Update/Delete for Staff Assignments (#35)

* Implement Add-AeriesStaffAssignment

* Implement Edit-AeriesStaffAssignment

* Implement Remove-AeriesStaffAssignment

* Implement Create/Update Gradebook Assignment Information (#36)

* Implement Add-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignment

* Implement Edit-AeriesGradebookAssignmentScore (#37)

* Implement Create/Update/Delete Student Course Requests (#39)

* Implement Add-AeriesCourseRequest

* Implement Edit-AeriesCourseRequest

* Implement Remove-AeriesCourseRequest

* Implement Create/Update/Delete Alternate Course Requests (#40)

* Implement Add-AeriesAlternateCourseRequest

* Implement Edit-AeriesAlternateCourseRequest

* Implement Remove-AeriesAlternateCourseRequest

* Implement Edit-AeriesSchoolSupplemental (#42)

* Implement Create/Update/Delete Scheduling Master Schedule (SMS) (#43)

* Basic structure for Add-AeriesSchedulingSection

* Basic structure for Edit-AeriesSchedulingSection

* Implement Remove-AeriesSchedulingSection

* Implement DELETE SchedulingSection

* Wrote out parameters for function, next is implementation

* Simplify by doing our own check for UsingSectionStaff

* Create class for SectionStaffMembers

* Add ScriptsToProcess to register the Class as valid

* Finalize Add-AeriesSchedulingSection

* Finalize Edit-AeriesSchedulingSection

* Add new functions to be exported and visible with help commands (#44)

* Add new functions to be exported and visible with help commands

* This will be ready to go after #15 #43

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Edited manifest and README with PS Gallery info (#48)

Co-authored-by: Squid <brandonu@aeries.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>

* Billy main branch cleanup (#54)

* Cleaned up commits. Updated .gitignroe to ignore VS local changes.

* Revert "Release 1.0.0 (#45)"

This reverts commit 95094dc.

* Revert "PS Gallery Published changes (#49)"

This reverts commit 01f6fe1.

Co-authored-by: Billy <billyb@aeries.com>

* Merge release 1.0.1 (#60)

* Adding DOC.md (#52)

* Update Get-AeriesSection.ps1 (#58)

Line 39 - changed "=+" to "+=" for PowerShell v5.1 compatibility

* Update AeriesApi.psd1 (#59)

* Update AeriesApi.psd1

Incrementing version to 1.0.1

* Update README.md

Updated verbiage around supported PowerShell versions, and added note about installing via PSGallery.

Co-authored-by: James Lancaster <jamesl@aeries.com>

* Fix .gitignore to remove additional website copy/pasted info (#71)

---------

Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: Billy <billyb@aeries.com>

* Bump up version number (#74)

---------

Co-authored-by: James Lancaster <jamesl@aeries.com>
Co-authored-by: James Lancaster <20194126+jameslancaster@users.noreply.github.com>
Co-authored-by: Aeries Software <61568123+AeriesSoftware@users.noreply.github.com>
Co-authored-by: Billy <billyb@aeries.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement Scheduling Master Schedule (SMS) Create/Update/Delete Endpoints
2 participants