easy_broker 1.0.1 → 1.0.3

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: 45d36d59dcaf0b6a07c5fb9d065711747dca59b66349850fa13f592a04bb9b25
4
- data.tar.gz: 634332b115e07adc6710cd84a1a8919a330def6bdcae57348cf54dc8e1308250
3
+ metadata.gz: a2f84f22e90d4f7314cde19e7cb255f85524d793c7446abb6cff4266b4ee4b85
4
+ data.tar.gz: c9389b86e64570e9580f3bb006eedcdfcc3fc5fb3940da72e7142122ae01584b
5
5
  SHA512:
6
- metadata.gz: c49e16d780adbf8ed5976c6fa0693569f629cb5424e9e84c50f94ee29c8ea373333613eebc4aaa3f2b34e080a8aaf6fd6bc6e025bb2da07eb32882547c6c532e
7
- data.tar.gz: c6f04a4c3af67649bd51fb423e11a0059d46e58dba92aee0062c4467a47c55e44ef56aa60a7beeca1581095e1b63e17dd1e8274510ee3b2acb7eadf49611a117
6
+ metadata.gz: 121360e24da0f94a1844d283c6f5804fb7ae9a370ccc567aa63d1e013916bc761d8244aa571949f25a363b2d2ebc3ed81712875cbe35ccfddbd2bf8a14ccf13d
7
+ data.tar.gz: 647ee5039a59627191607abe3312909ede624130e25883219f552724bb93565d7ae7ded22c8e39e39c2f2d5107d93cf9becd1f0181c974656759098b3118aaea
data/CHANGELOG.md CHANGED
@@ -19,5 +19,11 @@
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
- # 1.0.1
22
+ ## 1.0.1
23
23
  * Added support for agencies, agents, properties and property_integrations endpoints for integration partners.
24
+
25
+ ## 1.0.2
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
data/README.md CHANGED
@@ -29,6 +29,9 @@ EasyBroker.configure do |config|
29
29
 
30
30
  # Optionally change the root API URL
31
31
  # config.api_root_url = EasyBroker::STAGING_API_ROOT_URL
32
+
33
+ # As an integration partner you must configure the country code
34
+ # config.country_code = 'MX'
32
35
  end
33
36
  ```
34
37
 
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.18"
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"
@@ -10,8 +10,9 @@ class EasyBroker::ApiClient
10
10
  def initialize(logger: nil)
11
11
  self.class.base_uri EasyBroker.configuration.api_root_url
12
12
  self.class.headers EasyBroker::DEFAULT_HEADERS.merge(
13
- EasyBroker::AUTHORIZATION_HEADER => EasyBroker.configuration.api_key
14
- )
13
+ EasyBroker::AUTHORIZATION_HEADER => EasyBroker.configuration.api_key,
14
+ EasyBroker::COUNTRY_CODE_HEADER => EasyBroker.configuration.country_code
15
+ ).compact
15
16
  @logger = logger
16
17
  end
17
18
 
@@ -1,8 +1,9 @@
1
1
  class EasyBroker::Configuration
2
- attr_accessor :api_key, :api_root_url
2
+ attr_accessor :api_key, :api_root_url, :country_code
3
3
 
4
4
  def initialize
5
5
  @api_key = nil
6
+ @country_code = nil
6
7
  @api_root_url = EasyBroker::DEFAULT_API_ROOT_URL
7
8
  end
8
9
  end
@@ -8,4 +8,5 @@ module EasyBroker
8
8
  DEFAULT_API_ROOT_URL = 'https://api.easybroker.com/v1'
9
9
  STAGING_API_ROOT_URL = 'https://api.stagingeb.com/v1'
10
10
  AUTHORIZATION_HEADER = 'X-Authorization'
11
+ COUNTRY_CODE_HEADER = 'Country-Code'
11
12
  end
@@ -10,7 +10,7 @@ module EasyBroker
10
10
 
11
11
  class AuthenticationError < Error
12
12
  def initialize(response)
13
- super('Invalid API Key or missing permissions', response)
13
+ super('Invalid API Key or missing configurations', response)
14
14
  end
15
15
  end
16
- end
16
+ end
@@ -1,3 +1,3 @@
1
1
  module EasyBroker
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.3"
3
3
  end
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.1
4
+ version: 1.0.3
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: 2022-06-08 00:00:00.000000000 Z
11
+ date: 2023-07-15 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.18'
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.18'
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.0.3.1
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: []