summaryrefslogtreecommitdiffstats
path: root/src/types/MutationTypes.ts
blob: 7176366e507a2dba32eeb4beb502dc81accafec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const FEED_MUTATION_TYPES = {
	ADD_FEED: 'ADD_FEED',
	SET_FEEDS: 'SET_FEEDS',
}

export const FOLDER_MUTATION_TYPES = {
	SET_FOLDERS: 'SET_FOLDERS',
	DELETE_FOLDER: 'DELETE_FOLDER',
}

export const FEED_ITEM_MUTATION_TYPES = {
	SET_ITEMS: 'SET_ITEMS',
	SET_STARRED_COUNT: 'SET_STARRED_COUNT',
	SET_UNREAD_COUNT: 'SET_UNREAD_COUNT',
	UPDATE_ITEM: 'UPDATE_ITEM',
	SET_FETCHING: 'SET_FETCHING'
}