seatsio 30.0.0 → 30.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/seatsio/domain.rb +5 -2
- data/lib/seatsio/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44234075632c1fe4cfa465b6126460d13746c868b6be77ac3ccecd67124a8f28
|
4
|
+
data.tar.gz: 6bffcd3107ce8d844668c305e7fcfb4c0487045cdfd75f2729fe53b97260eb25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9af7435cf39b7c220257875cc9505a2b3cf1ee7197452a80a9d4504194130d27be0fcbd30bc0a6bc44999b88bfbb85ac2db8c47cd2e842538b5014af2389bc36
|
7
|
+
data.tar.gz: c92c2b86ed00974b16c3eb582be1a573c45fda8d490b9c9642593c4cfcf983984176b808814ed490508293d460df4f2d8122e99ae46f28b675139180aa09c3c1
|
data/Gemfile.lock
CHANGED
data/lib/seatsio/domain.rb
CHANGED
@@ -264,7 +264,7 @@ module Seatsio
|
|
264
264
|
class ChartReportItem
|
265
265
|
|
266
266
|
attr_reader :label, :labels, :category_key, :category_label, :section, :entrance, :capacity, :object_type,
|
267
|
-
:left_neighbour, :right_neighbour
|
267
|
+
:left_neighbour, :right_neighbour, :book_as_a_whole
|
268
268
|
|
269
269
|
def initialize(data)
|
270
270
|
@label = data['label']
|
@@ -277,6 +277,7 @@ module Seatsio
|
|
277
277
|
@object_type = data['objectType']
|
278
278
|
@left_neighbour = data['leftNeighbour']
|
279
279
|
@right_neighbour = data['rightNeighbour']
|
280
|
+
@book_as_a_whole = data['bookAsAWhole']
|
280
281
|
end
|
281
282
|
end
|
282
283
|
|
@@ -327,7 +328,8 @@ module Seatsio
|
|
327
328
|
:category_key, :entrance, :object_type, :hold_token, :category_label,
|
328
329
|
:ticket_type, :num_booked, :num_free, :num_held, :for_sale, :section,
|
329
330
|
:is_accessible, :is_companion_seat, :has_restricted_view, :displayed_object_type,
|
330
|
-
:left_neighbour, :right_neighbour, :is_selectable, :is_disabled_by_social_distancing, :channel
|
331
|
+
:left_neighbour, :right_neighbour, :is_selectable, :is_disabled_by_social_distancing, :channel,
|
332
|
+
:book_as_a_whole
|
331
333
|
|
332
334
|
def initialize(data)
|
333
335
|
@status = data['status']
|
@@ -356,6 +358,7 @@ module Seatsio
|
|
356
358
|
@is_selectable = data['isSelectable']
|
357
359
|
@is_disabled_by_social_distancing = data['isDisabledBySocialDistancing']
|
358
360
|
@channel = data['channel']
|
361
|
+
@book_as_a_whole = data['bookAsAWhole']
|
359
362
|
end
|
360
363
|
end
|
361
364
|
|
data/lib/seatsio/version.rb
CHANGED
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: 30.
|
4
|
+
version: 30.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seats.io
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|