@livetiles/reach-plugin-types 0.5.0-preview.280 → 0.5.0-preview.282

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +8 -0
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -2534,12 +2534,16 @@ declare module "libs/reach/util/common/src/content/PageItem" {
2534
2534
  isUnlinked?: boolean;
2535
2535
  pageType?: PageType;
2536
2536
  firstChildId?: string;
2537
+ isGroupInheritanceBroken?: boolean;
2537
2538
  }
2538
2539
  export interface ContentsSummary {
2539
2540
  [lang: string]: TitleContent & {
2540
2541
  fileInfo?: DocumentFileInfo;
2541
2542
  };
2542
2543
  }
2544
+ export interface GroupInheritanceUpdateRequest {
2545
+ breakGroupInheritance: boolean;
2546
+ }
2543
2547
  export interface PageNavigationNode {
2544
2548
  id: string;
2545
2549
  contents?: ContentsSummary;
@@ -7463,6 +7467,7 @@ declare module "libs/reach/feature/content/src/comments/FollowComments" {
7463
7467
  scope: ConversationScope;
7464
7468
  hideProfileUrl?: boolean;
7465
7469
  onToggleFollow?: (isFollowed: boolean) => void;
7470
+ isReadOnly?: boolean;
7466
7471
  }
7467
7472
  export const FollowComments: FC<Props>;
7468
7473
  export const FollowCommentsNotificationWarning: FC<{
@@ -10968,6 +10973,7 @@ declare module "libs/reach/feature/content/src/stream/streamUtils" {
10968
10973
  isUnlinked?: boolean;
10969
10974
  pageType?: PageType;
10970
10975
  firstChildId?: string;
10976
+ isGroupInheritanceBroken?: boolean;
10971
10977
  lease: import("@livetiles/reach/util/common").LeaseInfo;
10972
10978
  id?: string;
10973
10979
  versionId?: string;
@@ -11154,6 +11160,7 @@ declare module "libs/reach/feature/content/src/stream/streamUtils" {
11154
11160
  isUnlinked?: boolean;
11155
11161
  pageType?: PageType;
11156
11162
  firstChildId?: string;
11163
+ isGroupInheritanceBroken?: boolean;
11157
11164
  lease: import("@livetiles/reach/util/common").LeaseInfo;
11158
11165
  id?: string;
11159
11166
  versionId?: string;
@@ -11351,6 +11358,7 @@ declare module "libs/reach/feature/content/src/stream/streamUtils" {
11351
11358
  isUnlinked?: boolean;
11352
11359
  pageType?: PageType;
11353
11360
  firstChildId?: string;
11361
+ isGroupInheritanceBroken?: boolean;
11354
11362
  lease: import("@livetiles/reach/util/common").LeaseInfo;
11355
11363
  id?: string;
11356
11364
  versionId?: string;
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.280",
7
+ "version": "0.5.0-preview.282",
8
8
  "dependencies": {}
9
9
  }