google-apis-chat_v1 0.46.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 +9 -0
- data/lib/google/apis/chat_v1/classes.rb +422 -195
- data/lib/google/apis/chat_v1/gem_version.rb +3 -3
- data/lib/google/apis/chat_v1/representations.rb +4 -2
- data/lib/google/apis/chat_v1/service.rb +240 -79
- data/lib/google/apis/chat_v1.rb +18 -0
- metadata +5 -5
@@ -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
|
-
GENERATOR_VERSION = "0.
|
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
|
@@ -721,6 +721,7 @@ module Google
|
|
721
721
|
# @private
|
722
722
|
class Representation < Google::Apis::Core::JsonRepresentation
|
723
723
|
property :function, as: 'function'
|
724
|
+
property :interaction, as: 'interaction'
|
724
725
|
property :load_indicator, as: 'loadIndicator'
|
725
726
|
collection :parameters, as: 'parameters', class: Google::Apis::ChatV1::GoogleAppsCardV1ActionParameter, decorator: Google::Apis::ChatV1::GoogleAppsCardV1ActionParameter::Representation
|
726
727
|
|
@@ -880,7 +881,6 @@ module Google
|
|
880
881
|
|
881
882
|
property :layout, as: 'layout'
|
882
883
|
property :subtitle, as: 'subtitle'
|
883
|
-
property :text_alignment, as: 'textAlignment'
|
884
884
|
property :title, as: 'title'
|
885
885
|
end
|
886
886
|
end
|
@@ -1045,7 +1045,6 @@ module Google
|
|
1045
1045
|
|
1046
1046
|
property :grid, as: 'grid', class: Google::Apis::ChatV1::GoogleAppsCardV1Grid, decorator: Google::Apis::ChatV1::GoogleAppsCardV1Grid::Representation
|
1047
1047
|
|
1048
|
-
property :horizontal_alignment, as: 'horizontalAlignment'
|
1049
1048
|
property :image, as: 'image', class: Google::Apis::ChatV1::GoogleAppsCardV1Image, decorator: Google::Apis::ChatV1::GoogleAppsCardV1Image::Representation
|
1050
1049
|
|
1051
1050
|
property :selection_input, as: 'selectionInput', class: Google::Apis::ChatV1::GoogleAppsCardV1SelectionInput, decorator: Google::Apis::ChatV1::GoogleAppsCardV1SelectionInput::Representation
|
@@ -1182,6 +1181,7 @@ module Google
|
|
1182
1181
|
property :text, as: 'text'
|
1183
1182
|
property :thread, as: 'thread', class: Google::Apis::ChatV1::Thread, decorator: Google::Apis::ChatV1::Thread::Representation
|
1184
1183
|
|
1184
|
+
property :thread_reply, as: 'threadReply'
|
1185
1185
|
end
|
1186
1186
|
end
|
1187
1187
|
|
@@ -1238,6 +1238,7 @@ module Google
|
|
1238
1238
|
property :single_user_bot_dm, as: 'singleUserBotDm'
|
1239
1239
|
property :space_details, as: 'spaceDetails', class: Google::Apis::ChatV1::SpaceDetails, decorator: Google::Apis::ChatV1::SpaceDetails::Representation
|
1240
1240
|
|
1241
|
+
property :space_threading_state, as: 'spaceThreadingState'
|
1241
1242
|
property :threaded, as: 'threaded'
|
1242
1243
|
property :type, as: 'type'
|
1243
1244
|
end
|
@@ -1287,6 +1288,7 @@ module Google
|
|
1287
1288
|
# @private
|
1288
1289
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1289
1290
|
property :name, as: 'name'
|
1291
|
+
property :thread_key, as: 'threadKey'
|
1290
1292
|
end
|
1291
1293
|
end
|
1292
1294
|
|