tessitura_rest 1.4.5 → 1.4.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: f90d3d46f6652e4029bdd7e5f7e7c0146e420478203dcfc18de15bedd5430610
4
- data.tar.gz: 566e4466f029dd554f028de2749e62a6c516c2fc64f08f3d5dba37f99c3be7ed
3
+ metadata.gz: 00acac9c1cec15ea6336bd6884d79bd1310ca521b9f47019e75299aab75c1d11
4
+ data.tar.gz: f9f1dbd10aa2e7e5ac741a5f2eaf3efa3e70369a6028e70d5b951a7ba052fe4c
5
5
  SHA512:
6
- metadata.gz: c0c24f3beb66480bebeca1174a5fb9bb9049c92fd7751e42e598999f74022e76d7922817928b11cd9cb108439a9d26f7139b8c2d35a9c8022afa18f925787332
7
- data.tar.gz: 1b60b10a2bf41e7b4dad9b4668c48300851b7579962f704caf48b491d78bfd5054ea23a24b6fda00aef78e38ad9281d7eb59a6486c435f705a14ce0c8958d135
6
+ metadata.gz: 155cfb708714c93676949cc0d96e958497731cb971e82c9e9e9884935d0717e4ed755adf5607b9ee55c19536d650ae739e6979e758acb8d96940dbe367a63c2f
7
+ data.tar.gz: f61d1e29ca03222cd759de09e764f388bbd094393b6a802bdf0873dd3f0850ef32882f28d115144c716a867212552c234cdd3568e9135821b2c9b64371ca3449
data/CODE_OF_CONDUCT.md CHANGED
@@ -35,7 +35,7 @@ This code of conduct applies both within project spaces and in public spaces
35
35
  when an individual is representing the project or its community.
36
36
 
37
37
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
- reported by contacting a project maintainer at brittany.jill.martin@gmail.com. All
38
+ reported by contacting a project maintainer at webteam@trustarts.org. All
39
39
  complaints will be reviewed and investigated and will result in a response that
40
40
  is deemed necessary and appropriate to the circumstances. Maintainers are
41
41
  obligated to maintain confidentiality with regard to the reporter of an
@@ -1,5 +1,5 @@
1
1
  module PaymentGateway
2
- def authorize_payment(amount, store_card, payload, payment_id, return_url, constituent_id, shopper_ip, address, options = {})
2
+ def authorize_payment(amount, store_card, payload, payment_id, return_url, constituent_id, shopper_ip, address, delivery_date, options = {})
3
3
  parameters = {
4
4
  'Amount': amount,
5
5
  'StoreAccount': store_card,
@@ -16,8 +16,10 @@ module PaymentGateway
16
16
  'BillingAddress': {
17
17
  'PostalCode': address.postal_code,
18
18
  'Street1': address.street1,
19
- 'AddressId': address.id
19
+ 'AddressId': address.id,
20
+ 'Country': address.country_iso2_code,
20
21
  },
22
+ 'DeliveryDate': delivery_date,
21
23
  }
22
24
  options.merge!(basic_auth: @auth, headers: @headers)
23
25
  options.merge!(:body => parameters)
@@ -1,3 +1,3 @@
1
1
  class TessituraRest
2
- VERSION = '1.4.5'.freeze
2
+ VERSION = '1.4.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: 1.4.5
4
+ version: 1.4.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: 2023-09-25 00:00:00.000000000 Z
11
+ date: 2024-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler