From a1b099b5b88e39c53c9c3e3a21da3da28a19a977 Mon Sep 17 00:00:00 2001 From: ci core model Date: Wed, 4 Mar 2026 09:02:29 +0000 Subject: [PATCH] Latest generation --- package.json | 2 +- shared.ts | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index d1d585f..f42d7d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.13.0-SNAPSHOT-260304083214", + "version": "1.13.0-SNAPSHOT-260304090136", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts", diff --git a/shared.ts b/shared.ts index b6a3137..f51ae56 100644 --- a/shared.ts +++ b/shared.ts @@ -1973,9 +1973,9 @@ export interface EntityDefinition { */ Name: string; /** - * @generated from protobuf field: api.EntityType EntityType = 2 + * @generated from protobuf field: api.EntityType Type = 2 */ - EntityType: EntityType; + Type: EntityType; /** * @generated from protobuf field: api.Domain Domain = 3 */ @@ -8473,7 +8473,7 @@ class EntityDefinition$Type extends MessageType { constructor() { super("api.EntityDefinition", [ { no: 1, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/ }, - { no: 2, name: "EntityType", kind: "enum", localName: "EntityType", jsonName: "EntityType", T: () => ["api.EntityType", EntityType] }, + { no: 2, name: "Type", kind: "enum", localName: "Type", jsonName: "Type", T: () => ["api.EntityType", EntityType] }, { no: 3, name: "Domain", kind: "enum", localName: "Domain", jsonName: "Domain", T: () => ["api.Domain", Domain] }, { no: 4, name: "ProjectTypes", kind: "enum", localName: "ProjectTypes", jsonName: "ProjectTypes", repeat: 1 /*RepeatType.PACKED*/, T: () => ["api.ProjectType", ProjectType] }, { no: 5, name: "HasMetadata", kind: "scalar", localName: "HasMetadata", jsonName: "HasMetadata", T: 8 /*ScalarType.BOOL*/ }, @@ -8490,7 +8490,7 @@ class EntityDefinition$Type extends MessageType { create(value?: PartialMessage): EntityDefinition { const message = globalThis.Object.create((this.messagePrototype!)); message.Name = ""; - message.EntityType = 0; + message.Type = 0; message.Domain = 0; message.ProjectTypes = []; message.HasMetadata = false; @@ -8514,8 +8514,8 @@ class EntityDefinition$Type extends MessageType { case /* string Name */ 1: message.Name = reader.string(); break; - case /* api.EntityType EntityType */ 2: - message.EntityType = reader.int32(); + case /* api.EntityType Type */ 2: + message.Type = reader.int32(); break; case /* api.Domain Domain */ 3: message.Domain = reader.int32(); @@ -8569,9 +8569,9 @@ class EntityDefinition$Type extends MessageType { /* string Name = 1; */ if (message.Name !== "") writer.tag(1, WireType.LengthDelimited).string(message.Name); - /* api.EntityType EntityType = 2; */ - if (message.EntityType !== 0) - writer.tag(2, WireType.Varint).int32(message.EntityType); + /* api.EntityType Type = 2; */ + if (message.Type !== 0) + writer.tag(2, WireType.Varint).int32(message.Type); /* api.Domain Domain = 3; */ if (message.Domain !== 0) writer.tag(3, WireType.Varint).int32(message.Domain);