@livetiles/reach-plugin-types 0.5.0-preview.407 → 0.5.0-preview.409
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/lib/index.d.ts +5 -7
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10288,14 +10288,13 @@ declare module "libs/reach/feature/content/src/stream/useNewsStreamDataLoader" {
|
|
|
10288
10288
|
import { NewsFilterDefinition } from "libs/reach/feature/content/src/filter/index";
|
|
10289
10289
|
import { NewsStreamItem } from "libs/reach/feature/content/src/stream/streamUtils";
|
|
10290
10290
|
export function useNewsStreamDataLoader(filter?: NewsFilterDefinition, searchText?: string, includeAllItems?: boolean): ItemLoader<NewsStreamItem, number>;
|
|
10291
|
-
export const NEWS_QUERY: (includeAllItems?: boolean, whereConditions?: string) => import("@apollo/client").DocumentNode;
|
|
10292
10291
|
}
|
|
10293
10292
|
declare module "libs/reach/feature/content/src/stream/useEventsStreamDataLoader" {
|
|
10294
10293
|
import { EventStreamItem } from "libs/reach/feature/content/src/stream/streamUtils";
|
|
10295
|
-
import { ItemLoader } from "libs/reach/ui/common/src/index";
|
|
10296
|
-
import { EventFilterDefinition } from "libs/reach/feature/content/src/filter/
|
|
10297
|
-
export function useEventsStreamDataLoader(filter?: EventFilterDefinition, searchText?: string): ItemLoader<EventStreamItem, number>;
|
|
10298
|
-
export
|
|
10294
|
+
import { EventView, ItemLoader } from "libs/reach/ui/common/src/index";
|
|
10295
|
+
import { EventFilterDefinition } from "libs/reach/feature/content/src/filter/EventFilterDefinition";
|
|
10296
|
+
export function useEventsStreamDataLoader(filter?: EventFilterDefinition, searchText?: string, view?: EventView): ItemLoader<EventStreamItem, number>;
|
|
10297
|
+
export function getEventsFilterByView(filter: EventFilterDefinition, view: EventView): EventFilterDefinition;
|
|
10299
10298
|
export const CONTACTS_CONDITION: (contacts: string[]) => string;
|
|
10300
10299
|
}
|
|
10301
10300
|
declare module "libs/reach/feature/content/src/stream/PostStreamFilterDefinition" {
|
|
@@ -10322,9 +10321,8 @@ declare module "libs/reach/feature/content/src/stream/useMarkStreamItemsAsRead"
|
|
|
10322
10321
|
declare module "libs/reach/feature/content/src/stream/usePagesStreamDataLoader" {
|
|
10323
10322
|
import { ItemLoader } from "libs/reach/ui/common/src/index";
|
|
10324
10323
|
import { PageStreamItem } from "libs/reach/feature/content/src/stream/streamUtils";
|
|
10325
|
-
import { PageFilterDefinition } from "libs/reach/feature/content/src/pages/
|
|
10324
|
+
import { PageFilterDefinition } from "libs/reach/feature/content/src/pages/PageFilterDefinition";
|
|
10326
10325
|
export function usePagesStreamDataLoader(filter?: PageFilterDefinition, searchText?: string): ItemLoader<PageStreamItem, number>;
|
|
10327
|
-
export const PAGES_QUERY: (whereConditions?: string) => import("@apollo/client").DocumentNode;
|
|
10328
10326
|
}
|
|
10329
10327
|
declare module "libs/reach/feature/content/src/stream/index" {
|
|
10330
10328
|
export * from "libs/reach/feature/content/src/stream/StreamList";
|