tessitura_rest 2.1.6 → 2.1.7

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: 1e1eed0759e5cce9ff1ff87604281aac20b6c03240267079da3968ccc112c756
4
- data.tar.gz: 26c2f01d1066162c2fb5ac6722483b48b0b1490f73e531540a73f00e83126602
3
+ metadata.gz: 217895c138f9d1824acfd6d630b546a588297816e02465a5a9917aea61cd3399
4
+ data.tar.gz: 5fc37760f4fd616caebec298579944919bd64759515b2a685f2406bb53d14bc1
5
5
  SHA512:
6
- metadata.gz: '09a49ac55281ab5ce70a63e36affb3ce7526e9996b60703d85fa966bb2e317f76787bec15a4822961745e87b8c0ff3b428e14138f70ba59a232dab4f0114e796'
7
- data.tar.gz: ce6adca89722d7c9c52d0e8a7ec47e0c1a49db1a4ce7b27c91424ec5046200e9aaa194a49d382693821b7cd7a3bf95240b912e85535d33bde5c906dd5bbb1fe6
6
+ metadata.gz: 276412d5b657efdbef65d610f671c1902447cb25f332d5d7776c099a2ec09c3061d451fe74089dd33e7fe2733284637c61e9d100da02ee1998b35957f00382e2
7
+ data.tar.gz: 6849bc738ffae549684454f93fb62860d80f025ed1bdd6810799c6827303c045b0b9c17bdf12be59dd76b5e8023538bd8120e70d8fb905065ece8bfad7b2182a
@@ -31,7 +31,7 @@ module PaymentGateway
31
31
  self.class.post(base_api_endpoint('PaymentGateway/Authorization/Authorize'), options)
32
32
  end
33
33
 
34
- def store_card(amount, payment_id, constituent_id, payload, return_url, options = {})
34
+ def store_card(amount, payment_id, constituent_id, payload, address, return_url, options = {})
35
35
  parameters = {
36
36
  'Amount': amount,
37
37
  'PaymentId': payment_id,
@@ -39,6 +39,12 @@ module PaymentGateway
39
39
  'Card': {
40
40
  'TessituraMerchantServicesData': payload,
41
41
  },
42
+ 'BillingAddress': {
43
+ 'PostalCode': address.postal_code,
44
+ 'Street1': address.street1,
45
+ 'AddressId': address.id,
46
+ 'Country': address.country_iso2_code,
47
+ },
42
48
  'TransactionOrigin': 'webapi',
43
49
  'PaymentMethodId': 606,
44
50
  'IsECommerce': true,
@@ -1,3 +1,3 @@
1
1
  class TessituraRest
2
- VERSION = '2.1.6'.freeze
2
+ VERSION = '2.1.7'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tessitura_rest
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.6
4
+ version: 2.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brittany Martin, Danielle Greaves, Craig Donavin, Patrick FitzGerald
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-11-21 00:00:00.000000000 Z
11
+ date: 2025-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler