As the title suggests, can we have two or more separate settings for the code generation? For example, we have forgot password flows and mfa flows, we won't want our forgot password attempts to counts towards our mfa signin flow attempts. I tried to create copies of the Technical Profiles that generates the codes, but they still count towards the same limit. The settings I am talking about are below
<Item Key="Operation">GenerateCode</Item>
<Item Key="CodeExpirationInSeconds">{Settings:OtpCodeExpirationInSeconds}</Item>
<Item Key="CodeLength">{Settings:OtpCodeLength}</Item>
<Item Key="CharacterSet">{Settings:OtpCharacterSet}</Item>
<Item Key="ReuseSameCode">{Settings:OtpReuseSameCode}</Item>
<Item Key="NumRetryAttempts">{Settings:OtpMaxRetryAttempts}</Item>
<Item Key="NumCodeGenerationAttempts">{Settings:OtpMaxCodeGenerationAttempts}</Item>