seatsio 45.0.0 → 45.2.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: bdd4179789ae397639cc2adeb699ef08bba663c37fad94fd5f7b548288a903f0
4
- data.tar.gz: 2bb0b732ffc21d52031c58888433f5378c97c9c86b70753c66b9edc88a0255e9
3
+ metadata.gz: 73eababecc2e4d91645db5007ad781d59b7b0e40cd89e41f7e894bbc92a9ffd0
4
+ data.tar.gz: f092221d8837e6037ee3e59a987cdf540084e8a0febaf0d76ffb20e93769a258
5
5
  SHA512:
6
- metadata.gz: d15e85bef5d066ed46bc0b78e89eea0111ad1d2a9f8b07db6c294b3cd6a4c78cf0423b47e70b780319499d99d027052408a82f4d2586c44decb1ddd53c8462a5
7
- data.tar.gz: 65c45a2ffd2260d5ddc72152c43e97acfc1c62fa927d96d66aed92a98072318d7df8ba9d33ad559af5f334e8856c2c0db46b7e4036e3299dc13eb37cdef77ee3
6
+ metadata.gz: 33bf3a3c71d4c4c7a6158a8c72f245e8e0b7323ac9160d5745029a7635cc04f8d58c8aaa83457154fdd7a0e410c9d050008448ecdcd854166beffd02496b5dfc
7
+ data.tar.gz: 43419b8dcb7622c95c46049033c53b080c5cc198572e42ad25e12bc0f5058cf65d5e8f2191573a9042090c0084bb8094d728f79d1082c63de0a7b1a75cb6d746
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatsio (45.0.0)
4
+ seatsio (45.2.0)
5
5
  rest-client (~> 2.0, >= 2.0.2)
6
6
 
7
7
  GEM
@@ -20,7 +20,7 @@ GEM
20
20
  mime-types (3.3.1)
21
21
  mime-types-data (~> 3.2015)
22
22
  mime-types-data (3.2021.0225)
23
- minitest (5.18.1)
23
+ minitest (5.19.0)
24
24
  minitest-parallel_fork (1.3.0)
25
25
  minitest (>= 5.15.0)
26
26
  netrc (0.11.0)
@@ -41,7 +41,21 @@ module Seatsio
41
41
  end
42
42
 
43
43
  def replace(key:, channels:)
44
- @http_client.post("events/#{key}/channels/replace", { channels: channels })
44
+ @http_client.post("events/#{key}/channels/replace", { channels: ChannelsClient::channels_to_request(channels) })
45
+ end
46
+
47
+ def self.channels_to_request(channels)
48
+ result = []
49
+ channels.each do |channel|
50
+ r = {}
51
+ r["key"] = channel.key
52
+ r["name"] = channel.name
53
+ r["color"] = channel.color
54
+ r["index"] = channel.index if channel.index != nil
55
+ r["objects"] = channel.objects if channel.objects != nil
56
+ result.push(r)
57
+ end
58
+ result
45
59
  end
46
60
 
47
61
  private
@@ -28,13 +28,13 @@ module Seatsio
28
28
  end
29
29
 
30
30
  def create(name: nil, venue_type: nil, categories: nil)
31
- payload = build_chart_request name: name, venue_type: venue_type, categories: categories
31
+ payload = build_chart_request name, venue_type, categories
32
32
  response = @http_client.post('charts', payload)
33
33
  Chart.new(response)
34
34
  end
35
35
 
36
36
  def update(key:, new_name: nil, categories: nil)
37
- payload = build_chart_request name: new_name, categories: categories
37
+ payload = build_chart_request new_name, nil, categories
38
38
  @http_client.post("charts/#{key}", payload)
39
39
  end
40
40
 
@@ -141,7 +141,7 @@ module Seatsio
141
141
 
142
142
  private
143
143
 
144
- def build_chart_request(name: nil, venue_type: nil, categories: nil)
144
+ def build_chart_request(name, venue_type, categories)
145
145
  result = {}
146
146
  result['name'] = name if name
147
147
  result['venueType'] = venue_type if venue_type
@@ -378,7 +378,8 @@ module Seatsio
378
378
  :ticket_type, :num_booked, :num_free, :num_held, :for_sale, :section,
379
379
  :is_accessible, :is_companion_seat, :has_restricted_view, :displayed_object_type,
380
380
  :left_neighbour, :right_neighbour, :is_available, :channel,
381
- :book_as_a_whole, :distance_to_focal_point, :holds, :num_seats
381
+ :book_as_a_whole, :distance_to_focal_point, :holds, :num_seats,
382
+ :variable_occupancy, :min_occupancy, :max_occupancy
382
383
 
383
384
  def initialize(data)
384
385
  @status = data['status']
@@ -411,6 +412,9 @@ module Seatsio
411
412
  @distance_to_focal_point = data['distanceToFocalPoint']
412
413
  @holds = data['holds']
413
414
  @num_seats = data['numSeats']
415
+ @variable_occupancy = data['variableOccupancy']
416
+ @min_occupancy = data['minOccupancy']
417
+ @max_occupancy = data['maxOccupancy']
414
418
  end
415
419
  end
416
420
 
@@ -18,11 +18,8 @@ module Seatsio
18
18
  @channels = ChannelsClient.new(@http_client)
19
19
  end
20
20
 
21
- def create(chart_key: nil, event_key: nil, name: nil, date: nil, table_booking_config: nil, object_categories: nil, categories: nil)
22
- payload = build_event_request(chart_key: chart_key, event_key: event_key,
23
- name: name, date: date,
24
- table_booking_config: table_booking_config,
25
- object_categories: object_categories, categories: categories)
21
+ def create(chart_key: nil, event_key: nil, name: nil, date: nil, table_booking_config: nil, object_categories: nil, categories: nil, channels: nil)
22
+ payload = build_event_request(chart_key, event_key, name, date, table_booking_config, object_categories, categories, channels: channels)
26
23
  response = @http_client.post("events", payload)
27
24
  Event.new(response)
28
25
  end
@@ -34,14 +31,7 @@ module Seatsio
34
31
  end
35
32
 
36
33
  def update(key:, chart_key: nil, event_key: nil, name: nil, date: nil, table_booking_config: nil, object_categories: nil, categories: nil)
37
- payload = build_event_request(
38
- chart_key: chart_key,
39
- event_key: event_key,
40
- name: name,
41
- date: date,
42
- table_booking_config: table_booking_config,
43
- object_categories: object_categories,
44
- categories: categories)
34
+ payload = build_event_request(chart_key, event_key, name, date, table_booking_config, object_categories, categories)
45
35
  @http_client.post("/events/#{key}", payload)
46
36
  end
47
37
 
@@ -169,7 +159,7 @@ module Seatsio
169
159
  payload
170
160
  end
171
161
 
172
- def build_event_request(chart_key: nil, event_key: nil, name: nil, date: nil, table_booking_config: nil, object_categories: nil, categories: nil)
162
+ def build_event_request(chart_key, event_key, name, date, table_booking_config, object_categories, categories, channels: nil)
173
163
  result = {}
174
164
  result["chartKey"] = chart_key if chart_key
175
165
  result["eventKey"] = event_key if event_key
@@ -178,17 +168,18 @@ module Seatsio
178
168
  result["tableBookingConfig"] = table_booking_config_to_request(table_booking_config) if table_booking_config != nil
179
169
  result["objectCategories"] = object_categories if object_categories != nil
180
170
  result["categories"] = categories_to_request(categories) if categories != nil
171
+ result["channels"] = ChannelsClient::channels_to_request(channels) if channels != nil
181
172
  result
182
173
  end
183
174
 
184
175
  def build_events_request(chart_key: nil, event_creation_params: nil)
185
176
  result = {}
186
177
  result["chartKey"] = chart_key
187
- result["events"] = event_creation_params_to_request(params: event_creation_params)
178
+ result["events"] = event_creation_params_to_request(event_creation_params)
188
179
  result
189
180
  end
190
181
 
191
- def event_creation_params_to_request(params: nil)
182
+ def event_creation_params_to_request(params)
192
183
  result = []
193
184
  params.each do |param|
194
185
  r = {}
@@ -198,6 +189,7 @@ module Seatsio
198
189
  r["tableBookingConfig"] = table_booking_config_to_request(param[:table_booking_config]) if param[:table_booking_config] != nil
199
190
  r["objectCategories"] = param[:object_categories] if param[:object_categories] != nil
200
191
  r["categories"] = categories_to_request(param[:categories]) if param[:categories] != nil
192
+ r["channels"] = ChannelsClient::channels_to_request(param[:channels]) if param[:channels] != nil
201
193
  result.push(r)
202
194
  end
203
195
  result
@@ -14,9 +14,8 @@ module Seatsio
14
14
  end
15
15
 
16
16
  def create(chart_key:, key: nil, number_of_events: nil, event_keys: nil,
17
- table_booking_config: nil)
18
- request = build_create_season_request(chart_key: chart_key, key: key, number_of_events: number_of_events, event_keys: event_keys,
19
- table_booking_config: table_booking_config)
17
+ table_booking_config: nil, channels: nil)
18
+ request = build_create_season_request(chart_key, key, number_of_events, event_keys, table_booking_config, channels)
20
19
  response = @http_client.post('seasons', request)
21
20
  Season.new(response)
22
21
  end
@@ -55,13 +54,14 @@ module Seatsio
55
54
 
56
55
  private
57
56
 
58
- def build_create_season_request(chart_key: nil, key: nil, number_of_events: nil, event_keys: nil, table_booking_config: nil)
57
+ def build_create_season_request(chart_key, key, number_of_events, event_keys, table_booking_config, channels)
59
58
  request = {}
60
59
  request['chartKey'] = chart_key if chart_key
61
60
  request['key'] = key if key
62
61
  request['numberOfEvents'] = number_of_events if number_of_events
63
62
  request['eventKeys'] = event_keys if event_keys
64
63
  request['tableBookingConfig'] = table_booking_config_to_request(table_booking_config) if table_booking_config != nil
64
+ request['channels'] = ChannelsClient::channels_to_request(channels) if channels != nil
65
65
  request
66
66
  end
67
67
 
@@ -1,3 +1,3 @@
1
1
  module Seatsio
2
- VERSION = "45.0.0"
2
+ VERSION = "45.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seatsio
3
3
  version: !ruby/object:Gem::Version
4
- version: 45.0.0
4
+ version: 45.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seats.io
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-10 00:00:00.000000000 Z
11
+ date: 2023-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client