Unified-python-sdk 0.14.36__tar.gz → 0.15.0__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.36/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.15.0}/PKG-INFO +78 -26
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/README.md +77 -25
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/setup.py +4 -3
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0/src/Unified_python_sdk.egg-info}/PKG-INFO +78 -26
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/Unified_python_sdk.egg-info/SOURCES.txt +41 -7
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/Unified_python_sdk.egg-info/requires.txt +1 -1
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/accounting.py +0 -202
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/ats.py +66 -0
- Unified-python-sdk-0.15.0/src/unified_to/collection.py +216 -0
- Unified-python-sdk-0.15.0/src/unified_to/commerce.py +822 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/company.py +66 -0
- Unified-python-sdk-0.15.0/src/unified_to/inventory.py +216 -0
- Unified-python-sdk-0.15.0/src/unified_to/item.py +216 -0
- Unified-python-sdk-0.15.0/src/unified_to/location.py +216 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/__init__.py +221 -0
- Unified-python-sdk-0.14.36/src/unified_to/models/operations/createaccountingitem.py → Unified-python-sdk-0.15.0/src/unified_to/models/operations/createcommercecollection.py +6 -6
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/createcommerceinventory.py +30 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/createcommerceitem.py +30 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/createcommercelocation.py +30 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/getatscompany.py +33 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/getcommercecollection.py +33 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/getcommerceinventory.py +33 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/getcommerceitem.py +33 -0
- Unified-python-sdk-0.14.36/src/unified_to/models/operations/getaccountingitem.py → Unified-python-sdk-0.15.0/src/unified_to/models/operations/getcommercelocation.py +5 -5
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getunifiedintegrationauth.py +9 -1
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/listatscompanies.py +40 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/listcommercecollections.py +40 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/listcommerceinventories.py +40 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/listcommerceitems.py +40 -0
- Unified-python-sdk-0.14.36/src/unified_to/models/operations/listaccountingitems.py → Unified-python-sdk-0.15.0/src/unified_to/models/operations/listcommercelocations.py +4 -4
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listunifiedconnections.py +1 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listunifiedintegrations.py +1 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listunifiedintegrationworkspaces.py +1 -0
- Unified-python-sdk-0.14.36/src/unified_to/models/operations/patchaccountingitem.py → Unified-python-sdk-0.15.0/src/unified_to/models/operations/patchcommercecollection.py +7 -7
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/patchcommerceinventory.py +32 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/patchcommerceitem.py +32 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/patchcommercelocation.py +32 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/removecommercecollection.py +30 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/removecommerceinventory.py +30 -0
- Unified-python-sdk-0.14.36/src/unified_to/models/operations/removeaccountingitem.py → Unified-python-sdk-0.15.0/src/unified_to/models/operations/removecommerceitem.py +2 -2
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/removecommercelocation.py +30 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/updatecommercecollection.py +33 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/updatecommerceinventory.py +32 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/updatecommerceitem.py +32 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/operations/updatecommercelocation.py +32 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/__init__.py +96 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountinglineitem.py +0 -1
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingtransaction.py +0 -1
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atscandidate.py +1 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/atscompany.py +27 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atsjob.py +2 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/commercecollection.py +32 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/commerceinventory.py +24 -0
- Unified-python-sdk-0.14.36/src/unified_to/models/shared/accountingitem.py → Unified-python-sdk-0.15.0/src/unified_to/models/shared/commerceitem.py +11 -6
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/commerceitemmedia.py +25 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/commerceitemoption.py +18 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/commerceitemprice.py +17 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/commerceitemvariant.py +53 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/commercelocation.py +24 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/property_atscompany_address.py +22 -0
- Unified-python-sdk-0.15.0/src/unified_to/models/shared/property_commercelocation_address.py +22 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_connection_categories.py +1 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_connection_permissions.py +9 -1
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_integration_categories.py +1 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/webhook.py +5 -1
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/sdk.py +16 -4
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/sdkconfiguration.py +3 -3
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/utils/utils.py +1 -1
- Unified-python-sdk-0.14.36/src/unified_to/item.py +0 -216
- Unified-python-sdk-0.14.36/src/unified_to/models/operations/__init__.py +0 -201
- Unified-python-sdk-0.14.36/src/unified_to/models/operations/updateaccountingitem.py +0 -33
- Unified-python-sdk-0.14.36/src/unified_to/models/shared/__init__.py +0 -86
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/LICENSE.md +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/setup.cfg +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/Unified_python_sdk.egg-info/dependency_links.txt +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/Unified_python_sdk.egg-info/top_level.txt +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/__init__.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/account.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/apicall.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/application.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/applicationstatus.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/auth.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/call.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/candidate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/connection.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/contact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/crm.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/customer.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/deal.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/document.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/employee.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/enrich.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/event.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/file.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/group.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/hris.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/integration.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/interview.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/invoice.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/job.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/lead.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/list.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/login.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/martech.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/member.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/__init__.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/errors/__init__.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/errors/sdkerror.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createatsapplication.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createatscandidate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createatsdocument.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createatsinterview.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createatsjob.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createcrmcompany.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createcrmcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createcrmdeal.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createcrmevent.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createcrmlead.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createcrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createhrisemployee.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createhrisgroup.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createmartechlist.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createmartechmember.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createpassthrough.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createstoragefile.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createticketingnote.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createticketingticket.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createuccontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/createunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getaccountingorganization.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getatsapplication.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getatscandidate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getatsdocument.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getatsinterview.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getatsjob.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getcrmcompany.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getcrmcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getcrmdeal.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getcrmevent.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getcrmlead.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getcrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/gethrisemployee.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/gethrisgroup.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getmartechlist.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getmartechmember.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getstoragefile.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getticketingnote.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getticketingticket.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getuccontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getunifiedapicall.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getunifiedintegrationlogin.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/getunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listaccountingaccounts.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listaccountingcontacts.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listaccountinginvoices.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listaccountingorganizations.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listaccountingpayments.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listaccountingtaxrates.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listaccountingtransactions.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listatsapplications.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listatsapplicationstatuses.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listatscandidates.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listatsdocuments.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listatsinterviews.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listatsjobs.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listatsscorecards.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listcrmcompanies.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listcrmcontacts.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listcrmdeals.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listcrmevents.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listcrmleads.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listcrmpipelines.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listenrichcompanies.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listenrichpeople.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listhrisemployees.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listhrisgroups.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listmartechlists.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listmartechmembers.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listpassthroughs.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/liststoragefiles.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listticketingcustomers.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listticketingnotes.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listticketingtickets.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listuccalls.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listuccontacts.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listunifiedapicalls.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/listunifiedwebhooks.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchatsapplication.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchatscandidate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchatsdocument.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchatsinterview.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchatsjob.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchcrmcompany.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchcrmcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchcrmdeal.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchcrmevent.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchcrmlead.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchcrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchhrisemployee.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchhrisgroup.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchmartechlist.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchmartechmember.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchpassthrough.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchstoragefile.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchticketingnote.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchticketingticket.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchuccontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/patchunifiedwebhooktrigger.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeatsapplication.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeatscandidate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeatsdocument.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeatsinterview.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeatsjob.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removecrmcompany.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removecrmcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removecrmdeal.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removecrmevent.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removecrmlead.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removecrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removehrisemployee.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removehrisgroup.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removemartechlist.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removemartechmember.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removepassthrough.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removestoragefile.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeticketingnote.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeticketingticket.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeuccontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/removeunifiedwebhook.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateaccountingaccount.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateaccountingcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateaccountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateaccountingpayment.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateaccountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateaccountingtransaction.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateatsapplication.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateatscandidate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateatsdocument.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateatsinterview.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateatsjob.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateatsscorecard.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatecrmcompany.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatecrmcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatecrmdeal.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatecrmevent.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatecrmlead.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatecrmpipeline.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatehrisemployee.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatehrisgroup.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatemartechlist.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatemartechmember.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatepassthrough.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updatestoragefile.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateticketingnote.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateticketingticket.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateuccontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateunifiedconnection.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/operations/updateunifiedwebhooktrigger.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingaccount.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingemail.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountinginvoice.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingorganization.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingpayment.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingtaxrate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingtelephone.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/accountingtransactionlineitem.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/apicall.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atsaddress.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atsapplication.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atscompensation.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atsdocument.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atsemail.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atsinterview.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atsscorecard.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atsstatus.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/atstelephone.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/connection.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/crmcompany.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/crmcontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/crmdeal.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/crmemail.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/crmevent.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/crmlead.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/crmpipeline.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/crmtelephone.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/enrichcompany.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/enrichemail.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/enrichperson.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/enrichpersonworkhistory.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/enrichtelephone.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/hrisemail.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/hrisemployee.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/hrisgroup.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/hristelephone.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/integration.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/integrationsupport.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/marketingemail.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/marketinglist.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/marketingmember.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_accountingcontact_billing_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_accountingcontact_shipping_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_accountingorganization_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_atscandidate_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_connection_auth.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_crmcompany_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_crmcontact_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_crmevent_call.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_crmevent_email.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_crmevent_meeting.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_crmevent_note.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_crmevent_task.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_crmlead_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_enrichcompany_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_enrichperson_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_hrisemployee_address.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_storagepermission_roles.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/property_uccall_telephone.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/security.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/storagefile.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/storagepermission.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/ticketingcustomer.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/ticketingemail.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/ticketingnote.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/ticketingtelephone.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/ticketingticket.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/uccall.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/uccontact.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/ucemail.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/models/shared/uctelephone.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/note.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/organization.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/passthrough.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/payment.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/person.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/pipeline.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/scorecard.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/storage.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/taxrate.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/ticket.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/ticketing.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/transaction.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/uc.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/unified.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/utils/__init__.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/utils/retries.py +0 -0
- {Unified-python-sdk-0.14.36 → Unified-python-sdk-0.15.0}/src/unified_to/webhook.py +0 -0
{Unified-python-sdk-0.14.36/src/Unified_python_sdk.egg-info → Unified-python-sdk-0.15.0}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Unified-python-sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0
|
|
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
|
|
@@ -193,6 +178,7 @@ Description: <div align="left">
|
|
|
193
178
|
* [create_ats_scorecard](docs/sdks/ats/README.md#create_ats_scorecard) - Create a scorecard
|
|
194
179
|
* [get_ats_application](docs/sdks/ats/README.md#get_ats_application) - Retrieve an application
|
|
195
180
|
* [get_ats_candidate](docs/sdks/ats/README.md#get_ats_candidate) - Retrieve a candidate
|
|
181
|
+
* [get_ats_company](docs/sdks/ats/README.md#get_ats_company) - Retrieve a company
|
|
196
182
|
* [get_ats_document](docs/sdks/ats/README.md#get_ats_document) - Retrieve a document
|
|
197
183
|
* [get_ats_interview](docs/sdks/ats/README.md#get_ats_interview) - Retrieve a interview
|
|
198
184
|
* [get_ats_job](docs/sdks/ats/README.md#get_ats_job) - Retrieve a job
|
|
@@ -200,6 +186,7 @@ Description: <div align="left">
|
|
|
200
186
|
* [list_ats_applications](docs/sdks/ats/README.md#list_ats_applications) - List all applications
|
|
201
187
|
* [list_ats_applicationstatuses](docs/sdks/ats/README.md#list_ats_applicationstatuses) - List all application statuses
|
|
202
188
|
* [list_ats_candidates](docs/sdks/ats/README.md#list_ats_candidates) - List all candidates
|
|
189
|
+
* [list_ats_companies](docs/sdks/ats/README.md#list_ats_companies) - List all companies
|
|
203
190
|
* [list_ats_documents](docs/sdks/ats/README.md#list_ats_documents) - List all documents
|
|
204
191
|
* [list_ats_interviews](docs/sdks/ats/README.md#list_ats_interviews) - List all interviews
|
|
205
192
|
* [list_ats_jobs](docs/sdks/ats/README.md#list_ats_jobs) - List all jobs
|
|
@@ -245,6 +232,18 @@ Description: <div align="left">
|
|
|
245
232
|
* [remove_ats_candidate](docs/sdks/candidate/README.md#remove_ats_candidate) - Remove a candidate
|
|
246
233
|
* [update_ats_candidate](docs/sdks/candidate/README.md#update_ats_candidate) - Update a candidate
|
|
247
234
|
|
|
235
|
+
### [company](docs/sdks/company/README.md)
|
|
236
|
+
|
|
237
|
+
* [create_crm_company](docs/sdks/company/README.md#create_crm_company) - Create a company
|
|
238
|
+
* [get_ats_company](docs/sdks/company/README.md#get_ats_company) - Retrieve a company
|
|
239
|
+
* [get_crm_company](docs/sdks/company/README.md#get_crm_company) - Retrieve a company
|
|
240
|
+
* [list_ats_companies](docs/sdks/company/README.md#list_ats_companies) - List all companies
|
|
241
|
+
* [list_crm_companies](docs/sdks/company/README.md#list_crm_companies) - List all companies
|
|
242
|
+
* [list_enrich_companies](docs/sdks/company/README.md#list_enrich_companies) - Retrieve enrichment information for a company
|
|
243
|
+
* [patch_crm_company](docs/sdks/company/README.md#patch_crm_company) - Update a company
|
|
244
|
+
* [remove_crm_company](docs/sdks/company/README.md#remove_crm_company) - Remove a company
|
|
245
|
+
* [update_crm_company](docs/sdks/company/README.md#update_crm_company) - Update a company
|
|
246
|
+
|
|
248
247
|
### [document](docs/sdks/document/README.md)
|
|
249
248
|
|
|
250
249
|
* [create_ats_document](docs/sdks/document/README.md#create_ats_document) - Create a document
|
|
@@ -281,6 +280,69 @@ Description: <div align="left">
|
|
|
281
280
|
* [remove_ats_scorecard](docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
|
|
282
281
|
* [update_ats_scorecard](docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
|
|
283
282
|
|
|
283
|
+
### [commerce](docs/sdks/commerce/README.md)
|
|
284
|
+
|
|
285
|
+
* [create_commerce_collection](docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
|
|
286
|
+
* [create_commerce_inventory](docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
|
|
287
|
+
* [create_commerce_item](docs/sdks/commerce/README.md#create_commerce_item) - Create an item/product
|
|
288
|
+
* [create_commerce_location](docs/sdks/commerce/README.md#create_commerce_location) - Create a location
|
|
289
|
+
* [get_commerce_collection](docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
|
|
290
|
+
* [get_commerce_inventory](docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
291
|
+
* [get_commerce_item](docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item/product
|
|
292
|
+
* [get_commerce_location](docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
|
|
293
|
+
* [list_commerce_collections](docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
|
|
294
|
+
* [list_commerce_inventories](docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
|
|
295
|
+
* [list_commerce_items](docs/sdks/commerce/README.md#list_commerce_items) - List all items/products
|
|
296
|
+
* [list_commerce_locations](docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
|
|
297
|
+
* [patch_commerce_collection](docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
|
|
298
|
+
* [patch_commerce_inventory](docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
|
|
299
|
+
* [patch_commerce_item](docs/sdks/commerce/README.md#patch_commerce_item) - Update an item/product
|
|
300
|
+
* [patch_commerce_location](docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
|
|
301
|
+
* [remove_commerce_collection](docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
|
|
302
|
+
* [remove_commerce_inventory](docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
|
|
303
|
+
* [remove_commerce_item](docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item/product
|
|
304
|
+
* [remove_commerce_location](docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
|
|
305
|
+
* [update_commerce_collection](docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
|
|
306
|
+
* [update_commerce_inventory](docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
|
|
307
|
+
* [update_commerce_item](docs/sdks/commerce/README.md#update_commerce_item) - Update an item/product
|
|
308
|
+
* [update_commerce_location](docs/sdks/commerce/README.md#update_commerce_location) - Update a location
|
|
309
|
+
|
|
310
|
+
### [collection](docs/sdks/collection/README.md)
|
|
311
|
+
|
|
312
|
+
* [create_commerce_collection](docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
|
|
313
|
+
* [get_commerce_collection](docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
|
|
314
|
+
* [list_commerce_collections](docs/sdks/collection/README.md#list_commerce_collections) - List all collections
|
|
315
|
+
* [patch_commerce_collection](docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
|
|
316
|
+
* [remove_commerce_collection](docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
|
|
317
|
+
* [update_commerce_collection](docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
|
|
318
|
+
|
|
319
|
+
### [inventory](docs/sdks/inventory/README.md)
|
|
320
|
+
|
|
321
|
+
* [create_commerce_inventory](docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
|
|
322
|
+
* [get_commerce_inventory](docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
323
|
+
* [list_commerce_inventories](docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
|
|
324
|
+
* [patch_commerce_inventory](docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
|
|
325
|
+
* [remove_commerce_inventory](docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
|
|
326
|
+
* [update_commerce_inventory](docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
|
|
327
|
+
|
|
328
|
+
### [item](docs/sdks/item/README.md)
|
|
329
|
+
|
|
330
|
+
* [create_commerce_item](docs/sdks/item/README.md#create_commerce_item) - Create an item/product
|
|
331
|
+
* [get_commerce_item](docs/sdks/item/README.md#get_commerce_item) - Retrieve an item/product
|
|
332
|
+
* [list_commerce_items](docs/sdks/item/README.md#list_commerce_items) - List all items/products
|
|
333
|
+
* [patch_commerce_item](docs/sdks/item/README.md#patch_commerce_item) - Update an item/product
|
|
334
|
+
* [remove_commerce_item](docs/sdks/item/README.md#remove_commerce_item) - Remove an item/product
|
|
335
|
+
* [update_commerce_item](docs/sdks/item/README.md#update_commerce_item) - Update an item/product
|
|
336
|
+
|
|
337
|
+
### [location](docs/sdks/location/README.md)
|
|
338
|
+
|
|
339
|
+
* [create_commerce_location](docs/sdks/location/README.md#create_commerce_location) - Create a location
|
|
340
|
+
* [get_commerce_location](docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
|
|
341
|
+
* [list_commerce_locations](docs/sdks/location/README.md#list_commerce_locations) - List all locations
|
|
342
|
+
* [patch_commerce_location](docs/sdks/location/README.md#patch_commerce_location) - Update a location
|
|
343
|
+
* [remove_commerce_location](docs/sdks/location/README.md#remove_commerce_location) - Remove a location
|
|
344
|
+
* [update_commerce_location](docs/sdks/location/README.md#update_commerce_location) - Update a location
|
|
345
|
+
|
|
284
346
|
### [crm](docs/sdks/crm/README.md)
|
|
285
347
|
|
|
286
348
|
* [create_crm_company](docs/sdks/crm/README.md#create_crm_company) - Create a company
|
|
@@ -320,16 +382,6 @@ Description: <div align="left">
|
|
|
320
382
|
* [update_crm_lead](docs/sdks/crm/README.md#update_crm_lead) - Update a lead
|
|
321
383
|
* [update_crm_pipeline](docs/sdks/crm/README.md#update_crm_pipeline) - Update a pipeline
|
|
322
384
|
|
|
323
|
-
### [company](docs/sdks/company/README.md)
|
|
324
|
-
|
|
325
|
-
* [create_crm_company](docs/sdks/company/README.md#create_crm_company) - Create a company
|
|
326
|
-
* [get_crm_company](docs/sdks/company/README.md#get_crm_company) - Retrieve a company
|
|
327
|
-
* [list_crm_companies](docs/sdks/company/README.md#list_crm_companies) - List all companies
|
|
328
|
-
* [list_enrich_companies](docs/sdks/company/README.md#list_enrich_companies) - Retrieve enrichment information for a company
|
|
329
|
-
* [patch_crm_company](docs/sdks/company/README.md#patch_crm_company) - Update a company
|
|
330
|
-
* [remove_crm_company](docs/sdks/company/README.md#remove_crm_company) - Remove a company
|
|
331
|
-
* [update_crm_company](docs/sdks/company/README.md#update_crm_company) - Update a company
|
|
332
|
-
|
|
333
385
|
### [deal](docs/sdks/deal/README.md)
|
|
334
386
|
|
|
335
387
|
* [create_crm_deal](docs/sdks/deal/README.md#create_crm_deal) - Create a deal
|
|
@@ -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
|
|
@@ -186,6 +171,7 @@ if res.accounting_account is not None:
|
|
|
186
171
|
* [create_ats_scorecard](docs/sdks/ats/README.md#create_ats_scorecard) - Create a scorecard
|
|
187
172
|
* [get_ats_application](docs/sdks/ats/README.md#get_ats_application) - Retrieve an application
|
|
188
173
|
* [get_ats_candidate](docs/sdks/ats/README.md#get_ats_candidate) - Retrieve a candidate
|
|
174
|
+
* [get_ats_company](docs/sdks/ats/README.md#get_ats_company) - Retrieve a company
|
|
189
175
|
* [get_ats_document](docs/sdks/ats/README.md#get_ats_document) - Retrieve a document
|
|
190
176
|
* [get_ats_interview](docs/sdks/ats/README.md#get_ats_interview) - Retrieve a interview
|
|
191
177
|
* [get_ats_job](docs/sdks/ats/README.md#get_ats_job) - Retrieve a job
|
|
@@ -193,6 +179,7 @@ if res.accounting_account is not None:
|
|
|
193
179
|
* [list_ats_applications](docs/sdks/ats/README.md#list_ats_applications) - List all applications
|
|
194
180
|
* [list_ats_applicationstatuses](docs/sdks/ats/README.md#list_ats_applicationstatuses) - List all application statuses
|
|
195
181
|
* [list_ats_candidates](docs/sdks/ats/README.md#list_ats_candidates) - List all candidates
|
|
182
|
+
* [list_ats_companies](docs/sdks/ats/README.md#list_ats_companies) - List all companies
|
|
196
183
|
* [list_ats_documents](docs/sdks/ats/README.md#list_ats_documents) - List all documents
|
|
197
184
|
* [list_ats_interviews](docs/sdks/ats/README.md#list_ats_interviews) - List all interviews
|
|
198
185
|
* [list_ats_jobs](docs/sdks/ats/README.md#list_ats_jobs) - List all jobs
|
|
@@ -238,6 +225,18 @@ if res.accounting_account is not None:
|
|
|
238
225
|
* [remove_ats_candidate](docs/sdks/candidate/README.md#remove_ats_candidate) - Remove a candidate
|
|
239
226
|
* [update_ats_candidate](docs/sdks/candidate/README.md#update_ats_candidate) - Update a candidate
|
|
240
227
|
|
|
228
|
+
### [company](docs/sdks/company/README.md)
|
|
229
|
+
|
|
230
|
+
* [create_crm_company](docs/sdks/company/README.md#create_crm_company) - Create a company
|
|
231
|
+
* [get_ats_company](docs/sdks/company/README.md#get_ats_company) - Retrieve a company
|
|
232
|
+
* [get_crm_company](docs/sdks/company/README.md#get_crm_company) - Retrieve a company
|
|
233
|
+
* [list_ats_companies](docs/sdks/company/README.md#list_ats_companies) - List all companies
|
|
234
|
+
* [list_crm_companies](docs/sdks/company/README.md#list_crm_companies) - List all companies
|
|
235
|
+
* [list_enrich_companies](docs/sdks/company/README.md#list_enrich_companies) - Retrieve enrichment information for a company
|
|
236
|
+
* [patch_crm_company](docs/sdks/company/README.md#patch_crm_company) - Update a company
|
|
237
|
+
* [remove_crm_company](docs/sdks/company/README.md#remove_crm_company) - Remove a company
|
|
238
|
+
* [update_crm_company](docs/sdks/company/README.md#update_crm_company) - Update a company
|
|
239
|
+
|
|
241
240
|
### [document](docs/sdks/document/README.md)
|
|
242
241
|
|
|
243
242
|
* [create_ats_document](docs/sdks/document/README.md#create_ats_document) - Create a document
|
|
@@ -274,6 +273,69 @@ if res.accounting_account is not None:
|
|
|
274
273
|
* [remove_ats_scorecard](docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
|
|
275
274
|
* [update_ats_scorecard](docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
|
|
276
275
|
|
|
276
|
+
### [commerce](docs/sdks/commerce/README.md)
|
|
277
|
+
|
|
278
|
+
* [create_commerce_collection](docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
|
|
279
|
+
* [create_commerce_inventory](docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
|
|
280
|
+
* [create_commerce_item](docs/sdks/commerce/README.md#create_commerce_item) - Create an item/product
|
|
281
|
+
* [create_commerce_location](docs/sdks/commerce/README.md#create_commerce_location) - Create a location
|
|
282
|
+
* [get_commerce_collection](docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
|
|
283
|
+
* [get_commerce_inventory](docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
284
|
+
* [get_commerce_item](docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item/product
|
|
285
|
+
* [get_commerce_location](docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
|
|
286
|
+
* [list_commerce_collections](docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
|
|
287
|
+
* [list_commerce_inventories](docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
|
|
288
|
+
* [list_commerce_items](docs/sdks/commerce/README.md#list_commerce_items) - List all items/products
|
|
289
|
+
* [list_commerce_locations](docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
|
|
290
|
+
* [patch_commerce_collection](docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
|
|
291
|
+
* [patch_commerce_inventory](docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
|
|
292
|
+
* [patch_commerce_item](docs/sdks/commerce/README.md#patch_commerce_item) - Update an item/product
|
|
293
|
+
* [patch_commerce_location](docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
|
|
294
|
+
* [remove_commerce_collection](docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
|
|
295
|
+
* [remove_commerce_inventory](docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
|
|
296
|
+
* [remove_commerce_item](docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item/product
|
|
297
|
+
* [remove_commerce_location](docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
|
|
298
|
+
* [update_commerce_collection](docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
|
|
299
|
+
* [update_commerce_inventory](docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
|
|
300
|
+
* [update_commerce_item](docs/sdks/commerce/README.md#update_commerce_item) - Update an item/product
|
|
301
|
+
* [update_commerce_location](docs/sdks/commerce/README.md#update_commerce_location) - Update a location
|
|
302
|
+
|
|
303
|
+
### [collection](docs/sdks/collection/README.md)
|
|
304
|
+
|
|
305
|
+
* [create_commerce_collection](docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
|
|
306
|
+
* [get_commerce_collection](docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
|
|
307
|
+
* [list_commerce_collections](docs/sdks/collection/README.md#list_commerce_collections) - List all collections
|
|
308
|
+
* [patch_commerce_collection](docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
|
|
309
|
+
* [remove_commerce_collection](docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
|
|
310
|
+
* [update_commerce_collection](docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
|
|
311
|
+
|
|
312
|
+
### [inventory](docs/sdks/inventory/README.md)
|
|
313
|
+
|
|
314
|
+
* [create_commerce_inventory](docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
|
|
315
|
+
* [get_commerce_inventory](docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
316
|
+
* [list_commerce_inventories](docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
|
|
317
|
+
* [patch_commerce_inventory](docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
|
|
318
|
+
* [remove_commerce_inventory](docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
|
|
319
|
+
* [update_commerce_inventory](docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
|
|
320
|
+
|
|
321
|
+
### [item](docs/sdks/item/README.md)
|
|
322
|
+
|
|
323
|
+
* [create_commerce_item](docs/sdks/item/README.md#create_commerce_item) - Create an item/product
|
|
324
|
+
* [get_commerce_item](docs/sdks/item/README.md#get_commerce_item) - Retrieve an item/product
|
|
325
|
+
* [list_commerce_items](docs/sdks/item/README.md#list_commerce_items) - List all items/products
|
|
326
|
+
* [patch_commerce_item](docs/sdks/item/README.md#patch_commerce_item) - Update an item/product
|
|
327
|
+
* [remove_commerce_item](docs/sdks/item/README.md#remove_commerce_item) - Remove an item/product
|
|
328
|
+
* [update_commerce_item](docs/sdks/item/README.md#update_commerce_item) - Update an item/product
|
|
329
|
+
|
|
330
|
+
### [location](docs/sdks/location/README.md)
|
|
331
|
+
|
|
332
|
+
* [create_commerce_location](docs/sdks/location/README.md#create_commerce_location) - Create a location
|
|
333
|
+
* [get_commerce_location](docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
|
|
334
|
+
* [list_commerce_locations](docs/sdks/location/README.md#list_commerce_locations) - List all locations
|
|
335
|
+
* [patch_commerce_location](docs/sdks/location/README.md#patch_commerce_location) - Update a location
|
|
336
|
+
* [remove_commerce_location](docs/sdks/location/README.md#remove_commerce_location) - Remove a location
|
|
337
|
+
* [update_commerce_location](docs/sdks/location/README.md#update_commerce_location) - Update a location
|
|
338
|
+
|
|
277
339
|
### [crm](docs/sdks/crm/README.md)
|
|
278
340
|
|
|
279
341
|
* [create_crm_company](docs/sdks/crm/README.md#create_crm_company) - Create a company
|
|
@@ -313,16 +375,6 @@ if res.accounting_account is not None:
|
|
|
313
375
|
* [update_crm_lead](docs/sdks/crm/README.md#update_crm_lead) - Update a lead
|
|
314
376
|
* [update_crm_pipeline](docs/sdks/crm/README.md#update_crm_pipeline) - Update a pipeline
|
|
315
377
|
|
|
316
|
-
### [company](docs/sdks/company/README.md)
|
|
317
|
-
|
|
318
|
-
* [create_crm_company](docs/sdks/company/README.md#create_crm_company) - Create a company
|
|
319
|
-
* [get_crm_company](docs/sdks/company/README.md#get_crm_company) - Retrieve a company
|
|
320
|
-
* [list_crm_companies](docs/sdks/company/README.md#list_crm_companies) - List all companies
|
|
321
|
-
* [list_enrich_companies](docs/sdks/company/README.md#list_enrich_companies) - Retrieve enrichment information for a company
|
|
322
|
-
* [patch_crm_company](docs/sdks/company/README.md#patch_crm_company) - Update a company
|
|
323
|
-
* [remove_crm_company](docs/sdks/company/README.md#remove_crm_company) - Remove a company
|
|
324
|
-
* [update_crm_company](docs/sdks/company/README.md#update_crm_company) - Update a company
|
|
325
|
-
|
|
326
378
|
### [deal](docs/sdks/deal/README.md)
|
|
327
379
|
|
|
328
380
|
* [create_crm_deal](docs/sdks/deal/README.md#create_crm_deal) - Create a deal
|
|
@@ -10,7 +10,7 @@ except FileNotFoundError:
|
|
|
10
10
|
|
|
11
11
|
setuptools.setup(
|
|
12
12
|
name="Unified-python-sdk",
|
|
13
|
-
version="0.
|
|
13
|
+
version="0.15.0",
|
|
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.36 → Unified-python-sdk-0.15.0/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.
|
|
3
|
+
Version: 0.15.0
|
|
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
|
|
@@ -193,6 +178,7 @@ Description: <div align="left">
|
|
|
193
178
|
* [create_ats_scorecard](docs/sdks/ats/README.md#create_ats_scorecard) - Create a scorecard
|
|
194
179
|
* [get_ats_application](docs/sdks/ats/README.md#get_ats_application) - Retrieve an application
|
|
195
180
|
* [get_ats_candidate](docs/sdks/ats/README.md#get_ats_candidate) - Retrieve a candidate
|
|
181
|
+
* [get_ats_company](docs/sdks/ats/README.md#get_ats_company) - Retrieve a company
|
|
196
182
|
* [get_ats_document](docs/sdks/ats/README.md#get_ats_document) - Retrieve a document
|
|
197
183
|
* [get_ats_interview](docs/sdks/ats/README.md#get_ats_interview) - Retrieve a interview
|
|
198
184
|
* [get_ats_job](docs/sdks/ats/README.md#get_ats_job) - Retrieve a job
|
|
@@ -200,6 +186,7 @@ Description: <div align="left">
|
|
|
200
186
|
* [list_ats_applications](docs/sdks/ats/README.md#list_ats_applications) - List all applications
|
|
201
187
|
* [list_ats_applicationstatuses](docs/sdks/ats/README.md#list_ats_applicationstatuses) - List all application statuses
|
|
202
188
|
* [list_ats_candidates](docs/sdks/ats/README.md#list_ats_candidates) - List all candidates
|
|
189
|
+
* [list_ats_companies](docs/sdks/ats/README.md#list_ats_companies) - List all companies
|
|
203
190
|
* [list_ats_documents](docs/sdks/ats/README.md#list_ats_documents) - List all documents
|
|
204
191
|
* [list_ats_interviews](docs/sdks/ats/README.md#list_ats_interviews) - List all interviews
|
|
205
192
|
* [list_ats_jobs](docs/sdks/ats/README.md#list_ats_jobs) - List all jobs
|
|
@@ -245,6 +232,18 @@ Description: <div align="left">
|
|
|
245
232
|
* [remove_ats_candidate](docs/sdks/candidate/README.md#remove_ats_candidate) - Remove a candidate
|
|
246
233
|
* [update_ats_candidate](docs/sdks/candidate/README.md#update_ats_candidate) - Update a candidate
|
|
247
234
|
|
|
235
|
+
### [company](docs/sdks/company/README.md)
|
|
236
|
+
|
|
237
|
+
* [create_crm_company](docs/sdks/company/README.md#create_crm_company) - Create a company
|
|
238
|
+
* [get_ats_company](docs/sdks/company/README.md#get_ats_company) - Retrieve a company
|
|
239
|
+
* [get_crm_company](docs/sdks/company/README.md#get_crm_company) - Retrieve a company
|
|
240
|
+
* [list_ats_companies](docs/sdks/company/README.md#list_ats_companies) - List all companies
|
|
241
|
+
* [list_crm_companies](docs/sdks/company/README.md#list_crm_companies) - List all companies
|
|
242
|
+
* [list_enrich_companies](docs/sdks/company/README.md#list_enrich_companies) - Retrieve enrichment information for a company
|
|
243
|
+
* [patch_crm_company](docs/sdks/company/README.md#patch_crm_company) - Update a company
|
|
244
|
+
* [remove_crm_company](docs/sdks/company/README.md#remove_crm_company) - Remove a company
|
|
245
|
+
* [update_crm_company](docs/sdks/company/README.md#update_crm_company) - Update a company
|
|
246
|
+
|
|
248
247
|
### [document](docs/sdks/document/README.md)
|
|
249
248
|
|
|
250
249
|
* [create_ats_document](docs/sdks/document/README.md#create_ats_document) - Create a document
|
|
@@ -281,6 +280,69 @@ Description: <div align="left">
|
|
|
281
280
|
* [remove_ats_scorecard](docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
|
|
282
281
|
* [update_ats_scorecard](docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
|
|
283
282
|
|
|
283
|
+
### [commerce](docs/sdks/commerce/README.md)
|
|
284
|
+
|
|
285
|
+
* [create_commerce_collection](docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
|
|
286
|
+
* [create_commerce_inventory](docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
|
|
287
|
+
* [create_commerce_item](docs/sdks/commerce/README.md#create_commerce_item) - Create an item/product
|
|
288
|
+
* [create_commerce_location](docs/sdks/commerce/README.md#create_commerce_location) - Create a location
|
|
289
|
+
* [get_commerce_collection](docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
|
|
290
|
+
* [get_commerce_inventory](docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
291
|
+
* [get_commerce_item](docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item/product
|
|
292
|
+
* [get_commerce_location](docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
|
|
293
|
+
* [list_commerce_collections](docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
|
|
294
|
+
* [list_commerce_inventories](docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
|
|
295
|
+
* [list_commerce_items](docs/sdks/commerce/README.md#list_commerce_items) - List all items/products
|
|
296
|
+
* [list_commerce_locations](docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
|
|
297
|
+
* [patch_commerce_collection](docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
|
|
298
|
+
* [patch_commerce_inventory](docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
|
|
299
|
+
* [patch_commerce_item](docs/sdks/commerce/README.md#patch_commerce_item) - Update an item/product
|
|
300
|
+
* [patch_commerce_location](docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
|
|
301
|
+
* [remove_commerce_collection](docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
|
|
302
|
+
* [remove_commerce_inventory](docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
|
|
303
|
+
* [remove_commerce_item](docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item/product
|
|
304
|
+
* [remove_commerce_location](docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
|
|
305
|
+
* [update_commerce_collection](docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
|
|
306
|
+
* [update_commerce_inventory](docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
|
|
307
|
+
* [update_commerce_item](docs/sdks/commerce/README.md#update_commerce_item) - Update an item/product
|
|
308
|
+
* [update_commerce_location](docs/sdks/commerce/README.md#update_commerce_location) - Update a location
|
|
309
|
+
|
|
310
|
+
### [collection](docs/sdks/collection/README.md)
|
|
311
|
+
|
|
312
|
+
* [create_commerce_collection](docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
|
|
313
|
+
* [get_commerce_collection](docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
|
|
314
|
+
* [list_commerce_collections](docs/sdks/collection/README.md#list_commerce_collections) - List all collections
|
|
315
|
+
* [patch_commerce_collection](docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
|
|
316
|
+
* [remove_commerce_collection](docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
|
|
317
|
+
* [update_commerce_collection](docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
|
|
318
|
+
|
|
319
|
+
### [inventory](docs/sdks/inventory/README.md)
|
|
320
|
+
|
|
321
|
+
* [create_commerce_inventory](docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
|
|
322
|
+
* [get_commerce_inventory](docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
323
|
+
* [list_commerce_inventories](docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
|
|
324
|
+
* [patch_commerce_inventory](docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
|
|
325
|
+
* [remove_commerce_inventory](docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
|
|
326
|
+
* [update_commerce_inventory](docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
|
|
327
|
+
|
|
328
|
+
### [item](docs/sdks/item/README.md)
|
|
329
|
+
|
|
330
|
+
* [create_commerce_item](docs/sdks/item/README.md#create_commerce_item) - Create an item/product
|
|
331
|
+
* [get_commerce_item](docs/sdks/item/README.md#get_commerce_item) - Retrieve an item/product
|
|
332
|
+
* [list_commerce_items](docs/sdks/item/README.md#list_commerce_items) - List all items/products
|
|
333
|
+
* [patch_commerce_item](docs/sdks/item/README.md#patch_commerce_item) - Update an item/product
|
|
334
|
+
* [remove_commerce_item](docs/sdks/item/README.md#remove_commerce_item) - Remove an item/product
|
|
335
|
+
* [update_commerce_item](docs/sdks/item/README.md#update_commerce_item) - Update an item/product
|
|
336
|
+
|
|
337
|
+
### [location](docs/sdks/location/README.md)
|
|
338
|
+
|
|
339
|
+
* [create_commerce_location](docs/sdks/location/README.md#create_commerce_location) - Create a location
|
|
340
|
+
* [get_commerce_location](docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
|
|
341
|
+
* [list_commerce_locations](docs/sdks/location/README.md#list_commerce_locations) - List all locations
|
|
342
|
+
* [patch_commerce_location](docs/sdks/location/README.md#patch_commerce_location) - Update a location
|
|
343
|
+
* [remove_commerce_location](docs/sdks/location/README.md#remove_commerce_location) - Remove a location
|
|
344
|
+
* [update_commerce_location](docs/sdks/location/README.md#update_commerce_location) - Update a location
|
|
345
|
+
|
|
284
346
|
### [crm](docs/sdks/crm/README.md)
|
|
285
347
|
|
|
286
348
|
* [create_crm_company](docs/sdks/crm/README.md#create_crm_company) - Create a company
|
|
@@ -320,16 +382,6 @@ Description: <div align="left">
|
|
|
320
382
|
* [update_crm_lead](docs/sdks/crm/README.md#update_crm_lead) - Update a lead
|
|
321
383
|
* [update_crm_pipeline](docs/sdks/crm/README.md#update_crm_pipeline) - Update a pipeline
|
|
322
384
|
|
|
323
|
-
### [company](docs/sdks/company/README.md)
|
|
324
|
-
|
|
325
|
-
* [create_crm_company](docs/sdks/company/README.md#create_crm_company) - Create a company
|
|
326
|
-
* [get_crm_company](docs/sdks/company/README.md#get_crm_company) - Retrieve a company
|
|
327
|
-
* [list_crm_companies](docs/sdks/company/README.md#list_crm_companies) - List all companies
|
|
328
|
-
* [list_enrich_companies](docs/sdks/company/README.md#list_enrich_companies) - Retrieve enrichment information for a company
|
|
329
|
-
* [patch_crm_company](docs/sdks/company/README.md#patch_crm_company) - Update a company
|
|
330
|
-
* [remove_crm_company](docs/sdks/company/README.md#remove_crm_company) - Remove a company
|
|
331
|
-
* [update_crm_company](docs/sdks/company/README.md#update_crm_company) - Update a company
|
|
332
|
-
|
|
333
385
|
### [deal](docs/sdks/deal/README.md)
|
|
334
386
|
|
|
335
387
|
* [create_crm_deal](docs/sdks/deal/README.md#create_crm_deal) - Create a deal
|