Latest generation

This commit is contained in:
ci core model
2026-03-04 09:02:29 +00:00
parent 0fbf72435a
commit a1b099b5b8
2 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@reflex-platform/npm-core-sdk", "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", "description": "npm libs from core model proto files",
"homepage": "", "homepage": "",
"main": "index.ts", "main": "index.ts",

View File

@@ -1973,9 +1973,9 @@ export interface EntityDefinition {
*/ */
Name: string; 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 * @generated from protobuf field: api.Domain Domain = 3
*/ */
@@ -8473,7 +8473,7 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
constructor() { constructor() {
super("api.EntityDefinition", [ super("api.EntityDefinition", [
{ no: 1, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/ }, { 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: 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: 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*/ }, { no: 5, name: "HasMetadata", kind: "scalar", localName: "HasMetadata", jsonName: "HasMetadata", T: 8 /*ScalarType.BOOL*/ },
@@ -8490,7 +8490,7 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
create(value?: PartialMessage<EntityDefinition>): EntityDefinition { create(value?: PartialMessage<EntityDefinition>): EntityDefinition {
const message = globalThis.Object.create((this.messagePrototype!)); const message = globalThis.Object.create((this.messagePrototype!));
message.Name = ""; message.Name = "";
message.EntityType = 0; message.Type = 0;
message.Domain = 0; message.Domain = 0;
message.ProjectTypes = []; message.ProjectTypes = [];
message.HasMetadata = false; message.HasMetadata = false;
@@ -8514,8 +8514,8 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
case /* string Name */ 1: case /* string Name */ 1:
message.Name = reader.string(); message.Name = reader.string();
break; break;
case /* api.EntityType EntityType */ 2: case /* api.EntityType Type */ 2:
message.EntityType = reader.int32(); message.Type = reader.int32();
break; break;
case /* api.Domain Domain */ 3: case /* api.Domain Domain */ 3:
message.Domain = reader.int32(); message.Domain = reader.int32();
@@ -8569,9 +8569,9 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
/* string Name = 1; */ /* string Name = 1; */
if (message.Name !== "") if (message.Name !== "")
writer.tag(1, WireType.LengthDelimited).string(message.Name); writer.tag(1, WireType.LengthDelimited).string(message.Name);
/* api.EntityType EntityType = 2; */ /* api.EntityType Type = 2; */
if (message.EntityType !== 0) if (message.Type !== 0)
writer.tag(2, WireType.Varint).int32(message.EntityType); writer.tag(2, WireType.Varint).int32(message.Type);
/* api.Domain Domain = 3; */ /* api.Domain Domain = 3; */
if (message.Domain !== 0) if (message.Domain !== 0)
writer.tag(3, WireType.Varint).int32(message.Domain); writer.tag(3, WireType.Varint).int32(message.Domain);