@artsy/cohesion 4.220.0 → 4.222.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.222.0 (Tue Dec 31 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - chore: adjust ScreenOwnerType [#545](https://github.com/artsy/cohesion/pull/545) ([@dariakoko](https://github.com/dariakoko))
6
+
7
+ #### Authors: 1
8
+
9
+ - Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
10
+
11
+ ---
12
+
13
+ # v4.221.0 (Tue Dec 31 2024)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - feat(ONYX-1458): add missing tracking data [#544](https://github.com/artsy/cohesion/pull/544) ([@dariakoko](https://github.com/dariakoko))
18
+
19
+ #### Authors: 1
20
+
21
+ - Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
22
+
23
+ ---
24
+
1
25
  # v4.220.0 (Mon Dec 16 2024)
2
26
 
3
27
  #### 🚀 Enhancement
@@ -451,7 +451,7 @@ export interface TappedInfoBubble {
451
451
  context_screen_owner_type: ScreenOwnerType;
452
452
  context_screen_owner_id?: string;
453
453
  context_screen_owner_slug?: string;
454
- subject: "auctionResults" | "demandIndex" | "priceEstimate" | "artistMarketStatistics" | "auctionResultSalePrice";
454
+ subject: "auctionResults" | "demandIndex" | "priceEstimate" | "artistMarketStatistics" | "auctionResultSalePrice" | "alertsHeader" | "followsHeader" | "signalYourInterestToGalleries";
455
455
  }
456
456
  /**
457
457
  * A user taps on an artwork in the main artwork grid, which is the main product feed we can find on our core merchandising surfaces.
@@ -103,6 +103,7 @@ export declare enum ContextModule {
103
103
  featuredViewingRoomsRail = "featuredViewingRoomsRail",
104
104
  filterScreen = "filterScreen",
105
105
  findTheArtYouWant = "findTheArtYouWant",
106
+ follows = "follows",
106
107
  footer = "footer",
107
108
  frequentlyAskedQuestions = "frequentlyAskedQuestions",
108
109
  galleriesForYouBanner = "galleriesForYouBanner",
@@ -188,6 +189,7 @@ export declare enum ContextModule {
188
189
  relatedArtistsRail = "relatedArtistsRail",
189
190
  relatedCollectionsRail = "relatedCollectionsRail",
190
191
  relatedWorksRail = "relatedWorksRail",
192
+ saves = "saves",
191
193
  saveWorksCTA = "saveWorksCTA",
192
194
  sell = "sell",
193
195
  sellFooter = "sellFooter",
@@ -117,6 +117,7 @@ exports.ContextModule = ContextModule;
117
117
  ContextModule["featuredViewingRoomsRail"] = "featuredViewingRoomsRail";
118
118
  ContextModule["filterScreen"] = "filterScreen";
119
119
  ContextModule["findTheArtYouWant"] = "findTheArtYouWant";
120
+ ContextModule["follows"] = "follows";
120
121
  ContextModule["footer"] = "footer";
121
122
  ContextModule["frequentlyAskedQuestions"] = "frequentlyAskedQuestions";
122
123
  ContextModule["galleriesForYouBanner"] = "galleriesForYouBanner";
@@ -202,6 +203,7 @@ exports.ContextModule = ContextModule;
202
203
  ContextModule["relatedArtistsRail"] = "relatedArtistsRail";
203
204
  ContextModule["relatedCollectionsRail"] = "relatedCollectionsRail";
204
205
  ContextModule["relatedWorksRail"] = "relatedWorksRail";
206
+ ContextModule["saves"] = "saves";
205
207
  ContextModule["saveWorksCTA"] = "saveWorksCTA";
206
208
  ContextModule["sell"] = "sell";
207
209
  ContextModule["sellFooter"] = "sellFooter";
@@ -12,6 +12,7 @@ export declare enum OwnerType {
12
12
  alertDetails = "alertDetails",
13
13
  alertConfirmation = "alertConfirmation",
14
14
  alertFilters = "alertFilters",
15
+ alertsInfoModal = "alertsInfoModal",
15
16
  article = "article",
16
17
  articles = "articles",
17
18
  artist = "artist",
@@ -48,6 +49,7 @@ export declare enum OwnerType {
48
49
  fair = "fair",
49
50
  fairArtworks = "fairArtworks",
50
51
  fairs = "fairs",
52
+ follows = "follows",
51
53
  galleries = "galleries",
52
54
  galleriesForYou = "galleriesForYou",
53
55
  gene = "gene",
@@ -93,6 +95,7 @@ export declare enum OwnerType {
93
95
  savedSearch = "savedSearch",
94
96
  savedSearches = "savedSearches",
95
97
  saves = "saves",
98
+ savesInfoModal = "savesInfoModal",
96
99
  savesAndFollows = "savesAndFollows",
97
100
  search = "search",
98
101
  settings = "settings",
@@ -130,7 +133,7 @@ export declare enum OwnerType {
130
133
  /**
131
134
  * Owner types available in iOS/Android
132
135
  */
133
- export type ScreenOwnerType = OwnerType.album | OwnerType.activities | OwnerType.activity | OwnerType.allArtistSeries | OwnerType.alerts | OwnerType.alertDetails | OwnerType.alertConfirmation | OwnerType.alertFilters | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistArticles | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.collectionsCategory | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.createAlert | OwnerType.editAlert | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.lotsByArtistsYouFollow | OwnerType.lotsForYou | OwnerType.marketNews | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.notification | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.settings | 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.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
136
+ export type ScreenOwnerType = OwnerType.album | OwnerType.activities | OwnerType.activity | OwnerType.allArtistSeries | OwnerType.alerts | OwnerType.alertDetails | OwnerType.alertConfirmation | OwnerType.alertFilters | OwnerType.alertsInfoModal | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistArticles | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.collectionsCategory | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.createAlert | OwnerType.editAlert | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.follows | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.lotsByArtistsYouFollow | OwnerType.lotsForYou | OwnerType.marketNews | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.notification | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesInfoModal | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.settings | 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.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
134
137
  /**
135
138
  * Owner types available in web/mobile web
136
139
  */
@@ -30,6 +30,7 @@ exports.OwnerType = OwnerType;
30
30
  OwnerType["alertDetails"] = "alertDetails";
31
31
  OwnerType["alertConfirmation"] = "alertConfirmation";
32
32
  OwnerType["alertFilters"] = "alertFilters";
33
+ OwnerType["alertsInfoModal"] = "alertsInfoModal";
33
34
  OwnerType["article"] = "article";
34
35
  OwnerType["articles"] = "articles";
35
36
  OwnerType["artist"] = "artist";
@@ -66,6 +67,7 @@ exports.OwnerType = OwnerType;
66
67
  OwnerType["fair"] = "fair";
67
68
  OwnerType["fairArtworks"] = "fairArtworks";
68
69
  OwnerType["fairs"] = "fairs";
70
+ OwnerType["follows"] = "follows";
69
71
  OwnerType["galleries"] = "galleries";
70
72
  OwnerType["galleriesForYou"] = "galleriesForYou";
71
73
  OwnerType["gene"] = "gene";
@@ -111,6 +113,7 @@ exports.OwnerType = OwnerType;
111
113
  OwnerType["savedSearch"] = "savedSearch";
112
114
  OwnerType["savedSearches"] = "savedSearches";
113
115
  OwnerType["saves"] = "saves";
116
+ OwnerType["savesInfoModal"] = "savesInfoModal";
114
117
  OwnerType["savesAndFollows"] = "savesAndFollows";
115
118
  OwnerType["search"] = "search";
116
119
  OwnerType["settings"] = "settings";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.220.0",
3
+ "version": "4.222.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {