Skip to content

Commit

Permalink
Auto commit version 1.1.13 - 11 Aug 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
kulikjak committed Aug 11, 2023
1 parent 1952fb1 commit 9cf46e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='skautis-py',
version='1.1.12',
version='1.1.13',
description='Python library for interaction with the Skautis API',
author='Jakub Kulik',
author_email='[email protected]',
Expand Down
8 changes: 4 additions & 4 deletions skautis/Events.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ def ParticipantEducationInsert(self, ID_Login, ID_Person, ID_EventEducation, ID_
return self._client.service.ParticipantEducationInsert({"ID_Login": ID_Login, "ID_Person": ID_Person, "ID_EventEducation": ID_EventEducation, "ID_EventEducationCourse": ID_EventEducationCourse, "Person": Person})

# Upravit účastníka vzdělávací akce
def ParticipantEducationUpdate(self, ID_Login, ID, ID_Participant, ID_Person, ID_EventEducation, ID_EventEducationCourse, IsActive, FillCondition, IsSubstitute, IsAccepted, Graduated, DateLetterRequest, SignOut, Person=None, DisplayName=None, ID_EventEducationType=None, EventEducationType=None, Note=None):
return self._client.service.ParticipantEducationUpdate({"ID_Login": ID_Login, "ID": ID, "ID_Participant": ID_Participant, "ID_Person": ID_Person, "ID_EventEducation": ID_EventEducation, "ID_EventEducationCourse": ID_EventEducationCourse, "IsActive": IsActive, "FillCondition": FillCondition, "IsSubstitute": IsSubstitute, "IsAccepted": IsAccepted, "Graduated": Graduated, "DateLetterRequest": DateLetterRequest, "SignOut": SignOut, "Person": Person, "DisplayName": DisplayName, "ID_EventEducationType": ID_EventEducationType, "EventEducationType": EventEducationType, "Note": Note})
def ParticipantEducationUpdate(self, ID_Login, ID, ID_Participant, ID_Person, ID_EventEducation, ID_EventEducationCourse, IsActive, FillCondition, IsSubstitute, IsAccepted, Graduated, UpdateNote, DateLetterRequest, SignOut, Person=None, DisplayName=None, ID_EventEducationType=None, EventEducationType=None, Note=None):
return self._client.service.ParticipantEducationUpdate({"ID_Login": ID_Login, "ID": ID, "ID_Participant": ID_Participant, "ID_Person": ID_Person, "ID_EventEducation": ID_EventEducation, "ID_EventEducationCourse": ID_EventEducationCourse, "IsActive": IsActive, "FillCondition": FillCondition, "IsSubstitute": IsSubstitute, "IsAccepted": IsAccepted, "Graduated": Graduated, "UpdateNote": UpdateNote, "DateLetterRequest": DateLetterRequest, "SignOut": SignOut, "Person": Person, "DisplayName": DisplayName, "ID_EventEducationType": ID_EventEducationType, "EventEducationType": EventEducationType, "Note": Note})

# Provedení kontroly všech příznaků VzA
def EventConditionAllCheck(self, ID_Login):
Expand Down Expand Up @@ -769,8 +769,8 @@ def ParticipantEducationAllSendMessages(self, ID_Login):
return self._client.service.ParticipantEducationAllSendMessages({"ID_Login": ID_Login})

# Upravit účastníka vzdělávací akce
def ParticipantEducationUpdateState(self, ID_Login, ID, ID_Participant, ID_Person, ID_EventEducation, ID_EventEducationCourse, IsActive, FillCondition, IsSubstitute, IsAccepted, Graduated, DateLetterRequest, SignOut, Person=None, DisplayName=None, ID_EventEducationType=None, EventEducationType=None, Note=None):
return self._client.service.ParticipantEducationUpdateState({"ID_Login": ID_Login, "ID": ID, "ID_Participant": ID_Participant, "ID_Person": ID_Person, "ID_EventEducation": ID_EventEducation, "ID_EventEducationCourse": ID_EventEducationCourse, "IsActive": IsActive, "FillCondition": FillCondition, "IsSubstitute": IsSubstitute, "IsAccepted": IsAccepted, "Graduated": Graduated, "DateLetterRequest": DateLetterRequest, "SignOut": SignOut, "Person": Person, "DisplayName": DisplayName, "ID_EventEducationType": ID_EventEducationType, "EventEducationType": EventEducationType, "Note": Note})
def ParticipantEducationUpdateState(self, ID_Login, ID, ID_Participant, ID_Person, ID_EventEducation, ID_EventEducationCourse, IsActive, FillCondition, IsSubstitute, IsAccepted, Graduated, UpdateNote, DateLetterRequest, SignOut, Person=None, DisplayName=None, ID_EventEducationType=None, EventEducationType=None, Note=None):
return self._client.service.ParticipantEducationUpdateState({"ID_Login": ID_Login, "ID": ID, "ID_Participant": ID_Participant, "ID_Person": ID_Person, "ID_EventEducation": ID_EventEducation, "ID_EventEducationCourse": ID_EventEducationCourse, "IsActive": IsActive, "FillCondition": FillCondition, "IsSubstitute": IsSubstitute, "IsAccepted": IsAccepted, "Graduated": Graduated, "UpdateNote": UpdateNote, "DateLetterRequest": DateLetterRequest, "SignOut": SignOut, "Person": Person, "DisplayName": DisplayName, "ID_EventEducationType": ID_EventEducationType, "EventEducationType": EventEducationType, "Note": Note})

# No documentation
def ParticipantEducationUpdateRenew(self, ID_Login, ID, ID_Delegate):
Expand Down

0 comments on commit 9cf46e1

Please sign in to comment.