// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 // protoc (unknown) // source: api/v1/user_service.proto package apiv1 import ( _ "google.golang.org/genproto/googleapis/api/annotations" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" emptypb "google.golang.org/protobuf/types/known/emptypb" fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" timestamppb "google.golang.org/protobuf/types/known/timestamppb" reflect "reflect" sync "sync" unsafe "unsafe" ) const ( // Verify that this generated code is sufficiently up-to-date. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) // Verify that runtime/protoimpl is sufficiently up-to-date. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) // User role enumeration. type User_Role int32 const ( User_ROLE_UNSPECIFIED User_Role = 0 // Admin role with system access. User_ADMIN User_Role = 2 // User role with limited access. User_USER User_Role = 3 ) // Enum value maps for User_Role. var ( User_Role_name = map[int32]string{ 0: "ROLE_UNSPECIFIED", 2: "ADMIN", 3: "USER", } User_Role_value = map[string]int32{ "ROLE_UNSPECIFIED": 0, "ADMIN": 2, "USER": 3, } ) func (x User_Role) Enum() *User_Role { p := new(User_Role) *p = x return p } func (x User_Role) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (User_Role) Descriptor() protoreflect.EnumDescriptor { return file_api_v1_user_service_proto_enumTypes[0].Descriptor() } func (User_Role) Type() protoreflect.EnumType { return &file_api_v1_user_service_proto_enumTypes[0] } func (x User_Role) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use User_Role.Descriptor instead. func (User_Role) EnumDescriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{0, 0} } // Enumeration of user setting keys. type UserSetting_Key int32 const ( UserSetting_KEY_UNSPECIFIED UserSetting_Key = 0 // GENERAL is the key for general user settings. UserSetting_GENERAL UserSetting_Key = 1 // WEBHOOKS is the key for user webhooks. UserSetting_WEBHOOKS UserSetting_Key = 4 ) // Enum value maps for UserSetting_Key. var ( UserSetting_Key_name = map[int32]string{ 0: "KEY_UNSPECIFIED", 1: "GENERAL", 4: "WEBHOOKS", } UserSetting_Key_value = map[string]int32{ "KEY_UNSPECIFIED": 0, "GENERAL": 1, "WEBHOOKS": 4, } ) func (x UserSetting_Key) Enum() *UserSetting_Key { p := new(UserSetting_Key) *p = x return p } func (x UserSetting_Key) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (UserSetting_Key) Descriptor() protoreflect.EnumDescriptor { return file_api_v1_user_service_proto_enumTypes[1].Descriptor() } func (UserSetting_Key) Type() protoreflect.EnumType { return &file_api_v1_user_service_proto_enumTypes[1] } func (x UserSetting_Key) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use UserSetting_Key.Descriptor instead. func (UserSetting_Key) EnumDescriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{11, 0} } type UserNotification_Status int32 const ( UserNotification_STATUS_UNSPECIFIED UserNotification_Status = 0 UserNotification_UNREAD UserNotification_Status = 1 UserNotification_ARCHIVED UserNotification_Status = 2 ) // Enum value maps for UserNotification_Status. var ( UserNotification_Status_name = map[int32]string{ 0: "STATUS_UNSPECIFIED", 1: "UNREAD", 2: "ARCHIVED", } UserNotification_Status_value = map[string]int32{ "STATUS_UNSPECIFIED": 0, "UNREAD": 1, "ARCHIVED": 2, } ) func (x UserNotification_Status) Enum() *UserNotification_Status { p := new(UserNotification_Status) *p = x return p } func (x UserNotification_Status) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (UserNotification_Status) Descriptor() protoreflect.EnumDescriptor { return file_api_v1_user_service_proto_enumTypes[2].Descriptor() } func (UserNotification_Status) Type() protoreflect.EnumType { return &file_api_v1_user_service_proto_enumTypes[2] } func (x UserNotification_Status) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use UserNotification_Status.Descriptor instead. func (UserNotification_Status) EnumDescriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{28, 0} } type UserNotification_Type int32 const ( UserNotification_TYPE_UNSPECIFIED UserNotification_Type = 0 UserNotification_MEMO_COMMENT UserNotification_Type = 1 ) // Enum value maps for UserNotification_Type. var ( UserNotification_Type_name = map[int32]string{ 0: "TYPE_UNSPECIFIED", 1: "MEMO_COMMENT", } UserNotification_Type_value = map[string]int32{ "TYPE_UNSPECIFIED": 0, "MEMO_COMMENT": 1, } ) func (x UserNotification_Type) Enum() *UserNotification_Type { p := new(UserNotification_Type) *p = x return p } func (x UserNotification_Type) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (UserNotification_Type) Descriptor() protoreflect.EnumDescriptor { return file_api_v1_user_service_proto_enumTypes[3].Descriptor() } func (UserNotification_Type) Type() protoreflect.EnumType { return &file_api_v1_user_service_proto_enumTypes[3] } func (x UserNotification_Type) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use UserNotification_Type.Descriptor instead. func (UserNotification_Type) EnumDescriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{28, 1} } type User struct { state protoimpl.MessageState `protogen:"open.v1"` // The resource name of the user. // Format: users/{user} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The role of the user. Role User_Role `protobuf:"varint,2,opt,name=role,proto3,enum=memos.api.v1.User_Role" json:"role,omitempty"` // Required. The unique username for login. Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"` // Optional. The email address of the user. Email string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"` // Optional. The display name of the user. DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` // Optional. The avatar URL of the user. AvatarUrl string `protobuf:"bytes,6,opt,name=avatar_url,json=avatarUrl,proto3" json:"avatar_url,omitempty"` // Optional. The description of the user. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"` // Input only. The password for the user. Password string `protobuf:"bytes,8,opt,name=password,proto3" json:"password,omitempty"` // The state of the user. State State `protobuf:"varint,9,opt,name=state,proto3,enum=memos.api.v1.State" json:"state,omitempty"` // Output only. The creation timestamp. CreateTime *timestamppb.Timestamp `protobuf:"bytes,10,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` // Output only. The last update timestamp. UpdateTime *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *User) Reset() { *x = User{} mi := &file_api_v1_user_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *User) String() string { return protoimpl.X.MessageStringOf(x) } func (*User) ProtoMessage() {} func (x *User) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use User.ProtoReflect.Descriptor instead. func (*User) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{0} } func (x *User) GetName() string { if x != nil { return x.Name } return "" } func (x *User) GetRole() User_Role { if x != nil { return x.Role } return User_ROLE_UNSPECIFIED } func (x *User) GetUsername() string { if x != nil { return x.Username } return "" } func (x *User) GetEmail() string { if x != nil { return x.Email } return "" } func (x *User) GetDisplayName() string { if x != nil { return x.DisplayName } return "" } func (x *User) GetAvatarUrl() string { if x != nil { return x.AvatarUrl } return "" } func (x *User) GetDescription() string { if x != nil { return x.Description } return "" } func (x *User) GetPassword() string { if x != nil { return x.Password } return "" } func (x *User) GetState() State { if x != nil { return x.State } return State_STATE_UNSPECIFIED } func (x *User) GetCreateTime() *timestamppb.Timestamp { if x != nil { return x.CreateTime } return nil } func (x *User) GetUpdateTime() *timestamppb.Timestamp { if x != nil { return x.UpdateTime } return nil } type ListUsersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Optional. The maximum number of users to return. // The service may return fewer than this value. // If unspecified, at most 50 users will be returned. // The maximum value is 1000; values above 1000 will be coerced to 1000. PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Optional. A page token, received from a previous `ListUsers` call. // Provide this to retrieve the subsequent page. PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // Optional. Filter to apply to the list results. // Example: "username == 'steven'" // Supported operators: == // Supported fields: username Filter string `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"` // Optional. If true, show deleted users in the response. ShowDeleted bool `protobuf:"varint,4,opt,name=show_deleted,json=showDeleted,proto3" json:"show_deleted,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListUsersRequest) Reset() { *x = ListUsersRequest{} mi := &file_api_v1_user_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListUsersRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListUsersRequest) ProtoMessage() {} func (x *ListUsersRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListUsersRequest.ProtoReflect.Descriptor instead. func (*ListUsersRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{1} } func (x *ListUsersRequest) GetPageSize() int32 { if x != nil { return x.PageSize } return 0 } func (x *ListUsersRequest) GetPageToken() string { if x != nil { return x.PageToken } return "" } func (x *ListUsersRequest) GetFilter() string { if x != nil { return x.Filter } return "" } func (x *ListUsersRequest) GetShowDeleted() bool { if x != nil { return x.ShowDeleted } return false } type ListUsersResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of users. Users []*User `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"` // A token that can be sent as `page_token` to retrieve the next page. // If this field is omitted, there are no subsequent pages. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // The total count of users (may be approximate). TotalSize int32 `protobuf:"varint,3,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListUsersResponse) Reset() { *x = ListUsersResponse{} mi := &file_api_v1_user_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListUsersResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListUsersResponse) ProtoMessage() {} func (x *ListUsersResponse) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListUsersResponse.ProtoReflect.Descriptor instead. func (*ListUsersResponse) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{2} } func (x *ListUsersResponse) GetUsers() []*User { if x != nil { return x.Users } return nil } func (x *ListUsersResponse) GetNextPageToken() string { if x != nil { return x.NextPageToken } return "" } func (x *ListUsersResponse) GetTotalSize() int32 { if x != nil { return x.TotalSize } return 0 } type GetUserRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the user. // Supports both numeric IDs and username strings: // - users/{id} (e.g., users/101) // - users/{username} (e.g., users/steven) // // Format: users/{id_or_username} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Optional. The fields to return in the response. // If not specified, all fields are returned. ReadMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=read_mask,json=readMask,proto3" json:"read_mask,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *GetUserRequest) Reset() { *x = GetUserRequest{} mi := &file_api_v1_user_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *GetUserRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetUserRequest) ProtoMessage() {} func (x *GetUserRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GetUserRequest.ProtoReflect.Descriptor instead. func (*GetUserRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{3} } func (x *GetUserRequest) GetName() string { if x != nil { return x.Name } return "" } func (x *GetUserRequest) GetReadMask() *fieldmaskpb.FieldMask { if x != nil { return x.ReadMask } return nil } type CreateUserRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The user to create. User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"` // Optional. The user ID to use for this user. // If empty, a unique ID will be generated. // Must match the pattern [a-z0-9-]+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // Optional. If set, validate the request but don't actually create the user. ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` // Optional. An idempotency token that can be used to ensure that multiple // requests to create a user have the same result. RequestId string `protobuf:"bytes,4,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CreateUserRequest) Reset() { *x = CreateUserRequest{} mi := &file_api_v1_user_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *CreateUserRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*CreateUserRequest) ProtoMessage() {} func (x *CreateUserRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use CreateUserRequest.ProtoReflect.Descriptor instead. func (*CreateUserRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{4} } func (x *CreateUserRequest) GetUser() *User { if x != nil { return x.User } return nil } func (x *CreateUserRequest) GetUserId() string { if x != nil { return x.UserId } return "" } func (x *CreateUserRequest) GetValidateOnly() bool { if x != nil { return x.ValidateOnly } return false } func (x *CreateUserRequest) GetRequestId() string { if x != nil { return x.RequestId } return "" } type UpdateUserRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The user to update. User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"` // Required. The list of fields to update. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` // Optional. If set to true, allows updating sensitive fields. AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UpdateUserRequest) Reset() { *x = UpdateUserRequest{} mi := &file_api_v1_user_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UpdateUserRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*UpdateUserRequest) ProtoMessage() {} func (x *UpdateUserRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UpdateUserRequest.ProtoReflect.Descriptor instead. func (*UpdateUserRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{5} } func (x *UpdateUserRequest) GetUser() *User { if x != nil { return x.User } return nil } func (x *UpdateUserRequest) GetUpdateMask() *fieldmaskpb.FieldMask { if x != nil { return x.UpdateMask } return nil } func (x *UpdateUserRequest) GetAllowMissing() bool { if x != nil { return x.AllowMissing } return false } type DeleteUserRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the user to delete. // Format: users/{user} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Optional. If set to true, the user will be deleted even if they have associated data. Force bool `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *DeleteUserRequest) Reset() { *x = DeleteUserRequest{} mi := &file_api_v1_user_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *DeleteUserRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*DeleteUserRequest) ProtoMessage() {} func (x *DeleteUserRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use DeleteUserRequest.ProtoReflect.Descriptor instead. func (*DeleteUserRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{6} } func (x *DeleteUserRequest) GetName() string { if x != nil { return x.Name } return "" } func (x *DeleteUserRequest) GetForce() bool { if x != nil { return x.Force } return false } // User statistics messages type UserStats struct { state protoimpl.MessageState `protogen:"open.v1"` // The resource name of the user whose stats these are. // Format: users/{user} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The timestamps when the memos were displayed. MemoDisplayTimestamps []*timestamppb.Timestamp `protobuf:"bytes,2,rep,name=memo_display_timestamps,json=memoDisplayTimestamps,proto3" json:"memo_display_timestamps,omitempty"` // The stats of memo types. MemoTypeStats *UserStats_MemoTypeStats `protobuf:"bytes,3,opt,name=memo_type_stats,json=memoTypeStats,proto3" json:"memo_type_stats,omitempty"` // The count of tags. TagCount map[string]int32 `protobuf:"bytes,4,rep,name=tag_count,json=tagCount,proto3" json:"tag_count,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` // The pinned memos of the user. PinnedMemos []string `protobuf:"bytes,5,rep,name=pinned_memos,json=pinnedMemos,proto3" json:"pinned_memos,omitempty"` // Total memo count. TotalMemoCount int32 `protobuf:"varint,6,opt,name=total_memo_count,json=totalMemoCount,proto3" json:"total_memo_count,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserStats) Reset() { *x = UserStats{} mi := &file_api_v1_user_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UserStats) String() string { return protoimpl.X.MessageStringOf(x) } func (*UserStats) ProtoMessage() {} func (x *UserStats) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UserStats.ProtoReflect.Descriptor instead. func (*UserStats) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{7} } func (x *UserStats) GetName() string { if x != nil { return x.Name } return "" } func (x *UserStats) GetMemoDisplayTimestamps() []*timestamppb.Timestamp { if x != nil { return x.MemoDisplayTimestamps } return nil } func (x *UserStats) GetMemoTypeStats() *UserStats_MemoTypeStats { if x != nil { return x.MemoTypeStats } return nil } func (x *UserStats) GetTagCount() map[string]int32 { if x != nil { return x.TagCount } return nil } func (x *UserStats) GetPinnedMemos() []string { if x != nil { return x.PinnedMemos } return nil } func (x *UserStats) GetTotalMemoCount() int32 { if x != nil { return x.TotalMemoCount } return 0 } type GetUserStatsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the user. // Format: users/{user} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *GetUserStatsRequest) Reset() { *x = GetUserStatsRequest{} mi := &file_api_v1_user_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *GetUserStatsRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetUserStatsRequest) ProtoMessage() {} func (x *GetUserStatsRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GetUserStatsRequest.ProtoReflect.Descriptor instead. func (*GetUserStatsRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{8} } func (x *GetUserStatsRequest) GetName() string { if x != nil { return x.Name } return "" } type ListAllUserStatsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListAllUserStatsRequest) Reset() { *x = ListAllUserStatsRequest{} mi := &file_api_v1_user_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListAllUserStatsRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListAllUserStatsRequest) ProtoMessage() {} func (x *ListAllUserStatsRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListAllUserStatsRequest.ProtoReflect.Descriptor instead. func (*ListAllUserStatsRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{9} } type ListAllUserStatsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of user statistics. Stats []*UserStats `protobuf:"bytes,1,rep,name=stats,proto3" json:"stats,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListAllUserStatsResponse) Reset() { *x = ListAllUserStatsResponse{} mi := &file_api_v1_user_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListAllUserStatsResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListAllUserStatsResponse) ProtoMessage() {} func (x *ListAllUserStatsResponse) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListAllUserStatsResponse.ProtoReflect.Descriptor instead. func (*ListAllUserStatsResponse) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{10} } func (x *ListAllUserStatsResponse) GetStats() []*UserStats { if x != nil { return x.Stats } return nil } // User settings message type UserSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // The name of the user setting. // Format: users/{user}/settings/{setting}, {setting} is the key for the setting. // For example, "users/123/settings/GENERAL" for general settings. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Types that are valid to be assigned to Value: // // *UserSetting_GeneralSetting_ // *UserSetting_WebhooksSetting_ Value isUserSetting_Value `protobuf_oneof:"value"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserSetting) Reset() { *x = UserSetting{} mi := &file_api_v1_user_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UserSetting) String() string { return protoimpl.X.MessageStringOf(x) } func (*UserSetting) ProtoMessage() {} func (x *UserSetting) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UserSetting.ProtoReflect.Descriptor instead. func (*UserSetting) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{11} } func (x *UserSetting) GetName() string { if x != nil { return x.Name } return "" } func (x *UserSetting) GetValue() isUserSetting_Value { if x != nil { return x.Value } return nil } func (x *UserSetting) GetGeneralSetting() *UserSetting_GeneralSetting { if x != nil { if x, ok := x.Value.(*UserSetting_GeneralSetting_); ok { return x.GeneralSetting } } return nil } func (x *UserSetting) GetWebhooksSetting() *UserSetting_WebhooksSetting { if x != nil { if x, ok := x.Value.(*UserSetting_WebhooksSetting_); ok { return x.WebhooksSetting } } return nil } type isUserSetting_Value interface { isUserSetting_Value() } type UserSetting_GeneralSetting_ struct { GeneralSetting *UserSetting_GeneralSetting `protobuf:"bytes,2,opt,name=general_setting,json=generalSetting,proto3,oneof"` } type UserSetting_WebhooksSetting_ struct { WebhooksSetting *UserSetting_WebhooksSetting `protobuf:"bytes,5,opt,name=webhooks_setting,json=webhooksSetting,proto3,oneof"` } func (*UserSetting_GeneralSetting_) isUserSetting_Value() {} func (*UserSetting_WebhooksSetting_) isUserSetting_Value() {} type GetUserSettingRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the user setting. // Format: users/{user}/settings/{setting} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *GetUserSettingRequest) Reset() { *x = GetUserSettingRequest{} mi := &file_api_v1_user_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *GetUserSettingRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetUserSettingRequest) ProtoMessage() {} func (x *GetUserSettingRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GetUserSettingRequest.ProtoReflect.Descriptor instead. func (*GetUserSettingRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{12} } func (x *GetUserSettingRequest) GetName() string { if x != nil { return x.Name } return "" } type UpdateUserSettingRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The user setting to update. Setting *UserSetting `protobuf:"bytes,1,opt,name=setting,proto3" json:"setting,omitempty"` // Required. The list of fields to update. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UpdateUserSettingRequest) Reset() { *x = UpdateUserSettingRequest{} mi := &file_api_v1_user_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UpdateUserSettingRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*UpdateUserSettingRequest) ProtoMessage() {} func (x *UpdateUserSettingRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UpdateUserSettingRequest.ProtoReflect.Descriptor instead. func (*UpdateUserSettingRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{13} } func (x *UpdateUserSettingRequest) GetSetting() *UserSetting { if x != nil { return x.Setting } return nil } func (x *UpdateUserSettingRequest) GetUpdateMask() *fieldmaskpb.FieldMask { if x != nil { return x.UpdateMask } return nil } // Request message for ListUserSettings method. type ListUserSettingsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The parent resource whose settings will be listed. // Format: users/{user} Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // Optional. The maximum number of settings to return. // The service may return fewer than this value. // If unspecified, at most 50 settings will be returned. // The maximum value is 1000; values above 1000 will be coerced to 1000. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Optional. A page token, received from a previous `ListUserSettings` call. // Provide this to retrieve the subsequent page. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListUserSettingsRequest) Reset() { *x = ListUserSettingsRequest{} mi := &file_api_v1_user_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListUserSettingsRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListUserSettingsRequest) ProtoMessage() {} func (x *ListUserSettingsRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListUserSettingsRequest.ProtoReflect.Descriptor instead. func (*ListUserSettingsRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{14} } func (x *ListUserSettingsRequest) GetParent() string { if x != nil { return x.Parent } return "" } func (x *ListUserSettingsRequest) GetPageSize() int32 { if x != nil { return x.PageSize } return 0 } func (x *ListUserSettingsRequest) GetPageToken() string { if x != nil { return x.PageToken } return "" } // Response message for ListUserSettings method. type ListUserSettingsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of user settings. Settings []*UserSetting `protobuf:"bytes,1,rep,name=settings,proto3" json:"settings,omitempty"` // A token that can be sent as `page_token` to retrieve the next page. // If this field is omitted, there are no subsequent pages. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // The total count of settings (may be approximate). TotalSize int32 `protobuf:"varint,3,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListUserSettingsResponse) Reset() { *x = ListUserSettingsResponse{} mi := &file_api_v1_user_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListUserSettingsResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListUserSettingsResponse) ProtoMessage() {} func (x *ListUserSettingsResponse) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListUserSettingsResponse.ProtoReflect.Descriptor instead. func (*ListUserSettingsResponse) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{15} } func (x *ListUserSettingsResponse) GetSettings() []*UserSetting { if x != nil { return x.Settings } return nil } func (x *ListUserSettingsResponse) GetNextPageToken() string { if x != nil { return x.NextPageToken } return "" } func (x *ListUserSettingsResponse) GetTotalSize() int32 { if x != nil { return x.TotalSize } return 0 } // PersonalAccessToken represents a long-lived token for API/script access. // PATs are distinct from short-lived JWT access tokens used for session authentication. type PersonalAccessToken struct { state protoimpl.MessageState `protogen:"open.v1"` // The resource name of the personal access token. // Format: users/{user}/personalAccessTokens/{personal_access_token} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The description of the token. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` // Output only. The creation timestamp. CreatedAt *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // Optional. The expiration timestamp. ExpiresAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"` // Output only. The last used timestamp. LastUsedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=last_used_at,json=lastUsedAt,proto3" json:"last_used_at,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *PersonalAccessToken) Reset() { *x = PersonalAccessToken{} mi := &file_api_v1_user_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *PersonalAccessToken) String() string { return protoimpl.X.MessageStringOf(x) } func (*PersonalAccessToken) ProtoMessage() {} func (x *PersonalAccessToken) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use PersonalAccessToken.ProtoReflect.Descriptor instead. func (*PersonalAccessToken) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{16} } func (x *PersonalAccessToken) GetName() string { if x != nil { return x.Name } return "" } func (x *PersonalAccessToken) GetDescription() string { if x != nil { return x.Description } return "" } func (x *PersonalAccessToken) GetCreatedAt() *timestamppb.Timestamp { if x != nil { return x.CreatedAt } return nil } func (x *PersonalAccessToken) GetExpiresAt() *timestamppb.Timestamp { if x != nil { return x.ExpiresAt } return nil } func (x *PersonalAccessToken) GetLastUsedAt() *timestamppb.Timestamp { if x != nil { return x.LastUsedAt } return nil } type ListPersonalAccessTokensRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The parent resource whose personal access tokens will be listed. // Format: users/{user} Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // Optional. The maximum number of tokens to return. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Optional. A page token for pagination. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListPersonalAccessTokensRequest) Reset() { *x = ListPersonalAccessTokensRequest{} mi := &file_api_v1_user_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListPersonalAccessTokensRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListPersonalAccessTokensRequest) ProtoMessage() {} func (x *ListPersonalAccessTokensRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListPersonalAccessTokensRequest.ProtoReflect.Descriptor instead. func (*ListPersonalAccessTokensRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{17} } func (x *ListPersonalAccessTokensRequest) GetParent() string { if x != nil { return x.Parent } return "" } func (x *ListPersonalAccessTokensRequest) GetPageSize() int32 { if x != nil { return x.PageSize } return 0 } func (x *ListPersonalAccessTokensRequest) GetPageToken() string { if x != nil { return x.PageToken } return "" } type ListPersonalAccessTokensResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of personal access tokens. PersonalAccessTokens []*PersonalAccessToken `protobuf:"bytes,1,rep,name=personal_access_tokens,json=personalAccessTokens,proto3" json:"personal_access_tokens,omitempty"` // A token for the next page of results. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // The total count of personal access tokens. TotalSize int32 `protobuf:"varint,3,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListPersonalAccessTokensResponse) Reset() { *x = ListPersonalAccessTokensResponse{} mi := &file_api_v1_user_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListPersonalAccessTokensResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListPersonalAccessTokensResponse) ProtoMessage() {} func (x *ListPersonalAccessTokensResponse) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListPersonalAccessTokensResponse.ProtoReflect.Descriptor instead. func (*ListPersonalAccessTokensResponse) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{18} } func (x *ListPersonalAccessTokensResponse) GetPersonalAccessTokens() []*PersonalAccessToken { if x != nil { return x.PersonalAccessTokens } return nil } func (x *ListPersonalAccessTokensResponse) GetNextPageToken() string { if x != nil { return x.NextPageToken } return "" } func (x *ListPersonalAccessTokensResponse) GetTotalSize() int32 { if x != nil { return x.TotalSize } return 0 } type CreatePersonalAccessTokenRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The parent resource where this token will be created. // Format: users/{user} Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // Optional. Description of the personal access token. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` // Optional. Expiration duration in days (0 = never expires). ExpiresInDays int32 `protobuf:"varint,3,opt,name=expires_in_days,json=expiresInDays,proto3" json:"expires_in_days,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CreatePersonalAccessTokenRequest) Reset() { *x = CreatePersonalAccessTokenRequest{} mi := &file_api_v1_user_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *CreatePersonalAccessTokenRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*CreatePersonalAccessTokenRequest) ProtoMessage() {} func (x *CreatePersonalAccessTokenRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use CreatePersonalAccessTokenRequest.ProtoReflect.Descriptor instead. func (*CreatePersonalAccessTokenRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{19} } func (x *CreatePersonalAccessTokenRequest) GetParent() string { if x != nil { return x.Parent } return "" } func (x *CreatePersonalAccessTokenRequest) GetDescription() string { if x != nil { return x.Description } return "" } func (x *CreatePersonalAccessTokenRequest) GetExpiresInDays() int32 { if x != nil { return x.ExpiresInDays } return 0 } type CreatePersonalAccessTokenResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The personal access token metadata. PersonalAccessToken *PersonalAccessToken `protobuf:"bytes,1,opt,name=personal_access_token,json=personalAccessToken,proto3" json:"personal_access_token,omitempty"` // The actual token value - only returned on creation. // This is the only time the token value will be visible. Token string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CreatePersonalAccessTokenResponse) Reset() { *x = CreatePersonalAccessTokenResponse{} mi := &file_api_v1_user_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *CreatePersonalAccessTokenResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*CreatePersonalAccessTokenResponse) ProtoMessage() {} func (x *CreatePersonalAccessTokenResponse) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use CreatePersonalAccessTokenResponse.ProtoReflect.Descriptor instead. func (*CreatePersonalAccessTokenResponse) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{20} } func (x *CreatePersonalAccessTokenResponse) GetPersonalAccessToken() *PersonalAccessToken { if x != nil { return x.PersonalAccessToken } return nil } func (x *CreatePersonalAccessTokenResponse) GetToken() string { if x != nil { return x.Token } return "" } type DeletePersonalAccessTokenRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the personal access token to delete. // Format: users/{user}/personalAccessTokens/{personal_access_token} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *DeletePersonalAccessTokenRequest) Reset() { *x = DeletePersonalAccessTokenRequest{} mi := &file_api_v1_user_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *DeletePersonalAccessTokenRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*DeletePersonalAccessTokenRequest) ProtoMessage() {} func (x *DeletePersonalAccessTokenRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use DeletePersonalAccessTokenRequest.ProtoReflect.Descriptor instead. func (*DeletePersonalAccessTokenRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{21} } func (x *DeletePersonalAccessTokenRequest) GetName() string { if x != nil { return x.Name } return "" } // UserWebhook represents a webhook owned by a user. type UserWebhook struct { state protoimpl.MessageState `protogen:"open.v1"` // The name of the webhook. // Format: users/{user}/webhooks/{webhook} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The URL to send the webhook to. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` // Optional. Human-readable name for the webhook. DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` // The creation time of the webhook. CreateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` // The last update time of the webhook. UpdateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserWebhook) Reset() { *x = UserWebhook{} mi := &file_api_v1_user_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UserWebhook) String() string { return protoimpl.X.MessageStringOf(x) } func (*UserWebhook) ProtoMessage() {} func (x *UserWebhook) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UserWebhook.ProtoReflect.Descriptor instead. func (*UserWebhook) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{22} } func (x *UserWebhook) GetName() string { if x != nil { return x.Name } return "" } func (x *UserWebhook) GetUrl() string { if x != nil { return x.Url } return "" } func (x *UserWebhook) GetDisplayName() string { if x != nil { return x.DisplayName } return "" } func (x *UserWebhook) GetCreateTime() *timestamppb.Timestamp { if x != nil { return x.CreateTime } return nil } func (x *UserWebhook) GetUpdateTime() *timestamppb.Timestamp { if x != nil { return x.UpdateTime } return nil } type ListUserWebhooksRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The parent user resource. // Format: users/{user} Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListUserWebhooksRequest) Reset() { *x = ListUserWebhooksRequest{} mi := &file_api_v1_user_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListUserWebhooksRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListUserWebhooksRequest) ProtoMessage() {} func (x *ListUserWebhooksRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListUserWebhooksRequest.ProtoReflect.Descriptor instead. func (*ListUserWebhooksRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{23} } func (x *ListUserWebhooksRequest) GetParent() string { if x != nil { return x.Parent } return "" } type ListUserWebhooksResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of webhooks. Webhooks []*UserWebhook `protobuf:"bytes,1,rep,name=webhooks,proto3" json:"webhooks,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListUserWebhooksResponse) Reset() { *x = ListUserWebhooksResponse{} mi := &file_api_v1_user_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListUserWebhooksResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListUserWebhooksResponse) ProtoMessage() {} func (x *ListUserWebhooksResponse) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListUserWebhooksResponse.ProtoReflect.Descriptor instead. func (*ListUserWebhooksResponse) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{24} } func (x *ListUserWebhooksResponse) GetWebhooks() []*UserWebhook { if x != nil { return x.Webhooks } return nil } type CreateUserWebhookRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The parent user resource. // Format: users/{user} Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // The webhook to create. Webhook *UserWebhook `protobuf:"bytes,2,opt,name=webhook,proto3" json:"webhook,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CreateUserWebhookRequest) Reset() { *x = CreateUserWebhookRequest{} mi := &file_api_v1_user_service_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *CreateUserWebhookRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*CreateUserWebhookRequest) ProtoMessage() {} func (x *CreateUserWebhookRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use CreateUserWebhookRequest.ProtoReflect.Descriptor instead. func (*CreateUserWebhookRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{25} } func (x *CreateUserWebhookRequest) GetParent() string { if x != nil { return x.Parent } return "" } func (x *CreateUserWebhookRequest) GetWebhook() *UserWebhook { if x != nil { return x.Webhook } return nil } type UpdateUserWebhookRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The webhook to update. Webhook *UserWebhook `protobuf:"bytes,1,opt,name=webhook,proto3" json:"webhook,omitempty"` // The list of fields to update. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UpdateUserWebhookRequest) Reset() { *x = UpdateUserWebhookRequest{} mi := &file_api_v1_user_service_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UpdateUserWebhookRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*UpdateUserWebhookRequest) ProtoMessage() {} func (x *UpdateUserWebhookRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UpdateUserWebhookRequest.ProtoReflect.Descriptor instead. func (*UpdateUserWebhookRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{26} } func (x *UpdateUserWebhookRequest) GetWebhook() *UserWebhook { if x != nil { return x.Webhook } return nil } func (x *UpdateUserWebhookRequest) GetUpdateMask() *fieldmaskpb.FieldMask { if x != nil { return x.UpdateMask } return nil } type DeleteUserWebhookRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The name of the webhook to delete. // Format: users/{user}/webhooks/{webhook} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *DeleteUserWebhookRequest) Reset() { *x = DeleteUserWebhookRequest{} mi := &file_api_v1_user_service_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *DeleteUserWebhookRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*DeleteUserWebhookRequest) ProtoMessage() {} func (x *DeleteUserWebhookRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use DeleteUserWebhookRequest.ProtoReflect.Descriptor instead. func (*DeleteUserWebhookRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{27} } func (x *DeleteUserWebhookRequest) GetName() string { if x != nil { return x.Name } return "" } type UserNotification struct { state protoimpl.MessageState `protogen:"open.v1"` // The resource name of the notification. // Format: users/{user}/notifications/{notification} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The sender of the notification. // Format: users/{user} Sender string `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"` // The status of the notification. Status UserNotification_Status `protobuf:"varint,3,opt,name=status,proto3,enum=memos.api.v1.UserNotification_Status" json:"status,omitempty"` // The creation timestamp. CreateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` // The type of the notification. Type UserNotification_Type `protobuf:"varint,5,opt,name=type,proto3,enum=memos.api.v1.UserNotification_Type" json:"type,omitempty"` // The activity ID associated with this notification. ActivityId *int32 `protobuf:"varint,6,opt,name=activity_id,json=activityId,proto3,oneof" json:"activity_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserNotification) Reset() { *x = UserNotification{} mi := &file_api_v1_user_service_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UserNotification) String() string { return protoimpl.X.MessageStringOf(x) } func (*UserNotification) ProtoMessage() {} func (x *UserNotification) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UserNotification.ProtoReflect.Descriptor instead. func (*UserNotification) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{28} } func (x *UserNotification) GetName() string { if x != nil { return x.Name } return "" } func (x *UserNotification) GetSender() string { if x != nil { return x.Sender } return "" } func (x *UserNotification) GetStatus() UserNotification_Status { if x != nil { return x.Status } return UserNotification_STATUS_UNSPECIFIED } func (x *UserNotification) GetCreateTime() *timestamppb.Timestamp { if x != nil { return x.CreateTime } return nil } func (x *UserNotification) GetType() UserNotification_Type { if x != nil { return x.Type } return UserNotification_TYPE_UNSPECIFIED } func (x *UserNotification) GetActivityId() int32 { if x != nil && x.ActivityId != nil { return *x.ActivityId } return 0 } type ListUserNotificationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The parent user resource. // Format: users/{user} Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` Filter string `protobuf:"bytes,4,opt,name=filter,proto3" json:"filter,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListUserNotificationsRequest) Reset() { *x = ListUserNotificationsRequest{} mi := &file_api_v1_user_service_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListUserNotificationsRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListUserNotificationsRequest) ProtoMessage() {} func (x *ListUserNotificationsRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListUserNotificationsRequest.ProtoReflect.Descriptor instead. func (*ListUserNotificationsRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{29} } func (x *ListUserNotificationsRequest) GetParent() string { if x != nil { return x.Parent } return "" } func (x *ListUserNotificationsRequest) GetPageSize() int32 { if x != nil { return x.PageSize } return 0 } func (x *ListUserNotificationsRequest) GetPageToken() string { if x != nil { return x.PageToken } return "" } func (x *ListUserNotificationsRequest) GetFilter() string { if x != nil { return x.Filter } return "" } type ListUserNotificationsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` Notifications []*UserNotification `protobuf:"bytes,1,rep,name=notifications,proto3" json:"notifications,omitempty"` NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListUserNotificationsResponse) Reset() { *x = ListUserNotificationsResponse{} mi := &file_api_v1_user_service_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *ListUserNotificationsResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ListUserNotificationsResponse) ProtoMessage() {} func (x *ListUserNotificationsResponse) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ListUserNotificationsResponse.ProtoReflect.Descriptor instead. func (*ListUserNotificationsResponse) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{30} } func (x *ListUserNotificationsResponse) GetNotifications() []*UserNotification { if x != nil { return x.Notifications } return nil } func (x *ListUserNotificationsResponse) GetNextPageToken() string { if x != nil { return x.NextPageToken } return "" } type UpdateUserNotificationRequest struct { state protoimpl.MessageState `protogen:"open.v1"` Notification *UserNotification `protobuf:"bytes,1,opt,name=notification,proto3" json:"notification,omitempty"` UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UpdateUserNotificationRequest) Reset() { *x = UpdateUserNotificationRequest{} mi := &file_api_v1_user_service_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UpdateUserNotificationRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*UpdateUserNotificationRequest) ProtoMessage() {} func (x *UpdateUserNotificationRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UpdateUserNotificationRequest.ProtoReflect.Descriptor instead. func (*UpdateUserNotificationRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{31} } func (x *UpdateUserNotificationRequest) GetNotification() *UserNotification { if x != nil { return x.Notification } return nil } func (x *UpdateUserNotificationRequest) GetUpdateMask() *fieldmaskpb.FieldMask { if x != nil { return x.UpdateMask } return nil } type DeleteUserNotificationRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Format: users/{user}/notifications/{notification} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *DeleteUserNotificationRequest) Reset() { *x = DeleteUserNotificationRequest{} mi := &file_api_v1_user_service_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *DeleteUserNotificationRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*DeleteUserNotificationRequest) ProtoMessage() {} func (x *DeleteUserNotificationRequest) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use DeleteUserNotificationRequest.ProtoReflect.Descriptor instead. func (*DeleteUserNotificationRequest) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{32} } func (x *DeleteUserNotificationRequest) GetName() string { if x != nil { return x.Name } return "" } // Memo type statistics. type UserStats_MemoTypeStats struct { state protoimpl.MessageState `protogen:"open.v1"` LinkCount int32 `protobuf:"varint,1,opt,name=link_count,json=linkCount,proto3" json:"link_count,omitempty"` CodeCount int32 `protobuf:"varint,2,opt,name=code_count,json=codeCount,proto3" json:"code_count,omitempty"` TodoCount int32 `protobuf:"varint,3,opt,name=todo_count,json=todoCount,proto3" json:"todo_count,omitempty"` UndoCount int32 `protobuf:"varint,4,opt,name=undo_count,json=undoCount,proto3" json:"undo_count,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserStats_MemoTypeStats) Reset() { *x = UserStats_MemoTypeStats{} mi := &file_api_v1_user_service_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UserStats_MemoTypeStats) String() string { return protoimpl.X.MessageStringOf(x) } func (*UserStats_MemoTypeStats) ProtoMessage() {} func (x *UserStats_MemoTypeStats) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UserStats_MemoTypeStats.ProtoReflect.Descriptor instead. func (*UserStats_MemoTypeStats) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{7, 1} } func (x *UserStats_MemoTypeStats) GetLinkCount() int32 { if x != nil { return x.LinkCount } return 0 } func (x *UserStats_MemoTypeStats) GetCodeCount() int32 { if x != nil { return x.CodeCount } return 0 } func (x *UserStats_MemoTypeStats) GetTodoCount() int32 { if x != nil { return x.TodoCount } return 0 } func (x *UserStats_MemoTypeStats) GetUndoCount() int32 { if x != nil { return x.UndoCount } return 0 } // General user settings configuration. type UserSetting_GeneralSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // The preferred locale of the user. Locale string `protobuf:"bytes,1,opt,name=locale,proto3" json:"locale,omitempty"` // The default visibility of the memo. MemoVisibility string `protobuf:"bytes,3,opt,name=memo_visibility,json=memoVisibility,proto3" json:"memo_visibility,omitempty"` // The preferred theme of the user. // This references a CSS file in the web/public/themes/ directory. // If not set, the default theme will be used. Theme string `protobuf:"bytes,4,opt,name=theme,proto3" json:"theme,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserSetting_GeneralSetting) Reset() { *x = UserSetting_GeneralSetting{} mi := &file_api_v1_user_service_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UserSetting_GeneralSetting) String() string { return protoimpl.X.MessageStringOf(x) } func (*UserSetting_GeneralSetting) ProtoMessage() {} func (x *UserSetting_GeneralSetting) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UserSetting_GeneralSetting.ProtoReflect.Descriptor instead. func (*UserSetting_GeneralSetting) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{11, 0} } func (x *UserSetting_GeneralSetting) GetLocale() string { if x != nil { return x.Locale } return "" } func (x *UserSetting_GeneralSetting) GetMemoVisibility() string { if x != nil { return x.MemoVisibility } return "" } func (x *UserSetting_GeneralSetting) GetTheme() string { if x != nil { return x.Theme } return "" } // User webhooks configuration. type UserSetting_WebhooksSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // List of user webhooks. Webhooks []*UserWebhook `protobuf:"bytes,1,rep,name=webhooks,proto3" json:"webhooks,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserSetting_WebhooksSetting) Reset() { *x = UserSetting_WebhooksSetting{} mi := &file_api_v1_user_service_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } func (x *UserSetting_WebhooksSetting) String() string { return protoimpl.X.MessageStringOf(x) } func (*UserSetting_WebhooksSetting) ProtoMessage() {} func (x *UserSetting_WebhooksSetting) ProtoReflect() protoreflect.Message { mi := &file_api_v1_user_service_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UserSetting_WebhooksSetting.ProtoReflect.Descriptor instead. func (*UserSetting_WebhooksSetting) Descriptor() ([]byte, []int) { return file_api_v1_user_service_proto_rawDescGZIP(), []int{11, 1} } func (x *UserSetting_WebhooksSetting) GetWebhooks() []*UserWebhook { if x != nil { return x.Webhooks } return nil } var File_api_v1_user_service_proto protoreflect.FileDescriptor const file_api_v1_user_service_proto_rawDesc = "" + "\n" + "\x19api/v1/user_service.proto\x12\fmemos.api.v1\x1a\x13api/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc1\x04\n" + "\x04User\x12\x17\n" + "\x04name\x18\x01 \x01(\tB\x03\xe0A\bR\x04name\x120\n" + "\x04role\x18\x02 \x01(\x0e2\x17.memos.api.v1.User.RoleB\x03\xe0A\x02R\x04role\x12\x1f\n" + "\busername\x18\x03 \x01(\tB\x03\xe0A\x02R\busername\x12\x19\n" + "\x05email\x18\x04 \x01(\tB\x03\xe0A\x01R\x05email\x12&\n" + "\fdisplay_name\x18\x05 \x01(\tB\x03\xe0A\x01R\vdisplayName\x12\"\n" + "\n" + "avatar_url\x18\x06 \x01(\tB\x03\xe0A\x01R\tavatarUrl\x12%\n" + "\vdescription\x18\a \x01(\tB\x03\xe0A\x01R\vdescription\x12\x1f\n" + "\bpassword\x18\b \x01(\tB\x03\xe0A\x04R\bpassword\x12.\n" + "\x05state\x18\t \x01(\x0e2\x13.memos.api.v1.StateB\x03\xe0A\x02R\x05state\x12@\n" + "\vcreate_time\x18\n" + " \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x03R\n" + "createTime\x12@\n" + "\vupdate_time\x18\v \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x03R\n" + "updateTime\"1\n" + "\x04Role\x12\x14\n" + "\x10ROLE_UNSPECIFIED\x10\x00\x12\t\n" + "\x05ADMIN\x10\x02\x12\b\n" + "\x04USER\x10\x03:7\xeaA4\n" + "\x11memos.api.v1/User\x12\fusers/{user}\x1a\x04name*\x05users2\x04user\"\x9d\x01\n" + "\x10ListUsersRequest\x12 \n" + "\tpage_size\x18\x01 \x01(\x05B\x03\xe0A\x01R\bpageSize\x12\"\n" + "\n" + "page_token\x18\x02 \x01(\tB\x03\xe0A\x01R\tpageToken\x12\x1b\n" + "\x06filter\x18\x03 \x01(\tB\x03\xe0A\x01R\x06filter\x12&\n" + "\fshow_deleted\x18\x04 \x01(\bB\x03\xe0A\x01R\vshowDeleted\"\x84\x01\n" + "\x11ListUsersResponse\x12(\n" + "\x05users\x18\x01 \x03(\v2\x12.memos.api.v1.UserR\x05users\x12&\n" + "\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken\x12\x1d\n" + "\n" + "total_size\x18\x03 \x01(\x05R\ttotalSize\"}\n" + "\x0eGetUserRequest\x12-\n" + "\x04name\x18\x01 \x01(\tB\x19\xe0A\x02\xfaA\x13\n" + "\x11memos.api.v1/UserR\x04name\x12<\n" + "\tread_mask\x18\x02 \x01(\v2\x1a.google.protobuf.FieldMaskB\x03\xe0A\x01R\breadMask\"\xaf\x01\n" + "\x11CreateUserRequest\x12.\n" + "\x04user\x18\x01 \x01(\v2\x12.memos.api.v1.UserB\x06\xe0A\x02\xe0A\x04R\x04user\x12\x1c\n" + "\auser_id\x18\x02 \x01(\tB\x03\xe0A\x01R\x06userId\x12(\n" + "\rvalidate_only\x18\x03 \x01(\bB\x03\xe0A\x01R\fvalidateOnly\x12\"\n" + "\n" + "request_id\x18\x04 \x01(\tB\x03\xe0A\x01R\trequestId\"\xac\x01\n" + "\x11UpdateUserRequest\x12+\n" + "\x04user\x18\x01 \x01(\v2\x12.memos.api.v1.UserB\x03\xe0A\x02R\x04user\x12@\n" + "\vupdate_mask\x18\x02 \x01(\v2\x1a.google.protobuf.FieldMaskB\x03\xe0A\x02R\n" + "updateMask\x12(\n" + "\rallow_missing\x18\x03 \x01(\bB\x03\xe0A\x01R\fallowMissing\"]\n" + "\x11DeleteUserRequest\x12-\n" + "\x04name\x18\x01 \x01(\tB\x19\xe0A\x02\xfaA\x13\n" + "\x11memos.api.v1/UserR\x04name\x12\x19\n" + "\x05force\x18\x02 \x01(\bB\x03\xe0A\x01R\x05force\"\xe4\x04\n" + "\tUserStats\x12\x17\n" + "\x04name\x18\x01 \x01(\tB\x03\xe0A\bR\x04name\x12R\n" + "\x17memo_display_timestamps\x18\x02 \x03(\v2\x1a.google.protobuf.TimestampR\x15memoDisplayTimestamps\x12M\n" + "\x0fmemo_type_stats\x18\x03 \x01(\v2%.memos.api.v1.UserStats.MemoTypeStatsR\rmemoTypeStats\x12B\n" + "\ttag_count\x18\x04 \x03(\v2%.memos.api.v1.UserStats.TagCountEntryR\btagCount\x12!\n" + "\fpinned_memos\x18\x05 \x03(\tR\vpinnedMemos\x12(\n" + "\x10total_memo_count\x18\x06 \x01(\x05R\x0etotalMemoCount\x1a;\n" + "\rTagCountEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + "\x05value\x18\x02 \x01(\x05R\x05value:\x028\x01\x1a\x8b\x01\n" + "\rMemoTypeStats\x12\x1d\n" + "\n" + "link_count\x18\x01 \x01(\x05R\tlinkCount\x12\x1d\n" + "\n" + "code_count\x18\x02 \x01(\x05R\tcodeCount\x12\x1d\n" + "\n" + "todo_count\x18\x03 \x01(\x05R\ttodoCount\x12\x1d\n" + "\n" + "undo_count\x18\x04 \x01(\x05R\tundoCount:?\xeaA<\n" + "\x16memos.api.v1/UserStats\x12\fusers/{user}*\tuserStats2\tuserStats\"D\n" + "\x13GetUserStatsRequest\x12-\n" + "\x04name\x18\x01 \x01(\tB\x19\xe0A\x02\xfaA\x13\n" + "\x11memos.api.v1/UserR\x04name\"\x19\n" + "\x17ListAllUserStatsRequest\"I\n" + "\x18ListAllUserStatsResponse\x12-\n" + "\x05stats\x18\x01 \x03(\v2\x17.memos.api.v1.UserStatsR\x05stats\"\xb0\x04\n" + "\vUserSetting\x12\x17\n" + "\x04name\x18\x01 \x01(\tB\x03\xe0A\bR\x04name\x12S\n" + "\x0fgeneral_setting\x18\x02 \x01(\v2(.memos.api.v1.UserSetting.GeneralSettingH\x00R\x0egeneralSetting\x12V\n" + "\x10webhooks_setting\x18\x05 \x01(\v2).memos.api.v1.UserSetting.WebhooksSettingH\x00R\x0fwebhooksSetting\x1av\n" + "\x0eGeneralSetting\x12\x1b\n" + "\x06locale\x18\x01 \x01(\tB\x03\xe0A\x01R\x06locale\x12,\n" + "\x0fmemo_visibility\x18\x03 \x01(\tB\x03\xe0A\x01R\x0ememoVisibility\x12\x19\n" + "\x05theme\x18\x04 \x01(\tB\x03\xe0A\x01R\x05theme\x1aH\n" + "\x0fWebhooksSetting\x125\n" + "\bwebhooks\x18\x01 \x03(\v2\x19.memos.api.v1.UserWebhookR\bwebhooks\"5\n" + "\x03Key\x12\x13\n" + "\x0fKEY_UNSPECIFIED\x10\x00\x12\v\n" + "\aGENERAL\x10\x01\x12\f\n" + "\bWEBHOOKS\x10\x04:Y\xeaAV\n" + "\x18memos.api.v1/UserSetting\x12\x1fusers/{user}/settings/{setting}*\fuserSettings2\vuserSettingB\a\n" + "\x05value\"M\n" + "\x15GetUserSettingRequest\x124\n" + "\x04name\x18\x01 \x01(\tB \xe0A\x02\xfaA\x1a\n" + "\x18memos.api.v1/UserSettingR\x04name\"\x96\x01\n" + "\x18UpdateUserSettingRequest\x128\n" + "\asetting\x18\x01 \x01(\v2\x19.memos.api.v1.UserSettingB\x03\xe0A\x02R\asetting\x12@\n" + "\vupdate_mask\x18\x02 \x01(\v2\x1a.google.protobuf.FieldMaskB\x03\xe0A\x02R\n" + "updateMask\"\x92\x01\n" + "\x17ListUserSettingsRequest\x121\n" + "\x06parent\x18\x01 \x01(\tB\x19\xe0A\x02\xfaA\x13\n" + "\x11memos.api.v1/UserR\x06parent\x12 \n" + "\tpage_size\x18\x02 \x01(\x05B\x03\xe0A\x01R\bpageSize\x12\"\n" + "\n" + "page_token\x18\x03 \x01(\tB\x03\xe0A\x01R\tpageToken\"\x98\x01\n" + "\x18ListUserSettingsResponse\x125\n" + "\bsettings\x18\x01 \x03(\v2\x19.memos.api.v1.UserSettingR\bsettings\x12&\n" + "\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken\x12\x1d\n" + "\n" + "total_size\x18\x03 \x01(\x05R\ttotalSize\"\xa7\x03\n" + "\x13PersonalAccessToken\x12\x17\n" + "\x04name\x18\x01 \x01(\tB\x03\xe0A\bR\x04name\x12%\n" + "\vdescription\x18\x02 \x01(\tB\x03\xe0A\x01R\vdescription\x12>\n" + "\n" + "created_at\x18\x03 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x03R\tcreatedAt\x12>\n" + "\n" + "expires_at\x18\x04 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x01R\texpiresAt\x12A\n" + "\flast_used_at\x18\x05 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x03R\n" + "lastUsedAt:\x8c\x01\xeaA\x88\x01\n" + " memos.api.v1/PersonalAccessToken\x129users/{user}/personalAccessTokens/{personal_access_token}*\x14personalAccessTokens2\x13personalAccessToken\"\x9a\x01\n" + "\x1fListPersonalAccessTokensRequest\x121\n" + "\x06parent\x18\x01 \x01(\tB\x19\xe0A\x02\xfaA\x13\n" + "\x11memos.api.v1/UserR\x06parent\x12 \n" + "\tpage_size\x18\x02 \x01(\x05B\x03\xe0A\x01R\bpageSize\x12\"\n" + "\n" + "page_token\x18\x03 \x01(\tB\x03\xe0A\x01R\tpageToken\"\xc2\x01\n" + " ListPersonalAccessTokensResponse\x12W\n" + "\x16personal_access_tokens\x18\x01 \x03(\v2!.memos.api.v1.PersonalAccessTokenR\x14personalAccessTokens\x12&\n" + "\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken\x12\x1d\n" + "\n" + "total_size\x18\x03 \x01(\x05R\ttotalSize\"\xa9\x01\n" + " CreatePersonalAccessTokenRequest\x121\n" + "\x06parent\x18\x01 \x01(\tB\x19\xe0A\x02\xfaA\x13\n" + "\x11memos.api.v1/UserR\x06parent\x12%\n" + "\vdescription\x18\x02 \x01(\tB\x03\xe0A\x01R\vdescription\x12+\n" + "\x0fexpires_in_days\x18\x03 \x01(\x05B\x03\xe0A\x01R\rexpiresInDays\"\x90\x01\n" + "!CreatePersonalAccessTokenResponse\x12U\n" + "\x15personal_access_token\x18\x01 \x01(\v2!.memos.api.v1.PersonalAccessTokenR\x13personalAccessToken\x12\x14\n" + "\x05token\x18\x02 \x01(\tR\x05token\"`\n" + " DeletePersonalAccessTokenRequest\x12<\n" + "\x04name\x18\x01 \x01(\tB(\xe0A\x02\xfaA\"\n" + " memos.api.v1/PersonalAccessTokenR\x04name\"\xda\x01\n" + "\vUserWebhook\x12\x12\n" + "\x04name\x18\x01 \x01(\tR\x04name\x12\x10\n" + "\x03url\x18\x02 \x01(\tR\x03url\x12!\n" + "\fdisplay_name\x18\x03 \x01(\tR\vdisplayName\x12@\n" + "\vcreate_time\x18\x04 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x03R\n" + "createTime\x12@\n" + "\vupdate_time\x18\x05 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x03R\n" + "updateTime\"6\n" + "\x17ListUserWebhooksRequest\x12\x1b\n" + "\x06parent\x18\x01 \x01(\tB\x03\xe0A\x02R\x06parent\"Q\n" + "\x18ListUserWebhooksResponse\x125\n" + "\bwebhooks\x18\x01 \x03(\v2\x19.memos.api.v1.UserWebhookR\bwebhooks\"q\n" + "\x18CreateUserWebhookRequest\x12\x1b\n" + "\x06parent\x18\x01 \x01(\tB\x03\xe0A\x02R\x06parent\x128\n" + "\awebhook\x18\x02 \x01(\v2\x19.memos.api.v1.UserWebhookB\x03\xe0A\x02R\awebhook\"\x91\x01\n" + "\x18UpdateUserWebhookRequest\x128\n" + "\awebhook\x18\x01 \x01(\v2\x19.memos.api.v1.UserWebhookB\x03\xe0A\x02R\awebhook\x12;\n" + "\vupdate_mask\x18\x02 \x01(\v2\x1a.google.protobuf.FieldMaskR\n" + "updateMask\"3\n" + "\x18DeleteUserWebhookRequest\x12\x17\n" + "\x04name\x18\x01 \x01(\tB\x03\xe0A\x02R\x04name\"\xbe\x04\n" + "\x10UserNotification\x12\x1a\n" + "\x04name\x18\x01 \x01(\tB\x06\xe0A\x03\xe0A\bR\x04name\x121\n" + "\x06sender\x18\x02 \x01(\tB\x19\xe0A\x03\xfaA\x13\n" + "\x11memos.api.v1/UserR\x06sender\x12B\n" + "\x06status\x18\x03 \x01(\x0e2%.memos.api.v1.UserNotification.StatusB\x03\xe0A\x01R\x06status\x12@\n" + "\vcreate_time\x18\x04 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x03R\n" + "createTime\x12<\n" + "\x04type\x18\x05 \x01(\x0e2#.memos.api.v1.UserNotification.TypeB\x03\xe0A\x03R\x04type\x12)\n" + "\vactivity_id\x18\x06 \x01(\x05B\x03\xe0A\x01H\x00R\n" + "activityId\x88\x01\x01\":\n" + "\x06Status\x12\x16\n" + "\x12STATUS_UNSPECIFIED\x10\x00\x12\n" + "\n" + "\x06UNREAD\x10\x01\x12\f\n" + "\bARCHIVED\x10\x02\".\n" + "\x04Type\x12\x14\n" + "\x10TYPE_UNSPECIFIED\x10\x00\x12\x10\n" + "\fMEMO_COMMENT\x10\x01:p\xeaAm\n" + "\x1dmemos.api.v1/UserNotification\x12)users/{user}/notifications/{notification}\x1a\x04name*\rnotifications2\fnotificationB\x0e\n" + "\f_activity_id\"\xb4\x01\n" + "\x1cListUserNotificationsRequest\x121\n" + "\x06parent\x18\x01 \x01(\tB\x19\xe0A\x02\xfaA\x13\n" + "\x11memos.api.v1/UserR\x06parent\x12 \n" + "\tpage_size\x18\x02 \x01(\x05B\x03\xe0A\x01R\bpageSize\x12\"\n" + "\n" + "page_token\x18\x03 \x01(\tB\x03\xe0A\x01R\tpageToken\x12\x1b\n" + "\x06filter\x18\x04 \x01(\tB\x03\xe0A\x01R\x06filter\"\x8d\x01\n" + "\x1dListUserNotificationsResponse\x12D\n" + "\rnotifications\x18\x01 \x03(\v2\x1e.memos.api.v1.UserNotificationR\rnotifications\x12&\n" + "\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken\"\xaa\x01\n" + "\x1dUpdateUserNotificationRequest\x12G\n" + "\fnotification\x18\x01 \x01(\v2\x1e.memos.api.v1.UserNotificationB\x03\xe0A\x02R\fnotification\x12@\n" + "\vupdate_mask\x18\x02 \x01(\v2\x1a.google.protobuf.FieldMaskB\x03\xe0A\x02R\n" + "updateMask\"Z\n" + "\x1dDeleteUserNotificationRequest\x129\n" + "\x04name\x18\x01 \x01(\tB%\xe0A\x02\xfaA\x1f\n" + "\x1dmemos.api.v1/UserNotificationR\x04name2\x83\x17\n" + "\vUserService\x12c\n" + "\tListUsers\x12\x1e.memos.api.v1.ListUsersRequest\x1a\x1f.memos.api.v1.ListUsersResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\x12\r/api/v1/users\x12b\n" + "\aGetUser\x12\x1c.memos.api.v1.GetUserRequest\x1a\x12.memos.api.v1.User\"%\xdaA\x04name\x82\xd3\xe4\x93\x02\x18\x12\x16/api/v1/{name=users/*}\x12e\n" + "\n" + "CreateUser\x12\x1f.memos.api.v1.CreateUserRequest\x1a\x12.memos.api.v1.User\"\"\xdaA\x04user\x82\xd3\xe4\x93\x02\x15:\x04user\"\r/api/v1/users\x12\x7f\n" + "\n" + "UpdateUser\x12\x1f.memos.api.v1.UpdateUserRequest\x1a\x12.memos.api.v1.User\"<\xdaA\x10user,update_mask\x82\xd3\xe4\x93\x02#:\x04user2\x1b/api/v1/{user.name=users/*}\x12l\n" + "\n" + "DeleteUser\x12\x1f.memos.api.v1.DeleteUserRequest\x1a\x16.google.protobuf.Empty\"%\xdaA\x04name\x82\xd3\xe4\x93\x02\x18*\x16/api/v1/{name=users/*}\x12~\n" + "\x10ListAllUserStats\x12%.memos.api.v1.ListAllUserStatsRequest\x1a&.memos.api.v1.ListAllUserStatsResponse\"\x1b\x82\xd3\xe4\x93\x02\x15\x12\x13/api/v1/users:stats\x12z\n" + "\fGetUserStats\x12!.memos.api.v1.GetUserStatsRequest\x1a\x17.memos.api.v1.UserStats\".\xdaA\x04name\x82\xd3\xe4\x93\x02!\x12\x1f/api/v1/{name=users/*}:getStats\x12\x82\x01\n" + "\x0eGetUserSetting\x12#.memos.api.v1.GetUserSettingRequest\x1a\x19.memos.api.v1.UserSetting\"0\xdaA\x04name\x82\xd3\xe4\x93\x02#\x12!/api/v1/{name=users/*/settings/*}\x12\xa8\x01\n" + "\x11UpdateUserSetting\x12&.memos.api.v1.UpdateUserSettingRequest\x1a\x19.memos.api.v1.UserSetting\"P\xdaA\x13setting,update_mask\x82\xd3\xe4\x93\x024:\asetting2)/api/v1/{setting.name=users/*/settings/*}\x12\x95\x01\n" + "\x10ListUserSettings\x12%.memos.api.v1.ListUserSettingsRequest\x1a&.memos.api.v1.ListUserSettingsResponse\"2\xdaA\x06parent\x82\xd3\xe4\x93\x02#\x12!/api/v1/{parent=users/*}/settings\x12\xb9\x01\n" + "\x18ListPersonalAccessTokens\x12-.memos.api.v1.ListPersonalAccessTokensRequest\x1a..memos.api.v1.ListPersonalAccessTokensResponse\">\xdaA\x06parent\x82\xd3\xe4\x93\x02/\x12-/api/v1/{parent=users/*}/personalAccessTokens\x12\xb6\x01\n" + "\x19CreatePersonalAccessToken\x12..memos.api.v1.CreatePersonalAccessTokenRequest\x1a/.memos.api.v1.CreatePersonalAccessTokenResponse\"8\x82\xd3\xe4\x93\x022:\x01*\"-/api/v1/{parent=users/*}/personalAccessTokens\x12\xa1\x01\n" + "\x19DeletePersonalAccessToken\x12..memos.api.v1.DeletePersonalAccessTokenRequest\x1a\x16.google.protobuf.Empty\"<\xdaA\x04name\x82\xd3\xe4\x93\x02/*-/api/v1/{name=users/*/personalAccessTokens/*}\x12\x95\x01\n" + "\x10ListUserWebhooks\x12%.memos.api.v1.ListUserWebhooksRequest\x1a&.memos.api.v1.ListUserWebhooksResponse\"2\xdaA\x06parent\x82\xd3\xe4\x93\x02#\x12!/api/v1/{parent=users/*}/webhooks\x12\x9b\x01\n" + "\x11CreateUserWebhook\x12&.memos.api.v1.CreateUserWebhookRequest\x1a\x19.memos.api.v1.UserWebhook\"C\xdaA\x0eparent,webhook\x82\xd3\xe4\x93\x02,:\awebhook\"!/api/v1/{parent=users/*}/webhooks\x12\xa8\x01\n" + "\x11UpdateUserWebhook\x12&.memos.api.v1.UpdateUserWebhookRequest\x1a\x19.memos.api.v1.UserWebhook\"P\xdaA\x13webhook,update_mask\x82\xd3\xe4\x93\x024:\awebhook2)/api/v1/{webhook.name=users/*/webhooks/*}\x12\x85\x01\n" + "\x11DeleteUserWebhook\x12&.memos.api.v1.DeleteUserWebhookRequest\x1a\x16.google.protobuf.Empty\"0\xdaA\x04name\x82\xd3\xe4\x93\x02#*!/api/v1/{name=users/*/webhooks/*}\x12\xa9\x01\n" + "\x15ListUserNotifications\x12*.memos.api.v1.ListUserNotificationsRequest\x1a+.memos.api.v1.ListUserNotificationsResponse\"7\xdaA\x06parent\x82\xd3\xe4\x93\x02(\x12&/api/v1/{parent=users/*}/notifications\x12\xcb\x01\n" + "\x16UpdateUserNotification\x12+.memos.api.v1.UpdateUserNotificationRequest\x1a\x1e.memos.api.v1.UserNotification\"d\xdaA\x18notification,update_mask\x82\xd3\xe4\x93\x02C:\fnotification23/api/v1/{notification.name=users/*/notifications/*}\x12\x94\x01\n" + "\x16DeleteUserNotification\x12+.memos.api.v1.DeleteUserNotificationRequest\x1a\x16.google.protobuf.Empty\"5\xdaA\x04name\x82\xd3\xe4\x93\x02(*&/api/v1/{name=users/*/notifications/*}B\xa8\x01\n" + "\x10com.memos.api.v1B\x10UserServiceProtoP\x01Z0github.com/usememos/memos/proto/gen/api/v1;apiv1\xa2\x02\x03MAX\xaa\x02\fMemos.Api.V1\xca\x02\fMemos\\Api\\V1\xe2\x02\x18Memos\\Api\\V1\\GPBMetadata\xea\x02\x0eMemos::Api::V1b\x06proto3" var ( file_api_v1_user_service_proto_rawDescOnce sync.Once file_api_v1_user_service_proto_rawDescData []byte ) func file_api_v1_user_service_proto_rawDescGZIP() []byte { file_api_v1_user_service_proto_rawDescOnce.Do(func() { file_api_v1_user_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_api_v1_user_service_proto_rawDesc), len(file_api_v1_user_service_proto_rawDesc))) }) return file_api_v1_user_service_proto_rawDescData } var file_api_v1_user_service_proto_enumTypes = make([]protoimpl.EnumInfo, 4) var file_api_v1_user_service_proto_msgTypes = make([]protoimpl.MessageInfo, 37) var file_api_v1_user_service_proto_goTypes = []any{ (User_Role)(0), // 0: memos.api.v1.User.Role (UserSetting_Key)(0), // 1: memos.api.v1.UserSetting.Key (UserNotification_Status)(0), // 2: memos.api.v1.UserNotification.Status (UserNotification_Type)(0), // 3: memos.api.v1.UserNotification.Type (*User)(nil), // 4: memos.api.v1.User (*ListUsersRequest)(nil), // 5: memos.api.v1.ListUsersRequest (*ListUsersResponse)(nil), // 6: memos.api.v1.ListUsersResponse (*GetUserRequest)(nil), // 7: memos.api.v1.GetUserRequest (*CreateUserRequest)(nil), // 8: memos.api.v1.CreateUserRequest (*UpdateUserRequest)(nil), // 9: memos.api.v1.UpdateUserRequest (*DeleteUserRequest)(nil), // 10: memos.api.v1.DeleteUserRequest (*UserStats)(nil), // 11: memos.api.v1.UserStats (*GetUserStatsRequest)(nil), // 12: memos.api.v1.GetUserStatsRequest (*ListAllUserStatsRequest)(nil), // 13: memos.api.v1.ListAllUserStatsRequest (*ListAllUserStatsResponse)(nil), // 14: memos.api.v1.ListAllUserStatsResponse (*UserSetting)(nil), // 15: memos.api.v1.UserSetting (*GetUserSettingRequest)(nil), // 16: memos.api.v1.GetUserSettingRequest (*UpdateUserSettingRequest)(nil), // 17: memos.api.v1.UpdateUserSettingRequest (*ListUserSettingsRequest)(nil), // 18: memos.api.v1.ListUserSettingsRequest (*ListUserSettingsResponse)(nil), // 19: memos.api.v1.ListUserSettingsResponse (*PersonalAccessToken)(nil), // 20: memos.api.v1.PersonalAccessToken (*ListPersonalAccessTokensRequest)(nil), // 21: memos.api.v1.ListPersonalAccessTokensRequest (*ListPersonalAccessTokensResponse)(nil), // 22: memos.api.v1.ListPersonalAccessTokensResponse (*CreatePersonalAccessTokenRequest)(nil), // 23: memos.api.v1.CreatePersonalAccessTokenRequest (*CreatePersonalAccessTokenResponse)(nil), // 24: memos.api.v1.CreatePersonalAccessTokenResponse (*DeletePersonalAccessTokenRequest)(nil), // 25: memos.api.v1.DeletePersonalAccessTokenRequest (*UserWebhook)(nil), // 26: memos.api.v1.UserWebhook (*ListUserWebhooksRequest)(nil), // 27: memos.api.v1.ListUserWebhooksRequest (*ListUserWebhooksResponse)(nil), // 28: memos.api.v1.ListUserWebhooksResponse (*CreateUserWebhookRequest)(nil), // 29: memos.api.v1.CreateUserWebhookRequest (*UpdateUserWebhookRequest)(nil), // 30: memos.api.v1.UpdateUserWebhookRequest (*DeleteUserWebhookRequest)(nil), // 31: memos.api.v1.DeleteUserWebhookRequest (*UserNotification)(nil), // 32: memos.api.v1.UserNotification (*ListUserNotificationsRequest)(nil), // 33: memos.api.v1.ListUserNotificationsRequest (*ListUserNotificationsResponse)(nil), // 34: memos.api.v1.ListUserNotificationsResponse (*UpdateUserNotificationRequest)(nil), // 35: memos.api.v1.UpdateUserNotificationRequest (*DeleteUserNotificationRequest)(nil), // 36: memos.api.v1.DeleteUserNotificationRequest nil, // 37: memos.api.v1.UserStats.TagCountEntry (*UserStats_MemoTypeStats)(nil), // 38: memos.api.v1.UserStats.MemoTypeStats (*UserSetting_GeneralSetting)(nil), // 39: memos.api.v1.UserSetting.GeneralSetting (*UserSetting_WebhooksSetting)(nil), // 40: memos.api.v1.UserSetting.WebhooksSetting (State)(0), // 41: memos.api.v1.State (*timestamppb.Timestamp)(nil), // 42: google.protobuf.Timestamp (*fieldmaskpb.FieldMask)(nil), // 43: google.protobuf.FieldMask (*emptypb.Empty)(nil), // 44: google.protobuf.Empty } var file_api_v1_user_service_proto_depIdxs = []int32{ 0, // 0: memos.api.v1.User.role:type_name -> memos.api.v1.User.Role 41, // 1: memos.api.v1.User.state:type_name -> memos.api.v1.State 42, // 2: memos.api.v1.User.create_time:type_name -> google.protobuf.Timestamp 42, // 3: memos.api.v1.User.update_time:type_name -> google.protobuf.Timestamp 4, // 4: memos.api.v1.ListUsersResponse.users:type_name -> memos.api.v1.User 43, // 5: memos.api.v1.GetUserRequest.read_mask:type_name -> google.protobuf.FieldMask 4, // 6: memos.api.v1.CreateUserRequest.user:type_name -> memos.api.v1.User 4, // 7: memos.api.v1.UpdateUserRequest.user:type_name -> memos.api.v1.User 43, // 8: memos.api.v1.UpdateUserRequest.update_mask:type_name -> google.protobuf.FieldMask 42, // 9: memos.api.v1.UserStats.memo_display_timestamps:type_name -> google.protobuf.Timestamp 38, // 10: memos.api.v1.UserStats.memo_type_stats:type_name -> memos.api.v1.UserStats.MemoTypeStats 37, // 11: memos.api.v1.UserStats.tag_count:type_name -> memos.api.v1.UserStats.TagCountEntry 11, // 12: memos.api.v1.ListAllUserStatsResponse.stats:type_name -> memos.api.v1.UserStats 39, // 13: memos.api.v1.UserSetting.general_setting:type_name -> memos.api.v1.UserSetting.GeneralSetting 40, // 14: memos.api.v1.UserSetting.webhooks_setting:type_name -> memos.api.v1.UserSetting.WebhooksSetting 15, // 15: memos.api.v1.UpdateUserSettingRequest.setting:type_name -> memos.api.v1.UserSetting 43, // 16: memos.api.v1.UpdateUserSettingRequest.update_mask:type_name -> google.protobuf.FieldMask 15, // 17: memos.api.v1.ListUserSettingsResponse.settings:type_name -> memos.api.v1.UserSetting 42, // 18: memos.api.v1.PersonalAccessToken.created_at:type_name -> google.protobuf.Timestamp 42, // 19: memos.api.v1.PersonalAccessToken.expires_at:type_name -> google.protobuf.Timestamp 42, // 20: memos.api.v1.PersonalAccessToken.last_used_at:type_name -> google.protobuf.Timestamp 20, // 21: memos.api.v1.ListPersonalAccessTokensResponse.personal_access_tokens:type_name -> memos.api.v1.PersonalAccessToken 20, // 22: memos.api.v1.CreatePersonalAccessTokenResponse.personal_access_token:type_name -> memos.api.v1.PersonalAccessToken 42, // 23: memos.api.v1.UserWebhook.create_time:type_name -> google.protobuf.Timestamp 42, // 24: memos.api.v1.UserWebhook.update_time:type_name -> google.protobuf.Timestamp 26, // 25: memos.api.v1.ListUserWebhooksResponse.webhooks:type_name -> memos.api.v1.UserWebhook 26, // 26: memos.api.v1.CreateUserWebhookRequest.webhook:type_name -> memos.api.v1.UserWebhook 26, // 27: memos.api.v1.UpdateUserWebhookRequest.webhook:type_name -> memos.api.v1.UserWebhook 43, // 28: memos.api.v1.UpdateUserWebhookRequest.update_mask:type_name -> google.protobuf.FieldMask 2, // 29: memos.api.v1.UserNotification.status:type_name -> memos.api.v1.UserNotification.Status 42, // 30: memos.api.v1.UserNotification.create_time:type_name -> google.protobuf.Timestamp 3, // 31: memos.api.v1.UserNotification.type:type_name -> memos.api.v1.UserNotification.Type 32, // 32: memos.api.v1.ListUserNotificationsResponse.notifications:type_name -> memos.api.v1.UserNotification 32, // 33: memos.api.v1.UpdateUserNotificationRequest.notification:type_name -> memos.api.v1.UserNotification 43, // 34: memos.api.v1.UpdateUserNotificationRequest.update_mask:type_name -> google.protobuf.FieldMask 26, // 35: memos.api.v1.UserSetting.WebhooksSetting.webhooks:type_name -> memos.api.v1.UserWebhook 5, // 36: memos.api.v1.UserService.ListUsers:input_type -> memos.api.v1.ListUsersRequest 7, // 37: memos.api.v1.UserService.GetUser:input_type -> memos.api.v1.GetUserRequest 8, // 38: memos.api.v1.UserService.CreateUser:input_type -> memos.api.v1.CreateUserRequest 9, // 39: memos.api.v1.UserService.UpdateUser:input_type -> memos.api.v1.UpdateUserRequest 10, // 40: memos.api.v1.UserService.DeleteUser:input_type -> memos.api.v1.DeleteUserRequest 13, // 41: memos.api.v1.UserService.ListAllUserStats:input_type -> memos.api.v1.ListAllUserStatsRequest 12, // 42: memos.api.v1.UserService.GetUserStats:input_type -> memos.api.v1.GetUserStatsRequest 16, // 43: memos.api.v1.UserService.GetUserSetting:input_type -> memos.api.v1.GetUserSettingRequest 17, // 44: memos.api.v1.UserService.UpdateUserSetting:input_type -> memos.api.v1.UpdateUserSettingRequest 18, // 45: memos.api.v1.UserService.ListUserSettings:input_type -> memos.api.v1.ListUserSettingsRequest 21, // 46: memos.api.v1.UserService.ListPersonalAccessTokens:input_type -> memos.api.v1.ListPersonalAccessTokensRequest 23, // 47: memos.api.v1.UserService.CreatePersonalAccessToken:input_type -> memos.api.v1.CreatePersonalAccessTokenRequest 25, // 48: memos.api.v1.UserService.DeletePersonalAccessToken:input_type -> memos.api.v1.DeletePersonalAccessTokenRequest 27, // 49: memos.api.v1.UserService.ListUserWebhooks:input_type -> memos.api.v1.ListUserWebhooksRequest 29, // 50: memos.api.v1.UserService.CreateUserWebhook:input_type -> memos.api.v1.CreateUserWebhookRequest 30, // 51: memos.api.v1.UserService.UpdateUserWebhook:input_type -> memos.api.v1.UpdateUserWebhookRequest 31, // 52: memos.api.v1.UserService.DeleteUserWebhook:input_type -> memos.api.v1.DeleteUserWebhookRequest 33, // 53: memos.api.v1.UserService.ListUserNotifications:input_type -> memos.api.v1.ListUserNotificationsRequest 35, // 54: memos.api.v1.UserService.UpdateUserNotification:input_type -> memos.api.v1.UpdateUserNotificationRequest 36, // 55: memos.api.v1.UserService.DeleteUserNotification:input_type -> memos.api.v1.DeleteUserNotificationRequest 6, // 56: memos.api.v1.UserService.ListUsers:output_type -> memos.api.v1.ListUsersResponse 4, // 57: memos.api.v1.UserService.GetUser:output_type -> memos.api.v1.User 4, // 58: memos.api.v1.UserService.CreateUser:output_type -> memos.api.v1.User 4, // 59: memos.api.v1.UserService.UpdateUser:output_type -> memos.api.v1.User 44, // 60: memos.api.v1.UserService.DeleteUser:output_type -> google.protobuf.Empty 14, // 61: memos.api.v1.UserService.ListAllUserStats:output_type -> memos.api.v1.ListAllUserStatsResponse 11, // 62: memos.api.v1.UserService.GetUserStats:output_type -> memos.api.v1.UserStats 15, // 63: memos.api.v1.UserService.GetUserSetting:output_type -> memos.api.v1.UserSetting 15, // 64: memos.api.v1.UserService.UpdateUserSetting:output_type -> memos.api.v1.UserSetting 19, // 65: memos.api.v1.UserService.ListUserSettings:output_type -> memos.api.v1.ListUserSettingsResponse 22, // 66: memos.api.v1.UserService.ListPersonalAccessTokens:output_type -> memos.api.v1.ListPersonalAccessTokensResponse 24, // 67: memos.api.v1.UserService.CreatePersonalAccessToken:output_type -> memos.api.v1.CreatePersonalAccessTokenResponse 44, // 68: memos.api.v1.UserService.DeletePersonalAccessToken:output_type -> google.protobuf.Empty 28, // 69: memos.api.v1.UserService.ListUserWebhooks:output_type -> memos.api.v1.ListUserWebhooksResponse 26, // 70: memos.api.v1.UserService.CreateUserWebhook:output_type -> memos.api.v1.UserWebhook 26, // 71: memos.api.v1.UserService.UpdateUserWebhook:output_type -> memos.api.v1.UserWebhook 44, // 72: memos.api.v1.UserService.DeleteUserWebhook:output_type -> google.protobuf.Empty 34, // 73: memos.api.v1.UserService.ListUserNotifications:output_type -> memos.api.v1.ListUserNotificationsResponse 32, // 74: memos.api.v1.UserService.UpdateUserNotification:output_type -> memos.api.v1.UserNotification 44, // 75: memos.api.v1.UserService.DeleteUserNotification:output_type -> google.protobuf.Empty 56, // [56:76] is the sub-list for method output_type 36, // [36:56] is the sub-list for method input_type 36, // [36:36] is the sub-list for extension type_name 36, // [36:36] is the sub-list for extension extendee 0, // [0:36] is the sub-list for field type_name } func init() { file_api_v1_user_service_proto_init() } func file_api_v1_user_service_proto_init() { if File_api_v1_user_service_proto != nil { return } file_api_v1_common_proto_init() file_api_v1_user_service_proto_msgTypes[11].OneofWrappers = []any{ (*UserSetting_GeneralSetting_)(nil), (*UserSetting_WebhooksSetting_)(nil), } file_api_v1_user_service_proto_msgTypes[28].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_api_v1_user_service_proto_rawDesc), len(file_api_v1_user_service_proto_rawDesc)), NumEnums: 4, NumMessages: 37, NumExtensions: 0, NumServices: 1, }, GoTypes: file_api_v1_user_service_proto_goTypes, DependencyIndexes: file_api_v1_user_service_proto_depIdxs, EnumInfos: file_api_v1_user_service_proto_enumTypes, MessageInfos: file_api_v1_user_service_proto_msgTypes, }.Build() File_api_v1_user_service_proto = out.File file_api_v1_user_service_proto_goTypes = nil file_api_v1_user_service_proto_depIdxs = nil }