Skip to content

Commit 8aa4a5f

Browse files
Merge pull request #80 from HubSpot/feature/objects-get-all
crm.objects.get_all method
2 parents 1c87274 + e607988 commit 8aa4a5f

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-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.1...HEAD)
8+
## [Unreleased](https://github.com/HubSpot/hubspot-api-python/compare/v4.0.2...HEAD)
9+
10+
## [4.0.2](https://github.com/HubSpot/hubspot-api-python/compare/v4.0.1...v4.0.1) - 2021-11-03
11+
12+
### Added
13+
14+
- crm.objects.get_all() method
915

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

Diff for: VERSION

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

Diff for: hubspot/discovery/crm/objects/discovery.py

+3
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@ def gdpr_api(self) -> api_client.GDPRApi:
2727
@property
2828
def feedback_submissions(self):
2929
return FeedbackSubmissionsDiscovery(self.config)
30+
31+
def get_all(self, **kwargs):
32+
return fetch_all(self.basic_api, **kwargs)

0 commit comments

Comments
 (0)