gopad 1.1.0 → 1.2.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/CHANGELOG.md +7 -0
- data/README.md +3 -3
- data/lib/gopad/api/team_api.rb +8 -8
- data/lib/gopad/api/user_api.rb +8 -8
- data/lib/gopad/models/team_user_params.rb +1 -1
- data/lib/gopad/models/user_team_params.rb +1 -1
- data/lib/gopad/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: b2a1ef043e17be96f069fd3f34b38f56c51911ecfd1ce7fce30fea10f52350b7
|
|
4
|
+
data.tar.gz: a679251249f865bfe08268cc96a884372591d04281995ac912d2198fdc9e4422
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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.
|
|
33
|
+
gem 'gopad', '~> 1.2.0'
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### Install from Git
|
data/lib/gopad/api/team_api.rb
CHANGED
|
@@ -18,7 +18,7 @@ module Gopad
|
|
|
18
18
|
@api_client = api_client
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
#
|
|
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
|
-
#
|
|
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
|
-
#
|
|
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
|
|
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
|
-
#
|
|
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
|
|
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
|
|
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
|
|
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
|
data/lib/gopad/api/user_api.rb
CHANGED
|
@@ -18,7 +18,7 @@ module Gopad
|
|
|
18
18
|
@api_client = api_client
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
#
|
|
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
|
-
#
|
|
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
|
-
#
|
|
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
|
|
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
|
-
#
|
|
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
|
|
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
|
|
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
|
|
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
|
data/lib/gopad/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2024-06-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|