google-apis-chat_v1 0.57.0 → 0.59.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/chat_v1/classes.rb +942 -360
- data/lib/google/apis/chat_v1/gem_version.rb +2 -2
- data/lib/google/apis/chat_v1/representations.rb +239 -0
- data/lib/google/apis/chat_v1/service.rb +686 -56
- data/lib/google/apis/chat_v1.rb +18 -0
- metadata +3 -3
data/lib/google/apis/chat_v1.rb
CHANGED
@@ -33,9 +33,15 @@ module Google
|
|
33
33
|
# Private Service: https://www.googleapis.com/auth/chat.bot
|
34
34
|
AUTH_CHAT_BOT = 'https://www.googleapis.com/auth/chat.bot'
|
35
35
|
|
36
|
+
# Delete conversations and spaces & remove access to associated files in Google Chat
|
37
|
+
AUTH_CHAT_DELETE = 'https://www.googleapis.com/auth/chat.delete'
|
38
|
+
|
36
39
|
# View, add, and remove members from conversations in Google Chat
|
37
40
|
AUTH_CHAT_MEMBERSHIPS = 'https://www.googleapis.com/auth/chat.memberships'
|
38
41
|
|
42
|
+
# Add and remove itself from conversations in Google Chat
|
43
|
+
AUTH_CHAT_MEMBERSHIPS_APP = 'https://www.googleapis.com/auth/chat.memberships.app'
|
44
|
+
|
39
45
|
# View members in Google Chat conversations.
|
40
46
|
AUTH_CHAT_MEMBERSHIPS_READONLY = 'https://www.googleapis.com/auth/chat.memberships.readonly'
|
41
47
|
|
@@ -45,12 +51,24 @@ module Google
|
|
45
51
|
# Compose and send messages in Google Chat
|
46
52
|
AUTH_CHAT_MESSAGES_CREATE = 'https://www.googleapis.com/auth/chat.messages.create'
|
47
53
|
|
54
|
+
# View, add, and delete reactions to messages in Google Chat
|
55
|
+
AUTH_CHAT_MESSAGES_REACTIONS = 'https://www.googleapis.com/auth/chat.messages.reactions'
|
56
|
+
|
57
|
+
# Add reactions to messages in Google Chat
|
58
|
+
AUTH_CHAT_MESSAGES_REACTIONS_CREATE = 'https://www.googleapis.com/auth/chat.messages.reactions.create'
|
59
|
+
|
60
|
+
# View reactions to messages in Google Chat
|
61
|
+
AUTH_CHAT_MESSAGES_REACTIONS_READONLY = 'https://www.googleapis.com/auth/chat.messages.reactions.readonly'
|
62
|
+
|
48
63
|
# View messages and reactions in Google Chat
|
49
64
|
AUTH_CHAT_MESSAGES_READONLY = 'https://www.googleapis.com/auth/chat.messages.readonly'
|
50
65
|
|
51
66
|
# Create conversations and spaces and view or update metadata (including history settings) in Google Chat
|
52
67
|
AUTH_CHAT_SPACES = 'https://www.googleapis.com/auth/chat.spaces'
|
53
68
|
|
69
|
+
# Create new conversations in Google Chat
|
70
|
+
AUTH_CHAT_SPACES_CREATE = 'https://www.googleapis.com/auth/chat.spaces.create'
|
71
|
+
|
54
72
|
# View chat and spaces in Google Chat
|
55
73
|
AUTH_CHAT_SPACES_READONLY = 'https://www.googleapis.com/auth/chat.spaces.readonly'
|
56
74
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-chat_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.59.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chat_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chat_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chat_v1/v0.59.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chat_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|