@wix/identity 1.0.90 → 1.0.91
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/identity",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.91",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@wix/identity_account": "1.0.1",
|
|
25
25
|
"@wix/identity_account-invite": "1.0.1",
|
|
26
|
-
"@wix/identity_authentication": "1.0.
|
|
26
|
+
"@wix/identity_authentication": "1.0.18",
|
|
27
27
|
"@wix/identity_contributor": "1.0.2",
|
|
28
28
|
"@wix/identity_oauth": "1.0.13",
|
|
29
29
|
"@wix/identity_recovery": "1.0.14",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"fqdn": ""
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"falconPackageHash": "
|
|
56
|
+
"falconPackageHash": "26ed5cf4809a549e5d2a4eae56fa4a9452786fdd9e48e049283d9b33"
|
|
57
57
|
}
|
|
@@ -965,10 +965,10 @@ interface LogoutRequest {
|
|
|
965
965
|
clientId?: string | null;
|
|
966
966
|
}
|
|
967
967
|
interface VerifyRequest$1 extends VerifyRequestFactorDataOneOf {
|
|
968
|
-
smsData?:
|
|
969
|
-
callData?:
|
|
970
|
-
emailData?:
|
|
971
|
-
totpData?:
|
|
968
|
+
smsData?: SmsVerifyData;
|
|
969
|
+
callData?: CallVerifyData;
|
|
970
|
+
emailData?: EmailVerifyData;
|
|
971
|
+
totpData?: TotpVerifyData;
|
|
972
972
|
/** TODO: is this a reasonable maxLength? */
|
|
973
973
|
stateToken?: string;
|
|
974
974
|
factorType: FactorType$2;
|
|
@@ -976,12 +976,21 @@ interface VerifyRequest$1 extends VerifyRequestFactorDataOneOf {
|
|
|
976
976
|
}
|
|
977
977
|
/** @oneof */
|
|
978
978
|
interface VerifyRequestFactorDataOneOf {
|
|
979
|
-
smsData?:
|
|
980
|
-
callData?:
|
|
981
|
-
emailData?:
|
|
982
|
-
totpData?:
|
|
979
|
+
smsData?: SmsVerifyData;
|
|
980
|
+
callData?: CallVerifyData;
|
|
981
|
+
emailData?: EmailVerifyData;
|
|
982
|
+
totpData?: TotpVerifyData;
|
|
983
983
|
}
|
|
984
|
-
interface
|
|
984
|
+
interface SmsVerifyData {
|
|
985
|
+
code?: string | null;
|
|
986
|
+
}
|
|
987
|
+
interface CallVerifyData {
|
|
988
|
+
code?: string | null;
|
|
989
|
+
}
|
|
990
|
+
interface EmailVerifyData {
|
|
991
|
+
code?: string | null;
|
|
992
|
+
}
|
|
993
|
+
interface TotpVerifyData {
|
|
985
994
|
code?: string | null;
|
|
986
995
|
}
|
|
987
996
|
interface V1FactorNonNullableFields$2 {
|
|
@@ -1147,10 +1156,10 @@ interface VerifyOptions extends VerifyRequestFactorDataOneOf {
|
|
|
1147
1156
|
/** TODO: is this a reasonable maxLength? */
|
|
1148
1157
|
stateToken?: string;
|
|
1149
1158
|
rememberThisDevice?: boolean;
|
|
1150
|
-
smsData?:
|
|
1151
|
-
callData?:
|
|
1152
|
-
emailData?:
|
|
1153
|
-
totpData?:
|
|
1159
|
+
smsData?: SmsVerifyData;
|
|
1160
|
+
callData?: CallVerifyData;
|
|
1161
|
+
emailData?: EmailVerifyData;
|
|
1162
|
+
totpData?: TotpVerifyData;
|
|
1154
1163
|
}
|
|
1155
1164
|
|
|
1156
1165
|
declare function registerV2$1(httpClient: HttpClient): RegisterV2Signature;
|
|
@@ -1230,10 +1239,12 @@ declare const logout: MaybeContext<BuildRESTFunction<typeof logout$1> & typeof l
|
|
|
1230
1239
|
declare const verify: MaybeContext<BuildRESTFunction<typeof verify$1> & typeof verify$1>;
|
|
1231
1240
|
|
|
1232
1241
|
type context$7_Authentication = Authentication;
|
|
1242
|
+
type context$7_CallVerifyData = CallVerifyData;
|
|
1233
1243
|
type context$7_CaptchaToken = CaptchaToken;
|
|
1234
1244
|
type context$7_CaptchaTokenTokenOneOf = CaptchaTokenTokenOneOf;
|
|
1235
1245
|
type context$7_ChangePasswordRequest = ChangePasswordRequest;
|
|
1236
1246
|
type context$7_ChangePasswordResponse = ChangePasswordResponse;
|
|
1247
|
+
type context$7_EmailVerifyData = EmailVerifyData;
|
|
1237
1248
|
type context$7_LoginCallbackOptions = LoginCallbackOptions;
|
|
1238
1249
|
type context$7_LoginCallbackRequest = LoginCallbackRequest;
|
|
1239
1250
|
type context$7_LoginId = LoginId;
|
|
@@ -1247,13 +1258,14 @@ type context$7_LoginWithIdpConnectionTokenParamsOptions = LoginWithIdpConnection
|
|
|
1247
1258
|
type context$7_LoginWithIdpConnectionTokenParamsRequest = LoginWithIdpConnectionTokenParamsRequest;
|
|
1248
1259
|
type context$7_LogoutOptions = LogoutOptions;
|
|
1249
1260
|
type context$7_LogoutRequest = LogoutRequest;
|
|
1250
|
-
type context$7_OtpVerificationData = OtpVerificationData;
|
|
1251
1261
|
type context$7_RegisterV2Options = RegisterV2Options;
|
|
1252
1262
|
type context$7_RegisterV2Request = RegisterV2Request;
|
|
1253
1263
|
type context$7_SignOnOptions = SignOnOptions;
|
|
1254
1264
|
type context$7_SignOnRequest = SignOnRequest;
|
|
1255
1265
|
type context$7_SignOnResponse = SignOnResponse;
|
|
1256
1266
|
type context$7_SignOnResponseNonNullableFields = SignOnResponseNonNullableFields;
|
|
1267
|
+
type context$7_SmsVerifyData = SmsVerifyData;
|
|
1268
|
+
type context$7_TotpVerifyData = TotpVerifyData;
|
|
1257
1269
|
type context$7_VerifyOptions = VerifyOptions;
|
|
1258
1270
|
type context$7_VerifyRequestFactorDataOneOf = VerifyRequestFactorDataOneOf;
|
|
1259
1271
|
declare const context$7_changePassword: typeof changePassword;
|
|
@@ -1266,7 +1278,7 @@ declare const context$7_registerV2: typeof registerV2;
|
|
|
1266
1278
|
declare const context$7_signOn: typeof signOn;
|
|
1267
1279
|
declare const context$7_verify: typeof verify;
|
|
1268
1280
|
declare namespace context$7 {
|
|
1269
|
-
export { type Address$2 as Address, AddressTag$2 as AddressTag, type AddressWrapper$2 as AddressWrapper, type context$7_Authentication as Authentication, type AuthenticatorConnection$2 as AuthenticatorConnection, type context$7_CaptchaToken as CaptchaToken, type context$7_CaptchaTokenTokenOneOf as CaptchaTokenTokenOneOf, type context$7_ChangePasswordRequest as ChangePasswordRequest, type context$7_ChangePasswordResponse as ChangePasswordResponse, type Connection$2 as Connection, type ConnectionTypeOneOf$2 as ConnectionTypeOneOf, type CustomField$2 as CustomField, type CustomValue$2 as CustomValue, type CustomValueValueOneOf$2 as CustomValueValueOneOf, type Email$3 as Email, EmailTag$2 as EmailTag, type Factor$2 as Factor, FactorType$2 as FactorType, type HeadersEntry$1 as HeadersEntry, type Identity$2 as Identity, type IdentityProfile$2 as IdentityProfile, type IdpConnection$2 as IdpConnection, type ListValue$2 as ListValue, type context$7_LoginCallbackOptions as LoginCallbackOptions, type context$7_LoginCallbackRequest as LoginCallbackRequest, type context$7_LoginId as LoginId, type context$7_LoginIdTypeOneOf as LoginIdTypeOneOf, type context$7_LoginV2Options as LoginV2Options, type context$7_LoginV2Request as LoginV2Request, type context$7_LoginWithIdpConnectionIdentifiers as LoginWithIdpConnectionIdentifiers, type context$7_LoginWithIdpConnectionOptions as LoginWithIdpConnectionOptions, type context$7_LoginWithIdpConnectionRequest as LoginWithIdpConnectionRequest, type context$7_LoginWithIdpConnectionTokenParamsOptions as LoginWithIdpConnectionTokenParamsOptions, type context$7_LoginWithIdpConnectionTokenParamsRequest as LoginWithIdpConnectionTokenParamsRequest, type context$7_LogoutOptions as LogoutOptions, type context$7_LogoutRequest as LogoutRequest, type MapValue$2 as MapValue, type Metadata$2 as Metadata, type MfaChallengeData$2 as MfaChallengeData, type
|
|
1281
|
+
export { type Address$2 as Address, AddressTag$2 as AddressTag, type AddressWrapper$2 as AddressWrapper, type context$7_Authentication as Authentication, type AuthenticatorConnection$2 as AuthenticatorConnection, type context$7_CallVerifyData as CallVerifyData, type context$7_CaptchaToken as CaptchaToken, type context$7_CaptchaTokenTokenOneOf as CaptchaTokenTokenOneOf, type context$7_ChangePasswordRequest as ChangePasswordRequest, type context$7_ChangePasswordResponse as ChangePasswordResponse, type Connection$2 as Connection, type ConnectionTypeOneOf$2 as ConnectionTypeOneOf, type CustomField$2 as CustomField, type CustomValue$2 as CustomValue, type CustomValueValueOneOf$2 as CustomValueValueOneOf, type Email$3 as Email, EmailTag$2 as EmailTag, type context$7_EmailVerifyData as EmailVerifyData, type Factor$2 as Factor, FactorType$2 as FactorType, type HeadersEntry$1 as HeadersEntry, type Identity$2 as Identity, type IdentityProfile$2 as IdentityProfile, type IdpConnection$2 as IdpConnection, type ListValue$2 as ListValue, type context$7_LoginCallbackOptions as LoginCallbackOptions, type context$7_LoginCallbackRequest as LoginCallbackRequest, type context$7_LoginId as LoginId, type context$7_LoginIdTypeOneOf as LoginIdTypeOneOf, type context$7_LoginV2Options as LoginV2Options, type context$7_LoginV2Request as LoginV2Request, type context$7_LoginWithIdpConnectionIdentifiers as LoginWithIdpConnectionIdentifiers, type context$7_LoginWithIdpConnectionOptions as LoginWithIdpConnectionOptions, type context$7_LoginWithIdpConnectionRequest as LoginWithIdpConnectionRequest, type context$7_LoginWithIdpConnectionTokenParamsOptions as LoginWithIdpConnectionTokenParamsOptions, type context$7_LoginWithIdpConnectionTokenParamsRequest as LoginWithIdpConnectionTokenParamsRequest, type context$7_LogoutOptions as LogoutOptions, type context$7_LogoutRequest as LogoutRequest, type MapValue$2 as MapValue, type Metadata$2 as Metadata, type MfaChallengeData$2 as MfaChallengeData, type PathParametersEntry$1 as PathParametersEntry, type Phone$2 as Phone, PhoneTag$2 as PhoneTag, PrivacyStatus$2 as PrivacyStatus, type QueryParametersEntry$1 as QueryParametersEntry, type RawHttpRequest$1 as RawHttpRequest, type RawHttpResponse$1 as RawHttpResponse, type RawHttpResponseNonNullableFields$1 as RawHttpResponseNonNullableFields, Reason$2 as Reason, type context$7_RegisterV2Options as RegisterV2Options, type context$7_RegisterV2Request as RegisterV2Request, type RequireMfaData$2 as RequireMfaData, type SecondaryEmail$2 as SecondaryEmail, type context$7_SignOnOptions as SignOnOptions, type context$7_SignOnRequest as SignOnRequest, type context$7_SignOnResponse as SignOnResponse, type context$7_SignOnResponseNonNullableFields as SignOnResponseNonNullableFields, type context$7_SmsVerifyData as SmsVerifyData, type StateMachineResponse$2 as StateMachineResponse, type StateMachineResponseNonNullableFields$2 as StateMachineResponseNonNullableFields, type StateMachineResponseStateDataOneOf$2 as StateMachineResponseStateDataOneOf, StateType$2 as StateType, Status$2 as Status, StatusName$2 as StatusName, type StatusV2$2 as StatusV2, TenantType$1 as TenantType, type context$7_TotpVerifyData as TotpVerifyData, type V1CustomValue$2 as V1CustomValue, type V1CustomValueValueOneOf$2 as V1CustomValueValueOneOf, type V1Factor$2 as V1Factor, type V1ListValue$2 as V1ListValue, type V1MapValue$2 as V1MapValue, type VerificationChallenge$2 as VerificationChallenge, type context$7_VerifyOptions as VerifyOptions, type VerifyRequest$1 as VerifyRequest, type context$7_VerifyRequestFactorDataOneOf as VerifyRequestFactorDataOneOf, context$7_changePassword as changePassword, context$7_loginCallback as loginCallback, context$7_loginV2 as loginV2, context$7_loginWithIdpConnection as loginWithIdpConnection, context$7_loginWithIdpConnectionTokenParams as loginWithIdpConnectionTokenParams, context$7_logout as logout, context$7_registerV2 as registerV2, context$7_signOn as signOn, context$7_verify as verify };
|
|
1270
1282
|
}
|
|
1271
1283
|
|
|
1272
1284
|
/** Recovery token proto is the saved data on the recovery token. */
|
|
@@ -965,10 +965,10 @@ interface LogoutRequest {
|
|
|
965
965
|
clientId?: string | null;
|
|
966
966
|
}
|
|
967
967
|
interface VerifyRequest$1 extends VerifyRequestFactorDataOneOf {
|
|
968
|
-
smsData?:
|
|
969
|
-
callData?:
|
|
970
|
-
emailData?:
|
|
971
|
-
totpData?:
|
|
968
|
+
smsData?: SmsVerifyData;
|
|
969
|
+
callData?: CallVerifyData;
|
|
970
|
+
emailData?: EmailVerifyData;
|
|
971
|
+
totpData?: TotpVerifyData;
|
|
972
972
|
/** TODO: is this a reasonable maxLength? */
|
|
973
973
|
stateToken?: string;
|
|
974
974
|
factorType: FactorType$2;
|
|
@@ -976,12 +976,21 @@ interface VerifyRequest$1 extends VerifyRequestFactorDataOneOf {
|
|
|
976
976
|
}
|
|
977
977
|
/** @oneof */
|
|
978
978
|
interface VerifyRequestFactorDataOneOf {
|
|
979
|
-
smsData?:
|
|
980
|
-
callData?:
|
|
981
|
-
emailData?:
|
|
982
|
-
totpData?:
|
|
979
|
+
smsData?: SmsVerifyData;
|
|
980
|
+
callData?: CallVerifyData;
|
|
981
|
+
emailData?: EmailVerifyData;
|
|
982
|
+
totpData?: TotpVerifyData;
|
|
983
983
|
}
|
|
984
|
-
interface
|
|
984
|
+
interface SmsVerifyData {
|
|
985
|
+
code?: string | null;
|
|
986
|
+
}
|
|
987
|
+
interface CallVerifyData {
|
|
988
|
+
code?: string | null;
|
|
989
|
+
}
|
|
990
|
+
interface EmailVerifyData {
|
|
991
|
+
code?: string | null;
|
|
992
|
+
}
|
|
993
|
+
interface TotpVerifyData {
|
|
985
994
|
code?: string | null;
|
|
986
995
|
}
|
|
987
996
|
interface V1FactorNonNullableFields$2 {
|
|
@@ -1147,10 +1156,10 @@ interface VerifyOptions extends VerifyRequestFactorDataOneOf {
|
|
|
1147
1156
|
/** TODO: is this a reasonable maxLength? */
|
|
1148
1157
|
stateToken?: string;
|
|
1149
1158
|
rememberThisDevice?: boolean;
|
|
1150
|
-
smsData?:
|
|
1151
|
-
callData?:
|
|
1152
|
-
emailData?:
|
|
1153
|
-
totpData?:
|
|
1159
|
+
smsData?: SmsVerifyData;
|
|
1160
|
+
callData?: CallVerifyData;
|
|
1161
|
+
emailData?: EmailVerifyData;
|
|
1162
|
+
totpData?: TotpVerifyData;
|
|
1154
1163
|
}
|
|
1155
1164
|
|
|
1156
1165
|
declare function registerV2$1(httpClient: HttpClient): RegisterV2Signature;
|
|
@@ -1230,10 +1239,12 @@ declare const logout: MaybeContext<BuildRESTFunction<typeof logout$1> & typeof l
|
|
|
1230
1239
|
declare const verify: MaybeContext<BuildRESTFunction<typeof verify$1> & typeof verify$1>;
|
|
1231
1240
|
|
|
1232
1241
|
type index_d$7_Authentication = Authentication;
|
|
1242
|
+
type index_d$7_CallVerifyData = CallVerifyData;
|
|
1233
1243
|
type index_d$7_CaptchaToken = CaptchaToken;
|
|
1234
1244
|
type index_d$7_CaptchaTokenTokenOneOf = CaptchaTokenTokenOneOf;
|
|
1235
1245
|
type index_d$7_ChangePasswordRequest = ChangePasswordRequest;
|
|
1236
1246
|
type index_d$7_ChangePasswordResponse = ChangePasswordResponse;
|
|
1247
|
+
type index_d$7_EmailVerifyData = EmailVerifyData;
|
|
1237
1248
|
type index_d$7_LoginCallbackOptions = LoginCallbackOptions;
|
|
1238
1249
|
type index_d$7_LoginCallbackRequest = LoginCallbackRequest;
|
|
1239
1250
|
type index_d$7_LoginId = LoginId;
|
|
@@ -1247,13 +1258,14 @@ type index_d$7_LoginWithIdpConnectionTokenParamsOptions = LoginWithIdpConnection
|
|
|
1247
1258
|
type index_d$7_LoginWithIdpConnectionTokenParamsRequest = LoginWithIdpConnectionTokenParamsRequest;
|
|
1248
1259
|
type index_d$7_LogoutOptions = LogoutOptions;
|
|
1249
1260
|
type index_d$7_LogoutRequest = LogoutRequest;
|
|
1250
|
-
type index_d$7_OtpVerificationData = OtpVerificationData;
|
|
1251
1261
|
type index_d$7_RegisterV2Options = RegisterV2Options;
|
|
1252
1262
|
type index_d$7_RegisterV2Request = RegisterV2Request;
|
|
1253
1263
|
type index_d$7_SignOnOptions = SignOnOptions;
|
|
1254
1264
|
type index_d$7_SignOnRequest = SignOnRequest;
|
|
1255
1265
|
type index_d$7_SignOnResponse = SignOnResponse;
|
|
1256
1266
|
type index_d$7_SignOnResponseNonNullableFields = SignOnResponseNonNullableFields;
|
|
1267
|
+
type index_d$7_SmsVerifyData = SmsVerifyData;
|
|
1268
|
+
type index_d$7_TotpVerifyData = TotpVerifyData;
|
|
1257
1269
|
type index_d$7_VerifyOptions = VerifyOptions;
|
|
1258
1270
|
type index_d$7_VerifyRequestFactorDataOneOf = VerifyRequestFactorDataOneOf;
|
|
1259
1271
|
declare const index_d$7_changePassword: typeof changePassword;
|
|
@@ -1266,7 +1278,7 @@ declare const index_d$7_registerV2: typeof registerV2;
|
|
|
1266
1278
|
declare const index_d$7_signOn: typeof signOn;
|
|
1267
1279
|
declare const index_d$7_verify: typeof verify;
|
|
1268
1280
|
declare namespace index_d$7 {
|
|
1269
|
-
export { type Address$2 as Address, AddressTag$2 as AddressTag, type AddressWrapper$2 as AddressWrapper, type index_d$7_Authentication as Authentication, type AuthenticatorConnection$2 as AuthenticatorConnection, type index_d$7_CaptchaToken as CaptchaToken, type index_d$7_CaptchaTokenTokenOneOf as CaptchaTokenTokenOneOf, type index_d$7_ChangePasswordRequest as ChangePasswordRequest, type index_d$7_ChangePasswordResponse as ChangePasswordResponse, type Connection$2 as Connection, type ConnectionTypeOneOf$2 as ConnectionTypeOneOf, type CustomField$2 as CustomField, type CustomValue$2 as CustomValue, type CustomValueValueOneOf$2 as CustomValueValueOneOf, type Email$3 as Email, EmailTag$2 as EmailTag, type Factor$2 as Factor, FactorType$2 as FactorType, type HeadersEntry$1 as HeadersEntry, type Identity$2 as Identity, type IdentityProfile$2 as IdentityProfile, type IdpConnection$2 as IdpConnection, type ListValue$2 as ListValue, type index_d$7_LoginCallbackOptions as LoginCallbackOptions, type index_d$7_LoginCallbackRequest as LoginCallbackRequest, type index_d$7_LoginId as LoginId, type index_d$7_LoginIdTypeOneOf as LoginIdTypeOneOf, type index_d$7_LoginV2Options as LoginV2Options, type index_d$7_LoginV2Request as LoginV2Request, type index_d$7_LoginWithIdpConnectionIdentifiers as LoginWithIdpConnectionIdentifiers, type index_d$7_LoginWithIdpConnectionOptions as LoginWithIdpConnectionOptions, type index_d$7_LoginWithIdpConnectionRequest as LoginWithIdpConnectionRequest, type index_d$7_LoginWithIdpConnectionTokenParamsOptions as LoginWithIdpConnectionTokenParamsOptions, type index_d$7_LoginWithIdpConnectionTokenParamsRequest as LoginWithIdpConnectionTokenParamsRequest, type index_d$7_LogoutOptions as LogoutOptions, type index_d$7_LogoutRequest as LogoutRequest, type MapValue$2 as MapValue, type Metadata$2 as Metadata, type MfaChallengeData$2 as MfaChallengeData, type
|
|
1281
|
+
export { type Address$2 as Address, AddressTag$2 as AddressTag, type AddressWrapper$2 as AddressWrapper, type index_d$7_Authentication as Authentication, type AuthenticatorConnection$2 as AuthenticatorConnection, type index_d$7_CallVerifyData as CallVerifyData, type index_d$7_CaptchaToken as CaptchaToken, type index_d$7_CaptchaTokenTokenOneOf as CaptchaTokenTokenOneOf, type index_d$7_ChangePasswordRequest as ChangePasswordRequest, type index_d$7_ChangePasswordResponse as ChangePasswordResponse, type Connection$2 as Connection, type ConnectionTypeOneOf$2 as ConnectionTypeOneOf, type CustomField$2 as CustomField, type CustomValue$2 as CustomValue, type CustomValueValueOneOf$2 as CustomValueValueOneOf, type Email$3 as Email, EmailTag$2 as EmailTag, type index_d$7_EmailVerifyData as EmailVerifyData, type Factor$2 as Factor, FactorType$2 as FactorType, type HeadersEntry$1 as HeadersEntry, type Identity$2 as Identity, type IdentityProfile$2 as IdentityProfile, type IdpConnection$2 as IdpConnection, type ListValue$2 as ListValue, type index_d$7_LoginCallbackOptions as LoginCallbackOptions, type index_d$7_LoginCallbackRequest as LoginCallbackRequest, type index_d$7_LoginId as LoginId, type index_d$7_LoginIdTypeOneOf as LoginIdTypeOneOf, type index_d$7_LoginV2Options as LoginV2Options, type index_d$7_LoginV2Request as LoginV2Request, type index_d$7_LoginWithIdpConnectionIdentifiers as LoginWithIdpConnectionIdentifiers, type index_d$7_LoginWithIdpConnectionOptions as LoginWithIdpConnectionOptions, type index_d$7_LoginWithIdpConnectionRequest as LoginWithIdpConnectionRequest, type index_d$7_LoginWithIdpConnectionTokenParamsOptions as LoginWithIdpConnectionTokenParamsOptions, type index_d$7_LoginWithIdpConnectionTokenParamsRequest as LoginWithIdpConnectionTokenParamsRequest, type index_d$7_LogoutOptions as LogoutOptions, type index_d$7_LogoutRequest as LogoutRequest, type MapValue$2 as MapValue, type Metadata$2 as Metadata, type MfaChallengeData$2 as MfaChallengeData, type PathParametersEntry$1 as PathParametersEntry, type Phone$2 as Phone, PhoneTag$2 as PhoneTag, PrivacyStatus$2 as PrivacyStatus, type QueryParametersEntry$1 as QueryParametersEntry, type RawHttpRequest$1 as RawHttpRequest, type RawHttpResponse$1 as RawHttpResponse, type RawHttpResponseNonNullableFields$1 as RawHttpResponseNonNullableFields, Reason$2 as Reason, type index_d$7_RegisterV2Options as RegisterV2Options, type index_d$7_RegisterV2Request as RegisterV2Request, type RequireMfaData$2 as RequireMfaData, type SecondaryEmail$2 as SecondaryEmail, type index_d$7_SignOnOptions as SignOnOptions, type index_d$7_SignOnRequest as SignOnRequest, type index_d$7_SignOnResponse as SignOnResponse, type index_d$7_SignOnResponseNonNullableFields as SignOnResponseNonNullableFields, type index_d$7_SmsVerifyData as SmsVerifyData, type StateMachineResponse$2 as StateMachineResponse, type StateMachineResponseNonNullableFields$2 as StateMachineResponseNonNullableFields, type StateMachineResponseStateDataOneOf$2 as StateMachineResponseStateDataOneOf, StateType$2 as StateType, Status$2 as Status, StatusName$2 as StatusName, type StatusV2$2 as StatusV2, TenantType$1 as TenantType, type index_d$7_TotpVerifyData as TotpVerifyData, type V1CustomValue$2 as V1CustomValue, type V1CustomValueValueOneOf$2 as V1CustomValueValueOneOf, type V1Factor$2 as V1Factor, type V1ListValue$2 as V1ListValue, type V1MapValue$2 as V1MapValue, type VerificationChallenge$2 as VerificationChallenge, type index_d$7_VerifyOptions as VerifyOptions, type VerifyRequest$1 as VerifyRequest, type index_d$7_VerifyRequestFactorDataOneOf as VerifyRequestFactorDataOneOf, index_d$7_changePassword as changePassword, index_d$7_loginCallback as loginCallback, index_d$7_loginV2 as loginV2, index_d$7_loginWithIdpConnection as loginWithIdpConnection, index_d$7_loginWithIdpConnectionTokenParams as loginWithIdpConnectionTokenParams, index_d$7_logout as logout, index_d$7_registerV2 as registerV2, index_d$7_signOn as signOn, index_d$7_verify as verify };
|
|
1270
1282
|
}
|
|
1271
1283
|
|
|
1272
1284
|
/** Recovery token proto is the saved data on the recovery token. */
|
|
@@ -468,10 +468,10 @@ interface LogoutRequest$1 {
|
|
|
468
468
|
clientId?: string | null;
|
|
469
469
|
}
|
|
470
470
|
interface VerifyRequest$1 extends VerifyRequestFactorDataOneOf$1 {
|
|
471
|
-
smsData?:
|
|
472
|
-
callData?:
|
|
473
|
-
emailData?:
|
|
474
|
-
totpData?:
|
|
471
|
+
smsData?: SmsVerifyData$1;
|
|
472
|
+
callData?: CallVerifyData$1;
|
|
473
|
+
emailData?: EmailVerifyData$1;
|
|
474
|
+
totpData?: TotpVerifyData$1;
|
|
475
475
|
/** TODO: is this a reasonable maxLength? */
|
|
476
476
|
stateToken?: string;
|
|
477
477
|
factorType: FactorType$5;
|
|
@@ -479,12 +479,21 @@ interface VerifyRequest$1 extends VerifyRequestFactorDataOneOf$1 {
|
|
|
479
479
|
}
|
|
480
480
|
/** @oneof */
|
|
481
481
|
interface VerifyRequestFactorDataOneOf$1 {
|
|
482
|
-
smsData?:
|
|
483
|
-
callData?:
|
|
484
|
-
emailData?:
|
|
485
|
-
totpData?:
|
|
482
|
+
smsData?: SmsVerifyData$1;
|
|
483
|
+
callData?: CallVerifyData$1;
|
|
484
|
+
emailData?: EmailVerifyData$1;
|
|
485
|
+
totpData?: TotpVerifyData$1;
|
|
486
486
|
}
|
|
487
|
-
interface
|
|
487
|
+
interface SmsVerifyData$1 {
|
|
488
|
+
code?: string | null;
|
|
489
|
+
}
|
|
490
|
+
interface CallVerifyData$1 {
|
|
491
|
+
code?: string | null;
|
|
492
|
+
}
|
|
493
|
+
interface EmailVerifyData$1 {
|
|
494
|
+
code?: string | null;
|
|
495
|
+
}
|
|
496
|
+
interface TotpVerifyData$1 {
|
|
488
497
|
code?: string | null;
|
|
489
498
|
}
|
|
490
499
|
interface V1FactorNonNullableFields$5 {
|
|
@@ -1055,10 +1064,10 @@ interface LogoutRequest {
|
|
|
1055
1064
|
clientId?: string | null;
|
|
1056
1065
|
}
|
|
1057
1066
|
interface VerifyRequest extends VerifyRequestFactorDataOneOf {
|
|
1058
|
-
smsData?:
|
|
1059
|
-
callData?:
|
|
1060
|
-
emailData?:
|
|
1061
|
-
totpData?:
|
|
1067
|
+
smsData?: SmsVerifyData;
|
|
1068
|
+
callData?: CallVerifyData;
|
|
1069
|
+
emailData?: EmailVerifyData;
|
|
1070
|
+
totpData?: TotpVerifyData;
|
|
1062
1071
|
/** TODO: is this a reasonable maxLength? */
|
|
1063
1072
|
stateToken?: string;
|
|
1064
1073
|
factorType: FactorType$4;
|
|
@@ -1066,12 +1075,21 @@ interface VerifyRequest extends VerifyRequestFactorDataOneOf {
|
|
|
1066
1075
|
}
|
|
1067
1076
|
/** @oneof */
|
|
1068
1077
|
interface VerifyRequestFactorDataOneOf {
|
|
1069
|
-
smsData?:
|
|
1070
|
-
callData?:
|
|
1071
|
-
emailData?:
|
|
1072
|
-
totpData?:
|
|
1078
|
+
smsData?: SmsVerifyData;
|
|
1079
|
+
callData?: CallVerifyData;
|
|
1080
|
+
emailData?: EmailVerifyData;
|
|
1081
|
+
totpData?: TotpVerifyData;
|
|
1082
|
+
}
|
|
1083
|
+
interface SmsVerifyData {
|
|
1084
|
+
code?: string | null;
|
|
1085
|
+
}
|
|
1086
|
+
interface CallVerifyData {
|
|
1087
|
+
code?: string | null;
|
|
1088
|
+
}
|
|
1089
|
+
interface EmailVerifyData {
|
|
1090
|
+
code?: string | null;
|
|
1073
1091
|
}
|
|
1074
|
-
interface
|
|
1092
|
+
interface TotpVerifyData {
|
|
1075
1093
|
code?: string | null;
|
|
1076
1094
|
}
|
|
1077
1095
|
interface V1FactorNonNullableFields$4 {
|