export interface CharacterMenuItem { label: string permission: string link(character: Character): string handleClick?(evt?: MouseEvent): void } export interface SelectItem { text: string value: string | number } export interface SharedStore { kinks: SharedKinks authenticated: boolean } export interface StoreMethods { bookmarkUpdate(id: number, state: boolean): Promise characterBlock?(id: number, block: boolean, reason?: string): Promise characterCustomKinkAdd(id: number, name: string, description: string, choice: KinkChoice): Promise characterData(name: string | undefined, id: number | undefined): Promise characterDelete(id: number): Promise characterDuplicate(id: number, name: string): Promise characterFriends(id: number): Promise characterNameCheck(name: string): Promise characterRename?(id: number, name: string, renamedFor?: string): Promise characterReport(reportData: CharacterReportData): Promise contactMethodIconUrl(name: string): string sendNoteUrl(character: CharacterInfo): string fieldsGet(): Promise friendDissolve(friend: Friend): Promise friendRequest(target: number, source: number): Promise friendRequestAccept(request: FriendRequest): Promise friendRequestIgnore(request: FriendRequest): Promise friendRequestCancel(request: FriendRequest): Promise friendsGet(id: number): Promise groupsGet(id: number): Promise guestbookPageGet(id: number, page: number, unapproved: boolean): Promise guestbookPostApprove(id: number, approval: boolean): Promise guestbookPostDelete(id: number): Promise guestbookPostPost(target: number, source: number, message: string, privatePost: boolean): Promise guestbookPostReply(id: number, reply: string | null): Promise hasPermission?(permission: string): boolean imagesGet(id: number): Promise imageUrl(image: CharacterImage): string imageThumbUrl(image: CharacterImage): string kinksGet(id: number): Promise memoUpdate(id: number, memo: string): Promise } export interface SharedKinks { kinks: {[key: string]: Kink | undefined} kink_groups: {[key: string]: KinkGroup | undefined} infotags: {[key: string]: Infotag | undefined} infotag_groups: {[key: string]: InfotagGroup | undefined} listitems: {[key: string]: ListItem | undefined} } export type SiteDate = number | string | null; export type KinkChoice = 'favorite' | 'yes' | 'maybe' | 'no'; export type KinkChoiceFull = KinkChoice | number; export const CONTACT_GROUP_ID = '1'; export interface DisplayKink { id: number name: string description: string choice?: KinkChoice group: number isCustom: boolean hasSubkinks: boolean subkinks: DisplayKink[] ignore: boolean } export interface DisplayInfotag { id: number isContact: boolean string?: string number?: number | null list?: number } export interface Kink { id: number name: string description: string kink_group: number } export interface KinkGroup { id: number name: string description: string sort_order: number } export interface Infotag { id: number name: string type: 'number' | 'text' | 'list' search_field: string validator: string allow_legacy: boolean infotag_group: string } export interface InfotagGroup { id: number name: string description: string sort_order: number } export interface ListItem { id: number name: string value: string sort_order: number } export interface CharacterFriend { id: number name: string } export interface CharacterKink { id: number choice: KinkChoice } export interface CharacterInfotag { list?: number string?: string number?: number } export interface CharacterCustom { id: number choice: KinkChoice name: string description: string } export interface CharacterInline { id: number hash: string extension: string nsfw: boolean } export type CharacterImage = CharacterImageOld | CharacterImageNew; export interface CharacterImageNew { id: number extension: string description: string hash: string sort_order: number | null } export interface CharacterImageOld { id: number extension: string height: number width: number description: string sort_order: number | null url: string } export type CharacterName = string | CharacterNameDetails; export interface CharacterNameDetails { id: number name: string deleted: boolean } export type ThreadOrderMode = 'post' | 'explicit'; export interface GroupPermissions { view: boolean edit: boolean threads: boolean permissions: boolean } export interface CharacterGroup { id: number title: string public: boolean description: string threadCount: number orderMode: ThreadOrderMode createdAt: SiteDate myPermissions: GroupPermissions character: CharacterName owner: boolean } export interface CharacterInfo { readonly id: number readonly name: string readonly description: string readonly title?: string readonly created_at: SiteDate readonly updated_at: SiteDate readonly views: number readonly last_online_at?: SiteDate readonly timezone?: number readonly image_count?: number readonly inlines: {[key: string]: CharacterInline | undefined} images?: CharacterImage[] readonly kinks: {[key: string]: KinkChoiceFull | undefined} readonly customs: CharacterCustom[] readonly infotags: {[key: string]: CharacterInfotag | undefined} readonly online_chat?: boolean } export interface CharacterSettings { readonly customs_first: boolean readonly show_friends: boolean readonly badges: boolean readonly guestbook: boolean readonly prevent_bookmarks: boolean readonly public: boolean } export interface Character { readonly is_self: boolean character: CharacterInfo readonly settings: CharacterSettings readonly badges?: string[] memo?: { id: number memo: string } readonly character_list?: { id: number name: string }[] bookmarked?: boolean readonly self_staff: boolean readonly ban?: string readonly ban_reason?: string readonly timeout?: number readonly block_reason?: string } export interface GuestbookPost { readonly id: number readonly character: CharacterNameDetails approved: boolean readonly private: boolean postedAt: SiteDate message: string reply: string | null repliedAt: SiteDate canEdit: boolean deleted?: boolean } export interface GuestbookReply { readonly reply: string readonly postId: number readonly repliedAt: SiteDate } export interface GuestbookState { posts: GuestbookPost[] readonly nextPage: boolean readonly canEdit: boolean } export interface MemoReply { readonly id: number readonly memo: string readonly updated_at: SiteDate } export interface DuplicateResult { // Url to redirect user to when duplication is complete. readonly next: string } export type RenameResult = DuplicateResult; export interface CharacterNameCheckResult { valid: boolean } export interface CharacterReportData { subject: string message: string character: number | null type: string url: string reported_character: number } export interface Friend { id: number source: CharacterNameDetails target: CharacterNameDetails createdAt: SiteDate } export type FriendRequest = Friend; export interface FriendsByCharacter { existing: Friend[] pending: FriendRequest[] incoming: FriendRequest[] name: string }