Latest generation

This commit is contained in:
ci core model
2025-10-09 08:20:53 +00:00
parent 22a062138b
commit 1b3099d9a1
4 changed files with 8 additions and 4 deletions

View File

@@ -272,6 +272,7 @@ class EntityType extends $pb.ProtobufEnum {
static const EntityType ENTITY_TYPE_MOVEMENT = EntityType._(11, _omitEnumNames ? '' : 'ENTITY_TYPE_MOVEMENT');
/// Collab
static const EntityType ENTITY_TYPE_CLAIM = EntityType._(10, _omitEnumNames ? '' : 'ENTITY_TYPE_CLAIM');
static const EntityType ENTITY_TYPE_APPOINTMENT = EntityType._(12, _omitEnumNames ? '' : 'ENTITY_TYPE_APPOINTMENT');
static const $core.List<EntityType> values = <EntityType> [
ENTITY_TYPE_UNKNOWN,
@@ -286,9 +287,10 @@ class EntityType extends $pb.ProtobufEnum {
ENTITY_TYPE_TRACKING,
ENTITY_TYPE_MOVEMENT,
ENTITY_TYPE_CLAIM,
ENTITY_TYPE_APPOINTMENT,
];
static final $core.List<EntityType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 11);
static final $core.List<EntityType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 12);
static EntityType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
const EntityType._(super.value, super.name);