lemmy-js-client 0.15.0-rc.33 → 0.15.0-rc.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -51,6 +51,9 @@ export interface BanFromCommunity {
51
51
  */
52
52
  remove_data?: boolean;
53
53
  reason?: string;
54
+ /**
55
+ * The expire time in Unix seconds
56
+ */
54
57
  expires?: number;
55
58
  auth: string;
56
59
  }
@@ -91,6 +94,9 @@ export interface RemoveCommunity {
91
94
  community_id: number;
92
95
  removed: boolean;
93
96
  reason?: string;
97
+ /**
98
+ * The expire time in Unix seconds
99
+ */
94
100
  expires?: number;
95
101
  auth: string;
96
102
  }
@@ -145,6 +145,9 @@ export interface BanPerson {
145
145
  */
146
146
  remove_data?: boolean;
147
147
  reason?: string;
148
+ /**
149
+ * The expire time in Unix seconds
150
+ */
148
151
  expires?: number;
149
152
  auth: string;
150
153
  }
@@ -34,6 +34,7 @@ export interface PersonSafe {
34
34
  matrix_user_id?: string;
35
35
  admin: boolean;
36
36
  bot_account: boolean;
37
+ ban_expires?: string;
37
38
  }
38
39
  export interface Site {
39
40
  id: number;
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.15.0-rc.33",
4
+ "version": "0.15.0-rc.34",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",