You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -6,6 +6,8 @@ import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
||||
import { AppointmentQuery } from "./appointmentQuery";
|
||||
import type { CountLinesResult } from "./shared";
|
||||
import type { CountLinesQuery } from "./shared";
|
||||
import type { GetKPIDataResult } from "./clickhouse";
|
||||
import type { GetKPIDataSiteQuery } from "./clickhouse";
|
||||
import type { ExtractResult } from "./shared";
|
||||
import type { ExtractSiteQuery } from "./shared";
|
||||
import type { ElementByMatchResult } from "./shared";
|
||||
@@ -44,18 +46,10 @@ export interface IAppointmentQueryClient {
|
||||
*/
|
||||
extract(input: ExtractSiteQuery, options?: RpcOptions): UnaryCall<ExtractSiteQuery, ExtractResult>;
|
||||
/**
|
||||
* rpc GetKPIData (GetKPIDataSiteQuery) returns (GetKPIDataResult) {
|
||||
* option (rscType) = "Site";
|
||||
* option (roles) = "";
|
||||
* option (moduleID) = "appointment-scheduling";
|
||||
* option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||
* description: "Get Appointment KPI data"
|
||||
* summary: ""
|
||||
* tags: "Appointment Query"
|
||||
* };
|
||||
* option (google.api.method_visibility).restriction = "PUBLIC";
|
||||
* };
|
||||
*
|
||||
* @generated from protobuf rpc: GetKPIData
|
||||
*/
|
||||
getKPIData(input: GetKPIDataSiteQuery, options?: RpcOptions): UnaryCall<GetKPIDataSiteQuery, GetKPIDataResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult>;
|
||||
@@ -105,22 +99,17 @@ export class AppointmentQueryClient implements IAppointmentQueryClient, ServiceI
|
||||
return stackIntercept<ExtractSiteQuery, ExtractResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* rpc GetKPIData (GetKPIDataSiteQuery) returns (GetKPIDataResult) {
|
||||
* option (rscType) = "Site";
|
||||
* option (roles) = "";
|
||||
* option (moduleID) = "appointment-scheduling";
|
||||
* option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||
* description: "Get Appointment KPI data"
|
||||
* summary: ""
|
||||
* tags: "Appointment Query"
|
||||
* };
|
||||
* option (google.api.method_visibility).restriction = "PUBLIC";
|
||||
* };
|
||||
*
|
||||
* @generated from protobuf rpc: GetKPIData
|
||||
*/
|
||||
getKPIData(input: GetKPIDataSiteQuery, options?: RpcOptions): UnaryCall<GetKPIDataSiteQuery, GetKPIDataResult> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetKPIDataSiteQuery, GetKPIDataResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
// tslint:disable
|
||||
import { CountLinesResult } from "./shared";
|
||||
import { CountLinesQuery } from "./shared";
|
||||
import { GetKPIDataResult } from "./clickhouse";
|
||||
import { GetKPIDataSiteQuery } from "./clickhouse";
|
||||
import { ExtractResult } from "./shared";
|
||||
import { ExtractSiteQuery } from "./shared";
|
||||
import { ElementByMatchResult } from "./shared";
|
||||
@@ -483,5 +485,6 @@ export const AppointmentQuery = new ServiceType("api.AppointmentQuery", [
|
||||
{ name: "FindMatchingFieldValues", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Query"], description: "Using search criteria & a main field word, find the list of fields containing the searched word (used for auto completion purposes ...) " }, "api.rscType": "Site", "api.roles": "", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: AppointmentByMatchQuery, O: AppointmentByMatchResult },
|
||||
{ name: "FindMatchingFieldElements", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Query"], description: "using search criteria & a main field word, find the list of field elements containing the searched word (used for auto completion purposes ...) " }, "api.rscType": "Site", "api.roles": "", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ElementByMatchSiteQuery, O: ElementByMatchResult },
|
||||
{ name: "Extract", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Query"], description: "Schedule a data extraction" }, "api.rscType": "Site", "api.roles": "", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ExtractSiteQuery, O: ExtractResult },
|
||||
{ name: "GetKPIData", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Query"], description: "Get Appointment KPI data" }, "api.rscType": "Site", "api.roles": "", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: GetKPIDataSiteQuery, O: GetKPIDataResult },
|
||||
{ name: "CountLines", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Appointment Query"], description: "Count lines in database for project" }, "api.rscType": "Platform", "api.roles": "Platform.Site-Query", "api.moduleID": "appointment-scheduling", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: CountLinesQuery, O: CountLinesResult }
|
||||
], { "api.serviceType": "Query", "api.k8sService": "collab-query-server" });
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.11.0-SNAPSHOT-250623095849",
|
||||
"version": "1.11.0-SNAPSHOT-250623100149",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
Reference in New Issue
Block a user