@selfcommunity/types 0.5.0-alpha.13 → 0.5.0-alpha.15
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.
|
@@ -37,6 +37,14 @@ export interface SCCommentType {
|
|
|
37
37
|
* Summary
|
|
38
38
|
*/
|
|
39
39
|
summary: string;
|
|
40
|
+
/**
|
|
41
|
+
* Summary html
|
|
42
|
+
*/
|
|
43
|
+
summary_html?: string;
|
|
44
|
+
/**
|
|
45
|
+
* True if summary_html is truncated
|
|
46
|
+
*/
|
|
47
|
+
summary_truncated?: boolean;
|
|
40
48
|
/**
|
|
41
49
|
* If the comments is deleted
|
|
42
50
|
*/
|
package/lib/cjs/types/feed.d.ts
CHANGED
|
@@ -125,6 +125,14 @@ export interface SCFeedObjectType {
|
|
|
125
125
|
* Summary
|
|
126
126
|
*/
|
|
127
127
|
summary: string;
|
|
128
|
+
/**
|
|
129
|
+
* Summary html
|
|
130
|
+
*/
|
|
131
|
+
summary_html?: string;
|
|
132
|
+
/**
|
|
133
|
+
* True if summary_html is truncated
|
|
134
|
+
*/
|
|
135
|
+
summary_truncated?: boolean;
|
|
128
136
|
/**
|
|
129
137
|
* True if the object is deleted
|
|
130
138
|
*/
|
package/lib/cjs/types/media.d.ts
CHANGED
|
@@ -40,6 +40,15 @@ export interface SCMediaType {
|
|
|
40
40
|
* Media image height
|
|
41
41
|
*/
|
|
42
42
|
image_height?: number;
|
|
43
|
+
/**
|
|
44
|
+
* Media image thumbnail
|
|
45
|
+
*/
|
|
46
|
+
image_thumbnail?: {
|
|
47
|
+
color?: string | null;
|
|
48
|
+
width: number;
|
|
49
|
+
height: number;
|
|
50
|
+
url: string;
|
|
51
|
+
};
|
|
43
52
|
/**
|
|
44
53
|
* Order in the list of medias
|
|
45
54
|
*/
|
|
@@ -37,6 +37,14 @@ export interface SCCommentType {
|
|
|
37
37
|
* Summary
|
|
38
38
|
*/
|
|
39
39
|
summary: string;
|
|
40
|
+
/**
|
|
41
|
+
* Summary html
|
|
42
|
+
*/
|
|
43
|
+
summary_html?: string;
|
|
44
|
+
/**
|
|
45
|
+
* True if summary_html is truncated
|
|
46
|
+
*/
|
|
47
|
+
summary_truncated?: boolean;
|
|
40
48
|
/**
|
|
41
49
|
* If the comments is deleted
|
|
42
50
|
*/
|
package/lib/esm/types/feed.d.ts
CHANGED
|
@@ -125,6 +125,14 @@ export interface SCFeedObjectType {
|
|
|
125
125
|
* Summary
|
|
126
126
|
*/
|
|
127
127
|
summary: string;
|
|
128
|
+
/**
|
|
129
|
+
* Summary html
|
|
130
|
+
*/
|
|
131
|
+
summary_html?: string;
|
|
132
|
+
/**
|
|
133
|
+
* True if summary_html is truncated
|
|
134
|
+
*/
|
|
135
|
+
summary_truncated?: boolean;
|
|
128
136
|
/**
|
|
129
137
|
* True if the object is deleted
|
|
130
138
|
*/
|
package/lib/esm/types/media.d.ts
CHANGED
|
@@ -40,6 +40,15 @@ export interface SCMediaType {
|
|
|
40
40
|
* Media image height
|
|
41
41
|
*/
|
|
42
42
|
image_height?: number;
|
|
43
|
+
/**
|
|
44
|
+
* Media image thumbnail
|
|
45
|
+
*/
|
|
46
|
+
image_thumbnail?: {
|
|
47
|
+
color?: string | null;
|
|
48
|
+
width: number;
|
|
49
|
+
height: number;
|
|
50
|
+
url: string;
|
|
51
|
+
};
|
|
43
52
|
/**
|
|
44
53
|
* Order in the list of medias
|
|
45
54
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfcommunity/types",
|
|
3
|
-
"version": "0.5.0-alpha.
|
|
3
|
+
"version": "0.5.0-alpha.15",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./lib/cjs/index.js",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"bugs": {
|
|
102
102
|
"url": "https://github.com/selfcommunity/community-js/issues"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "e49e6e646b8c5e49936248ac1c3cd26a52697b49"
|
|
105
105
|
}
|