seatsio 40.0.0 → 40.1.0
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 +4 -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: 4b8822f5a0c8488e65a7291c414a1425fbb3d499bf77a4621c43dc46a11afd8b
|
4
|
+
data.tar.gz: a79e55c7a602c061cdc39ac05bcc3c73e5e6497d4c3af76327c98b55ae041905
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3db73b2ababeefb303f173e20fcabf96e97b025c6a6d773229a1e194ab7c5885a27aeef84fa667b9dafc1d7b3a0f438f0b0b03091eb2b55dccc22b468066792e
|
7
|
+
data.tar.gz: b98d89bea756c377f98ec4857a1a980359a19bdb6d65cfd99fdf534006090588814a4eb35e5ee8690342e929ab2875a8cf55173eb8958db6606e9cf27ca98e10
|
data/Gemfile.lock
CHANGED
data/lib/seatsio/domain.rb
CHANGED
@@ -315,7 +315,7 @@ module Seatsio
|
|
315
315
|
class ChartObjectInfo
|
316
316
|
|
317
317
|
attr_reader :label, :labels, :ids, :category_key, :category_label, :section, :entrance, :capacity, :object_type,
|
318
|
-
:left_neighbour, :right_neighbour, :book_as_a_whole, :distance_to_focal_point
|
318
|
+
:left_neighbour, :right_neighbour, :book_as_a_whole, :distance_to_focal_point, :num_seats
|
319
319
|
|
320
320
|
def initialize(data)
|
321
321
|
@label = data['label']
|
@@ -331,6 +331,7 @@ module Seatsio
|
|
331
331
|
@right_neighbour = data['rightNeighbour']
|
332
332
|
@book_as_a_whole = data['bookAsAWhole']
|
333
333
|
@distance_to_focal_point = data['distanceToFocalPoint']
|
334
|
+
@num_seats = data['numSeats']
|
334
335
|
end
|
335
336
|
end
|
336
337
|
|
@@ -386,7 +387,7 @@ module Seatsio
|
|
386
387
|
:ticket_type, :num_booked, :num_free, :num_held, :for_sale, :section,
|
387
388
|
:is_accessible, :is_companion_seat, :has_restricted_view, :displayed_object_type,
|
388
389
|
:left_neighbour, :right_neighbour, :is_available, :is_disabled_by_social_distancing, :channel,
|
389
|
-
:book_as_a_whole, :distance_to_focal_point, :holds
|
390
|
+
:book_as_a_whole, :distance_to_focal_point, :holds, :num_seats
|
390
391
|
|
391
392
|
def initialize(data)
|
392
393
|
@status = data['status']
|
@@ -419,6 +420,7 @@ module Seatsio
|
|
419
420
|
@book_as_a_whole = data['bookAsAWhole']
|
420
421
|
@distance_to_focal_point = data['distanceToFocalPoint']
|
421
422
|
@holds = data['holds']
|
423
|
+
@num_seats = data['numSeats']
|
422
424
|
end
|
423
425
|
end
|
424
426
|
|
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: 40.
|
4
|
+
version: 40.1.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: 2022-06-
|
11
|
+
date: 2022-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|