Unified-python-sdk 0.22.4__tar.gz → 0.22.6__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.22.4/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.22.6}/PKG-INFO +59 -1
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/README.md +58 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/setup.py +1 -1
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6/src/Unified_python_sdk.egg-info}/PKG-INFO +59 -1
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/Unified_python_sdk.egg-info/SOURCES.txt +32 -0
- Unified-python-sdk-0.22.6/src/unified_to/channel.py +129 -0
- Unified-python-sdk-0.22.6/src/unified_to/kms.py +699 -0
- Unified-python-sdk-0.22.6/src/unified_to/message.py +358 -0
- Unified-python-sdk-0.22.6/src/unified_to/messaging.py +470 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/__init__.py +265 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createaccountingaccount.py +1 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/createkmspage.py +30 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/createkmsspace.py +30 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/createmessagingmessage.py +30 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/getkmspage.py +33 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/getkmsspace.py +33 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/getmessagingchannel.py +33 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/getmessagingmessage.py +33 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getunifiedintegrationauth.py +9 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/listkmspages.py +42 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/listkmsspaces.py +41 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/listmessagingchannels.py +40 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/listmessagingmessages.py +42 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listunifiedconnections.py +2 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listunifiedintegrations.py +2 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listunifiedintegrationworkspaces.py +2 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchaccountingaccount.py +1 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/patchkmspage.py +32 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/patchkmsspace.py +32 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/patchmessagingmessage.py +32 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/removekmspage.py +30 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/removekmsspace.py +30 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/removemessagingmessage.py +30 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateaccountingaccount.py +1 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/updatekmspage.py +32 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/updatekmsspace.py +32 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/operations/updatemessagingmessage.py +32 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/__init__.py +7 -1
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingaccount.py +1 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingcontactpaymentmethod.py +1 -2
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingorganization.py +1 -1
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/integrationsupport.py +2 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/shared/kmspage.py +34 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/shared/kmsspace.py +25 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/shared/messagingchannel.py +29 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/shared/messagingmember.py +17 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/shared/messagingmessage.py +29 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_connection_categories.py +2 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_connection_permissions.py +9 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_integration_categories.py +2 -0
- Unified-python-sdk-0.22.6/src/unified_to/models/shared/property_messagingmessage_author_member.py +17 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/webhook.py +4 -0
- Unified-python-sdk-0.22.6/src/unified_to/page.py +358 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/sdk.py +18 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/sdkconfiguration.py +2 -2
- Unified-python-sdk-0.22.6/src/unified_to/space.py +358 -0
- Unified-python-sdk-0.22.4/src/unified_to/models/operations/__init__.py +0 -245
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/LICENSE.md +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/setup.cfg +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/Unified_python_sdk.egg-info/dependency_links.txt +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/Unified_python_sdk.egg-info/requires.txt +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/Unified_python_sdk.egg-info/top_level.txt +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/__init__.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/_hooks/__init__.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/_hooks/sdkhooks.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/_hooks/types.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/account.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/accounting.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/activity.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/apicall.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/application.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/applicationstatus.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/ats.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/auth.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/call.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/candidate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/collection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/commerce.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/company.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/connection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/contact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/crm.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/customer.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/deal.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/document.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/employee.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/enrich.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/event.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/file.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/genai.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/group.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/hris.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/integration.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/interview.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/inventory.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/invoice.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/issue.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/item.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/job.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/lead.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/link.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/list.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/location.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/login.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/martech.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/member.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/model.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/__init__.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/errors/__init__.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/errors/sdkerror.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createaccountingcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createatsactivity.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createatsapplication.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createatscandidate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createatsdocument.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createatsinterview.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createatsjob.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createatsscorecard.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcommercecollection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcommerceinventory.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcommerceitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcommercelocation.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcrmcompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcrmcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcrmdeal.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcrmevent.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcrmlead.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createcrmpipeline.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/creategenaiprompt.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createhrisemployee.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createhrisgroup.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createmartechlist.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createmartechmember.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createpassthrough.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createpaymentlink.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createpaymentpayment.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createstoragefile.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createticketingcustomer.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createticketingnote.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createticketingticket.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createuccontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createunifiedconnection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/createunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getaccountingaccount.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getaccountingcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getaccountingorganization.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getatsactivity.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getatsapplication.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getatscandidate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getatscompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getatsdocument.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getatsinterview.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getatsjob.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getatsscorecard.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcommercecollection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcommerceinventory.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcommerceitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcommercelocation.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcrmcompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcrmcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcrmdeal.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcrmevent.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcrmlead.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getcrmpipeline.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/gethrisemployee.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/gethrisgroup.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/gethrispayslip.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/gethristimeoff.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getmartechlist.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getmartechmember.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getpaymentlink.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getpaymentpayment.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getpaymentpayout.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getpaymentrefund.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getstoragefile.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getticketingcustomer.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getticketingnote.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getticketingticket.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getuccontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getunifiedapicall.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getunifiedconnection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getunifiedintegrationlogin.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/getunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listaccountingaccounts.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listaccountingcontacts.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listaccountinginvoices.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listaccountingorganizations.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listaccountingtaxrates.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listaccountingtransactions.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatsactivities.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatsapplications.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatsapplicationstatuses.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatscandidates.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatscompanies.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatsdocuments.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatsinterviews.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatsjobs.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listatsscorecards.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcommercecollections.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcommerceinventories.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcommerceitems.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcommercelocations.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcrmcompanies.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcrmcontacts.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcrmdeals.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcrmevents.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcrmleads.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listcrmpipelines.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listenrichcompanies.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listenrichpeople.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listgenaimodels.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listhrisemployees.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listhrisgroups.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listhrispayslips.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listhristimeoffs.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listmartechlists.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listmartechmembers.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listpassthroughs.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listpaymentlinks.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listpaymentpayments.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listpaymentpayouts.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listpaymentrefunds.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/liststoragefiles.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listticketingcustomers.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listticketingnotes.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listticketingtickets.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listuccalls.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listuccontacts.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listunifiedapicalls.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listunifiedissues.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listunifiedsupports.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/listunifiedwebhooks.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchaccountingcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchatsactivity.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchatsapplication.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchatscandidate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchatsdocument.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchatsinterview.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchatsjob.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchatsscorecard.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcommercecollection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcommerceinventory.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcommerceitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcommercelocation.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcrmcompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcrmcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcrmdeal.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcrmevent.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcrmlead.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchcrmpipeline.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchhrisemployee.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchhrisgroup.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchmartechlist.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchmartechmember.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchpassthrough.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchpaymentlink.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchpaymentpayment.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchstoragefile.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchticketingcustomer.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchticketingnote.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchticketingticket.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchuccontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchunifiedconnection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/patchunifiedwebhooktrigger.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeaccountingaccount.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeaccountingcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeatsactivity.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeatsapplication.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeatscandidate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeatsdocument.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeatsinterview.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeatsjob.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeatsscorecard.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecommercecollection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecommerceinventory.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecommerceitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecommercelocation.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecrmcompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecrmcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecrmdeal.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecrmevent.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecrmlead.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removecrmpipeline.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removehrisemployee.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removehrisgroup.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removemartechlist.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removemartechmember.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removepassthrough.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removepaymentlink.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removepaymentpayment.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removestoragefile.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeticketingcustomer.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeticketingnote.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeticketingticket.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeuccontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeunifiedconnection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/removeunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateaccountingcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateatsactivity.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateatsapplication.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateatscandidate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateatsdocument.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateatsinterview.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateatsjob.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateatsscorecard.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecommercecollection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecommerceinventory.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecommerceitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecommercelocation.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecrmcompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecrmcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecrmdeal.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecrmevent.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecrmlead.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatecrmpipeline.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatehrisemployee.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatehrisgroup.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatemartechlist.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatemartechmember.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatepassthrough.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatepaymentlink.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatepaymentpayment.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updatestoragefile.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateticketingcustomer.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateticketingnote.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateticketingticket.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateuccontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateunifiedconnection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/operations/updateunifiedwebhooktrigger.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingemail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountinginvoice.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountinglineitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingtaxrate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingtelephone.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingtransaction.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/accountingtransactionlineitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/apicall.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsactivity.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsaddress.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsapplication.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsapplicationanswer.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atscandidate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atscompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atscompensation.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsdocument.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsemail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsinterview.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsjob.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsjobquestion.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsscorecard.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsscorecardquestion.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atsstatus.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/atstelephone.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/commercecollection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/commerceinventory.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/commerceitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/commerceitemmedia.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/commerceitemoption.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/commerceitemprice.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/commerceitemvariant.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/commercelocation.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/connection.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/crmcompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/crmcontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/crmdeal.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/crmemail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/crmevent.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/crmlead.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/crmpipeline.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/crmtelephone.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/enrichcompany.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/enrichemail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/enrichperson.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/enrichpersonworkhistory.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/enrichtelephone.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/genaicontent.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/genaimodel.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/genaiprompt.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/hrisemail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/hrisemployee.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/hrisgroup.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/hrispayslip.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/hrispayslipdetail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/hristelephone.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/hristimeoff.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/integration.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/issue.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/marketingemail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/marketinglist.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/marketingmember.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/paymentlink.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/paymentlinklineitem.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/paymentpayment.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/paymentpayout.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/paymentrefund.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_accountingcontact_billing_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_accountingcontact_shipping_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_accountingorganization_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_atscandidate_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_atscompany_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_commercelocation_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_connection_auth.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_crmcompany_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_crmcontact_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_crmevent_call.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_crmevent_email.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_crmevent_meeting.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_crmevent_note.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_crmevent_task.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_crmlead_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_enrichcompany_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_enrichperson_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_hrisemployee_address.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_created.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_deleted.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_updated.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_storagepermission_roles.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/property_uccall_telephone.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/security.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/storagefile.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/storagepermission.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/ticketingcustomer.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/ticketingemail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/ticketingnote.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/ticketingtelephone.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/ticketingticket.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/uccall.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/uccontact.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/ucemail.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/uctelephone.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/models/shared/undefined.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/note.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/organization.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/passthrough.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/payment.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/payout.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/payslip.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/person.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/pipeline.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/prompt.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/refund.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/scorecard.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/storage.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/taxrate.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/ticket.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/ticketing.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/timeoff.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/transaction.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/uc.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/unified.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/utils/__init__.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/utils/retries.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/utils/utils.py +0 -0
- {Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/unified_to/webhook.py +0 -0
{Unified-python-sdk-0.22.4/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.22.6}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Unified-python-sdk
|
|
3
|
-
Version: 0.22.
|
|
3
|
+
Version: 0.22.6
|
|
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
|
|
@@ -479,6 +479,39 @@ Description: <div align="left">
|
|
|
479
479
|
* [get_hris_timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#get_hris_timeoff) - Retrieve a timeoff
|
|
480
480
|
* [list_hris_timeoffs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#list_hris_timeoffs) - List all timeoffs
|
|
481
481
|
|
|
482
|
+
### [kms](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md)
|
|
483
|
+
|
|
484
|
+
* [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_page) - Create a page
|
|
485
|
+
* [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_space) - Create a space
|
|
486
|
+
* [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_page) - Retrieve a page
|
|
487
|
+
* [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_space) - Retrieve a space
|
|
488
|
+
* [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_pages) - List all pages
|
|
489
|
+
* [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_spaces) - List all spaces
|
|
490
|
+
* [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_page) - Update a page
|
|
491
|
+
* [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_space) - Update a space
|
|
492
|
+
* [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_page) - Remove a page
|
|
493
|
+
* [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_space) - Remove a space
|
|
494
|
+
* [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_page) - Update a page
|
|
495
|
+
* [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_space) - Update a space
|
|
496
|
+
|
|
497
|
+
### [page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md)
|
|
498
|
+
|
|
499
|
+
* [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#create_kms_page) - Create a page
|
|
500
|
+
* [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#get_kms_page) - Retrieve a page
|
|
501
|
+
* [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#list_kms_pages) - List all pages
|
|
502
|
+
* [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#patch_kms_page) - Update a page
|
|
503
|
+
* [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#remove_kms_page) - Remove a page
|
|
504
|
+
* [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#update_kms_page) - Update a page
|
|
505
|
+
|
|
506
|
+
### [space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md)
|
|
507
|
+
|
|
508
|
+
* [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#create_kms_space) - Create a space
|
|
509
|
+
* [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#get_kms_space) - Retrieve a space
|
|
510
|
+
* [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#list_kms_spaces) - List all spaces
|
|
511
|
+
* [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#patch_kms_space) - Update a space
|
|
512
|
+
* [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#remove_kms_space) - Remove a space
|
|
513
|
+
* [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#update_kms_space) - Update a space
|
|
514
|
+
|
|
482
515
|
### [martech](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md)
|
|
483
516
|
|
|
484
517
|
* [create_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#create_martech_list) - Create a list
|
|
@@ -512,6 +545,31 @@ Description: <div align="left">
|
|
|
512
545
|
* [remove_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#remove_martech_member) - Remove a member
|
|
513
546
|
* [update_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#update_martech_member) - Update a member
|
|
514
547
|
|
|
548
|
+
### [messaging](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md)
|
|
549
|
+
|
|
550
|
+
* [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#create_messaging_message) - Create a message
|
|
551
|
+
* [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_channel) - Retrieve a channel
|
|
552
|
+
* [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_message) - Retrieve a message
|
|
553
|
+
* [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_channels) - List all channels
|
|
554
|
+
* [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_messages) - List all messages
|
|
555
|
+
* [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#patch_messaging_message) - Update a message
|
|
556
|
+
* [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#remove_messaging_message) - Remove a message
|
|
557
|
+
* [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#update_messaging_message) - Update a message
|
|
558
|
+
|
|
559
|
+
### [channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md)
|
|
560
|
+
|
|
561
|
+
* [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#get_messaging_channel) - Retrieve a channel
|
|
562
|
+
* [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#list_messaging_channels) - List all channels
|
|
563
|
+
|
|
564
|
+
### [message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md)
|
|
565
|
+
|
|
566
|
+
* [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#create_messaging_message) - Create a message
|
|
567
|
+
* [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#get_messaging_message) - Retrieve a message
|
|
568
|
+
* [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#list_messaging_messages) - List all messages
|
|
569
|
+
* [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#patch_messaging_message) - Update a message
|
|
570
|
+
* [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#remove_messaging_message) - Remove a message
|
|
571
|
+
* [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#update_messaging_message) - Update a message
|
|
572
|
+
|
|
515
573
|
### [passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md)
|
|
516
574
|
|
|
517
575
|
* [create_passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#create_passthrough) - Passthrough POST
|
|
@@ -472,6 +472,39 @@ if res.accounting_account is not None:
|
|
|
472
472
|
* [get_hris_timeoff](docs/sdks/timeoff/README.md#get_hris_timeoff) - Retrieve a timeoff
|
|
473
473
|
* [list_hris_timeoffs](docs/sdks/timeoff/README.md#list_hris_timeoffs) - List all timeoffs
|
|
474
474
|
|
|
475
|
+
### [kms](docs/sdks/kms/README.md)
|
|
476
|
+
|
|
477
|
+
* [create_kms_page](docs/sdks/kms/README.md#create_kms_page) - Create a page
|
|
478
|
+
* [create_kms_space](docs/sdks/kms/README.md#create_kms_space) - Create a space
|
|
479
|
+
* [get_kms_page](docs/sdks/kms/README.md#get_kms_page) - Retrieve a page
|
|
480
|
+
* [get_kms_space](docs/sdks/kms/README.md#get_kms_space) - Retrieve a space
|
|
481
|
+
* [list_kms_pages](docs/sdks/kms/README.md#list_kms_pages) - List all pages
|
|
482
|
+
* [list_kms_spaces](docs/sdks/kms/README.md#list_kms_spaces) - List all spaces
|
|
483
|
+
* [patch_kms_page](docs/sdks/kms/README.md#patch_kms_page) - Update a page
|
|
484
|
+
* [patch_kms_space](docs/sdks/kms/README.md#patch_kms_space) - Update a space
|
|
485
|
+
* [remove_kms_page](docs/sdks/kms/README.md#remove_kms_page) - Remove a page
|
|
486
|
+
* [remove_kms_space](docs/sdks/kms/README.md#remove_kms_space) - Remove a space
|
|
487
|
+
* [update_kms_page](docs/sdks/kms/README.md#update_kms_page) - Update a page
|
|
488
|
+
* [update_kms_space](docs/sdks/kms/README.md#update_kms_space) - Update a space
|
|
489
|
+
|
|
490
|
+
### [page](docs/sdks/page/README.md)
|
|
491
|
+
|
|
492
|
+
* [create_kms_page](docs/sdks/page/README.md#create_kms_page) - Create a page
|
|
493
|
+
* [get_kms_page](docs/sdks/page/README.md#get_kms_page) - Retrieve a page
|
|
494
|
+
* [list_kms_pages](docs/sdks/page/README.md#list_kms_pages) - List all pages
|
|
495
|
+
* [patch_kms_page](docs/sdks/page/README.md#patch_kms_page) - Update a page
|
|
496
|
+
* [remove_kms_page](docs/sdks/page/README.md#remove_kms_page) - Remove a page
|
|
497
|
+
* [update_kms_page](docs/sdks/page/README.md#update_kms_page) - Update a page
|
|
498
|
+
|
|
499
|
+
### [space](docs/sdks/space/README.md)
|
|
500
|
+
|
|
501
|
+
* [create_kms_space](docs/sdks/space/README.md#create_kms_space) - Create a space
|
|
502
|
+
* [get_kms_space](docs/sdks/space/README.md#get_kms_space) - Retrieve a space
|
|
503
|
+
* [list_kms_spaces](docs/sdks/space/README.md#list_kms_spaces) - List all spaces
|
|
504
|
+
* [patch_kms_space](docs/sdks/space/README.md#patch_kms_space) - Update a space
|
|
505
|
+
* [remove_kms_space](docs/sdks/space/README.md#remove_kms_space) - Remove a space
|
|
506
|
+
* [update_kms_space](docs/sdks/space/README.md#update_kms_space) - Update a space
|
|
507
|
+
|
|
475
508
|
### [martech](docs/sdks/martech/README.md)
|
|
476
509
|
|
|
477
510
|
* [create_martech_list](docs/sdks/martech/README.md#create_martech_list) - Create a list
|
|
@@ -505,6 +538,31 @@ if res.accounting_account is not None:
|
|
|
505
538
|
* [remove_martech_member](docs/sdks/member/README.md#remove_martech_member) - Remove a member
|
|
506
539
|
* [update_martech_member](docs/sdks/member/README.md#update_martech_member) - Update a member
|
|
507
540
|
|
|
541
|
+
### [messaging](docs/sdks/messaging/README.md)
|
|
542
|
+
|
|
543
|
+
* [create_messaging_message](docs/sdks/messaging/README.md#create_messaging_message) - Create a message
|
|
544
|
+
* [get_messaging_channel](docs/sdks/messaging/README.md#get_messaging_channel) - Retrieve a channel
|
|
545
|
+
* [get_messaging_message](docs/sdks/messaging/README.md#get_messaging_message) - Retrieve a message
|
|
546
|
+
* [list_messaging_channels](docs/sdks/messaging/README.md#list_messaging_channels) - List all channels
|
|
547
|
+
* [list_messaging_messages](docs/sdks/messaging/README.md#list_messaging_messages) - List all messages
|
|
548
|
+
* [patch_messaging_message](docs/sdks/messaging/README.md#patch_messaging_message) - Update a message
|
|
549
|
+
* [remove_messaging_message](docs/sdks/messaging/README.md#remove_messaging_message) - Remove a message
|
|
550
|
+
* [update_messaging_message](docs/sdks/messaging/README.md#update_messaging_message) - Update a message
|
|
551
|
+
|
|
552
|
+
### [channel](docs/sdks/channel/README.md)
|
|
553
|
+
|
|
554
|
+
* [get_messaging_channel](docs/sdks/channel/README.md#get_messaging_channel) - Retrieve a channel
|
|
555
|
+
* [list_messaging_channels](docs/sdks/channel/README.md#list_messaging_channels) - List all channels
|
|
556
|
+
|
|
557
|
+
### [message](docs/sdks/message/README.md)
|
|
558
|
+
|
|
559
|
+
* [create_messaging_message](docs/sdks/message/README.md#create_messaging_message) - Create a message
|
|
560
|
+
* [get_messaging_message](docs/sdks/message/README.md#get_messaging_message) - Retrieve a message
|
|
561
|
+
* [list_messaging_messages](docs/sdks/message/README.md#list_messaging_messages) - List all messages
|
|
562
|
+
* [patch_messaging_message](docs/sdks/message/README.md#patch_messaging_message) - Update a message
|
|
563
|
+
* [remove_messaging_message](docs/sdks/message/README.md#remove_messaging_message) - Remove a message
|
|
564
|
+
* [update_messaging_message](docs/sdks/message/README.md#update_messaging_message) - Update a message
|
|
565
|
+
|
|
508
566
|
### [passthrough](docs/sdks/passthrough/README.md)
|
|
509
567
|
|
|
510
568
|
* [create_passthrough](docs/sdks/passthrough/README.md#create_passthrough) - Passthrough POST
|
|
@@ -19,7 +19,7 @@ except FileNotFoundError:
|
|
|
19
19
|
|
|
20
20
|
setuptools.setup(
|
|
21
21
|
name='Unified-python-sdk',
|
|
22
|
-
version='0.22.
|
|
22
|
+
version='0.22.6',
|
|
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',
|
{Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6/src/Unified_python_sdk.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Unified-python-sdk
|
|
3
|
-
Version: 0.22.
|
|
3
|
+
Version: 0.22.6
|
|
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
|
|
@@ -479,6 +479,39 @@ Description: <div align="left">
|
|
|
479
479
|
* [get_hris_timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#get_hris_timeoff) - Retrieve a timeoff
|
|
480
480
|
* [list_hris_timeoffs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#list_hris_timeoffs) - List all timeoffs
|
|
481
481
|
|
|
482
|
+
### [kms](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md)
|
|
483
|
+
|
|
484
|
+
* [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_page) - Create a page
|
|
485
|
+
* [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_space) - Create a space
|
|
486
|
+
* [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_page) - Retrieve a page
|
|
487
|
+
* [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_space) - Retrieve a space
|
|
488
|
+
* [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_pages) - List all pages
|
|
489
|
+
* [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_spaces) - List all spaces
|
|
490
|
+
* [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_page) - Update a page
|
|
491
|
+
* [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_space) - Update a space
|
|
492
|
+
* [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_page) - Remove a page
|
|
493
|
+
* [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_space) - Remove a space
|
|
494
|
+
* [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_page) - Update a page
|
|
495
|
+
* [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_space) - Update a space
|
|
496
|
+
|
|
497
|
+
### [page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md)
|
|
498
|
+
|
|
499
|
+
* [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#create_kms_page) - Create a page
|
|
500
|
+
* [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#get_kms_page) - Retrieve a page
|
|
501
|
+
* [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#list_kms_pages) - List all pages
|
|
502
|
+
* [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#patch_kms_page) - Update a page
|
|
503
|
+
* [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#remove_kms_page) - Remove a page
|
|
504
|
+
* [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#update_kms_page) - Update a page
|
|
505
|
+
|
|
506
|
+
### [space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md)
|
|
507
|
+
|
|
508
|
+
* [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#create_kms_space) - Create a space
|
|
509
|
+
* [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#get_kms_space) - Retrieve a space
|
|
510
|
+
* [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#list_kms_spaces) - List all spaces
|
|
511
|
+
* [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#patch_kms_space) - Update a space
|
|
512
|
+
* [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#remove_kms_space) - Remove a space
|
|
513
|
+
* [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#update_kms_space) - Update a space
|
|
514
|
+
|
|
482
515
|
### [martech](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md)
|
|
483
516
|
|
|
484
517
|
* [create_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#create_martech_list) - Create a list
|
|
@@ -512,6 +545,31 @@ Description: <div align="left">
|
|
|
512
545
|
* [remove_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#remove_martech_member) - Remove a member
|
|
513
546
|
* [update_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#update_martech_member) - Update a member
|
|
514
547
|
|
|
548
|
+
### [messaging](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md)
|
|
549
|
+
|
|
550
|
+
* [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#create_messaging_message) - Create a message
|
|
551
|
+
* [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_channel) - Retrieve a channel
|
|
552
|
+
* [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_message) - Retrieve a message
|
|
553
|
+
* [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_channels) - List all channels
|
|
554
|
+
* [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_messages) - List all messages
|
|
555
|
+
* [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#patch_messaging_message) - Update a message
|
|
556
|
+
* [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#remove_messaging_message) - Remove a message
|
|
557
|
+
* [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#update_messaging_message) - Update a message
|
|
558
|
+
|
|
559
|
+
### [channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md)
|
|
560
|
+
|
|
561
|
+
* [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#get_messaging_channel) - Retrieve a channel
|
|
562
|
+
* [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#list_messaging_channels) - List all channels
|
|
563
|
+
|
|
564
|
+
### [message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md)
|
|
565
|
+
|
|
566
|
+
* [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#create_messaging_message) - Create a message
|
|
567
|
+
* [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#get_messaging_message) - Retrieve a message
|
|
568
|
+
* [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#list_messaging_messages) - List all messages
|
|
569
|
+
* [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#patch_messaging_message) - Update a message
|
|
570
|
+
* [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#remove_messaging_message) - Remove a message
|
|
571
|
+
* [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#update_messaging_message) - Update a message
|
|
572
|
+
|
|
515
573
|
### [passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md)
|
|
516
574
|
|
|
517
575
|
* [create_passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#create_passthrough) - Passthrough POST
|
{Unified-python-sdk-0.22.4 → Unified-python-sdk-0.22.6}/src/Unified_python_sdk.egg-info/SOURCES.txt
RENAMED
|
@@ -17,6 +17,7 @@ src/unified_to/ats.py
|
|
|
17
17
|
src/unified_to/auth.py
|
|
18
18
|
src/unified_to/call.py
|
|
19
19
|
src/unified_to/candidate.py
|
|
20
|
+
src/unified_to/channel.py
|
|
20
21
|
src/unified_to/collection.py
|
|
21
22
|
src/unified_to/commerce.py
|
|
22
23
|
src/unified_to/company.py
|
|
@@ -40,6 +41,7 @@ src/unified_to/invoice.py
|
|
|
40
41
|
src/unified_to/issue.py
|
|
41
42
|
src/unified_to/item.py
|
|
42
43
|
src/unified_to/job.py
|
|
44
|
+
src/unified_to/kms.py
|
|
43
45
|
src/unified_to/lead.py
|
|
44
46
|
src/unified_to/link.py
|
|
45
47
|
src/unified_to/list.py
|
|
@@ -47,9 +49,12 @@ src/unified_to/location.py
|
|
|
47
49
|
src/unified_to/login.py
|
|
48
50
|
src/unified_to/martech.py
|
|
49
51
|
src/unified_to/member.py
|
|
52
|
+
src/unified_to/message.py
|
|
53
|
+
src/unified_to/messaging.py
|
|
50
54
|
src/unified_to/model.py
|
|
51
55
|
src/unified_to/note.py
|
|
52
56
|
src/unified_to/organization.py
|
|
57
|
+
src/unified_to/page.py
|
|
53
58
|
src/unified_to/passthrough.py
|
|
54
59
|
src/unified_to/payment.py
|
|
55
60
|
src/unified_to/payout.py
|
|
@@ -61,6 +66,7 @@ src/unified_to/refund.py
|
|
|
61
66
|
src/unified_to/scorecard.py
|
|
62
67
|
src/unified_to/sdk.py
|
|
63
68
|
src/unified_to/sdkconfiguration.py
|
|
69
|
+
src/unified_to/space.py
|
|
64
70
|
src/unified_to/storage.py
|
|
65
71
|
src/unified_to/taxrate.py
|
|
66
72
|
src/unified_to/ticket.py
|
|
@@ -102,8 +108,11 @@ src/unified_to/models/operations/createcrmpipeline.py
|
|
|
102
108
|
src/unified_to/models/operations/creategenaiprompt.py
|
|
103
109
|
src/unified_to/models/operations/createhrisemployee.py
|
|
104
110
|
src/unified_to/models/operations/createhrisgroup.py
|
|
111
|
+
src/unified_to/models/operations/createkmspage.py
|
|
112
|
+
src/unified_to/models/operations/createkmsspace.py
|
|
105
113
|
src/unified_to/models/operations/createmartechlist.py
|
|
106
114
|
src/unified_to/models/operations/createmartechmember.py
|
|
115
|
+
src/unified_to/models/operations/createmessagingmessage.py
|
|
107
116
|
src/unified_to/models/operations/createpassthrough.py
|
|
108
117
|
src/unified_to/models/operations/createpaymentlink.py
|
|
109
118
|
src/unified_to/models/operations/createpaymentpayment.py
|
|
@@ -142,8 +151,12 @@ src/unified_to/models/operations/gethrisemployee.py
|
|
|
142
151
|
src/unified_to/models/operations/gethrisgroup.py
|
|
143
152
|
src/unified_to/models/operations/gethrispayslip.py
|
|
144
153
|
src/unified_to/models/operations/gethristimeoff.py
|
|
154
|
+
src/unified_to/models/operations/getkmspage.py
|
|
155
|
+
src/unified_to/models/operations/getkmsspace.py
|
|
145
156
|
src/unified_to/models/operations/getmartechlist.py
|
|
146
157
|
src/unified_to/models/operations/getmartechmember.py
|
|
158
|
+
src/unified_to/models/operations/getmessagingchannel.py
|
|
159
|
+
src/unified_to/models/operations/getmessagingmessage.py
|
|
147
160
|
src/unified_to/models/operations/getpaymentlink.py
|
|
148
161
|
src/unified_to/models/operations/getpaymentpayment.py
|
|
149
162
|
src/unified_to/models/operations/getpaymentpayout.py
|
|
@@ -190,8 +203,12 @@ src/unified_to/models/operations/listhrisemployees.py
|
|
|
190
203
|
src/unified_to/models/operations/listhrisgroups.py
|
|
191
204
|
src/unified_to/models/operations/listhrispayslips.py
|
|
192
205
|
src/unified_to/models/operations/listhristimeoffs.py
|
|
206
|
+
src/unified_to/models/operations/listkmspages.py
|
|
207
|
+
src/unified_to/models/operations/listkmsspaces.py
|
|
193
208
|
src/unified_to/models/operations/listmartechlists.py
|
|
194
209
|
src/unified_to/models/operations/listmartechmembers.py
|
|
210
|
+
src/unified_to/models/operations/listmessagingchannels.py
|
|
211
|
+
src/unified_to/models/operations/listmessagingmessages.py
|
|
195
212
|
src/unified_to/models/operations/listpassthroughs.py
|
|
196
213
|
src/unified_to/models/operations/listpaymentlinks.py
|
|
197
214
|
src/unified_to/models/operations/listpaymentpayments.py
|
|
@@ -234,8 +251,11 @@ src/unified_to/models/operations/patchcrmlead.py
|
|
|
234
251
|
src/unified_to/models/operations/patchcrmpipeline.py
|
|
235
252
|
src/unified_to/models/operations/patchhrisemployee.py
|
|
236
253
|
src/unified_to/models/operations/patchhrisgroup.py
|
|
254
|
+
src/unified_to/models/operations/patchkmspage.py
|
|
255
|
+
src/unified_to/models/operations/patchkmsspace.py
|
|
237
256
|
src/unified_to/models/operations/patchmartechlist.py
|
|
238
257
|
src/unified_to/models/operations/patchmartechmember.py
|
|
258
|
+
src/unified_to/models/operations/patchmessagingmessage.py
|
|
239
259
|
src/unified_to/models/operations/patchpassthrough.py
|
|
240
260
|
src/unified_to/models/operations/patchpaymentlink.py
|
|
241
261
|
src/unified_to/models/operations/patchpaymentpayment.py
|
|
@@ -270,8 +290,11 @@ src/unified_to/models/operations/removecrmlead.py
|
|
|
270
290
|
src/unified_to/models/operations/removecrmpipeline.py
|
|
271
291
|
src/unified_to/models/operations/removehrisemployee.py
|
|
272
292
|
src/unified_to/models/operations/removehrisgroup.py
|
|
293
|
+
src/unified_to/models/operations/removekmspage.py
|
|
294
|
+
src/unified_to/models/operations/removekmsspace.py
|
|
273
295
|
src/unified_to/models/operations/removemartechlist.py
|
|
274
296
|
src/unified_to/models/operations/removemartechmember.py
|
|
297
|
+
src/unified_to/models/operations/removemessagingmessage.py
|
|
275
298
|
src/unified_to/models/operations/removepassthrough.py
|
|
276
299
|
src/unified_to/models/operations/removepaymentlink.py
|
|
277
300
|
src/unified_to/models/operations/removepaymentpayment.py
|
|
@@ -306,8 +329,11 @@ src/unified_to/models/operations/updatecrmlead.py
|
|
|
306
329
|
src/unified_to/models/operations/updatecrmpipeline.py
|
|
307
330
|
src/unified_to/models/operations/updatehrisemployee.py
|
|
308
331
|
src/unified_to/models/operations/updatehrisgroup.py
|
|
332
|
+
src/unified_to/models/operations/updatekmspage.py
|
|
333
|
+
src/unified_to/models/operations/updatekmsspace.py
|
|
309
334
|
src/unified_to/models/operations/updatemartechlist.py
|
|
310
335
|
src/unified_to/models/operations/updatemartechmember.py
|
|
336
|
+
src/unified_to/models/operations/updatemessagingmessage.py
|
|
311
337
|
src/unified_to/models/operations/updatepassthrough.py
|
|
312
338
|
src/unified_to/models/operations/updatepaymentlink.py
|
|
313
339
|
src/unified_to/models/operations/updatepaymentpayment.py
|
|
@@ -382,9 +408,14 @@ src/unified_to/models/shared/hristimeoff.py
|
|
|
382
408
|
src/unified_to/models/shared/integration.py
|
|
383
409
|
src/unified_to/models/shared/integrationsupport.py
|
|
384
410
|
src/unified_to/models/shared/issue.py
|
|
411
|
+
src/unified_to/models/shared/kmspage.py
|
|
412
|
+
src/unified_to/models/shared/kmsspace.py
|
|
385
413
|
src/unified_to/models/shared/marketingemail.py
|
|
386
414
|
src/unified_to/models/shared/marketinglist.py
|
|
387
415
|
src/unified_to/models/shared/marketingmember.py
|
|
416
|
+
src/unified_to/models/shared/messagingchannel.py
|
|
417
|
+
src/unified_to/models/shared/messagingmember.py
|
|
418
|
+
src/unified_to/models/shared/messagingmessage.py
|
|
388
419
|
src/unified_to/models/shared/paymentlink.py
|
|
389
420
|
src/unified_to/models/shared/paymentlinklineitem.py
|
|
390
421
|
src/unified_to/models/shared/paymentpayment.py
|
|
@@ -412,6 +443,7 @@ src/unified_to/models/shared/property_enrichperson_address.py
|
|
|
412
443
|
src/unified_to/models/shared/property_hrisemployee_address.py
|
|
413
444
|
src/unified_to/models/shared/property_integration_categories.py
|
|
414
445
|
src/unified_to/models/shared/property_integrationsupport_webhook_events.py
|
|
446
|
+
src/unified_to/models/shared/property_messagingmessage_author_member.py
|
|
415
447
|
src/unified_to/models/shared/property_property_integrationsupport_webhook_events_created.py
|
|
416
448
|
src/unified_to/models/shared/property_property_integrationsupport_webhook_events_deleted.py
|
|
417
449
|
src/unified_to/models/shared/property_property_integrationsupport_webhook_events_updated.py
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
import requests as requests_http
|
|
4
|
+
from .sdkconfiguration import SDKConfiguration
|
|
5
|
+
from typing import List, Optional
|
|
6
|
+
from unified_to import utils
|
|
7
|
+
from unified_to._hooks import AfterErrorContext, AfterSuccessContext, BeforeRequestContext, HookContext
|
|
8
|
+
from unified_to.models import errors, operations, shared
|
|
9
|
+
|
|
10
|
+
class Channel:
|
|
11
|
+
sdk_configuration: SDKConfiguration
|
|
12
|
+
|
|
13
|
+
def __init__(self, sdk_config: SDKConfiguration) -> None:
|
|
14
|
+
self.sdk_configuration = sdk_config
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def get_messaging_channel(self, request: operations.GetMessagingChannelRequest) -> operations.GetMessagingChannelResponse:
|
|
19
|
+
r"""Retrieve a channel"""
|
|
20
|
+
hook_ctx = HookContext(operation_id='getMessagingChannel', oauth2_scopes=[], security_source=self.sdk_configuration.security)
|
|
21
|
+
base_url = utils.template_url(*self.sdk_configuration.get_server_details())
|
|
22
|
+
|
|
23
|
+
url = utils.generate_url(base_url, '/messaging/{connection_id}/channel/{id}', request)
|
|
24
|
+
|
|
25
|
+
if callable(self.sdk_configuration.security):
|
|
26
|
+
headers, query_params = utils.get_security(self.sdk_configuration.security())
|
|
27
|
+
else:
|
|
28
|
+
headers, query_params = utils.get_security(self.sdk_configuration.security)
|
|
29
|
+
|
|
30
|
+
query_params = { **utils.get_query_params(request), **query_params }
|
|
31
|
+
headers['Accept'] = 'application/json'
|
|
32
|
+
headers['user-agent'] = self.sdk_configuration.user_agent
|
|
33
|
+
client = self.sdk_configuration.client
|
|
34
|
+
|
|
35
|
+
try:
|
|
36
|
+
req = client.prepare_request(requests_http.Request('GET', url, params=query_params, headers=headers))
|
|
37
|
+
req = self.sdk_configuration.get_hooks().before_request(BeforeRequestContext(hook_ctx), req)
|
|
38
|
+
http_res = client.send(req)
|
|
39
|
+
except Exception as e:
|
|
40
|
+
_, e = self.sdk_configuration.get_hooks().after_error(AfterErrorContext(hook_ctx), None, e)
|
|
41
|
+
if e is not None:
|
|
42
|
+
raise e
|
|
43
|
+
|
|
44
|
+
if utils.match_status_codes(['4XX','5XX'], http_res.status_code):
|
|
45
|
+
result, e = self.sdk_configuration.get_hooks().after_error(AfterErrorContext(hook_ctx), http_res, None)
|
|
46
|
+
if e is not None:
|
|
47
|
+
raise e
|
|
48
|
+
if result is not None:
|
|
49
|
+
http_res = result
|
|
50
|
+
else:
|
|
51
|
+
http_res = self.sdk_configuration.get_hooks().after_success(AfterSuccessContext(hook_ctx), http_res)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
res = operations.GetMessagingChannelResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
|
|
56
|
+
|
|
57
|
+
if http_res.status_code == 200:
|
|
58
|
+
# pylint: disable=no-else-return
|
|
59
|
+
if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
|
|
60
|
+
out = utils.unmarshal_json(http_res.text, Optional[shared.MessagingChannel])
|
|
61
|
+
res.messaging_channel = out
|
|
62
|
+
else:
|
|
63
|
+
content_type = http_res.headers.get('Content-Type')
|
|
64
|
+
raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res)
|
|
65
|
+
elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600:
|
|
66
|
+
raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res)
|
|
67
|
+
else:
|
|
68
|
+
raise errors.SDKError('unknown status code received', http_res.status_code, http_res.text, http_res)
|
|
69
|
+
|
|
70
|
+
return res
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def list_messaging_channels(self, request: operations.ListMessagingChannelsRequest) -> operations.ListMessagingChannelsResponse:
|
|
75
|
+
r"""List all channels"""
|
|
76
|
+
hook_ctx = HookContext(operation_id='listMessagingChannels', oauth2_scopes=[], security_source=self.sdk_configuration.security)
|
|
77
|
+
base_url = utils.template_url(*self.sdk_configuration.get_server_details())
|
|
78
|
+
|
|
79
|
+
url = utils.generate_url(base_url, '/messaging/{connection_id}/channel', request)
|
|
80
|
+
|
|
81
|
+
if callable(self.sdk_configuration.security):
|
|
82
|
+
headers, query_params = utils.get_security(self.sdk_configuration.security())
|
|
83
|
+
else:
|
|
84
|
+
headers, query_params = utils.get_security(self.sdk_configuration.security)
|
|
85
|
+
|
|
86
|
+
query_params = { **utils.get_query_params(request), **query_params }
|
|
87
|
+
headers['Accept'] = 'application/json'
|
|
88
|
+
headers['user-agent'] = self.sdk_configuration.user_agent
|
|
89
|
+
client = self.sdk_configuration.client
|
|
90
|
+
|
|
91
|
+
try:
|
|
92
|
+
req = client.prepare_request(requests_http.Request('GET', url, params=query_params, headers=headers))
|
|
93
|
+
req = self.sdk_configuration.get_hooks().before_request(BeforeRequestContext(hook_ctx), req)
|
|
94
|
+
http_res = client.send(req)
|
|
95
|
+
except Exception as e:
|
|
96
|
+
_, e = self.sdk_configuration.get_hooks().after_error(AfterErrorContext(hook_ctx), None, e)
|
|
97
|
+
if e is not None:
|
|
98
|
+
raise e
|
|
99
|
+
|
|
100
|
+
if utils.match_status_codes(['4XX','5XX'], http_res.status_code):
|
|
101
|
+
result, e = self.sdk_configuration.get_hooks().after_error(AfterErrorContext(hook_ctx), http_res, None)
|
|
102
|
+
if e is not None:
|
|
103
|
+
raise e
|
|
104
|
+
if result is not None:
|
|
105
|
+
http_res = result
|
|
106
|
+
else:
|
|
107
|
+
http_res = self.sdk_configuration.get_hooks().after_success(AfterSuccessContext(hook_ctx), http_res)
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
res = operations.ListMessagingChannelsResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
|
|
112
|
+
|
|
113
|
+
if http_res.status_code == 200:
|
|
114
|
+
# pylint: disable=no-else-return
|
|
115
|
+
if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
|
|
116
|
+
out = utils.unmarshal_json(http_res.text, Optional[List[shared.MessagingChannel]])
|
|
117
|
+
res.messaging_channels = out
|
|
118
|
+
else:
|
|
119
|
+
content_type = http_res.headers.get('Content-Type')
|
|
120
|
+
raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res)
|
|
121
|
+
elif http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600:
|
|
122
|
+
raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res)
|
|
123
|
+
else:
|
|
124
|
+
raise errors.SDKError('unknown status code received', http_res.status_code, http_res.text, http_res)
|
|
125
|
+
|
|
126
|
+
return res
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|