Latest generation

This commit is contained in:
ci core model
2026-03-03 09:54:49 +00:00
parent 39d2cd2f04
commit bea4648f6b
6 changed files with 57 additions and 42 deletions

View File

@@ -6277,6 +6277,7 @@ class EntityDefinition extends $pb.GeneratedMessage {
$core.Iterable<$core.String>? kpiGroups,
$core.int? modelVersion,
$core.Iterable<$core.String>? dashboardViewsAnalysis,
$core.bool? hasSegmentationKeys,
}) {
final result = create();
if (name != null) result.name = name;
@@ -6288,6 +6289,7 @@ class EntityDefinition extends $pb.GeneratedMessage {
if (kpiGroups != null) result.kpiGroups.addAll(kpiGroups);
if (modelVersion != null) result.modelVersion = modelVersion;
if (dashboardViewsAnalysis != null) result.dashboardViewsAnalysis.addAll(dashboardViewsAnalysis);
if (hasSegmentationKeys != null) result.hasSegmentationKeys = hasSegmentationKeys;
return result;
}
@@ -6306,6 +6308,7 @@ class EntityDefinition extends $pb.GeneratedMessage {
..pPS(7, _omitFieldNames ? '' : 'KpiGroups', protoName: 'KpiGroups')
..a<$core.int>(8, _omitFieldNames ? '' : 'ModelVersion', $pb.PbFieldType.OU3, protoName: 'ModelVersion')
..pPS(9, _omitFieldNames ? '' : 'DashboardViewsAnalysis', protoName: 'DashboardViewsAnalysis')
..aOB(10, _omitFieldNames ? '' : 'HasSegmentationKeys', protoName: 'HasSegmentationKeys')
..hasRequiredFields = false
;
@@ -6388,6 +6391,15 @@ class EntityDefinition extends $pb.GeneratedMessage {
@$pb.TagNumber(9)
$pb.PbList<$core.String> get dashboardViewsAnalysis => $_getList(8);
@$pb.TagNumber(10)
$core.bool get hasSegmentationKeys => $_getBF(9);
@$pb.TagNumber(10)
set hasSegmentationKeys($core.bool value) => $_setBool(9, value);
@$pb.TagNumber(10)
$core.bool hasHasSegmentationKeys() => $_has(9);
@$pb.TagNumber(10)
void clearHasSegmentationKeys() => $_clearField(10);
}
class CrossFindQuery extends $pb.GeneratedMessage {