(input: {
userId: string;
pageId: string;
dataAbstraction: DataAbstraction<typeof dataHashes>;
})
| 147 | } |
| 148 | |
| 149 | async function _updateRecentPageIds(input: { |
| 150 | userId: string; |
| 151 | pageId: string; |
| 152 | dataAbstraction: DataAbstraction<typeof dataHashes>; |
| 153 | }) { |
| 154 | await bumpRecentItem({ |
| 155 | userId: input.userId, |
| 156 | itemType: 'page', |
| 157 | itemId: input.pageId, |
| 158 | dataAbstraction: input.dataAbstraction, |
| 159 | }); |
| 160 | } |
| 161 | async function _updateRecentGroupIds(input: { |
| 162 | userId: string; |
| 163 | groupId: string; |
no test coverage detected