lemmy-js-client 0.20.0-alpha.5 → 0.20.0-alpha.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,5 +10,5 @@ export interface CreatePost {
10
10
  nsfw?: boolean;
11
11
  language_id?: LanguageId;
12
12
  custom_thumbnail?: string;
13
- scheduled_publish_time?: string;
13
+ scheduled_publish_time?: number;
14
14
  }
@@ -26,5 +26,5 @@ export interface Post {
26
26
  featured_local: boolean;
27
27
  url_content_type?: string;
28
28
  alt_text?: string;
29
- scheduled_publish_time?: string;
29
+ scheduled_publish_time?: number;
30
30
  }
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.20.0-alpha.5",
4
+ "version": "0.20.0-alpha.6",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",