seatsio 53.2.0 → 53.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: 34ab01825aa0331beffe2be4cf50469e10f0c5389d7865034a85997a68f38042
4
- data.tar.gz: 673c195960c51f95f757e85eed61584a190862b02b188060a8ae8cff9d8ddae9
3
+ metadata.gz: 9434d40c5f4f5cd624c5e4b535f6921f80f76e7e2e53812a36fbde148f5d5d84
4
+ data.tar.gz: 346a8b745d369c07a336cef07c8446f0b6bfe9ae8a639b4eaadf2982dd2f956f
5
5
  SHA512:
6
- metadata.gz: 23312830257527d8895bc1f52d53e37dd64ca7a92421b29a928c5d8bd8e1e081cbc89ea4449cf8b2925792ca315aa7002d96125f81ea0b003fb4c188976d26db
7
- data.tar.gz: 918aa267e1193538f8f727d8adaacc9becc484703be650a14f9e083f2edaf50a9b0fc6d4a99b353244474d00e4e0f126657576c8b22b49ae7a7c209dfe506802
6
+ metadata.gz: c73a61ace08987a1d823b162b8de14125f3a38e883a885f3c9e9f09b39b078d49514fdf4afdfd044285e980c4fb9c128da50e87b3a0a0f3b845a68d8001e2493
7
+ data.tar.gz: b20ea2884e1d59c7595a4679ce628f327e68348fc5294df3e4486cbb9f9994474f7afb4e4286cd366298a7e3539ae4492c2de0464c26344e09963a8e5b327d7b
@@ -10,6 +10,11 @@ jobs:
10
10
  test:
11
11
 
12
12
  runs-on: ubuntu-latest
13
+ services:
14
+ httpbin:
15
+ image: mccutchen/go-httpbin:2.25.0
16
+ ports:
17
+ - 8080:8080
13
18
  strategy:
14
19
  fail-fast: false
15
20
  matrix:
@@ -24,8 +29,10 @@ jobs:
24
29
  - uses: zcong1993/setup-timezone@master
25
30
  with:
26
31
  timezone: Europe/Brussels
27
- - run: bundle exec parallel_test
32
+ - run: bundle exec parallel_test -n 8
28
33
  env:
29
- API_URL: https://api-staging-eu.seatsio.net
30
- DEMO_COMPANY_SECRET_KEY: ${{ secrets.DEMO_COMPANY_SECRET_KEY }}
31
- CORE_V2_STAGING_EU_SYSTEM_API_SECRET: ${{ secrets.CORE_V2_STAGING_EU_SYSTEM_API_SECRET }}
34
+ API_URL: https://api-staging-na.seatsio.net
35
+ USAGE_REPORTING_TESTS_API_URL: https://api-staging-eu.seatsio.net
36
+ HTTPBIN_URL: http://127.0.0.1:${{ job.services.httpbin.ports[8080] }}
37
+ USAGE_REPORTING_TESTS_SECRET_KEY: ${{ secrets.DEMO_COMPANY_SECRET_KEY }}
38
+ CORE_V2_API_SECRET: ${{ secrets.CORE_V2_STAGING_NA_SYSTEM_API_SECRET }}
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatsio (53.2.0)
4
+ seatsio (53.4.0)
5
5
  base64 (>= 0.2, < 0.4)
6
6
  rest-client (~> 2.0, >= 2.0.2)
7
7
 
@@ -383,7 +383,7 @@ module Seatsio
383
383
  class ChartObjectInfo
384
384
 
385
385
  attr_reader :label, :labels, :ids, :category_key, :category_label, :section, :entrance, :capacity, :object_type,
386
- :left_neighbour, :right_neighbour, :book_as_a_whole, :distance_to_focal_point, :num_seats, :is_accessible,
386
+ :area_type, :left_neighbour, :right_neighbour, :book_as_a_whole, :distance_to_focal_point, :num_seats, :is_accessible,
387
387
  :is_companion_seat, :has_lift_up_armrests, :is_hearing_impaired, :is_semi_ambulatory_seat, :has_sign_language_interpretation,
388
388
  :is_plus_size, :has_restricted_view, :zone, :floor
389
389
 
@@ -397,6 +397,7 @@ module Seatsio
397
397
  @entrance = data['entrance']
398
398
  @capacity = data['capacity']
399
399
  @object_type = data['objectType']
400
+ @area_type = data['areaType']
400
401
  @left_neighbour = data['leftNeighbour']
401
402
  @right_neighbour = data['rightNeighbour']
402
403
  @book_as_a_whole = data['bookAsAWhole']
@@ -471,7 +472,7 @@ module Seatsio
471
472
  RESALE = 'resale'
472
473
 
473
474
  attr_reader :labels, :ids, :label, :order_id, :extra_data, :capacity, :status,
474
- :category_key, :entrance, :object_type, :hold_token, :category_label,
475
+ :category_key, :entrance, :object_type, :area_type, :hold_token, :category_label,
475
476
  :ticket_type, :num_booked, :num_free, :num_held, :for_sale, :section,
476
477
  :is_accessible, :is_companion_seat, :has_lift_up_armrests, :is_hearing_impaired, :is_semi_ambulatory_seat,
477
478
  :has_sign_language_interpretation, :is_plus_size, :has_restricted_view, :displayed_object_type, :parent_displayed_object_type,
@@ -498,6 +499,7 @@ module Seatsio
498
499
  @num_held = data['numHeld']
499
500
  @capacity = data['capacity']
500
501
  @object_type = data['objectType']
502
+ @area_type = data['areaType']
501
503
  @extra_data = data['extraData']
502
504
  @is_accessible = data['isAccessible']
503
505
  @is_companion_seat = data['isCompanionSeat']
@@ -1,3 +1,3 @@
1
1
  module Seatsio
2
- VERSION = "53.2.0"
2
+ VERSION = "53.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: 53.2.0
4
+ version: 53.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-09-11 00:00:00.000000000 Z
11
+ date: 2026-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client