You've already forked npm-core-sdk
54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file elastic.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { ClearIndexEntityRequest, ClearIndexEntityResult, CreateProjectMappingsRequest, CreateProjectMappingsResult, DeleteProjectMappingsRequest, DeleteProjectMappingsResult, UpdateModelMappingsRequest, UpdateModelMappingsResult } from "./elastic_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service api.ElasticService
|
|
*/
|
|
export const ElasticService = {
|
|
typeName: "api.ElasticService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.ElasticService.UpdateModelMappings
|
|
*/
|
|
updateModelMappings: {
|
|
name: "UpdateModelMappings",
|
|
I: UpdateModelMappingsRequest,
|
|
O: UpdateModelMappingsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ElasticService.CreateProjectMappings
|
|
*/
|
|
createProjectMappings: {
|
|
name: "CreateProjectMappings",
|
|
I: CreateProjectMappingsRequest,
|
|
O: CreateProjectMappingsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ElasticService.DeleteProjectMappings
|
|
*/
|
|
deleteProjectMappings: {
|
|
name: "DeleteProjectMappings",
|
|
I: DeleteProjectMappingsRequest,
|
|
O: DeleteProjectMappingsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ElasticService.ClearIndexEntity
|
|
*/
|
|
clearIndexEntity: {
|
|
name: "ClearIndexEntity",
|
|
I: ClearIndexEntityRequest,
|
|
O: ClearIndexEntityResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|