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.12.0-SNAPSHOT-251013094515",
|
||||
"version": "1.12.0-SNAPSHOT-251013131115",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
14
proj.ts
14
proj.ts
@@ -323,6 +323,10 @@ export interface IDName {
|
||||
* @generated from protobuf field: string PartnerID = 4
|
||||
*/
|
||||
PartnerID: string;
|
||||
/**
|
||||
* @generated from protobuf field: string DefaultLanguageISO6391 = 5
|
||||
*/
|
||||
DefaultLanguageISO6391: string;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.MyContext
|
||||
@@ -1583,7 +1587,8 @@ class IDName$Type extends MessageType<IDName> {
|
||||
{ no: 1, name: "ID", kind: "scalar", localName: "ID", jsonName: "ID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 2, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/ },
|
||||
{ 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: 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*/ }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<IDName>): IDName {
|
||||
@@ -1592,6 +1597,7 @@ class IDName$Type extends MessageType<IDName> {
|
||||
message.Name = "";
|
||||
message.IsDisplayed = false;
|
||||
message.PartnerID = "";
|
||||
message.DefaultLanguageISO6391 = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<IDName>(this, message, value);
|
||||
return message;
|
||||
@@ -1613,6 +1619,9 @@ class IDName$Type extends MessageType<IDName> {
|
||||
case /* string PartnerID */ 4:
|
||||
message.PartnerID = reader.string();
|
||||
break;
|
||||
case /* string DefaultLanguageISO6391 */ 5:
|
||||
message.DefaultLanguageISO6391 = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -1637,6 +1646,9 @@ class IDName$Type extends MessageType<IDName> {
|
||||
/* string PartnerID = 4; */
|
||||
if (message.PartnerID !== "")
|
||||
writer.tag(4, WireType.LengthDelimited).string(message.PartnerID);
|
||||
/* string DefaultLanguageISO6391 = 5; */
|
||||
if (message.DefaultLanguageISO6391 !== "")
|
||||
writer.tag(5, WireType.LengthDelimited).string(message.DefaultLanguageISO6391);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user