google-apis-gmail_v1 0.1.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94981a003f91e7ba4586d9fa6269d57094c5d3321df4aaaf9d68c690eeba30c5
4
- data.tar.gz: fb94033b89ed4918f4a99c6b30886cfdb04013cdc8b199e18666d40ccbe1b17f
3
+ metadata.gz: 15c6d82e17917055250263a231b2b556a285b4861a3dbcaafdd28b9dc029c6b9
4
+ data.tar.gz: fe34c5bc05f814d35a0438b87faf925c74242934fc210b75d73805d240a51138
5
5
  SHA512:
6
- metadata.gz: 40de28216dfaeb2258edf1242c91653bb1d1d7e93b75a423974666b16e8956f789a77e94f8de945faeed591b8ce32ba3c39f49e2d3fc5e784333d33b60dd05eb
7
- data.tar.gz: eaed8576f16cde46ba97b69831b9eaf24a1218ba76d2d63707bbdb294bb25841169835b6b1786921b0d84215fff6829f039aa42384ca64ea201d44c2ebe28a19
6
+ metadata.gz: b4b188a9e901b0b51cde190d132d6ad8deccf3770835e57006ce5efc9f79a7b73e1a364612412327d679903bf97b00f61e56ec3bcee35fd13d064c3ee8902a4e
7
+ data.tar.gz: 3c906751d8bc078f120ad2b3b4fe48c6343ff42b45c413fd8da65850d3b91d8c3e1f100a2960465b6cbbc0d3aa879d8116ccbbced14a424e20d375b37eb78421
data/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Release history for google-apis-gmail_v1
2
2
 
3
+ ### v0.6.0 (2021-06-02)
4
+
5
+ * Regenerated from discovery document revision 20210528
6
+ * Regenerated using generator version 0.3.0
7
+
8
+ ### v0.5.0 (2021-05-19)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.4.0 (2021-05-12)
13
+
14
+ * Regenerated from discovery document revision 20210510
15
+ * Regenerated using generator version 0.2.0
16
+
17
+ ### v0.3.0 (2021-03-05)
18
+
19
+ * Regenerated from discovery document revision 20210301
20
+ * Regenerated using generator version 0.1.2
21
+
22
+ ### v0.2.0 (2021-01-13)
23
+
24
+ * Regenerated from discovery document revision 20210111
25
+
3
26
  ### v0.1.0 (2021-01-07)
4
27
 
5
28
  * Regenerated using generator version 0.1.1
@@ -48,16 +48,16 @@ module Google
48
48
  # Manage drafts and send emails
49
49
  AUTH_GMAIL_COMPOSE = 'https://www.googleapis.com/auth/gmail.compose'
50
50
 
51
- # Insert mail into your mailbox
51
+ # Add emails into your Gmail mailbox
52
52
  AUTH_GMAIL_INSERT = 'https://www.googleapis.com/auth/gmail.insert'
53
53
 
54
- # Manage mailbox labels
54
+ # See and edit your email labels
55
55
  AUTH_GMAIL_LABELS = 'https://www.googleapis.com/auth/gmail.labels'
56
56
 
57
57
  # View your email message metadata such as labels and headers, but not the email body
58
58
  AUTH_GMAIL_METADATA = 'https://www.googleapis.com/auth/gmail.metadata'
59
59
 
60
- # View and modify but not delete your email
60
+ # Read, compose, and send emails from your Gmail account
61
61
  AUTH_GMAIL_MODIFY = 'https://www.googleapis.com/auth/gmail.modify'
62
62
 
63
63
  # View your email messages and settings
@@ -66,7 +66,7 @@ module Google
66
66
  # Send email on your behalf
67
67
  AUTH_GMAIL_SEND = 'https://www.googleapis.com/auth/gmail.send'
68
68
 
69
- # Manage your basic mail settings
69
+ # See, edit, create, or change your email settings and filters in Gmail
70
70
  AUTH_GMAIL_SETTINGS_BASIC = 'https://www.googleapis.com/auth/gmail.settings.basic'
71
71
 
72
72
  # Manage your sensitive mail settings, including who can manage your mail
@@ -510,6 +510,7 @@ module Google
510
510
  end
511
511
 
512
512
  # Labels are used to categorize messages and threads within the user's mailbox.
513
+ # The maximum number of labels supported for a user's mailbox is 10,000.
513
514
  class Label
514
515
  include Google::Apis::Core::Hashable
515
516
 
@@ -1280,7 +1281,7 @@ module Google
1280
1281
  attr_accessor :send_as_email
1281
1282
 
1282
1283
  # An optional HTML signature that is included in messages composed with this
1283
- # alias in the Gmail web UI.
1284
+ # alias in the Gmail web UI. This signature is added to new emails only.
1284
1285
  # Corresponds to the JSON property `signature`
1285
1286
  # @return [String]
1286
1287
  attr_accessor :signature
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GmailV1
18
18
  # Version of the google-apis-gmail_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20200919"
25
+ REVISION = "20210528"
26
26
  end
27
27
  end
28
28
  end
@@ -760,7 +760,9 @@ module Google
760
760
  # The user's email address. The special value `me` can be used to indicate the
761
761
  # authenticated user.
762
762
  # @param [String] id
763
- # The ID of the message to retrieve.
763
+ # The ID of the message to retrieve. This ID is usually retrieved using `
764
+ # messages.list`. The ID is also contained in the result when a message is
765
+ # inserted (`messages.insert`) or imported (`messages.import`).
764
766
  # @param [String] format
765
767
  # The format to return the message in.
766
768
  # @param [Array<String>, String] metadata_headers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gmail_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.6.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: 2021-01-08 00:00:00.000000000 Z
11
+ date: 2021-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gmail_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.6.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gmail_v1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Gmail API V1