Latest generation

This commit is contained in:
ci core model
2025-09-16 12:36:34 +00:00
parent 2c1ccc77bc
commit cc9d606829
3 changed files with 20 additions and 89 deletions

View File

@@ -4,7 +4,6 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { CalendarService } from "./calendar";
import type { ComputeSLAPeriodOnSiteResponse } from "./calendar";
import type { ComputeSLAPeriodOnSiteRequest } from "./calendar";
import type { GetPublicHolidaysResponse } from "./calendar";
import type { GetPublicHolidaysRequest } from "./calendar";
@@ -18,7 +17,7 @@ import type { GetOnSiteResponse } from "./calendar";
import type { GetOnSiteRequest } from "./calendar";
import type { CreateOnSiteResponse } from "./calendar";
import type { CreateOnSiteRequest } from "./calendar";
import type { ComputeSLAPeriodOnOrganisationResponse } from "./calendar";
import type { ComputeSLAPeriodResponse } from "./calendar";
import type { ComputeSLAPeriodOnOrganisationRequest } from "./calendar";
import type { DeleteOnOrganisationResponse } from "./calendar";
import type { DeleteOnOrganisationRequest } from "./calendar";
@@ -60,7 +59,7 @@ export interface ICalendarServiceClient {
/**
* @generated from protobuf rpc: ComputeSLAPeriodOnOrganisation
*/
computeSLAPeriodOnOrganisation(input: ComputeSLAPeriodOnOrganisationRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnOrganisationRequest, ComputeSLAPeriodOnOrganisationResponse>;
computeSLAPeriodOnOrganisation(input: ComputeSLAPeriodOnOrganisationRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnOrganisationRequest, ComputeSLAPeriodResponse>;
/**
* @generated from protobuf rpc: CreateOnSite
*/
@@ -88,7 +87,7 @@ export interface ICalendarServiceClient {
/**
* @generated from protobuf rpc: ComputeSLAPeriodOnSite
*/
computeSLAPeriodOnSite(input: ComputeSLAPeriodOnSiteRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnSiteRequest, ComputeSLAPeriodOnSiteResponse>;
computeSLAPeriodOnSite(input: ComputeSLAPeriodOnSiteRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnSiteRequest, ComputeSLAPeriodResponse>;
}
/**
* @generated from protobuf service api.CalendarService
@@ -137,9 +136,9 @@ export class CalendarServiceClient implements ICalendarServiceClient, ServiceInf
/**
* @generated from protobuf rpc: ComputeSLAPeriodOnOrganisation
*/
computeSLAPeriodOnOrganisation(input: ComputeSLAPeriodOnOrganisationRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnOrganisationRequest, ComputeSLAPeriodOnOrganisationResponse> {
computeSLAPeriodOnOrganisation(input: ComputeSLAPeriodOnOrganisationRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnOrganisationRequest, ComputeSLAPeriodResponse> {
const method = this.methods[5], opt = this._transport.mergeOptions(options);
return stackIntercept<ComputeSLAPeriodOnOrganisationRequest, ComputeSLAPeriodOnOrganisationResponse>("unary", this._transport, method, opt, input);
return stackIntercept<ComputeSLAPeriodOnOrganisationRequest, ComputeSLAPeriodResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CreateOnSite
@@ -186,8 +185,8 @@ export class CalendarServiceClient implements ICalendarServiceClient, ServiceInf
/**
* @generated from protobuf rpc: ComputeSLAPeriodOnSite
*/
computeSLAPeriodOnSite(input: ComputeSLAPeriodOnSiteRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnSiteRequest, ComputeSLAPeriodOnSiteResponse> {
computeSLAPeriodOnSite(input: ComputeSLAPeriodOnSiteRequest, options?: RpcOptions): UnaryCall<ComputeSLAPeriodOnSiteRequest, ComputeSLAPeriodResponse> {
const method = this.methods[12], opt = this._transport.mergeOptions(options);
return stackIntercept<ComputeSLAPeriodOnSiteRequest, ComputeSLAPeriodOnSiteResponse>("unary", this._transport, method, opt, input);
return stackIntercept<ComputeSLAPeriodOnSiteRequest, ComputeSLAPeriodResponse>("unary", this._transport, method, opt, input);
}
}