You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -26,8 +26,8 @@ import type { AppointmentCarrierExpectedResponse } from "./appointmentInput";
|
|||||||
import type { AppointmentCarrierExpectedRequest } from "./appointmentInput";
|
import type { AppointmentCarrierExpectedRequest } from "./appointmentInput";
|
||||||
import type { AppointmentCarrierInformationUpdatedResponse } from "./appointmentInput";
|
import type { AppointmentCarrierInformationUpdatedResponse } from "./appointmentInput";
|
||||||
import type { AppointmentCarrierInformationUpdatedRequest } from "./appointmentInput";
|
import type { AppointmentCarrierInformationUpdatedRequest } from "./appointmentInput";
|
||||||
import type { AppointmentDateModificationResponse } from "./appointmentInput";
|
import type { AppointmentDateUpdatedResponse } from "./appointmentInput";
|
||||||
import type { AppointmentDateModificationRequest } from "./appointmentInput";
|
import type { AppointmentDateUpdatedRequest } from "./appointmentInput";
|
||||||
import type { AppointmentCanceledResponse } from "./appointmentInput";
|
import type { AppointmentCanceledResponse } from "./appointmentInput";
|
||||||
import type { AppointmentCanceledRequest } from "./appointmentInput";
|
import type { AppointmentCanceledRequest } from "./appointmentInput";
|
||||||
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
||||||
@@ -217,9 +217,9 @@ export interface IAppointmentInputAPIClient {
|
|||||||
*/
|
*/
|
||||||
canceled(input: AppointmentCanceledRequest, options?: RpcOptions): UnaryCall<AppointmentCanceledRequest, AppointmentCanceledResponse>;
|
canceled(input: AppointmentCanceledRequest, options?: RpcOptions): UnaryCall<AppointmentCanceledRequest, AppointmentCanceledResponse>;
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf rpc: DateModification
|
* @generated from protobuf rpc: DateUpdated
|
||||||
*/
|
*/
|
||||||
dateModification(input: AppointmentDateModificationRequest, options?: RpcOptions): UnaryCall<AppointmentDateModificationRequest, AppointmentDateModificationResponse>;
|
dateUpdated(input: AppointmentDateUpdatedRequest, options?: RpcOptions): UnaryCall<AppointmentDateUpdatedRequest, AppointmentDateUpdatedResponse>;
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf rpc: CarrierInformationUpdated
|
* @generated from protobuf rpc: CarrierInformationUpdated
|
||||||
*/
|
*/
|
||||||
@@ -458,11 +458,11 @@ export class AppointmentInputAPIClient implements IAppointmentInputAPIClient, Se
|
|||||||
return stackIntercept<AppointmentCanceledRequest, AppointmentCanceledResponse>("unary", this._transport, method, opt, input);
|
return stackIntercept<AppointmentCanceledRequest, AppointmentCanceledResponse>("unary", this._transport, method, opt, input);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf rpc: DateModification
|
* @generated from protobuf rpc: DateUpdated
|
||||||
*/
|
*/
|
||||||
dateModification(input: AppointmentDateModificationRequest, options?: RpcOptions): UnaryCall<AppointmentDateModificationRequest, AppointmentDateModificationResponse> {
|
dateUpdated(input: AppointmentDateUpdatedRequest, options?: RpcOptions): UnaryCall<AppointmentDateUpdatedRequest, AppointmentDateUpdatedResponse> {
|
||||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||||
return stackIntercept<AppointmentDateModificationRequest, AppointmentDateModificationResponse>("unary", this._transport, method, opt, input);
|
return stackIntercept<AppointmentDateUpdatedRequest, AppointmentDateUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf rpc: CarrierInformationUpdated
|
* @generated from protobuf rpc: CarrierInformationUpdated
|
||||||
|
|||||||
@@ -201,14 +201,14 @@ export interface AppointmentCanceledResponse {
|
|||||||
ID?: EntityID;
|
ID?: EntityID;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// DateModification : this message tells that appointment date has been modified
|
// DateUpdated : this message tells that appointment date has been modified
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event Payload
|
* Event Payload
|
||||||
*
|
*
|
||||||
* @generated from protobuf message api.AppointmentDateModificationPayload
|
* @generated from protobuf message api.AppointmentDateUpdatedPayload
|
||||||
*/
|
*/
|
||||||
export interface AppointmentDateModificationPayload {
|
export interface AppointmentDateUpdatedPayload {
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf field: api.Slot Slot = 6
|
* @generated from protobuf field: api.Slot Slot = 6
|
||||||
*/
|
*/
|
||||||
@@ -217,9 +217,9 @@ export interface AppointmentDateModificationPayload {
|
|||||||
/**
|
/**
|
||||||
* Event message
|
* Event message
|
||||||
*
|
*
|
||||||
* @generated from protobuf message api.AppointmentDateModificationEvent
|
* @generated from protobuf message api.AppointmentDateUpdatedEvent
|
||||||
*/
|
*/
|
||||||
export interface AppointmentDateModificationEvent {
|
export interface AppointmentDateUpdatedEvent {
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf field: api.EventHeader Header = 1
|
* @generated from protobuf field: api.EventHeader Header = 1
|
||||||
*/
|
*/
|
||||||
@@ -229,16 +229,16 @@ export interface AppointmentDateModificationEvent {
|
|||||||
*/
|
*/
|
||||||
ID?: EntityID;
|
ID?: EntityID;
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf field: api.AppointmentDateModificationPayload Payload = 3
|
* @generated from protobuf field: api.AppointmentDateUpdatedPayload Payload = 3
|
||||||
*/
|
*/
|
||||||
Payload?: AppointmentDateModificationPayload;
|
Payload?: AppointmentDateUpdatedPayload;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* API Request
|
* API Request
|
||||||
*
|
*
|
||||||
* @generated from protobuf message api.AppointmentDateModificationRequest
|
* @generated from protobuf message api.AppointmentDateUpdatedRequest
|
||||||
*/
|
*/
|
||||||
export interface AppointmentDateModificationRequest {
|
export interface AppointmentDateUpdatedRequest {
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf field: api.RequestSiteHeader Header = 1
|
* @generated from protobuf field: api.RequestSiteHeader Header = 1
|
||||||
*/
|
*/
|
||||||
@@ -248,16 +248,16 @@ export interface AppointmentDateModificationRequest {
|
|||||||
*/
|
*/
|
||||||
ID?: EntityID;
|
ID?: EntityID;
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf field: api.AppointmentDateModificationPayload Payload = 3
|
* @generated from protobuf field: api.AppointmentDateUpdatedPayload Payload = 3
|
||||||
*/
|
*/
|
||||||
Payload?: AppointmentDateModificationPayload;
|
Payload?: AppointmentDateUpdatedPayload;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* API Response
|
* API Response
|
||||||
*
|
*
|
||||||
* @generated from protobuf message api.AppointmentDateModificationResponse
|
* @generated from protobuf message api.AppointmentDateUpdatedResponse
|
||||||
*/
|
*/
|
||||||
export interface AppointmentDateModificationResponse {
|
export interface AppointmentDateUpdatedResponse {
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf field: api.ResponseSiteHeader Header = 1
|
* @generated from protobuf field: api.ResponseSiteHeader Header = 1
|
||||||
*/
|
*/
|
||||||
@@ -1454,19 +1454,19 @@ class AppointmentCanceledResponse$Type extends MessageType<AppointmentCanceledRe
|
|||||||
*/
|
*/
|
||||||
export const AppointmentCanceledResponse = new AppointmentCanceledResponse$Type();
|
export const AppointmentCanceledResponse = new AppointmentCanceledResponse$Type();
|
||||||
// @generated message type with reflection information, may provide speed optimized methods
|
// @generated message type with reflection information, may provide speed optimized methods
|
||||||
class AppointmentDateModificationPayload$Type extends MessageType<AppointmentDateModificationPayload> {
|
class AppointmentDateUpdatedPayload$Type extends MessageType<AppointmentDateUpdatedPayload> {
|
||||||
constructor() {
|
constructor() {
|
||||||
super("api.AppointmentDateModificationPayload", [
|
super("api.AppointmentDateUpdatedPayload", [
|
||||||
{ no: 6, name: "Slot", kind: "message", localName: "Slot", jsonName: "Slot", T: () => Slot }
|
{ no: 6, name: "Slot", kind: "message", localName: "Slot", jsonName: "Slot", T: () => Slot }
|
||||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Event Payload" } }, "api.messageType": "Event", "api.payload": true, "api.inputEvent": "DateModification" });
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Event Payload" } }, "api.messageType": "Event", "api.payload": true, "api.inputEvent": "DateUpdated" });
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<AppointmentDateModificationPayload>): AppointmentDateModificationPayload {
|
create(value?: PartialMessage<AppointmentDateUpdatedPayload>): AppointmentDateUpdatedPayload {
|
||||||
const message = globalThis.Object.create((this.messagePrototype!));
|
const message = globalThis.Object.create((this.messagePrototype!));
|
||||||
if (value !== undefined)
|
if (value !== undefined)
|
||||||
reflectionMergePartial<AppointmentDateModificationPayload>(this, message, value);
|
reflectionMergePartial<AppointmentDateUpdatedPayload>(this, message, value);
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppointmentDateModificationPayload): AppointmentDateModificationPayload {
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppointmentDateUpdatedPayload): AppointmentDateUpdatedPayload {
|
||||||
let message = target ?? this.create(), end = reader.pos + length;
|
let message = target ?? this.create(), end = reader.pos + length;
|
||||||
while (reader.pos < end) {
|
while (reader.pos < end) {
|
||||||
let [fieldNo, wireType] = reader.tag();
|
let [fieldNo, wireType] = reader.tag();
|
||||||
@@ -1485,7 +1485,7 @@ class AppointmentDateModificationPayload$Type extends MessageType<AppointmentDat
|
|||||||
}
|
}
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryWrite(message: AppointmentDateModificationPayload, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
internalBinaryWrite(message: AppointmentDateUpdatedPayload, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||||
/* api.Slot Slot = 6; */
|
/* api.Slot Slot = 6; */
|
||||||
if (message.Slot)
|
if (message.Slot)
|
||||||
Slot.internalBinaryWrite(message.Slot, writer.tag(6, WireType.LengthDelimited).fork(), options).join();
|
Slot.internalBinaryWrite(message.Slot, writer.tag(6, WireType.LengthDelimited).fork(), options).join();
|
||||||
@@ -1496,25 +1496,25 @@ class AppointmentDateModificationPayload$Type extends MessageType<AppointmentDat
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated MessageType for protobuf message api.AppointmentDateModificationPayload
|
* @generated MessageType for protobuf message api.AppointmentDateUpdatedPayload
|
||||||
*/
|
*/
|
||||||
export const AppointmentDateModificationPayload = new AppointmentDateModificationPayload$Type();
|
export const AppointmentDateUpdatedPayload = new AppointmentDateUpdatedPayload$Type();
|
||||||
// @generated message type with reflection information, may provide speed optimized methods
|
// @generated message type with reflection information, may provide speed optimized methods
|
||||||
class AppointmentDateModificationEvent$Type extends MessageType<AppointmentDateModificationEvent> {
|
class AppointmentDateUpdatedEvent$Type extends MessageType<AppointmentDateUpdatedEvent> {
|
||||||
constructor() {
|
constructor() {
|
||||||
super("api.AppointmentDateModificationEvent", [
|
super("api.AppointmentDateUpdatedEvent", [
|
||||||
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => EventHeader, options: { "validate.rules": { message: { required: true } } } },
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => EventHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||||
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
||||||
{ no: 3, name: "Payload", kind: "message", localName: "Payload", jsonName: "Payload", T: () => AppointmentDateModificationPayload, options: { "validate.rules": { message: { required: true } } } }
|
{ no: 3, name: "Payload", kind: "message", localName: "Payload", jsonName: "Payload", T: () => AppointmentDateUpdatedPayload, options: { "validate.rules": { message: { required: true } } } }
|
||||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "ID", "Payload"] } }, "api.messageType": "Event", "api.inputEvent": "DateModification", "api.preAggMethods": "dateModification" });
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "ID", "Payload"] } }, "api.messageType": "Event", "api.inputEvent": "DateUpdated", "api.preAggMethods": "dateUpdated" });
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<AppointmentDateModificationEvent>): AppointmentDateModificationEvent {
|
create(value?: PartialMessage<AppointmentDateUpdatedEvent>): AppointmentDateUpdatedEvent {
|
||||||
const message = globalThis.Object.create((this.messagePrototype!));
|
const message = globalThis.Object.create((this.messagePrototype!));
|
||||||
if (value !== undefined)
|
if (value !== undefined)
|
||||||
reflectionMergePartial<AppointmentDateModificationEvent>(this, message, value);
|
reflectionMergePartial<AppointmentDateUpdatedEvent>(this, message, value);
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppointmentDateModificationEvent): AppointmentDateModificationEvent {
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppointmentDateUpdatedEvent): AppointmentDateUpdatedEvent {
|
||||||
let message = target ?? this.create(), end = reader.pos + length;
|
let message = target ?? this.create(), end = reader.pos + length;
|
||||||
while (reader.pos < end) {
|
while (reader.pos < end) {
|
||||||
let [fieldNo, wireType] = reader.tag();
|
let [fieldNo, wireType] = reader.tag();
|
||||||
@@ -1525,8 +1525,8 @@ class AppointmentDateModificationEvent$Type extends MessageType<AppointmentDateM
|
|||||||
case /* api.EntityID ID */ 2:
|
case /* api.EntityID ID */ 2:
|
||||||
message.ID = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
message.ID = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
||||||
break;
|
break;
|
||||||
case /* api.AppointmentDateModificationPayload Payload */ 3:
|
case /* api.AppointmentDateUpdatedPayload Payload */ 3:
|
||||||
message.Payload = AppointmentDateModificationPayload.internalBinaryRead(reader, reader.uint32(), options, message.Payload);
|
message.Payload = AppointmentDateUpdatedPayload.internalBinaryRead(reader, reader.uint32(), options, message.Payload);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
@@ -1539,16 +1539,16 @@ class AppointmentDateModificationEvent$Type extends MessageType<AppointmentDateM
|
|||||||
}
|
}
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryWrite(message: AppointmentDateModificationEvent, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
internalBinaryWrite(message: AppointmentDateUpdatedEvent, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||||
/* api.EventHeader Header = 1; */
|
/* api.EventHeader Header = 1; */
|
||||||
if (message.Header)
|
if (message.Header)
|
||||||
EventHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
EventHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||||
/* api.EntityID ID = 2; */
|
/* api.EntityID ID = 2; */
|
||||||
if (message.ID)
|
if (message.ID)
|
||||||
EntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
EntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||||
/* api.AppointmentDateModificationPayload Payload = 3; */
|
/* api.AppointmentDateUpdatedPayload Payload = 3; */
|
||||||
if (message.Payload)
|
if (message.Payload)
|
||||||
AppointmentDateModificationPayload.internalBinaryWrite(message.Payload, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
AppointmentDateUpdatedPayload.internalBinaryWrite(message.Payload, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
||||||
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);
|
||||||
@@ -1556,25 +1556,25 @@ class AppointmentDateModificationEvent$Type extends MessageType<AppointmentDateM
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated MessageType for protobuf message api.AppointmentDateModificationEvent
|
* @generated MessageType for protobuf message api.AppointmentDateUpdatedEvent
|
||||||
*/
|
*/
|
||||||
export const AppointmentDateModificationEvent = new AppointmentDateModificationEvent$Type();
|
export const AppointmentDateUpdatedEvent = new AppointmentDateUpdatedEvent$Type();
|
||||||
// @generated message type with reflection information, may provide speed optimized methods
|
// @generated message type with reflection information, may provide speed optimized methods
|
||||||
class AppointmentDateModificationRequest$Type extends MessageType<AppointmentDateModificationRequest> {
|
class AppointmentDateUpdatedRequest$Type extends MessageType<AppointmentDateUpdatedRequest> {
|
||||||
constructor() {
|
constructor() {
|
||||||
super("api.AppointmentDateModificationRequest", [
|
super("api.AppointmentDateUpdatedRequest", [
|
||||||
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestSiteHeader, options: { "validate.rules": { message: { required: true } } } },
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestSiteHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||||
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
||||||
{ no: 3, name: "Payload", kind: "message", localName: "Payload", jsonName: "Payload", T: () => AppointmentDateModificationPayload, options: { "validate.rules": { message: { required: true } } } }
|
{ no: 3, name: "Payload", kind: "message", localName: "Payload", jsonName: "Payload", T: () => AppointmentDateUpdatedPayload, options: { "validate.rules": { message: { required: true } } } }
|
||||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "ID", "Payload"] } }, "api.messageType": "Request", "api.inputEvent": "DateModification" });
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "ID", "Payload"] } }, "api.messageType": "Request", "api.inputEvent": "DateUpdated" });
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<AppointmentDateModificationRequest>): AppointmentDateModificationRequest {
|
create(value?: PartialMessage<AppointmentDateUpdatedRequest>): AppointmentDateUpdatedRequest {
|
||||||
const message = globalThis.Object.create((this.messagePrototype!));
|
const message = globalThis.Object.create((this.messagePrototype!));
|
||||||
if (value !== undefined)
|
if (value !== undefined)
|
||||||
reflectionMergePartial<AppointmentDateModificationRequest>(this, message, value);
|
reflectionMergePartial<AppointmentDateUpdatedRequest>(this, message, value);
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppointmentDateModificationRequest): AppointmentDateModificationRequest {
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppointmentDateUpdatedRequest): AppointmentDateUpdatedRequest {
|
||||||
let message = target ?? this.create(), end = reader.pos + length;
|
let message = target ?? this.create(), end = reader.pos + length;
|
||||||
while (reader.pos < end) {
|
while (reader.pos < end) {
|
||||||
let [fieldNo, wireType] = reader.tag();
|
let [fieldNo, wireType] = reader.tag();
|
||||||
@@ -1585,8 +1585,8 @@ class AppointmentDateModificationRequest$Type extends MessageType<AppointmentDat
|
|||||||
case /* api.EntityID ID */ 2:
|
case /* api.EntityID ID */ 2:
|
||||||
message.ID = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
message.ID = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
||||||
break;
|
break;
|
||||||
case /* api.AppointmentDateModificationPayload Payload */ 3:
|
case /* api.AppointmentDateUpdatedPayload Payload */ 3:
|
||||||
message.Payload = AppointmentDateModificationPayload.internalBinaryRead(reader, reader.uint32(), options, message.Payload);
|
message.Payload = AppointmentDateUpdatedPayload.internalBinaryRead(reader, reader.uint32(), options, message.Payload);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
@@ -1599,16 +1599,16 @@ class AppointmentDateModificationRequest$Type extends MessageType<AppointmentDat
|
|||||||
}
|
}
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryWrite(message: AppointmentDateModificationRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
internalBinaryWrite(message: AppointmentDateUpdatedRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||||
/* api.RequestSiteHeader Header = 1; */
|
/* api.RequestSiteHeader Header = 1; */
|
||||||
if (message.Header)
|
if (message.Header)
|
||||||
RequestSiteHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
RequestSiteHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||||
/* api.EntityID ID = 2; */
|
/* api.EntityID ID = 2; */
|
||||||
if (message.ID)
|
if (message.ID)
|
||||||
EntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
EntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||||
/* api.AppointmentDateModificationPayload Payload = 3; */
|
/* api.AppointmentDateUpdatedPayload Payload = 3; */
|
||||||
if (message.Payload)
|
if (message.Payload)
|
||||||
AppointmentDateModificationPayload.internalBinaryWrite(message.Payload, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
AppointmentDateUpdatedPayload.internalBinaryWrite(message.Payload, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
|
||||||
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);
|
||||||
@@ -1616,24 +1616,24 @@ class AppointmentDateModificationRequest$Type extends MessageType<AppointmentDat
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated MessageType for protobuf message api.AppointmentDateModificationRequest
|
* @generated MessageType for protobuf message api.AppointmentDateUpdatedRequest
|
||||||
*/
|
*/
|
||||||
export const AppointmentDateModificationRequest = new AppointmentDateModificationRequest$Type();
|
export const AppointmentDateUpdatedRequest = new AppointmentDateUpdatedRequest$Type();
|
||||||
// @generated message type with reflection information, may provide speed optimized methods
|
// @generated message type with reflection information, may provide speed optimized methods
|
||||||
class AppointmentDateModificationResponse$Type extends MessageType<AppointmentDateModificationResponse> {
|
class AppointmentDateUpdatedResponse$Type extends MessageType<AppointmentDateUpdatedResponse> {
|
||||||
constructor() {
|
constructor() {
|
||||||
super("api.AppointmentDateModificationResponse", [
|
super("api.AppointmentDateUpdatedResponse", [
|
||||||
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResponseSiteHeader },
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResponseSiteHeader },
|
||||||
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID }
|
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID }
|
||||||
], { "api.messageType": "Response", "api.inputEvent": "DateModification" });
|
], { "api.messageType": "Response", "api.inputEvent": "DateUpdated" });
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<AppointmentDateModificationResponse>): AppointmentDateModificationResponse {
|
create(value?: PartialMessage<AppointmentDateUpdatedResponse>): AppointmentDateUpdatedResponse {
|
||||||
const message = globalThis.Object.create((this.messagePrototype!));
|
const message = globalThis.Object.create((this.messagePrototype!));
|
||||||
if (value !== undefined)
|
if (value !== undefined)
|
||||||
reflectionMergePartial<AppointmentDateModificationResponse>(this, message, value);
|
reflectionMergePartial<AppointmentDateUpdatedResponse>(this, message, value);
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppointmentDateModificationResponse): AppointmentDateModificationResponse {
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppointmentDateUpdatedResponse): AppointmentDateUpdatedResponse {
|
||||||
let message = target ?? this.create(), end = reader.pos + length;
|
let message = target ?? this.create(), end = reader.pos + length;
|
||||||
while (reader.pos < end) {
|
while (reader.pos < end) {
|
||||||
let [fieldNo, wireType] = reader.tag();
|
let [fieldNo, wireType] = reader.tag();
|
||||||
@@ -1655,7 +1655,7 @@ class AppointmentDateModificationResponse$Type extends MessageType<AppointmentDa
|
|||||||
}
|
}
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryWrite(message: AppointmentDateModificationResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
internalBinaryWrite(message: AppointmentDateUpdatedResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||||
/* api.ResponseSiteHeader Header = 1; */
|
/* api.ResponseSiteHeader Header = 1; */
|
||||||
if (message.Header)
|
if (message.Header)
|
||||||
ResponseSiteHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
ResponseSiteHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||||
@@ -1669,9 +1669,9 @@ class AppointmentDateModificationResponse$Type extends MessageType<AppointmentDa
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated MessageType for protobuf message api.AppointmentDateModificationResponse
|
* @generated MessageType for protobuf message api.AppointmentDateUpdatedResponse
|
||||||
*/
|
*/
|
||||||
export const AppointmentDateModificationResponse = new AppointmentDateModificationResponse$Type();
|
export const AppointmentDateUpdatedResponse = new AppointmentDateUpdatedResponse$Type();
|
||||||
// @generated message type with reflection information, may provide speed optimized methods
|
// @generated message type with reflection information, may provide speed optimized methods
|
||||||
class AppointmentAttachmentAddedPayload$Type extends MessageType<AppointmentAttachmentAddedPayload> {
|
class AppointmentAttachmentAddedPayload$Type extends MessageType<AppointmentAttachmentAddedPayload> {
|
||||||
constructor() {
|
constructor() {
|
||||||
@@ -4035,7 +4035,7 @@ export const AppointmentMetaDataUpdatedResponse = new AppointmentMetaDataUpdated
|
|||||||
export const AppointmentInputAPI = new ServiceType("api.AppointmentInputAPI", [
|
export const AppointmentInputAPI = new ServiceType("api.AppointmentInputAPI", [
|
||||||
{ name: "Created", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "An appointment has been created." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCreatedRequest, O: AppointmentCreatedResponse },
|
{ name: "Created", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "An appointment has been created." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCreatedRequest, O: AppointmentCreatedResponse },
|
||||||
{ name: "Canceled", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "An appointment has been canceled." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCanceledRequest, O: AppointmentCanceledResponse },
|
{ name: "Canceled", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "An appointment has been canceled." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCanceledRequest, O: AppointmentCanceledResponse },
|
||||||
{ name: "DateModification", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "An appointment date has been modified." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentDateModificationRequest, O: AppointmentDateModificationResponse },
|
{ name: "DateUpdated", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "An appointment date has been modified." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentDateUpdatedRequest, O: AppointmentDateUpdatedResponse },
|
||||||
{ name: "CarrierInformationUpdated", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "An appointment carrier information have been updated." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCarrierInformationUpdatedRequest, O: AppointmentCarrierInformationUpdatedResponse },
|
{ name: "CarrierInformationUpdated", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "An appointment carrier information have been updated." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCarrierInformationUpdatedRequest, O: AppointmentCarrierInformationUpdatedResponse },
|
||||||
{ name: "CarrierExpected", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "The carrier is exopected for the appointment." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCarrierExpectedRequest, O: AppointmentCarrierExpectedResponse },
|
{ name: "CarrierExpected", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "The carrier is exopected for the appointment." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCarrierExpectedRequest, O: AppointmentCarrierExpectedResponse },
|
||||||
{ name: "CarrierArrived", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "The carrier is arrived for the appointment." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCarrierArrivedRequest, O: AppointmentCarrierArrivedResponse },
|
{ name: "CarrierArrived", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Inputs"], description: "The carrier is arrived for the appointment." }, "api.rscType": "Site", "api.roles": "Platform.Site-Input", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentCarrierArrivedRequest, O: AppointmentCarrierArrivedResponse },
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@reflex-platform/npm-core-sdk",
|
"name": "@reflex-platform/npm-core-sdk",
|
||||||
"version": "1.11.0-SNAPSHOT-250729074518",
|
"version": "1.11.0-SNAPSHOT-250729082710",
|
||||||
"description": "npm libs from core model proto files",
|
"description": "npm libs from core model proto files",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"main": "index.ts",
|
"main": "index.ts",
|
||||||
|
|||||||
Reference in New Issue
Block a user