Skip to content

Commit

Permalink
Merge pull request #75 from HubSpot/feature/regen
Browse files Browse the repository at this point in the history
Missing object and association type
  • Loading branch information
plaurynovich-hubspot authored Oct 7, 2021
2 parents 3b68d9a + f5d18d4 commit 1c87274
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
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"

0 comments on commit 1c87274

Please sign in to comment.