Unified-python-sdk 0.24.7__tar.gz → 0.24.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (649) hide show
  1. {Unified-python-sdk-0.24.7/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.24.9}/PKG-INFO +151 -12
  2. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/README.md +150 -11
  3. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/setup.py +1 -1
  4. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9/src/Unified_python_sdk.egg-info}/PKG-INFO +151 -12
  5. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/Unified_python_sdk.egg-info/SOURCES.txt +102 -15
  6. Unified-python-sdk-0.24.9/src/unified_to/branch.py +353 -0
  7. Unified-python-sdk-0.24.9/src/unified_to/class_.py +353 -0
  8. Unified-python-sdk-0.24.9/src/unified_to/commit.py +353 -0
  9. Unified-python-sdk-0.24.9/src/unified_to/course.py +353 -0
  10. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/group.py +66 -11
  11. Unified-python-sdk-0.24.9/src/unified_to/instructor.py +353 -0
  12. Unified-python-sdk-0.24.9/src/unified_to/lms.py +1361 -0
  13. Unified-python-sdk-0.24.9/src/unified_to/models/operations/__init__.py +371 -0
  14. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createlmsclass.py +32 -0
  15. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createlmscourse.py +32 -0
  16. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createlmsinstructor.py +32 -0
  17. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createlmsstudent.py +32 -0
  18. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createrepobranch.py +32 -0
  19. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createrepocommit.py +32 -0
  20. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createrepoorganization.py +32 -0
  21. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createrepopullrequest.py +32 -0
  22. Unified-python-sdk-0.24.9/src/unified_to/models/operations/createreporepository.py +32 -0
  23. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createscimgroups.py +3 -3
  24. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createscimusers.py +3 -3
  25. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getlmsclass.py +33 -0
  26. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getlmscourse.py +33 -0
  27. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getlmsinstructor.py +33 -0
  28. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getlmsstudent.py +33 -0
  29. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getrepobranch.py +33 -0
  30. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getrepocommit.py +33 -0
  31. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getrepoorganization.py +33 -0
  32. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getrepopullrequest.py +33 -0
  33. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getreporepository.py +33 -0
  34. Unified-python-sdk-0.24.9/src/unified_to/models/operations/getscimgroups.py +31 -0
  35. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getscimusers.py +2 -2
  36. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedintegrationauth.py +18 -0
  37. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listlmsclasses.py +42 -0
  38. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listlmscourses.py +43 -0
  39. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listlmsinstructors.py +45 -0
  40. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listlmsstudents.py +44 -0
  41. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listrepobranches.py +41 -0
  42. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listrepocommits.py +42 -0
  43. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listrepoorganizations.py +40 -0
  44. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listrepopullrequests.py +41 -0
  45. Unified-python-sdk-0.24.9/src/unified_to/models/operations/listreporepositories.py +41 -0
  46. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listscimgroups.py +2 -2
  47. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listscimusers.py +2 -2
  48. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedconnections.py +2 -0
  49. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedintegrations.py +2 -0
  50. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedintegrationworkspaces.py +2 -0
  51. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchlmsclass.py +34 -0
  52. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchlmscourse.py +34 -0
  53. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchlmsinstructor.py +34 -0
  54. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchlmsstudent.py +34 -0
  55. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchrepobranch.py +34 -0
  56. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchrepocommit.py +34 -0
  57. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchrepoorganization.py +34 -0
  58. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchrepopullrequest.py +34 -0
  59. Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchreporepository.py +34 -0
  60. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchscimgroups.py +3 -3
  61. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchscimusers.py +3 -3
  62. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removelmsclass.py +27 -0
  63. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removelmscourse.py +27 -0
  64. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removelmsinstructor.py +27 -0
  65. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removelmsstudent.py +27 -0
  66. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removerepobranch.py +27 -0
  67. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removerepocommit.py +27 -0
  68. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removerepoorganization.py +27 -0
  69. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removerepopullrequest.py +27 -0
  70. Unified-python-sdk-0.24.9/src/unified_to/models/operations/removereporepository.py +27 -0
  71. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatelmsclass.py +34 -0
  72. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatelmscourse.py +34 -0
  73. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatelmsinstructor.py +34 -0
  74. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatelmsstudent.py +34 -0
  75. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updaterepobranch.py +34 -0
  76. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updaterepocommit.py +34 -0
  77. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updaterepoorganization.py +34 -0
  78. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updaterepopullrequest.py +34 -0
  79. Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatereporepository.py +34 -0
  80. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatescimgroups.py +3 -3
  81. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatescimusers.py +3 -3
  82. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/__init__.py +38 -16
  83. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/connection.py +0 -2
  84. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/integrationsupport.py +28 -0
  85. Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsclass.py +28 -0
  86. Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmscourse.py +32 -0
  87. Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsemail.py +9 -0
  88. Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsinstructor.py +27 -0
  89. Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsmedia.py +29 -0
  90. Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsstudent.py +28 -0
  91. Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmstelephone.py +25 -0
  92. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/messagingmessage.py +1 -0
  93. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_connection_categories.py +2 -0
  94. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_connection_permissions.py +18 -0
  95. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_integration_categories.py +2 -0
  96. Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +20 -0
  97. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_created.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_integrationsupport_webhook_events_created.py +1 -1
  98. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_deleted.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_integrationsupport_webhook_events_deleted.py +1 -1
  99. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_updated.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_integrationsupport_webhook_events_updated.py +1 -1
  100. Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_lmsstudent_address.py +22 -0
  101. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_group_meta.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimgroup_meta.py +1 -1
  102. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_group_schemas.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimgroup_schemas.py +1 -1
  103. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_user_meta.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimuser_meta.py +3 -3
  104. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_user_name.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimuser_name.py +1 -1
  105. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_user_schemas.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimuser_schemas.py +1 -1
  106. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_user_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user.py +11 -13
  107. Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user_manager.py +26 -0
  108. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_user_urn_ietf_params_scim_schemas_extension_lattice_attributes_1_0_user.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_lattice_attributes_1_0_user.py +7 -9
  109. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_user_urn_ietf_params_scim_schemas_extension_peakon_2_0_user.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_peakon_2_0_user.py +3 -3
  110. Unified-python-sdk-0.24.9/src/unified_to/models/shared/repobranch.py +22 -0
  111. Unified-python-sdk-0.24.9/src/unified_to/models/shared/repocommit.py +24 -0
  112. Unified-python-sdk-0.24.9/src/unified_to/models/shared/repoorganization.py +22 -0
  113. Unified-python-sdk-0.24.9/src/unified_to/models/shared/repopullrequest.py +33 -0
  114. Unified-python-sdk-0.24.9/src/unified_to/models/shared/reporepository.py +26 -0
  115. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimaddress.py +28 -0
  116. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimemail.py +25 -0
  117. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimentitlement.py +18 -0
  118. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimgroup.py +26 -0
  119. Unified-python-sdk-0.24.7/src/unified_to/models/shared/undefined.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimgroupmember.py +4 -4
  120. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimims.py +30 -0
  121. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_property_user_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user_manager.py → Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimmanager.py +4 -3
  122. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimphonenumber.py +28 -0
  123. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimphoto.py +24 -0
  124. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimrole.py +18 -0
  125. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimuser.py +58 -0
  126. Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimusergroups.py +24 -0
  127. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/storagefile.py +1 -0
  128. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/webhook.py +9 -0
  129. Unified-python-sdk-0.24.9/src/unified_to/organization.py +465 -0
  130. Unified-python-sdk-0.24.9/src/unified_to/pullrequest.py +353 -0
  131. Unified-python-sdk-0.24.9/src/unified_to/repo.py +1697 -0
  132. Unified-python-sdk-0.24.9/src/unified_to/repository.py +353 -0
  133. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/scim.py +79 -24
  134. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/sdk.py +30 -0
  135. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/sdkconfiguration.py +3 -3
  136. Unified-python-sdk-0.24.9/src/unified_to/student.py +353 -0
  137. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/user.py +13 -13
  138. Unified-python-sdk-0.24.7/src/unified_to/models/operations/__init__.py +0 -316
  139. Unified-python-sdk-0.24.7/src/unified_to/models/shared/group.py +0 -24
  140. Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +0 -20
  141. Unified-python-sdk-0.24.7/src/unified_to/models/shared/user.py +0 -49
  142. Unified-python-sdk-0.24.7/src/unified_to/organization.py +0 -129
  143. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/LICENSE.md +0 -0
  144. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/setup.cfg +0 -0
  145. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/Unified_python_sdk.egg-info/dependency_links.txt +0 -0
  146. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/Unified_python_sdk.egg-info/requires.txt +0 -0
  147. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/Unified_python_sdk.egg-info/top_level.txt +0 -0
  148. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/__init__.py +0 -0
  149. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/_hooks/__init__.py +0 -0
  150. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/_hooks/sdkhooks.py +0 -0
  151. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/_hooks/types.py +0 -0
  152. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/account.py +0 -0
  153. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/accounting.py +0 -0
  154. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/activity.py +0 -0
  155. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/apicall.py +0 -0
  156. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/application.py +0 -0
  157. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/applicationstatus.py +0 -0
  158. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/ats.py +0 -0
  159. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/auth.py +0 -0
  160. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/call.py +0 -0
  161. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/candidate.py +0 -0
  162. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/channel.py +0 -0
  163. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/collection.py +0 -0
  164. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/commerce.py +0 -0
  165. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/company.py +0 -0
  166. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/connection.py +0 -0
  167. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/contact.py +0 -0
  168. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/crm.py +0 -0
  169. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/customer.py +0 -0
  170. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/deal.py +0 -0
  171. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/document.py +0 -0
  172. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/employee.py +0 -0
  173. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/enrich.py +0 -0
  174. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/event.py +0 -0
  175. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/file.py +0 -0
  176. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/genai.py +0 -0
  177. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/hris.py +0 -0
  178. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/integration.py +0 -0
  179. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/interview.py +0 -0
  180. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/inventory.py +0 -0
  181. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/invoice.py +0 -0
  182. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/issue.py +0 -0
  183. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/item.py +0 -0
  184. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/job.py +0 -0
  185. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/journal.py +0 -0
  186. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/kms.py +0 -0
  187. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/lead.py +0 -0
  188. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/link.py +0 -0
  189. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/list.py +0 -0
  190. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/location.py +0 -0
  191. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/login.py +0 -0
  192. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/martech.py +0 -0
  193. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/member.py +0 -0
  194. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/message.py +0 -0
  195. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/messaging.py +0 -0
  196. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/model.py +0 -0
  197. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/__init__.py +0 -0
  198. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/errors/__init__.py +0 -0
  199. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/errors/sdkerror.py +0 -0
  200. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingaccount.py +0 -0
  201. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingcontact.py +0 -0
  202. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountinginvoice.py +0 -0
  203. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingjournal.py +0 -0
  204. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingorder.py +0 -0
  205. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingtaxrate.py +0 -0
  206. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingtransaction.py +0 -0
  207. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsactivity.py +0 -0
  208. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsapplication.py +0 -0
  209. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatscandidate.py +0 -0
  210. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsdocument.py +0 -0
  211. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsinterview.py +0 -0
  212. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsjob.py +0 -0
  213. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsscorecard.py +0 -0
  214. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcommercecollection.py +0 -0
  215. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcommerceinventory.py +0 -0
  216. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcommerceitem.py +0 -0
  217. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcommercelocation.py +0 -0
  218. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmcompany.py +0 -0
  219. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmcontact.py +0 -0
  220. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmdeal.py +0 -0
  221. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmevent.py +0 -0
  222. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmlead.py +0 -0
  223. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmpipeline.py +0 -0
  224. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/creategenaiprompt.py +0 -0
  225. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createhriscompany.py +0 -0
  226. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createhrisemployee.py +0 -0
  227. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createhrisgroup.py +0 -0
  228. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createhrislocation.py +0 -0
  229. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createkmspage.py +0 -0
  230. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createkmsspace.py +0 -0
  231. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createmartechlist.py +0 -0
  232. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createmartechmember.py +0 -0
  233. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createmessagingmessage.py +0 -0
  234. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createpassthrough_json.py +0 -0
  235. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createpassthrough_raw.py +0 -0
  236. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createpaymentlink.py +0 -0
  237. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createpaymentpayment.py +0 -0
  238. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createstoragefile.py +0 -0
  239. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createtaskproject.py +0 -0
  240. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createtasktask.py +0 -0
  241. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createticketingcustomer.py +0 -0
  242. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createticketingnote.py +0 -0
  243. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createticketingticket.py +0 -0
  244. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createuccontact.py +0 -0
  245. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createunifiedconnection.py +0 -0
  246. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createunifiedwebhook.py +0 -0
  247. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingaccount.py +0 -0
  248. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingcontact.py +0 -0
  249. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountinginvoice.py +0 -0
  250. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingjournal.py +0 -0
  251. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingorder.py +0 -0
  252. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingorganization.py +0 -0
  253. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingtaxrate.py +0 -0
  254. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingtransaction.py +0 -0
  255. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsactivity.py +0 -0
  256. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsapplication.py +0 -0
  257. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatscandidate.py +0 -0
  258. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatscompany.py +0 -0
  259. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsdocument.py +0 -0
  260. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsinterview.py +0 -0
  261. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsjob.py +0 -0
  262. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsscorecard.py +0 -0
  263. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcommercecollection.py +0 -0
  264. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcommerceinventory.py +0 -0
  265. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcommerceitem.py +0 -0
  266. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcommercelocation.py +0 -0
  267. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmcompany.py +0 -0
  268. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmcontact.py +0 -0
  269. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmdeal.py +0 -0
  270. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmevent.py +0 -0
  271. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmlead.py +0 -0
  272. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmpipeline.py +0 -0
  273. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethriscompany.py +0 -0
  274. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethrisemployee.py +0 -0
  275. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethrisgroup.py +0 -0
  276. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethrislocation.py +0 -0
  277. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethrispayslip.py +0 -0
  278. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethristimeoff.py +0 -0
  279. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getkmspage.py +0 -0
  280. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getkmsspace.py +0 -0
  281. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getmartechlist.py +0 -0
  282. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getmartechmember.py +0 -0
  283. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getmessagingchannel.py +0 -0
  284. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getmessagingmessage.py +0 -0
  285. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getpaymentlink.py +0 -0
  286. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getpaymentpayment.py +0 -0
  287. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getpaymentpayout.py +0 -0
  288. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getpaymentrefund.py +0 -0
  289. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getstoragefile.py +0 -0
  290. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gettaskproject.py +0 -0
  291. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gettasktask.py +0 -0
  292. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getticketingcustomer.py +0 -0
  293. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getticketingnote.py +0 -0
  294. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getticketingticket.py +0 -0
  295. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getuccontact.py +0 -0
  296. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedapicall.py +0 -0
  297. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedconnection.py +0 -0
  298. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedintegrationlogin.py +0 -0
  299. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedwebhook.py +0 -0
  300. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingaccounts.py +0 -0
  301. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingcontacts.py +0 -0
  302. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountinginvoices.py +0 -0
  303. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingjournals.py +0 -0
  304. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingorders.py +0 -0
  305. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingorganizations.py +0 -0
  306. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingtaxrates.py +0 -0
  307. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingtransactions.py +0 -0
  308. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsactivities.py +0 -0
  309. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsapplications.py +0 -0
  310. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsapplicationstatuses.py +0 -0
  311. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatscandidates.py +0 -0
  312. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatscompanies.py +0 -0
  313. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsdocuments.py +0 -0
  314. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsinterviews.py +0 -0
  315. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsjobs.py +0 -0
  316. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsscorecards.py +0 -0
  317. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcommercecollections.py +0 -0
  318. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcommerceinventories.py +0 -0
  319. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcommerceitems.py +0 -0
  320. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcommercelocations.py +0 -0
  321. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmcompanies.py +0 -0
  322. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmcontacts.py +0 -0
  323. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmdeals.py +0 -0
  324. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmevents.py +0 -0
  325. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmleads.py +0 -0
  326. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmpipelines.py +0 -0
  327. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listenrichcompanies.py +0 -0
  328. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listenrichpeople.py +0 -0
  329. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listgenaimodels.py +0 -0
  330. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhriscompanies.py +0 -0
  331. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhrisemployees.py +0 -0
  332. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhrisgroups.py +0 -0
  333. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhrislocations.py +0 -0
  334. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhrispayslips.py +0 -0
  335. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhristimeoffs.py +0 -0
  336. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listkmspages.py +0 -0
  337. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listkmsspaces.py +0 -0
  338. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listmartechlists.py +0 -0
  339. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listmartechmembers.py +0 -0
  340. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listmessagingchannels.py +0 -0
  341. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listmessagingmessages.py +0 -0
  342. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpassthroughs.py +0 -0
  343. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpaymentlinks.py +0 -0
  344. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpaymentpayments.py +0 -0
  345. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpaymentpayouts.py +0 -0
  346. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpaymentrefunds.py +0 -0
  347. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/liststoragefiles.py +0 -0
  348. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listtaskprojects.py +0 -0
  349. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listtasktasks.py +0 -0
  350. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listticketingcustomers.py +0 -0
  351. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listticketingnotes.py +0 -0
  352. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listticketingtickets.py +0 -0
  353. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listuccalls.py +0 -0
  354. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listuccontacts.py +0 -0
  355. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedapicalls.py +0 -0
  356. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedissues.py +0 -0
  357. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedwebhooks.py +0 -0
  358. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingaccount.py +0 -0
  359. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingcontact.py +0 -0
  360. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountinginvoice.py +0 -0
  361. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingjournal.py +0 -0
  362. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingorder.py +0 -0
  363. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingtaxrate.py +0 -0
  364. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingtransaction.py +0 -0
  365. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsactivity.py +0 -0
  366. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsapplication.py +0 -0
  367. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatscandidate.py +0 -0
  368. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsdocument.py +0 -0
  369. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsinterview.py +0 -0
  370. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsjob.py +0 -0
  371. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsscorecard.py +0 -0
  372. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcommercecollection.py +0 -0
  373. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcommerceinventory.py +0 -0
  374. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcommerceitem.py +0 -0
  375. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcommercelocation.py +0 -0
  376. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmcompany.py +0 -0
  377. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmcontact.py +0 -0
  378. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmdeal.py +0 -0
  379. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmevent.py +0 -0
  380. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmlead.py +0 -0
  381. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmpipeline.py +0 -0
  382. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchhriscompany.py +0 -0
  383. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchhrisemployee.py +0 -0
  384. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchhrisgroup.py +0 -0
  385. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchhrislocation.py +0 -0
  386. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchkmspage.py +0 -0
  387. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchkmsspace.py +0 -0
  388. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchmartechlist.py +0 -0
  389. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchmartechmember.py +0 -0
  390. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchmessagingmessage.py +0 -0
  391. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchpassthrough_json.py +0 -0
  392. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchpassthrough_raw.py +0 -0
  393. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchpaymentlink.py +0 -0
  394. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchpaymentpayment.py +0 -0
  395. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchstoragefile.py +0 -0
  396. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchtaskproject.py +0 -0
  397. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchtasktask.py +0 -0
  398. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchticketingcustomer.py +0 -0
  399. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchticketingnote.py +0 -0
  400. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchticketingticket.py +0 -0
  401. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchuccontact.py +0 -0
  402. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchunifiedconnection.py +0 -0
  403. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchunifiedwebhook.py +0 -0
  404. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchunifiedwebhooktrigger.py +0 -0
  405. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingaccount.py +0 -0
  406. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingcontact.py +0 -0
  407. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountinginvoice.py +0 -0
  408. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingjournal.py +0 -0
  409. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingorder.py +0 -0
  410. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingtaxrate.py +0 -0
  411. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingtransaction.py +0 -0
  412. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsactivity.py +0 -0
  413. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsapplication.py +0 -0
  414. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatscandidate.py +0 -0
  415. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsdocument.py +0 -0
  416. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsinterview.py +0 -0
  417. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsjob.py +0 -0
  418. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsscorecard.py +0 -0
  419. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecommercecollection.py +0 -0
  420. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecommerceinventory.py +0 -0
  421. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecommerceitem.py +0 -0
  422. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecommercelocation.py +0 -0
  423. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmcompany.py +0 -0
  424. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmcontact.py +0 -0
  425. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmdeal.py +0 -0
  426. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmevent.py +0 -0
  427. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmlead.py +0 -0
  428. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmpipeline.py +0 -0
  429. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removehriscompany.py +0 -0
  430. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removehrisemployee.py +0 -0
  431. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removehrisgroup.py +0 -0
  432. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removehrislocation.py +0 -0
  433. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removekmspage.py +0 -0
  434. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removekmsspace.py +0 -0
  435. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removemartechlist.py +0 -0
  436. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removemartechmember.py +0 -0
  437. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removemessagingmessage.py +0 -0
  438. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removepassthrough.py +0 -0
  439. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removepaymentlink.py +0 -0
  440. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removepaymentpayment.py +0 -0
  441. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removescimgroups.py +0 -0
  442. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removescimusers.py +0 -0
  443. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removestoragefile.py +0 -0
  444. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removetaskproject.py +0 -0
  445. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removetasktask.py +0 -0
  446. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeticketingcustomer.py +0 -0
  447. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeticketingnote.py +0 -0
  448. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeticketingticket.py +0 -0
  449. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeuccontact.py +0 -0
  450. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeunifiedconnection.py +0 -0
  451. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeunifiedwebhook.py +0 -0
  452. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingaccount.py +0 -0
  453. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingcontact.py +0 -0
  454. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountinginvoice.py +0 -0
  455. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingjournal.py +0 -0
  456. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingorder.py +0 -0
  457. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingtaxrate.py +0 -0
  458. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingtransaction.py +0 -0
  459. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsactivity.py +0 -0
  460. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsapplication.py +0 -0
  461. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatscandidate.py +0 -0
  462. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsdocument.py +0 -0
  463. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsinterview.py +0 -0
  464. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsjob.py +0 -0
  465. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsscorecard.py +0 -0
  466. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecommercecollection.py +0 -0
  467. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecommerceinventory.py +0 -0
  468. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecommerceitem.py +0 -0
  469. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecommercelocation.py +0 -0
  470. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmcompany.py +0 -0
  471. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmcontact.py +0 -0
  472. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmdeal.py +0 -0
  473. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmevent.py +0 -0
  474. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmlead.py +0 -0
  475. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmpipeline.py +0 -0
  476. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatehriscompany.py +0 -0
  477. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatehrisemployee.py +0 -0
  478. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatehrisgroup.py +0 -0
  479. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatehrislocation.py +0 -0
  480. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatekmspage.py +0 -0
  481. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatekmsspace.py +0 -0
  482. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatemartechlist.py +0 -0
  483. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatemartechmember.py +0 -0
  484. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatemessagingmessage.py +0 -0
  485. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatepassthrough_json.py +0 -0
  486. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatepassthrough_raw.py +0 -0
  487. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatepaymentlink.py +0 -0
  488. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatepaymentpayment.py +0 -0
  489. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatestoragefile.py +0 -0
  490. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatetaskproject.py +0 -0
  491. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatetasktask.py +0 -0
  492. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateticketingcustomer.py +0 -0
  493. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateticketingnote.py +0 -0
  494. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateticketingticket.py +0 -0
  495. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateuccontact.py +0 -0
  496. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateunifiedconnection.py +0 -0
  497. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateunifiedwebhook.py +0 -0
  498. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateunifiedwebhooktrigger.py +0 -0
  499. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingaccount.py +0 -0
  500. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingcontact.py +0 -0
  501. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingcontactpaymentmethod.py +0 -0
  502. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingemail.py +0 -0
  503. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountinginvoice.py +0 -0
  504. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingjournal.py +0 -0
  505. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingjournallineitem.py +0 -0
  506. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountinglineitem.py +0 -0
  507. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingorder.py +0 -0
  508. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingorganization.py +0 -0
  509. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtaxrate.py +0 -0
  510. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtelephone.py +0 -0
  511. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtransaction.py +0 -0
  512. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtransactioncontact.py +0 -0
  513. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtransactionlineitem.py +0 -0
  514. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/apicall.py +0 -0
  515. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsactivity.py +0 -0
  516. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsaddress.py +0 -0
  517. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsapplication.py +0 -0
  518. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsapplicationanswer.py +0 -0
  519. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atscandidate.py +0 -0
  520. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atscompany.py +0 -0
  521. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atscompensation.py +0 -0
  522. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsdocument.py +0 -0
  523. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsemail.py +0 -0
  524. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsinterview.py +0 -0
  525. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsjob.py +0 -0
  526. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsjobquestion.py +0 -0
  527. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsoffer.py +0 -0
  528. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsscorecard.py +0 -0
  529. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsscorecardquestion.py +0 -0
  530. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsstatus.py +0 -0
  531. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atstelephone.py +0 -0
  532. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commercecollection.py +0 -0
  533. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceinventory.py +0 -0
  534. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitem.py +0 -0
  535. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitemmedia.py +0 -0
  536. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitemoption.py +0 -0
  537. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitemprice.py +0 -0
  538. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitemvariant.py +0 -0
  539. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commercelocation.py +0 -0
  540. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commercemetadata.py +0 -0
  541. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmcompany.py +0 -0
  542. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmcontact.py +0 -0
  543. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmdeal.py +0 -0
  544. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmemail.py +0 -0
  545. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmevent.py +0 -0
  546. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmlead.py +0 -0
  547. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmpipeline.py +0 -0
  548. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmstage.py +0 -0
  549. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmtelephone.py +0 -0
  550. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichcompany.py +0 -0
  551. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichemail.py +0 -0
  552. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichperson.py +0 -0
  553. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichpersonworkhistory.py +0 -0
  554. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichtelephone.py +0 -0
  555. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/genaicontent.py +0 -0
  556. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/genaimodel.py +0 -0
  557. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/genaiprompt.py +0 -0
  558. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hriscompany.py +0 -0
  559. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hriscompensation.py +0 -0
  560. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrisemail.py +0 -0
  561. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrisemployee.py +0 -0
  562. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrisgroup.py +0 -0
  563. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrislocation.py +0 -0
  564. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrispayslip.py +0 -0
  565. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrispayslipdetail.py +0 -0
  566. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hristelephone.py +0 -0
  567. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hristimeoff.py +0 -0
  568. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/integration.py +0 -0
  569. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/issue.py +0 -0
  570. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/kmspage.py +0 -0
  571. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/kmsspace.py +0 -0
  572. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/marketingemail.py +0 -0
  573. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/marketinglist.py +0 -0
  574. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/marketingmember.py +0 -0
  575. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/messagingattachment.py +0 -0
  576. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/messagingchannel.py +0 -0
  577. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/messagingmember.py +0 -0
  578. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentlink.py +0 -0
  579. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentlinklineitem.py +0 -0
  580. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentpayment.py +0 -0
  581. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentpayout.py +0 -0
  582. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentrefund.py +0 -0
  583. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingcontact_billing_address.py +0 -0
  584. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingcontact_shipping_address.py +0 -0
  585. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingorder_billing_address.py +0 -0
  586. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingorder_shipping_address.py +0 -0
  587. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingorganization_address.py +0 -0
  588. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_atsactivity_from.py +0 -0
  589. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_atscandidate_address.py +0 -0
  590. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_atscompany_address.py +0 -0
  591. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_commercelocation_address.py +0 -0
  592. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_connection_auth.py +0 -0
  593. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmcompany_address.py +0 -0
  594. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmcontact_address.py +0 -0
  595. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_call.py +0 -0
  596. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_email.py +0 -0
  597. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_meeting.py +0 -0
  598. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_note.py +0 -0
  599. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_task.py +0 -0
  600. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmlead_address.py +0 -0
  601. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_enrichcompany_address.py +0 -0
  602. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_enrichperson_address.py +0 -0
  603. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_hriscompany_address.py +0 -0
  604. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_hrisemployee_address.py +0 -0
  605. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_hrisemployee_employee_roles.py +0 -0
  606. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_hrislocation_address.py +0 -0
  607. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_messagingmessage_author_member.py +0 -0
  608. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_storagepermission_roles.py +0 -0
  609. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_uccall_telephone.py +0 -0
  610. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/security.py +0 -0
  611. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/storagepermission.py +0 -0
  612. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/taskproject.py +0 -0
  613. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/tasktask.py +0 -0
  614. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingcustomer.py +0 -0
  615. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingemail.py +0 -0
  616. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingnote.py +0 -0
  617. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingtelephone.py +0 -0
  618. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingticket.py +0 -0
  619. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/uccall.py +0 -0
  620. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/uccontact.py +0 -0
  621. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ucemail.py +0 -0
  622. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/uctelephone.py +0 -0
  623. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/note.py +0 -0
  624. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/order.py +0 -0
  625. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/page.py +0 -0
  626. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/passthrough.py +0 -0
  627. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/payment.py +0 -0
  628. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/payout.py +0 -0
  629. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/payslip.py +0 -0
  630. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/person.py +0 -0
  631. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/pipeline.py +0 -0
  632. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/project.py +0 -0
  633. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/prompt.py +0 -0
  634. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/refund.py +0 -0
  635. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/scorecard.py +0 -0
  636. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/space.py +0 -0
  637. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/storage.py +0 -0
  638. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/task.py +0 -0
  639. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/taxrate.py +0 -0
  640. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/ticket.py +0 -0
  641. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/ticketing.py +0 -0
  642. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/timeoff.py +0 -0
  643. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/transaction.py +0 -0
  644. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/uc.py +0 -0
  645. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/unified.py +0 -0
  646. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/utils/__init__.py +0 -0
  647. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/utils/retries.py +0 -0
  648. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/utils/utils.py +0 -0
  649. {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/webhook.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Unified-python-sdk
3
- Version: 0.24.7
3
+ Version: 0.24.9
4
4
  Summary: Python Client SDK for Unified.to
5
5
  Home-page: https://github.com/unified-to/unified-python-sdk.git
6
6
  Author: Unified API Inc
@@ -204,6 +204,15 @@ Description: <div align="left">
204
204
  * [get_unified_integration_auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md#get_unified_integration_auth) - Create connection indirectly
205
205
  * [get_unified_integration_login](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md#get_unified_integration_login) - Sign in a user
206
206
 
207
+ ### [branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md)
208
+
209
+ * [create_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#create_repo_branch) - Create a branch
210
+ * [get_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#get_repo_branch) - Retrieve a branch
211
+ * [list_repo_branches](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#list_repo_branches) - List all branches
212
+ * [patch_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#patch_repo_branch) - Update a branch
213
+ * [remove_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#remove_repo_branch) - Remove a branch
214
+ * [update_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#update_repo_branch) - Update a branch
215
+
207
216
  ### [call](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/call/README.md)
208
217
 
209
218
  * [list_uc_calls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/call/README.md#list_uc_calls) - List all calls
@@ -222,6 +231,15 @@ Description: <div align="left">
222
231
  * [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#get_messaging_channel) - Retrieve a channel
223
232
  * [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#list_messaging_channels) - List all channels
224
233
 
234
+ ### [class_](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md)
235
+
236
+ * [create_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#create_lms_class) - Create a class
237
+ * [get_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#get_lms_class) - Retrieve a class
238
+ * [list_lms_classes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#list_lms_classes) - List all classes
239
+ * [patch_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#patch_lms_class) - Update a class
240
+ * [remove_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#remove_lms_class) - Remove a class
241
+ * [update_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#update_lms_class) - Update a class
242
+
225
243
  ### [collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md)
226
244
 
227
245
  * [create_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
@@ -258,6 +276,15 @@ Description: <div align="left">
258
276
  * [update_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_item) - Update an item
259
277
  * [update_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_location) - Update a location
260
278
 
279
+ ### [commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md)
280
+
281
+ * [create_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#create_repo_commit) - Create a commit
282
+ * [get_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#get_repo_commit) - Retrieve a commit
283
+ * [list_repo_commits](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#list_repo_commits) - List all commits
284
+ * [patch_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#patch_repo_commit) - Update a commit
285
+ * [remove_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#remove_repo_commit) - Remove a commit
286
+ * [update_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#update_repo_commit) - Update a commit
287
+
261
288
  ### [company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md)
262
289
 
263
290
  * [create_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#create_crm_company) - Create a company
@@ -306,6 +333,15 @@ Description: <div align="left">
306
333
  * [update_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_crm_contact) - Update a contact
307
334
  * [update_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_uc_contact) - Update a contact
308
335
 
336
+ ### [course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md)
337
+
338
+ * [create_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#create_lms_course) - Create a course
339
+ * [get_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#get_lms_course) - Retrieve a course
340
+ * [list_lms_courses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#list_lms_courses) - List all courses
341
+ * [patch_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#patch_lms_course) - Update a course
342
+ * [remove_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#remove_lms_course) - Remove a course
343
+ * [update_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#update_lms_course) - Update a course
344
+
309
345
  ### [crm](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md)
310
346
 
311
347
  * [create_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_company) - Create a company
@@ -414,6 +450,7 @@ Description: <div align="left">
414
450
  * [create_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#create_hris_group) - Create a group
415
451
  * [create_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#create_scim_groups) - Create group
416
452
  * [get_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#get_hris_group) - Retrieve a group
453
+ * [get_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#get_scim_groups) - Get group
417
454
  * [list_hris_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#list_hris_groups) - List all groups
418
455
  * [list_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#list_scim_groups) - List groups
419
456
  * [patch_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#patch_hris_group) - Update a group
@@ -454,6 +491,15 @@ Description: <div align="left">
454
491
  * [update_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_group) - Update a group
455
492
  * [update_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_location) - Update a location
456
493
 
494
+ ### [instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md)
495
+
496
+ * [create_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#create_lms_instructor) - Create an instructor
497
+ * [get_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#get_lms_instructor) - Retrieve an instructor
498
+ * [list_lms_instructors](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#list_lms_instructors) - List all instructors
499
+ * [patch_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#patch_lms_instructor) - Update an instructor
500
+ * [remove_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#remove_lms_instructor) - Remove an instructor
501
+ * [update_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#update_lms_instructor) - Update an instructor
502
+
457
503
  ### [integration](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md)
458
504
 
459
505
  * [get_unified_integration_auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md#get_unified_integration_auth) - Create connection indirectly
@@ -560,6 +606,33 @@ Description: <div align="left">
560
606
  * [remove_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#remove_martech_list) - Remove a list
561
607
  * [update_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#update_martech_list) - Update a list
562
608
 
609
+ ### [lms](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md)
610
+
611
+ * [create_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_class) - Create a class
612
+ * [create_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_course) - Create a course
613
+ * [create_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_instructor) - Create an instructor
614
+ * [create_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_student) - Create a student
615
+ * [get_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_class) - Retrieve a class
616
+ * [get_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_course) - Retrieve a course
617
+ * [get_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_instructor) - Retrieve an instructor
618
+ * [get_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_student) - Retrieve a student
619
+ * [list_lms_classes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_classes) - List all classes
620
+ * [list_lms_courses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_courses) - List all courses
621
+ * [list_lms_instructors](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_instructors) - List all instructors
622
+ * [list_lms_students](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_students) - List all students
623
+ * [patch_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_class) - Update a class
624
+ * [patch_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_course) - Update a course
625
+ * [patch_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_instructor) - Update an instructor
626
+ * [patch_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_student) - Update a student
627
+ * [remove_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_class) - Remove a class
628
+ * [remove_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_course) - Remove a course
629
+ * [remove_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_instructor) - Remove an instructor
630
+ * [remove_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_student) - Remove a student
631
+ * [update_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_class) - Update a class
632
+ * [update_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_course) - Update a course
633
+ * [update_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_instructor) - Update an instructor
634
+ * [update_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_student) - Update a student
635
+
563
636
  ### [location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md)
564
637
 
565
638
  * [create_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#create_commerce_location) - Create a location
@@ -647,8 +720,14 @@ Description: <div align="left">
647
720
 
648
721
  ### [organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md)
649
722
 
723
+ * [create_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#create_repo_organization) - Create an organization
650
724
  * [get_accounting_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#get_accounting_organization) - Retrieve an organization
725
+ * [get_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#get_repo_organization) - Retrieve an organization
651
726
  * [list_accounting_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#list_accounting_organizations) - List all organizations
727
+ * [list_repo_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#list_repo_organizations) - List all organizations
728
+ * [patch_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#patch_repo_organization) - Update an organization
729
+ * [remove_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#remove_repo_organization) - Remove an organization
730
+ * [update_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#update_repo_organization) - Update an organization
652
731
 
653
732
  ### [page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md)
654
733
 
@@ -725,15 +804,67 @@ Description: <div align="left">
725
804
 
726
805
  * [create_genai_prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/prompt/README.md#create_genai_prompt) - Create a prompt
727
806
 
807
+ ### [pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md)
808
+
809
+ * [create_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#create_repo_pullrequest) - Create a pullrequest
810
+ * [get_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#get_repo_pullrequest) - Retrieve a pullrequest
811
+ * [list_repo_pullrequests](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#list_repo_pullrequests) - List all pullrequests
812
+ * [patch_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#patch_repo_pullrequest) - Update a pullrequest
813
+ * [remove_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#remove_repo_pullrequest) - Remove a pullrequest
814
+ * [update_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#update_repo_pullrequest) - Update a pullrequest
815
+
728
816
  ### [refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md)
729
817
 
730
818
  * [get_payment_refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md#get_payment_refund) - Retrieve a refund
731
819
  * [list_payment_refunds](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md#list_payment_refunds) - List all refunds
732
820
 
821
+ ### [repo](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md)
822
+
823
+ * [create_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_branch) - Create a branch
824
+ * [create_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_commit) - Create a commit
825
+ * [create_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_organization) - Create an organization
826
+ * [create_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_pullrequest) - Create a pullrequest
827
+ * [create_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_repository) - Create a repository
828
+ * [get_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_branch) - Retrieve a branch
829
+ * [get_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_commit) - Retrieve a commit
830
+ * [get_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_organization) - Retrieve an organization
831
+ * [get_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_pullrequest) - Retrieve a pullrequest
832
+ * [get_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_repository) - Retrieve a repository
833
+ * [list_repo_branches](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_branches) - List all branches
834
+ * [list_repo_commits](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_commits) - List all commits
835
+ * [list_repo_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_organizations) - List all organizations
836
+ * [list_repo_pullrequests](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_pullrequests) - List all pullrequests
837
+ * [list_repo_repositories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_repositories) - List all repositories
838
+ * [patch_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_branch) - Update a branch
839
+ * [patch_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_commit) - Update a commit
840
+ * [patch_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_organization) - Update an organization
841
+ * [patch_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_pullrequest) - Update a pullrequest
842
+ * [patch_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_repository) - Update a repository
843
+ * [remove_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_branch) - Remove a branch
844
+ * [remove_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_commit) - Remove a commit
845
+ * [remove_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_organization) - Remove an organization
846
+ * [remove_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_pullrequest) - Remove a pullrequest
847
+ * [remove_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_repository) - Remove a repository
848
+ * [update_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_branch) - Update a branch
849
+ * [update_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_commit) - Update a commit
850
+ * [update_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_organization) - Update an organization
851
+ * [update_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_pullrequest) - Update a pullrequest
852
+ * [update_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_repository) - Update a repository
853
+
854
+ ### [repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md)
855
+
856
+ * [create_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#create_repo_repository) - Create a repository
857
+ * [get_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#get_repo_repository) - Retrieve a repository
858
+ * [list_repo_repositories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#list_repo_repositories) - List all repositories
859
+ * [patch_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#patch_repo_repository) - Update a repository
860
+ * [remove_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#remove_repo_repository) - Remove a repository
861
+ * [update_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#update_repo_repository) - Update a repository
862
+
733
863
  ### [scim](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md)
734
864
 
735
865
  * [create_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#create_scim_groups) - Create group
736
866
  * [create_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#create_scim_users) - Create user
867
+ * [get_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#get_scim_groups) - Get group
737
868
  * [get_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#get_scim_users) - Get user
738
869
  * [list_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#list_scim_groups) - List groups
739
870
  * [list_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#list_scim_users) - List users
@@ -771,6 +902,15 @@ Description: <div align="left">
771
902
  * [remove_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#remove_storage_file) - Remove a file
772
903
  * [update_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#update_storage_file) - Update a file
773
904
 
905
+ ### [student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md)
906
+
907
+ * [create_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#create_lms_student) - Create a student
908
+ * [get_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#get_lms_student) - Retrieve a student
909
+ * [list_lms_students](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#list_lms_students) - List all students
910
+ * [patch_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#patch_lms_student) - Update a student
911
+ * [remove_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#remove_lms_student) - Remove a student
912
+ * [update_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#update_lms_student) - Update a student
913
+
774
914
  ### [task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md)
775
915
 
776
916
  * [create_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_project) - Create a project
@@ -918,9 +1058,9 @@ Description: <div align="left">
918
1058
 
919
1059
  When custom error responses are specified for an operation, the SDK may also raise their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `create_accounting_account` method may raise the following exceptions:
920
1060
 
921
- | Error Type | Status Code | Content Type |
922
- | --------------- | --------------- | --------------- |
923
- | errors.SDKError | 4XX, 5XX | \*/\* |
1061
+ | Error Type | Status Code | Content Type |
1062
+ | --------------- | ----------- | ------------ |
1063
+ | errors.SDKError | 4XX, 5XX | \*/\* |
924
1064
 
925
1065
  ### Example
926
1066
 
@@ -956,10 +1096,10 @@ Description: <div align="left">
956
1096
 
957
1097
  You can override the default server globally by passing a server index to the `server_idx: int` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
958
1098
 
959
- | # | Server | Variables |
960
- | - | ------ | --------- |
961
- | 0 | `https://api.unified.to` | None |
962
- | 1 | `https://api-eu.unified.to` | None |
1099
+ | # | Server |
1100
+ | --- | --------------------------- |
1101
+ | 0 | `https://api.unified.to` |
1102
+ | 1 | `https://api-eu.unified.to` |
963
1103
 
964
1104
  #### Example
965
1105
 
@@ -982,7 +1122,6 @@ Description: <div align="left">
982
1122
 
983
1123
  ```
984
1124
 
985
-
986
1125
  ### Override Server URL Per-Client
987
1126
 
988
1127
  The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
@@ -1033,9 +1172,9 @@ Description: <div align="left">
1033
1172
 
1034
1173
  This SDK supports the following security scheme globally:
1035
1174
 
1036
- | Name | Type | Scheme |
1037
- | ------- | ------- | ------- |
1038
- | `jwt` | apiKey | API key |
1175
+ | Name | Type | Scheme |
1176
+ | ----- | ------ | ------- |
1177
+ | `jwt` | apiKey | API key |
1039
1178
 
1040
1179
  You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
1041
1180
  ```python
@@ -197,6 +197,15 @@ if res.accounting_account is not None:
197
197
  * [get_unified_integration_auth](docs/sdks/auth/README.md#get_unified_integration_auth) - Create connection indirectly
198
198
  * [get_unified_integration_login](docs/sdks/auth/README.md#get_unified_integration_login) - Sign in a user
199
199
 
200
+ ### [branch](docs/sdks/branch/README.md)
201
+
202
+ * [create_repo_branch](docs/sdks/branch/README.md#create_repo_branch) - Create a branch
203
+ * [get_repo_branch](docs/sdks/branch/README.md#get_repo_branch) - Retrieve a branch
204
+ * [list_repo_branches](docs/sdks/branch/README.md#list_repo_branches) - List all branches
205
+ * [patch_repo_branch](docs/sdks/branch/README.md#patch_repo_branch) - Update a branch
206
+ * [remove_repo_branch](docs/sdks/branch/README.md#remove_repo_branch) - Remove a branch
207
+ * [update_repo_branch](docs/sdks/branch/README.md#update_repo_branch) - Update a branch
208
+
200
209
  ### [call](docs/sdks/call/README.md)
201
210
 
202
211
  * [list_uc_calls](docs/sdks/call/README.md#list_uc_calls) - List all calls
@@ -215,6 +224,15 @@ if res.accounting_account is not None:
215
224
  * [get_messaging_channel](docs/sdks/channel/README.md#get_messaging_channel) - Retrieve a channel
216
225
  * [list_messaging_channels](docs/sdks/channel/README.md#list_messaging_channels) - List all channels
217
226
 
227
+ ### [class_](docs/sdks/class/README.md)
228
+
229
+ * [create_lms_class](docs/sdks/class/README.md#create_lms_class) - Create a class
230
+ * [get_lms_class](docs/sdks/class/README.md#get_lms_class) - Retrieve a class
231
+ * [list_lms_classes](docs/sdks/class/README.md#list_lms_classes) - List all classes
232
+ * [patch_lms_class](docs/sdks/class/README.md#patch_lms_class) - Update a class
233
+ * [remove_lms_class](docs/sdks/class/README.md#remove_lms_class) - Remove a class
234
+ * [update_lms_class](docs/sdks/class/README.md#update_lms_class) - Update a class
235
+
218
236
  ### [collection](docs/sdks/collection/README.md)
219
237
 
220
238
  * [create_commerce_collection](docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
@@ -251,6 +269,15 @@ if res.accounting_account is not None:
251
269
  * [update_commerce_item](docs/sdks/commerce/README.md#update_commerce_item) - Update an item
252
270
  * [update_commerce_location](docs/sdks/commerce/README.md#update_commerce_location) - Update a location
253
271
 
272
+ ### [commit](docs/sdks/commit/README.md)
273
+
274
+ * [create_repo_commit](docs/sdks/commit/README.md#create_repo_commit) - Create a commit
275
+ * [get_repo_commit](docs/sdks/commit/README.md#get_repo_commit) - Retrieve a commit
276
+ * [list_repo_commits](docs/sdks/commit/README.md#list_repo_commits) - List all commits
277
+ * [patch_repo_commit](docs/sdks/commit/README.md#patch_repo_commit) - Update a commit
278
+ * [remove_repo_commit](docs/sdks/commit/README.md#remove_repo_commit) - Remove a commit
279
+ * [update_repo_commit](docs/sdks/commit/README.md#update_repo_commit) - Update a commit
280
+
254
281
  ### [company](docs/sdks/company/README.md)
255
282
 
256
283
  * [create_crm_company](docs/sdks/company/README.md#create_crm_company) - Create a company
@@ -299,6 +326,15 @@ if res.accounting_account is not None:
299
326
  * [update_crm_contact](docs/sdks/contact/README.md#update_crm_contact) - Update a contact
300
327
  * [update_uc_contact](docs/sdks/contact/README.md#update_uc_contact) - Update a contact
301
328
 
329
+ ### [course](docs/sdks/course/README.md)
330
+
331
+ * [create_lms_course](docs/sdks/course/README.md#create_lms_course) - Create a course
332
+ * [get_lms_course](docs/sdks/course/README.md#get_lms_course) - Retrieve a course
333
+ * [list_lms_courses](docs/sdks/course/README.md#list_lms_courses) - List all courses
334
+ * [patch_lms_course](docs/sdks/course/README.md#patch_lms_course) - Update a course
335
+ * [remove_lms_course](docs/sdks/course/README.md#remove_lms_course) - Remove a course
336
+ * [update_lms_course](docs/sdks/course/README.md#update_lms_course) - Update a course
337
+
302
338
  ### [crm](docs/sdks/crm/README.md)
303
339
 
304
340
  * [create_crm_company](docs/sdks/crm/README.md#create_crm_company) - Create a company
@@ -407,6 +443,7 @@ if res.accounting_account is not None:
407
443
  * [create_hris_group](docs/sdks/group/README.md#create_hris_group) - Create a group
408
444
  * [create_scim_groups](docs/sdks/group/README.md#create_scim_groups) - Create group
409
445
  * [get_hris_group](docs/sdks/group/README.md#get_hris_group) - Retrieve a group
446
+ * [get_scim_groups](docs/sdks/group/README.md#get_scim_groups) - Get group
410
447
  * [list_hris_groups](docs/sdks/group/README.md#list_hris_groups) - List all groups
411
448
  * [list_scim_groups](docs/sdks/group/README.md#list_scim_groups) - List groups
412
449
  * [patch_hris_group](docs/sdks/group/README.md#patch_hris_group) - Update a group
@@ -447,6 +484,15 @@ if res.accounting_account is not None:
447
484
  * [update_hris_group](docs/sdks/hris/README.md#update_hris_group) - Update a group
448
485
  * [update_hris_location](docs/sdks/hris/README.md#update_hris_location) - Update a location
449
486
 
487
+ ### [instructor](docs/sdks/instructor/README.md)
488
+
489
+ * [create_lms_instructor](docs/sdks/instructor/README.md#create_lms_instructor) - Create an instructor
490
+ * [get_lms_instructor](docs/sdks/instructor/README.md#get_lms_instructor) - Retrieve an instructor
491
+ * [list_lms_instructors](docs/sdks/instructor/README.md#list_lms_instructors) - List all instructors
492
+ * [patch_lms_instructor](docs/sdks/instructor/README.md#patch_lms_instructor) - Update an instructor
493
+ * [remove_lms_instructor](docs/sdks/instructor/README.md#remove_lms_instructor) - Remove an instructor
494
+ * [update_lms_instructor](docs/sdks/instructor/README.md#update_lms_instructor) - Update an instructor
495
+
450
496
  ### [integration](docs/sdks/integration/README.md)
451
497
 
452
498
  * [get_unified_integration_auth](docs/sdks/integration/README.md#get_unified_integration_auth) - Create connection indirectly
@@ -553,6 +599,33 @@ if res.accounting_account is not None:
553
599
  * [remove_martech_list](docs/sdks/list/README.md#remove_martech_list) - Remove a list
554
600
  * [update_martech_list](docs/sdks/list/README.md#update_martech_list) - Update a list
555
601
 
602
+ ### [lms](docs/sdks/lms/README.md)
603
+
604
+ * [create_lms_class](docs/sdks/lms/README.md#create_lms_class) - Create a class
605
+ * [create_lms_course](docs/sdks/lms/README.md#create_lms_course) - Create a course
606
+ * [create_lms_instructor](docs/sdks/lms/README.md#create_lms_instructor) - Create an instructor
607
+ * [create_lms_student](docs/sdks/lms/README.md#create_lms_student) - Create a student
608
+ * [get_lms_class](docs/sdks/lms/README.md#get_lms_class) - Retrieve a class
609
+ * [get_lms_course](docs/sdks/lms/README.md#get_lms_course) - Retrieve a course
610
+ * [get_lms_instructor](docs/sdks/lms/README.md#get_lms_instructor) - Retrieve an instructor
611
+ * [get_lms_student](docs/sdks/lms/README.md#get_lms_student) - Retrieve a student
612
+ * [list_lms_classes](docs/sdks/lms/README.md#list_lms_classes) - List all classes
613
+ * [list_lms_courses](docs/sdks/lms/README.md#list_lms_courses) - List all courses
614
+ * [list_lms_instructors](docs/sdks/lms/README.md#list_lms_instructors) - List all instructors
615
+ * [list_lms_students](docs/sdks/lms/README.md#list_lms_students) - List all students
616
+ * [patch_lms_class](docs/sdks/lms/README.md#patch_lms_class) - Update a class
617
+ * [patch_lms_course](docs/sdks/lms/README.md#patch_lms_course) - Update a course
618
+ * [patch_lms_instructor](docs/sdks/lms/README.md#patch_lms_instructor) - Update an instructor
619
+ * [patch_lms_student](docs/sdks/lms/README.md#patch_lms_student) - Update a student
620
+ * [remove_lms_class](docs/sdks/lms/README.md#remove_lms_class) - Remove a class
621
+ * [remove_lms_course](docs/sdks/lms/README.md#remove_lms_course) - Remove a course
622
+ * [remove_lms_instructor](docs/sdks/lms/README.md#remove_lms_instructor) - Remove an instructor
623
+ * [remove_lms_student](docs/sdks/lms/README.md#remove_lms_student) - Remove a student
624
+ * [update_lms_class](docs/sdks/lms/README.md#update_lms_class) - Update a class
625
+ * [update_lms_course](docs/sdks/lms/README.md#update_lms_course) - Update a course
626
+ * [update_lms_instructor](docs/sdks/lms/README.md#update_lms_instructor) - Update an instructor
627
+ * [update_lms_student](docs/sdks/lms/README.md#update_lms_student) - Update a student
628
+
556
629
  ### [location](docs/sdks/location/README.md)
557
630
 
558
631
  * [create_commerce_location](docs/sdks/location/README.md#create_commerce_location) - Create a location
@@ -640,8 +713,14 @@ if res.accounting_account is not None:
640
713
 
641
714
  ### [organization](docs/sdks/organization/README.md)
642
715
 
716
+ * [create_repo_organization](docs/sdks/organization/README.md#create_repo_organization) - Create an organization
643
717
  * [get_accounting_organization](docs/sdks/organization/README.md#get_accounting_organization) - Retrieve an organization
718
+ * [get_repo_organization](docs/sdks/organization/README.md#get_repo_organization) - Retrieve an organization
644
719
  * [list_accounting_organizations](docs/sdks/organization/README.md#list_accounting_organizations) - List all organizations
720
+ * [list_repo_organizations](docs/sdks/organization/README.md#list_repo_organizations) - List all organizations
721
+ * [patch_repo_organization](docs/sdks/organization/README.md#patch_repo_organization) - Update an organization
722
+ * [remove_repo_organization](docs/sdks/organization/README.md#remove_repo_organization) - Remove an organization
723
+ * [update_repo_organization](docs/sdks/organization/README.md#update_repo_organization) - Update an organization
645
724
 
646
725
  ### [page](docs/sdks/page/README.md)
647
726
 
@@ -718,15 +797,67 @@ if res.accounting_account is not None:
718
797
 
719
798
  * [create_genai_prompt](docs/sdks/prompt/README.md#create_genai_prompt) - Create a prompt
720
799
 
800
+ ### [pullrequest](docs/sdks/pullrequest/README.md)
801
+
802
+ * [create_repo_pullrequest](docs/sdks/pullrequest/README.md#create_repo_pullrequest) - Create a pullrequest
803
+ * [get_repo_pullrequest](docs/sdks/pullrequest/README.md#get_repo_pullrequest) - Retrieve a pullrequest
804
+ * [list_repo_pullrequests](docs/sdks/pullrequest/README.md#list_repo_pullrequests) - List all pullrequests
805
+ * [patch_repo_pullrequest](docs/sdks/pullrequest/README.md#patch_repo_pullrequest) - Update a pullrequest
806
+ * [remove_repo_pullrequest](docs/sdks/pullrequest/README.md#remove_repo_pullrequest) - Remove a pullrequest
807
+ * [update_repo_pullrequest](docs/sdks/pullrequest/README.md#update_repo_pullrequest) - Update a pullrequest
808
+
721
809
  ### [refund](docs/sdks/refund/README.md)
722
810
 
723
811
  * [get_payment_refund](docs/sdks/refund/README.md#get_payment_refund) - Retrieve a refund
724
812
  * [list_payment_refunds](docs/sdks/refund/README.md#list_payment_refunds) - List all refunds
725
813
 
814
+ ### [repo](docs/sdks/repo/README.md)
815
+
816
+ * [create_repo_branch](docs/sdks/repo/README.md#create_repo_branch) - Create a branch
817
+ * [create_repo_commit](docs/sdks/repo/README.md#create_repo_commit) - Create a commit
818
+ * [create_repo_organization](docs/sdks/repo/README.md#create_repo_organization) - Create an organization
819
+ * [create_repo_pullrequest](docs/sdks/repo/README.md#create_repo_pullrequest) - Create a pullrequest
820
+ * [create_repo_repository](docs/sdks/repo/README.md#create_repo_repository) - Create a repository
821
+ * [get_repo_branch](docs/sdks/repo/README.md#get_repo_branch) - Retrieve a branch
822
+ * [get_repo_commit](docs/sdks/repo/README.md#get_repo_commit) - Retrieve a commit
823
+ * [get_repo_organization](docs/sdks/repo/README.md#get_repo_organization) - Retrieve an organization
824
+ * [get_repo_pullrequest](docs/sdks/repo/README.md#get_repo_pullrequest) - Retrieve a pullrequest
825
+ * [get_repo_repository](docs/sdks/repo/README.md#get_repo_repository) - Retrieve a repository
826
+ * [list_repo_branches](docs/sdks/repo/README.md#list_repo_branches) - List all branches
827
+ * [list_repo_commits](docs/sdks/repo/README.md#list_repo_commits) - List all commits
828
+ * [list_repo_organizations](docs/sdks/repo/README.md#list_repo_organizations) - List all organizations
829
+ * [list_repo_pullrequests](docs/sdks/repo/README.md#list_repo_pullrequests) - List all pullrequests
830
+ * [list_repo_repositories](docs/sdks/repo/README.md#list_repo_repositories) - List all repositories
831
+ * [patch_repo_branch](docs/sdks/repo/README.md#patch_repo_branch) - Update a branch
832
+ * [patch_repo_commit](docs/sdks/repo/README.md#patch_repo_commit) - Update a commit
833
+ * [patch_repo_organization](docs/sdks/repo/README.md#patch_repo_organization) - Update an organization
834
+ * [patch_repo_pullrequest](docs/sdks/repo/README.md#patch_repo_pullrequest) - Update a pullrequest
835
+ * [patch_repo_repository](docs/sdks/repo/README.md#patch_repo_repository) - Update a repository
836
+ * [remove_repo_branch](docs/sdks/repo/README.md#remove_repo_branch) - Remove a branch
837
+ * [remove_repo_commit](docs/sdks/repo/README.md#remove_repo_commit) - Remove a commit
838
+ * [remove_repo_organization](docs/sdks/repo/README.md#remove_repo_organization) - Remove an organization
839
+ * [remove_repo_pullrequest](docs/sdks/repo/README.md#remove_repo_pullrequest) - Remove a pullrequest
840
+ * [remove_repo_repository](docs/sdks/repo/README.md#remove_repo_repository) - Remove a repository
841
+ * [update_repo_branch](docs/sdks/repo/README.md#update_repo_branch) - Update a branch
842
+ * [update_repo_commit](docs/sdks/repo/README.md#update_repo_commit) - Update a commit
843
+ * [update_repo_organization](docs/sdks/repo/README.md#update_repo_organization) - Update an organization
844
+ * [update_repo_pullrequest](docs/sdks/repo/README.md#update_repo_pullrequest) - Update a pullrequest
845
+ * [update_repo_repository](docs/sdks/repo/README.md#update_repo_repository) - Update a repository
846
+
847
+ ### [repository](docs/sdks/repository/README.md)
848
+
849
+ * [create_repo_repository](docs/sdks/repository/README.md#create_repo_repository) - Create a repository
850
+ * [get_repo_repository](docs/sdks/repository/README.md#get_repo_repository) - Retrieve a repository
851
+ * [list_repo_repositories](docs/sdks/repository/README.md#list_repo_repositories) - List all repositories
852
+ * [patch_repo_repository](docs/sdks/repository/README.md#patch_repo_repository) - Update a repository
853
+ * [remove_repo_repository](docs/sdks/repository/README.md#remove_repo_repository) - Remove a repository
854
+ * [update_repo_repository](docs/sdks/repository/README.md#update_repo_repository) - Update a repository
855
+
726
856
  ### [scim](docs/sdks/scim/README.md)
727
857
 
728
858
  * [create_scim_groups](docs/sdks/scim/README.md#create_scim_groups) - Create group
729
859
  * [create_scim_users](docs/sdks/scim/README.md#create_scim_users) - Create user
860
+ * [get_scim_groups](docs/sdks/scim/README.md#get_scim_groups) - Get group
730
861
  * [get_scim_users](docs/sdks/scim/README.md#get_scim_users) - Get user
731
862
  * [list_scim_groups](docs/sdks/scim/README.md#list_scim_groups) - List groups
732
863
  * [list_scim_users](docs/sdks/scim/README.md#list_scim_users) - List users
@@ -764,6 +895,15 @@ if res.accounting_account is not None:
764
895
  * [remove_storage_file](docs/sdks/storage/README.md#remove_storage_file) - Remove a file
765
896
  * [update_storage_file](docs/sdks/storage/README.md#update_storage_file) - Update a file
766
897
 
898
+ ### [student](docs/sdks/student/README.md)
899
+
900
+ * [create_lms_student](docs/sdks/student/README.md#create_lms_student) - Create a student
901
+ * [get_lms_student](docs/sdks/student/README.md#get_lms_student) - Retrieve a student
902
+ * [list_lms_students](docs/sdks/student/README.md#list_lms_students) - List all students
903
+ * [patch_lms_student](docs/sdks/student/README.md#patch_lms_student) - Update a student
904
+ * [remove_lms_student](docs/sdks/student/README.md#remove_lms_student) - Remove a student
905
+ * [update_lms_student](docs/sdks/student/README.md#update_lms_student) - Update a student
906
+
767
907
  ### [task](docs/sdks/task/README.md)
768
908
 
769
909
  * [create_task_project](docs/sdks/task/README.md#create_task_project) - Create a project
@@ -911,9 +1051,9 @@ By default, an API error will raise a errors.SDKError exception, which has the f
911
1051
 
912
1052
  When custom error responses are specified for an operation, the SDK may also raise their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `create_accounting_account` method may raise the following exceptions:
913
1053
 
914
- | Error Type | Status Code | Content Type |
915
- | --------------- | --------------- | --------------- |
916
- | errors.SDKError | 4XX, 5XX | \*/\* |
1054
+ | Error Type | Status Code | Content Type |
1055
+ | --------------- | ----------- | ------------ |
1056
+ | errors.SDKError | 4XX, 5XX | \*/\* |
917
1057
 
918
1058
  ### Example
919
1059
 
@@ -949,10 +1089,10 @@ if res.accounting_account is not None:
949
1089
 
950
1090
  You can override the default server globally by passing a server index to the `server_idx: int` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
951
1091
 
952
- | # | Server | Variables |
953
- | - | ------ | --------- |
954
- | 0 | `https://api.unified.to` | None |
955
- | 1 | `https://api-eu.unified.to` | None |
1092
+ | # | Server |
1093
+ | --- | --------------------------- |
1094
+ | 0 | `https://api.unified.to` |
1095
+ | 1 | `https://api-eu.unified.to` |
956
1096
 
957
1097
  #### Example
958
1098
 
@@ -975,7 +1115,6 @@ if res.accounting_account is not None:
975
1115
 
976
1116
  ```
977
1117
 
978
-
979
1118
  ### Override Server URL Per-Client
980
1119
 
981
1120
  The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
@@ -1026,9 +1165,9 @@ s = unified_to.UnifiedTo(client=http_client)
1026
1165
 
1027
1166
  This SDK supports the following security scheme globally:
1028
1167
 
1029
- | Name | Type | Scheme |
1030
- | ------- | ------- | ------- |
1031
- | `jwt` | apiKey | API key |
1168
+ | Name | Type | Scheme |
1169
+ | ----- | ------ | ------- |
1170
+ | `jwt` | apiKey | API key |
1032
1171
 
1033
1172
  You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
1034
1173
  ```python
@@ -19,7 +19,7 @@ except FileNotFoundError:
19
19
 
20
20
  setuptools.setup(
21
21
  name='Unified-python-sdk',
22
- version='0.24.7',
22
+ version='0.24.9',
23
23
  author='Unified API Inc',
24
24
  description='Python Client SDK for Unified.to',
25
25
  url='https://github.com/unified-to/unified-python-sdk.git',