(
options: CacheKeyOptions & {
surveyId: string
editionId: string
}
)
| 24 | .join(',')}` |
| 25 | |
| 26 | export const editionMetadataCacheKey = ( |
| 27 | options: CacheKeyOptions & { |
| 28 | surveyId: string |
| 29 | editionId: string |
| 30 | } |
| 31 | ) => `${getAppName(options)}__${options.surveyId}__${options.editionId}__metadata` |
| 32 | |
| 33 | export const editionSitemapCacheKey = ( |
| 34 | options: CacheKeyOptions & { |
no test coverage detected