gopad 1.1.0 → 1.2.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: 30aa56a30ab22031aebf59af84cdd44ecfa07f009d43982c6bc6912ed1ee6195
4
- data.tar.gz: 6fbfe49975e4c16db87eaf229b69a214ac7511e23c03298bd10ab0651f2e91c3
3
+ metadata.gz: b2a1ef043e17be96f069fd3f34b38f56c51911ecfd1ce7fce30fea10f52350b7
4
+ data.tar.gz: a679251249f865bfe08268cc96a884372591d04281995ac912d2198fdc9e4422
5
5
  SHA512:
6
- metadata.gz: e37d3351bc9a316042bbffa5015452f2e4f67293fcac313bde94d743e927e92298cc3a23eedab936e71c78fee67d61cd7f8f53421d25bfcc56dcc3e1a2dc4d4a
7
- data.tar.gz: 49940313af540de64974b727a524cd1be65a747860774b0cd21f13adadec52a9cef1222149ea96a3f43ce2f636df7d6944a083e2a5bde0a4128e6f1a46f5a020
6
+ metadata.gz: 0ba0246547163eed1a297e969bd96b03cc1320fd69c8defee8c67a8a392a2720c51cc80fd8ced4d2cf491ed0ff462498ddb2649d4139155efe4ff65db479da26
7
+ data.tar.gz: 59994b6eeeba6104317ff41631cdf1dc53e0f15ef1fab7bd887d84106c437d07ab2b3fc4271a55e8febd1f0da7c30f2c78298314d1eef0241b5a90727d4a2977
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.0](https://github.com/gopad/gopad-ruby/compare/v1.1.0...v1.2.0) (2024-06-10)
4
+
5
+
6
+ ### Features
7
+
8
+ * automated openapi client update ([89ff356](https://github.com/gopad/gopad-ruby/commit/89ff356438e6b49bb0e29058c87d66c740359bb4))
9
+
3
10
  ## [1.1.0](https://github.com/gopad/gopad-ruby/compare/v1.0.0...v1.1.0) (2024-06-02)
4
11
 
5
12
 
data/README.md CHANGED
@@ -6,7 +6,7 @@ This repository provides a client SDK for Ruby. This SDK is automatically
6
6
  generated by the [OpenAPI Generator][generator] project:
7
7
 
8
8
  - API version: 1.0.0-alpha1
9
- - Package version: 1.1.0
9
+ - Package version: 1.2.0
10
10
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
11
11
 
12
12
  For more information, please visit [https://gopad.eu](https://gopad.eu)
@@ -21,7 +21,7 @@ the built gem:
21
21
 
22
22
  ```console
23
23
  gem build gopad.gemspec
24
- gem install ./gopad-1.1.0.gem
24
+ gem install ./gopad-1.2.0.gem
25
25
  ```
26
26
 
27
27
  ### Install from Rubygems
@@ -30,7 +30,7 @@ If you want to use a a properly released version hosted Rubygems you just need
30
30
  to add the following line to your Gemfile:
31
31
 
32
32
  ```ruby
33
- gem 'gopad', '~> 1.1.0'
33
+ gem 'gopad', '~> 1.2.0'
34
34
  ```
35
35
 
36
36
  ### Install from Git
@@ -18,7 +18,7 @@ module Gopad
18
18
  @api_client = api_client
19
19
  end
20
20
 
21
- # Assign a user to team
21
+ # Attach a user to team
22
22
  # @param team_id [String] A team identifier or slug
23
23
  # @param team_user_params [TeamUserParams] The team user data to attach
24
24
  # @param [Hash] opts the optional parameters
@@ -28,7 +28,7 @@ module Gopad
28
28
  data
29
29
  end
30
30
 
31
- # Assign a user to team
31
+ # Attach a user to team
32
32
  # @param team_id [String] A team identifier or slug
33
33
  # @param team_user_params [TeamUserParams] The team user data to attach
34
34
  # @param [Hash] opts the optional parameters
@@ -220,9 +220,9 @@ module Gopad
220
220
  [data, status_code, headers]
221
221
  end
222
222
 
223
- # Remove a user from team
223
+ # Unlink a user from team
224
224
  # @param team_id [String] A team identifier or slug
225
- # @param team_user_params [TeamUserParams] The team user data to delete
225
+ # @param team_user_params [TeamUserParams] The team user data to unlink
226
226
  # @param [Hash] opts the optional parameters
227
227
  # @return [Notification]
228
228
  def delete_team_from_user(team_id, team_user_params, opts = {})
@@ -230,9 +230,9 @@ module Gopad
230
230
  data
231
231
  end
232
232
 
233
- # Remove a user from team
233
+ # Unlink a user from team
234
234
  # @param team_id [String] A team identifier or slug
235
- # @param team_user_params [TeamUserParams] The team user data to delete
235
+ # @param team_user_params [TeamUserParams] The team user data to unlink
236
236
  # @param [Hash] opts the optional parameters
237
237
  # @return [Array<(Notification, Integer, Hash)>] Notification data, response status code and response headers
238
238
  def delete_team_from_user_with_http_info(team_id, team_user_params, opts = {})
@@ -293,7 +293,7 @@ module Gopad
293
293
  [data, status_code, headers]
294
294
  end
295
295
 
296
- # Fetch all users assigned to team
296
+ # Fetch all users attached to team
297
297
  # @param team_id [String] A team identifier or slug
298
298
  # @param [Hash] opts the optional parameters
299
299
  # @option opts [String] :search Search query
@@ -307,7 +307,7 @@ module Gopad
307
307
  data
308
308
  end
309
309
 
310
- # Fetch all users assigned to team
310
+ # Fetch all users attached to team
311
311
  # @param team_id [String] A team identifier or slug
312
312
  # @param [Hash] opts the optional parameters
313
313
  # @option opts [String] :search Search query
@@ -18,7 +18,7 @@ module Gopad
18
18
  @api_client = api_client
19
19
  end
20
20
 
21
- # Assign a team to user
21
+ # Attach a team to user
22
22
  # @param user_id [String] A user identifier or slug
23
23
  # @param user_team_params [UserTeamParams] The user team data to attach
24
24
  # @param [Hash] opts the optional parameters
@@ -28,7 +28,7 @@ module Gopad
28
28
  data
29
29
  end
30
30
 
31
- # Assign a team to user
31
+ # Attach a team to user
32
32
  # @param user_id [String] A user identifier or slug
33
33
  # @param user_team_params [UserTeamParams] The user team data to attach
34
34
  # @param [Hash] opts the optional parameters
@@ -220,9 +220,9 @@ module Gopad
220
220
  [data, status_code, headers]
221
221
  end
222
222
 
223
- # Remove a team from user
223
+ # Unlink a team from user
224
224
  # @param user_id [String] A user identifier or slug
225
- # @param user_team_params [UserTeamParams] The user team data to delete
225
+ # @param user_team_params [UserTeamParams] The user team data to unlink
226
226
  # @param [Hash] opts the optional parameters
227
227
  # @return [Notification]
228
228
  def delete_user_from_team(user_id, user_team_params, opts = {})
@@ -230,9 +230,9 @@ module Gopad
230
230
  data
231
231
  end
232
232
 
233
- # Remove a team from user
233
+ # Unlink a team from user
234
234
  # @param user_id [String] A user identifier or slug
235
- # @param user_team_params [UserTeamParams] The user team data to delete
235
+ # @param user_team_params [UserTeamParams] The user team data to unlink
236
236
  # @param [Hash] opts the optional parameters
237
237
  # @return [Array<(Notification, Integer, Hash)>] Notification data, response status code and response headers
238
238
  def delete_user_from_team_with_http_info(user_id, user_team_params, opts = {})
@@ -293,7 +293,7 @@ module Gopad
293
293
  [data, status_code, headers]
294
294
  end
295
295
 
296
- # Fetch all teams assigned to user
296
+ # Fetch all teams attached to user
297
297
  # @param user_id [String] A user identifier or slug
298
298
  # @param [Hash] opts the optional parameters
299
299
  # @option opts [String] :search Search query
@@ -307,7 +307,7 @@ module Gopad
307
307
  data
308
308
  end
309
309
 
310
- # Fetch all teams assigned to user
310
+ # Fetch all teams attached to user
311
311
  # @param user_id [String] A user identifier or slug
312
312
  # @param [Hash] opts the optional parameters
313
313
  # @option opts [String] :search Search query
@@ -12,7 +12,7 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Gopad
15
- # Parameters to attach or remove team user
15
+ # Parameters to attach or unlink team user
16
16
  class TeamUserParams
17
17
  attr_accessor :user, :perm
18
18
 
@@ -12,7 +12,7 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Gopad
15
- # Parameters to attach or remove user team
15
+ # Parameters to attach or unlink user team
16
16
  class UserTeamParams
17
17
  attr_accessor :team, :perm
18
18
 
data/lib/gopad/version.rb CHANGED
@@ -9,5 +9,5 @@
9
9
  #
10
10
 
11
11
  module Gopad
12
- VERSION = '1.1.0'.freeze
12
+ VERSION = '1.2.0'.freeze
13
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gopad
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Boerger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-02 00:00:00.000000000 Z
11
+ date: 2024-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday