You've already forked npm-core-sdk
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file logger.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { PlatformLogByMatchRequest, PlatformLogByMatchResult, PlatformLogCreateRequest, PlatformLogCreateResponse, PlatformLogFindRequest, PlatformLogFindResult, PlatformLogGetByIdsRequest, PlatformLogGetByIdsResult } from "./logger_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service api.LoggerService
|
|
*/
|
|
export const LoggerService = {
|
|
typeName: "api.LoggerService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.LoggerService.Create
|
|
*/
|
|
create: {
|
|
name: "Create",
|
|
I: PlatformLogCreateRequest,
|
|
O: PlatformLogCreateResponse,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.LoggerService.GetByIds
|
|
*/
|
|
getByIds: {
|
|
name: "GetByIds",
|
|
I: PlatformLogGetByIdsRequest,
|
|
O: PlatformLogGetByIdsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.LoggerService.Find
|
|
*/
|
|
find: {
|
|
name: "Find",
|
|
I: PlatformLogFindRequest,
|
|
O: PlatformLogFindResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.LoggerService.FindMatchingFieldValues
|
|
*/
|
|
findMatchingFieldValues: {
|
|
name: "FindMatchingFieldValues",
|
|
I: PlatformLogByMatchRequest,
|
|
O: PlatformLogByMatchResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|