easy_broker 0.1.3 → 0.1.4

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: c20a49902c6e3b0376a60c587184c300ec13fb31e857433332f1d843f13a7a2f
4
- data.tar.gz: ebf8a2a4a334fd52e4872e053f7d69d3bfae63c68c82e7ede84bba597ba8e2c1
3
+ metadata.gz: ee218a0504e6003f7e3016af14294e825984af1059e24e99742175e012d74867
4
+ data.tar.gz: c4ed7d8a4b5abd8805eae7c3476e253900f5729d5e4189dc4a7db18ecb91d8f4
5
5
  SHA512:
6
- metadata.gz: 6de4105cd8d793b7272bc8e6e41de7877e3fc1a96ae4fb63d20f19f58885c027596d3aeaae863f6f93cf9eb53c65475c93b777519540559deae2b4c0b2ec05f6
7
- data.tar.gz: 60557d7796a982543fb700f4dd9adacc3f88771957228b9b1b762f80daedccb351b8c643e076ea5cd7aa18c958dcb61d822f9b9b26023b39ece8a4e19d2e3de9
6
+ metadata.gz: 6daa0c152e04a78f23685e78046ab4a2456776f84c8a2da4caf5b53329ef8d76c7e64dbc727f3bea82674a59bec19307f4621182ce9430e37f62fead07baeb31
7
+ data.tar.gz: f6b9dc60d9cee16b53f7b61360534a68190591cffc7641d4009334917fe2af42a8d9f382fb1ab0e7089c1b0e69c45120acbe847f74c4b7356008643cf3fc4fa9
data/CHANGELOG.md CHANGED
@@ -8,3 +8,6 @@
8
8
 
9
9
  ## 0.1.3
10
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.
data/README.md CHANGED
@@ -78,6 +78,7 @@ 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
81
82
  ```
82
83
 
83
84
  ## Development
@@ -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
@@ -22,4 +22,8 @@ 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
25
29
  end
@@ -1,3 +1,3 @@
1
1
  module EasyBroker
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
data/lib/easy_broker.rb CHANGED
@@ -12,6 +12,7 @@ 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'
15
16
 
16
17
  module EasyBroker
17
18
  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.3
4
+ version: 0.1.4
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-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -130,6 +130,7 @@ 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/listing_statuses.rb
133
134
  - lib/easy_broker/locations.rb
134
135
  - lib/easy_broker/mls_properties.rb
135
136
  - lib/easy_broker/paginated_response.rb