@artsy/cohesion 4.97.0 → 4.99.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.99.0 (Wed Feb 01 2023)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat: add curatedTrendingArtistsRail context module [#397](https://github.com/artsy/cohesion/pull/397) ([@MounirDhahri](https://github.com/MounirDhahri))
6
+
7
+ #### Authors: 1
8
+
9
+ - Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
10
+
11
+ ---
12
+
13
+ # v4.98.0 (Wed Feb 01 2023)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - feat: add upcoming auctions OwnerType [#396](https://github.com/artsy/cohesion/pull/396) ([@MounirDhahri](https://github.com/MounirDhahri))
18
+
19
+ #### Authors: 1
20
+
21
+ - Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
22
+
23
+ ---
24
+
1
25
  # v4.97.0 (Wed Feb 01 2023)
2
26
 
3
27
  #### 🚀 Enhancement
@@ -59,6 +59,7 @@ export declare enum ContextModule {
59
59
  createAlert = "createAlert",
60
60
  curatedCollections = "curatedCollections",
61
61
  curatedHighlightsRail = "curatedHighlightsRail",
62
+ curatedTrendingArtistsRail = "curatedTrendingArtistsRail",
62
63
  currentAuctions = "currentAuctions",
63
64
  currentShowsRail = "currentShowsRail",
64
65
  doMoreOnArtsy = "doMoreOnArtsy",
@@ -73,6 +73,7 @@ exports.ContextModule = ContextModule;
73
73
  ContextModule["createAlert"] = "createAlert";
74
74
  ContextModule["curatedCollections"] = "curatedCollections";
75
75
  ContextModule["curatedHighlightsRail"] = "curatedHighlightsRail";
76
+ ContextModule["curatedTrendingArtistsRail"] = "curatedTrendingArtistsRail";
76
77
  ContextModule["currentAuctions"] = "currentAuctions";
77
78
  ContextModule["currentShowsRail"] = "currentShowsRail";
78
79
  ContextModule["doMoreOnArtsy"] = "doMoreOnArtsy";
@@ -43,7 +43,6 @@ export declare enum OwnerType {
43
43
  inboxConversation = "inboxConversation",
44
44
  inboxInquiries = "inboxInquiries",
45
45
  myCollection = "myCollection",
46
- myCollectionUploadingFlow = "myCollectionUploadingFlow",
47
46
  myCollectionAddArtworkArtist = "myCollectionAddArtworkArtist",
48
47
  myCollectionArtwork = "myCollectionArtwork",
49
48
  myCollectionArtworkAbout = "MyCollectionArtworkAbout",
@@ -51,6 +50,7 @@ export declare enum OwnerType {
51
50
  myCollectionInsights = "myCollectionInsights",
52
51
  myCollectionInsightsMedianAuctionPrice = "myCollectionInsightsMedianAuctionPrice",
53
52
  myCollectionOnboarding = "myCollectionOnboarding",
53
+ myCollectionUploadingFlow = "myCollectionUploadingFlow",
54
54
  newWorksForYou = "newWorksForYou",
55
55
  onboarding = "onboarding",
56
56
  ordersAccept = "orders-accept",
@@ -77,6 +77,7 @@ export declare enum OwnerType {
77
77
  show = "show",
78
78
  shows = "shows",
79
79
  tag = "tag",
80
+ upcomingAuctions = "upcomingAuctions",
80
81
  user = "user",
81
82
  viewingRoom = "viewingRoom",
82
83
  viewingRoomArtworkPage = "viewingRoomArtworkPage",
@@ -88,8 +89,8 @@ export declare enum OwnerType {
88
89
  /**
89
90
  * Owner types available in iOS/Android
90
91
  */
91
- export type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.onboarding | OwnerType.partner | OwnerType.profile | OwnerType.sale | OwnerType.reverseImageSearch | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.tag | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
92
+ export type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.onboarding | OwnerType.partner | OwnerType.profile | OwnerType.reverseImageSearch | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
92
93
  /**
93
94
  * Owner types available in web/mobile web
94
95
  */
95
- export type PageOwnerType = OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artists | OwnerType.artistAuctionResults | 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;
96
+ 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;
@@ -61,7 +61,6 @@ exports.OwnerType = OwnerType;
61
61
  OwnerType["inboxConversation"] = "inboxConversation";
62
62
  OwnerType["inboxInquiries"] = "inboxInquiries";
63
63
  OwnerType["myCollection"] = "myCollection";
64
- OwnerType["myCollectionUploadingFlow"] = "myCollectionUploadingFlow";
65
64
  OwnerType["myCollectionAddArtworkArtist"] = "myCollectionAddArtworkArtist";
66
65
  OwnerType["myCollectionArtwork"] = "myCollectionArtwork";
67
66
  OwnerType["myCollectionArtworkAbout"] = "MyCollectionArtworkAbout";
@@ -69,6 +68,7 @@ exports.OwnerType = OwnerType;
69
68
  OwnerType["myCollectionInsights"] = "myCollectionInsights";
70
69
  OwnerType["myCollectionInsightsMedianAuctionPrice"] = "myCollectionInsightsMedianAuctionPrice";
71
70
  OwnerType["myCollectionOnboarding"] = "myCollectionOnboarding";
71
+ OwnerType["myCollectionUploadingFlow"] = "myCollectionUploadingFlow";
72
72
  OwnerType["newWorksForYou"] = "newWorksForYou";
73
73
  OwnerType["onboarding"] = "onboarding";
74
74
  OwnerType["ordersAccept"] = "orders-accept";
@@ -95,6 +95,7 @@ exports.OwnerType = OwnerType;
95
95
  OwnerType["show"] = "show";
96
96
  OwnerType["shows"] = "shows";
97
97
  OwnerType["tag"] = "tag";
98
+ OwnerType["upcomingAuctions"] = "upcomingAuctions";
98
99
  OwnerType["user"] = "user";
99
100
  OwnerType["viewingRoom"] = "viewingRoom";
100
101
  OwnerType["viewingRoomArtworkPage"] = "viewingRoomArtworkPage";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.97.0",
3
+ "version": "4.99.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {