easy_broker 1.0.2 → 1.0.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 +4 -4
- data/CHANGELOG.md +8 -2
- data/README.md +3 -0
- data/easy_broker.gemspec +1 -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/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad3880a242a4ada8476e4d4f5f049d641d109736c58d4c096ce8986856c96cf6
|
4
|
+
data.tar.gz: 4c0681a55ea64209c34e6ce0a5dd84e5f7077308f473759275e11353bad278d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a348abbd2b28a57d7fc4d1f0fb9c9eb8986ad0d5f3a519a60a39df6920f91695ac24ac7e2d145d1efb4b662947c5b7ce90f5baf799c8c8ef140035ca4a5ff4d7
|
7
|
+
data.tar.gz: 7aac506ee4828a589696bf665889d322f7313801f385a90c1817e675789cb127b1ed460698b418f1e4a99db02ceecf468917f7e5a7613e29f345eeb73150cdeb
|
data/CHANGELOG.md
CHANGED
@@ -19,8 +19,14 @@
|
|
19
19
|
* **Breaking change**: `limit`, `page`, and `search` params should be at the root level requests instead of in the `query` hash.
|
20
20
|
* Updated endpoints to use the `api` subdomain; `api.easybroker.com/v1` instead of `www.easybroker.com/api/v1`.
|
21
21
|
|
22
|
-
|
22
|
+
## 1.0.1
|
23
23
|
* Added support for agencies, agents, properties and property_integrations endpoints for integration partners.
|
24
24
|
|
25
|
-
|
25
|
+
## 1.0.2
|
26
26
|
* Added support to configure the country code header for integration partners endpoints.
|
27
|
+
|
28
|
+
## 1.0.3
|
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.
|
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
|
|
data/easy_broker.gemspec
CHANGED
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
|
|
28
28
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
29
29
|
spec.require_paths = ["lib"]
|
30
30
|
|
31
|
-
spec.add_dependency "httparty", "~> 0.
|
31
|
+
spec.add_dependency "httparty", "~> 0.21"
|
32
32
|
|
33
33
|
spec.add_development_dependency "bundler", "~> 2.2"
|
34
34
|
spec.add_development_dependency "rake", "~> 13.0"
|
@@ -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
|
data/lib/easy_broker/version.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.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Northam
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.21'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
26
|
+
version: '0.21'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,7 +108,7 @@ dependencies:
|
|
108
108
|
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
-
description:
|
111
|
+
description:
|
112
112
|
email:
|
113
113
|
- eric@northam.us
|
114
114
|
executables: []
|
@@ -149,7 +149,7 @@ licenses:
|
|
149
149
|
- MIT
|
150
150
|
metadata:
|
151
151
|
homepage_uri: https://github.com/easybroker/easybroker_gem/
|
152
|
-
post_install_message:
|
152
|
+
post_install_message:
|
153
153
|
rdoc_options: []
|
154
154
|
require_paths:
|
155
155
|
- lib
|
@@ -164,8 +164,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
164
|
- !ruby/object:Gem::Version
|
165
165
|
version: '0'
|
166
166
|
requirements: []
|
167
|
-
rubygems_version: 3.
|
168
|
-
signing_key:
|
167
|
+
rubygems_version: 3.1.6
|
168
|
+
signing_key:
|
169
169
|
specification_version: 4
|
170
170
|
summary: A gem to work with EasyBroker's API
|
171
171
|
test_files: []
|