@selfcommunity/types 0.5.0-alpha.14 → 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
  */
@@ -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
  */
@@ -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
  */
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selfcommunity/types",
3
- "version": "0.5.0-alpha.14",
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": "69ae3e727d277477fae8508b950d4baf891fed8a"
104
+ "gitHead": "e49e6e646b8c5e49936248ac1c3cd26a52697b49"
105
105
  }