@artsy/cohesion 4.285.0 → 4.286.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.286.0 (Mon Jul 21 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat(onyx-1847): add tracking for recommended artists on Web [#619](https://github.com/artsy/cohesion/pull/619) ([@nickskalkin](https://github.com/nickskalkin))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Nikita Skalkin ([@nickskalkin](https://github.com/nickskalkin))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.285.0 (Fri Jul 18 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -32,6 +32,7 @@ export declare enum ContextModule {
|
|
|
32
32
|
artistArtworksGridEnd = "artistArtworksGridEnd",
|
|
33
33
|
artistAuctionResults = "artistAuctionResults",
|
|
34
34
|
artistCard = "artistCard",
|
|
35
|
+
artistGrid = "artistGrid",
|
|
35
36
|
artistHeader = "artistHeader",
|
|
36
37
|
artistHighDemandGrid = "artistHighDemandGrid",
|
|
37
38
|
artistRecentlySold = "artistRecentlySold",
|
|
@@ -46,6 +46,7 @@ exports.ContextModule = ContextModule;
|
|
|
46
46
|
ContextModule["artistArtworksGridEnd"] = "artistArtworksGridEnd";
|
|
47
47
|
ContextModule["artistAuctionResults"] = "artistAuctionResults";
|
|
48
48
|
ContextModule["artistCard"] = "artistCard";
|
|
49
|
+
ContextModule["artistGrid"] = "artistGrid";
|
|
49
50
|
ContextModule["artistHeader"] = "artistHeader";
|
|
50
51
|
ContextModule["artistHighDemandGrid"] = "artistHighDemandGrid";
|
|
51
52
|
ContextModule["artistRecentlySold"] = "artistRecentlySold";
|
|
@@ -125,6 +125,7 @@ export declare enum OwnerType {
|
|
|
125
125
|
profile = "profile",
|
|
126
126
|
quickLinks = "quickLinks",
|
|
127
127
|
recentlyViewed = "recentlyViewed",
|
|
128
|
+
recommendedArtists = "recommendedArtists",
|
|
128
129
|
sale = "sale",
|
|
129
130
|
saleInformation = "saleInformation",
|
|
130
131
|
savedSearch = "savedSearch",
|
|
@@ -174,4 +175,4 @@ export type ScreenOwnerType = OwnerType.about | OwnerType.account | OwnerType.ac
|
|
|
174
175
|
/**
|
|
175
176
|
* Owner types available in web/mobile web
|
|
176
177
|
*/
|
|
177
|
-
export type PageOwnerType = OwnerType.about | OwnerType.activities | OwnerType.activity | OwnerType.alertConfirmation | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkRecommendations | OwnerType.auctions | OwnerType.basedOnYourRecentSaves | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.demand | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.marketNews | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCheckout | OwnerType.ordersCounter | OwnerType.ordersDetail | 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.saves | OwnerType.search | OwnerType.sendOffers | OwnerType.show | OwnerType.shows | OwnerType.submitArtworkStepStart | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepCondition | OwnerType.submitArtworkStepCompleteYourSubmissionPostApproval | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou | OwnerType.newWorksFromGalleriesYouFollow;
|
|
178
|
+
export type PageOwnerType = OwnerType.about | OwnerType.activities | OwnerType.activity | OwnerType.alertConfirmation | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkRecommendations | OwnerType.auctions | OwnerType.basedOnYourRecentSaves | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.demand | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.marketNews | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCheckout | OwnerType.ordersCounter | OwnerType.ordersDetail | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recommendedArtists | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.search | OwnerType.sendOffers | OwnerType.show | OwnerType.shows | OwnerType.submitArtworkStepStart | OwnerType.submitArtworkStepSelectArtist | OwnerType.submitArtworkStepAddTitle | OwnerType.submitArtworkStepAddPhotos | OwnerType.submitArtworkStepAddDetails | OwnerType.submitArtworkStepPurchaseHistory | OwnerType.submitArtworkStepAddDimensions | OwnerType.submitArtworkStepAddPhoneNumber | OwnerType.submitArtworkStepCompleteYourSubmission | OwnerType.submitArtworkStepArtistRejected | OwnerType.submitArtworkStepSelectArtworkMyCollectionArtwork | OwnerType.submitArtworkStepShippingLocation | OwnerType.submitArtworkStepFrameInformation | OwnerType.submitArtworkStepAddtionalDocuments | OwnerType.submitArtworkStepCondition | OwnerType.submitArtworkStepCompleteYourSubmissionPostApproval | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou | OwnerType.newWorksFromGalleriesYouFollow;
|
|
@@ -143,6 +143,7 @@ exports.OwnerType = OwnerType;
|
|
|
143
143
|
OwnerType["profile"] = "profile";
|
|
144
144
|
OwnerType["quickLinks"] = "quickLinks";
|
|
145
145
|
OwnerType["recentlyViewed"] = "recentlyViewed";
|
|
146
|
+
OwnerType["recommendedArtists"] = "recommendedArtists";
|
|
146
147
|
OwnerType["sale"] = "sale";
|
|
147
148
|
OwnerType["saleInformation"] = "saleInformation";
|
|
148
149
|
OwnerType["savedSearch"] = "savedSearch";
|