You've already forked npm-viz-sdk
90 lines
2.6 KiB
TypeScript
90 lines
2.6 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file viz-dashboard.proto (package vizapi, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { CopyDashboardRequest, CopyDashboardResult, CreateDashboardRequest, CreateDashboardResult, DeleteDashboardRequest, DeleteDashboardResult, DeleteDashboardsForOrganisationRequest, DeleteDashboardsForOrganisationResult, DeleteDashboardsForProjectRequest, DeleteDashboardsForProjectResult, GetDashboardRequest, GetDashboardResult, ListDashboardRequest, ListDashboardResult, UpdateDashboardRequest, UpdateDashboardResult } from "./viz-dashboard_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service vizapi.DashboardService
|
|
*/
|
|
export const DashboardService = {
|
|
typeName: "vizapi.DashboardService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc vizapi.DashboardService.Create
|
|
*/
|
|
create: {
|
|
name: "Create",
|
|
I: CreateDashboardRequest,
|
|
O: CreateDashboardResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.DashboardService.List
|
|
*/
|
|
list: {
|
|
name: "List",
|
|
I: ListDashboardRequest,
|
|
O: ListDashboardResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.DashboardService.Delete
|
|
*/
|
|
delete: {
|
|
name: "Delete",
|
|
I: DeleteDashboardRequest,
|
|
O: DeleteDashboardResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.DashboardService.DeleteDashboardsForOrganisation
|
|
*/
|
|
deleteDashboardsForOrganisation: {
|
|
name: "DeleteDashboardsForOrganisation",
|
|
I: DeleteDashboardsForOrganisationRequest,
|
|
O: DeleteDashboardsForOrganisationResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.DashboardService.DeleteDashboardsForProject
|
|
*/
|
|
deleteDashboardsForProject: {
|
|
name: "DeleteDashboardsForProject",
|
|
I: DeleteDashboardsForProjectRequest,
|
|
O: DeleteDashboardsForProjectResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.DashboardService.Update
|
|
*/
|
|
update: {
|
|
name: "Update",
|
|
I: UpdateDashboardRequest,
|
|
O: UpdateDashboardResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.DashboardService.Get
|
|
*/
|
|
get: {
|
|
name: "Get",
|
|
I: GetDashboardRequest,
|
|
O: GetDashboardResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc vizapi.DashboardService.Copy
|
|
*/
|
|
copy: {
|
|
name: "Copy",
|
|
I: CopyDashboardRequest,
|
|
O: CopyDashboardResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|