@livetiles/reach-plugin-types 0.5.0-preview.206 → 0.5.0-preview.207
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 +10 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -6789,6 +6789,13 @@ declare module "libs/reach/feature/content/src/common/AppTriggerActions" {
|
|
|
6789
6789
|
likeCount: number;
|
|
6790
6790
|
static create(recurrenceSeriesId: string, isLiked: boolean, likeCount: number): AutoLikeItemTriggerAction;
|
|
6791
6791
|
}
|
|
6792
|
+
export class AutoFollowItemTriggerAction implements AppTriggerAction {
|
|
6793
|
+
static type: string;
|
|
6794
|
+
type: string;
|
|
6795
|
+
recurrenceSeriesId: string;
|
|
6796
|
+
isFollowed: boolean;
|
|
6797
|
+
static create(recurrenceSeriesId: string, isFollowed: boolean): AutoFollowItemTriggerAction;
|
|
6798
|
+
}
|
|
6792
6799
|
export class DeletedItemsTriggerAction implements AppTriggerAction {
|
|
6793
6800
|
static type: string;
|
|
6794
6801
|
type: string;
|
|
@@ -6863,9 +6870,12 @@ declare module "libs/reach/feature/content/src/comments/FollowComments" {
|
|
|
6863
6870
|
interface Props {
|
|
6864
6871
|
type: ItemResourceTypes;
|
|
6865
6872
|
itemId: string;
|
|
6873
|
+
recurrenceSeriesId?: string;
|
|
6866
6874
|
className?: string;
|
|
6867
6875
|
scope: ConversationScope;
|
|
6868
6876
|
hideProfileUrl?: boolean;
|
|
6877
|
+
hideWarning?: boolean;
|
|
6878
|
+
onToggleFollow?: (isFollowed: boolean) => void;
|
|
6869
6879
|
}
|
|
6870
6880
|
export const FollowComments: FC<Props>;
|
|
6871
6881
|
}
|