tessitura_rest 2.1.5 → 2.1.6

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: 30bb3370f667b4100d09050aff0a767550fb370f905e4bc2f7ae02608971fac4
4
- data.tar.gz: 5f589d0799c8c31becc10abf081208d3ecd0a4a9371262181a5ac9d2e8e85ef5
3
+ metadata.gz: 1e1eed0759e5cce9ff1ff87604281aac20b6c03240267079da3968ccc112c756
4
+ data.tar.gz: 26c2f01d1066162c2fb5ac6722483b48b0b1490f73e531540a73f00e83126602
5
5
  SHA512:
6
- metadata.gz: f8809a75b0514c7461bf3a578166a01a330c9ef0ade60ded0b99da2890d89bf20aeea06349644a4f5054e4889c0bc356e76fb06df6e9e94be0b20f0c0c3e7189
7
- data.tar.gz: 6b8cc38e176f966682c4b4f55c572705dc57bc29e805e35b52e8116e9298f057ab411d54b5c054538891db33ddeb96de9374fcd643e8336ff2167463009a2639
6
+ metadata.gz: '09a49ac55281ab5ce70a63e36affb3ce7526e9996b60703d85fa966bb2e317f76787bec15a4822961745e87b8c0ff3b428e14138f70ba59a232dab4f0114e796'
7
+ data.tar.gz: ce6adca89722d7c9c52d0e8a7ec47e0c1a49db1a4ce7b27c91424ec5046200e9aaa194a49d382693821b7cd7a3bf95240b912e85535d33bde5c906dd5bbb1fe6
@@ -31,6 +31,25 @@ 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 = {})
35
+ parameters = {
36
+ 'Amount': amount,
37
+ 'PaymentId': payment_id,
38
+ 'ConstituentId': constituent_id,
39
+ 'Card': {
40
+ 'TessituraMerchantServicesData': payload,
41
+ },
42
+ 'TransactionOrigin': 'webapi',
43
+ 'PaymentMethodId': 606,
44
+ 'IsECommerce': true,
45
+ 'StoreAccount': true,
46
+ 'ReturnUrl': return_url,
47
+ }
48
+ options.merge!(basic_auth: @auth, headers: @headers)
49
+ options.merge!(:body => parameters.to_json)
50
+ self.class.post(base_api_endpoint('PaymentGateway/Authorization/Authorize'), options)
51
+ end
52
+
34
53
  def finalize_payment(payload, payment_id, store_account, options = {})
35
54
  parameters = {
36
55
  'PaymentId': payment_id,
@@ -1,3 +1,3 @@
1
1
  class TessituraRest
2
- VERSION = '2.1.5'.freeze
2
+ VERSION = '2.1.6'.freeze
3
3
  end
@@ -39,7 +39,6 @@ class TessituraRest
39
39
  include Registration
40
40
  include Sections
41
41
  include Session
42
- include SecurityUserGroups
43
42
  include States
44
43
  include TicketProtectionPerformances
45
44
  include SubLineItems
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.5
4
+ version: 2.1.6
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-06 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -152,7 +152,6 @@ files:
152
152
  - lib/tessitura_rest/reference_data/countries.rb
153
153
  - lib/tessitura_rest/reference_data/sections.rb
154
154
  - lib/tessitura_rest/reference_data/states.rb
155
- - lib/tessitura_rest/security/security_user_groups.rb
156
155
  - lib/tessitura_rest/txn/orders.rb
157
156
  - lib/tessitura_rest/txn/package.rb
158
157
  - lib/tessitura_rest/txn/payments.rb
@@ -1,7 +0,0 @@
1
- module SecurityUserGroups
2
- def security_user_groups(login, options = {})
3
- options.merge!(basic_auth: @auth, headers: @headers)
4
- response = self.class.get(base_api_endpoint("Security/UserGroups/Default?userName=#{login}"), options)
5
- JSON.parse(response.body)['UserGroup']
6
- end
7
- end