tessitura_rest 0.8.6.8 → 0.9.0

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: 441941fe7d23b1b92ce96f2a8af7396189e91a48a1b7a5fb8f4f8ee2a453c23d
4
- data.tar.gz: c3eed228640d627c59f31e27757857b68398b574785e124fd5f87bb6a7eebcf3
3
+ metadata.gz: 3c238b78fe2ae60a7a0993b7ea8cee6c077cffeba4910bf1c70468266c884dbc
4
+ data.tar.gz: 03b3164ea44a297c7ddfaf4bcda9186554f26a5269fa5b598bf9b01272d81d01
5
5
  SHA512:
6
- metadata.gz: 679f4d268e79a51f1f0f9d32509ca59bb667b2d13b5bd5aff8510f02e682f369559ab19e532049951086c2587093ae7c8672eec77c1afce6840dcafa44e4a2e1
7
- data.tar.gz: dbbe588fcf8d8ce39682d0e26fba80d82027272fba3c1edcbd333544be3f7f4314be67e39fc27ec1e2d3cc3da7f57b837f82023c01b2aeebbabfac8dd43f64b8
6
+ metadata.gz: 23e3a270053585df8a542ad05ca62fdb339fea8d49f640dfc69fd12d1ad2e4d1cfc9cc5318b5070ef7009b0de624e2c8ca3cbf59812ff695b28f081c4e806e54
7
+ data.tar.gz: 3730a55a9c5832150699027560649fd6371824aec14d31dc6438d6d397a736eee2599b819ac49ffc43d2cd25186e86e954f52bbc4dd4638c29d98f598fa0b991
@@ -0,0 +1,8 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: monthly
7
+ time: "10:00"
8
+ open-pull-requests-limit: 10
data/.travis.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  rvm:
4
- - 2.4.2
4
+ - 2.5.3
5
5
  before_install:
6
- - gem install bundler -v 1.12.5
6
+ - gem install bundler -v 2.2.15
7
7
  - openssl aes-256-cbc -K $encrypted_3c84dcdc6bbe_key -iv $encrypted_3c84dcdc6bbe_iv -in .env.enc -out .env -d
@@ -69,14 +69,15 @@ module Constituents
69
69
  parameters =
70
70
  {
71
71
  "ConstituentType": {
72
- "Id": current["ConstituentType"]["Id"],
72
+ "Id": current['ConstituentType']['Id'],
73
73
  "Inactive": false,
74
74
  },
75
75
  "Id": constituent_id,
76
+ "UpdatedDateTime": current['UpdatedDateTime'],
76
77
  "FirstName": params[:first_name],
77
- "UpdatedDateTime": current["UpdatedDateTime"],
78
78
  "LastName": params[:last_name],
79
79
  "MiddleName": params[:middle_name],
80
+ "SortName": current['SortName'],
80
81
  "Prefix": {
81
82
  "Id": params[:prefix],
82
83
  "Inactive": false
@@ -86,7 +87,7 @@ module Constituents
86
87
  "Inactive": false
87
88
  },
88
89
  "OriginalSource": {
89
- "Id": current["OriginalSource"]["Id"],
90
+ "Id": current['OriginalSource']['Id'],
90
91
  "Inactive": false
91
92
  },
92
93
  }
@@ -99,22 +100,22 @@ module Constituents
99
100
  end
100
101
 
101
102
  def is_household?(snapshot)
102
- snapshot["ConstituentType"]["Id"] == 9
103
+ snapshot['ConstituentType']['Id'] == 9
103
104
  end
104
105
 
105
106
  def update_household(params, current, options={})
106
- constituents = current["Affiliates"].map{|c| c["RelatedConstituentId"]}
107
+ constituents = current['Affiliates'].map{|c| c['RelatedConstituentId']}
107
108
  constituents.each_with_index do |constituent, i|
108
109
  snapshot = get_constituent_snapshot(constituent)
109
110
  parameters =
110
111
  {
111
112
  "ConstituentType": {
112
- "Id": snapshot["ConstituentType"]["Id"],
113
+ "Id": snapshot['ConstituentType']['Id'],
113
114
  "Inactive": false,
114
115
  },
115
116
  "Id": constituent,
116
117
  "FirstName": i == 0 ? params[:first_name] : params[:first_name_2],
117
- "UpdatedDateTime": snapshot["UpdatedDateTime"],
118
+ "UpdatedDateTime": snapshot['UpdatedDateTime'],
118
119
  "LastName": i == 0 ? params[:last_name] : params[:last_name_2],
119
120
  "MiddleName": i == 0 ? params[:middle_name] : params[:middle_name_2],
120
121
  "Prefix": {
@@ -126,7 +127,7 @@ module Constituents
126
127
  "Inactive": false
127
128
  },
128
129
  "OriginalSource": {
129
- "Id": snapshot["OriginalSource"]["Id"],
130
+ "Id": snapshot['OriginalSource']['Id'],
130
131
  "Inactive": false
131
132
  },
132
133
  }
@@ -3,4 +3,9 @@ module Diagnostics
3
3
  options.merge!(basic_auth: @auth, headers: @headers)
4
4
  self.class.get(base_api_endpoint('Diagnostics/Status'), options)
5
5
  end
6
+
7
+ def seat_server_status(options={})
8
+ options.merge!(basic_auth: @auth, headers: @headers)
9
+ self.class.get(base_api_endpoint('Diagnostics/SeatServerStatus'), options)
10
+ end
6
11
  end
@@ -1,3 +1,3 @@
1
1
  class TessituraRest
2
- VERSION = '0.8.6.8'
2
+ VERSION = '0.9.0'.freeze
3
3
  end
@@ -5,6 +5,11 @@ module Cart
5
5
  self.class.get(base_api_endpoint("Web/Cart/#{session_key}"), options)
6
6
  end
7
7
 
8
+ def get_checkout_complete(session_key, options={})
9
+ options.merge!(basic_auth: @auth, headers: @headers)
10
+ self.class.get(base_api_endpoint("Web/Cart/#{session_key}&savedCart=true"), options)
11
+ end
12
+
8
13
  def empty_cart(session_key, options={})
9
14
  options.merge!(basic_auth: @auth, headers: @headers)
10
15
  self.class.delete(base_api_endpoint("Web/Cart/#{session_key}"), options)
@@ -55,7 +60,7 @@ module Cart
55
60
  'GiftCertificateNumber': gift_certificate_number
56
61
  }
57
62
  options.merge!(basic_auth: @auth, headers: @headers)
58
- options.merge!(:body => parameters)
63
+ options.merge!(:body => parameters.to_json, :headers => {'Content-Type' => 'application/json'})
59
64
  self.class.post(base_api_endpoint("Web/Cart/#{session_key}/Payments/GiftCertificate"), options)
60
65
  end
61
66
 
@@ -202,7 +207,7 @@ module Cart
202
207
  "Unseated": unseated
203
208
  }
204
209
  options.merge!(basic_auth: @auth, headers: @headers)
205
- options.merge!(:body => parameters)
210
+ options.merge!(:body => parameters.to_json, :headers => {'Content-Type' => 'application/json'})
206
211
  self.class.post(base_api_endpoint("Web/Cart/#{session_key}/Packages/Nfs"), options)
207
212
  end
208
213
 
@@ -1,6 +1,6 @@
1
1
  module Registration
2
2
 
3
- def register_user(session_key, address, first_name, last_name, email, password, special_offer, phone, options={})
3
+ def register_user(session_key, address, first_name, last_name, email, password, promotion, special_offer, phone, options={})
4
4
  parameters =
5
5
  {
6
6
  'FirstName': first_name,
@@ -25,6 +25,7 @@ module Registration
25
25
  },
26
26
  'ConstituentTypeId': 1,
27
27
  'OriginalSourceId': 3,
28
+ 'SourceId': promotion,
28
29
  'Phones':
29
30
  [
30
31
  {
@@ -6,8 +6,8 @@ require 'tessitura_rest/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "tessitura_rest"
8
8
  spec.version = TessituraRest::VERSION
9
- spec.authors = ["Brittany Martin"]
10
- spec.email = ["martin@trustarts.org"]
9
+ spec.authors = ['Brittany Martin, Danielle Greaves, Craig Donavin, Patrick FitzGerald']
10
+ spec.email = ['webteam@trustarts.org']
11
11
 
12
12
  spec.summary = "Rest API Endpoint for the Tessitura Rest API (v14+)."
13
13
  spec.description = "TessituraRest is an enterprise-wide, fully integrated software system for arts & cultural organizations."
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: 0.8.6.8
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
- - Brittany Martin
7
+ - Brittany Martin, Danielle Greaves, Craig Donavin, Patrick FitzGerald
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-04-01 00:00:00.000000000 Z
11
+ date: 2021-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -111,13 +111,14 @@ dependencies:
111
111
  description: TessituraRest is an enterprise-wide, fully integrated software system
112
112
  for arts & cultural organizations.
113
113
  email:
114
- - martin@trustarts.org
114
+ - webteam@trustarts.org
115
115
  executables: []
116
116
  extensions: []
117
117
  extra_rdoc_files: []
118
118
  files:
119
119
  - ".codeclimate.yml"
120
120
  - ".env.enc"
121
+ - ".github/dependabot.yml"
121
122
  - ".gitignore"
122
123
  - ".rspec"
123
124
  - ".rubocop.yml"