seatsio 45.1.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: 1b59187036878ba734bc06e2de29977d3d7aef057810d0a92de3719c7c1fa784
4
- data.tar.gz: 9b55d3b20b7cbfbc84beaa20fb757595bb407f26995891d07de82ad185cc8dff
3
+ metadata.gz: 73eababecc2e4d91645db5007ad781d59b7b0e40cd89e41f7e894bbc92a9ffd0
4
+ data.tar.gz: f092221d8837e6037ee3e59a987cdf540084e8a0febaf0d76ffb20e93769a258
5
5
  SHA512:
6
- metadata.gz: 4d501ee3bb0bd2bee6368b75270aa4c0cc4fbf7c29a4b8763f481e9344cb0ac0297fdeb6c853b1726b2ecefc86d518d04220b58e4e23082fb52127c12cc84048
7
- data.tar.gz: 37f40fec41daa5a65cc4e4d3aaeebf6d9b2c550efbb88ef4252d09d578fd8dea7e1820e14c3c88d474f1735eeaadff7fd565aefcb15e330191b528d6285c07ad
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.1.0)
4
+ seatsio (45.2.0)
5
5
  rest-client (~> 2.0, >= 2.0.2)
6
6
 
7
7
  GEM
@@ -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
@@ -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.1.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.1.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-08-23 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