seatsio 48.8.0 → 48.9.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 +2 -1
- data/lib/seatsio/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '00803c865b4819b112632d11095f3828d583eb8c3d7eaa27e9dddda744558754'
|
4
|
+
data.tar.gz: 7ab1fca5f1518974b76ebd9bc45a13cd14ba7cefd4f8ad1c0ecbdc1db385f0ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbb93ab25226d7b53f7a1e6934c04d14996a2a730bae17d31adf2160ba1016bee31adc26eb3e286b256490655cbbf3065d50713cd28261608b8598b0f802d02d
|
7
|
+
data.tar.gz: 35ec08acf8626e22940281a3e184b4c5b0277959556bc34554d44cd64e8e35856dcd4d86bf77e31491d03f2a5a36e51323e2e8bedb3d30c05c0c34297c62c5eb
|
data/Gemfile.lock
CHANGED
data/lib/seatsio/domain.rb
CHANGED
@@ -426,7 +426,7 @@ module Seatsio
|
|
426
426
|
:left_neighbour, :right_neighbour, :is_available, :channel,
|
427
427
|
:book_as_a_whole, :distance_to_focal_point, :holds, :num_seats, :variable_occupancy,
|
428
428
|
:min_occupancy, :max_occupancy, :season_status_overridden_quantity, :num_not_for_sale,
|
429
|
-
:zone
|
429
|
+
:zone, :floor
|
430
430
|
|
431
431
|
def initialize(data)
|
432
432
|
@status = data['status']
|
@@ -465,6 +465,7 @@ module Seatsio
|
|
465
465
|
@season_status_overridden_quantity = data['seasonStatusOverriddenQuantity']
|
466
466
|
@num_not_for_sale = data['numNotForSale']
|
467
467
|
@zone = data['zone']
|
468
|
+
@floor = data['floor']
|
468
469
|
end
|
469
470
|
end
|
470
471
|
|
data/lib/seatsio/version.rb
CHANGED