mirror of https://github.com/usememos/memos
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			1012 lines
		
	
	
		
			43 KiB
		
	
	
	
		
			Go
		
	
			
		
		
	
	
			1012 lines
		
	
	
		
			43 KiB
		
	
	
	
		
			Go
		
	
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 | 
						|
// versions:
 | 
						|
// - protoc-gen-go-grpc v1.5.1
 | 
						|
// - protoc             (unknown)
 | 
						|
// source: api/v1/user_service.proto
 | 
						|
 | 
						|
package apiv1
 | 
						|
 | 
						|
import (
 | 
						|
	context "context"
 | 
						|
	httpbody "google.golang.org/genproto/googleapis/api/httpbody"
 | 
						|
	grpc "google.golang.org/grpc"
 | 
						|
	codes "google.golang.org/grpc/codes"
 | 
						|
	status "google.golang.org/grpc/status"
 | 
						|
	emptypb "google.golang.org/protobuf/types/known/emptypb"
 | 
						|
)
 | 
						|
 | 
						|
// This is a compile-time assertion to ensure that this generated file
 | 
						|
// is compatible with the grpc package it is being compiled against.
 | 
						|
// Requires gRPC-Go v1.64.0 or later.
 | 
						|
const _ = grpc.SupportPackageIsVersion9
 | 
						|
 | 
						|
const (
 | 
						|
	UserService_ListUsers_FullMethodName              = "/memos.api.v1.UserService/ListUsers"
 | 
						|
	UserService_GetUser_FullMethodName                = "/memos.api.v1.UserService/GetUser"
 | 
						|
	UserService_CreateUser_FullMethodName             = "/memos.api.v1.UserService/CreateUser"
 | 
						|
	UserService_UpdateUser_FullMethodName             = "/memos.api.v1.UserService/UpdateUser"
 | 
						|
	UserService_DeleteUser_FullMethodName             = "/memos.api.v1.UserService/DeleteUser"
 | 
						|
	UserService_GetUserAvatar_FullMethodName          = "/memos.api.v1.UserService/GetUserAvatar"
 | 
						|
	UserService_ListAllUserStats_FullMethodName       = "/memos.api.v1.UserService/ListAllUserStats"
 | 
						|
	UserService_GetUserStats_FullMethodName           = "/memos.api.v1.UserService/GetUserStats"
 | 
						|
	UserService_GetUserSetting_FullMethodName         = "/memos.api.v1.UserService/GetUserSetting"
 | 
						|
	UserService_UpdateUserSetting_FullMethodName      = "/memos.api.v1.UserService/UpdateUserSetting"
 | 
						|
	UserService_ListUserSettings_FullMethodName       = "/memos.api.v1.UserService/ListUserSettings"
 | 
						|
	UserService_ListUserAccessTokens_FullMethodName   = "/memos.api.v1.UserService/ListUserAccessTokens"
 | 
						|
	UserService_CreateUserAccessToken_FullMethodName  = "/memos.api.v1.UserService/CreateUserAccessToken"
 | 
						|
	UserService_DeleteUserAccessToken_FullMethodName  = "/memos.api.v1.UserService/DeleteUserAccessToken"
 | 
						|
	UserService_ListUserSessions_FullMethodName       = "/memos.api.v1.UserService/ListUserSessions"
 | 
						|
	UserService_RevokeUserSession_FullMethodName      = "/memos.api.v1.UserService/RevokeUserSession"
 | 
						|
	UserService_ListUserWebhooks_FullMethodName       = "/memos.api.v1.UserService/ListUserWebhooks"
 | 
						|
	UserService_CreateUserWebhook_FullMethodName      = "/memos.api.v1.UserService/CreateUserWebhook"
 | 
						|
	UserService_UpdateUserWebhook_FullMethodName      = "/memos.api.v1.UserService/UpdateUserWebhook"
 | 
						|
	UserService_DeleteUserWebhook_FullMethodName      = "/memos.api.v1.UserService/DeleteUserWebhook"
 | 
						|
	UserService_ListUserNotifications_FullMethodName  = "/memos.api.v1.UserService/ListUserNotifications"
 | 
						|
	UserService_UpdateUserNotification_FullMethodName = "/memos.api.v1.UserService/UpdateUserNotification"
 | 
						|
	UserService_DeleteUserNotification_FullMethodName = "/memos.api.v1.UserService/DeleteUserNotification"
 | 
						|
)
 | 
						|
 | 
						|
// UserServiceClient is the client API for UserService service.
 | 
						|
//
 | 
						|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
 | 
						|
type UserServiceClient interface {
 | 
						|
	// ListUsers returns a list of users.
 | 
						|
	ListUsers(ctx context.Context, in *ListUsersRequest, opts ...grpc.CallOption) (*ListUsersResponse, error)
 | 
						|
	// GetUser gets a user by ID or username.
 | 
						|
	// Supports both numeric IDs and username strings:
 | 
						|
	//   - users/{id}       (e.g., users/101)
 | 
						|
	//   - users/{username} (e.g., users/steven)
 | 
						|
	GetUser(ctx context.Context, in *GetUserRequest, opts ...grpc.CallOption) (*User, error)
 | 
						|
	// CreateUser creates a new user.
 | 
						|
	CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*User, error)
 | 
						|
	// UpdateUser updates a user.
 | 
						|
	UpdateUser(ctx context.Context, in *UpdateUserRequest, opts ...grpc.CallOption) (*User, error)
 | 
						|
	// DeleteUser deletes a user.
 | 
						|
	DeleteUser(ctx context.Context, in *DeleteUserRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
 | 
						|
	// GetUserAvatar gets the avatar of a user.
 | 
						|
	GetUserAvatar(ctx context.Context, in *GetUserAvatarRequest, opts ...grpc.CallOption) (*httpbody.HttpBody, error)
 | 
						|
	// ListAllUserStats returns statistics for all users.
 | 
						|
	ListAllUserStats(ctx context.Context, in *ListAllUserStatsRequest, opts ...grpc.CallOption) (*ListAllUserStatsResponse, error)
 | 
						|
	// GetUserStats returns statistics for a specific user.
 | 
						|
	GetUserStats(ctx context.Context, in *GetUserStatsRequest, opts ...grpc.CallOption) (*UserStats, error)
 | 
						|
	// GetUserSetting returns the user setting.
 | 
						|
	GetUserSetting(ctx context.Context, in *GetUserSettingRequest, opts ...grpc.CallOption) (*UserSetting, error)
 | 
						|
	// UpdateUserSetting updates the user setting.
 | 
						|
	UpdateUserSetting(ctx context.Context, in *UpdateUserSettingRequest, opts ...grpc.CallOption) (*UserSetting, error)
 | 
						|
	// ListUserSettings returns a list of user settings.
 | 
						|
	ListUserSettings(ctx context.Context, in *ListUserSettingsRequest, opts ...grpc.CallOption) (*ListUserSettingsResponse, error)
 | 
						|
	// ListUserAccessTokens returns a list of access tokens for a user.
 | 
						|
	ListUserAccessTokens(ctx context.Context, in *ListUserAccessTokensRequest, opts ...grpc.CallOption) (*ListUserAccessTokensResponse, error)
 | 
						|
	// CreateUserAccessToken creates a new access token for a user.
 | 
						|
	CreateUserAccessToken(ctx context.Context, in *CreateUserAccessTokenRequest, opts ...grpc.CallOption) (*UserAccessToken, error)
 | 
						|
	// DeleteUserAccessToken deletes an access token.
 | 
						|
	DeleteUserAccessToken(ctx context.Context, in *DeleteUserAccessTokenRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
 | 
						|
	// ListUserSessions returns a list of active sessions for a user.
 | 
						|
	ListUserSessions(ctx context.Context, in *ListUserSessionsRequest, opts ...grpc.CallOption) (*ListUserSessionsResponse, error)
 | 
						|
	// RevokeUserSession revokes a specific session for a user.
 | 
						|
	RevokeUserSession(ctx context.Context, in *RevokeUserSessionRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
 | 
						|
	// ListUserWebhooks returns a list of webhooks for a user.
 | 
						|
	ListUserWebhooks(ctx context.Context, in *ListUserWebhooksRequest, opts ...grpc.CallOption) (*ListUserWebhooksResponse, error)
 | 
						|
	// CreateUserWebhook creates a new webhook for a user.
 | 
						|
	CreateUserWebhook(ctx context.Context, in *CreateUserWebhookRequest, opts ...grpc.CallOption) (*UserWebhook, error)
 | 
						|
	// UpdateUserWebhook updates an existing webhook for a user.
 | 
						|
	UpdateUserWebhook(ctx context.Context, in *UpdateUserWebhookRequest, opts ...grpc.CallOption) (*UserWebhook, error)
 | 
						|
	// DeleteUserWebhook deletes a webhook for a user.
 | 
						|
	DeleteUserWebhook(ctx context.Context, in *DeleteUserWebhookRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
 | 
						|
	// ListUserNotifications lists notifications for a user.
 | 
						|
	ListUserNotifications(ctx context.Context, in *ListUserNotificationsRequest, opts ...grpc.CallOption) (*ListUserNotificationsResponse, error)
 | 
						|
	// UpdateUserNotification updates a notification.
 | 
						|
	UpdateUserNotification(ctx context.Context, in *UpdateUserNotificationRequest, opts ...grpc.CallOption) (*UserNotification, error)
 | 
						|
	// DeleteUserNotification deletes a notification.
 | 
						|
	DeleteUserNotification(ctx context.Context, in *DeleteUserNotificationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
 | 
						|
}
 | 
						|
 | 
						|
type userServiceClient struct {
 | 
						|
	cc grpc.ClientConnInterface
 | 
						|
}
 | 
						|
 | 
						|
func NewUserServiceClient(cc grpc.ClientConnInterface) UserServiceClient {
 | 
						|
	return &userServiceClient{cc}
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) ListUsers(ctx context.Context, in *ListUsersRequest, opts ...grpc.CallOption) (*ListUsersResponse, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(ListUsersResponse)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_ListUsers_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) GetUser(ctx context.Context, in *GetUserRequest, opts ...grpc.CallOption) (*User, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(User)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_GetUser_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*User, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(User)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_CreateUser_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) UpdateUser(ctx context.Context, in *UpdateUserRequest, opts ...grpc.CallOption) (*User, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(User)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_UpdateUser_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) DeleteUser(ctx context.Context, in *DeleteUserRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(emptypb.Empty)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_DeleteUser_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) GetUserAvatar(ctx context.Context, in *GetUserAvatarRequest, opts ...grpc.CallOption) (*httpbody.HttpBody, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(httpbody.HttpBody)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_GetUserAvatar_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) ListAllUserStats(ctx context.Context, in *ListAllUserStatsRequest, opts ...grpc.CallOption) (*ListAllUserStatsResponse, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(ListAllUserStatsResponse)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_ListAllUserStats_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) GetUserStats(ctx context.Context, in *GetUserStatsRequest, opts ...grpc.CallOption) (*UserStats, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(UserStats)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_GetUserStats_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) GetUserSetting(ctx context.Context, in *GetUserSettingRequest, opts ...grpc.CallOption) (*UserSetting, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(UserSetting)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_GetUserSetting_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) UpdateUserSetting(ctx context.Context, in *UpdateUserSettingRequest, opts ...grpc.CallOption) (*UserSetting, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(UserSetting)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_UpdateUserSetting_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) ListUserSettings(ctx context.Context, in *ListUserSettingsRequest, opts ...grpc.CallOption) (*ListUserSettingsResponse, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(ListUserSettingsResponse)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_ListUserSettings_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) ListUserAccessTokens(ctx context.Context, in *ListUserAccessTokensRequest, opts ...grpc.CallOption) (*ListUserAccessTokensResponse, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(ListUserAccessTokensResponse)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_ListUserAccessTokens_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) CreateUserAccessToken(ctx context.Context, in *CreateUserAccessTokenRequest, opts ...grpc.CallOption) (*UserAccessToken, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(UserAccessToken)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_CreateUserAccessToken_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) DeleteUserAccessToken(ctx context.Context, in *DeleteUserAccessTokenRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(emptypb.Empty)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_DeleteUserAccessToken_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) ListUserSessions(ctx context.Context, in *ListUserSessionsRequest, opts ...grpc.CallOption) (*ListUserSessionsResponse, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(ListUserSessionsResponse)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_ListUserSessions_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) RevokeUserSession(ctx context.Context, in *RevokeUserSessionRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(emptypb.Empty)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_RevokeUserSession_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) ListUserWebhooks(ctx context.Context, in *ListUserWebhooksRequest, opts ...grpc.CallOption) (*ListUserWebhooksResponse, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(ListUserWebhooksResponse)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_ListUserWebhooks_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) CreateUserWebhook(ctx context.Context, in *CreateUserWebhookRequest, opts ...grpc.CallOption) (*UserWebhook, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(UserWebhook)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_CreateUserWebhook_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) UpdateUserWebhook(ctx context.Context, in *UpdateUserWebhookRequest, opts ...grpc.CallOption) (*UserWebhook, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(UserWebhook)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_UpdateUserWebhook_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) DeleteUserWebhook(ctx context.Context, in *DeleteUserWebhookRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(emptypb.Empty)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_DeleteUserWebhook_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) ListUserNotifications(ctx context.Context, in *ListUserNotificationsRequest, opts ...grpc.CallOption) (*ListUserNotificationsResponse, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(ListUserNotificationsResponse)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_ListUserNotifications_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) UpdateUserNotification(ctx context.Context, in *UpdateUserNotificationRequest, opts ...grpc.CallOption) (*UserNotification, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(UserNotification)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_UpdateUserNotification_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *userServiceClient) DeleteUserNotification(ctx context.Context, in *DeleteUserNotificationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
 | 
						|
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | 
						|
	out := new(emptypb.Empty)
 | 
						|
	err := c.cc.Invoke(ctx, UserService_DeleteUserNotification_FullMethodName, in, out, cOpts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
// UserServiceServer is the server API for UserService service.
 | 
						|
// All implementations must embed UnimplementedUserServiceServer
 | 
						|
// for forward compatibility.
 | 
						|
type UserServiceServer interface {
 | 
						|
	// ListUsers returns a list of users.
 | 
						|
	ListUsers(context.Context, *ListUsersRequest) (*ListUsersResponse, error)
 | 
						|
	// GetUser gets a user by ID or username.
 | 
						|
	// Supports both numeric IDs and username strings:
 | 
						|
	//   - users/{id}       (e.g., users/101)
 | 
						|
	//   - users/{username} (e.g., users/steven)
 | 
						|
	GetUser(context.Context, *GetUserRequest) (*User, error)
 | 
						|
	// CreateUser creates a new user.
 | 
						|
	CreateUser(context.Context, *CreateUserRequest) (*User, error)
 | 
						|
	// UpdateUser updates a user.
 | 
						|
	UpdateUser(context.Context, *UpdateUserRequest) (*User, error)
 | 
						|
	// DeleteUser deletes a user.
 | 
						|
	DeleteUser(context.Context, *DeleteUserRequest) (*emptypb.Empty, error)
 | 
						|
	// GetUserAvatar gets the avatar of a user.
 | 
						|
	GetUserAvatar(context.Context, *GetUserAvatarRequest) (*httpbody.HttpBody, error)
 | 
						|
	// ListAllUserStats returns statistics for all users.
 | 
						|
	ListAllUserStats(context.Context, *ListAllUserStatsRequest) (*ListAllUserStatsResponse, error)
 | 
						|
	// GetUserStats returns statistics for a specific user.
 | 
						|
	GetUserStats(context.Context, *GetUserStatsRequest) (*UserStats, error)
 | 
						|
	// GetUserSetting returns the user setting.
 | 
						|
	GetUserSetting(context.Context, *GetUserSettingRequest) (*UserSetting, error)
 | 
						|
	// UpdateUserSetting updates the user setting.
 | 
						|
	UpdateUserSetting(context.Context, *UpdateUserSettingRequest) (*UserSetting, error)
 | 
						|
	// ListUserSettings returns a list of user settings.
 | 
						|
	ListUserSettings(context.Context, *ListUserSettingsRequest) (*ListUserSettingsResponse, error)
 | 
						|
	// ListUserAccessTokens returns a list of access tokens for a user.
 | 
						|
	ListUserAccessTokens(context.Context, *ListUserAccessTokensRequest) (*ListUserAccessTokensResponse, error)
 | 
						|
	// CreateUserAccessToken creates a new access token for a user.
 | 
						|
	CreateUserAccessToken(context.Context, *CreateUserAccessTokenRequest) (*UserAccessToken, error)
 | 
						|
	// DeleteUserAccessToken deletes an access token.
 | 
						|
	DeleteUserAccessToken(context.Context, *DeleteUserAccessTokenRequest) (*emptypb.Empty, error)
 | 
						|
	// ListUserSessions returns a list of active sessions for a user.
 | 
						|
	ListUserSessions(context.Context, *ListUserSessionsRequest) (*ListUserSessionsResponse, error)
 | 
						|
	// RevokeUserSession revokes a specific session for a user.
 | 
						|
	RevokeUserSession(context.Context, *RevokeUserSessionRequest) (*emptypb.Empty, error)
 | 
						|
	// ListUserWebhooks returns a list of webhooks for a user.
 | 
						|
	ListUserWebhooks(context.Context, *ListUserWebhooksRequest) (*ListUserWebhooksResponse, error)
 | 
						|
	// CreateUserWebhook creates a new webhook for a user.
 | 
						|
	CreateUserWebhook(context.Context, *CreateUserWebhookRequest) (*UserWebhook, error)
 | 
						|
	// UpdateUserWebhook updates an existing webhook for a user.
 | 
						|
	UpdateUserWebhook(context.Context, *UpdateUserWebhookRequest) (*UserWebhook, error)
 | 
						|
	// DeleteUserWebhook deletes a webhook for a user.
 | 
						|
	DeleteUserWebhook(context.Context, *DeleteUserWebhookRequest) (*emptypb.Empty, error)
 | 
						|
	// ListUserNotifications lists notifications for a user.
 | 
						|
	ListUserNotifications(context.Context, *ListUserNotificationsRequest) (*ListUserNotificationsResponse, error)
 | 
						|
	// UpdateUserNotification updates a notification.
 | 
						|
	UpdateUserNotification(context.Context, *UpdateUserNotificationRequest) (*UserNotification, error)
 | 
						|
	// DeleteUserNotification deletes a notification.
 | 
						|
	DeleteUserNotification(context.Context, *DeleteUserNotificationRequest) (*emptypb.Empty, error)
 | 
						|
	mustEmbedUnimplementedUserServiceServer()
 | 
						|
}
 | 
						|
 | 
						|
// UnimplementedUserServiceServer must be embedded to have
 | 
						|
// forward compatible implementations.
 | 
						|
//
 | 
						|
// NOTE: this should be embedded by value instead of pointer to avoid a nil
 | 
						|
// pointer dereference when methods are called.
 | 
						|
type UnimplementedUserServiceServer struct{}
 | 
						|
 | 
						|
func (UnimplementedUserServiceServer) ListUsers(context.Context, *ListUsersRequest) (*ListUsersResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method ListUsers not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) GetUser(context.Context, *GetUserRequest) (*User, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method GetUser not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) CreateUser(context.Context, *CreateUserRequest) (*User, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method CreateUser not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) UpdateUser(context.Context, *UpdateUserRequest) (*User, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method UpdateUser not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) DeleteUser(context.Context, *DeleteUserRequest) (*emptypb.Empty, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method DeleteUser not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) GetUserAvatar(context.Context, *GetUserAvatarRequest) (*httpbody.HttpBody, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method GetUserAvatar not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) ListAllUserStats(context.Context, *ListAllUserStatsRequest) (*ListAllUserStatsResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method ListAllUserStats not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) GetUserStats(context.Context, *GetUserStatsRequest) (*UserStats, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method GetUserStats not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) GetUserSetting(context.Context, *GetUserSettingRequest) (*UserSetting, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method GetUserSetting not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) UpdateUserSetting(context.Context, *UpdateUserSettingRequest) (*UserSetting, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method UpdateUserSetting not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) ListUserSettings(context.Context, *ListUserSettingsRequest) (*ListUserSettingsResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method ListUserSettings not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) ListUserAccessTokens(context.Context, *ListUserAccessTokensRequest) (*ListUserAccessTokensResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method ListUserAccessTokens not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) CreateUserAccessToken(context.Context, *CreateUserAccessTokenRequest) (*UserAccessToken, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method CreateUserAccessToken not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) DeleteUserAccessToken(context.Context, *DeleteUserAccessTokenRequest) (*emptypb.Empty, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method DeleteUserAccessToken not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) ListUserSessions(context.Context, *ListUserSessionsRequest) (*ListUserSessionsResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method ListUserSessions not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) RevokeUserSession(context.Context, *RevokeUserSessionRequest) (*emptypb.Empty, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method RevokeUserSession not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) ListUserWebhooks(context.Context, *ListUserWebhooksRequest) (*ListUserWebhooksResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method ListUserWebhooks not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) CreateUserWebhook(context.Context, *CreateUserWebhookRequest) (*UserWebhook, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method CreateUserWebhook not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) UpdateUserWebhook(context.Context, *UpdateUserWebhookRequest) (*UserWebhook, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method UpdateUserWebhook not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) DeleteUserWebhook(context.Context, *DeleteUserWebhookRequest) (*emptypb.Empty, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method DeleteUserWebhook not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) ListUserNotifications(context.Context, *ListUserNotificationsRequest) (*ListUserNotificationsResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method ListUserNotifications not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) UpdateUserNotification(context.Context, *UpdateUserNotificationRequest) (*UserNotification, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method UpdateUserNotification not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) DeleteUserNotification(context.Context, *DeleteUserNotificationRequest) (*emptypb.Empty, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method DeleteUserNotification not implemented")
 | 
						|
}
 | 
						|
func (UnimplementedUserServiceServer) mustEmbedUnimplementedUserServiceServer() {}
 | 
						|
func (UnimplementedUserServiceServer) testEmbeddedByValue()                     {}
 | 
						|
 | 
						|
// UnsafeUserServiceServer may be embedded to opt out of forward compatibility for this service.
 | 
						|
// Use of this interface is not recommended, as added methods to UserServiceServer will
 | 
						|
// result in compilation errors.
 | 
						|
type UnsafeUserServiceServer interface {
 | 
						|
	mustEmbedUnimplementedUserServiceServer()
 | 
						|
}
 | 
						|
 | 
						|
func RegisterUserServiceServer(s grpc.ServiceRegistrar, srv UserServiceServer) {
 | 
						|
	// If the following call pancis, it indicates UnimplementedUserServiceServer was
 | 
						|
	// embedded by pointer and is nil.  This will cause panics if an
 | 
						|
	// unimplemented method is ever invoked, so we test this at initialization
 | 
						|
	// time to prevent it from happening at runtime later due to I/O.
 | 
						|
	if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
 | 
						|
		t.testEmbeddedByValue()
 | 
						|
	}
 | 
						|
	s.RegisterService(&UserService_ServiceDesc, srv)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_ListUsers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ListUsersRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).ListUsers(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_ListUsers_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).ListUsers(ctx, req.(*ListUsersRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_GetUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(GetUserRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).GetUser(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_GetUser_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).GetUser(ctx, req.(*GetUserRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_CreateUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(CreateUserRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).CreateUser(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_CreateUser_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).CreateUser(ctx, req.(*CreateUserRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_UpdateUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(UpdateUserRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).UpdateUser(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_UpdateUser_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).UpdateUser(ctx, req.(*UpdateUserRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_DeleteUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(DeleteUserRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).DeleteUser(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_DeleteUser_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).DeleteUser(ctx, req.(*DeleteUserRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_GetUserAvatar_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(GetUserAvatarRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).GetUserAvatar(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_GetUserAvatar_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).GetUserAvatar(ctx, req.(*GetUserAvatarRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_ListAllUserStats_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ListAllUserStatsRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).ListAllUserStats(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_ListAllUserStats_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).ListAllUserStats(ctx, req.(*ListAllUserStatsRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_GetUserStats_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(GetUserStatsRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).GetUserStats(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_GetUserStats_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).GetUserStats(ctx, req.(*GetUserStatsRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_GetUserSetting_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(GetUserSettingRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).GetUserSetting(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_GetUserSetting_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).GetUserSetting(ctx, req.(*GetUserSettingRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_UpdateUserSetting_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(UpdateUserSettingRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).UpdateUserSetting(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_UpdateUserSetting_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).UpdateUserSetting(ctx, req.(*UpdateUserSettingRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_ListUserSettings_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ListUserSettingsRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).ListUserSettings(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_ListUserSettings_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).ListUserSettings(ctx, req.(*ListUserSettingsRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_ListUserAccessTokens_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ListUserAccessTokensRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).ListUserAccessTokens(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_ListUserAccessTokens_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).ListUserAccessTokens(ctx, req.(*ListUserAccessTokensRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_CreateUserAccessToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(CreateUserAccessTokenRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).CreateUserAccessToken(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_CreateUserAccessToken_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).CreateUserAccessToken(ctx, req.(*CreateUserAccessTokenRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_DeleteUserAccessToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(DeleteUserAccessTokenRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).DeleteUserAccessToken(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_DeleteUserAccessToken_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).DeleteUserAccessToken(ctx, req.(*DeleteUserAccessTokenRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_ListUserSessions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ListUserSessionsRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).ListUserSessions(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_ListUserSessions_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).ListUserSessions(ctx, req.(*ListUserSessionsRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_RevokeUserSession_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(RevokeUserSessionRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).RevokeUserSession(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_RevokeUserSession_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).RevokeUserSession(ctx, req.(*RevokeUserSessionRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_ListUserWebhooks_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ListUserWebhooksRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).ListUserWebhooks(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_ListUserWebhooks_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).ListUserWebhooks(ctx, req.(*ListUserWebhooksRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_CreateUserWebhook_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(CreateUserWebhookRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).CreateUserWebhook(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_CreateUserWebhook_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).CreateUserWebhook(ctx, req.(*CreateUserWebhookRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_UpdateUserWebhook_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(UpdateUserWebhookRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).UpdateUserWebhook(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_UpdateUserWebhook_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).UpdateUserWebhook(ctx, req.(*UpdateUserWebhookRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_DeleteUserWebhook_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(DeleteUserWebhookRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).DeleteUserWebhook(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_DeleteUserWebhook_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).DeleteUserWebhook(ctx, req.(*DeleteUserWebhookRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_ListUserNotifications_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ListUserNotificationsRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).ListUserNotifications(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_ListUserNotifications_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).ListUserNotifications(ctx, req.(*ListUserNotificationsRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_UpdateUserNotification_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(UpdateUserNotificationRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).UpdateUserNotification(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_UpdateUserNotification_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).UpdateUserNotification(ctx, req.(*UpdateUserNotificationRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _UserService_DeleteUserNotification_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(DeleteUserNotificationRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(UserServiceServer).DeleteUserNotification(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: UserService_DeleteUserNotification_FullMethodName,
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(UserServiceServer).DeleteUserNotification(ctx, req.(*DeleteUserNotificationRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
// UserService_ServiceDesc is the grpc.ServiceDesc for UserService service.
 | 
						|
// It's only intended for direct use with grpc.RegisterService,
 | 
						|
// and not to be introspected or modified (even as a copy)
 | 
						|
var UserService_ServiceDesc = grpc.ServiceDesc{
 | 
						|
	ServiceName: "memos.api.v1.UserService",
 | 
						|
	HandlerType: (*UserServiceServer)(nil),
 | 
						|
	Methods: []grpc.MethodDesc{
 | 
						|
		{
 | 
						|
			MethodName: "ListUsers",
 | 
						|
			Handler:    _UserService_ListUsers_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "GetUser",
 | 
						|
			Handler:    _UserService_GetUser_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "CreateUser",
 | 
						|
			Handler:    _UserService_CreateUser_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "UpdateUser",
 | 
						|
			Handler:    _UserService_UpdateUser_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "DeleteUser",
 | 
						|
			Handler:    _UserService_DeleteUser_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "GetUserAvatar",
 | 
						|
			Handler:    _UserService_GetUserAvatar_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "ListAllUserStats",
 | 
						|
			Handler:    _UserService_ListAllUserStats_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "GetUserStats",
 | 
						|
			Handler:    _UserService_GetUserStats_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "GetUserSetting",
 | 
						|
			Handler:    _UserService_GetUserSetting_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "UpdateUserSetting",
 | 
						|
			Handler:    _UserService_UpdateUserSetting_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "ListUserSettings",
 | 
						|
			Handler:    _UserService_ListUserSettings_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "ListUserAccessTokens",
 | 
						|
			Handler:    _UserService_ListUserAccessTokens_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "CreateUserAccessToken",
 | 
						|
			Handler:    _UserService_CreateUserAccessToken_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "DeleteUserAccessToken",
 | 
						|
			Handler:    _UserService_DeleteUserAccessToken_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "ListUserSessions",
 | 
						|
			Handler:    _UserService_ListUserSessions_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "RevokeUserSession",
 | 
						|
			Handler:    _UserService_RevokeUserSession_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "ListUserWebhooks",
 | 
						|
			Handler:    _UserService_ListUserWebhooks_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "CreateUserWebhook",
 | 
						|
			Handler:    _UserService_CreateUserWebhook_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "UpdateUserWebhook",
 | 
						|
			Handler:    _UserService_UpdateUserWebhook_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "DeleteUserWebhook",
 | 
						|
			Handler:    _UserService_DeleteUserWebhook_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "ListUserNotifications",
 | 
						|
			Handler:    _UserService_ListUserNotifications_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "UpdateUserNotification",
 | 
						|
			Handler:    _UserService_UpdateUserNotification_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "DeleteUserNotification",
 | 
						|
			Handler:    _UserService_DeleteUserNotification_Handler,
 | 
						|
		},
 | 
						|
	},
 | 
						|
	Streams:  []grpc.StreamDesc{},
 | 
						|
	Metadata: "api/v1/user_service.proto",
 | 
						|
}
 |