@artsy/cohesion 4.113.0 → 4.115.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ # v4.115.0 (Fri Mar 03 2023)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat: Add similarToRecentlyViewed screen owner type [#413](https://github.com/artsy/cohesion/pull/413) ([@olerichter00](https://github.com/olerichter00))
6
+
7
+ #### Authors: 1
8
+
9
+ - Ole ([@olerichter00](https://github.com/olerichter00))
10
+
11
+ ---
12
+
13
+ # v4.114.0 (Fri Mar 03 2023)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - Feat(CX-3429): Add SWA ContextModules [#412](https://github.com/artsy/cohesion/pull/412) ([@lordkiz](https://github.com/lordkiz))
18
+
19
+ #### Authors: 1
20
+
21
+ - Kizito Egeonu ([@lordkiz](https://github.com/lordkiz))
22
+
23
+ ---
24
+
1
25
  # v4.113.0 (Thu Mar 02 2023)
2
26
 
3
27
  #### 🚀 Enhancement
@@ -160,6 +160,9 @@ export declare enum ContextModule {
160
160
  saveWorksCTA = "saveWorksCTA",
161
161
  sellFooter = "sellFooter",
162
162
  sellHeader = "sellHeader",
163
+ sellHowItWorks = "sellHowItWorks",
164
+ sellMeetTheSpecialists = "sellMeetTheSpecialists",
165
+ sellSpeakToTheTeam = "sellSpeakToTheTeam",
163
166
  showHeader = "showHeader",
164
167
  showInfo = "showInfo",
165
168
  showsRail = "showsRail",
@@ -174,6 +174,9 @@ exports.ContextModule = ContextModule;
174
174
  ContextModule["saveWorksCTA"] = "saveWorksCTA";
175
175
  ContextModule["sellFooter"] = "sellFooter";
176
176
  ContextModule["sellHeader"] = "sellHeader";
177
+ ContextModule["sellHowItWorks"] = "sellHowItWorks";
178
+ ContextModule["sellMeetTheSpecialists"] = "sellMeetTheSpecialists";
179
+ ContextModule["sellSpeakToTheTeam"] = "sellSpeakToTheTeam";
177
180
  ContextModule["showHeader"] = "showHeader";
178
181
  ContextModule["showInfo"] = "showInfo";
179
182
  ContextModule["showsRail"] = "showsRail";
@@ -79,6 +79,7 @@ export declare enum OwnerType {
79
79
  sell = "sell",
80
80
  show = "show",
81
81
  shows = "shows",
82
+ similarToRecentlyViewed = "similarToRecentlyViewed",
82
83
  tag = "tag",
83
84
  upcomingAuctions = "upcomingAuctions",
84
85
  user = "user",
@@ -96,4 +97,4 @@ export type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | Ow
96
97
  /**
97
98
  * Owner types available in web/mobile web
98
99
  */
99
- export type PageOwnerType = OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctions | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCounter | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.search | OwnerType.show | OwnerType.shows | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou;
100
+ export type PageOwnerType = OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctions | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCounter | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.search | OwnerType.show | OwnerType.shows | OwnerType.similarToRecentlyViewed | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou;
@@ -97,6 +97,7 @@ exports.OwnerType = OwnerType;
97
97
  OwnerType["sell"] = "sell";
98
98
  OwnerType["show"] = "show";
99
99
  OwnerType["shows"] = "shows";
100
+ OwnerType["similarToRecentlyViewed"] = "similarToRecentlyViewed";
100
101
  OwnerType["tag"] = "tag";
101
102
  OwnerType["upcomingAuctions"] = "upcomingAuctions";
102
103
  OwnerType["user"] = "user";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.113.0",
3
+ "version": "4.115.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {