Latest generation

This commit is contained in:
ci core model
2026-03-02 11:10:56 +00:00
parent 840cc1ede8
commit be665caeb9
2 changed files with 14 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@reflex-platform/npm-core-sdk",
"version": "1.13.0-SNAPSHOT-260302091806",
"version": "1.13.0-SNAPSHOT-260302111011",
"description": "npm libs from core model proto files",
"homepage": "",
"main": "index.ts",

View File

@@ -2000,6 +2000,10 @@ export interface EntityDefinition {
* @generated from protobuf field: uint32 ModelVersion = 8
*/
ModelVersion: number;
/**
* @generated from protobuf field: repeated string DashboardViewsAnalysis = 9
*/
DashboardViewsAnalysis: string[];
}
/**
* @generated from protobuf message api.CrossFindQuery
@@ -8459,7 +8463,8 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
{ no: 5, name: "HasDataRestriction", kind: "scalar", localName: "HasDataRestriction", jsonName: "HasDataRestriction", T: 8 /*ScalarType.BOOL*/ },
{ no: 6, name: "IsIndexed", kind: "scalar", localName: "IsIndexed", jsonName: "IsIndexed", T: 8 /*ScalarType.BOOL*/ },
{ no: 7, name: "KpiGroups", kind: "scalar", localName: "KpiGroups", jsonName: "KpiGroups", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 8, name: "ModelVersion", kind: "scalar", localName: "ModelVersion", jsonName: "ModelVersion", T: 13 /*ScalarType.UINT32*/ }
{ no: 8, name: "ModelVersion", kind: "scalar", localName: "ModelVersion", jsonName: "ModelVersion", T: 13 /*ScalarType.UINT32*/ },
{ no: 9, name: "DashboardViewsAnalysis", kind: "scalar", localName: "DashboardViewsAnalysis", jsonName: "DashboardViewsAnalysis", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ }
]);
}
create(value?: PartialMessage<EntityDefinition>): EntityDefinition {
@@ -8472,6 +8477,7 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
message.IsIndexed = false;
message.KpiGroups = [];
message.ModelVersion = 0;
message.DashboardViewsAnalysis = [];
if (value !== undefined)
reflectionMergePartial<EntityDefinition>(this, message, value);
return message;
@@ -8509,6 +8515,9 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
case /* uint32 ModelVersion */ 8:
message.ModelVersion = reader.uint32();
break;
case /* repeated string DashboardViewsAnalysis */ 9:
message.DashboardViewsAnalysis.push(reader.string());
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -8549,6 +8558,9 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
/* uint32 ModelVersion = 8; */
if (message.ModelVersion !== 0)
writer.tag(8, WireType.Varint).uint32(message.ModelVersion);
/* repeated string DashboardViewsAnalysis = 9; */
for (let i = 0; i < message.DashboardViewsAnalysis.length; i++)
writer.tag(9, WireType.LengthDelimited).string(message.DashboardViewsAnalysis[i]);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);