You've already forked npm-core-sdk
81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file restrictionLinks.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { CreateRestrictionLinkRequest, CreateRestrictionLinkResponse, DeleteForProjectRestrictionLinkRequest, DeleteForProjectRestrictionLinkResponse, DeleteRestrictionLinkRequest, DeleteRestrictionLinkResponse, GetRestrictionLinkRequest, GetRestrictionLinkResponse, ListRestrictionLinksRequest, ListRestrictionLinksResponse, SetUserActorsRequest, SetUserActorsResponse, UpdateRestrictionLinkRequest, UpdateRestrictionLinkResponse } from "./restrictionLinks_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
|
|
/**
|
|
* @generated from service api.RestrictionLinkService
|
|
*/
|
|
export const RestrictionLinkService = {
|
|
typeName: "api.RestrictionLinkService",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.RestrictionLinkService.Create
|
|
*/
|
|
create: {
|
|
name: "Create",
|
|
I: CreateRestrictionLinkRequest,
|
|
O: CreateRestrictionLinkResponse,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.RestrictionLinkService.Update
|
|
*/
|
|
update: {
|
|
name: "Update",
|
|
I: UpdateRestrictionLinkRequest,
|
|
O: UpdateRestrictionLinkResponse,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.RestrictionLinkService.Delete
|
|
*/
|
|
delete: {
|
|
name: "Delete",
|
|
I: DeleteRestrictionLinkRequest,
|
|
O: DeleteRestrictionLinkResponse,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.RestrictionLinkService.Get
|
|
*/
|
|
get: {
|
|
name: "Get",
|
|
I: GetRestrictionLinkRequest,
|
|
O: GetRestrictionLinkResponse,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.RestrictionLinkService.List
|
|
*/
|
|
list: {
|
|
name: "List",
|
|
I: ListRestrictionLinksRequest,
|
|
O: ListRestrictionLinksResponse,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.RestrictionLinkService.SetUserActors
|
|
*/
|
|
setUserActors: {
|
|
name: "SetUserActors",
|
|
I: SetUserActorsRequest,
|
|
O: SetUserActorsResponse,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.RestrictionLinkService.DeleteForProject
|
|
*/
|
|
deleteForProject: {
|
|
name: "DeleteForProject",
|
|
I: DeleteForProjectRestrictionLinkRequest,
|
|
O: DeleteForProjectRestrictionLinkResponse,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|