seatsio 45.2.0 → 46.0.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: 73eababecc2e4d91645db5007ad781d59b7b0e40cd89e41f7e894bbc92a9ffd0
4
- data.tar.gz: f092221d8837e6037ee3e59a987cdf540084e8a0febaf0d76ffb20e93769a258
3
+ metadata.gz: 8247e7988af6847122d631e25765b37e83fe554b11c3f8ef97d07e95f2fee552
4
+ data.tar.gz: 8b0f1461b961b2c6c98b4d76d987429028a0450bf589aaec3f71d91d7d5b61f0
5
5
  SHA512:
6
- metadata.gz: 33bf3a3c71d4c4c7a6158a8c72f245e8e0b7323ac9160d5745029a7635cc04f8d58c8aaa83457154fdd7a0e410c9d050008448ecdcd854166beffd02496b5dfc
7
- data.tar.gz: 43419b8dcb7622c95c46049033c53b080c5cc198572e42ad25e12bc0f5058cf65d5e8f2191573a9042090c0084bb8094d728f79d1082c63de0a7b1a75cb6d746
6
+ metadata.gz: 4334afe03a7a9d5188ab2c7f53742c9feb281c34b595c8cf092b02e1d14a0c0614a0b9f82490f48db01aee8040b563904cffb45095527fdf95226328d3086d9b
7
+ data.tar.gz: 454e992ca71eae144957bf6f460a331c447b513fc74bf08350db54bdc2e1e68ae71b20b5473b91fa0bc53211c982763816b2e80200e251177ceb8cffebe78c56
data/Gemfile.lock CHANGED
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatsio (45.2.0)
4
+ seatsio (46.0.0)
5
5
  rest-client (~> 2.0, >= 2.0.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- addressable (2.8.1)
10
+ addressable (2.8.5)
11
11
  public_suffix (>= 2.0.2, < 6.0)
12
12
  crack (0.4.5)
13
13
  rexml
@@ -24,18 +24,18 @@ GEM
24
24
  minitest-parallel_fork (1.3.0)
25
25
  minitest (>= 5.15.0)
26
26
  netrc (0.11.0)
27
- public_suffix (5.0.0)
27
+ public_suffix (5.0.3)
28
28
  rake (13.0.6)
29
29
  rest-client (2.1.0)
30
30
  http-accept (>= 1.7.0, < 2.0)
31
31
  http-cookie (>= 1.0.2, < 2.0)
32
32
  mime-types (>= 1.16, < 4.0)
33
33
  netrc (~> 0.8)
34
- rexml (3.2.5)
34
+ rexml (3.2.6)
35
35
  unf (0.1.4)
36
36
  unf_ext
37
37
  unf_ext (0.0.7.7)
38
- webmock (3.18.1)
38
+ webmock (3.19.1)
39
39
  addressable (>= 2.8.0)
40
40
  crack (>= 0.3.2)
41
41
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -64,12 +64,6 @@ module Seatsio
64
64
  Chart.new(response)
65
65
  end
66
66
 
67
- def copy_to_subaccount(chart_key, subaccount_id)
68
- url = "charts/#{chart_key}/version/published/actions/copy-to/#{subaccount_id}"
69
- response = @http_client.post url
70
- Chart.new(response)
71
- end
72
-
73
67
  def copy_to_workspace(chart_key, to_workspace_key)
74
68
  url = "charts/#{chart_key}/version/published/actions/copy-to-workspace/#{to_workspace_key}"
75
69
  response = @http_client.post url
@@ -231,19 +231,6 @@ module Seatsio
231
231
  end
232
232
  end
233
233
 
234
- class Subaccount
235
- attr_reader :id, :secret_key, :designer_key, :public_key, :name, :active
236
-
237
- def initialize(data)
238
- @id = data['id']
239
- @public_key = data['publicKey']
240
- @secret_key = data['secretKey']
241
- @designer_key = data['designerKey']
242
- @name = data['name']
243
- @active = data['active']
244
- end
245
- end
246
-
247
234
  class Workspace
248
235
  attr_reader :id, :name, :key, :secret_key, :is_test, :is_active, :is_default
249
236
 
@@ -1,3 +1,3 @@
1
1
  module Seatsio
2
- VERSION = "45.2.0"
2
+ VERSION = "46.0.0"
3
3
  end
data/lib/seatsio.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require 'seatsio/version'
2
2
  require 'seatsio/charts'
3
- require 'seatsio/subaccounts'
4
3
  require 'seatsio/workspaces'
5
4
  require 'seatsio/events'
6
5
  require 'seatsio/seasons'
@@ -11,14 +10,13 @@ require 'seatsio/usage_reports'
11
10
 
12
11
  module Seatsio
13
12
  class Client
14
- attr_reader :charts, :subaccounts, :workspaces, :events, :seasons,
13
+ attr_reader :charts, :workspaces, :events, :seasons,
15
14
  :hold_tokens, :chart_reports, :event_reports, :usage_reports
16
15
 
17
16
  def initialize(region, secret_key, workspace_key = nil, max_retries = 5)
18
17
  base_url = region.url
19
18
  @http_client = Seatsio::HttpClient.new(secret_key, workspace_key, base_url, max_retries)
20
19
  @charts = ChartsClient.new(@http_client)
21
- @subaccounts = SubaccountsClient.new(@http_client)
22
20
  @workspaces = WorkspacesClient.new(@http_client)
23
21
  @events = EventsClient.new(@http_client)
24
22
  @seasons = SeasonsClient.new(@http_client, self)
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.2.0
4
+ version: 46.0.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-08-25 00:00:00.000000000 Z
11
+ date: 2023-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -141,7 +141,6 @@ files:
141
141
  - lib/seatsio/httpClient.rb
142
142
  - lib/seatsio/pagination/cursor.rb
143
143
  - lib/seatsio/seasons.rb
144
- - lib/seatsio/subaccounts.rb
145
144
  - lib/seatsio/usage_reports.rb
146
145
  - lib/seatsio/util.rb
147
146
  - lib/seatsio/version.rb
@@ -1,81 +0,0 @@
1
- require "seatsio/exception"
2
- require "base64"
3
- require "seatsio/httpClient"
4
- require "seatsio/domain"
5
- require "json"
6
- require "cgi"
7
- require "seatsio/domain"
8
-
9
- module Seatsio
10
- class SubaccountsClient
11
- def initialize(http_client)
12
- @http_client = http_client
13
- end
14
-
15
- def create(name: nil)
16
- body = {}
17
- body['name'] = name if name
18
-
19
- response = @http_client.post("subaccounts", body)
20
- Subaccount.new(response)
21
- end
22
-
23
- def update(id:, name: nil)
24
- body = {}
25
- body['name'] = name if name
26
- @http_client.post("subaccounts/#{id}", body)
27
- end
28
-
29
- def list(filter: nil)
30
- extended_cursor = cursor
31
- extended_cursor.set_query_param('filter', filter)
32
- extended_cursor
33
- end
34
-
35
- def active
36
- cursor status: 'active'
37
- end
38
-
39
- def inactive
40
- cursor status: 'inactive'
41
- end
42
-
43
- def activate(id:)
44
- @http_client.post("/subaccounts/#{id}/actions/activate")
45
- end
46
-
47
- def deactivate(id:)
48
- @http_client.post("/subaccounts/#{id}/actions/deactivate")
49
- end
50
-
51
- def retrieve(id:)
52
- response = @http_client.get("/subaccounts/#{id}")
53
- Subaccount.new(response)
54
- end
55
-
56
- def copy_chart_to_parent(id: nil, chart_key: nil)
57
- response = @http_client.post("/subaccounts/#{id}/charts/#{chart_key}/actions/copy-to/parent")
58
- Chart.new(response)
59
- end
60
-
61
- def copy_chart_to_subaccount(from_id: nil, to_id: nil, chart_key: nil)
62
- response = @http_client.post("/subaccounts/#{from_id}/charts/#{chart_key}/actions/copy-to/#{to_id}")
63
- Chart.new(response)
64
- end
65
-
66
- def regenerate_secret_key(id:)
67
- @http_client.post("/subaccounts/#{id}/secret-key/actions/regenerate")
68
- end
69
-
70
- def regenerate_designer_key(id:)
71
- @http_client.post("/subaccounts/#{id}/designer-key/actions/regenerate")
72
- end
73
-
74
- private
75
-
76
- def cursor(status: nil)
77
- endpoint = status ? "subaccounts/#{status}" : 'subaccounts'
78
- Pagination::Cursor.new(Subaccount, endpoint, @http_client)
79
- end
80
- end
81
- end