fix: handle cache tags for service tokens

This commit is contained in:
Christel Westerberg
2024-10-01 14:48:28 +02:00
parent 71d08be154
commit 2ea0adbf98
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