seatsio 45.0.0 → 45.1.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: bdd4179789ae397639cc2adeb699ef08bba663c37fad94fd5f7b548288a903f0
4
- data.tar.gz: 2bb0b732ffc21d52031c58888433f5378c97c9c86b70753c66b9edc88a0255e9
3
+ metadata.gz: 1b59187036878ba734bc06e2de29977d3d7aef057810d0a92de3719c7c1fa784
4
+ data.tar.gz: 9b55d3b20b7cbfbc84beaa20fb757595bb407f26995891d07de82ad185cc8dff
5
5
  SHA512:
6
- metadata.gz: d15e85bef5d066ed46bc0b78e89eea0111ad1d2a9f8b07db6c294b3cd6a4c78cf0423b47e70b780319499d99d027052408a82f4d2586c44decb1ddd53c8462a5
7
- data.tar.gz: 65c45a2ffd2260d5ddc72152c43e97acfc1c62fa927d96d66aed92a98072318d7df8ba9d33ad559af5f334e8856c2c0db46b7e4036e3299dc13eb37cdef77ee3
6
+ metadata.gz: 4d501ee3bb0bd2bee6368b75270aa4c0cc4fbf7c29a4b8763f481e9344cb0ac0297fdeb6c853b1726b2ecefc86d518d04220b58e4e23082fb52127c12cc84048
7
+ data.tar.gz: 37f40fec41daa5a65cc4e4d3aaeebf6d9b2c550efbb88ef4252d09d578fd8dea7e1820e14c3c88d474f1735eeaadff7fd565aefcb15e330191b528d6285c07ad
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatsio (45.0.0)
4
+ seatsio (45.1.0)
5
5
  rest-client (~> 2.0, >= 2.0.2)
6
6
 
7
7
  GEM
@@ -20,7 +20,7 @@ GEM
20
20
  mime-types (3.3.1)
21
21
  mime-types-data (~> 3.2015)
22
22
  mime-types-data (3.2021.0225)
23
- minitest (5.18.1)
23
+ minitest (5.19.0)
24
24
  minitest-parallel_fork (1.3.0)
25
25
  minitest (>= 5.15.0)
26
26
  netrc (0.11.0)
@@ -378,7 +378,8 @@ module Seatsio
378
378
  :ticket_type, :num_booked, :num_free, :num_held, :for_sale, :section,
379
379
  :is_accessible, :is_companion_seat, :has_restricted_view, :displayed_object_type,
380
380
  :left_neighbour, :right_neighbour, :is_available, :channel,
381
- :book_as_a_whole, :distance_to_focal_point, :holds, :num_seats
381
+ :book_as_a_whole, :distance_to_focal_point, :holds, :num_seats,
382
+ :variable_occupancy, :min_occupancy, :max_occupancy
382
383
 
383
384
  def initialize(data)
384
385
  @status = data['status']
@@ -411,6 +412,9 @@ module Seatsio
411
412
  @distance_to_focal_point = data['distanceToFocalPoint']
412
413
  @holds = data['holds']
413
414
  @num_seats = data['numSeats']
415
+ @variable_occupancy = data['variableOccupancy']
416
+ @min_occupancy = data['minOccupancy']
417
+ @max_occupancy = data['maxOccupancy']
414
418
  end
415
419
  end
416
420
 
@@ -1,3 +1,3 @@
1
1
  module Seatsio
2
- VERSION = "45.0.0"
2
+ VERSION = "45.1.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: 45.0.0
4
+ version: 45.1.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: 2023-07-10 00:00:00.000000000 Z
11
+ date: 2023-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client