@parra/parra-js-sdk 0.3.378 → 0.3.379
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.
- package/dist/ParraAPI.d.ts +4 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1342,6 +1342,8 @@ export interface FeedItem {
|
|
|
1342
1342
|
feed_id: string;
|
|
1343
1343
|
type: FeedItemType;
|
|
1344
1344
|
disabled: boolean;
|
|
1345
|
+
comments_disabled: boolean;
|
|
1346
|
+
reactions_disabled: boolean;
|
|
1345
1347
|
data: FeedItemData;
|
|
1346
1348
|
reaction_options?: Array<ReactionOptionGroup>;
|
|
1347
1349
|
reactions?: Array<ReactionSummary>;
|
|
@@ -1356,6 +1358,8 @@ export interface FeedItemCollectionResponse {
|
|
|
1356
1358
|
}
|
|
1357
1359
|
export interface UpdateFeedItemRequestBody {
|
|
1358
1360
|
disabled?: boolean;
|
|
1361
|
+
comments_disabled?: boolean;
|
|
1362
|
+
reactions_disabled?: boolean;
|
|
1359
1363
|
}
|
|
1360
1364
|
export interface CreateCommentRequestBody {
|
|
1361
1365
|
body: string;
|