Skip to content

Commit 1c87274

Browse files
Merge pull request #75 from HubSpot/feature/regen
Missing object and association type
2 parents 3b68d9a + f5d18d4 commit 1c87274

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

Diff for: CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/HubSpot/hubspot-api-python/compare/v4.0.0...HEAD)
8+
## [Unreleased](https://github.com/HubSpot/hubspot-api-python/compare/v4.0.1...HEAD)
9+
10+
## [4.0.1](https://github.com/HubSpot/hubspot-api-python/compare/v4.0.0...v4.0.1) - 2021-10-07
11+
12+
### Added
13+
14+
- missing object_type and account_type (were removed during regen)
915

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

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.0
1+
4.0.1

Diff for: hubspot/crm/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from .object_type import ObjectType
2+
from .association_type import AssociationType

Diff for: hubspot/crm/association_type.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class AssociationType:
2+
COMPANY_TO_CONTACT = "company_to_contact"
3+
CONTACT_TO_DEAL = "contact_to_deal"

Diff for: hubspot/crm/object_type.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class ObjectType:
2+
CONTACTS = "CONTACTS"
3+
COMPANIES = "COMPANIES"
4+
DEALS = "DEALS"
5+
TICKETS = "TICKETS"

0 commit comments

Comments
 (0)