lemmy-js-client 0.17.0-rc.6 → 0.17.0-rc.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -100,14 +100,14 @@ export interface GetSiteResponse {
100
100
  /**
101
101
  * Optional, because the site might not be set up yet.
102
102
  */
103
- site_view: Option<SiteView>;
103
+ site_view?: SiteView;
104
104
  admins: PersonViewSafe[];
105
105
  online: number;
106
106
  version: string;
107
107
  /**
108
108
  * If you're logged in, you'll get back extra user info.
109
109
  */
110
- my_user: Option<MyUserInfo>;
110
+ my_user?: MyUserInfo;
111
111
  federated_instances?: FederatedInstances;
112
112
  }
113
113
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lemmy-js-client",
3
3
  "description": "A javascript / typescript client for Lemmy",
4
- "version": "0.17.0-rc.6",
4
+ "version": "0.17.0-rc.7",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",