You've already forked npm-core-sdk
63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file model.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { GetDataModelRequest, GetDataModelResult, GetEntitiesRequest, GetEntitiesResult, GetEntityModelRequest, GetEntityModelResult } from "./model_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service api.ModelService
|
|
*/
|
|
export const ModelService = {
|
|
typeName: "api.ModelService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.ModelService.GetDataModel
|
|
*/
|
|
getDataModel: {
|
|
name: "GetDataModel",
|
|
I: GetDataModelRequest,
|
|
O: GetDataModelResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ModelService.GetEntityModel
|
|
*/
|
|
getEntityModel: {
|
|
name: "GetEntityModel",
|
|
I: GetEntityModelRequest,
|
|
O: GetEntityModelResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ModelService.GetEntities
|
|
*/
|
|
getEntities: {
|
|
name: "GetEntities",
|
|
I: GetEntitiesRequest,
|
|
O: GetEntitiesResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ModelService.GetEntitiesWithMetadata
|
|
*/
|
|
getEntitiesWithMetadata: {
|
|
name: "GetEntitiesWithMetadata",
|
|
I: GetEntitiesRequest,
|
|
O: GetEntitiesResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ModelService.GetEntitiesWithDataRestriction
|
|
*/
|
|
getEntitiesWithDataRestriction: {
|
|
name: "GetEntitiesWithDataRestriction",
|
|
I: GetEntitiesRequest,
|
|
O: GetEntitiesResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|