seatsio 46.0.0 → 46.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8247e7988af6847122d631e25765b37e83fe554b11c3f8ef97d07e95f2fee552
4
- data.tar.gz: 8b0f1461b961b2c6c98b4d76d987429028a0450bf589aaec3f71d91d7d5b61f0
3
+ metadata.gz: f6fa31469fa22180caf5a5d80afe5f43c39519cf321eeb1c5ad8b3c47e6bb1ac
4
+ data.tar.gz: bc07d76adef6e5cbcf6d04ae0ebe077f40ea327b20f90854e26bb0cb72752682
5
5
  SHA512:
6
- metadata.gz: 4334afe03a7a9d5188ab2c7f53742c9feb281c34b595c8cf092b02e1d14a0c0614a0b9f82490f48db01aee8040b563904cffb45095527fdf95226328d3086d9b
7
- data.tar.gz: 454e992ca71eae144957bf6f460a331c447b513fc74bf08350db54bdc2e1e68ae71b20b5473b91fa0bc53211c982763816b2e80200e251177ceb8cffebe78c56
6
+ metadata.gz: 0cccdfc2c0c8dac704f3356df148182c616a54e31965f6dad581ef756da3c2f1a34fdca34413cc3d99ec00fe44e16f9e252fe1edee9cd03accac2f7dc427e2d5
7
+ data.tar.gz: b0451923c810a7de486c688000538964146d9c7aa5f7f3c5e810c050a5771272c65928d8d3350f2122339dff8f50a1440403b266a93367d88876b3bdcd45d23f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatsio (46.0.0)
4
+ seatsio (46.1.0)
5
5
  rest-client (~> 2.0, >= 2.0.2)
6
6
 
7
7
  GEM
@@ -6,59 +6,67 @@ require 'cgi'
6
6
 
7
7
  module Seatsio
8
8
  class ChartReportsClient
9
+
9
10
  def initialize(http_client)
10
11
  @http_client = http_client
11
12
  end
12
13
 
13
- def by_label(chart_key, book_whole_tables = nil)
14
- fetch_chart_report('byLabel', chart_key, book_whole_tables)
14
+ def by_label(chart_key, book_whole_tables = nil, version = nil)
15
+ fetch_chart_report('byLabel', chart_key, book_whole_tables, version)
15
16
  end
16
17
 
17
- def by_object_type(chart_key, book_whole_tables = nil)
18
- fetch_chart_report('byObjectType', chart_key, book_whole_tables)
18
+ def by_object_type(chart_key, book_whole_tables = nil, version = nil)
19
+ fetch_chart_report('byObjectType', chart_key, book_whole_tables, version)
19
20
  end
20
21
 
21
- def summary_by_object_type(chart_key, book_whole_tables = nil)
22
- fetch_summary_report('byObjectType', chart_key, book_whole_tables)
22
+ def summary_by_object_type(chart_key, book_whole_tables = nil, version = nil)
23
+ fetch_summary_report('byObjectType', chart_key, book_whole_tables, version)
23
24
  end
24
25
 
25
- def by_category_key(chart_key, book_whole_tables = nil)
26
- fetch_chart_report('byCategoryKey', chart_key, book_whole_tables)
26
+ def by_category_key(chart_key, book_whole_tables = nil, version = nil)
27
+ fetch_chart_report('byCategoryKey', chart_key, book_whole_tables, version)
27
28
  end
28
29
 
29
- def summary_by_category_key(chart_key, book_whole_tables = nil)
30
- fetch_summary_report('byCategoryKey', chart_key, book_whole_tables)
30
+ def summary_by_category_key(chart_key, book_whole_tables = nil, version = nil)
31
+ fetch_summary_report('byCategoryKey', chart_key, book_whole_tables, version)
31
32
  end
32
33
 
33
- def by_category_label(chart_key, book_whole_tables = nil)
34
- fetch_chart_report('byCategoryLabel', chart_key, book_whole_tables)
34
+ def by_category_label(chart_key, book_whole_tables = nil, version = nil)
35
+ fetch_chart_report('byCategoryLabel', chart_key, book_whole_tables, version)
35
36
  end
36
37
 
37
- def summary_by_category_label(chart_key, book_whole_tables = nil)
38
- fetch_summary_report('byCategoryLabel', chart_key, book_whole_tables)
38
+ def summary_by_category_label(chart_key, book_whole_tables = nil, version = nil)
39
+ fetch_summary_report('byCategoryLabel', chart_key, book_whole_tables, version)
39
40
  end
40
41
 
41
- def by_section(chart_key, book_whole_tables = nil)
42
- fetch_chart_report('bySection', chart_key, book_whole_tables)
42
+ def by_section(chart_key, book_whole_tables = nil, version = nil)
43
+ fetch_chart_report('bySection', chart_key, book_whole_tables, version)
43
44
  end
44
45
 
45
- def summary_by_section(event_key, book_whole_tables = nil)
46
- fetch_summary_report('bySection', event_key, book_whole_tables)
46
+ def summary_by_section(event_key, book_whole_tables = nil, version = nil)
47
+ fetch_summary_report('bySection', event_key, book_whole_tables, version)
47
48
  end
48
49
 
49
50
  private
50
51
 
51
- def fetch_chart_report(report_type, chart_key, book_whole_tables)
52
+ def fetch_chart_report(report_type, chart_key, book_whole_tables, version)
52
53
  params = book_whole_tables.nil? ? {} : { bookWholeTables: book_whole_tables }
54
+ unless version.nil?
55
+ params[:version] = version
56
+ end
53
57
  url = "reports/charts/#{chart_key}/#{report_type}"
54
58
  body = @http_client.get(url, params)
55
59
  ChartReport.new(body)
56
60
  end
57
61
 
58
- def fetch_summary_report(report_type, event_key, book_whole_tables)
62
+ def fetch_summary_report(report_type, chart_key, book_whole_tables, version)
59
63
  params = book_whole_tables.nil? ? {} : { bookWholeTables: book_whole_tables }
60
- url = "reports/charts/#{event_key}/#{report_type}/summary"
64
+ unless version.nil?
65
+ params[:version] = version
66
+ end
67
+ url = "reports/charts/#{chart_key}/#{report_type}/summary"
61
68
  @http_client.get(url, params)
62
69
  end
63
70
  end
71
+
64
72
  end
@@ -1,3 +1,3 @@
1
1
  module Seatsio
2
- VERSION = "46.0.0"
2
+ VERSION = "46.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: 46.0.0
4
+ version: 46.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-09-07 00:00:00.000000000 Z
11
+ date: 2023-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client