Skip to content

Commit

Permalink
Auto commit version 1.1.30 - 13 Nov 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
kulikjak committed Nov 13, 2024
1 parent bbe823b commit d69c1c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.29',
version='1.1.30',
description='Python library for interaction with the Skautis API',
author='Jakub Kulik',
author_email='[email protected]',
Expand Down
4 changes: 2 additions & 2 deletions skautis/Journal.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ def JournalCopyALLDateSent(self, ID_Login):
return self._client.service.JournalCopyALLDateSent({"ID_Login": ID_Login})

# Přidat speciální zásilku
def JournalCopyInsertSpecial(self, ID_Login, DateSent, AgeFrom, AgeTo, HasPreparedJournal, IsInsert, FunctionTypeNegation, RoverJournal, AlignmentTypeNegation, JournalParent, DisplayName=None, ID_FunctionTypeArray=None, ID_SexUnit=None, ID_TroopArtArray=None, ID_AlignmentTypeArray=None, ID_MembershipCategoryArray=None, ID_JournalArray=None, Note=None, ID_MembershipCategoryPersonNumberArray=None, ID_PersonNumberArray=None, IsAdultStem=None):
return self._client.service.JournalCopyInsertSpecial({"ID_Login": ID_Login, "DateSent": DateSent, "AgeFrom": AgeFrom, "AgeTo": AgeTo, "HasPreparedJournal": HasPreparedJournal, "IsInsert": IsInsert, "FunctionTypeNegation": FunctionTypeNegation, "RoverJournal": RoverJournal, "AlignmentTypeNegation": AlignmentTypeNegation, "JournalParent": JournalParent, "DisplayName": DisplayName, "ID_FunctionTypeArray": ID_FunctionTypeArray, "ID_SexUnit": ID_SexUnit, "ID_TroopArtArray": ID_TroopArtArray, "ID_AlignmentTypeArray": ID_AlignmentTypeArray, "ID_MembershipCategoryArray": ID_MembershipCategoryArray, "ID_JournalArray": ID_JournalArray, "Note": Note, "ID_MembershipCategoryPersonNumberArray": ID_MembershipCategoryPersonNumberArray, "ID_PersonNumberArray": ID_PersonNumberArray, "IsAdultStem": IsAdultStem})
def JournalCopyInsertSpecial(self, ID_Login, DateSent, IsInsert, FunctionTypeNegation, RoverJournal, AlignmentTypeNegation, AgeFrom, AgeTo, HasPreparedJournal, JournalParent, DisplayName=None, Note=None, ID_FunctionTypeArray=None, ID_SexUnit=None, ID_TroopArtArray=None, ID_AlignmentTypeArray=None, ID_MembershipCategoryArray=None, ID_MembershipCategoryPersonNumberArray=None, ID_PersonNumberArray=None, ID_JournalArray=None, IsAdultStem=None):
return self._client.service.JournalCopyInsertSpecial({"ID_Login": ID_Login, "DateSent": DateSent, "IsInsert": IsInsert, "FunctionTypeNegation": FunctionTypeNegation, "RoverJournal": RoverJournal, "AlignmentTypeNegation": AlignmentTypeNegation, "AgeFrom": AgeFrom, "AgeTo": AgeTo, "HasPreparedJournal": HasPreparedJournal, "JournalParent": JournalParent, "DisplayName": DisplayName, "Note": Note, "ID_FunctionTypeArray": ID_FunctionTypeArray, "ID_SexUnit": ID_SexUnit, "ID_TroopArtArray": ID_TroopArtArray, "ID_AlignmentTypeArray": ID_AlignmentTypeArray, "ID_MembershipCategoryArray": ID_MembershipCategoryArray, "ID_MembershipCategoryPersonNumberArray": ID_MembershipCategoryPersonNumberArray, "ID_PersonNumberArray": ID_PersonNumberArray, "ID_JournalArray": ID_JournalArray, "IsAdultStem": IsAdultStem})

# Přehled titulů připravených k rozesílce
def JournalCopyAllSummary(self, ID_Login):
Expand Down

0 comments on commit d69c1c6

Please sign in to comment.