Latest generation

This commit is contained in:
ci core model
2025-10-23 11:46:12 +00:00
parent f0804f4e65
commit cbe11094c6
2 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@reflex-platform/npm-core-sdk",
"version": "1.12.0-SNAPSHOT-251023114258",
"version": "1.12.0-SNAPSHOT-251023114526",
"description": "npm libs from core model proto files",
"homepage": "",
"main": "index.ts",

18
proj.ts
View File

@@ -328,9 +328,9 @@ export interface IDName {
*/
DefaultLanguageISO6391: string;
/**
* @generated from protobuf field: api.ProjectType Type = 6
* @generated from protobuf field: api.ProjectType ProjectType = 6
*/
Type: ProjectType;
ProjectType: ProjectType;
}
/**
* @generated from protobuf message api.MyContext
@@ -1589,7 +1589,7 @@ class IDName$Type extends MessageType<IDName> {
{ no: 3, name: "IsDisplayed", kind: "scalar", localName: "IsDisplayed", jsonName: "IsDisplayed", T: 8 /*ScalarType.BOOL*/ },
{ no: 4, name: "PartnerID", kind: "scalar", localName: "PartnerID", jsonName: "PartnerID", T: 9 /*ScalarType.STRING*/ },
{ no: 5, name: "DefaultLanguageISO6391", kind: "scalar", localName: "DefaultLanguageISO6391", jsonName: "DefaultLanguageISO6391", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "Type", kind: "enum", localName: "Type", jsonName: "Type", T: () => ["api.ProjectType", ProjectType] }
{ no: 6, name: "ProjectType", kind: "enum", localName: "ProjectType", jsonName: "ProjectType", T: () => ["api.ProjectType", ProjectType] }
]);
}
create(value?: PartialMessage<IDName>): IDName {
@@ -1599,7 +1599,7 @@ class IDName$Type extends MessageType<IDName> {
message.IsDisplayed = false;
message.PartnerID = "";
message.DefaultLanguageISO6391 = "";
message.Type = 0;
message.ProjectType = 0;
if (value !== undefined)
reflectionMergePartial<IDName>(this, message, value);
return message;
@@ -1624,8 +1624,8 @@ class IDName$Type extends MessageType<IDName> {
case /* string DefaultLanguageISO6391 */ 5:
message.DefaultLanguageISO6391 = reader.string();
break;
case /* api.ProjectType Type */ 6:
message.Type = reader.int32();
case /* api.ProjectType ProjectType */ 6:
message.ProjectType = reader.int32();
break;
default:
let u = options.readUnknownField;
@@ -1654,9 +1654,9 @@ class IDName$Type extends MessageType<IDName> {
/* string DefaultLanguageISO6391 = 5; */
if (message.DefaultLanguageISO6391 !== "")
writer.tag(5, WireType.LengthDelimited).string(message.DefaultLanguageISO6391);
/* api.ProjectType Type = 6; */
if (message.Type !== 0)
writer.tag(6, WireType.Varint).int32(message.Type);
/* api.ProjectType ProjectType = 6; */
if (message.ProjectType !== 0)
writer.tag(6, WireType.Varint).int32(message.ProjectType);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);