diff --git a/docs/AuthenticatorSMSStage.md b/docs/AuthenticatorSMSStage.md index 2f20539..3e087a2 100644 --- a/docs/AuthenticatorSMSStage.md +++ b/docs/AuthenticatorSMSStage.md @@ -19,7 +19,7 @@ Name | Type | Description | Notes **friendlyName** | **kotlin.String** | | [optional] **authPassword** | **kotlin.String** | | [optional] **authType** | [**AuthTypeEnum**](AuthTypeEnum.md) | | [optional] -**verifyOnly** | **kotlin.Boolean** | When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. | [optional] +**verifyOnly** | **kotlin.Boolean** | When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. | [optional] **mapping** | [**java.util.UUID**](java.util.UUID.md) | Optionally modify the payload being sent to custom providers. | [optional] diff --git a/docs/AuthenticatorSMSStageRequest.md b/docs/AuthenticatorSMSStageRequest.md index 706dad4..e938c8f 100644 --- a/docs/AuthenticatorSMSStageRequest.md +++ b/docs/AuthenticatorSMSStageRequest.md @@ -14,7 +14,7 @@ Name | Type | Description | Notes **friendlyName** | **kotlin.String** | | [optional] **authPassword** | **kotlin.String** | | [optional] **authType** | [**AuthTypeEnum**](AuthTypeEnum.md) | | [optional] -**verifyOnly** | **kotlin.Boolean** | When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. | [optional] +**verifyOnly** | **kotlin.Boolean** | When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. | [optional] **mapping** | [**java.util.UUID**](java.util.UUID.md) | Optionally modify the payload being sent to custom providers. | [optional] diff --git a/docs/PatchedAuthenticatorSMSStageRequest.md b/docs/PatchedAuthenticatorSMSStageRequest.md index 34e5e72..53324ed 100644 --- a/docs/PatchedAuthenticatorSMSStageRequest.md +++ b/docs/PatchedAuthenticatorSMSStageRequest.md @@ -14,7 +14,7 @@ Name | Type | Description | Notes **auth** | **kotlin.String** | | [optional] **authPassword** | **kotlin.String** | | [optional] **authType** | [**AuthTypeEnum**](AuthTypeEnum.md) | | [optional] -**verifyOnly** | **kotlin.Boolean** | When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. | [optional] +**verifyOnly** | **kotlin.Boolean** | When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. | [optional] **mapping** | [**java.util.UUID**](java.util.UUID.md) | Optionally modify the payload being sent to custom providers. | [optional] diff --git a/schema.yml b/schema.yml index 616397b..5b682a7 100644 --- a/schema.yml +++ b/schema.yml @@ -27436,7 +27436,7 @@ components: type: boolean description: When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved - to ensure it is not re-used in the future. + to ensure it is not reused in the future. mapping: type: string format: uuid @@ -27493,7 +27493,7 @@ components: type: boolean description: When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved - to ensure it is not re-used in the future. + to ensure it is not reused in the future. mapping: type: string format: uuid @@ -34530,7 +34530,7 @@ components: type: boolean description: When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved - to ensure it is not re-used in the future. + to ensure it is not reused in the future. mapping: type: string format: uuid diff --git a/src/main/kotlin/io/goauthentik/api/models/AuthenticatorSMSStage.kt b/src/main/kotlin/io/goauthentik/api/models/AuthenticatorSMSStage.kt index 16fcf84..01b4072 100644 --- a/src/main/kotlin/io/goauthentik/api/models/AuthenticatorSMSStage.kt +++ b/src/main/kotlin/io/goauthentik/api/models/AuthenticatorSMSStage.kt @@ -44,7 +44,7 @@ import com.squareup.moshi.Json * @param friendlyName * @param authPassword * @param authType - * @param verifyOnly When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. + * @param verifyOnly When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. * @param mapping Optionally modify the payload being sent to custom providers. */ @@ -100,7 +100,7 @@ data class AuthenticatorSMSStage ( @Json(name = "auth_type") val authType: AuthTypeEnum? = null, - /* When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. */ + /* When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. */ @Json(name = "verify_only") val verifyOnly: kotlin.Boolean? = null, diff --git a/src/main/kotlin/io/goauthentik/api/models/AuthenticatorSMSStageRequest.kt b/src/main/kotlin/io/goauthentik/api/models/AuthenticatorSMSStageRequest.kt index cc5a38f..4e9837c 100644 --- a/src/main/kotlin/io/goauthentik/api/models/AuthenticatorSMSStageRequest.kt +++ b/src/main/kotlin/io/goauthentik/api/models/AuthenticatorSMSStageRequest.kt @@ -39,7 +39,7 @@ import com.squareup.moshi.Json * @param friendlyName * @param authPassword * @param authType - * @param verifyOnly When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. + * @param verifyOnly When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. * @param mapping Optionally modify the payload being sent to custom providers. */ @@ -76,7 +76,7 @@ data class AuthenticatorSMSStageRequest ( @Json(name = "auth_type") val authType: AuthTypeEnum? = null, - /* When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. */ + /* When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. */ @Json(name = "verify_only") val verifyOnly: kotlin.Boolean? = null, diff --git a/src/main/kotlin/io/goauthentik/api/models/PatchedAuthenticatorSMSStageRequest.kt b/src/main/kotlin/io/goauthentik/api/models/PatchedAuthenticatorSMSStageRequest.kt index d315f21..4c3d544 100644 --- a/src/main/kotlin/io/goauthentik/api/models/PatchedAuthenticatorSMSStageRequest.kt +++ b/src/main/kotlin/io/goauthentik/api/models/PatchedAuthenticatorSMSStageRequest.kt @@ -39,7 +39,7 @@ import com.squareup.moshi.Json * @param auth * @param authPassword * @param authType - * @param verifyOnly When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. + * @param verifyOnly When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. * @param mapping Optionally modify the payload being sent to custom providers. */ @@ -76,7 +76,7 @@ data class PatchedAuthenticatorSMSStageRequest ( @Json(name = "auth_type") val authType: AuthTypeEnum? = null, - /* When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not re-used in the future. */ + /* When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. */ @Json(name = "verify_only") val verifyOnly: kotlin.Boolean? = null,