google-apis-chat_v1 0.63.0 → 0.64.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ce4f08194e9900ea233f2e96c09b64541600262c309b02d002457d9dd584f7b
4
- data.tar.gz: 6111f9c5277283e0682176343e830fb46d7ceba0ca5b93b25f69525edde20deb
3
+ metadata.gz: fbdff95aa55c6492c227c63a8b88b3bef7d7c42623e4417b6971f8207af1bbe2
4
+ data.tar.gz: 14ab242bdc9b5222d90497ff8960c5edca8fc0701500e5faefd3785074f3e7f7
5
5
  SHA512:
6
- metadata.gz: 19c7acf01282b8c6ec7ebd06e16b3ab0148c2f02975919bcd5dcac64dc6979d5daacbb19411365223e2ce11925ab93bc336fff78302beb677c20859ff5ff5b70
7
- data.tar.gz: b69c7b11a851c40b4b13580c7499f428fa44d2b5cd100f31a48a72ebb1edab7dc5d6ab15663446280f8ea275e56a906d6b75f40b7c7f5928013f935491ae68d8
6
+ metadata.gz: 5eb13fb4d9e93d4452155332d917869ae2eb9f43350d2cac022c590fa39b16210a4f5d010361d06c055d9e6d508216f7c9609833b3f0e5260ace125dd9364bf2
7
+ data.tar.gz: 26d3f85923ef3b1ff10e5f894cc217a7f550059e5283872bf6397e0fc8574ab7e6d797f3e0becafc9f65d60a101c9ce5bbaf7bee62ca37f4ebec811e404697c2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-chat_v1
2
2
 
3
+ ### v0.64.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230704
6
+
3
7
  ### v0.63.0 (2023-07-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230622
@@ -3193,6 +3193,11 @@ module Google
3193
3193
  # @return [String]
3194
3194
  attr_accessor :name
3195
3195
 
3196
+ # Information about a quoted message.
3197
+ # Corresponds to the JSON property `quotedMessageMetadata`
3198
+ # @return [Google::Apis::ChatV1::QuotedMessageMetadata]
3199
+ attr_accessor :quoted_message_metadata
3200
+
3196
3201
  # A user in Google Chat.
3197
3202
  # Corresponds to the JSON property `sender`
3198
3203
  # @return [Google::Apis::ChatV1::User]
@@ -3252,6 +3257,7 @@ module Google
3252
3257
  @last_update_time = args[:last_update_time] if args.key?(:last_update_time)
3253
3258
  @matched_url = args[:matched_url] if args.key?(:matched_url)
3254
3259
  @name = args[:name] if args.key?(:name)
3260
+ @quoted_message_metadata = args[:quoted_message_metadata] if args.key?(:quoted_message_metadata)
3255
3261
  @sender = args[:sender] if args.key?(:sender)
3256
3262
  @slash_command = args[:slash_command] if args.key?(:slash_command)
3257
3263
  @space = args[:space] if args.key?(:space)
@@ -3306,6 +3312,33 @@ module Google
3306
3312
  end
3307
3313
  end
3308
3314
 
3315
+ # Information about a quoted message.
3316
+ class QuotedMessageMetadata
3317
+ include Google::Apis::Core::Hashable
3318
+
3319
+ # Output only. The timestamp when the quoted message was created or when the
3320
+ # quoted message was last updated.
3321
+ # Corresponds to the JSON property `lastUpdateTime`
3322
+ # @return [String]
3323
+ attr_accessor :last_update_time
3324
+
3325
+ # Output only. Resource name of the quoted message. Format: `spaces/`space`/
3326
+ # messages/`message``
3327
+ # Corresponds to the JSON property `name`
3328
+ # @return [String]
3329
+ attr_accessor :name
3330
+
3331
+ def initialize(**args)
3332
+ update!(**args)
3333
+ end
3334
+
3335
+ # Update properties of this object
3336
+ def update!(**args)
3337
+ @last_update_time = args[:last_update_time] if args.key?(:last_update_time)
3338
+ @name = args[:name] if args.key?(:name)
3339
+ end
3340
+ end
3341
+
3309
3342
  # A reaction to a message.
3310
3343
  class Reaction
3311
3344
  include Google::Apis::Core::Hashable
@@ -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.63.0"
19
+ GEM_VERSION = "0.64.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230622"
25
+ REVISION = "20230704"
26
26
  end
27
27
  end
28
28
  end
@@ -460,6 +460,12 @@ module Google
460
460
  include Google::Apis::Core::JsonObjectSupport
461
461
  end
462
462
 
463
+ class QuotedMessageMetadata
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
463
469
  class Reaction
464
470
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
471
 
@@ -1363,6 +1369,8 @@ module Google
1363
1369
  property :matched_url, as: 'matchedUrl', class: Google::Apis::ChatV1::MatchedUrl, decorator: Google::Apis::ChatV1::MatchedUrl::Representation
1364
1370
 
1365
1371
  property :name, as: 'name'
1372
+ property :quoted_message_metadata, as: 'quotedMessageMetadata', class: Google::Apis::ChatV1::QuotedMessageMetadata, decorator: Google::Apis::ChatV1::QuotedMessageMetadata::Representation
1373
+
1366
1374
  property :sender, as: 'sender', class: Google::Apis::ChatV1::User, decorator: Google::Apis::ChatV1::User::Representation
1367
1375
 
1368
1376
  property :slash_command, as: 'slashCommand', class: Google::Apis::ChatV1::SlashCommand, decorator: Google::Apis::ChatV1::SlashCommand::Representation
@@ -1393,6 +1401,14 @@ module Google
1393
1401
  end
1394
1402
  end
1395
1403
 
1404
+ class QuotedMessageMetadata
1405
+ # @private
1406
+ class Representation < Google::Apis::Core::JsonRepresentation
1407
+ property :last_update_time, as: 'lastUpdateTime'
1408
+ property :name, as: 'name'
1409
+ end
1410
+ end
1411
+
1396
1412
  class Reaction
1397
1413
  # @private
1398
1414
  class Representation < Google::Apis::Core::JsonRepresentation
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.63.0
4
+ version: 0.64.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-07-02 00:00:00.000000000 Z
11
+ date: 2023-07-09 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.63.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chat_v1/v0.64.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: []