Latest generation

This commit is contained in:
ci core model
2026-02-24 08:18:15 +00:00
parent 77862eeecd
commit 679db86e70
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-260224075400",
"version": "1.13.0-SNAPSHOT-260224081728",
"description": "npm libs from core model proto files",
"homepage": "",
"main": "index.ts",

View File

@@ -2004,6 +2004,10 @@ export interface EntityDefinition {
* @generated from protobuf field: string DomainString = 9
*/
DomainString: string;
/**
* @generated from protobuf field: string NameString = 10
*/
NameString: string;
}
/**
* @generated from protobuf message api.CrossFineQuery
@@ -8527,7 +8531,8 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
{ 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: 9, name: "DomainString", kind: "scalar", localName: "DomainString", jsonName: "DomainString", T: 9 /*ScalarType.STRING*/ }
{ no: 9, name: "DomainString", kind: "scalar", localName: "DomainString", jsonName: "DomainString", T: 9 /*ScalarType.STRING*/ },
{ no: 10, name: "NameString", kind: "scalar", localName: "NameString", jsonName: "NameString", T: 9 /*ScalarType.STRING*/ }
]);
}
create(value?: PartialMessage<EntityDefinition>): EntityDefinition {
@@ -8541,6 +8546,7 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
message.KpiGroups = [];
message.ModelVersion = 0;
message.DomainString = "";
message.NameString = "";
if (value !== undefined)
reflectionMergePartial<EntityDefinition>(this, message, value);
return message;
@@ -8581,6 +8587,9 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
case /* string DomainString */ 9:
message.DomainString = reader.string();
break;
case /* string NameString */ 10:
message.NameString = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -8624,6 +8633,9 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
/* string DomainString = 9; */
if (message.DomainString !== "")
writer.tag(9, WireType.LengthDelimited).string(message.DomainString);
/* string NameString = 10; */
if (message.NameString !== "")
writer.tag(10, WireType.LengthDelimited).string(message.NameString);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);