From e12e521b05fe73596f09e24a28feef304bfeabfb Mon Sep 17 00:00:00 2001 From: ci core model Date: Mon, 16 Mar 2026 10:02:58 +0000 Subject: [PATCH] Latest generation --- package.json | 2 +- proj.ts | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 81f65e2..fd409fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.13.0-SNAPSHOT-260313164536", + "version": "1.13.0-SNAPSHOT-260316100224", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts", diff --git a/proj.ts b/proj.ts index aadfb1f..359b2ef 100644 --- a/proj.ts +++ b/proj.ts @@ -126,6 +126,10 @@ export interface ListAllProjectRequest { * @generated from protobuf field: api.ProjectType Type = 2 */ Type: ProjectType; + /** + * @generated from protobuf field: bool SkipModules = 3 + */ + SkipModules: boolean; // For optimization, if the caller does not need the modules information of projects, it can set SkipModules to true to skip loading modules when listing all projects. } /** * @generated from protobuf message api.ListAllProjectResultElement @@ -790,13 +794,15 @@ class ListAllProjectRequest$Type extends MessageType { constructor() { super("api.ListAllProjectRequest", [ { no: 1, name: "ShowInactiveProjects", kind: "scalar", localName: "ShowInactiveProjects", jsonName: "ShowInactiveProjects", T: 8 /*ScalarType.BOOL*/ }, - { no: 2, name: "Type", kind: "enum", localName: "Type", jsonName: "Type", T: () => ["api.ProjectType", ProjectType], options: { "validate.rules": { enum: { definedOnly: true } } } } + { no: 2, name: "Type", kind: "enum", localName: "Type", jsonName: "Type", T: () => ["api.ProjectType", ProjectType], options: { "validate.rules": { enum: { definedOnly: true } } } }, + { no: 3, name: "SkipModules", kind: "scalar", localName: "SkipModules", jsonName: "SkipModules", T: 8 /*ScalarType.BOOL*/ } ]); } create(value?: PartialMessage): ListAllProjectRequest { const message = globalThis.Object.create((this.messagePrototype!)); message.ShowInactiveProjects = false; message.Type = 0; + message.SkipModules = false; if (value !== undefined) reflectionMergePartial(this, message, value); return message; @@ -812,6 +818,9 @@ class ListAllProjectRequest$Type extends MessageType { case /* api.ProjectType Type */ 2: message.Type = reader.int32(); break; + case /* bool SkipModules */ 3: + message.SkipModules = reader.bool(); + break; default: let u = options.readUnknownField; if (u === "throw") @@ -830,6 +839,9 @@ class ListAllProjectRequest$Type extends MessageType { /* api.ProjectType Type = 2; */ if (message.Type !== 0) writer.tag(2, WireType.Varint).int32(message.Type); + /* bool SkipModules = 3; */ + if (message.SkipModules !== false) + writer.tag(3, WireType.Varint).bool(message.SkipModules); let u = options.writeUnknownFields; if (u !== false) (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);