fix: handle cache tags for service tokens

This commit is contained in:
Christel Westerberg
2024-10-01 14:48:28 +02:00
committed by Pontus Dreij
parent e5f85e0499
commit 3c548923ff
4 changed files with 75 additions and 25 deletions

View File

@@ -0,0 +1,7 @@
export enum ServiceTokenScopeEnum {
profile = "profile",
hotel = "hotel",
booking = "booking",
}
export type ServiceTokenScope = keyof typeof ServiceTokenScopeEnum