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-260303095402",
|
||||
"version": "1.13.0-SNAPSHOT-260303105902",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
26
shared.ts
26
shared.ts
@@ -2008,6 +2008,14 @@ export interface EntityDefinition {
|
||||
* @generated from protobuf field: bool HasSegmentationKeys = 10
|
||||
*/
|
||||
HasSegmentationKeys: boolean;
|
||||
/**
|
||||
* @generated from protobuf field: bool HasTransitiveMetadata = 11
|
||||
*/
|
||||
HasTransitiveMetadata: boolean;
|
||||
/**
|
||||
* @generated from protobuf field: bool HasTransitiveSegmentationKeys = 12
|
||||
*/
|
||||
HasTransitiveSegmentationKeys: boolean;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.CrossFindQuery
|
||||
@@ -8469,7 +8477,9 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
|
||||
{ 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: "DashboardViewsAnalysis", kind: "scalar", localName: "DashboardViewsAnalysis", jsonName: "DashboardViewsAnalysis", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 10, name: "HasSegmentationKeys", kind: "scalar", localName: "HasSegmentationKeys", jsonName: "HasSegmentationKeys", T: 8 /*ScalarType.BOOL*/ }
|
||||
{ no: 10, name: "HasSegmentationKeys", kind: "scalar", localName: "HasSegmentationKeys", jsonName: "HasSegmentationKeys", T: 8 /*ScalarType.BOOL*/ },
|
||||
{ no: 11, name: "HasTransitiveMetadata", kind: "scalar", localName: "HasTransitiveMetadata", jsonName: "HasTransitiveMetadata", T: 8 /*ScalarType.BOOL*/ },
|
||||
{ no: 12, name: "HasTransitiveSegmentationKeys", kind: "scalar", localName: "HasTransitiveSegmentationKeys", jsonName: "HasTransitiveSegmentationKeys", T: 8 /*ScalarType.BOOL*/ }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<EntityDefinition>): EntityDefinition {
|
||||
@@ -8484,6 +8494,8 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
|
||||
message.ModelVersion = 0;
|
||||
message.DashboardViewsAnalysis = [];
|
||||
message.HasSegmentationKeys = false;
|
||||
message.HasTransitiveMetadata = false;
|
||||
message.HasTransitiveSegmentationKeys = false;
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<EntityDefinition>(this, message, value);
|
||||
return message;
|
||||
@@ -8527,6 +8539,12 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
|
||||
case /* bool HasSegmentationKeys */ 10:
|
||||
message.HasSegmentationKeys = reader.bool();
|
||||
break;
|
||||
case /* bool HasTransitiveMetadata */ 11:
|
||||
message.HasTransitiveMetadata = reader.bool();
|
||||
break;
|
||||
case /* bool HasTransitiveSegmentationKeys */ 12:
|
||||
message.HasTransitiveSegmentationKeys = reader.bool();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -8573,6 +8591,12 @@ class EntityDefinition$Type extends MessageType<EntityDefinition> {
|
||||
/* bool HasSegmentationKeys = 10; */
|
||||
if (message.HasSegmentationKeys !== false)
|
||||
writer.tag(10, WireType.Varint).bool(message.HasSegmentationKeys);
|
||||
/* bool HasTransitiveMetadata = 11; */
|
||||
if (message.HasTransitiveMetadata !== false)
|
||||
writer.tag(11, WireType.Varint).bool(message.HasTransitiveMetadata);
|
||||
/* bool HasTransitiveSegmentationKeys = 12; */
|
||||
if (message.HasTransitiveSegmentationKeys !== false)
|
||||
writer.tag(12, WireType.Varint).bool(message.HasTransitiveSegmentationKeys);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user