tessitura_rest 0.8.6.1 → 0.8.6.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: 3c0e41bcfb196645015381ae137c284ec58f6f84d493f13043faac2c30bd710e
4
- data.tar.gz: ec46fa48f3a9baf514a293366c50cbca34bfbb872e73a15e5cb690ab82990129
3
+ metadata.gz: d053e34849a4314bf916e946a487f3e948a443a7ae683425bf8bf95313803d23
4
+ data.tar.gz: 60bf4b056850f4816bee3319686c9c2d713393656c083ce6bb9384669f8e46e1
5
5
  SHA512:
6
- metadata.gz: 1629aff07a5055026d383f55d654f2826341872e5df0816cdf09487fa15796e08678c4eb98ac6ba3badfec520983f2c0f0551c1035ad01529747391a47214d85
7
- data.tar.gz: a02a8671ef120a3388e238a31e5031a2fbdf4045e2124242ffd936a92167f5b648b5758482b1cf358276fdbe106b9cdc17c9b407292b8540f66a8cae9abf394e
6
+ metadata.gz: 8bd1767f0212e0a67723166e5bbba8badd9cb88275a2ba93b151183cec28a2a32fa5f025d679508309a636a1525fff19edf4942a30b9c254bec7950ecd46dbb6
7
+ data.tar.gz: a5840d7148e57685c24ad430f68a5c92ad432dfc4609f5afc0b450a72cd7304841ddadd76b3d80e22b30c4d1f7be47e317d0cb46df859926aa91c859657886af
@@ -90,8 +90,10 @@ module Constituents
90
90
  "Inactive": false
91
91
  },
92
92
  }
93
+ parameters.delete(:Prefix) unless params[:prefix].present?
94
+ parameters.delete(:Suffix) unless params[:suffix].present?
93
95
  options.merge!(basic_auth: @auth, headers: @headers)
94
- options.merge!(:body => parameters)
96
+ options.merge!(:body => parameters.to_json, :headers => { 'Content-Type' => 'application/json' })
95
97
  self.class.put(base_api_endpoint("CRM/Constituents/#{constituent_id}"), options)
96
98
  end
97
99
  end
@@ -36,6 +36,12 @@ module Package
36
36
  JSON.parse(response.body)
37
37
  end
38
38
 
39
+ def get_package_seat_summaries(id, mode_of_sale, constituent_id, price_type_ids, options={})
40
+ options.merge!(basic_auth: @auth, headers: @headers)
41
+ response = self.class.get(base_api_endpoint("TXN/Packages/#{id}/Seats/Summary?modeOfSaleId=#{mode_of_sale}&constituentId=#{constituent_id}&checkPriceTypeIds=#{price_type_ids}"), options)
42
+ JSON.parse(response.body)
43
+ end
44
+
39
45
  def get_package_seats(id, mode_of_sale, constituent_id, section_id, options={})
40
46
  options.merge!(basic_auth: @auth, headers: @headers)
41
47
  response = self.class.get(base_api_endpoint("TXN/Packages/#{id}/Seats?modeOfSaleId=#{mode_of_sale}&constituentId=#{constituent_id}&sectionIds=#{section_id}"), options)
@@ -30,15 +30,28 @@ module PerformanceExtension
30
30
  JSON.parse(response.body)
31
31
  end
32
32
 
33
+ def get_performance_zone_availability(ids, mode_of_sale, constituent_id, options={})
34
+ options.merge!(basic_auth: @auth, headers: @headers)
35
+ response = self.class.get(base_api_endpoint("TXN/Performances/ZoneAvailabilities?performanceIds=#{ids}&modeOfSaleId=#{mode_of_sale}&constituentId=#{constituent_id}"), options)
36
+ JSON.parse(response.body)
37
+ end
38
+
33
39
  def get_performance_seats(id, mode_of_sale, constituent_id, section_id, options={})
34
40
  options.merge!(basic_auth: @auth, headers: @headers)
35
41
  response = self.class.get(base_api_endpoint("TXN/Performances/#{id}/Seats?modeOfSaleId=#{mode_of_sale}&constituentId=#{constituent_id}&sectionIds=#{section_id}"), options)
36
42
  JSON.parse(response.body)
37
43
  end
38
44
 
39
- def get_performance_seat_summaries(id, options={})
45
+ def get_performance_seat_summaries(id, mode_of_sale, constituent_id, price_type_ids, options={})
46
+ options.merge!(basic_auth: @auth, headers: @headers)
47
+ response = self.class.get(base_api_endpoint("TXN/Performances/#{id}/Seats/Summary?modeOfSaleId=#{mode_of_sale}&constituentId=#{constituent_id}&checkPriceTypeIds=#{price_type_ids}"), options)
48
+ JSON.parse(response.body)
49
+ end
50
+
51
+ def get_performance_prices(id, mos, options={})
40
52
  options.merge!(basic_auth: @auth, headers: @headers)
41
- response = self.class.get(base_api_endpoint("TXN/Performances/#{id}/Seats/Summary"), options)
53
+ options.merge!(:headers => {'Content-Type' => 'application/json'})
54
+ response = self.class.get(base_api_endpoint("TXN/Performances/Prices?performanceIds=#{id}&modeOfSaleId=#{mos}"), options)
42
55
  JSON.parse(response.body)
43
56
  end
44
57
 
@@ -6,4 +6,10 @@ module PriceTypes
6
6
  JSON.parse(response.body)
7
7
  end
8
8
 
9
+ def get_price_type_details(id, mode_of_sale, options={})
10
+ options.merge!(basic_auth: @auth, headers: @headers)
11
+ response = self.class.get(base_api_endpoint("TXN/PriceTypes/Details?performanceIds=#{id}&modeOfSaleId=#{mode_of_sale}"), options)
12
+ JSON.parse(response.body)
13
+ end
14
+
9
15
  end
@@ -1,3 +1,3 @@
1
1
  class TessituraRest
2
- VERSION = '0.8.6.1'
2
+ VERSION = '0.8.6.6'
3
3
  end
@@ -225,7 +225,7 @@ module Cart
225
225
  "Unseated": unseated
226
226
  }
227
227
  options.merge!(basic_auth: @auth, headers: @headers)
228
- options.merge!(:body => parameters)
228
+ options.merge!(:body => parameters.to_json, :headers => {'Content-Type' => 'application/json'})
229
229
  self.class.post(base_api_endpoint("Web/Cart/#{session_key}/Packages/Super"), options)
230
230
  end
231
231
 
@@ -100,7 +100,7 @@ module Session
100
100
  'PromotionCode': 0,
101
101
  }
102
102
  options.merge!(basic_auth: @auth, headers: @headers)
103
- options.merge!(:body => parameters)
103
+ options.merge!(:body => parameters.to_json, :headers => {'Content-Type' => 'application/json'})
104
104
  self.class.put(base_api_endpoint("Web/Session/#{key}/WebLogins"), options)
105
105
  end
106
106
 
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.1
4
+ version: 0.8.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brittany Martin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler