ravelin 0.1.35 → 0.1.40

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9b21bba5464d226c8e64edc4c0c54df617cc8e5d8fa1ee912c785bb10c21740
4
- data.tar.gz: 05e7d7553dca09e35627087d932202cac399b7396d80c1f184c4b7b14f6b95bb
3
+ metadata.gz: '038662e7b1108a43857081c07582bf19219b547c81ad2e8c7971f6c743f93c37'
4
+ data.tar.gz: 154459fe3f22b5d506d1952ba357bc03b1d9dfe394d882b63f37677e57aa9843
5
5
  SHA512:
6
- metadata.gz: 45d94fcba79c9bf5b87e221acee409ebed00380f75e6a1760b6686cbab34082caef5241488bc909cca905af8d82a11425264d7c483d1026fba80f012af2a2eb6
7
- data.tar.gz: 4c457652bc35747102da1c3c249f57cf1c65aab5d1c7ed8e8fce1a13ccab2f8308e153f343aab5037f6fbd04724983b463ade0afac00ae443c607d4d15cc81b5
6
+ metadata.gz: e761e34a794cbd61dc33e498bb264aab90df7485f91c775387c3f8d09ce9bfd7c24ad7cc6fbe334b9bdeb005b4dbee27e476f3ff133b1fe480eeaf0dd350cb4e
7
+ data.tar.gz: 7f8dc2b205484baaf0dd27b26505c0b7a6ba6a47db0c60d3f6ef126057613b664313669de15f3448927509e5982bc94f51d7bd03942dff3c681e172db0aaf639
@@ -11,9 +11,10 @@ module Ravelin
11
11
  class Client
12
12
  API_BASE = 'https://api.ravelin.com'
13
13
 
14
- def initialize(api_key:, api_version: 2)
14
+ def initialize(api_key:, api_version: 2, include_rule_output: false)
15
15
  @api_key = api_key
16
16
  @url_prefix = ''
17
+ @include_rule_output = include_rule_output
17
18
 
18
19
  raise ArgumentError.new("api_version must be 2 or 3") unless [2,3].include? api_version
19
20
  @api_version = api_version
@@ -110,7 +111,7 @@ module Ravelin
110
111
  end
111
112
 
112
113
  def faraday_options
113
- {
114
+ options = {
114
115
  request: { timeout: Ravelin.faraday_timeout },
115
116
  headers: {
116
117
  'Authorization' => "token #{@api_key}",
@@ -118,6 +119,12 @@ module Ravelin
118
119
  'User-Agent' => "Ravelin RubyGem/#{Ravelin::VERSION}".freeze
119
120
  }
120
121
  }
122
+
123
+ if @include_rule_output
124
+ options[:headers]['Accept'] = 'application/vnd.ravelin.score.v2+json'
125
+ end
126
+
127
+ options
121
128
  end
122
129
  end
123
130
  end
data/lib/ravelin/event.rb CHANGED
@@ -27,21 +27,22 @@ module Ravelin
27
27
 
28
28
  def object_classes
29
29
  {
30
- ato_login: AtoLogin,
30
+ ato_login: AtoLogin,
31
31
  authentication_mechanism: AuthenticationMechanism,
32
- chargeback: Chargeback,
33
- customer: Customer,
34
- ato_reclaim: AtoReclaim,
35
- device: Device,
36
- location: Location,
37
- login: Login,
38
- order: Order,
39
- password: Password,
40
- payment_method: PaymentMethod,
41
- voucher_redemption: VoucherRedemption,
42
- transaction: transaction,
43
- label: Label,
44
- voucher: Voucher,
32
+ chargeback: Chargeback,
33
+ customer: Customer,
34
+ ato_reclaim: AtoReclaim,
35
+ device: Device,
36
+ location: Location,
37
+ login: Login,
38
+ order: Order,
39
+ password: Password,
40
+ payment_method: PaymentMethod,
41
+ supplier: Supplier,
42
+ voucher_redemption: VoucherRedemption,
43
+ transaction: transaction,
44
+ label: Label,
45
+ voucher: Voucher,
45
46
  }
46
47
  end
47
48
 
data/lib/ravelin/login.rb CHANGED
@@ -3,7 +3,8 @@ module Ravelin
3
3
  attr_accessor :username,
4
4
  :customer_id,
5
5
  :success,
6
- :authentication_mechanism
6
+ :authentication_mechanism,
7
+ :custom
7
8
 
8
9
  attr_required :username, :success, :authentication_mechanism
9
10
 
data/lib/ravelin/order.rb CHANGED
@@ -14,7 +14,8 @@ module Ravelin
14
14
  :creation_time,
15
15
  :execution_time,
16
16
  :status,
17
- :app
17
+ :app,
18
+ :category
18
19
 
19
20
  attr_required :order_id
20
21
 
@@ -1,10 +1,11 @@
1
1
  module Ravelin
2
2
  class ProxyClient < Client
3
- def initialize(base_url:, username:, password:, api_version: 2)
3
+ def initialize(base_url:, username:, password:, api_version: 2, include_rule_output: false)
4
4
 
5
5
  raise ArgumentError, "api_version must be 2 or 3" unless [2,3].include? api_version
6
6
  @api_version = api_version
7
7
  @url_prefix = '/ravelinproxy'
8
+ @include_rule_output = include_rule_output
8
9
 
9
10
  @connection = Faraday.new(base_url, faraday_proxy_options) do |conn|
10
11
  conn.response :json, context_type: /\bjson$/
@@ -14,13 +15,17 @@ module Ravelin
14
15
  end
15
16
 
16
17
  def faraday_proxy_options
17
- {
18
+ options = {
18
19
  request: { timeout: Ravelin.faraday_timeout },
19
20
  headers: {
20
21
  'Content-Type' => 'application/json; charset=utf-8'.freeze,
21
22
  'User-Agent' => "Ravelin Proxy RubyGem/#{Ravelin::VERSION}".freeze
22
23
  }
23
24
  }
25
+ if @include_rule_output
26
+ options[:headers]['Accept'] = 'application/vnd.ravelin.score.v2+json'
27
+ end
28
+ options
24
29
  end
25
30
  end
26
31
  end
@@ -0,0 +1,30 @@
1
+ module Ravelin
2
+ class Supplier < RavelinObject
3
+ attr_accessor :supplier_id,
4
+ :type,
5
+ :group_id,
6
+ :group_name,
7
+ :registration_time,
8
+ :email,
9
+ :email_verified_time,
10
+ :name,
11
+ :telephone,
12
+ :telephone_verified_time,
13
+ :telephone_country,
14
+ :home_location,
15
+ :market,
16
+ :market_country,
17
+ :level,
18
+ :employment_type,
19
+ :transport_type,
20
+ :category,
21
+ :tags,
22
+ :custom
23
+
24
+ attr_required :supplier_id, :type
25
+
26
+ def home_location=(obj)
27
+ @home_location = Ravelin::Location.new(obj)
28
+ end
29
+ end
30
+ end
@@ -1,3 +1,3 @@
1
1
  module Ravelin
2
- VERSION = '0.1.35'
2
+ VERSION = '0.1.40'
3
3
  end
data/lib/ravelin.rb CHANGED
@@ -27,6 +27,7 @@ require 'ravelin/app'
27
27
  require 'ravelin/payment_method'
28
28
  require 'ravelin/password'
29
29
  require 'ravelin/pre_transaction'
30
+ require 'ravelin/supplier'
30
31
  require 'ravelin/three_d_secure'
31
32
  require 'ravelin/transaction'
32
33
  require 'ravelin/voucher'
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ravelin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.35
4
+ version: 0.1.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Levy
8
8
  - Tommy Palmer
9
9
  - Gurkan Oluc
10
10
  - Mathilda Thompson
11
- autorequire:
11
+ autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2021-02-17 00:00:00.000000000 Z
14
+ date: 2021-11-29 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: faraday
@@ -134,6 +134,7 @@ files:
134
134
  - lib/ravelin/proxy_client.rb
135
135
  - lib/ravelin/ravelin_object.rb
136
136
  - lib/ravelin/response.rb
137
+ - lib/ravelin/supplier.rb
137
138
  - lib/ravelin/tag.rb
138
139
  - lib/ravelin/three_d_secure.rb
139
140
  - lib/ravelin/transaction.rb
@@ -144,7 +145,7 @@ homepage: https://developer.ravelin.com
144
145
  licenses:
145
146
  - MIT
146
147
  metadata: {}
147
- post_install_message:
148
+ post_install_message:
148
149
  rdoc_options: []
149
150
  require_paths:
150
151
  - lib
@@ -159,8 +160,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
160
  - !ruby/object:Gem::Version
160
161
  version: '0'
161
162
  requirements: []
162
- rubygems_version: 3.0.9
163
- signing_key:
163
+ rubyforge_project:
164
+ rubygems_version: 2.7.6.2
165
+ signing_key:
164
166
  specification_version: 4
165
167
  summary: Ruby bindings for the Ravelin API
166
168
  test_files: []