seatsio 52.3.0 → 52.4.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 +14 -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: a798af0dd1e1e3c62f37e7dae213a6405adee8b896ca42680e0e38dba4a08a89
|
|
4
|
+
data.tar.gz: b64a6257afc652a62a1279a0db5cb5319de91806e6ba678d03689045b99c3395
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16cd792647684d867af89c1c0cd4746a3f05c6337331beccb7cd7d43308e504d267a56050dd72f1458228d48f176b0bea897a80cb758baaee5b290053ec416fe
|
|
7
|
+
data.tar.gz: e58da7b8c5598b7016257cce7e0f7dab2f856e8b13a90b9c723839caef1016776074bf4e24790151ffc8c5f0f38ed3bc63a811848190b244b3e93b977939e20a
|
data/Gemfile.lock
CHANGED
data/lib/seatsio/domain.rb
CHANGED
|
@@ -375,7 +375,8 @@ module Seatsio
|
|
|
375
375
|
|
|
376
376
|
attr_reader :label, :labels, :ids, :category_key, :category_label, :section, :entrance, :capacity, :object_type,
|
|
377
377
|
:left_neighbour, :right_neighbour, :book_as_a_whole, :distance_to_focal_point, :num_seats, :is_accessible,
|
|
378
|
-
:is_companion_seat, :
|
|
378
|
+
:is_companion_seat, :has_lift_up_armrests, :is_hearing_impaired, :is_semi_ambulatory_seat, :has_sign_language_interpretation,
|
|
379
|
+
:is_plus_size, :has_restricted_view, :zone, :floor
|
|
379
380
|
|
|
380
381
|
def initialize(data)
|
|
381
382
|
@label = data['label']
|
|
@@ -393,6 +394,11 @@ module Seatsio
|
|
|
393
394
|
@distance_to_focal_point = data['distanceToFocalPoint']
|
|
394
395
|
@num_seats = data['numSeats']
|
|
395
396
|
@is_accessible = data['isAccessible']
|
|
397
|
+
@has_lift_up_armrests = data['hasLiftUpArmrests']
|
|
398
|
+
@is_hearing_impaired = data['isHearingImpaired']
|
|
399
|
+
@is_semi_ambulatory_seat = data['isSemiAmbulatorySeat']
|
|
400
|
+
@has_sign_language_interpretation = data['hasSignLanguageInterpretation']
|
|
401
|
+
@is_plus_size = data['isPlusSize']
|
|
396
402
|
@is_companion_seat = data['isCompanionSeat']
|
|
397
403
|
@has_restricted_view = data['hasRestrictedView']
|
|
398
404
|
@zone = data['zone']
|
|
@@ -458,7 +464,8 @@ module Seatsio
|
|
|
458
464
|
attr_reader :labels, :ids, :label, :order_id, :extra_data, :capacity, :status,
|
|
459
465
|
:category_key, :entrance, :object_type, :hold_token, :category_label,
|
|
460
466
|
:ticket_type, :num_booked, :num_free, :num_held, :for_sale, :section,
|
|
461
|
-
:is_accessible, :is_companion_seat, :
|
|
467
|
+
:is_accessible, :is_companion_seat, :has_lift_up_armrests, :is_hearing_impaired, :is_semi_ambulatory_seat,
|
|
468
|
+
:has_sign_language_interpretation, :is_plus_size, :has_restricted_view, :displayed_object_type, :parent_displayed_object_type,
|
|
462
469
|
:left_neighbour, :right_neighbour, :is_available, :channel,
|
|
463
470
|
:book_as_a_whole, :distance_to_focal_point, :holds, :num_seats, :variable_occupancy,
|
|
464
471
|
:min_occupancy, :max_occupancy, :season_status_overridden_quantity, :num_not_for_sale,
|
|
@@ -485,6 +492,11 @@ module Seatsio
|
|
|
485
492
|
@extra_data = data['extraData']
|
|
486
493
|
@is_accessible = data['isAccessible']
|
|
487
494
|
@is_companion_seat = data['isCompanionSeat']
|
|
495
|
+
@has_lift_up_armrests = data['hasLiftUpArmrests']
|
|
496
|
+
@is_hearing_impaired = data['isHearingImpaired']
|
|
497
|
+
@is_semi_ambulatory_seat = data['isSemiAmbulatorySeat']
|
|
498
|
+
@has_sign_language_interpretation = data['hasSignLanguageInterpretation']
|
|
499
|
+
@is_plus_size = data['isPlusSize']
|
|
488
500
|
@has_restricted_view = data['hasRestrictedView']
|
|
489
501
|
@displayed_object_type = data['displayedObjectType']
|
|
490
502
|
@parent_displayed_object_type = data['parentDisplayedObjectType']
|
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: 52.
|
|
4
|
+
version: 52.4.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: 2026-
|
|
11
|
+
date: 2026-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|