Skip to content

Commit 7c943f9

Browse files
Merge pull request #61 from HubSpot/feature/missing_object_type
Return missing types files
2 parents d98515f + f3ee016 commit 7c943f9

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8.0
1+
3.8.1

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)