Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing object and association type #75

Merged
merged 3 commits into from
Oct 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/HubSpot/hubspot-api-python/compare/v4.0.0...HEAD)
## [Unreleased](https://github.com/HubSpot/hubspot-api-python/compare/v4.0.1...HEAD)

## [4.0.1](https://github.com/HubSpot/hubspot-api-python/compare/v4.0.0...v4.0.1) - 2021-10-07

### Added

- missing object_type and account_type (were removed during regen)

## [4.0.0](https://github.com/HubSpot/hubspot-api-python/compare/v3.8.2...v4.0.0) - 2021-09-08

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0
4.0.1
2 changes: 2 additions & 0 deletions hubspot/crm/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .object_type import ObjectType
from .association_type import AssociationType
3 changes: 3 additions & 0 deletions hubspot/crm/association_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class AssociationType:
COMPANY_TO_CONTACT = "company_to_contact"
CONTACT_TO_DEAL = "contact_to_deal"
5 changes: 5 additions & 0 deletions hubspot/crm/object_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class ObjectType:
CONTACTS = "CONTACTS"
COMPANIES = "COMPANIES"
DEALS = "DEALS"
TICKETS = "TICKETS"