easy_broker 0.1.2 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e2c6d6b5f13359963960225c97ceb6088fd2121d2682afa7980239904ffb6c7
4
- data.tar.gz: 03dd4f8edc6125ee282f2ff8908e12b5a2e90495dab89790a088003580795258
3
+ metadata.gz: 5c3fc54d9f30598f2a8499cb0be351a5daa7cd03a1bd91f022cb2da545f0b3a1
4
+ data.tar.gz: b0407234c841d6b3bf29151e83501f1a7006fb381e0b644acbdb8ef7cf416662
5
5
  SHA512:
6
- metadata.gz: e879f87bf528593c737ce3de70217613b46940330b07171837195ce45bcf4df8d14bdbc50e252d9be6fed98a0805e434e310a68ab44dacd02d959aff0be7a7f8
7
- data.tar.gz: b9d77c6f693b8acf5cf76449764d16f5cf016f9ac6cd554bd221b9251cd601fb5bb4d90e99fd39ee488ebdbacebf4506f13843c5f8e9a467d10f86a1a33fe47b
6
+ metadata.gz: 409d82992dd0aa86164ca350fde1c5cd4a7fcadfc7961b2f14d7b2f4bfeb8eeaad4cd477a926e857dd480603a2fa7dd61a8821cff9d5da7e23c3c0cb4dbda511
7
+ data.tar.gz: c4be1cfa701a33490147c4ce2b45d976eda66aececa774ba30c1dc612bdc259cad335e7d8a72d175bf9f8194ce2c5f3167f224b9e47c028033a68896295bdfc0
data/.gitignore CHANGED
@@ -9,4 +9,5 @@
9
9
  Gemfile.lock
10
10
  /vendor
11
11
  .DS_Store
12
- *.gem
12
+ *.gem
13
+ .idea
data/CHANGELOG.md CHANGED
@@ -1,7 +1,16 @@
1
1
  # Changelog
2
2
 
3
3
  ## 0.1.1
4
- * Initial release
4
+ * Initial release.
5
5
 
6
6
  ## 0.1.2
7
- * Added support for contact_requests, mls_properties and locations endpoints
7
+ * Added support for contact_requests, mls_properties and locations endpoints.
8
+
9
+ ## 0.1.3
10
+ * Fixed pagination bug where the last page may not have been included.
11
+
12
+ ## 0.1.4
13
+ * Added support for the listing_statuses endpoint.
14
+
15
+ ## 0.1.5
16
+ * Added support for the listing_statuses endpoint for integration partners.
data/README.md CHANGED
@@ -78,6 +78,8 @@ client.locations # List and search geographic locations
78
78
  client.contact_requests # List and search contact requests in your account - TDB create via post
79
79
  client.properties # List, search and find properties in your account
80
80
  client.mls_properties # List, search and find properties in the MLS - requires MLS API Plan
81
+ client.listing_statuses # List and search the listing status for properties. Great for syncing large sets of properties. - includes MLS properties if you have the MLS Plan
82
+ client.integration_partners.listing_statuses # List and search the listing status for partner properties. Requires an integration partner api key.
81
83
  ```
82
84
 
83
85
  ## Development
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EasyBroker
4
+ module IntegrationPartners
5
+ class ListingStatuses
6
+ ENDPOINT = '/integration_partners/listing_statuses'
7
+
8
+ attr_reader :api_client
9
+
10
+ def initialize(api_client)
11
+ @api_client = api_client
12
+ end
13
+
14
+ def search(query = {})
15
+ stored_query = EasyBroker::Query.new(api_client, ENDPOINT, query)
16
+ EasyBroker::PaginatedResponse.new(stored_query)
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EasyBroker
4
+ module IntegrationPartners
5
+ class PublicClient
6
+ attr_reader :api_client
7
+
8
+ def initialize(api_client)
9
+ @api_client = api_client
10
+ end
11
+
12
+ def listing_statuses
13
+ EasyBroker::IntegrationPartners::ListingStatuses.new(api_client)
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ class EasyBroker::ListingStatuses
4
+ ENDPOINT = '/listing_statuses'
5
+
6
+ attr_reader :api_client
7
+
8
+ def initialize(api_client)
9
+ @api_client = api_client
10
+ end
11
+
12
+ def search(query = {})
13
+ stored_query = EasyBroker::Query.new(api_client, ENDPOINT, query)
14
+ EasyBroker::PaginatedResponse.new(stored_query)
15
+ end
16
+ end
@@ -17,14 +17,12 @@ class EasyBroker::PaginatedResponse
17
17
  end
18
18
 
19
19
  def page
20
- pagination&.page
20
+ pagination&.page || 1
21
21
  end
22
22
 
23
23
  def next_page
24
- next_page_number = page.nil? ? 1 : page + 1
25
-
26
- if next_page_number * limit <= total
27
- @response = query.get(next_page_number)
24
+ if page * limit < total
25
+ @response = query.get(page + 1)
28
26
  end
29
27
  end
30
28
 
@@ -51,4 +49,4 @@ class EasyBroker::PaginatedResponse
51
49
  def pagination
52
50
  response&.pagination
53
51
  end
54
- end
52
+ end
@@ -22,4 +22,12 @@ class EasyBroker::PublicClient
22
22
  def locations
23
23
  EasyBroker::Locations.new(api_client)
24
24
  end
25
+
26
+ def listing_statuses
27
+ EasyBroker::ListingStatuses.new(api_client)
28
+ end
29
+
30
+ def integration_partners
31
+ EasyBroker::IntegrationPartners::PublicClient.new(api_client)
32
+ end
25
33
  end
@@ -1,3 +1,3 @@
1
1
  module EasyBroker
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.5"
3
3
  end
data/lib/easy_broker.rb CHANGED
@@ -12,6 +12,9 @@ require 'easy_broker/properties'
12
12
  require 'easy_broker/mls_properties'
13
13
  require 'easy_broker/contact_requests'
14
14
  require 'easy_broker/locations'
15
+ require 'easy_broker/listing_statuses'
16
+ require 'easy_broker/integration_partners/public_client'
17
+ require 'easy_broker/integration_partners/listing_statuses'
15
18
 
16
19
  module EasyBroker
17
20
  def self.configuration
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_broker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Northam
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-16 00:00:00.000000000 Z
11
+ date: 2022-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -130,6 +130,9 @@ files:
130
130
  - lib/easy_broker/constants.rb
131
131
  - lib/easy_broker/contact_requests.rb
132
132
  - lib/easy_broker/errors.rb
133
+ - lib/easy_broker/integration_partners/listing_statuses.rb
134
+ - lib/easy_broker/integration_partners/public_client.rb
135
+ - lib/easy_broker/listing_statuses.rb
133
136
  - lib/easy_broker/locations.rb
134
137
  - lib/easy_broker/mls_properties.rb
135
138
  - lib/easy_broker/paginated_response.rb
@@ -157,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
160
  - !ruby/object:Gem::Version
158
161
  version: '0'
159
162
  requirements: []
160
- rubygems_version: 3.1.6
163
+ rubygems_version: 3.0.3.1
161
164
  signing_key:
162
165
  specification_version: 4
163
166
  summary: A gem to work with EasyBroker's API