You've already forked npm-viz-sdk
63 lines
1.5 KiB
TypeScript
63 lines
1.5 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file viz-motd.proto (package vizapi, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { CreateMotdRequest, CreateMotdResult, DeleteMotdRequest, DeleteMotdResult, GetMotdRequest, GetMotdResult, ListMotdsRequest, ListMotdsResult, UpdateMotdRequest, UpdateMotdResult } from "./viz-motd_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service vizapi.MotdService
|
|
*/
|
|
export const MotdService = {
|
|
typeName: "vizapi.MotdService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc vizapi.MotdService.Get
|
|
*/
|
|
get: {
|
|
name: "Get",
|
|
I: GetMotdRequest,
|
|
O: GetMotdResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.MotdService.Create
|
|
*/
|
|
create: {
|
|
name: "Create",
|
|
I: CreateMotdRequest,
|
|
O: CreateMotdResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.MotdService.Update
|
|
*/
|
|
update: {
|
|
name: "Update",
|
|
I: UpdateMotdRequest,
|
|
O: UpdateMotdResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.MotdService.Delete
|
|
*/
|
|
delete: {
|
|
name: "Delete",
|
|
I: DeleteMotdRequest,
|
|
O: DeleteMotdResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.MotdService.List
|
|
*/
|
|
list: {
|
|
name: "List",
|
|
I: ListMotdsRequest,
|
|
O: ListMotdsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|