Latest generation

This commit is contained in:
ci core model
2026-03-16 10:37:28 +00:00
parent ea93a97316
commit 3c0a2815b9
3 changed files with 4 additions and 304 deletions

View File

@@ -9,9 +9,6 @@ import type { CrossFindByMatchResult } from "./shared";
import type { CrossFindByMatchQuery } from "./shared";
import type { CrossFindAppointmentResult } from "./appointmentQuery";
import type { CrossFindQuery } from "./shared";
import type { FindByCommissionResult } from "./appointmentQuery";
import type { FindByCommissionQuery } from "./appointmentQuery";
import type { FindMineByMatchQuery } from "./appointmentQuery";
import type { CountLinesResult } from "./shared";
import type { CountLinesQuery } from "./shared";
import type { GetKPIDataResult } from "./clickhouse";
@@ -61,16 +58,6 @@ export interface IAppointmentQueryClient {
* @generated from protobuf rpc: CountLines
*/
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult>;
/**
* @deprecated
* @generated from protobuf rpc: FindMineMatchingFieldValues
*/
findMineMatchingFieldValues(input: FindMineByMatchQuery, options?: RpcOptions): UnaryCall<FindMineByMatchQuery, AppointmentByMatchResult>;
/**
* @deprecated
* @generated from protobuf rpc: FindByCommission
*/
findByCommission(input: FindByCommissionQuery, options?: RpcOptions): UnaryCall<FindByCommissionQuery, FindByCommissionResult>;
/**
* @generated from protobuf rpc: CrossFind
*/
@@ -142,41 +129,25 @@ export class AppointmentQueryClient implements IAppointmentQueryClient, ServiceI
const method = this.methods[6], opt = this._transport.mergeOptions(options);
return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input);
}
/**
* @deprecated
* @generated from protobuf rpc: FindMineMatchingFieldValues
*/
findMineMatchingFieldValues(input: FindMineByMatchQuery, options?: RpcOptions): UnaryCall<FindMineByMatchQuery, AppointmentByMatchResult> {
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<FindMineByMatchQuery, AppointmentByMatchResult>("unary", this._transport, method, opt, input);
}
/**
* @deprecated
* @generated from protobuf rpc: FindByCommission
*/
findByCommission(input: FindByCommissionQuery, options?: RpcOptions): UnaryCall<FindByCommissionQuery, FindByCommissionResult> {
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<FindByCommissionQuery, FindByCommissionResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CrossFind
*/
crossFind(input: CrossFindQuery, options?: RpcOptions): UnaryCall<CrossFindQuery, CrossFindAppointmentResult> {
const method = this.methods[9], opt = this._transport.mergeOptions(options);
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<CrossFindQuery, CrossFindAppointmentResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CrossFindMatchingFieldValues
*/
crossFindMatchingFieldValues(input: CrossFindByMatchQuery, options?: RpcOptions): UnaryCall<CrossFindByMatchQuery, CrossFindByMatchResult> {
const method = this.methods[10], opt = this._transport.mergeOptions(options);
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<CrossFindByMatchQuery, CrossFindByMatchResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CrossFindMatchingFieldElements
*/
crossFindMatchingFieldElements(input: CrossFindElementByMatchQuery, options?: RpcOptions): UnaryCall<CrossFindElementByMatchQuery, ElementByMatchResult> {
const method = this.methods[11], opt = this._transport.mergeOptions(options);
const method = this.methods[9], opt = this._transport.mergeOptions(options);
return stackIntercept<CrossFindElementByMatchQuery, ElementByMatchResult>("unary", this._transport, method, opt, input);
}
}