Latest generation

This commit is contained in:
ci core model
2025-07-03 12:56:04 +00:00
parent 08e8eb6ba3
commit b02aaa320c
11 changed files with 528 additions and 7 deletions

View File

@@ -153,6 +153,7 @@ class WorkflowTypeEnum extends $pb.ProtobufEnum {
static const WorkflowTypeEnum ANONYMIZE_DATA = WorkflowTypeEnum._(26, _omitEnumNames ? '' : 'ANONYMIZE_DATA');
static const WorkflowTypeEnum UPGRADE_MODEL = WorkflowTypeEnum._(27, _omitEnumNames ? '' : 'UPGRADE_MODEL');
static const WorkflowTypeEnum SWEEP = WorkflowTypeEnum._(28, _omitEnumNames ? '' : 'SWEEP');
static const WorkflowTypeEnum DELETE_SITE = WorkflowTypeEnum._(29, _omitEnumNames ? '' : 'DELETE_SITE');
static const $core.List<WorkflowTypeEnum> values = <WorkflowTypeEnum> [
CREATE_PROJECT,
@@ -184,9 +185,10 @@ class WorkflowTypeEnum extends $pb.ProtobufEnum {
ANONYMIZE_DATA,
UPGRADE_MODEL,
SWEEP,
DELETE_SITE,
];
static final $core.List<WorkflowTypeEnum?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 28);
static final $core.List<WorkflowTypeEnum?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 29);
static WorkflowTypeEnum? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
const WorkflowTypeEnum._(super.value, super.name);