You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -19,6 +19,10 @@ import type { CreateOnSiteResponse } from "./calendar";
|
||||
import type { CreateOnSiteRequest } from "./calendar";
|
||||
import type { ComputeSLAPeriodResponse } from "./calendar";
|
||||
import type { ComputeSLAPeriodOnOrganisationRequest } from "./calendar";
|
||||
import type { DeleteAllForProjectResponse } from "./calendar";
|
||||
import type { DeleteAllForProjectRequest } from "./calendar";
|
||||
import type { DeleteAllForOrganisationResponse } from "./calendar";
|
||||
import type { DeleteAllForOrganisationRequest } from "./calendar";
|
||||
import type { DeleteOnOrganisationResponse } from "./calendar";
|
||||
import type { DeleteOnOrganisationRequest } from "./calendar";
|
||||
import type { UpdateOnOrganisationResponse } from "./calendar";
|
||||
@@ -56,6 +60,14 @@ export interface ICalendarServiceClient {
|
||||
* @generated from protobuf rpc: DeleteOnOrganisation
|
||||
*/
|
||||
deleteOnOrganisation(input: DeleteOnOrganisationRequest, options?: RpcOptions): UnaryCall<DeleteOnOrganisationRequest, DeleteOnOrganisationResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteAllForOrganisation
|
||||
*/
|
||||
deleteAllForOrganisation(input: DeleteAllForOrganisationRequest, options?: RpcOptions): UnaryCall<DeleteAllForOrganisationRequest, DeleteAllForOrganisationResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteAllForProject
|
||||
*/
|
||||
deleteAllForProject(input: DeleteAllForProjectRequest, options?: RpcOptions): UnaryCall<DeleteAllForProjectRequest, DeleteAllForProjectResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ComputeSLAPeriodOnOrganisation
|
||||
*/
|
||||
@@ -133,60 +145,74 @@ export class CalendarServiceClient implements ICalendarServiceClient, ServiceInf
|
||||
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeleteOnOrganisationRequest, DeleteOnOrganisationResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteAllForOrganisation
|
||||
*/
|
||||
deleteAllForOrganisation(input: DeleteAllForOrganisationRequest, options?: RpcOptions): UnaryCall<DeleteAllForOrganisationRequest, DeleteAllForOrganisationResponse> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeleteAllForOrganisationRequest, DeleteAllForOrganisationResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteAllForProject
|
||||
*/
|
||||
deleteAllForProject(input: DeleteAllForProjectRequest, options?: RpcOptions): UnaryCall<DeleteAllForProjectRequest, DeleteAllForProjectResponse> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeleteAllForProjectRequest, DeleteAllForProjectResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ComputeSLAPeriodOnOrganisation
|
||||
*/
|
||||
computeSLAPeriodOnOrganisation(input: ComputeSLAPeriodOnOrganisationRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnOrganisationRequest, ComputeSLAPeriodResponse> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ComputeSLAPeriodOnOrganisationRequest, ComputeSLAPeriodResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CreateOnSite
|
||||
*/
|
||||
createOnSite(input: CreateOnSiteRequest, options?: RpcOptions): UnaryCall<CreateOnSiteRequest, CreateOnSiteResponse> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CreateOnSiteRequest, CreateOnSiteResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetOnSite
|
||||
*/
|
||||
getOnSite(input: GetOnSiteRequest, options?: RpcOptions): UnaryCall<GetOnSiteRequest, GetOnSiteResponse> {
|
||||
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetOnSiteRequest, GetOnSiteResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListOnSite
|
||||
*/
|
||||
listOnSite(input: ListOnSiteRequest, options?: RpcOptions): UnaryCall<ListOnSiteRequest, ListOnSiteResponse> {
|
||||
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[10], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListOnSiteRequest, ListOnSiteResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: UpdateOnSite
|
||||
*/
|
||||
updateOnSite(input: UpdateOnSiteRequest, options?: RpcOptions): UnaryCall<UpdateOnSiteRequest, UpdateOnSiteResponse> {
|
||||
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdateOnSiteRequest, UpdateOnSiteResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteOnSite
|
||||
*/
|
||||
deleteOnSite(input: DeleteOnSiteRequest, options?: RpcOptions): UnaryCall<DeleteOnSiteRequest, DeleteOnSiteResponse> {
|
||||
const method = this.methods[10], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeleteOnSiteRequest, DeleteOnSiteResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetPublicHolidays
|
||||
*/
|
||||
getPublicHolidays(input: GetPublicHolidaysRequest, options?: RpcOptions): UnaryCall<GetPublicHolidaysRequest, GetPublicHolidaysResponse> {
|
||||
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[13], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetPublicHolidaysRequest, GetPublicHolidaysResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ComputeSLAPeriodOnSite
|
||||
*/
|
||||
computeSLAPeriodOnSite(input: ComputeSLAPeriodOnSiteRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnSiteRequest, ComputeSLAPeriodResponse> {
|
||||
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ComputeSLAPeriodOnSiteRequest, ComputeSLAPeriodResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user