google-apis-chat_v1 0.45.0 → 0.47.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 +469 -214
- data/lib/google/apis/chat_v1/gem_version.rb +3 -3
- data/lib/google/apis/chat_v1/representations.rb +5 -2
- data/lib/google/apis/chat_v1/service.rb +314 -81
- data/lib/google/apis/chat_v1.rb +12 -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.47.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 = "20221204"
|
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
|
@@ -1166,6 +1165,7 @@ module Google
|
|
1166
1165
|
|
1167
1166
|
collection :cards_v2, as: 'cardsV2', class: Google::Apis::ChatV1::CardWithId, decorator: Google::Apis::ChatV1::CardWithId::Representation
|
1168
1167
|
|
1168
|
+
property :client_assigned_message_id, as: 'clientAssignedMessageId'
|
1169
1169
|
property :create_time, as: 'createTime'
|
1170
1170
|
property :fallback_text, as: 'fallbackText'
|
1171
1171
|
property :last_update_time, as: 'lastUpdateTime'
|
@@ -1181,6 +1181,7 @@ module Google
|
|
1181
1181
|
property :text, as: 'text'
|
1182
1182
|
property :thread, as: 'thread', class: Google::Apis::ChatV1::Thread, decorator: Google::Apis::ChatV1::Thread::Representation
|
1183
1183
|
|
1184
|
+
property :thread_reply, as: 'threadReply'
|
1184
1185
|
end
|
1185
1186
|
end
|
1186
1187
|
|
@@ -1237,6 +1238,7 @@ module Google
|
|
1237
1238
|
property :single_user_bot_dm, as: 'singleUserBotDm'
|
1238
1239
|
property :space_details, as: 'spaceDetails', class: Google::Apis::ChatV1::SpaceDetails, decorator: Google::Apis::ChatV1::SpaceDetails::Representation
|
1239
1240
|
|
1241
|
+
property :space_threading_state, as: 'spaceThreadingState'
|
1240
1242
|
property :threaded, as: 'threaded'
|
1241
1243
|
property :type, as: 'type'
|
1242
1244
|
end
|
@@ -1286,6 +1288,7 @@ module Google
|
|
1286
1288
|
# @private
|
1287
1289
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1288
1290
|
property :name, as: 'name'
|
1291
|
+
property :thread_key, as: 'threadKey'
|
1289
1292
|
end
|
1290
1293
|
end
|
1291
1294
|
|