seatsio 36.0.0 → 36.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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/seatsio/domain.rb +6 -1
- 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: 30626fb04f674a3c57bf42734608309677d5d05628a92c7c836f404a4fa0076c
|
4
|
+
data.tar.gz: 92d1834db424831a0eec2b190f6f25db3a468cfc0c952e93bf2c82dfcf3ff263
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1cd7d244ab20302cfa260a2d8227028e37694187be91fa8f4e62bdbdda68703acc40afc779ef204389493e0486acc8d926e8aefd855a1a7ead5dcc88c18a107
|
7
|
+
data.tar.gz: 684cbb5146969a8771e7b8fa5e6ec6d05f99508ad464f663539d93b85478507c3db977fb62080914b8189df7a3d5fd60c9fcd3a59f0907ad296fefe2e77d5307
|
data/Gemfile.lock
CHANGED
data/lib/seatsio/domain.rb
CHANGED
@@ -127,7 +127,8 @@ module Seatsio
|
|
127
127
|
|
128
128
|
attr_accessor :id, :key, :chart_key, :supports_best_available,
|
129
129
|
:table_booking_config, :for_sale_config, :created_on, :updated_on, :channels,
|
130
|
-
:social_distancing_ruleset_key
|
130
|
+
:social_distancing_ruleset_key, :is_top_level_season, :is_partial_season,
|
131
|
+
:is_event_in_season, :top_level_season_key
|
131
132
|
|
132
133
|
def initialize(data)
|
133
134
|
@id = data['id']
|
@@ -142,6 +143,10 @@ module Seatsio
|
|
142
143
|
|d| Channel.new(d['key'], d['name'], d['color'], d['index'], d['objects'])
|
143
144
|
} if data['channels']
|
144
145
|
@social_distancing_ruleset_key = data['socialDistancingRulesetKey']
|
146
|
+
@is_top_level_season = data['isTopLevelSeason']
|
147
|
+
@is_partial_season = data['isPartialSeason']
|
148
|
+
@is_event_in_season = data['isEventInSeason']
|
149
|
+
@top_level_season_key = data['topLevelSeasonKey']
|
145
150
|
end
|
146
151
|
|
147
152
|
def is_season
|
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: 36.
|
4
|
+
version: 36.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: 2022-02-
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|