@livetiles/reach-plugin-types 0.5.0-preview.997 → 0.5.0-preview.998

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 +7 -5
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -465,11 +465,12 @@ declare module "libs/reach/util/common/src/reachClassNames" {
465
465
  }
466
466
  declare module "libs/reach/util/common/src/PaginatedList" {
467
467
  export interface PaginatedList<TItem> {
468
- items: TItem[];
469
- paginationToken?: any;
470
- nextItem?: TItem;
471
468
  hasMoreUnreadComments?: boolean;
472
469
  hasNextPage?: boolean;
470
+ items: TItem[];
471
+ nextItem?: TItem;
472
+ paginationToken?: any;
473
+ totalCount?: number;
473
474
  }
474
475
  }
475
476
  declare module "libs/reach/util/common/src/SortDirection" {
@@ -10849,10 +10850,11 @@ declare module "libs/reach/feature/content/src/stream/streamUtils" {
10849
10850
  isDemoContent?: boolean;
10850
10851
  attachmentContainerId?: string;
10851
10852
  }[];
10852
- paginationToken?: any;
10853
- nextItem?: StreamPostComment;
10854
10853
  hasMoreUnreadComments?: boolean;
10855
10854
  hasNextPage?: boolean;
10855
+ nextItem?: StreamPostComment;
10856
+ paginationToken?: any;
10857
+ totalCount?: number;
10856
10858
  };
10857
10859
  keywords: {
10858
10860
  [p: string]: Keyword[];
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.997",
7
+ "version": "0.5.0-preview.998",
8
8
  "dependencies": {}
9
9
  }