@artsy/cohesion 4.114.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,15 @@
|
|
|
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
|
+
|
|
1
13
|
# v4.114.0 (Fri Mar 03 2023)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -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";
|