google-apis-people_v1 0.27.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: 536f39247082a7a446540a39180252393be2e07e1860b1243502fcd6aa87d7d2
4
- data.tar.gz: 4944290e5f2424f29d70b4048557ce838e160363d197ef11fabe272fa6711dc3
3
+ metadata.gz: 144d3b8bddd5a7bd5688f7fd77f98fba2b48a013b219fc279bded5b64757d6a6
4
+ data.tar.gz: c2f0d9d78337e7afae1f3eac9d6eccdb22a9b80b12a0b942e68bd3c127ee4a84
5
5
  SHA512:
6
- metadata.gz: 679e46b57c11ee02a935dee39e36c7e8045b421436f1003a84300cb17f2e13268185562339bfc866f2c422534fb8bfbf509132b28df4b8aedf20bb8fa7031f0c
7
- data.tar.gz: 4ac5c3cc6c90054f26af643d808dfc5a98b6215b0c615763795aad9467ca7e0a8811ee48c372d9786e6b2b8e1f13866336a494fa0154e090821aa0c46623d09c
6
+ metadata.gz: 28f49b60c79a7fcc0ae58cfe89cbc0a902975cbde1176c760e135f72549b5b70bbdcaac4dc0bcc5171cf20770694e414914a2f360492b27006444171e004fb85
7
+ data.tar.gz: 9441e8c7700c9ba4a6b73398c09741759892ddd8c2381387ca0138933277ef5988856ffd06f05db58269f32be57470e7b9cca66b65600136e8d2666158ce9fca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-people_v1
2
2
 
3
+ ### v0.30.0 (2022-06-06)
4
+
5
+ * Regenerated from discovery document revision 20220531
6
+ * Regenerated using generator version 0.5.0
7
+
8
+ ### v0.29.0 (2022-05-25)
9
+
10
+ * Regenerated from discovery document revision 20220522
11
+
12
+ ### v0.28.0 (2022-04-22)
13
+
14
+ * Regenerated from discovery document revision 20220420
15
+
3
16
  ### v0.27.0 (2022-03-23)
4
17
 
5
18
  * Regenerated from discovery document revision 20220321
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PeopleV1
18
18
  # Version of the google-apis-people_v1 gem
19
- GEM_VERSION = "0.27.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220321"
25
+ REVISION = "20220531"
26
26
  end
27
27
  end
28
28
  end
@@ -360,17 +360,19 @@ module Google
360
360
  # List all "Other contacts", that is contacts that are not in a contact group. "
361
361
  # Other contacts" are typically auto created contacts from interactions. Sync
362
362
  # tokens expire 7 days after the full sync. A request with an expired sync token
363
- # will result in a 410 error. In the case of such an error clients should make a
364
- # full sync request without a `sync_token`. The first page of a full sync
365
- # request has an additional quota. If the quota is exceeded, a 429 error will be
366
- # returned. This quota is fixed and can not be increased. When the `sync_token`
367
- # is specified, resources deleted since the last sync will be returned as a
368
- # person with `PersonMetadata.deleted` set to true. When the `page_token` or `
369
- # sync_token` is specified, all other request parameters must match the first
370
- # call. Writes may have a propagation delay of several minutes for sync requests.
371
- # Incremental syncs are not intended for read-after-write use cases. See
372
- # example usage at [List the user's other contacts that have changed](/people/v1/
373
- # other-contacts#list_the_users_other_contacts_that_have_changed).
363
+ # will get an error with an [google.rpc.ErrorInfo](https://cloud.google.com/apis/
364
+ # design/errors#error_info) with reason "EXPIRED_SYNC_TOKEN". In the case of
365
+ # such an error clients should make a full sync request without a `sync_token`.
366
+ # The first page of a full sync request has an additional quota. If the quota is
367
+ # exceeded, a 429 error will be returned. This quota is fixed and can not be
368
+ # increased. When the `sync_token` is specified, resources deleted since the
369
+ # last sync will be returned as a person with `PersonMetadata.deleted` set to
370
+ # true. When the `page_token` or `sync_token` is specified, all other request
371
+ # parameters must match the first call. Writes may have a propagation delay of
372
+ # several minutes for sync requests. Incremental syncs are not intended for read-
373
+ # after-write use cases. See example usage at [List the user's other contacts
374
+ # that have changed](/people/v1/other-contacts#
375
+ # list_the_users_other_contacts_that_have_changed).
374
376
  # @param [Fixnum] page_size
375
377
  # Optional. The number of "Other contacts" to include in the response. Valid
376
378
  # values are between 1 and 1000, inclusive. Defaults to 100 if not set or set to
@@ -398,7 +400,10 @@ module Google
398
400
  # behavior at `otherContacts.list`.
399
401
  # @param [Array<String>, String] sources
400
402
  # Optional. A mask of what source types to return. Defaults to
401
- # READ_SOURCE_TYPE_CONTACT if not set.
403
+ # READ_SOURCE_TYPE_CONTACT if not set. Possible values for this field are: *
404
+ # READ_SOURCE_TYPE_CONTACT * READ_SOURCE_TYPE_CONTACT,READ_SOURCE_TYPE_PROFILE
405
+ # Specifying READ_SOURCE_TYPE_PROFILE without specifying
406
+ # READ_SOURCE_TYPE_CONTACT is not permitted.
402
407
  # @param [String] sync_token
403
408
  # Optional. A sync token, received from a previous response `next_sync_token`
404
409
  # Provide this to retrieve only the resources changed since the last request.
@@ -1106,18 +1111,19 @@ module Google
1106
1111
  end
1107
1112
 
1108
1113
  # Provides a list of the authenticated user's contacts. Sync tokens expire 7
1109
- # days after the full sync. A request with an expired sync token will result in
1110
- # a 410 error. In the case of such an error clients should make a full sync
1111
- # request without a `sync_token`. The first page of a full sync request has an
1112
- # additional quota. If the quota is exceeded, a 429 error will be returned. This
1113
- # quota is fixed and can not be increased. When the `sync_token` is specified,
1114
- # resources deleted since the last sync will be returned as a person with `
1115
- # PersonMetadata.deleted` set to true. When the `page_token` or `sync_token` is
1116
- # specified, all other request parameters must match the first call. Writes may
1117
- # have a propagation delay of several minutes for sync requests. Incremental
1118
- # syncs are not intended for read-after-write use cases. See example usage at [
1119
- # List the user's contacts that have changed](/people/v1/contacts#
1120
- # list_the_users_contacts_that_have_changed).
1114
+ # days after the full sync. A request with an expired sync token will get an
1115
+ # error with an [google.rpc.ErrorInfo](https://cloud.google.com/apis/design/
1116
+ # errors#error_info) with reason "EXPIRED_SYNC_TOKEN". In the case of such an
1117
+ # error clients should make a full sync request without a `sync_token`. The
1118
+ # first page of a full sync request has an additional quota. If the quota is
1119
+ # exceeded, a 429 error will be returned. This quota is fixed and can not be
1120
+ # increased. When the `sync_token` is specified, resources deleted since the
1121
+ # last sync will be returned as a person with `PersonMetadata.deleted` set to
1122
+ # true. When the `page_token` or `sync_token` is specified, all other request
1123
+ # parameters must match the first call. Writes may have a propagation delay of
1124
+ # several minutes for sync requests. Incremental syncs are not intended for read-
1125
+ # after-write use cases. See example usage at [List the user's contacts that
1126
+ # have changed](/people/v1/contacts#list_the_users_contacts_that_have_changed).
1121
1127
  # @param [String] resource_name
1122
1128
  # Required. The resource name to return connections for. Only `people/me` is
1123
1129
  # valid.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-people_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.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: 2022-03-28 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.5'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-people_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-people_v1/v0.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-people_v1/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-people_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for People API V1