@parra/parra-js-sdk 0.3.377 → 0.3.379

Sign up to get free protection for your applications and to get access to all the features.
@@ -425,6 +425,7 @@ export interface TenantUserEntitlement {
425
425
  }
426
426
  export interface TenantUserRoleStub {
427
427
  id: string;
428
+ role_id: string;
428
429
  name: string;
429
430
  key: string;
430
431
  }
@@ -1341,6 +1342,8 @@ export interface FeedItem {
1341
1342
  feed_id: string;
1342
1343
  type: FeedItemType;
1343
1344
  disabled: boolean;
1345
+ comments_disabled: boolean;
1346
+ reactions_disabled: boolean;
1344
1347
  data: FeedItemData;
1345
1348
  reaction_options?: Array<ReactionOptionGroup>;
1346
1349
  reactions?: Array<ReactionSummary>;
@@ -1355,6 +1358,8 @@ export interface FeedItemCollectionResponse {
1355
1358
  }
1356
1359
  export interface UpdateFeedItemRequestBody {
1357
1360
  disabled?: boolean;
1361
+ comments_disabled?: boolean;
1362
+ reactions_disabled?: boolean;
1358
1363
  }
1359
1364
  export interface CreateCommentRequestBody {
1360
1365
  body: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.377",
3
+ "version": "0.3.379",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",