You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/FrontendApi.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ final String cookie = cookie_example; // String | HTTP Cookies When using the S
62
62
final String loginChallenge = loginChallenge_example; // String | An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`).
63
63
final String organization = organization_example; // String | An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.
64
64
final String via = via_example; // String | Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.
65
-
final String identitySchema = identitySchema_example; // String | An optional identity schema to use for the registration flow.
65
+
final String identitySchema = identitySchema_example; // String | An optional identity schema to use for the login flow.
@@ -83,7 +83,7 @@ Name | Type | Description | Notes
83
83
**loginChallenge** | **String**| An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`). | [optional]
84
84
**organization** | **String**| An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. | [optional]
85
85
**via** | **String**| Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. | [optional]
86
-
**identitySchema** | **String**| An optional identity schema to use for the registration flow. | [optional]
86
+
**identitySchema** | **String**| An optional identity schema to use for the login flow. | [optional]
final String returnTo = returnTo_example; // String | The URL to return the browser to after the flow was completed.
386
386
final String organization = organization_example; // String | An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.
387
387
final String via = via_example; // String | Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.
388
-
final String identitySchema = identitySchema_example; // String | An optional identity schema to use for the registration flow.
388
+
final String identitySchema = identitySchema_example; // String | An optional identity schema to use for the login flow.
@@ -406,7 +406,7 @@ Name | Type | Description | Notes
406
406
**returnTo** | **String**| The URL to return the browser to after the flow was completed. | [optional]
407
407
**organization** | **String**| An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network. | [optional]
408
408
**via** | **String**| Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead. | [optional]
409
-
**identitySchema** | **String**| An optional identity schema to use for the registration flow. | [optional]
409
+
**identitySchema** | **String**| An optional identity schema to use for the login flow. | [optional]
Copy file name to clipboardExpand all lines: lib/src/api/frontend_api.dart
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ class FrontendApi {
51
51
/// * [loginChallenge] - An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from `login_challenge` URL Query parameter sent to your application (e.g. `/login?login_challenge=abcde`).
52
52
/// * [organization] - An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.
53
53
/// * [via] - Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.
54
-
/// * [identitySchema] - An optional identity schema to use for the registration flow.
54
+
/// * [identitySchema] - An optional identity schema to use for the login flow.
55
55
/// * [cancelToken] - A [CancelToken] that can be used to cancel the operation
56
56
/// * [headers] - Can be used to add additional headers to the request
57
57
/// * [extras] - Can be used to add flags to the request
@@ -643,7 +643,7 @@ class FrontendApi {
643
643
/// * [returnTo] - The URL to return the browser to after the flow was completed.
644
644
/// * [organization] - An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.
645
645
/// * [via] - Via should contain the identity's credential the code should be sent to. Only relevant in aal2 flows. DEPRECATED: This field is deprecated. Please remove it from your requests. The user will now see a choice of MFA credentials to choose from to perform the second factor instead.
646
-
/// * [identitySchema] - An optional identity schema to use for the registration flow.
646
+
/// * [identitySchema] - An optional identity schema to use for the login flow.
647
647
/// * [cancelToken] - A [CancelToken] that can be used to cancel the operation
648
648
/// * [headers] - Can be used to add additional headers to the request
649
649
/// * [extras] - Can be used to add flags to the request
0 commit comments