google-apis-gmail_v1 0.28.0 → 0.30.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: 3f1ff3737d53871e556d4fb1e80aa51b8234a047b50f488313a9df31663684a6
4
- data.tar.gz: c691c6d243429624c37c6c74f899b44c74d3ce1516b357cf655eb1b62692bd37
3
+ metadata.gz: 5814c8ad092ab0d23a5759bbf16bda82573656db81de1dab4cf4de4e7b170090
4
+ data.tar.gz: ce4fc2aa0f288498035195a96c0ff1ad04b17e50a19dea075f24119dca095307
5
5
  SHA512:
6
- metadata.gz: c1f78cbefda9a99bc805c034e3fdb0ce756b8ad62124e56f88b2e0260f00a816995eac81f42c5b123bb3c8c01e089ef0ddbd87b08eadb4f707d2f6972bf18f1a
7
- data.tar.gz: db756f40984290ea9706f6ddecabacb550e0652be254f8ffece79872cecb5eb5080ab43fef636d742dd4032dc36c432689d5f80fa33c8bfb09ebb823d47e6293
6
+ metadata.gz: dbd57adad7093b03503197d8e65f5aa9733fccf92b0c4fdb4d41e77e0940b667c4c26a578a1fa12f2448f15f30575b1b4c68de7d532d5a7774ce09b767bb1dab
7
+ data.tar.gz: 57ca5e728c3f99e10080519973e2c309fd0c0f60b73cff1dfff5407b523a2871ae66355926478dd8687852c4bfac62dacf027c61188d68cd67b745a36f6c57e8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gmail_v1
2
2
 
3
+ ### v0.30.0 (2023-07-02)
4
+
5
+ * Regenerated from discovery document revision 20230626
6
+
7
+ ### v0.29.0 (2023-06-18)
8
+
9
+ * Regenerated from discovery document revision 20230612
10
+
3
11
  ### v0.28.0 (2023-05-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20230515
@@ -1799,11 +1799,19 @@ module Google
1799
1799
  class WatchRequest
1800
1800
  include Google::Apis::Core::Hashable
1801
1801
 
1802
- # Filtering behavior of labelIds list specified.
1802
+ # Filtering behavior of `labelIds list` specified. This field is deprecated
1803
+ # because it caused incorrect behavior in some cases; use `label_filter_behavior`
1804
+ # instead.
1803
1805
  # Corresponds to the JSON property `labelFilterAction`
1804
1806
  # @return [String]
1805
1807
  attr_accessor :label_filter_action
1806
1808
 
1809
+ # Filtering behavior of `labelIds list` specified. This field replaces `
1810
+ # label_filter_action`; if set, `label_filter_action` is ignored.
1811
+ # Corresponds to the JSON property `labelFilterBehavior`
1812
+ # @return [String]
1813
+ attr_accessor :label_filter_behavior
1814
+
1807
1815
  # List of label_ids to restrict notifications about. By default, if unspecified,
1808
1816
  # all changes are pushed out. If specified then dictates which labels are
1809
1817
  # required for a push notification to be generated.
@@ -1828,6 +1836,7 @@ module Google
1828
1836
  # Update properties of this object
1829
1837
  def update!(**args)
1830
1838
  @label_filter_action = args[:label_filter_action] if args.key?(:label_filter_action)
1839
+ @label_filter_behavior = args[:label_filter_behavior] if args.key?(:label_filter_behavior)
1831
1840
  @label_ids = args[:label_ids] if args.key?(:label_ids)
1832
1841
  @topic_name = args[:topic_name] if args.key?(:topic_name)
1833
1842
  end
@@ -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.28.0"
19
+ GEM_VERSION = "0.30.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 = "20230515"
25
+ REVISION = "20230626"
26
26
  end
27
27
  end
28
28
  end
@@ -826,6 +826,7 @@ module Google
826
826
  # @private
827
827
  class Representation < Google::Apis::Core::JsonRepresentation
828
828
  property :label_filter_action, as: 'labelFilterAction'
829
+ property :label_filter_behavior, as: 'labelFilterBehavior'
829
830
  collection :label_ids, as: 'labelIds'
830
831
  property :topic_name, as: 'topicName'
831
832
  end
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.28.0
4
+ version: 0.30.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-05-21 00:00:00.000000000 Z
11
+ date: 2023-07-02 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-gmail_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gmail_v1/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gmail_v1
63
63
  post_install_message:
64
64
  rdoc_options: []