Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ fun FetchedStoreProfile.Settings.toUpdated(): UpdatedStoreProfile.Settings {
storeDescriptionTranslated = storeDescriptionTranslated,
storeName = storeName,
tikTokPixel = tikTokPixel?.toUpdated(),
askAgeConfirmationInStorefront = askAgeConfirmationInStorefront,
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ data class UpdatedStoreProfile(
val storeDescriptionTranslated: LocalizedValueMap? = null,
val storeName: String? = null,
val tikTokPixel: TikTokPixelSettings? = null,
val askAgeConfirmationInStorefront: Boolean? = null,
)

data class TikTokPixelSettings(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ data class FetchedStoreProfile(
val storeDescriptionTranslated: LocalizedValueMap? = null,
val storeName: String? = null,
val tikTokPixel: TikTokPixelSettings? = null,
val askAgeConfirmationInStorefront: Boolean = false,
)

data class TikTokPixelSettings(
Expand Down
Loading