v0.11.0-rc.1

This commit is contained in:
Dessalines 2021-04-01 13:50:34 -04:00
parent 96a6d3ff3f
commit f1dffff556
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "lemmy-js-client", "name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy", "description": "A javascript / typescript client for Lemmy",
"version": "0.10.0-rc.13", "version": "0.11.0-rc.1",
"author": "Dessalines <tyhou13@gmx.com>", "author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"main": "./dist/index.js", "main": "./dist/index.js",

View file

@ -46,7 +46,7 @@ export interface SaveUserSettings {
lang: string; lang: string;
avatar?: string; avatar?: string;
banner?: string; banner?: string;
preferred_username?: string; // The display name display_name?: string;
email?: string; email?: string;
bio?: string; bio?: string;
matrix_user_id?: string; matrix_user_id?: string;

View file

@ -14,7 +14,7 @@ export interface LocalUserSettings {
export interface PersonSafe { export interface PersonSafe {
id: number; id: number;
name: string; name: string;
preferred_username?: string; display_name?: string;
avatar?: string; avatar?: string;
banned: boolean; banned: boolean;
published: string; published: string;