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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a3856e9524f764cbb8c390a74cd41fa17383183f98214dba45e79081a0df530
4
- data.tar.gz: 6bf1717282e2942dd0fa2f18fddae739ad2d18375bf4736dd20493716ec5d198
3
+ metadata.gz: a798af0dd1e1e3c62f37e7dae213a6405adee8b896ca42680e0e38dba4a08a89
4
+ data.tar.gz: b64a6257afc652a62a1279a0db5cb5319de91806e6ba678d03689045b99c3395
5
5
  SHA512:
6
- metadata.gz: 958d6266650c594a6fa99a08fcbf864156254fc43934c385deaed7e4a4169fcf76e34568a217aa532231c19ac3a0dfab1d1887fee5384fd650a7205f6fbe40f4
7
- data.tar.gz: 2a4bb1ccc73c1f587b3f548a813a2424bfbd893d28cbd0f1895837c810b4edeb3cecd606f9f44d0b42df83f8982804fea75b01b809b7ec1620e31bc9e447f8c1
6
+ metadata.gz: 16cd792647684d867af89c1c0cd4746a3f05c6337331beccb7cd7d43308e504d267a56050dd72f1458228d48f176b0bea897a80cb758baaee5b290053ec416fe
7
+ data.tar.gz: e58da7b8c5598b7016257cce7e0f7dab2f856e8b13a90b9c723839caef1016776074bf4e24790151ffc8c5f0f38ed3bc63a811848190b244b3e93b977939e20a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatsio (52.3.0)
4
+ seatsio (52.4.0)
5
5
  base64 (>= 0.2, < 0.4)
6
6
  rest-client (~> 2.0, >= 2.0.2)
7
7
 
@@ -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, :has_restricted_view, :zone, :floor
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, :has_restricted_view, :displayed_object_type, :parent_displayed_object_type,
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']
@@ -1,3 +1,3 @@
1
1
  module Seatsio
2
- VERSION = "52.3.0"
2
+ VERSION = "52.4.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: 52.3.0
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-01-28 00:00:00.000000000 Z
11
+ date: 2026-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client