killbill 8.3.3 → 8.3.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
  SHA1:
3
- metadata.gz: 4e0c313697db20716891f91ad18666cac0eea59e
4
- data.tar.gz: 648b0060f832c5c3c5174ce65eaf06d2d5966e2e
3
+ metadata.gz: 6d643e71a3a12df8fab7f10f55095ab7b4a65ee4
4
+ data.tar.gz: 390ad4daadaecb7f8a72a709cab811eda25b04e5
5
5
  SHA512:
6
- metadata.gz: cf909ae06f395737482bf5823e83660954f2bb9834b6ad2dafaebef0d98a364d872758665a1d58af4ea14d6bcceb4107569235a774fd3ab183703e2bad811579
7
- data.tar.gz: 8cea860ab2a67fd067cc0e28e69989881991ac82135a33b17d74b476fc06656650987da190e706a465914731f840a26a90459855c91711883a2a16f6027f693d
6
+ metadata.gz: 129c63889f636f2a527127aec4ef3adfa83d2afa0796f7fb9cb40cd5fa8f2e0c2025394e97efc0dcbd21549dc774af38f910bdaf629009a538f49606a5961a3d
7
+ data.tar.gz: 42e7fc83720a204d7bffd7e6911a3f06811cd8a69d3125203cde0c20ecba678c8c6ee5623b807475c281a38ada69b224b4f54314a29b6d56b1314d3f63bd637e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- killbill (8.3.3)
4
+ killbill (8.3.4)
5
5
  rack (>= 1.5.2)
6
6
  sinatra (~> 1.3.4)
7
7
  typhoeus (~> 0.6.9)
data/NEWS CHANGED
@@ -1,3 +1,6 @@
1
+ 8.3.4
2
+ ActiveMerchant: pass in extra_params to gateway api calls
3
+
1
4
  8.3.3
2
5
  active_merchant: update default CC year in tests
3
6
 
@@ -49,15 +49,15 @@ module Killbill
49
49
  end
50
50
  end
51
51
 
52
- def authorize_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context)
52
+ def authorize_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, extra_params = {})
53
53
  gateway_call_proc = Proc.new do |gateway, linked_transaction, payment_source, amount_in_cents, options|
54
54
  gateway.authorize(amount_in_cents, payment_source, options)
55
55
  end
56
56
 
57
- dispatch_to_gateways(:authorize, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc)
57
+ dispatch_to_gateways(:authorize, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc, nil, extra_params)
58
58
  end
59
59
 
60
- def capture_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context)
60
+ def capture_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, extra_params = {})
61
61
  gateway_call_proc = Proc.new do |gateway, linked_transaction, payment_source, amount_in_cents, options|
62
62
  gateway.capture(amount_in_cents, linked_transaction.txn_id, options)
63
63
  end
@@ -69,18 +69,18 @@ module Killbill
69
69
  last_authorization
70
70
  end
71
71
 
72
- dispatch_to_gateways(:capture, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc, linked_transaction_proc)
72
+ dispatch_to_gateways(:capture, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc, linked_transaction_proc, extra_params)
73
73
  end
74
74
 
75
- def purchase_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context)
75
+ def purchase_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, extra_params = {})
76
76
  gateway_call_proc = Proc.new do |gateway, linked_transaction, payment_source, amount_in_cents, options|
77
77
  gateway.purchase(amount_in_cents, payment_source, options)
78
78
  end
79
79
 
80
- dispatch_to_gateways(:purchase, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc)
80
+ dispatch_to_gateways(:purchase, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc, nil, extra_params)
81
81
  end
82
82
 
83
- def void_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, properties, context)
83
+ def void_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, properties, context, extra_params = {})
84
84
  gateway_call_proc = Proc.new do |gateway, linked_transaction, payment_source, amount_in_cents, options|
85
85
  authorization = linked_transaction.txn_id
86
86
 
@@ -99,18 +99,18 @@ module Killbill
99
99
  @transaction_model.find_candidate_transaction_for_void(kb_payment_id, context.tenant_id, linked_transaction_type)
100
100
  end
101
101
 
102
- dispatch_to_gateways(:void, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, nil, nil, properties, context, gateway_call_proc, linked_transaction_proc)
102
+ dispatch_to_gateways(:void, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, nil, nil, properties, context, gateway_call_proc, linked_transaction_proc, extra_params)
103
103
  end
104
104
 
105
- def credit_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context)
105
+ def credit_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, extra_params = {})
106
106
  gateway_call_proc = Proc.new do |gateway, linked_transaction, payment_source, amount_in_cents, options|
107
107
  gateway.credit(amount_in_cents, payment_source, options)
108
108
  end
109
109
 
110
- dispatch_to_gateways(:credit, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc)
110
+ dispatch_to_gateways(:credit, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc, nil, extra_params)
111
111
  end
112
112
 
113
- def refund_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context)
113
+ def refund_payment(kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, extra_params = {})
114
114
  gateway_call_proc = Proc.new do |gateway, linked_transaction, payment_source, amount_in_cents, options|
115
115
  gateway.refund(amount_in_cents, linked_transaction.txn_id, options)
116
116
  end
@@ -123,7 +123,7 @@ module Killbill
123
123
  transaction
124
124
  end
125
125
 
126
- dispatch_to_gateways(:refund, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc, linked_transaction_proc)
126
+ dispatch_to_gateways(:refund, kb_account_id, kb_payment_id, kb_payment_transaction_id, kb_payment_method_id, amount, currency, properties, context, gateway_call_proc, linked_transaction_proc, extra_params)
127
127
  end
128
128
 
129
129
  def get_payment_info(kb_account_id, kb_payment_id, properties, context)
@@ -1,3 +1,3 @@
1
1
  module Killbill
2
- VERSION = '8.3.3'
2
+ VERSION = '8.3.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killbill
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.3.3
4
+ version: 8.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kill Bill core team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-19 00:00:00.000000000 Z
11
+ date: 2018-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement