Latest generation

This commit is contained in:
ci core model
2025-11-24 15:07:22 +00:00
parent db49f71d99
commit a461458c94
4 changed files with 32 additions and 4 deletions

View File

@@ -280,12 +280,14 @@ class EnrollUserRequest extends $pb.GeneratedMessage {
$core.String? mail,
$core.String? locale,
$core.bool? forceTwoFA,
$core.bool? loginThroughOTP,
}) {
final result = create();
if (header != null) result.header = header;
if (mail != null) result.mail = mail;
if (locale != null) result.locale = locale;
if (forceTwoFA != null) result.forceTwoFA = forceTwoFA;
if (loginThroughOTP != null) result.loginThroughOTP = loginThroughOTP;
return result;
}
@@ -299,6 +301,7 @@ class EnrollUserRequest extends $pb.GeneratedMessage {
..aOS(2, _omitFieldNames ? '' : 'Mail', protoName: 'Mail')
..aOS(3, _omitFieldNames ? '' : 'locale')
..aOB(4, _omitFieldNames ? '' : 'ForceTwoFA', protoName: 'ForceTwoFA')
..aOB(5, _omitFieldNames ? '' : 'LoginThroughOTP', protoName: 'LoginThroughOTP')
..hasRequiredFields = false
;
@@ -359,6 +362,15 @@ class EnrollUserRequest extends $pb.GeneratedMessage {
$core.bool hasForceTwoFA() => $_has(3);
@$pb.TagNumber(4)
void clearForceTwoFA() => $_clearField(4);
@$pb.TagNumber(5)
$core.bool get loginThroughOTP => $_getBF(4);
@$pb.TagNumber(5)
set loginThroughOTP($core.bool value) => $_setBool(4, value);
@$pb.TagNumber(5)
$core.bool hasLoginThroughOTP() => $_has(4);
@$pb.TagNumber(5)
void clearLoginThroughOTP() => $_clearField(5);
}
class SendVerificationMailRequest extends $pb.GeneratedMessage {
@@ -3486,12 +3498,14 @@ class EnrollUserWithoutMailRequest extends $pb.GeneratedMessage {
$core.String? mail,
$core.String? locale,
$core.bool? forceTwoFA,
$core.bool? loginThroughOTP,
}) {
final result = create();
if (header != null) result.header = header;
if (mail != null) result.mail = mail;
if (locale != null) result.locale = locale;
if (forceTwoFA != null) result.forceTwoFA = forceTwoFA;
if (loginThroughOTP != null) result.loginThroughOTP = loginThroughOTP;
return result;
}
@@ -3505,6 +3519,7 @@ class EnrollUserWithoutMailRequest extends $pb.GeneratedMessage {
..aOS(2, _omitFieldNames ? '' : 'Mail', protoName: 'Mail')
..aOS(3, _omitFieldNames ? '' : 'locale')
..aOB(4, _omitFieldNames ? '' : 'ForceTwoFA', protoName: 'ForceTwoFA')
..aOB(5, _omitFieldNames ? '' : 'LoginThroughOTP', protoName: 'LoginThroughOTP')
..hasRequiredFields = false
;
@@ -3565,6 +3580,15 @@ class EnrollUserWithoutMailRequest extends $pb.GeneratedMessage {
$core.bool hasForceTwoFA() => $_has(3);
@$pb.TagNumber(4)
void clearForceTwoFA() => $_clearField(4);
@$pb.TagNumber(5)
$core.bool get loginThroughOTP => $_getBF(4);
@$pb.TagNumber(5)
set loginThroughOTP($core.bool value) => $_setBool(4, value);
@$pb.TagNumber(5)
$core.bool hasLoginThroughOTP() => $_has(4);
@$pb.TagNumber(5)
void clearLoginThroughOTP() => $_clearField(5);
}
class EnrollUserWithoutMailResult extends $pb.GeneratedMessage {