Files
npm-viz-sdk/viz-default-view_connect.ts
2025-03-17 13:03:44 +00:00

36 lines
1.1 KiB
TypeScript

// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
// @generated from file viz-default-view.proto (package vizapi, syntax proto3)
/* eslint-disable */
// @ts-nocheck
import { CreatePlatformDefaultViewRequest, CreatePlatformDefaultViewResult, UpdatePlatformDefaultViewRequest, UpdatePlatformDefaultViewResult } from "./viz-default-view_pb.js";
import { MethodKind } from "@bufbuild/protobuf";
/**
* @generated from service vizapi.DefaultViewService
*/
export const DefaultViewService = {
typeName: "vizapi.DefaultViewService",
methods: {
/**
* @generated from rpc vizapi.DefaultViewService.CreatePlatform
*/
createPlatform: {
name: "CreatePlatform",
I: CreatePlatformDefaultViewRequest,
O: CreatePlatformDefaultViewResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc vizapi.DefaultViewService.UpdatePlatform
*/
updatePlatform: {
name: "UpdatePlatform",
I: UpdatePlatformDefaultViewRequest,
O: UpdatePlatformDefaultViewResult,
kind: MethodKind.Unary,
},
}
} as const;