Latest generation

This commit is contained in:
ci core model
2025-07-23 13:53:05 +00:00
parent 40a1975692
commit e0e780702c
3 changed files with 578 additions and 6 deletions

View File

@@ -8,8 +8,12 @@ import type { DeleteSiteInDBResult } from "./site";
import type { DeleteSiteInDBRequest } from "./site";
import type { UpdateSiteStatusResult } from "./site";
import type { UpdateSiteStatusRequest } from "./site";
import type { ModifyAppointmentDateResponse } from "./site";
import type { ModifyAppointmentDateRequest } from "./site";
import type { CancelAppointmentResponse } from "./site";
import type { CancelAppointmentRequest } from "./site";
import type { WMSBookAppointmentNoReferenceRequest } from "./site";
import type { BookAppointmentNoReferenceRequest } from "./site";
import type { WMSBookAppointmentRequest } from "./site";
import type { BookAppointmentResponse } from "./site";
import type { BookAppointmentRequest } from "./site";
@@ -109,10 +113,26 @@ export interface ISiteServiceClient {
* @generated from protobuf rpc: WMSForceBookAppointment
*/
wMSForceBookAppointment(input: WMSBookAppointmentRequest, options?: RpcOptions): UnaryCall<WMSBookAppointmentRequest, BookAppointmentResponse>;
/**
* @generated from protobuf rpc: BookAppointmentNoReference
*/
bookAppointmentNoReference(input: BookAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<BookAppointmentNoReferenceRequest, BookAppointmentResponse>;
/**
* @generated from protobuf rpc: ForceBookAppointmentNoReference
*/
forceBookAppointmentNoReference(input: BookAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<BookAppointmentNoReferenceRequest, BookAppointmentResponse>;
/**
* @generated from protobuf rpc: WMSForceBookAppointmentNoReference
*/
wMSForceBookAppointmentNoReference(input: WMSBookAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<WMSBookAppointmentNoReferenceRequest, BookAppointmentResponse>;
/**
* @generated from protobuf rpc: CancelAppointment
*/
cancelAppointment(input: CancelAppointmentRequest, options?: RpcOptions): UnaryCall<CancelAppointmentRequest, CancelAppointmentResponse>;
/**
* @generated from protobuf rpc: ModifyAppointmentDate
*/
modifyAppointmentDate(input: ModifyAppointmentDateRequest, options?: RpcOptions): UnaryCall<ModifyAppointmentDateRequest, ModifyAppointmentDateResponse>;
/**
* @generated from protobuf rpc: UpdateStatus
*/
@@ -243,25 +263,53 @@ export class SiteServiceClient implements ISiteServiceClient, ServiceInfo {
const method = this.methods[15], opt = this._transport.mergeOptions(options);
return stackIntercept<WMSBookAppointmentRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: BookAppointmentNoReference
*/
bookAppointmentNoReference(input: BookAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<BookAppointmentNoReferenceRequest, BookAppointmentResponse> {
const method = this.methods[16], opt = this._transport.mergeOptions(options);
return stackIntercept<BookAppointmentNoReferenceRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: ForceBookAppointmentNoReference
*/
forceBookAppointmentNoReference(input: BookAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<BookAppointmentNoReferenceRequest, BookAppointmentResponse> {
const method = this.methods[17], opt = this._transport.mergeOptions(options);
return stackIntercept<BookAppointmentNoReferenceRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: WMSForceBookAppointmentNoReference
*/
wMSForceBookAppointmentNoReference(input: WMSBookAppointmentNoReferenceRequest, options?: RpcOptions): UnaryCall<WMSBookAppointmentNoReferenceRequest, BookAppointmentResponse> {
const method = this.methods[18], opt = this._transport.mergeOptions(options);
return stackIntercept<WMSBookAppointmentNoReferenceRequest, BookAppointmentResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CancelAppointment
*/
cancelAppointment(input: CancelAppointmentRequest, options?: RpcOptions): UnaryCall<CancelAppointmentRequest, CancelAppointmentResponse> {
const method = this.methods[16], opt = this._transport.mergeOptions(options);
const method = this.methods[19], opt = this._transport.mergeOptions(options);
return stackIntercept<CancelAppointmentRequest, CancelAppointmentResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: ModifyAppointmentDate
*/
modifyAppointmentDate(input: ModifyAppointmentDateRequest, options?: RpcOptions): UnaryCall<ModifyAppointmentDateRequest, ModifyAppointmentDateResponse> {
const method = this.methods[20], opt = this._transport.mergeOptions(options);
return stackIntercept<ModifyAppointmentDateRequest, ModifyAppointmentDateResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: UpdateStatus
*/
updateStatus(input: UpdateSiteStatusRequest, options?: RpcOptions): UnaryCall<UpdateSiteStatusRequest, UpdateSiteStatusResult> {
const method = this.methods[17], opt = this._transport.mergeOptions(options);
const method = this.methods[21], opt = this._transport.mergeOptions(options);
return stackIntercept<UpdateSiteStatusRequest, UpdateSiteStatusResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DeleteSiteInDB
*/
deleteSiteInDB(input: DeleteSiteInDBRequest, options?: RpcOptions): UnaryCall<DeleteSiteInDBRequest, DeleteSiteInDBResult> {
const method = this.methods[18], opt = this._transport.mergeOptions(options);
const method = this.methods[22], opt = this._transport.mergeOptions(options);
return stackIntercept<DeleteSiteInDBRequest, DeleteSiteInDBResult>("unary", this._transport, method, opt, input);
}
}