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
|
}
|
package/package.json
CHANGED