Unified-python-sdk 0.14.35__tar.gz → 0.14.38__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.14.35/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.14.38}/PKG-INFO +64 -16
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/README.md +63 -15
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/setup.py +4 -3
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38/src/Unified_python_sdk.egg-info}/PKG-INFO +64 -16
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/Unified_python_sdk.egg-info/SOURCES.txt +37 -7
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/Unified_python_sdk.egg-info/requires.txt +1 -1
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/accounting.py +0 -202
- Unified-python-sdk-0.14.38/src/unified_to/collection.py +216 -0
- Unified-python-sdk-0.14.38/src/unified_to/commerce.py +822 -0
- Unified-python-sdk-0.14.38/src/unified_to/inventory.py +216 -0
- Unified-python-sdk-0.14.38/src/unified_to/item.py +216 -0
- Unified-python-sdk-0.14.38/src/unified_to/location.py +216 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/__init__.py +219 -0
- Unified-python-sdk-0.14.35/src/unified_to/models/operations/createaccountingitem.py → Unified-python-sdk-0.14.38/src/unified_to/models/operations/createcommercecollection.py +6 -6
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/createcommerceinventory.py +30 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/createcommerceitem.py +30 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/createcommercelocation.py +30 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/getcommercecollection.py +33 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/getcommerceinventory.py +33 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/getcommerceitem.py +33 -0
- Unified-python-sdk-0.14.35/src/unified_to/models/operations/getaccountingitem.py → Unified-python-sdk-0.14.38/src/unified_to/models/operations/getcommercelocation.py +5 -5
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getunifiedintegrationauth.py +8 -1
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/listcommercecollections.py +40 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/listcommerceinventories.py +40 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/listcommerceitems.py +40 -0
- Unified-python-sdk-0.14.35/src/unified_to/models/operations/listaccountingitems.py → Unified-python-sdk-0.14.38/src/unified_to/models/operations/listcommercelocations.py +4 -4
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listunifiedconnections.py +1 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listunifiedintegrations.py +1 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listunifiedintegrationworkspaces.py +1 -0
- Unified-python-sdk-0.14.35/src/unified_to/models/operations/patchaccountingitem.py → Unified-python-sdk-0.14.38/src/unified_to/models/operations/patchcommercecollection.py +7 -7
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/patchcommerceinventory.py +32 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/patchcommerceitem.py +32 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/patchcommercelocation.py +32 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/removecommercecollection.py +30 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/removecommerceinventory.py +30 -0
- Unified-python-sdk-0.14.35/src/unified_to/models/operations/removeaccountingitem.py → Unified-python-sdk-0.14.38/src/unified_to/models/operations/removecommerceitem.py +2 -2
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/removecommercelocation.py +30 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/updatecommercecollection.py +33 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/updatecommerceinventory.py +32 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/updatecommerceitem.py +32 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/operations/updatecommercelocation.py +32 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/__init__.py +10 -2
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountinglineitem.py +1 -1
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingtransaction.py +2 -1
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atsjob.py +1 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/shared/commercecollection.py +32 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/shared/commerceinventory.py +24 -0
- Unified-python-sdk-0.14.35/src/unified_to/models/shared/accountingitem.py → Unified-python-sdk-0.14.38/src/unified_to/models/shared/commerceitem.py +11 -6
- Unified-python-sdk-0.14.38/src/unified_to/models/shared/commerceitemmedia.py +25 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/shared/commerceitemoption.py +18 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/shared/commerceitemprice.py +17 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/shared/commerceitemvariant.py +53 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/shared/commercelocation.py +24 -0
- Unified-python-sdk-0.14.38/src/unified_to/models/shared/property_commercelocation_address.py +22 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_connection_categories.py +1 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_connection_permissions.py +8 -1
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_integration_categories.py +1 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/webhook.py +4 -1
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/sdk.py +14 -2
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/sdkconfiguration.py +3 -3
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/utils/utils.py +1 -1
- Unified-python-sdk-0.14.35/src/unified_to/item.py +0 -216
- Unified-python-sdk-0.14.35/src/unified_to/models/operations/__init__.py +0 -201
- Unified-python-sdk-0.14.35/src/unified_to/models/operations/updateaccountingitem.py +0 -33
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/LICENSE.md +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/setup.cfg +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/Unified_python_sdk.egg-info/dependency_links.txt +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/Unified_python_sdk.egg-info/top_level.txt +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/__init__.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/account.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/apicall.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/application.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/applicationstatus.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/ats.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/auth.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/call.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/candidate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/company.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/connection.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/contact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/crm.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/customer.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/deal.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/document.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/employee.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/enrich.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/event.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/file.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/group.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/hris.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/integration.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/interview.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/invoice.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/job.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/lead.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/list.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/login.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/martech.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/member.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/__init__.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/errors/__init__.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/errors/sdkerror.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createatsapplication.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createatscandidate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createatsdocument.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createatsinterview.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createatsjob.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createcrmcompany.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createcrmcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createcrmdeal.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createcrmevent.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createcrmlead.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createcrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createhrisemployee.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createhrisgroup.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createmartechlist.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createmartechmember.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createpassthrough.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createstoragefile.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createticketingnote.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createticketingticket.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createuccontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/createunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getaccountingorganization.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getatsapplication.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getatscandidate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getatsdocument.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getatsinterview.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getatsjob.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getcrmcompany.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getcrmcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getcrmdeal.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getcrmevent.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getcrmlead.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getcrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/gethrisemployee.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/gethrisgroup.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getmartechlist.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getmartechmember.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getstoragefile.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getticketingnote.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getticketingticket.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getuccontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getunifiedapicall.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getunifiedintegrationlogin.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/getunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listaccountingaccounts.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listaccountingcontacts.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listaccountinginvoices.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listaccountingorganizations.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listaccountingpayments.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listaccountingtaxrates.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listaccountingtransactions.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listatsapplications.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listatsapplicationstatuses.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listatscandidates.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listatsdocuments.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listatsinterviews.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listatsjobs.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listatsscorecards.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listcrmcompanies.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listcrmcontacts.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listcrmdeals.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listcrmevents.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listcrmleads.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listcrmpipelines.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listenrichcompanies.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listenrichpeople.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listhrisemployees.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listhrisgroups.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listmartechlists.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listmartechmembers.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listpassthroughs.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/liststoragefiles.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listticketingcustomers.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listticketingnotes.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listticketingtickets.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listuccalls.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listuccontacts.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listunifiedapicalls.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/listunifiedwebhooks.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchatsapplication.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchatscandidate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchatsdocument.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchatsinterview.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchatsjob.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchcrmcompany.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchcrmcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchcrmdeal.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchcrmevent.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchcrmlead.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchcrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchhrisemployee.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchhrisgroup.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchmartechlist.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchmartechmember.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchpassthrough.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchstoragefile.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchticketingnote.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchticketingticket.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchuccontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/patchunifiedwebhooktrigger.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeatsapplication.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeatscandidate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeatsdocument.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeatsinterview.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeatsjob.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removecrmcompany.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removecrmcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removecrmdeal.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removecrmevent.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removecrmlead.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removecrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removehrisemployee.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removehrisgroup.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removemartechlist.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removemartechmember.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removepassthrough.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removestoragefile.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeticketingnote.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeticketingticket.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeuccontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/removeunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateatsapplication.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateatscandidate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateatsdocument.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateatsinterview.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateatsjob.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatecrmcompany.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatecrmcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatecrmdeal.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatecrmevent.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatecrmlead.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatecrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatehrisemployee.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatehrisgroup.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatemartechlist.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatemartechmember.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatepassthrough.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updatestoragefile.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateticketingnote.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateticketingticket.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateuccontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/operations/updateunifiedwebhooktrigger.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingaccount.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingemail.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingorganization.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingpayment.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingtelephone.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/accountingtransactionlineitem.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/apicall.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atsaddress.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atsapplication.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atscandidate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atscompensation.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atsdocument.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atsemail.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atsinterview.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atsscorecard.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atsstatus.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/atstelephone.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/connection.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/crmcompany.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/crmcontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/crmdeal.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/crmemail.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/crmevent.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/crmlead.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/crmpipeline.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/crmtelephone.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/enrichcompany.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/enrichemail.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/enrichperson.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/enrichpersonworkhistory.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/enrichtelephone.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/hrisemail.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/hrisemployee.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/hrisgroup.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/hristelephone.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/integration.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/integrationsupport.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/marketingemail.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/marketinglist.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/marketingmember.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_accountingcontact_billing_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_accountingcontact_shipping_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_accountingorganization_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_atscandidate_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_connection_auth.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_crmcompany_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_crmcontact_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_crmevent_call.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_crmevent_email.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_crmevent_meeting.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_crmevent_note.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_crmevent_task.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_crmlead_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_enrichcompany_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_enrichperson_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_hrisemployee_address.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_storagepermission_roles.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/property_uccall_telephone.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/security.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/storagefile.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/storagepermission.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/ticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/ticketingemail.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/ticketingnote.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/ticketingtelephone.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/ticketingticket.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/uccall.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/uccontact.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/ucemail.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/models/shared/uctelephone.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/note.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/organization.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/passthrough.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/payment.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/person.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/pipeline.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/scorecard.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/storage.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/taxrate.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/ticket.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/ticketing.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/transaction.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/uc.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/unified.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/utils/__init__.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/utils/retries.py +0 -0
- {Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38}/src/unified_to/webhook.py +0 -0
{Unified-python-sdk-0.14.35/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.14.38}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Unified-python-sdk
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.38
|
|
4
4
|
Summary: Python Client SDK for Unified.to
|
|
5
5
|
Home-page: UNKNOWN
|
|
6
6
|
Author: Unified API Inc
|
|
@@ -61,14 +61,12 @@ Description: <div align="left">
|
|
|
61
61
|
* [create_accounting_account](docs/sdks/accounting/README.md#create_accounting_account) - Create an account
|
|
62
62
|
* [create_accounting_contact](docs/sdks/accounting/README.md#create_accounting_contact) - Create a contact
|
|
63
63
|
* [create_accounting_invoice](docs/sdks/accounting/README.md#create_accounting_invoice) - Create a invoice
|
|
64
|
-
* [create_accounting_item](docs/sdks/accounting/README.md#create_accounting_item) - Create an item
|
|
65
64
|
* [create_accounting_payment](docs/sdks/accounting/README.md#create_accounting_payment) - Create a payment
|
|
66
65
|
* [create_accounting_taxrate](docs/sdks/accounting/README.md#create_accounting_taxrate) - Create a taxrate
|
|
67
66
|
* [create_accounting_transaction](docs/sdks/accounting/README.md#create_accounting_transaction) - Create a transaction
|
|
68
67
|
* [get_accounting_account](docs/sdks/accounting/README.md#get_accounting_account) - Retrieve an account
|
|
69
68
|
* [get_accounting_contact](docs/sdks/accounting/README.md#get_accounting_contact) - Retrieve a contact
|
|
70
69
|
* [get_accounting_invoice](docs/sdks/accounting/README.md#get_accounting_invoice) - Retrieve a invoice
|
|
71
|
-
* [get_accounting_item](docs/sdks/accounting/README.md#get_accounting_item) - Retrieve an item
|
|
72
70
|
* [get_accounting_organization](docs/sdks/accounting/README.md#get_accounting_organization) - Retrieve an organization
|
|
73
71
|
* [get_accounting_payment](docs/sdks/accounting/README.md#get_accounting_payment) - Retrieve a payment
|
|
74
72
|
* [get_accounting_taxrate](docs/sdks/accounting/README.md#get_accounting_taxrate) - Retrieve a taxrate
|
|
@@ -76,7 +74,6 @@ Description: <div align="left">
|
|
|
76
74
|
* [list_accounting_accounts](docs/sdks/accounting/README.md#list_accounting_accounts) - List all accounts
|
|
77
75
|
* [list_accounting_contacts](docs/sdks/accounting/README.md#list_accounting_contacts) - List all contacts
|
|
78
76
|
* [list_accounting_invoices](docs/sdks/accounting/README.md#list_accounting_invoices) - List all invoices
|
|
79
|
-
* [list_accounting_items](docs/sdks/accounting/README.md#list_accounting_items) - List all items
|
|
80
77
|
* [list_accounting_organizations](docs/sdks/accounting/README.md#list_accounting_organizations) - List all organizations
|
|
81
78
|
* [list_accounting_payments](docs/sdks/accounting/README.md#list_accounting_payments) - List all payments
|
|
82
79
|
* [list_accounting_taxrates](docs/sdks/accounting/README.md#list_accounting_taxrates) - List all taxrates
|
|
@@ -84,21 +81,18 @@ Description: <div align="left">
|
|
|
84
81
|
* [patch_accounting_account](docs/sdks/accounting/README.md#patch_accounting_account) - Update an account
|
|
85
82
|
* [patch_accounting_contact](docs/sdks/accounting/README.md#patch_accounting_contact) - Update a contact
|
|
86
83
|
* [patch_accounting_invoice](docs/sdks/accounting/README.md#patch_accounting_invoice) - Update a invoice
|
|
87
|
-
* [patch_accounting_item](docs/sdks/accounting/README.md#patch_accounting_item) - Update an item
|
|
88
84
|
* [patch_accounting_payment](docs/sdks/accounting/README.md#patch_accounting_payment) - Update a payment
|
|
89
85
|
* [patch_accounting_taxrate](docs/sdks/accounting/README.md#patch_accounting_taxrate) - Update a taxrate
|
|
90
86
|
* [patch_accounting_transaction](docs/sdks/accounting/README.md#patch_accounting_transaction) - Update a transaction
|
|
91
87
|
* [remove_accounting_account](docs/sdks/accounting/README.md#remove_accounting_account) - Remove an account
|
|
92
88
|
* [remove_accounting_contact](docs/sdks/accounting/README.md#remove_accounting_contact) - Remove a contact
|
|
93
89
|
* [remove_accounting_invoice](docs/sdks/accounting/README.md#remove_accounting_invoice) - Remove a invoice
|
|
94
|
-
* [remove_accounting_item](docs/sdks/accounting/README.md#remove_accounting_item) - Remove an item
|
|
95
90
|
* [remove_accounting_payment](docs/sdks/accounting/README.md#remove_accounting_payment) - Remove a payment
|
|
96
91
|
* [remove_accounting_taxrate](docs/sdks/accounting/README.md#remove_accounting_taxrate) - Remove a taxrate
|
|
97
92
|
* [remove_accounting_transaction](docs/sdks/accounting/README.md#remove_accounting_transaction) - Remove a transaction
|
|
98
93
|
* [update_accounting_account](docs/sdks/accounting/README.md#update_accounting_account) - Update an account
|
|
99
94
|
* [update_accounting_contact](docs/sdks/accounting/README.md#update_accounting_contact) - Update a contact
|
|
100
95
|
* [update_accounting_invoice](docs/sdks/accounting/README.md#update_accounting_invoice) - Update a invoice
|
|
101
|
-
* [update_accounting_item](docs/sdks/accounting/README.md#update_accounting_item) - Update an item
|
|
102
96
|
* [update_accounting_payment](docs/sdks/accounting/README.md#update_accounting_payment) - Update a payment
|
|
103
97
|
* [update_accounting_taxrate](docs/sdks/accounting/README.md#update_accounting_taxrate) - Update a taxrate
|
|
104
98
|
* [update_accounting_transaction](docs/sdks/accounting/README.md#update_accounting_transaction) - Update a transaction
|
|
@@ -142,15 +136,6 @@ Description: <div align="left">
|
|
|
142
136
|
* [remove_accounting_invoice](docs/sdks/invoice/README.md#remove_accounting_invoice) - Remove a invoice
|
|
143
137
|
* [update_accounting_invoice](docs/sdks/invoice/README.md#update_accounting_invoice) - Update a invoice
|
|
144
138
|
|
|
145
|
-
### [item](docs/sdks/item/README.md)
|
|
146
|
-
|
|
147
|
-
* [create_accounting_item](docs/sdks/item/README.md#create_accounting_item) - Create an item
|
|
148
|
-
* [get_accounting_item](docs/sdks/item/README.md#get_accounting_item) - Retrieve an item
|
|
149
|
-
* [list_accounting_items](docs/sdks/item/README.md#list_accounting_items) - List all items
|
|
150
|
-
* [patch_accounting_item](docs/sdks/item/README.md#patch_accounting_item) - Update an item
|
|
151
|
-
* [remove_accounting_item](docs/sdks/item/README.md#remove_accounting_item) - Remove an item
|
|
152
|
-
* [update_accounting_item](docs/sdks/item/README.md#update_accounting_item) - Update an item
|
|
153
|
-
|
|
154
139
|
### [organization](docs/sdks/organization/README.md)
|
|
155
140
|
|
|
156
141
|
* [get_accounting_organization](docs/sdks/organization/README.md#get_accounting_organization) - Retrieve an organization
|
|
@@ -281,6 +266,69 @@ Description: <div align="left">
|
|
|
281
266
|
* [remove_ats_scorecard](docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
|
|
282
267
|
* [update_ats_scorecard](docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
|
|
283
268
|
|
|
269
|
+
### [commerce](docs/sdks/commerce/README.md)
|
|
270
|
+
|
|
271
|
+
* [create_commerce_collection](docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
|
|
272
|
+
* [create_commerce_inventory](docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
|
|
273
|
+
* [create_commerce_item](docs/sdks/commerce/README.md#create_commerce_item) - Create an item/product
|
|
274
|
+
* [create_commerce_location](docs/sdks/commerce/README.md#create_commerce_location) - Create a location
|
|
275
|
+
* [get_commerce_collection](docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
|
|
276
|
+
* [get_commerce_inventory](docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
277
|
+
* [get_commerce_item](docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item/product
|
|
278
|
+
* [get_commerce_location](docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
|
|
279
|
+
* [list_commerce_collections](docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
|
|
280
|
+
* [list_commerce_inventories](docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
|
|
281
|
+
* [list_commerce_items](docs/sdks/commerce/README.md#list_commerce_items) - List all items/products
|
|
282
|
+
* [list_commerce_locations](docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
|
|
283
|
+
* [patch_commerce_collection](docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
|
|
284
|
+
* [patch_commerce_inventory](docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
|
|
285
|
+
* [patch_commerce_item](docs/sdks/commerce/README.md#patch_commerce_item) - Update an item/product
|
|
286
|
+
* [patch_commerce_location](docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
|
|
287
|
+
* [remove_commerce_collection](docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
|
|
288
|
+
* [remove_commerce_inventory](docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
|
|
289
|
+
* [remove_commerce_item](docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item/product
|
|
290
|
+
* [remove_commerce_location](docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
|
|
291
|
+
* [update_commerce_collection](docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
|
|
292
|
+
* [update_commerce_inventory](docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
|
|
293
|
+
* [update_commerce_item](docs/sdks/commerce/README.md#update_commerce_item) - Update an item/product
|
|
294
|
+
* [update_commerce_location](docs/sdks/commerce/README.md#update_commerce_location) - Update a location
|
|
295
|
+
|
|
296
|
+
### [collection](docs/sdks/collection/README.md)
|
|
297
|
+
|
|
298
|
+
* [create_commerce_collection](docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
|
|
299
|
+
* [get_commerce_collection](docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
|
|
300
|
+
* [list_commerce_collections](docs/sdks/collection/README.md#list_commerce_collections) - List all collections
|
|
301
|
+
* [patch_commerce_collection](docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
|
|
302
|
+
* [remove_commerce_collection](docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
|
|
303
|
+
* [update_commerce_collection](docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
|
|
304
|
+
|
|
305
|
+
### [inventory](docs/sdks/inventory/README.md)
|
|
306
|
+
|
|
307
|
+
* [create_commerce_inventory](docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
|
|
308
|
+
* [get_commerce_inventory](docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
309
|
+
* [list_commerce_inventories](docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
|
|
310
|
+
* [patch_commerce_inventory](docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
|
|
311
|
+
* [remove_commerce_inventory](docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
|
|
312
|
+
* [update_commerce_inventory](docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
|
|
313
|
+
|
|
314
|
+
### [item](docs/sdks/item/README.md)
|
|
315
|
+
|
|
316
|
+
* [create_commerce_item](docs/sdks/item/README.md#create_commerce_item) - Create an item/product
|
|
317
|
+
* [get_commerce_item](docs/sdks/item/README.md#get_commerce_item) - Retrieve an item/product
|
|
318
|
+
* [list_commerce_items](docs/sdks/item/README.md#list_commerce_items) - List all items/products
|
|
319
|
+
* [patch_commerce_item](docs/sdks/item/README.md#patch_commerce_item) - Update an item/product
|
|
320
|
+
* [remove_commerce_item](docs/sdks/item/README.md#remove_commerce_item) - Remove an item/product
|
|
321
|
+
* [update_commerce_item](docs/sdks/item/README.md#update_commerce_item) - Update an item/product
|
|
322
|
+
|
|
323
|
+
### [location](docs/sdks/location/README.md)
|
|
324
|
+
|
|
325
|
+
* [create_commerce_location](docs/sdks/location/README.md#create_commerce_location) - Create a location
|
|
326
|
+
* [get_commerce_location](docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
|
|
327
|
+
* [list_commerce_locations](docs/sdks/location/README.md#list_commerce_locations) - List all locations
|
|
328
|
+
* [patch_commerce_location](docs/sdks/location/README.md#patch_commerce_location) - Update a location
|
|
329
|
+
* [remove_commerce_location](docs/sdks/location/README.md#remove_commerce_location) - Remove a location
|
|
330
|
+
* [update_commerce_location](docs/sdks/location/README.md#update_commerce_location) - Update a location
|
|
331
|
+
|
|
284
332
|
### [crm](docs/sdks/crm/README.md)
|
|
285
333
|
|
|
286
334
|
* [create_crm_company](docs/sdks/crm/README.md#create_crm_company) - Create a company
|
|
@@ -54,14 +54,12 @@ if res.accounting_account is not None:
|
|
|
54
54
|
* [create_accounting_account](docs/sdks/accounting/README.md#create_accounting_account) - Create an account
|
|
55
55
|
* [create_accounting_contact](docs/sdks/accounting/README.md#create_accounting_contact) - Create a contact
|
|
56
56
|
* [create_accounting_invoice](docs/sdks/accounting/README.md#create_accounting_invoice) - Create a invoice
|
|
57
|
-
* [create_accounting_item](docs/sdks/accounting/README.md#create_accounting_item) - Create an item
|
|
58
57
|
* [create_accounting_payment](docs/sdks/accounting/README.md#create_accounting_payment) - Create a payment
|
|
59
58
|
* [create_accounting_taxrate](docs/sdks/accounting/README.md#create_accounting_taxrate) - Create a taxrate
|
|
60
59
|
* [create_accounting_transaction](docs/sdks/accounting/README.md#create_accounting_transaction) - Create a transaction
|
|
61
60
|
* [get_accounting_account](docs/sdks/accounting/README.md#get_accounting_account) - Retrieve an account
|
|
62
61
|
* [get_accounting_contact](docs/sdks/accounting/README.md#get_accounting_contact) - Retrieve a contact
|
|
63
62
|
* [get_accounting_invoice](docs/sdks/accounting/README.md#get_accounting_invoice) - Retrieve a invoice
|
|
64
|
-
* [get_accounting_item](docs/sdks/accounting/README.md#get_accounting_item) - Retrieve an item
|
|
65
63
|
* [get_accounting_organization](docs/sdks/accounting/README.md#get_accounting_organization) - Retrieve an organization
|
|
66
64
|
* [get_accounting_payment](docs/sdks/accounting/README.md#get_accounting_payment) - Retrieve a payment
|
|
67
65
|
* [get_accounting_taxrate](docs/sdks/accounting/README.md#get_accounting_taxrate) - Retrieve a taxrate
|
|
@@ -69,7 +67,6 @@ if res.accounting_account is not None:
|
|
|
69
67
|
* [list_accounting_accounts](docs/sdks/accounting/README.md#list_accounting_accounts) - List all accounts
|
|
70
68
|
* [list_accounting_contacts](docs/sdks/accounting/README.md#list_accounting_contacts) - List all contacts
|
|
71
69
|
* [list_accounting_invoices](docs/sdks/accounting/README.md#list_accounting_invoices) - List all invoices
|
|
72
|
-
* [list_accounting_items](docs/sdks/accounting/README.md#list_accounting_items) - List all items
|
|
73
70
|
* [list_accounting_organizations](docs/sdks/accounting/README.md#list_accounting_organizations) - List all organizations
|
|
74
71
|
* [list_accounting_payments](docs/sdks/accounting/README.md#list_accounting_payments) - List all payments
|
|
75
72
|
* [list_accounting_taxrates](docs/sdks/accounting/README.md#list_accounting_taxrates) - List all taxrates
|
|
@@ -77,21 +74,18 @@ if res.accounting_account is not None:
|
|
|
77
74
|
* [patch_accounting_account](docs/sdks/accounting/README.md#patch_accounting_account) - Update an account
|
|
78
75
|
* [patch_accounting_contact](docs/sdks/accounting/README.md#patch_accounting_contact) - Update a contact
|
|
79
76
|
* [patch_accounting_invoice](docs/sdks/accounting/README.md#patch_accounting_invoice) - Update a invoice
|
|
80
|
-
* [patch_accounting_item](docs/sdks/accounting/README.md#patch_accounting_item) - Update an item
|
|
81
77
|
* [patch_accounting_payment](docs/sdks/accounting/README.md#patch_accounting_payment) - Update a payment
|
|
82
78
|
* [patch_accounting_taxrate](docs/sdks/accounting/README.md#patch_accounting_taxrate) - Update a taxrate
|
|
83
79
|
* [patch_accounting_transaction](docs/sdks/accounting/README.md#patch_accounting_transaction) - Update a transaction
|
|
84
80
|
* [remove_accounting_account](docs/sdks/accounting/README.md#remove_accounting_account) - Remove an account
|
|
85
81
|
* [remove_accounting_contact](docs/sdks/accounting/README.md#remove_accounting_contact) - Remove a contact
|
|
86
82
|
* [remove_accounting_invoice](docs/sdks/accounting/README.md#remove_accounting_invoice) - Remove a invoice
|
|
87
|
-
* [remove_accounting_item](docs/sdks/accounting/README.md#remove_accounting_item) - Remove an item
|
|
88
83
|
* [remove_accounting_payment](docs/sdks/accounting/README.md#remove_accounting_payment) - Remove a payment
|
|
89
84
|
* [remove_accounting_taxrate](docs/sdks/accounting/README.md#remove_accounting_taxrate) - Remove a taxrate
|
|
90
85
|
* [remove_accounting_transaction](docs/sdks/accounting/README.md#remove_accounting_transaction) - Remove a transaction
|
|
91
86
|
* [update_accounting_account](docs/sdks/accounting/README.md#update_accounting_account) - Update an account
|
|
92
87
|
* [update_accounting_contact](docs/sdks/accounting/README.md#update_accounting_contact) - Update a contact
|
|
93
88
|
* [update_accounting_invoice](docs/sdks/accounting/README.md#update_accounting_invoice) - Update a invoice
|
|
94
|
-
* [update_accounting_item](docs/sdks/accounting/README.md#update_accounting_item) - Update an item
|
|
95
89
|
* [update_accounting_payment](docs/sdks/accounting/README.md#update_accounting_payment) - Update a payment
|
|
96
90
|
* [update_accounting_taxrate](docs/sdks/accounting/README.md#update_accounting_taxrate) - Update a taxrate
|
|
97
91
|
* [update_accounting_transaction](docs/sdks/accounting/README.md#update_accounting_transaction) - Update a transaction
|
|
@@ -135,15 +129,6 @@ if res.accounting_account is not None:
|
|
|
135
129
|
* [remove_accounting_invoice](docs/sdks/invoice/README.md#remove_accounting_invoice) - Remove a invoice
|
|
136
130
|
* [update_accounting_invoice](docs/sdks/invoice/README.md#update_accounting_invoice) - Update a invoice
|
|
137
131
|
|
|
138
|
-
### [item](docs/sdks/item/README.md)
|
|
139
|
-
|
|
140
|
-
* [create_accounting_item](docs/sdks/item/README.md#create_accounting_item) - Create an item
|
|
141
|
-
* [get_accounting_item](docs/sdks/item/README.md#get_accounting_item) - Retrieve an item
|
|
142
|
-
* [list_accounting_items](docs/sdks/item/README.md#list_accounting_items) - List all items
|
|
143
|
-
* [patch_accounting_item](docs/sdks/item/README.md#patch_accounting_item) - Update an item
|
|
144
|
-
* [remove_accounting_item](docs/sdks/item/README.md#remove_accounting_item) - Remove an item
|
|
145
|
-
* [update_accounting_item](docs/sdks/item/README.md#update_accounting_item) - Update an item
|
|
146
|
-
|
|
147
132
|
### [organization](docs/sdks/organization/README.md)
|
|
148
133
|
|
|
149
134
|
* [get_accounting_organization](docs/sdks/organization/README.md#get_accounting_organization) - Retrieve an organization
|
|
@@ -274,6 +259,69 @@ if res.accounting_account is not None:
|
|
|
274
259
|
* [remove_ats_scorecard](docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
|
|
275
260
|
* [update_ats_scorecard](docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
|
|
276
261
|
|
|
262
|
+
### [commerce](docs/sdks/commerce/README.md)
|
|
263
|
+
|
|
264
|
+
* [create_commerce_collection](docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
|
|
265
|
+
* [create_commerce_inventory](docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
|
|
266
|
+
* [create_commerce_item](docs/sdks/commerce/README.md#create_commerce_item) - Create an item/product
|
|
267
|
+
* [create_commerce_location](docs/sdks/commerce/README.md#create_commerce_location) - Create a location
|
|
268
|
+
* [get_commerce_collection](docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
|
|
269
|
+
* [get_commerce_inventory](docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
270
|
+
* [get_commerce_item](docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item/product
|
|
271
|
+
* [get_commerce_location](docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
|
|
272
|
+
* [list_commerce_collections](docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
|
|
273
|
+
* [list_commerce_inventories](docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
|
|
274
|
+
* [list_commerce_items](docs/sdks/commerce/README.md#list_commerce_items) - List all items/products
|
|
275
|
+
* [list_commerce_locations](docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
|
|
276
|
+
* [patch_commerce_collection](docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
|
|
277
|
+
* [patch_commerce_inventory](docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
|
|
278
|
+
* [patch_commerce_item](docs/sdks/commerce/README.md#patch_commerce_item) - Update an item/product
|
|
279
|
+
* [patch_commerce_location](docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
|
|
280
|
+
* [remove_commerce_collection](docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
|
|
281
|
+
* [remove_commerce_inventory](docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
|
|
282
|
+
* [remove_commerce_item](docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item/product
|
|
283
|
+
* [remove_commerce_location](docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
|
|
284
|
+
* [update_commerce_collection](docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
|
|
285
|
+
* [update_commerce_inventory](docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
|
|
286
|
+
* [update_commerce_item](docs/sdks/commerce/README.md#update_commerce_item) - Update an item/product
|
|
287
|
+
* [update_commerce_location](docs/sdks/commerce/README.md#update_commerce_location) - Update a location
|
|
288
|
+
|
|
289
|
+
### [collection](docs/sdks/collection/README.md)
|
|
290
|
+
|
|
291
|
+
* [create_commerce_collection](docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
|
|
292
|
+
* [get_commerce_collection](docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
|
|
293
|
+
* [list_commerce_collections](docs/sdks/collection/README.md#list_commerce_collections) - List all collections
|
|
294
|
+
* [patch_commerce_collection](docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
|
|
295
|
+
* [remove_commerce_collection](docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
|
|
296
|
+
* [update_commerce_collection](docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
|
|
297
|
+
|
|
298
|
+
### [inventory](docs/sdks/inventory/README.md)
|
|
299
|
+
|
|
300
|
+
* [create_commerce_inventory](docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
|
|
301
|
+
* [get_commerce_inventory](docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
302
|
+
* [list_commerce_inventories](docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
|
|
303
|
+
* [patch_commerce_inventory](docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
|
|
304
|
+
* [remove_commerce_inventory](docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
|
|
305
|
+
* [update_commerce_inventory](docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
|
|
306
|
+
|
|
307
|
+
### [item](docs/sdks/item/README.md)
|
|
308
|
+
|
|
309
|
+
* [create_commerce_item](docs/sdks/item/README.md#create_commerce_item) - Create an item/product
|
|
310
|
+
* [get_commerce_item](docs/sdks/item/README.md#get_commerce_item) - Retrieve an item/product
|
|
311
|
+
* [list_commerce_items](docs/sdks/item/README.md#list_commerce_items) - List all items/products
|
|
312
|
+
* [patch_commerce_item](docs/sdks/item/README.md#patch_commerce_item) - Update an item/product
|
|
313
|
+
* [remove_commerce_item](docs/sdks/item/README.md#remove_commerce_item) - Remove an item/product
|
|
314
|
+
* [update_commerce_item](docs/sdks/item/README.md#update_commerce_item) - Update an item/product
|
|
315
|
+
|
|
316
|
+
### [location](docs/sdks/location/README.md)
|
|
317
|
+
|
|
318
|
+
* [create_commerce_location](docs/sdks/location/README.md#create_commerce_location) - Create a location
|
|
319
|
+
* [get_commerce_location](docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
|
|
320
|
+
* [list_commerce_locations](docs/sdks/location/README.md#list_commerce_locations) - List all locations
|
|
321
|
+
* [patch_commerce_location](docs/sdks/location/README.md#patch_commerce_location) - Update a location
|
|
322
|
+
* [remove_commerce_location](docs/sdks/location/README.md#remove_commerce_location) - Remove a location
|
|
323
|
+
* [update_commerce_location](docs/sdks/location/README.md#update_commerce_location) - Update a location
|
|
324
|
+
|
|
277
325
|
### [crm](docs/sdks/crm/README.md)
|
|
278
326
|
|
|
279
327
|
* [create_crm_company](docs/sdks/crm/README.md#create_crm_company) - Create a company
|
|
@@ -10,7 +10,7 @@ except FileNotFoundError:
|
|
|
10
10
|
|
|
11
11
|
setuptools.setup(
|
|
12
12
|
name="Unified-python-sdk",
|
|
13
|
-
version="0.14.
|
|
13
|
+
version="0.14.38",
|
|
14
14
|
author="Unified API Inc",
|
|
15
15
|
description="Python Client SDK for Unified.to",
|
|
16
16
|
long_description=long_description,
|
|
@@ -19,7 +19,7 @@ setuptools.setup(
|
|
|
19
19
|
install_requires=[
|
|
20
20
|
"certifi>=2023.7.22",
|
|
21
21
|
"charset-normalizer>=3.2.0",
|
|
22
|
-
"dataclasses-json>=0.
|
|
22
|
+
"dataclasses-json-speakeasy>=0.5.11",
|
|
23
23
|
"idna>=3.4",
|
|
24
24
|
"jsonpath-python>=1.0.6 ",
|
|
25
25
|
"marshmallow>=3.19.0",
|
|
@@ -36,5 +36,6 @@ setuptools.setup(
|
|
|
36
36
|
"dev":["pylint==2.16.2"]
|
|
37
37
|
},
|
|
38
38
|
package_dir={'': 'src'},
|
|
39
|
-
python_requires='>=3.8'
|
|
39
|
+
python_requires='>=3.8',
|
|
40
|
+
package_data={"Unified-python-sdk": ["py.typed"]},
|
|
40
41
|
)
|
{Unified-python-sdk-0.14.35 → Unified-python-sdk-0.14.38/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.14.
|
|
3
|
+
Version: 0.14.38
|
|
4
4
|
Summary: Python Client SDK for Unified.to
|
|
5
5
|
Home-page: UNKNOWN
|
|
6
6
|
Author: Unified API Inc
|
|
@@ -61,14 +61,12 @@ Description: <div align="left">
|
|
|
61
61
|
* [create_accounting_account](docs/sdks/accounting/README.md#create_accounting_account) - Create an account
|
|
62
62
|
* [create_accounting_contact](docs/sdks/accounting/README.md#create_accounting_contact) - Create a contact
|
|
63
63
|
* [create_accounting_invoice](docs/sdks/accounting/README.md#create_accounting_invoice) - Create a invoice
|
|
64
|
-
* [create_accounting_item](docs/sdks/accounting/README.md#create_accounting_item) - Create an item
|
|
65
64
|
* [create_accounting_payment](docs/sdks/accounting/README.md#create_accounting_payment) - Create a payment
|
|
66
65
|
* [create_accounting_taxrate](docs/sdks/accounting/README.md#create_accounting_taxrate) - Create a taxrate
|
|
67
66
|
* [create_accounting_transaction](docs/sdks/accounting/README.md#create_accounting_transaction) - Create a transaction
|
|
68
67
|
* [get_accounting_account](docs/sdks/accounting/README.md#get_accounting_account) - Retrieve an account
|
|
69
68
|
* [get_accounting_contact](docs/sdks/accounting/README.md#get_accounting_contact) - Retrieve a contact
|
|
70
69
|
* [get_accounting_invoice](docs/sdks/accounting/README.md#get_accounting_invoice) - Retrieve a invoice
|
|
71
|
-
* [get_accounting_item](docs/sdks/accounting/README.md#get_accounting_item) - Retrieve an item
|
|
72
70
|
* [get_accounting_organization](docs/sdks/accounting/README.md#get_accounting_organization) - Retrieve an organization
|
|
73
71
|
* [get_accounting_payment](docs/sdks/accounting/README.md#get_accounting_payment) - Retrieve a payment
|
|
74
72
|
* [get_accounting_taxrate](docs/sdks/accounting/README.md#get_accounting_taxrate) - Retrieve a taxrate
|
|
@@ -76,7 +74,6 @@ Description: <div align="left">
|
|
|
76
74
|
* [list_accounting_accounts](docs/sdks/accounting/README.md#list_accounting_accounts) - List all accounts
|
|
77
75
|
* [list_accounting_contacts](docs/sdks/accounting/README.md#list_accounting_contacts) - List all contacts
|
|
78
76
|
* [list_accounting_invoices](docs/sdks/accounting/README.md#list_accounting_invoices) - List all invoices
|
|
79
|
-
* [list_accounting_items](docs/sdks/accounting/README.md#list_accounting_items) - List all items
|
|
80
77
|
* [list_accounting_organizations](docs/sdks/accounting/README.md#list_accounting_organizations) - List all organizations
|
|
81
78
|
* [list_accounting_payments](docs/sdks/accounting/README.md#list_accounting_payments) - List all payments
|
|
82
79
|
* [list_accounting_taxrates](docs/sdks/accounting/README.md#list_accounting_taxrates) - List all taxrates
|
|
@@ -84,21 +81,18 @@ Description: <div align="left">
|
|
|
84
81
|
* [patch_accounting_account](docs/sdks/accounting/README.md#patch_accounting_account) - Update an account
|
|
85
82
|
* [patch_accounting_contact](docs/sdks/accounting/README.md#patch_accounting_contact) - Update a contact
|
|
86
83
|
* [patch_accounting_invoice](docs/sdks/accounting/README.md#patch_accounting_invoice) - Update a invoice
|
|
87
|
-
* [patch_accounting_item](docs/sdks/accounting/README.md#patch_accounting_item) - Update an item
|
|
88
84
|
* [patch_accounting_payment](docs/sdks/accounting/README.md#patch_accounting_payment) - Update a payment
|
|
89
85
|
* [patch_accounting_taxrate](docs/sdks/accounting/README.md#patch_accounting_taxrate) - Update a taxrate
|
|
90
86
|
* [patch_accounting_transaction](docs/sdks/accounting/README.md#patch_accounting_transaction) - Update a transaction
|
|
91
87
|
* [remove_accounting_account](docs/sdks/accounting/README.md#remove_accounting_account) - Remove an account
|
|
92
88
|
* [remove_accounting_contact](docs/sdks/accounting/README.md#remove_accounting_contact) - Remove a contact
|
|
93
89
|
* [remove_accounting_invoice](docs/sdks/accounting/README.md#remove_accounting_invoice) - Remove a invoice
|
|
94
|
-
* [remove_accounting_item](docs/sdks/accounting/README.md#remove_accounting_item) - Remove an item
|
|
95
90
|
* [remove_accounting_payment](docs/sdks/accounting/README.md#remove_accounting_payment) - Remove a payment
|
|
96
91
|
* [remove_accounting_taxrate](docs/sdks/accounting/README.md#remove_accounting_taxrate) - Remove a taxrate
|
|
97
92
|
* [remove_accounting_transaction](docs/sdks/accounting/README.md#remove_accounting_transaction) - Remove a transaction
|
|
98
93
|
* [update_accounting_account](docs/sdks/accounting/README.md#update_accounting_account) - Update an account
|
|
99
94
|
* [update_accounting_contact](docs/sdks/accounting/README.md#update_accounting_contact) - Update a contact
|
|
100
95
|
* [update_accounting_invoice](docs/sdks/accounting/README.md#update_accounting_invoice) - Update a invoice
|
|
101
|
-
* [update_accounting_item](docs/sdks/accounting/README.md#update_accounting_item) - Update an item
|
|
102
96
|
* [update_accounting_payment](docs/sdks/accounting/README.md#update_accounting_payment) - Update a payment
|
|
103
97
|
* [update_accounting_taxrate](docs/sdks/accounting/README.md#update_accounting_taxrate) - Update a taxrate
|
|
104
98
|
* [update_accounting_transaction](docs/sdks/accounting/README.md#update_accounting_transaction) - Update a transaction
|
|
@@ -142,15 +136,6 @@ Description: <div align="left">
|
|
|
142
136
|
* [remove_accounting_invoice](docs/sdks/invoice/README.md#remove_accounting_invoice) - Remove a invoice
|
|
143
137
|
* [update_accounting_invoice](docs/sdks/invoice/README.md#update_accounting_invoice) - Update a invoice
|
|
144
138
|
|
|
145
|
-
### [item](docs/sdks/item/README.md)
|
|
146
|
-
|
|
147
|
-
* [create_accounting_item](docs/sdks/item/README.md#create_accounting_item) - Create an item
|
|
148
|
-
* [get_accounting_item](docs/sdks/item/README.md#get_accounting_item) - Retrieve an item
|
|
149
|
-
* [list_accounting_items](docs/sdks/item/README.md#list_accounting_items) - List all items
|
|
150
|
-
* [patch_accounting_item](docs/sdks/item/README.md#patch_accounting_item) - Update an item
|
|
151
|
-
* [remove_accounting_item](docs/sdks/item/README.md#remove_accounting_item) - Remove an item
|
|
152
|
-
* [update_accounting_item](docs/sdks/item/README.md#update_accounting_item) - Update an item
|
|
153
|
-
|
|
154
139
|
### [organization](docs/sdks/organization/README.md)
|
|
155
140
|
|
|
156
141
|
* [get_accounting_organization](docs/sdks/organization/README.md#get_accounting_organization) - Retrieve an organization
|
|
@@ -281,6 +266,69 @@ Description: <div align="left">
|
|
|
281
266
|
* [remove_ats_scorecard](docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
|
|
282
267
|
* [update_ats_scorecard](docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
|
|
283
268
|
|
|
269
|
+
### [commerce](docs/sdks/commerce/README.md)
|
|
270
|
+
|
|
271
|
+
* [create_commerce_collection](docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
|
|
272
|
+
* [create_commerce_inventory](docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
|
|
273
|
+
* [create_commerce_item](docs/sdks/commerce/README.md#create_commerce_item) - Create an item/product
|
|
274
|
+
* [create_commerce_location](docs/sdks/commerce/README.md#create_commerce_location) - Create a location
|
|
275
|
+
* [get_commerce_collection](docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
|
|
276
|
+
* [get_commerce_inventory](docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
277
|
+
* [get_commerce_item](docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item/product
|
|
278
|
+
* [get_commerce_location](docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
|
|
279
|
+
* [list_commerce_collections](docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
|
|
280
|
+
* [list_commerce_inventories](docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
|
|
281
|
+
* [list_commerce_items](docs/sdks/commerce/README.md#list_commerce_items) - List all items/products
|
|
282
|
+
* [list_commerce_locations](docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
|
|
283
|
+
* [patch_commerce_collection](docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
|
|
284
|
+
* [patch_commerce_inventory](docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
|
|
285
|
+
* [patch_commerce_item](docs/sdks/commerce/README.md#patch_commerce_item) - Update an item/product
|
|
286
|
+
* [patch_commerce_location](docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
|
|
287
|
+
* [remove_commerce_collection](docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
|
|
288
|
+
* [remove_commerce_inventory](docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
|
|
289
|
+
* [remove_commerce_item](docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item/product
|
|
290
|
+
* [remove_commerce_location](docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
|
|
291
|
+
* [update_commerce_collection](docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
|
|
292
|
+
* [update_commerce_inventory](docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
|
|
293
|
+
* [update_commerce_item](docs/sdks/commerce/README.md#update_commerce_item) - Update an item/product
|
|
294
|
+
* [update_commerce_location](docs/sdks/commerce/README.md#update_commerce_location) - Update a location
|
|
295
|
+
|
|
296
|
+
### [collection](docs/sdks/collection/README.md)
|
|
297
|
+
|
|
298
|
+
* [create_commerce_collection](docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
|
|
299
|
+
* [get_commerce_collection](docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
|
|
300
|
+
* [list_commerce_collections](docs/sdks/collection/README.md#list_commerce_collections) - List all collections
|
|
301
|
+
* [patch_commerce_collection](docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
|
|
302
|
+
* [remove_commerce_collection](docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
|
|
303
|
+
* [update_commerce_collection](docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
|
|
304
|
+
|
|
305
|
+
### [inventory](docs/sdks/inventory/README.md)
|
|
306
|
+
|
|
307
|
+
* [create_commerce_inventory](docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
|
|
308
|
+
* [get_commerce_inventory](docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
309
|
+
* [list_commerce_inventories](docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
|
|
310
|
+
* [patch_commerce_inventory](docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
|
|
311
|
+
* [remove_commerce_inventory](docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
|
|
312
|
+
* [update_commerce_inventory](docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
|
|
313
|
+
|
|
314
|
+
### [item](docs/sdks/item/README.md)
|
|
315
|
+
|
|
316
|
+
* [create_commerce_item](docs/sdks/item/README.md#create_commerce_item) - Create an item/product
|
|
317
|
+
* [get_commerce_item](docs/sdks/item/README.md#get_commerce_item) - Retrieve an item/product
|
|
318
|
+
* [list_commerce_items](docs/sdks/item/README.md#list_commerce_items) - List all items/products
|
|
319
|
+
* [patch_commerce_item](docs/sdks/item/README.md#patch_commerce_item) - Update an item/product
|
|
320
|
+
* [remove_commerce_item](docs/sdks/item/README.md#remove_commerce_item) - Remove an item/product
|
|
321
|
+
* [update_commerce_item](docs/sdks/item/README.md#update_commerce_item) - Update an item/product
|
|
322
|
+
|
|
323
|
+
### [location](docs/sdks/location/README.md)
|
|
324
|
+
|
|
325
|
+
* [create_commerce_location](docs/sdks/location/README.md#create_commerce_location) - Create a location
|
|
326
|
+
* [get_commerce_location](docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
|
|
327
|
+
* [list_commerce_locations](docs/sdks/location/README.md#list_commerce_locations) - List all locations
|
|
328
|
+
* [patch_commerce_location](docs/sdks/location/README.md#patch_commerce_location) - Update a location
|
|
329
|
+
* [remove_commerce_location](docs/sdks/location/README.md#remove_commerce_location) - Remove a location
|
|
330
|
+
* [update_commerce_location](docs/sdks/location/README.md#update_commerce_location) - Update a location
|
|
331
|
+
|
|
284
332
|
### [crm](docs/sdks/crm/README.md)
|
|
285
333
|
|
|
286
334
|
* [create_crm_company](docs/sdks/crm/README.md#create_crm_company) - Create a company
|
|
@@ -16,6 +16,8 @@ src/unified_to/ats.py
|
|
|
16
16
|
src/unified_to/auth.py
|
|
17
17
|
src/unified_to/call.py
|
|
18
18
|
src/unified_to/candidate.py
|
|
19
|
+
src/unified_to/collection.py
|
|
20
|
+
src/unified_to/commerce.py
|
|
19
21
|
src/unified_to/company.py
|
|
20
22
|
src/unified_to/connection.py
|
|
21
23
|
src/unified_to/contact.py
|
|
@@ -31,11 +33,13 @@ src/unified_to/group.py
|
|
|
31
33
|
src/unified_to/hris.py
|
|
32
34
|
src/unified_to/integration.py
|
|
33
35
|
src/unified_to/interview.py
|
|
36
|
+
src/unified_to/inventory.py
|
|
34
37
|
src/unified_to/invoice.py
|
|
35
38
|
src/unified_to/item.py
|
|
36
39
|
src/unified_to/job.py
|
|
37
40
|
src/unified_to/lead.py
|
|
38
41
|
src/unified_to/list.py
|
|
42
|
+
src/unified_to/location.py
|
|
39
43
|
src/unified_to/login.py
|
|
40
44
|
src/unified_to/martech.py
|
|
41
45
|
src/unified_to/member.py
|
|
@@ -63,7 +67,6 @@ src/unified_to/models/operations/__init__.py
|
|
|
63
67
|
src/unified_to/models/operations/createaccountingaccount.py
|
|
64
68
|
src/unified_to/models/operations/createaccountingcontact.py
|
|
65
69
|
src/unified_to/models/operations/createaccountinginvoice.py
|
|
66
|
-
src/unified_to/models/operations/createaccountingitem.py
|
|
67
70
|
src/unified_to/models/operations/createaccountingpayment.py
|
|
68
71
|
src/unified_to/models/operations/createaccountingtaxrate.py
|
|
69
72
|
src/unified_to/models/operations/createaccountingtransaction.py
|
|
@@ -73,6 +76,10 @@ src/unified_to/models/operations/createatsdocument.py
|
|
|
73
76
|
src/unified_to/models/operations/createatsinterview.py
|
|
74
77
|
src/unified_to/models/operations/createatsjob.py
|
|
75
78
|
src/unified_to/models/operations/createatsscorecard.py
|
|
79
|
+
src/unified_to/models/operations/createcommercecollection.py
|
|
80
|
+
src/unified_to/models/operations/createcommerceinventory.py
|
|
81
|
+
src/unified_to/models/operations/createcommerceitem.py
|
|
82
|
+
src/unified_to/models/operations/createcommercelocation.py
|
|
76
83
|
src/unified_to/models/operations/createcrmcompany.py
|
|
77
84
|
src/unified_to/models/operations/createcrmcontact.py
|
|
78
85
|
src/unified_to/models/operations/createcrmdeal.py
|
|
@@ -94,7 +101,6 @@ src/unified_to/models/operations/createunifiedwebhook.py
|
|
|
94
101
|
src/unified_to/models/operations/getaccountingaccount.py
|
|
95
102
|
src/unified_to/models/operations/getaccountingcontact.py
|
|
96
103
|
src/unified_to/models/operations/getaccountinginvoice.py
|
|
97
|
-
src/unified_to/models/operations/getaccountingitem.py
|
|
98
104
|
src/unified_to/models/operations/getaccountingorganization.py
|
|
99
105
|
src/unified_to/models/operations/getaccountingpayment.py
|
|
100
106
|
src/unified_to/models/operations/getaccountingtaxrate.py
|
|
@@ -105,6 +111,10 @@ src/unified_to/models/operations/getatsdocument.py
|
|
|
105
111
|
src/unified_to/models/operations/getatsinterview.py
|
|
106
112
|
src/unified_to/models/operations/getatsjob.py
|
|
107
113
|
src/unified_to/models/operations/getatsscorecard.py
|
|
114
|
+
src/unified_to/models/operations/getcommercecollection.py
|
|
115
|
+
src/unified_to/models/operations/getcommerceinventory.py
|
|
116
|
+
src/unified_to/models/operations/getcommerceitem.py
|
|
117
|
+
src/unified_to/models/operations/getcommercelocation.py
|
|
108
118
|
src/unified_to/models/operations/getcrmcompany.py
|
|
109
119
|
src/unified_to/models/operations/getcrmcontact.py
|
|
110
120
|
src/unified_to/models/operations/getcrmdeal.py
|
|
@@ -128,7 +138,6 @@ src/unified_to/models/operations/getunifiedwebhook.py
|
|
|
128
138
|
src/unified_to/models/operations/listaccountingaccounts.py
|
|
129
139
|
src/unified_to/models/operations/listaccountingcontacts.py
|
|
130
140
|
src/unified_to/models/operations/listaccountinginvoices.py
|
|
131
|
-
src/unified_to/models/operations/listaccountingitems.py
|
|
132
141
|
src/unified_to/models/operations/listaccountingorganizations.py
|
|
133
142
|
src/unified_to/models/operations/listaccountingpayments.py
|
|
134
143
|
src/unified_to/models/operations/listaccountingtaxrates.py
|
|
@@ -140,6 +149,10 @@ src/unified_to/models/operations/listatsdocuments.py
|
|
|
140
149
|
src/unified_to/models/operations/listatsinterviews.py
|
|
141
150
|
src/unified_to/models/operations/listatsjobs.py
|
|
142
151
|
src/unified_to/models/operations/listatsscorecards.py
|
|
152
|
+
src/unified_to/models/operations/listcommercecollections.py
|
|
153
|
+
src/unified_to/models/operations/listcommerceinventories.py
|
|
154
|
+
src/unified_to/models/operations/listcommerceitems.py
|
|
155
|
+
src/unified_to/models/operations/listcommercelocations.py
|
|
143
156
|
src/unified_to/models/operations/listcrmcompanies.py
|
|
144
157
|
src/unified_to/models/operations/listcrmcontacts.py
|
|
145
158
|
src/unified_to/models/operations/listcrmdeals.py
|
|
@@ -167,7 +180,6 @@ src/unified_to/models/operations/listunifiedwebhooks.py
|
|
|
167
180
|
src/unified_to/models/operations/patchaccountingaccount.py
|
|
168
181
|
src/unified_to/models/operations/patchaccountingcontact.py
|
|
169
182
|
src/unified_to/models/operations/patchaccountinginvoice.py
|
|
170
|
-
src/unified_to/models/operations/patchaccountingitem.py
|
|
171
183
|
src/unified_to/models/operations/patchaccountingpayment.py
|
|
172
184
|
src/unified_to/models/operations/patchaccountingtaxrate.py
|
|
173
185
|
src/unified_to/models/operations/patchaccountingtransaction.py
|
|
@@ -177,6 +189,10 @@ src/unified_to/models/operations/patchatsdocument.py
|
|
|
177
189
|
src/unified_to/models/operations/patchatsinterview.py
|
|
178
190
|
src/unified_to/models/operations/patchatsjob.py
|
|
179
191
|
src/unified_to/models/operations/patchatsscorecard.py
|
|
192
|
+
src/unified_to/models/operations/patchcommercecollection.py
|
|
193
|
+
src/unified_to/models/operations/patchcommerceinventory.py
|
|
194
|
+
src/unified_to/models/operations/patchcommerceitem.py
|
|
195
|
+
src/unified_to/models/operations/patchcommercelocation.py
|
|
180
196
|
src/unified_to/models/operations/patchcrmcompany.py
|
|
181
197
|
src/unified_to/models/operations/patchcrmcontact.py
|
|
182
198
|
src/unified_to/models/operations/patchcrmdeal.py
|
|
@@ -198,7 +214,6 @@ src/unified_to/models/operations/patchunifiedwebhooktrigger.py
|
|
|
198
214
|
src/unified_to/models/operations/removeaccountingaccount.py
|
|
199
215
|
src/unified_to/models/operations/removeaccountingcontact.py
|
|
200
216
|
src/unified_to/models/operations/removeaccountinginvoice.py
|
|
201
|
-
src/unified_to/models/operations/removeaccountingitem.py
|
|
202
217
|
src/unified_to/models/operations/removeaccountingpayment.py
|
|
203
218
|
src/unified_to/models/operations/removeaccountingtaxrate.py
|
|
204
219
|
src/unified_to/models/operations/removeaccountingtransaction.py
|
|
@@ -208,6 +223,10 @@ src/unified_to/models/operations/removeatsdocument.py
|
|
|
208
223
|
src/unified_to/models/operations/removeatsinterview.py
|
|
209
224
|
src/unified_to/models/operations/removeatsjob.py
|
|
210
225
|
src/unified_to/models/operations/removeatsscorecard.py
|
|
226
|
+
src/unified_to/models/operations/removecommercecollection.py
|
|
227
|
+
src/unified_to/models/operations/removecommerceinventory.py
|
|
228
|
+
src/unified_to/models/operations/removecommerceitem.py
|
|
229
|
+
src/unified_to/models/operations/removecommercelocation.py
|
|
211
230
|
src/unified_to/models/operations/removecrmcompany.py
|
|
212
231
|
src/unified_to/models/operations/removecrmcontact.py
|
|
213
232
|
src/unified_to/models/operations/removecrmdeal.py
|
|
@@ -229,7 +248,6 @@ src/unified_to/models/operations/removeunifiedwebhook.py
|
|
|
229
248
|
src/unified_to/models/operations/updateaccountingaccount.py
|
|
230
249
|
src/unified_to/models/operations/updateaccountingcontact.py
|
|
231
250
|
src/unified_to/models/operations/updateaccountinginvoice.py
|
|
232
|
-
src/unified_to/models/operations/updateaccountingitem.py
|
|
233
251
|
src/unified_to/models/operations/updateaccountingpayment.py
|
|
234
252
|
src/unified_to/models/operations/updateaccountingtaxrate.py
|
|
235
253
|
src/unified_to/models/operations/updateaccountingtransaction.py
|
|
@@ -239,6 +257,10 @@ src/unified_to/models/operations/updateatsdocument.py
|
|
|
239
257
|
src/unified_to/models/operations/updateatsinterview.py
|
|
240
258
|
src/unified_to/models/operations/updateatsjob.py
|
|
241
259
|
src/unified_to/models/operations/updateatsscorecard.py
|
|
260
|
+
src/unified_to/models/operations/updatecommercecollection.py
|
|
261
|
+
src/unified_to/models/operations/updatecommerceinventory.py
|
|
262
|
+
src/unified_to/models/operations/updatecommerceitem.py
|
|
263
|
+
src/unified_to/models/operations/updatecommercelocation.py
|
|
242
264
|
src/unified_to/models/operations/updatecrmcompany.py
|
|
243
265
|
src/unified_to/models/operations/updatecrmcontact.py
|
|
244
266
|
src/unified_to/models/operations/updatecrmdeal.py
|
|
@@ -262,7 +284,6 @@ src/unified_to/models/shared/accountingaccount.py
|
|
|
262
284
|
src/unified_to/models/shared/accountingcontact.py
|
|
263
285
|
src/unified_to/models/shared/accountingemail.py
|
|
264
286
|
src/unified_to/models/shared/accountinginvoice.py
|
|
265
|
-
src/unified_to/models/shared/accountingitem.py
|
|
266
287
|
src/unified_to/models/shared/accountinglineitem.py
|
|
267
288
|
src/unified_to/models/shared/accountingorganization.py
|
|
268
289
|
src/unified_to/models/shared/accountingpayment.py
|
|
@@ -282,6 +303,14 @@ src/unified_to/models/shared/atsjob.py
|
|
|
282
303
|
src/unified_to/models/shared/atsscorecard.py
|
|
283
304
|
src/unified_to/models/shared/atsstatus.py
|
|
284
305
|
src/unified_to/models/shared/atstelephone.py
|
|
306
|
+
src/unified_to/models/shared/commercecollection.py
|
|
307
|
+
src/unified_to/models/shared/commerceinventory.py
|
|
308
|
+
src/unified_to/models/shared/commerceitem.py
|
|
309
|
+
src/unified_to/models/shared/commerceitemmedia.py
|
|
310
|
+
src/unified_to/models/shared/commerceitemoption.py
|
|
311
|
+
src/unified_to/models/shared/commerceitemprice.py
|
|
312
|
+
src/unified_to/models/shared/commerceitemvariant.py
|
|
313
|
+
src/unified_to/models/shared/commercelocation.py
|
|
285
314
|
src/unified_to/models/shared/connection.py
|
|
286
315
|
src/unified_to/models/shared/crmcompany.py
|
|
287
316
|
src/unified_to/models/shared/crmcontact.py
|
|
@@ -309,6 +338,7 @@ src/unified_to/models/shared/property_accountingcontact_billing_address.py
|
|
|
309
338
|
src/unified_to/models/shared/property_accountingcontact_shipping_address.py
|
|
310
339
|
src/unified_to/models/shared/property_accountingorganization_address.py
|
|
311
340
|
src/unified_to/models/shared/property_atscandidate_address.py
|
|
341
|
+
src/unified_to/models/shared/property_commercelocation_address.py
|
|
312
342
|
src/unified_to/models/shared/property_connection_auth.py
|
|
313
343
|
src/unified_to/models/shared/property_connection_categories.py
|
|
314
344
|
src/unified_to/models/shared/property_connection_permissions.py
|