seatsio 52.2.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: 57da97b500287eba9626fe73842d370c5333a7a6262ae8f154cbd0a4d0c651c7
4
- data.tar.gz: 246d25bb13266305bb0aa6e1ab06b600a23dd134e9c581d73535967490269376
3
+ metadata.gz: a798af0dd1e1e3c62f37e7dae213a6405adee8b896ca42680e0e38dba4a08a89
4
+ data.tar.gz: b64a6257afc652a62a1279a0db5cb5319de91806e6ba678d03689045b99c3395
5
5
  SHA512:
6
- metadata.gz: 1e194db6ab4adfccc08434deea141972b780aa3a938e2aef1aa232d81b0049c230489d62386810411af1c790db76953921942fc5fb1c54554263b4034d3a7804
7
- data.tar.gz: f0f307b58b0c0781a7a6939434139533fd93a60754c4061660879aca21bb4c3a8ddea1c3b59e847b2809e4e424a72bef139ecb3b3db7c9c4d79c7e3764f4e3ea
6
+ metadata.gz: 16cd792647684d867af89c1c0cd4746a3f05c6337331beccb7cd7d43308e504d267a56050dd72f1458228d48f176b0bea897a80cb758baaee5b290053ec416fe
7
+ data.tar.gz: e58da7b8c5598b7016257cce7e0f7dab2f856e8b13a90b9c723839caef1016776074bf4e24790151ffc8c5f0f38ed3bc63a811848190b244b3e93b977939e20a
@@ -25,4 +25,6 @@ jobs:
25
25
  timezone: Europe/Brussels
26
26
  - run: bundle exec parallel_test
27
27
  env:
28
+ API_URL: https://api-staging-eu.seatsio.net
28
29
  DEMO_COMPANY_SECRET_KEY: ${{ secrets.DEMO_COMPANY_SECRET_KEY }}
30
+ CORE_V2_STAGING_EU_SYSTEM_API_SECRET: ${{ secrets.CORE_V2_STAGING_EU_SYSTEM_API_SECRET }}
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatsio (52.2.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.2.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.2.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-21 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