google-apis-identitytoolkit_v1 0.7.0 → 0.8.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: 1253cfdf8dca61457449fefec277de3dc7de09d9fb541aa7412b1c540014d65c
|
4
|
+
data.tar.gz: 0c2bf86b3f1bad7b3576d8c292dc4dcf9cc9249efc606df6ecbf1b7244854ff6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb7a5c3711d326190a8635ffaf81886a7a9b7d3f33106994117798a13c5e5bdada4bbc91848f8eb0d4b2475b3f354ef5bb948d2cabcee2419342f576d6547885
|
7
|
+
data.tar.gz: e46031654dfbf7185afbb395bd8ec27653540c15a6d7fec56708373712ce4e97ca9b32891773927a174dca493690e99f606ae96fca6be512601cf79f2767dafc
|
data/CHANGELOG.md
CHANGED
@@ -836,6 +836,12 @@ module Google
|
|
836
836
|
# @return [String]
|
837
837
|
attr_accessor :challenge
|
838
838
|
|
839
|
+
# The client type: web, Android or iOS. Required when reCAPTCHA Enterprise
|
840
|
+
# protection is enabled.
|
841
|
+
# Corresponds to the JSON property `clientType`
|
842
|
+
# @return [String]
|
843
|
+
attr_accessor :client_type
|
844
|
+
|
839
845
|
# The Url to continue after user clicks the link sent in email. This is the url
|
840
846
|
# that will allow the web widget to handle the OOB code.
|
841
847
|
# Corresponds to the JSON property `continueUrl`
|
@@ -885,6 +891,11 @@ module Google
|
|
885
891
|
# @return [String]
|
886
892
|
attr_accessor :new_email
|
887
893
|
|
894
|
+
# The reCAPTCHA version of the reCAPTCHA token in the captcha_response.
|
895
|
+
# Corresponds to the JSON property `recaptchaVersion`
|
896
|
+
# @return [String]
|
897
|
+
attr_accessor :recaptcha_version
|
898
|
+
|
888
899
|
# Required. The type of out-of-band (OOB) code to send. Depending on this value,
|
889
900
|
# other fields in this request will be required and/or have different meanings.
|
890
901
|
# There are 4 different OOB codes that can be sent: * PASSWORD_RESET *
|
@@ -933,6 +944,7 @@ module Google
|
|
933
944
|
@can_handle_code_in_app = args[:can_handle_code_in_app] if args.key?(:can_handle_code_in_app)
|
934
945
|
@captcha_resp = args[:captcha_resp] if args.key?(:captcha_resp)
|
935
946
|
@challenge = args[:challenge] if args.key?(:challenge)
|
947
|
+
@client_type = args[:client_type] if args.key?(:client_type)
|
936
948
|
@continue_url = args[:continue_url] if args.key?(:continue_url)
|
937
949
|
@dynamic_link_domain = args[:dynamic_link_domain] if args.key?(:dynamic_link_domain)
|
938
950
|
@email = args[:email] if args.key?(:email)
|
@@ -940,6 +952,7 @@ module Google
|
|
940
952
|
@i_os_bundle_id = args[:i_os_bundle_id] if args.key?(:i_os_bundle_id)
|
941
953
|
@id_token = args[:id_token] if args.key?(:id_token)
|
942
954
|
@new_email = args[:new_email] if args.key?(:new_email)
|
955
|
+
@recaptcha_version = args[:recaptcha_version] if args.key?(:recaptcha_version)
|
943
956
|
@request_type = args[:request_type] if args.key?(:request_type)
|
944
957
|
@return_oob_link = args[:return_oob_link] if args.key?(:return_oob_link)
|
945
958
|
@target_project_id = args[:target_project_id] if args.key?(:target_project_id)
|
@@ -2862,6 +2875,12 @@ module Google
|
|
2862
2875
|
# @return [String]
|
2863
2876
|
attr_accessor :captcha_response
|
2864
2877
|
|
2878
|
+
# The client type, web, android or ios. Required when reCAPTCHA Enterprise is
|
2879
|
+
# enabled.
|
2880
|
+
# Corresponds to the JSON property `clientType`
|
2881
|
+
# @return [String]
|
2882
|
+
attr_accessor :client_type
|
2883
|
+
|
2865
2884
|
#
|
2866
2885
|
# Corresponds to the JSON property `delegatedProjectNumber`
|
2867
2886
|
# @return [Fixnum]
|
@@ -2895,6 +2914,11 @@ module Google
|
|
2895
2914
|
# @return [String]
|
2896
2915
|
attr_accessor :pending_id_token
|
2897
2916
|
|
2917
|
+
# The reCAPTCHA version of the reCAPTCHA token in the captcha_response.
|
2918
|
+
# Corresponds to the JSON property `recaptchaVersion`
|
2919
|
+
# @return [String]
|
2920
|
+
attr_accessor :recaptcha_version
|
2921
|
+
|
2898
2922
|
# Should always be true.
|
2899
2923
|
# Corresponds to the JSON property `returnSecureToken`
|
2900
2924
|
# @return [Boolean]
|
@@ -2915,12 +2939,14 @@ module Google
|
|
2915
2939
|
def update!(**args)
|
2916
2940
|
@captcha_challenge = args[:captcha_challenge] if args.key?(:captcha_challenge)
|
2917
2941
|
@captcha_response = args[:captcha_response] if args.key?(:captcha_response)
|
2942
|
+
@client_type = args[:client_type] if args.key?(:client_type)
|
2918
2943
|
@delegated_project_number = args[:delegated_project_number] if args.key?(:delegated_project_number)
|
2919
2944
|
@email = args[:email] if args.key?(:email)
|
2920
2945
|
@id_token = args[:id_token] if args.key?(:id_token)
|
2921
2946
|
@instance_id = args[:instance_id] if args.key?(:instance_id)
|
2922
2947
|
@password = args[:password] if args.key?(:password)
|
2923
2948
|
@pending_id_token = args[:pending_id_token] if args.key?(:pending_id_token)
|
2949
|
+
@recaptcha_version = args[:recaptcha_version] if args.key?(:recaptcha_version)
|
2924
2950
|
@return_secure_token = args[:return_secure_token] if args.key?(:return_secure_token)
|
2925
2951
|
@tenant_id = args[:tenant_id] if args.key?(:tenant_id)
|
2926
2952
|
end
|
@@ -3195,6 +3221,12 @@ module Google
|
|
3195
3221
|
# @return [String]
|
3196
3222
|
attr_accessor :captcha_response
|
3197
3223
|
|
3224
|
+
# The client type: web, Android or iOS. Required when enabling reCAPTCHA
|
3225
|
+
# enterprise protection.
|
3226
|
+
# Corresponds to the JSON property `clientType`
|
3227
|
+
# @return [String]
|
3228
|
+
attr_accessor :client_type
|
3229
|
+
|
3198
3230
|
# Whether the user will be disabled upon creation. Disabled accounts are
|
3199
3231
|
# inaccessible except for requests bearing a Google OAuth2 credential with
|
3200
3232
|
# proper [permissions](https://cloud.google.com/identity-platform/docs/access-
|
@@ -3269,6 +3301,11 @@ module Google
|
|
3269
3301
|
# @return [String]
|
3270
3302
|
attr_accessor :photo_url
|
3271
3303
|
|
3304
|
+
# The reCAPTCHA version of the reCAPTCHA token in the captcha_response.
|
3305
|
+
# Corresponds to the JSON property `recaptchaVersion`
|
3306
|
+
# @return [String]
|
3307
|
+
attr_accessor :recaptcha_version
|
3308
|
+
|
3272
3309
|
# The project ID of the project which the user should belong to. Specifying this
|
3273
3310
|
# field requires a Google OAuth 2.0 credential with the proper [permissions](
|
3274
3311
|
# https://cloud.google.com/identity-platform/docs/access-control). If this is
|
@@ -3292,6 +3329,7 @@ module Google
|
|
3292
3329
|
def update!(**args)
|
3293
3330
|
@captcha_challenge = args[:captcha_challenge] if args.key?(:captcha_challenge)
|
3294
3331
|
@captcha_response = args[:captcha_response] if args.key?(:captcha_response)
|
3332
|
+
@client_type = args[:client_type] if args.key?(:client_type)
|
3295
3333
|
@disabled = args[:disabled] if args.key?(:disabled)
|
3296
3334
|
@display_name = args[:display_name] if args.key?(:display_name)
|
3297
3335
|
@email = args[:email] if args.key?(:email)
|
@@ -3303,6 +3341,7 @@ module Google
|
|
3303
3341
|
@password = args[:password] if args.key?(:password)
|
3304
3342
|
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
3305
3343
|
@photo_url = args[:photo_url] if args.key?(:photo_url)
|
3344
|
+
@recaptcha_version = args[:recaptcha_version] if args.key?(:recaptcha_version)
|
3306
3345
|
@target_project_id = args[:target_project_id] if args.key?(:target_project_id)
|
3307
3346
|
@tenant_id = args[:tenant_id] if args.key?(:tenant_id)
|
3308
3347
|
end
|
@@ -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.8.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 = "
|
25
|
+
REVISION = "20230410"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -567,6 +567,7 @@ module Google
|
|
567
567
|
property :can_handle_code_in_app, as: 'canHandleCodeInApp'
|
568
568
|
property :captcha_resp, as: 'captchaResp'
|
569
569
|
property :challenge, as: 'challenge'
|
570
|
+
property :client_type, as: 'clientType'
|
570
571
|
property :continue_url, as: 'continueUrl'
|
571
572
|
property :dynamic_link_domain, as: 'dynamicLinkDomain'
|
572
573
|
property :email, as: 'email'
|
@@ -574,6 +575,7 @@ module Google
|
|
574
575
|
property :i_os_bundle_id, as: 'iOSBundleId'
|
575
576
|
property :id_token, as: 'idToken'
|
576
577
|
property :new_email, as: 'newEmail'
|
578
|
+
property :recaptcha_version, as: 'recaptchaVersion'
|
577
579
|
property :request_type, as: 'requestType'
|
578
580
|
property :return_oob_link, as: 'returnOobLink'
|
579
581
|
property :target_project_id, as: 'targetProjectId'
|
@@ -994,12 +996,14 @@ module Google
|
|
994
996
|
class Representation < Google::Apis::Core::JsonRepresentation
|
995
997
|
property :captcha_challenge, as: 'captchaChallenge'
|
996
998
|
property :captcha_response, as: 'captchaResponse'
|
999
|
+
property :client_type, as: 'clientType'
|
997
1000
|
property :delegated_project_number, :numeric_string => true, as: 'delegatedProjectNumber'
|
998
1001
|
property :email, as: 'email'
|
999
1002
|
property :id_token, as: 'idToken'
|
1000
1003
|
property :instance_id, as: 'instanceId'
|
1001
1004
|
property :password, as: 'password'
|
1002
1005
|
property :pending_id_token, as: 'pendingIdToken'
|
1006
|
+
property :recaptcha_version, as: 'recaptchaVersion'
|
1003
1007
|
property :return_secure_token, as: 'returnSecureToken'
|
1004
1008
|
property :tenant_id, as: 'tenantId'
|
1005
1009
|
end
|
@@ -1061,6 +1065,7 @@ module Google
|
|
1061
1065
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1062
1066
|
property :captcha_challenge, as: 'captchaChallenge'
|
1063
1067
|
property :captcha_response, as: 'captchaResponse'
|
1068
|
+
property :client_type, as: 'clientType'
|
1064
1069
|
property :disabled, as: 'disabled'
|
1065
1070
|
property :display_name, as: 'displayName'
|
1066
1071
|
property :email, as: 'email'
|
@@ -1073,6 +1078,7 @@ module Google
|
|
1073
1078
|
property :password, as: 'password'
|
1074
1079
|
property :phone_number, as: 'phoneNumber'
|
1075
1080
|
property :photo_url, as: 'photoUrl'
|
1081
|
+
property :recaptcha_version, as: 'recaptchaVersion'
|
1076
1082
|
property :target_project_id, as: 'targetProjectId'
|
1077
1083
|
property :tenant_id, as: 'tenantId'
|
1078
1084
|
end
|
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.8.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-04-
|
11
|
+
date: 2023-04-23 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-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.8.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: []
|