1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/**
* Created by jellenbogen 4/12/21.
*/
// This is the set of ProductPageShelfIds that were previously containerized, this is needed
// for backwards compatibility converting shelfBased to non-shelfBased
export const legacyProductPageNonShelfSections = new Set([
"header",
"topLockup",
"screenshots",
]);
// This is the list of productPageShelfIds that are able to be used on non-shelfBasaed product
// pages
export const legacyProductPageKnownShelfIds = new Set([
"accessibilityDeveloperLink",
"accessibilityFeatures",
"accessibilityHeader",
"achievements",
"actionLinks",
"appEvents",
"bundleChildren",
"bundleParents",
"capabilities",
"description",
"editorialQuote",
"featuredIn",
"friendsPlaying",
"inAppPurchases",
"information",
"informationRibbon",
"notPurchasedLinks",
"purchasedLinks",
"moreByDeveloper",
"mostRecentVersion",
"preorderDisclaimer",
"privacyFooter",
"privacyHeader",
"privacyTypes",
"reviews",
"similarItems",
"subscriptions",
"textCards",
"textLinksShelf",
"videos",
]);
//# sourceMappingURL=product-page-shelf-ids.js.map
|