You've already forked npm-core-sdk
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file connectionSettings.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { DeleteConnectionSettingsRequest, DeleteConnectionSettingsResult, GetConnectionSettingsRequest, GetConnectionSettingsResult, PutConnectionSettingsRequest, PutConnectionSettingsResult } from "./connectionSettings_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service api.ConnectionSettingsService
|
|
*/
|
|
export const ConnectionSettingsService = {
|
|
typeName: "api.ConnectionSettingsService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.ConnectionSettingsService.Get
|
|
*/
|
|
get: {
|
|
name: "Get",
|
|
I: GetConnectionSettingsRequest,
|
|
O: GetConnectionSettingsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionSettingsService.Put
|
|
*/
|
|
put: {
|
|
name: "Put",
|
|
I: PutConnectionSettingsRequest,
|
|
O: PutConnectionSettingsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ConnectionSettingsService.Delete
|
|
*/
|
|
delete: {
|
|
name: "Delete",
|
|
I: DeleteConnectionSettingsRequest,
|
|
O: DeleteConnectionSettingsResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|