google-apis-identitytoolkit_v1 0.3.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/identitytoolkit_v1/classes.rb +18 -2
- data/lib/google/apis/identitytoolkit_v1/gem_version.rb +3 -3
- data/lib/google/apis/identitytoolkit_v1/representations.rb +1 -0
- data/lib/google/apis/identitytoolkit_v1/service.rb +9 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7b5a20913a010efeace339435c1dfa0cba2da68548598dd50db612681553aab
|
4
|
+
data.tar.gz: c78585ccbfe538085d0457873b2f25e36033b093009b062226890f4e95a763ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 882f28dc2f9b5361eb6aa33f40c2f7bac7ce7c294ce9179a5b3700fc9bbc34d90bb9c6b71ce8d298b9cdfa2bfc954ec0ecb418dd30bf92d7fc738ae45e4b80cf
|
7
|
+
data.tar.gz: 61c09d7ee8968c70fbe7b9afc98947cf2e15193dfc1d6a9bd6fa2c26a2bc185d53a1990bafc4dff4eaff246301066a4e4170c5ae18a34c359104a2a86b5ad641
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-identitytoolkit_v1
|
2
2
|
|
3
|
+
### v0.5.0 (2023-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230220
|
6
|
+
|
7
|
+
### v0.4.0 (2023-02-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230211
|
10
|
+
* Regenerated using generator version 0.12.0
|
11
|
+
|
3
12
|
### v0.3.0 (2023-02-05)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20230128
|
@@ -1710,6 +1710,17 @@ module Google
|
|
1710
1710
|
# @return [String]
|
1711
1711
|
attr_accessor :phone_number
|
1712
1712
|
|
1713
|
+
# Android only. Used to assert application identity in place of a recaptcha
|
1714
|
+
# token (and safety_net_token). At least one of (`ios_receipt` and `ios_secret`),
|
1715
|
+
# `recaptcha_token`, , or `play_integrity_token` must be specified to verify
|
1716
|
+
# the verification code is being sent on behalf of a real app and not an
|
1717
|
+
# emulator. A Play Integrity Token can be generated via the [PlayIntegrity API](
|
1718
|
+
# https://developer.android.com/google/play/integrity) with applying SHA256 to
|
1719
|
+
# the `phone_number` field as the nonce.
|
1720
|
+
# Corresponds to the JSON property `playIntegrityToken`
|
1721
|
+
# @return [String]
|
1722
|
+
attr_accessor :play_integrity_token
|
1723
|
+
|
1713
1724
|
# Recaptcha token for app verification. At least one of (`ios_receipt` and `
|
1714
1725
|
# ios_secret`), `recaptcha_token`, or `safety_net_token` must be specified to
|
1715
1726
|
# verify the verification code is being sent on behalf of a real app and not an
|
@@ -1746,6 +1757,7 @@ module Google
|
|
1746
1757
|
@ios_receipt = args[:ios_receipt] if args.key?(:ios_receipt)
|
1747
1758
|
@ios_secret = args[:ios_secret] if args.key?(:ios_secret)
|
1748
1759
|
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
1760
|
+
@play_integrity_token = args[:play_integrity_token] if args.key?(:play_integrity_token)
|
1749
1761
|
@recaptcha_token = args[:recaptcha_token] if args.key?(:recaptcha_token)
|
1750
1762
|
@safety_net_token = args[:safety_net_token] if args.key?(:safety_net_token)
|
1751
1763
|
@tenant_id = args[:tenant_id] if args.key?(:tenant_id)
|
@@ -2292,7 +2304,9 @@ module Google
|
|
2292
2304
|
# @return [String]
|
2293
2305
|
attr_accessor :id_token
|
2294
2306
|
|
2295
|
-
# Required. The user's Game Center player ID.
|
2307
|
+
# Required. The user's Game Center player ID. Deprecated by Apple. Pass `
|
2308
|
+
# playerID` along with `gamePlayerID` and `teamPlayerID` to initiate the
|
2309
|
+
# migration of a user's Game Center player ID to `gamePlayerID`.
|
2296
2310
|
# Corresponds to the JSON property `playerId`
|
2297
2311
|
# @return [String]
|
2298
2312
|
attr_accessor :player_id
|
@@ -2387,7 +2401,9 @@ module Google
|
|
2387
2401
|
# @return [String]
|
2388
2402
|
attr_accessor :local_id
|
2389
2403
|
|
2390
|
-
# The user's Game Center player ID.
|
2404
|
+
# The user's Game Center player ID. Pass `playerID` along with `gamePlayerID`
|
2405
|
+
# and `teamPlayerID` to initiate the migration of a user's Game Center player ID
|
2406
|
+
# to `gamePlayerID`.
|
2391
2407
|
# Corresponds to the JSON property `playerId`
|
2392
2408
|
# @return [String]
|
2393
2409
|
attr_accessor :player_id
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IdentitytoolkitV1
|
18
18
|
# Version of the google-apis-identitytoolkit_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230220"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -770,6 +770,7 @@ module Google
|
|
770
770
|
property :ios_receipt, as: 'iosReceipt'
|
771
771
|
property :ios_secret, as: 'iosSecret'
|
772
772
|
property :phone_number, as: 'phoneNumber'
|
773
|
+
property :play_integrity_token, as: 'playIntegrityToken'
|
773
774
|
property :recaptcha_token, as: 'recaptchaToken'
|
774
775
|
property :safety_net_token, as: 'safetyNetToken'
|
775
776
|
property :tenant_id, as: 'tenantId'
|
@@ -349,7 +349,15 @@ module Google
|
|
349
349
|
# the authenticated user. The bundle ID is required in the request header as `x-
|
350
350
|
# ios-bundle-identifier`. An [API key](https://cloud.google.com/docs/
|
351
351
|
# authentication/api-keys) is required in the request in order to identify the
|
352
|
-
# Google Cloud project.
|
352
|
+
# Google Cloud project. Apple has [deprecated the `playerID` field](https://
|
353
|
+
# developer.apple.com/documentation/gamekit/gkplayer/1521127-playerid/). The
|
354
|
+
# Apple platform Firebase SDK will use `gamePlayerID` and `teamPlayerID` from
|
355
|
+
# version 10.5.0 and onwards. Upgrading to SDK version 10.5.0 or later updates
|
356
|
+
# existing integrations that use `playerID` to instead use `gamePlayerID` and `
|
357
|
+
# teamPlayerID`. When making calls to `signInWithGameCenter`, you must include `
|
358
|
+
# playerID` along with the new fields `gamePlayerID` and `teamPlayerID` to
|
359
|
+
# successfully identify all existing users. Upgrading existing Game Center sign
|
360
|
+
# in integrations to SDK version 10.5.0 or later is irreversible.
|
353
361
|
# @param [Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1SignInWithGameCenterRequest] google_cloud_identitytoolkit_v1_sign_in_with_game_center_request_object
|
354
362
|
# @param [String] fields
|
355
363
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-identitytoolkit_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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-02-
|
11
|
+
date: 2023-02-26 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.
|
19
|
+
version: 0.11.0
|
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.
|
29
|
+
version: 0.11.0
|
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-identitytoolkit_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-identitytoolkit_v1/v0.5.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-identitytoolkit_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|