seatsio 46.0.0 → 46.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/chart_reports.rb +29 -21
- 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: f6fa31469fa22180caf5a5d80afe5f43c39519cf321eeb1c5ad8b3c47e6bb1ac
|
4
|
+
data.tar.gz: bc07d76adef6e5cbcf6d04ae0ebe077f40ea327b20f90854e26bb0cb72752682
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cccdfc2c0c8dac704f3356df148182c616a54e31965f6dad581ef756da3c2f1a34fdca34413cc3d99ec00fe44e16f9e252fe1edee9cd03accac2f7dc427e2d5
|
7
|
+
data.tar.gz: b0451923c810a7de486c688000538964146d9c7aa5f7f3c5e810c050a5771272c65928d8d3350f2122339dff8f50a1440403b266a93367d88876b3bdcd45d23f
|
data/Gemfile.lock
CHANGED
@@ -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,
|
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
|
-
|
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
|
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: 46.
|
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-
|
11
|
+
date: 2023-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|