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.
- {Unified-python-sdk-0.24.7/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.24.9}/PKG-INFO +151 -12
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/README.md +150 -11
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/setup.py +1 -1
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9/src/Unified_python_sdk.egg-info}/PKG-INFO +151 -12
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/Unified_python_sdk.egg-info/SOURCES.txt +102 -15
- Unified-python-sdk-0.24.9/src/unified_to/branch.py +353 -0
- Unified-python-sdk-0.24.9/src/unified_to/class_.py +353 -0
- Unified-python-sdk-0.24.9/src/unified_to/commit.py +353 -0
- Unified-python-sdk-0.24.9/src/unified_to/course.py +353 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/group.py +66 -11
- Unified-python-sdk-0.24.9/src/unified_to/instructor.py +353 -0
- Unified-python-sdk-0.24.9/src/unified_to/lms.py +1361 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/__init__.py +371 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createlmsclass.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createlmscourse.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createlmsinstructor.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createlmsstudent.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createrepobranch.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createrepocommit.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createrepoorganization.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createrepopullrequest.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/createreporepository.py +32 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createscimgroups.py +3 -3
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createscimusers.py +3 -3
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getlmsclass.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getlmscourse.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getlmsinstructor.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getlmsstudent.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getrepobranch.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getrepocommit.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getrepoorganization.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getrepopullrequest.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getreporepository.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/getscimgroups.py +31 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getscimusers.py +2 -2
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedintegrationauth.py +18 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listlmsclasses.py +42 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listlmscourses.py +43 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listlmsinstructors.py +45 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listlmsstudents.py +44 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listrepobranches.py +41 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listrepocommits.py +42 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listrepoorganizations.py +40 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listrepopullrequests.py +41 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/listreporepositories.py +41 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listscimgroups.py +2 -2
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listscimusers.py +2 -2
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedconnections.py +2 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedintegrations.py +2 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedintegrationworkspaces.py +2 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchlmsclass.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchlmscourse.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchlmsinstructor.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchlmsstudent.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchrepobranch.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchrepocommit.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchrepoorganization.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchrepopullrequest.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/patchreporepository.py +34 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchscimgroups.py +3 -3
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchscimusers.py +3 -3
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removelmsclass.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removelmscourse.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removelmsinstructor.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removelmsstudent.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removerepobranch.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removerepocommit.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removerepoorganization.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removerepopullrequest.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/removereporepository.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatelmsclass.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatelmscourse.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatelmsinstructor.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatelmsstudent.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updaterepobranch.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updaterepocommit.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updaterepoorganization.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updaterepopullrequest.py +34 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/operations/updatereporepository.py +34 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatescimgroups.py +3 -3
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatescimusers.py +3 -3
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/__init__.py +38 -16
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/connection.py +0 -2
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/integrationsupport.py +28 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsclass.py +28 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmscourse.py +32 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsemail.py +9 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsinstructor.py +27 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsmedia.py +29 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmsstudent.py +28 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/lmstelephone.py +25 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/messagingmessage.py +1 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_connection_categories.py +2 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_connection_permissions.py +18 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_integration_categories.py +2 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +20 -0
- 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
- 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
- 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
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/property_lmsstudent_address.py +22 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/repobranch.py +22 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/repocommit.py +24 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/repoorganization.py +22 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/repopullrequest.py +33 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/reporepository.py +26 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimaddress.py +28 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimemail.py +25 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimentitlement.py +18 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimgroup.py +26 -0
- 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
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimims.py +30 -0
- 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
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimphonenumber.py +28 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimphoto.py +24 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimrole.py +18 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimuser.py +58 -0
- Unified-python-sdk-0.24.9/src/unified_to/models/shared/scimusergroups.py +24 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/storagefile.py +1 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/webhook.py +9 -0
- Unified-python-sdk-0.24.9/src/unified_to/organization.py +465 -0
- Unified-python-sdk-0.24.9/src/unified_to/pullrequest.py +353 -0
- Unified-python-sdk-0.24.9/src/unified_to/repo.py +1697 -0
- Unified-python-sdk-0.24.9/src/unified_to/repository.py +353 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/scim.py +79 -24
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/sdk.py +30 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/sdkconfiguration.py +3 -3
- Unified-python-sdk-0.24.9/src/unified_to/student.py +353 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/user.py +13 -13
- Unified-python-sdk-0.24.7/src/unified_to/models/operations/__init__.py +0 -316
- Unified-python-sdk-0.24.7/src/unified_to/models/shared/group.py +0 -24
- Unified-python-sdk-0.24.7/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +0 -20
- Unified-python-sdk-0.24.7/src/unified_to/models/shared/user.py +0 -49
- Unified-python-sdk-0.24.7/src/unified_to/organization.py +0 -129
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/LICENSE.md +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/setup.cfg +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/Unified_python_sdk.egg-info/dependency_links.txt +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/Unified_python_sdk.egg-info/requires.txt +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/Unified_python_sdk.egg-info/top_level.txt +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/__init__.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/_hooks/__init__.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/_hooks/sdkhooks.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/_hooks/types.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/account.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/accounting.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/activity.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/apicall.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/application.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/applicationstatus.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/ats.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/auth.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/call.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/candidate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/channel.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/collection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/commerce.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/company.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/connection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/contact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/crm.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/customer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/deal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/document.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/employee.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/enrich.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/event.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/file.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/genai.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/hris.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/integration.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/interview.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/inventory.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/invoice.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/issue.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/item.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/job.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/journal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/kms.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/lead.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/link.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/list.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/location.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/login.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/martech.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/member.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/message.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/messaging.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/model.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/__init__.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/errors/__init__.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/errors/sdkerror.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingaccount.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingjournal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingorder.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsactivity.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsapplication.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatscandidate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsdocument.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsinterview.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsjob.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createatsscorecard.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcommercecollection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcommerceinventory.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcommerceitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcommercelocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmcompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmdeal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmevent.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmlead.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createcrmpipeline.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/creategenaiprompt.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createhriscompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createhrisemployee.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createhrisgroup.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createhrislocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createkmspage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createkmsspace.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createmartechlist.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createmartechmember.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createmessagingmessage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createpassthrough_json.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createpassthrough_raw.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createpaymentlink.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createpaymentpayment.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createstoragefile.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createtaskproject.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createtasktask.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createticketingcustomer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createticketingnote.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createticketingticket.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createuccontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createunifiedconnection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/createunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingaccount.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingjournal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingorder.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingorganization.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsactivity.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsapplication.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatscandidate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatscompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsdocument.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsinterview.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsjob.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getatsscorecard.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcommercecollection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcommerceinventory.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcommerceitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcommercelocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmcompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmdeal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmevent.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmlead.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getcrmpipeline.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethriscompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethrisemployee.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethrisgroup.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethrislocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethrispayslip.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gethristimeoff.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getkmspage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getkmsspace.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getmartechlist.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getmartechmember.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getmessagingchannel.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getmessagingmessage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getpaymentlink.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getpaymentpayment.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getpaymentpayout.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getpaymentrefund.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getstoragefile.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gettaskproject.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/gettasktask.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getticketingcustomer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getticketingnote.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getticketingticket.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getuccontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedapicall.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedconnection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedintegrationlogin.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/getunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingaccounts.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingcontacts.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountinginvoices.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingjournals.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingorders.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingorganizations.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingtaxrates.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listaccountingtransactions.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsactivities.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsapplications.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsapplicationstatuses.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatscandidates.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatscompanies.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsdocuments.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsinterviews.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsjobs.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listatsscorecards.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcommercecollections.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcommerceinventories.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcommerceitems.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcommercelocations.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmcompanies.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmcontacts.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmdeals.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmevents.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmleads.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listcrmpipelines.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listenrichcompanies.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listenrichpeople.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listgenaimodels.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhriscompanies.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhrisemployees.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhrisgroups.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhrislocations.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhrispayslips.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listhristimeoffs.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listkmspages.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listkmsspaces.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listmartechlists.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listmartechmembers.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listmessagingchannels.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listmessagingmessages.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpassthroughs.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpaymentlinks.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpaymentpayments.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpaymentpayouts.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listpaymentrefunds.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/liststoragefiles.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listtaskprojects.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listtasktasks.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listticketingcustomers.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listticketingnotes.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listticketingtickets.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listuccalls.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listuccontacts.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedapicalls.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedissues.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/listunifiedwebhooks.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingaccount.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingjournal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingorder.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsactivity.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsapplication.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatscandidate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsdocument.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsinterview.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsjob.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchatsscorecard.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcommercecollection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcommerceinventory.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcommerceitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcommercelocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmcompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmdeal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmevent.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmlead.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchcrmpipeline.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchhriscompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchhrisemployee.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchhrisgroup.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchhrislocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchkmspage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchkmsspace.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchmartechlist.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchmartechmember.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchmessagingmessage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchpassthrough_json.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchpassthrough_raw.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchpaymentlink.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchpaymentpayment.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchstoragefile.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchtaskproject.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchtasktask.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchticketingcustomer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchticketingnote.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchticketingticket.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchuccontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchunifiedconnection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/patchunifiedwebhooktrigger.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingaccount.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingjournal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingorder.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsactivity.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsapplication.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatscandidate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsdocument.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsinterview.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsjob.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeatsscorecard.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecommercecollection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecommerceinventory.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecommerceitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecommercelocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmcompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmdeal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmevent.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmlead.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removecrmpipeline.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removehriscompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removehrisemployee.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removehrisgroup.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removehrislocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removekmspage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removekmsspace.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removemartechlist.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removemartechmember.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removemessagingmessage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removepassthrough.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removepaymentlink.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removepaymentpayment.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removescimgroups.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removescimusers.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removestoragefile.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removetaskproject.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removetasktask.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeticketingcustomer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeticketingnote.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeticketingticket.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeuccontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeunifiedconnection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/removeunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingaccount.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingjournal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingorder.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsactivity.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsapplication.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatscandidate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsdocument.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsinterview.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsjob.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateatsscorecard.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecommercecollection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecommerceinventory.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecommerceitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecommercelocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmcompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmdeal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmevent.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmlead.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatecrmpipeline.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatehriscompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatehrisemployee.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatehrisgroup.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatehrislocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatekmspage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatekmsspace.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatemartechlist.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatemartechmember.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatemessagingmessage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatepassthrough_json.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatepassthrough_raw.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatepaymentlink.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatepaymentpayment.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatestoragefile.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatetaskproject.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updatetasktask.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateticketingcustomer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateticketingnote.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateticketingticket.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateuccontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateunifiedconnection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/operations/updateunifiedwebhooktrigger.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingaccount.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingcontactpaymentmethod.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingemail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountinginvoice.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingjournal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingjournallineitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountinglineitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingorder.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingorganization.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtaxrate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtelephone.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtransaction.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtransactioncontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/accountingtransactionlineitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/apicall.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsactivity.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsaddress.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsapplication.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsapplicationanswer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atscandidate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atscompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atscompensation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsdocument.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsemail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsinterview.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsjob.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsjobquestion.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsoffer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsscorecard.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsscorecardquestion.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atsstatus.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/atstelephone.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commercecollection.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceinventory.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitemmedia.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitemoption.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitemprice.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commerceitemvariant.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commercelocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/commercemetadata.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmcompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmcontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmdeal.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmemail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmevent.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmlead.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmpipeline.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmstage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/crmtelephone.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichcompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichemail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichperson.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichpersonworkhistory.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/enrichtelephone.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/genaicontent.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/genaimodel.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/genaiprompt.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hriscompany.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hriscompensation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrisemail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrisemployee.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrisgroup.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrislocation.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrispayslip.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hrispayslipdetail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hristelephone.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/hristimeoff.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/integration.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/issue.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/kmspage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/kmsspace.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/marketingemail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/marketinglist.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/marketingmember.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/messagingattachment.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/messagingchannel.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/messagingmember.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentlink.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentlinklineitem.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentpayment.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentpayout.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/paymentrefund.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingcontact_billing_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingcontact_shipping_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingorder_billing_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingorder_shipping_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_accountingorganization_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_atsactivity_from.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_atscandidate_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_atscompany_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_commercelocation_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_connection_auth.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmcompany_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmcontact_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_call.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_email.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_meeting.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_note.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmevent_task.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_crmlead_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_enrichcompany_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_enrichperson_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_hriscompany_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_hrisemployee_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_hrisemployee_employee_roles.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_hrislocation_address.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_messagingmessage_author_member.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_storagepermission_roles.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/property_uccall_telephone.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/security.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/storagepermission.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/taskproject.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/tasktask.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingcustomer.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingemail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingnote.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingtelephone.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ticketingticket.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/uccall.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/uccontact.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/ucemail.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/models/shared/uctelephone.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/note.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/order.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/page.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/passthrough.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/payment.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/payout.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/payslip.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/person.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/pipeline.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/project.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/prompt.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/refund.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/scorecard.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/space.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/storage.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/task.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/taxrate.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/ticket.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/ticketing.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/timeoff.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/transaction.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/uc.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/unified.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/utils/__init__.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/utils/retries.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/utils/utils.py +0 -0
- {Unified-python-sdk-0.24.7 → Unified-python-sdk-0.24.9}/src/unified_to/webhook.py +0 -0
{Unified-python-sdk-0.24.7/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.24.9}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Unified-python-sdk
|
|
3
|
-
Version: 0.24.
|
|
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
|
|
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
|
-
| #
|
|
960
|
-
|
|
|
961
|
-
| 0
|
|
962
|
-
| 1
|
|
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
|
|
1037
|
-
|
|
|
1038
|
-
| `jwt`
|
|
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
|
|
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
|
-
| #
|
|
953
|
-
|
|
|
954
|
-
| 0
|
|
955
|
-
| 1
|
|
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
|
|
1030
|
-
|
|
|
1031
|
-
| `jwt`
|
|
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.
|
|
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',
|