You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@reflex-platform/npm-core-sdk",
|
"name": "@reflex-platform/npm-core-sdk",
|
||||||
"version": "1.14.0-SNAPSHOT-260519125441",
|
"version": "1.14.0-SNAPSHOT-260519133359",
|
||||||
"description": "npm libs from core model proto files",
|
"description": "npm libs from core model proto files",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"main": "index.ts",
|
"main": "index.ts",
|
||||||
|
|||||||
14
site.ts
14
site.ts
@@ -1358,6 +1358,10 @@ export interface SiteBookingContext {
|
|||||||
* @generated from protobuf field: uint32 RoundedPeriodInMinutes = 10
|
* @generated from protobuf field: uint32 RoundedPeriodInMinutes = 10
|
||||||
*/
|
*/
|
||||||
RoundedPeriodInMinutes: number;
|
RoundedPeriodInMinutes: number;
|
||||||
|
/**
|
||||||
|
* @generated from protobuf field: string LanguageCode = 11
|
||||||
|
*/
|
||||||
|
LanguageCode: string;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf message api.SiteProjectBookingContext
|
* @generated from protobuf message api.SiteProjectBookingContext
|
||||||
@@ -5241,7 +5245,8 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
|
|||||||
{ no: 7, name: "Emails", kind: "scalar", localName: "Emails", jsonName: "Emails", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
|
{ no: 7, name: "Emails", kind: "scalar", localName: "Emails", jsonName: "Emails", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
|
||||||
{ no: 8, name: "PhotoURI", kind: "scalar", localName: "PhotoURI", jsonName: "PhotoURI", T: 9 /*ScalarType.STRING*/ },
|
{ no: 8, name: "PhotoURI", kind: "scalar", localName: "PhotoURI", jsonName: "PhotoURI", T: 9 /*ScalarType.STRING*/ },
|
||||||
{ no: 9, name: "PrefixAppointmentID", kind: "scalar", localName: "PrefixAppointmentID", jsonName: "PrefixAppointmentID", T: 9 /*ScalarType.STRING*/ },
|
{ 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: 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*/ }
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<SiteBookingContext>): SiteBookingContext {
|
create(value?: PartialMessage<SiteBookingContext>): SiteBookingContext {
|
||||||
@@ -5255,6 +5260,7 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
|
|||||||
message.PhotoURI = "";
|
message.PhotoURI = "";
|
||||||
message.PrefixAppointmentID = "";
|
message.PrefixAppointmentID = "";
|
||||||
message.RoundedPeriodInMinutes = 0;
|
message.RoundedPeriodInMinutes = 0;
|
||||||
|
message.LanguageCode = "";
|
||||||
if (value !== undefined)
|
if (value !== undefined)
|
||||||
reflectionMergePartial<SiteBookingContext>(this, message, value);
|
reflectionMergePartial<SiteBookingContext>(this, message, value);
|
||||||
return message;
|
return message;
|
||||||
@@ -5294,6 +5300,9 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
|
|||||||
case /* uint32 RoundedPeriodInMinutes */ 10:
|
case /* uint32 RoundedPeriodInMinutes */ 10:
|
||||||
message.RoundedPeriodInMinutes = reader.uint32();
|
message.RoundedPeriodInMinutes = reader.uint32();
|
||||||
break;
|
break;
|
||||||
|
case /* string LanguageCode */ 11:
|
||||||
|
message.LanguageCode = reader.string();
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
if (u === "throw")
|
if (u === "throw")
|
||||||
@@ -5336,6 +5345,9 @@ class SiteBookingContext$Type extends MessageType<SiteBookingContext> {
|
|||||||
/* uint32 RoundedPeriodInMinutes = 10; */
|
/* uint32 RoundedPeriodInMinutes = 10; */
|
||||||
if (message.RoundedPeriodInMinutes !== 0)
|
if (message.RoundedPeriodInMinutes !== 0)
|
||||||
writer.tag(10, WireType.Varint).uint32(message.RoundedPeriodInMinutes);
|
writer.tag(10, WireType.Varint).uint32(message.RoundedPeriodInMinutes);
|
||||||
|
/* string LanguageCode = 11; */
|
||||||
|
if (message.LanguageCode !== "")
|
||||||
|
writer.tag(11, WireType.LengthDelimited).string(message.LanguageCode);
|
||||||
let u = options.writeUnknownFields;
|
let u = options.writeUnknownFields;
|
||||||
if (u !== false)
|
if (u !== false)
|
||||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||||
|
|||||||
Reference in New Issue
Block a user