easy_broker 1.0.3 → 1.1.0
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +4 -1
- data/lib/easy_broker/api_client.rb +2 -1
- data/lib/easy_broker/configuration.rb +2 -1
- data/lib/easy_broker/constants.rb +1 -0
- data/lib/easy_broker/locations.rb +4 -3
- data/lib/easy_broker/version.rb +1 -1
- data/lib/easy_broker.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ef4984ac9933e530bc61883d8cba13a14b8a88e3846ace40b96cc1301ebd397
|
4
|
+
data.tar.gz: 26cee65820e6ebc0de911a3308bdf27eff0e6105cfb8c0a9d91393262b838abc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53211f14020c9ef0c48c945b35acf93b213e6b48855b5c4e57785925826972b5ee2ce44c89728bb01cdeba6456cf2f8d1fe8f929adab5caae84fa6057fe60b6d
|
7
|
+
data.tar.gz: c6085688d53e20dd2d2e2c0f45f033f82879029a833df6b0d8b5934741239b1e43bf76c112888eb60c426e1f9062114a62e9eabbe55a5cc9d6520b2e6711fbe1
|
data/CHANGELOG.md
CHANGED
@@ -27,3 +27,9 @@
|
|
27
27
|
|
28
28
|
## 1.0.3
|
29
29
|
* Update httparty dependency from 0.18 to 0.21
|
30
|
+
|
31
|
+
## 1.0.4
|
32
|
+
* Added support to configure the use partner code header for integration partners endpoints.
|
33
|
+
|
34
|
+
## 1.1.0
|
35
|
+
* **Breaking change**: Changes `EasyBroker::Locations#search` to `EasyBroker::Locations#find`.
|
data/README.md
CHANGED
@@ -32,6 +32,9 @@ EasyBroker.configure do |config|
|
|
32
32
|
|
33
33
|
# As an integration partner you must configure the country code
|
34
34
|
# config.country_code = 'MX'
|
35
|
+
|
36
|
+
# Get the information from the organizations connected to your site using a partner code
|
37
|
+
# config.use_partner_code = true
|
35
38
|
end
|
36
39
|
```
|
37
40
|
|
@@ -80,7 +83,7 @@ EasyBroker.client(logger: my_logger)
|
|
80
83
|
|
81
84
|
|
82
85
|
```ruby
|
83
|
-
client.locations #
|
86
|
+
client.locations # Find geographic locations
|
84
87
|
client.contact_requests # List and search contact requests in your account - TDB create via post
|
85
88
|
client.properties # List, search and find properties in your account
|
86
89
|
client.mls_properties # List, search and find properties in the MLS - requires MLS API Plan
|
@@ -11,7 +11,8 @@ class EasyBroker::ApiClient
|
|
11
11
|
self.class.base_uri EasyBroker.configuration.api_root_url
|
12
12
|
self.class.headers EasyBroker::DEFAULT_HEADERS.merge(
|
13
13
|
EasyBroker::AUTHORIZATION_HEADER => EasyBroker.configuration.api_key,
|
14
|
-
EasyBroker::COUNTRY_CODE_HEADER => EasyBroker.configuration.country_code
|
14
|
+
EasyBroker::COUNTRY_CODE_HEADER => EasyBroker.configuration.country_code,
|
15
|
+
EasyBroker::USE_PARTNER_CODE_HEADER => EasyBroker.configuration.use_partner_code&.to_s
|
15
16
|
).compact
|
16
17
|
@logger = logger
|
17
18
|
end
|
@@ -1,9 +1,10 @@
|
|
1
1
|
class EasyBroker::Configuration
|
2
|
-
attr_accessor :api_key, :api_root_url, :country_code
|
2
|
+
attr_accessor :api_key, :api_root_url, :country_code, :use_partner_code
|
3
3
|
|
4
4
|
def initialize
|
5
5
|
@api_key = nil
|
6
6
|
@country_code = nil
|
7
|
+
@use_partner_code = nil
|
7
8
|
@api_root_url = EasyBroker::DEFAULT_API_ROOT_URL
|
8
9
|
end
|
9
10
|
end
|
@@ -9,8 +9,9 @@ class EasyBroker::Locations
|
|
9
9
|
@api_client = api_client
|
10
10
|
end
|
11
11
|
|
12
|
-
def
|
13
|
-
|
14
|
-
|
12
|
+
def find(name = nil)
|
13
|
+
query = { query: name }.compact
|
14
|
+
response = api_client.get(ENDPOINT, query: query)
|
15
|
+
JSON.parse(response.body, object_class: OpenStruct)
|
15
16
|
end
|
16
17
|
end
|
data/lib/easy_broker/version.rb
CHANGED
data/lib/easy_broker.rb
CHANGED
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: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Northam
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
164
|
- !ruby/object:Gem::Version
|
165
165
|
version: '0'
|
166
166
|
requirements: []
|
167
|
-
rubygems_version: 3.
|
167
|
+
rubygems_version: 3.5.10
|
168
168
|
signing_key:
|
169
169
|
specification_version: 4
|
170
170
|
summary: A gem to work with EasyBroker's API
|