Merged in feat/LOY-394-promos-linkable (pull request #2918)

feat(LOY-394): add promo campaign page link

* feat(LOY-394): make promo campaigns linkable from everewhere


Approved-by: Erik Tiekstra
Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Matilda Landström
2025-10-07 13:30:34 +00:00
parent 31dcbc5335
commit 2176a7dd6f
35 changed files with 195 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
#import "../PageLink/HotelPageLink.graphql"
#import "../PageLink/LoyaltyPageLink.graphql"
#import "../PageLink/StartPageLink.graphql"
#import "../PageLink/PromoCampaignPageLink.graphql"
#import "../AccountPage/Ref.graphql"
#import "../CampaignOverviewPage/Ref.graphql"
@@ -21,6 +22,7 @@
#import "../HotelPage/Ref.graphql"
#import "../LoyaltyPage/Ref.graphql"
#import "../StartPage/Ref.graphql"
#import "../PromoCampaignPage/Ref.graphql"
fragment DynamicContent_AccountPage on AccountPageContentDynamicContent {
dynamic_content {
@@ -44,6 +46,7 @@ fragment DynamicContent_AccountPage on AccountPageContentDynamicContent {
...HotelPageLink
...LoyaltyPageLink
...StartPageLink
...PromoCampaignPageLink
}
}
}
@@ -69,6 +72,7 @@ fragment DynamicContent_AccountPageRefs on AccountPageContentDynamicContent {
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
...PromoCampaignPageRef
}
}
}
@@ -98,6 +102,7 @@ fragment DynamicContent_CollectionPage on CollectionPageBlocksDynamicContent {
...HotelPageLink
...LoyaltyPageLink
...StartPageLink
...PromoCampaignPageLink
}
}
}
@@ -123,6 +128,7 @@ fragment DynamicContent_CollectionPageRefs on CollectionPageBlocksDynamicContent
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
...PromoCampaignPageRef
}
}
}
@@ -152,6 +158,7 @@ fragment DynamicContent_ContentPage on ContentPageBlocksDynamicContent {
...HotelPageLink
...LoyaltyPageLink
...StartPageLink
...PromoCampaignPageLink
}
}
}
@@ -177,6 +184,7 @@ fragment DynamicContent_ContentPageRefs on ContentPageBlocksDynamicContent {
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
...PromoCampaignPageRef
}
}
}
@@ -206,6 +214,7 @@ fragment DynamicContent_LoyaltyPage on LoyaltyPageBlocksDynamicContent {
...HotelPageLink
...LoyaltyPageLink
...StartPageLink
...PromoCampaignPageLink
}
}
}
@@ -231,6 +240,7 @@ fragment DynamicContent_LoyaltyPageRefs on LoyaltyPageBlocksDynamicContent {
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
...PromoCampaignPageRef
}
}
}