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: docs/CreateProjectNormalizedPayload.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,6 +110,10 @@ Name | Type | Description | Notes
110
110
**kratos_courier_templates_registration_code_valid_email_body_plaintext** | Option<**String**> | Configures the Ory Kratos Valid Registration via Code Email Body Plaintext Template This governs the \"courier.templates.registration_code.valid.email.body.plaintext\" setting. | [optional]
111
111
**kratos_courier_templates_registration_code_valid_email_subject** | Option<**String**> | Configures the Ory Kratos Valid Registration via Code Email Subject Template This governs the \"courier.templates.registration_code.valid.email.subject\" setting. | [optional]
112
112
**kratos_courier_templates_registration_code_valid_sms_body_plaintext** | Option<**String**> | Configures the Ory Kratos Valid Registration via Code SMS Body Plaintext Template This governs the \"courier.templates.registration_code.valid.sms.body.plaintext\" setting. | [optional]
113
+
**kratos_courier_templates_verifiable_address_changed_email_body_html** | Option<**String**> | Configures the Ory Kratos Verifiable Address Changed Email Body HTML Template This governs the \"courier.templates.verifiable_address_changed.email.body.html\" setting. | [optional]
114
+
**kratos_courier_templates_verifiable_address_changed_email_body_plaintext** | Option<**String**> | Configures the Ory Kratos Verifiable Address Changed Email Body Plaintext Template This governs the \"courier.templates.verifiable_address_changed.email.body.plaintext\" setting. | [optional]
115
+
**kratos_courier_templates_verifiable_address_changed_email_subject** | Option<**String**> | Configures the Ory Kratos Verifiable Address Changed Email Subject Template This governs the \"courier.templates.verifiable_address_changed.email.subject\" setting. | [optional]
116
+
**kratos_courier_templates_verifiable_address_changed_sms_body_plaintext** | Option<**String**> | Configures the Ory Kratos Verifiable Address Changed SMS Body Plaintext Template This governs the \"courier.templates.verifiable_address_changed.sms.body.plaintext\" setting. | [optional]
113
117
**kratos_courier_templates_verification_code_invalid_email_body_html** | Option<**String**> | Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template This governs the \"courier.templates.verification_code.invalid.email.body.html\" setting. | [optional]
114
118
**kratos_courier_templates_verification_code_invalid_email_body_plaintext** | Option<**String**> | Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template This governs the \"courier.templates.verification_code.invalid.email.body.plaintext\" setting. | [optional]
115
119
**kratos_courier_templates_verification_code_invalid_email_subject** | Option<**String**> | Configures the Ory Kratos Invalid Verification via Code Email Subject Template This governs the \"courier.templates.verification_code.invalid.email.subject\" setting. | [optional]
@@ -207,6 +211,7 @@ Name | Type | Description | Notes
207
211
**kratos_selfservice_methods_code_mfa_enabled** | Option<**bool**> | Configures whether the code method can be used to fulfil MFA flows This governs the \"selfservice.methods.code.mfa_enabled\" setting. | [optional]
208
212
**kratos_selfservice_methods_code_passwordless_enabled** | Option<**bool**> | Configures whether Ory Kratos Passwordless should use the Code Method This governs the \"selfservice.methods.code.passwordless_enabled\" setting. | [optional]
209
213
**kratos_selfservice_methods_code_passwordless_login_fallback_enabled** | Option<**bool**> | This setting allows the code method to always login a user with code if they have registered with another authentication method such as password or social sign in. This governs the \"selfservice.methods.code.passwordless_login_fallback_enabled\" setting. | [optional]
214
+
**kratos_selfservice_methods_deviceauthn_config_insecure_allow_relaxed_attestation** | Option<**bool**> | Configures whether Ory Kratos Device authentication accepts relaxed attestations for testing Only allowed on development projects and forced off otherwise. Keys enrolled under relaxation are short-lived and refused once this is turned off. This governs the \"selfservice.methods.deviceauthn.config.insecure_allow_relaxed_attestation\" setting. | [optional]
210
215
**kratos_selfservice_methods_deviceauthn_enabled** | Option<**bool**> | Configures whether Ory Kratos Device authentication is enabled This governs the \"selfservice.methods.deviceauthn.enabled\" setting. | [optional]
211
216
**kratos_selfservice_methods_link_config_base_url** | Option<**String**> | Configures the Base URL which Recovery, Verification, and Login Links Point to It is recommended to leave this value empty. It will be appropriately configured to the best matching domain (e.g. when using custom domains) automatically. This governs the \"selfservice.methods.link.config.base_url\" setting. | [optional]
212
217
**kratos_selfservice_methods_link_config_lifespan** | Option<**String**> | Configures the Ory Kratos Link Method's lifespan This governs the \"selfservice.methods.link.config.lifespan\" setting. | [optional]
Copy file name to clipboardExpand all lines: docs/DeviceAuthnKey.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
**device_name** | Option<**String**> | DeviceName is a human readable name for the device, helping the user to distinguish it from others. | [optional]
**public_key** | Option<**Vec<i32>**> | PublicKey is an EC (in v1) public key, used to verify signatures, stored as uncompressed bytes. The private key resides inside the device and does not exist on the server. | [optional]
13
+
**relaxed_attestation_expires_at** | Option<**String**> | RelaxedAttestationExpiresAt is set only when the key's attestation chain validated because relaxed attestation was allowed (software roots, expired certs, software security level) rather than under strict rules. Such keys are second-class: they are refused at login after this time, or immediately if relaxed attestation is turned off. It is nil for hardware-attested keys that pass strict validation. | [optional]
13
14
**state** | Option<**String**> | | [optional]
14
15
**version** | Option<**i64**> | v1 uses SHA256 + EC256. v2 (in the future) may use ML-DSA which is post-quantum resistant. This requires Android/iOS support so we have to wait. We intentionally avoid storing the cryptographic algorithm here a la JWT/TLS to avoid security issues and algorithm negotiation. | [optional]
0 commit comments