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.14.0-SNAPSHOT-260527120402",
|
||||
"version": "1.14.0-SNAPSHOT-260527120717",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
18
site.ts
18
site.ts
@@ -1363,9 +1363,9 @@ export interface SiteBookingContext {
|
||||
*/
|
||||
LanguageCode: string;
|
||||
/**
|
||||
* @generated from protobuf field: bool isSiteStandAlone = 12
|
||||
* @generated from protobuf field: bool IsSiteStandAlone = 12
|
||||
*/
|
||||
isSiteStandAlone: boolean;
|
||||
IsSiteStandAlone: boolean;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.SiteProjectBookingContext
|
||||
@@ -5261,7 +5261,7 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
|
||||
{ no: 9, name: "PrefixAppointmentID", kind: "scalar", localName: "PrefixAppointmentID", jsonName: "PrefixAppointmentID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 10, name: "RoundedPeriodInMinutes", kind: "scalar", localName: "RoundedPeriodInMinutes", jsonName: "RoundedPeriodInMinutes", T: 13 /*ScalarType.UINT32*/ },
|
||||
{ no: 11, name: "LanguageCode", kind: "scalar", localName: "LanguageCode", jsonName: "LanguageCode", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 12, name: "isSiteStandAlone", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }
|
||||
{ no: 12, name: "IsSiteStandAlone", kind: "scalar", localName: "IsSiteStandAlone", jsonName: "IsSiteStandAlone", T: 8 /*ScalarType.BOOL*/ }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<SiteBookingContext>): SiteBookingContext {
|
||||
@@ -5276,7 +5276,7 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
|
||||
message.PrefixAppointmentID = "";
|
||||
message.RoundedPeriodInMinutes = 0;
|
||||
message.LanguageCode = "";
|
||||
message.isSiteStandAlone = false;
|
||||
message.IsSiteStandAlone = false;
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<SiteBookingContext>(this, message, value);
|
||||
return message;
|
||||
@@ -5319,8 +5319,8 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
|
||||
case /* string LanguageCode */ 11:
|
||||
message.LanguageCode = reader.string();
|
||||
break;
|
||||
case /* bool isSiteStandAlone */ 12:
|
||||
message.isSiteStandAlone = reader.bool();
|
||||
case /* bool IsSiteStandAlone */ 12:
|
||||
message.IsSiteStandAlone = reader.bool();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
@@ -5367,9 +5367,9 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
|
||||
/* string LanguageCode = 11; */
|
||||
if (message.LanguageCode !== "")
|
||||
writer.tag(11, WireType.LengthDelimited).string(message.LanguageCode);
|
||||
/* bool isSiteStandAlone = 12; */
|
||||
if (message.isSiteStandAlone !== false)
|
||||
writer.tag(12, WireType.Varint).bool(message.isSiteStandAlone);
|
||||
/* bool IsSiteStandAlone = 12; */
|
||||
if (message.IsSiteStandAlone !== false)
|
||||
writer.tag(12, WireType.Varint).bool(message.IsSiteStandAlone);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user