google-apis-drive_v3 0.72.0 → 0.73.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: 0ff71cb12be0a53ad4977907a56d7a9ea8822d8260f12686e9aecae3649a2fd1
4
- data.tar.gz: aa9a95cafc618c31c9225a1e75ec18a6f664b01ce38fc4da21c13f1e942e2394
3
+ metadata.gz: aaadc565c9e194ef505880afe5702766129c4328bae10a2d15df62c0e8631b47
4
+ data.tar.gz: 9c4c683f49f2d2e2f180806ee4f4a8a302d4e39bab8eb44bb96436179254953d
5
5
  SHA512:
6
- metadata.gz: c85a5d2469356838ad2c82bd2f51e5bdaf9cad03e1e3a1f4a4266729161ebf12861a9b769dbcc509111e3d9c36d6de6500fe2da79e2eb588c068785d5ef71ff0
7
- data.tar.gz: 81d080704d598849b42628d0710a8631190e9d75180cc93e2e4e00f22445040eb0f22c1f12fd3f8aa81443d8406d822b67a8edf557fad73de02450b8973b93b9
6
+ metadata.gz: 57496ed5783895fb96e8ddda078dec70f56a14ae2fbbe5f44a6ea45a4f098d7e460f9d7b66c49cd1ad1814ef6543cbcda7913d74b21c63a888f29e8cc80e6090
7
+ data.tar.gz: 7768b7b89d89a2acdb0735f966e564c642201205113a47d2760e53d2987e6d830a4d91480ba31b43e7e05eca5931cbacf982f816314abd0343aaa639a06a1ed1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-drive_v3
2
2
 
3
+ ### v0.73.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251019
6
+
3
7
  ### v0.72.0 (2025-10-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20251013
@@ -780,6 +780,12 @@ module Google
780
780
  # @return [String]
781
781
  attr_accessor :anchor
782
782
 
783
+ # Output only. The email of the user who is assigned to this comment, if none is
784
+ # assigned this will be unset.
785
+ # Corresponds to the JSON property `assigneeEmailAddress`
786
+ # @return [String]
787
+ attr_accessor :assignee_email_address
788
+
783
789
  # Information about a Drive user.
784
790
  # Corresponds to the JSON property `author`
785
791
  # @return [Google::Apis::DriveV3::User]
@@ -819,6 +825,12 @@ module Google
819
825
  # @return [String]
820
826
  attr_accessor :kind
821
827
 
828
+ # Output only. The emails of the users who were mentioned in this comment, if
829
+ # none were mentioned this will be an empty list.
830
+ # Corresponds to the JSON property `mentionedEmailAddresses`
831
+ # @return [Array<String>]
832
+ attr_accessor :mentioned_email_addresses
833
+
822
834
  # The last time the comment or any of its replies was modified (RFC 3339 date-
823
835
  # time).
824
836
  # Corresponds to the JSON property `modifiedTime`
@@ -850,6 +862,7 @@ module Google
850
862
  # Update properties of this object
851
863
  def update!(**args)
852
864
  @anchor = args[:anchor] if args.key?(:anchor)
865
+ @assignee_email_address = args[:assignee_email_address] if args.key?(:assignee_email_address)
853
866
  @author = args[:author] if args.key?(:author)
854
867
  @content = args[:content] if args.key?(:content)
855
868
  @created_time = args[:created_time] if args.key?(:created_time)
@@ -857,6 +870,7 @@ module Google
857
870
  @html_content = args[:html_content] if args.key?(:html_content)
858
871
  @id = args[:id] if args.key?(:id)
859
872
  @kind = args[:kind] if args.key?(:kind)
873
+ @mentioned_email_addresses = args[:mentioned_email_addresses] if args.key?(:mentioned_email_addresses)
860
874
  @modified_time = args[:modified_time] if args.key?(:modified_time)
861
875
  @quoted_file_content = args[:quoted_file_content] if args.key?(:quoted_file_content)
862
876
  @replies = args[:replies] if args.key?(:replies)
@@ -3425,6 +3439,12 @@ module Google
3425
3439
  # @return [String]
3426
3440
  attr_accessor :action
3427
3441
 
3442
+ # Output only. The email of the user who is assigned to this reply, if none is
3443
+ # assigned this will be unset.
3444
+ # Corresponds to the JSON property `assigneeEmailAddress`
3445
+ # @return [String]
3446
+ attr_accessor :assignee_email_address
3447
+
3428
3448
  # Information about a Drive user.
3429
3449
  # Corresponds to the JSON property `author`
3430
3450
  # @return [Google::Apis::DriveV3::User]
@@ -3465,6 +3485,12 @@ module Google
3465
3485
  # @return [String]
3466
3486
  attr_accessor :kind
3467
3487
 
3488
+ # Output only. The emails of the users who were mentioned in this reply, if none
3489
+ # were mentioned this will be an empty list.
3490
+ # Corresponds to the JSON property `mentionedEmailAddresses`
3491
+ # @return [Array<String>]
3492
+ attr_accessor :mentioned_email_addresses
3493
+
3468
3494
  # The last time the reply was modified (RFC 3339 date-time).
3469
3495
  # Corresponds to the JSON property `modifiedTime`
3470
3496
  # @return [DateTime]
@@ -3477,6 +3503,7 @@ module Google
3477
3503
  # Update properties of this object
3478
3504
  def update!(**args)
3479
3505
  @action = args[:action] if args.key?(:action)
3506
+ @assignee_email_address = args[:assignee_email_address] if args.key?(:assignee_email_address)
3480
3507
  @author = args[:author] if args.key?(:author)
3481
3508
  @content = args[:content] if args.key?(:content)
3482
3509
  @created_time = args[:created_time] if args.key?(:created_time)
@@ -3484,6 +3511,7 @@ module Google
3484
3511
  @html_content = args[:html_content] if args.key?(:html_content)
3485
3512
  @id = args[:id] if args.key?(:id)
3486
3513
  @kind = args[:kind] if args.key?(:kind)
3514
+ @mentioned_email_addresses = args[:mentioned_email_addresses] if args.key?(:mentioned_email_addresses)
3487
3515
  @modified_time = args[:modified_time] if args.key?(:modified_time)
3488
3516
  end
3489
3517
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DriveV3
18
18
  # Version of the google-apis-drive_v3 gem
19
- GEM_VERSION = "0.72.0"
19
+ GEM_VERSION = "0.73.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251013"
25
+ REVISION = "20251019"
26
26
  end
27
27
  end
28
28
  end
@@ -572,6 +572,7 @@ module Google
572
572
  # @private
573
573
  class Representation < Google::Apis::Core::JsonRepresentation
574
574
  property :anchor, as: 'anchor'
575
+ property :assignee_email_address, as: 'assigneeEmailAddress'
575
576
  property :author, as: 'author', class: Google::Apis::DriveV3::User, decorator: Google::Apis::DriveV3::User::Representation
576
577
 
577
578
  property :content, as: 'content'
@@ -581,6 +582,7 @@ module Google
581
582
  property :html_content, as: 'htmlContent'
582
583
  property :id, as: 'id'
583
584
  property :kind, as: 'kind'
585
+ collection :mentioned_email_addresses, as: 'mentionedEmailAddresses'
584
586
  property :modified_time, as: 'modifiedTime', type: DateTime
585
587
 
586
588
  property :quoted_file_content, as: 'quotedFileContent', class: Google::Apis::DriveV3::Comment::QuotedFileContent, decorator: Google::Apis::DriveV3::Comment::QuotedFileContent::Representation
@@ -1133,6 +1135,7 @@ module Google
1133
1135
  # @private
1134
1136
  class Representation < Google::Apis::Core::JsonRepresentation
1135
1137
  property :action, as: 'action'
1138
+ property :assignee_email_address, as: 'assigneeEmailAddress'
1136
1139
  property :author, as: 'author', class: Google::Apis::DriveV3::User, decorator: Google::Apis::DriveV3::User::Representation
1137
1140
 
1138
1141
  property :content, as: 'content'
@@ -1142,6 +1145,7 @@ module Google
1142
1145
  property :html_content, as: 'htmlContent'
1143
1146
  property :id, as: 'id'
1144
1147
  property :kind, as: 'kind'
1148
+ collection :mentioned_email_addresses, as: 'mentionedEmailAddresses'
1145
1149
  property :modified_time, as: 'modifiedTime', type: DateTime
1146
1150
 
1147
1151
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-drive_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.72.0
4
+ version: 0.73.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drive_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.72.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.73.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drive_v3
62
62
  rdoc_options: []
63
63
  require_paths: