google-apis-chat_v1 0.47.0 → 0.48.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 +4 -0
- data/lib/google/apis/chat_v1/classes.rb +3 -2
- data/lib/google/apis/chat_v1/gem_version.rb +2 -2
- data/lib/google/apis/chat_v1/service.rb +4 -1
- data/lib/google/apis/chat_v1.rb +9 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e3e5304ffe77d6cffe55741fb1e0745da0181b6a2bba5ac64a44091305318b9
|
|
4
|
+
data.tar.gz: 96c783aaa65cf567ee99ad74fcff4cedfb843635d79b9aacf3bdb3a327f0f762
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e7ad9b5a07f0471cef951fd57775e0eb34093d9e9af8739548b9a723b043bb2e583a30da62510d53367c2e160e9f85ff40f2914c0003d11045174d76ba30e9c
|
|
7
|
+
data.tar.gz: 8058dcb6d8a7f0e2e3752acc543e2f4e4d11d5830721bd124b24927972d5e423c65986d935995c482ed71abca7c52c2227fbb2d243355d97ec105ebbf8639721
|
data/CHANGELOG.md
CHANGED
|
@@ -3002,8 +3002,9 @@ module Google
|
|
|
3002
3002
|
class Space
|
|
3003
3003
|
include Google::Apis::Core::Hashable
|
|
3004
3004
|
|
|
3005
|
-
# The space's display name.
|
|
3006
|
-
#
|
|
3005
|
+
# The space's display name. Required when [creating a space](https://developers.
|
|
3006
|
+
# google.com/chat/api/reference/rest/v1/spaces/create). For direct messages,
|
|
3007
|
+
# this field may be empty.
|
|
3007
3008
|
# Corresponds to the JSON property `displayName`
|
|
3008
3009
|
# @return [String]
|
|
3009
3010
|
attr_accessor :display_name
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ChatV1
|
|
18
18
|
# Version of the google-apis-chat_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.48.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20221213"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -675,7 +675,10 @@ module Google
|
|
|
675
675
|
# Workspace Developer Preview Program](https://developers.google.com/workspace/
|
|
676
676
|
# preview), which grants early access to certain features. [User authentication](
|
|
677
677
|
# https://developers.google.com/chat/api/guides/auth/users) requires the `chat.
|
|
678
|
-
# messages` or `chat.messages.create` authorization scope.
|
|
678
|
+
# messages` or `chat.messages.create` authorization scope. Because Chat provides
|
|
679
|
+
# authentication for [webhooks](https://developers.google.com/chat/how-tos/
|
|
680
|
+
# webhooks) as part of the URL that's generated when a webhook is registered,
|
|
681
|
+
# webhooks can create messages without a service account or user authentication.
|
|
679
682
|
# @param [String] parent
|
|
680
683
|
# Required. The resource name of the space in which to create a message. Format:
|
|
681
684
|
# spaces/`space`
|
data/lib/google/apis/chat_v1.rb
CHANGED
|
@@ -33,6 +33,9 @@ module Google
|
|
|
33
33
|
# View, add, and remove members from conversations in Google Chat
|
|
34
34
|
AUTH_CHAT_MEMBERSHIPS = 'https://www.googleapis.com/auth/chat.memberships'
|
|
35
35
|
|
|
36
|
+
# View members in Google Chat conversations.
|
|
37
|
+
AUTH_CHAT_MEMBERSHIPS_READONLY = 'https://www.googleapis.com/auth/chat.memberships.readonly'
|
|
38
|
+
|
|
36
39
|
# View, compose, send, update, and delete messages, and add, view, and delete reactions to messages.
|
|
37
40
|
AUTH_CHAT_MESSAGES = 'https://www.googleapis.com/auth/chat.messages'
|
|
38
41
|
|
|
@@ -41,6 +44,12 @@ module Google
|
|
|
41
44
|
|
|
42
45
|
# View messages and reactions in Google Chat
|
|
43
46
|
AUTH_CHAT_MESSAGES_READONLY = 'https://www.googleapis.com/auth/chat.messages.readonly'
|
|
47
|
+
|
|
48
|
+
# Create conversations and spaces and view or update metadata (including history settings) in Google Chat
|
|
49
|
+
AUTH_CHAT_SPACES = 'https://www.googleapis.com/auth/chat.spaces'
|
|
50
|
+
|
|
51
|
+
# View chat and spaces in Google Chat
|
|
52
|
+
AUTH_CHAT_SPACES_READONLY = 'https://www.googleapis.com/auth/chat.spaces.readonly'
|
|
44
53
|
end
|
|
45
54
|
end
|
|
46
55
|
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.48.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:
|
|
11
|
+
date: 2023-01-04 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.48.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: []
|