google-apis-drive_v3 0.72.0 → 0.74.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9f6fbf57a6724233a898c849e9b3cefddcbae4424d2dfe850e9a714d12b2039
|
|
4
|
+
data.tar.gz: 49b78f91230580f288fcc1cfacd782f8a675a417951fa81ecc2bb279ff7d7f84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f267af862a58dc42f26a5339edeb99fd990c373bc5a05a12db18c8721a5d1660c53a93413a363161e17290de9bd6099db7435804ce2ae8f47e285a8e90bf6b1c
|
|
7
|
+
data.tar.gz: 0f1bdf5f70ebd58bb466fcff1417a697a76dba37cf4c1c09b2c13771765149f2c4c22e0ea2e7423c7f75c56967132f24e5c9ceecbbe90aea712f604ec6c18629
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-drive_v3
|
|
2
2
|
|
|
3
|
+
### v0.74.0 (2025-11-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251114
|
|
6
|
+
|
|
7
|
+
### v0.73.0 (2025-10-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251019
|
|
10
|
+
|
|
3
11
|
### v0.72.0 (2025-10-19)
|
|
4
12
|
|
|
5
13
|
* 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 address of the user assigned to this comment. If no
|
|
784
|
+
# user is assigned, the field is 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. A list of email addresses for users mentioned in this comment. If
|
|
829
|
+
# no users are mentioned, the list is empty.
|
|
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 address of the user assigned to this comment. If no
|
|
3443
|
+
# user is assigned, the field is 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. A list of email addresses for users mentioned in this comment. If
|
|
3489
|
+
# no users are mentioned, the list is empty.
|
|
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.
|
|
19
|
+
GEM_VERSION = "0.74.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 = "
|
|
25
|
+
REVISION = "20251114"
|
|
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
|
|
@@ -2339,7 +2339,13 @@ module Google
|
|
|
2339
2339
|
end
|
|
2340
2340
|
|
|
2341
2341
|
# Lists a file's revisions. For more information, see [Manage file revisions](
|
|
2342
|
-
# https://developers.google.com/workspace/drive/api/guides/manage-revisions).
|
|
2342
|
+
# https://developers.google.com/workspace/drive/api/guides/manage-revisions). **
|
|
2343
|
+
# Important:** The list of revisions returned by this method might be incomplete
|
|
2344
|
+
# for files with a large revision history, including frequently edited Google
|
|
2345
|
+
# Docs, Sheets, and Slides. Older revisions might be omitted from the response,
|
|
2346
|
+
# meaning the first revision returned may not be the oldest existing revision.
|
|
2347
|
+
# The revision history visible in the Workspace editor user interface might be
|
|
2348
|
+
# more complete than the list returned by the API.
|
|
2343
2349
|
# @param [String] file_id
|
|
2344
2350
|
# The ID of the file.
|
|
2345
2351
|
# @param [Fixnum] page_size
|
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.
|
|
4
|
+
version: 0.74.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.74.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:
|