You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -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",
|
||||
|
||||
18
shared.ts
18
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<EntityDefinition> {
|
||||
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<EntityDefinition> {
|
||||
create(value?: PartialMessage<EntityDefinition>): 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<EntityDefinition> {
|
||||
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<EntityDefinition> {
|
||||
/* 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);
|
||||
|
||||
Reference in New Issue
Block a user