Files
npm-core-sdk/user-attributes_connect.ts
2025-03-17 09:56:44 +00:00

63 lines
1.8 KiB
TypeScript

// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
// @generated from file user-attributes.proto (package api, syntax proto3)
/* eslint-disable */
// @ts-nocheck
import { DeleteForProjectUserAttributesRequest, DeleteForProjectUserAttributesResult, DeleteUserAttributesRequest, DeleteUserAttributesResult, GetUserAttributesRequest, GetUserAttributesResult, ListUserAttributesRequest, ListUserAttributesResult, PutUserAttributesRequest, PutUserAttributesResult } from "./user-attributes_pb.js";
import { MethodKind } from "@bufbuild/protobuf";
/**
* @generated from service api.UserAttributesService
*/
export const UserAttributesService = {
typeName: "api.UserAttributesService",
methods: {
/**
* @generated from rpc api.UserAttributesService.Get
*/
get: {
name: "Get",
I: GetUserAttributesRequest,
O: GetUserAttributesResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc api.UserAttributesService.Put
*/
put: {
name: "Put",
I: PutUserAttributesRequest,
O: PutUserAttributesResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc api.UserAttributesService.Delete
*/
delete: {
name: "Delete",
I: DeleteUserAttributesRequest,
O: DeleteUserAttributesResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc api.UserAttributesService.List
*/
list: {
name: "List",
I: ListUserAttributesRequest,
O: ListUserAttributesResult,
kind: MethodKind.Unary,
},
/**
* @generated from rpc api.UserAttributesService.DeleteForProject
*/
deleteForProject: {
name: "DeleteForProject",
I: DeleteForProjectUserAttributesRequest,
O: DeleteForProjectUserAttributesResult,
kind: MethodKind.Unary,
},
}
} as const;