@artsy/cohesion 4.350.0 → 4.352.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.352.0 (Tue Apr 07 2026)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat: signup page Buyer Guarantee implementation [#690](https://github.com/artsy/cohesion/pull/690) ([@xander-pero](https://github.com/xander-pero))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@xander-pero](https://github.com/xander-pero)
10
+
11
+ ---
12
+
13
+ # v4.351.0 (Tue Mar 24 2026)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - chore: Update parameter to use snake_case instead of camelCase [#689](https://github.com/artsy/cohesion/pull/689) ([@MrSltun](https://github.com/MrSltun))
18
+
19
+ #### Authors: 1
20
+
21
+ - Sultan Al-Maari ([@MrSltun](https://github.com/MrSltun))
22
+
23
+ ---
24
+
1
25
  # v4.350.0 (Tue Mar 24 2026)
2
26
 
3
27
  #### 🚀 Enhancement
@@ -52,7 +52,7 @@ export interface ArtworkTemplatesPageClickedUseTemplate {
52
52
  * action: "clickedArtworkNavigationTab",
53
53
  * context_module: "Artworks - templates",
54
54
  * context_page_owner_type: "artwork",
55
- * tabName: "All" | "Templates",
55
+ * tab_name: "All" | "Templates",
56
56
  * user_id: "some-user-id",
57
57
  * }
58
58
  * ```
@@ -61,7 +61,7 @@ export interface ArtworkTemplatesPageClickedArtworkNavigationTab {
61
61
  action: CmsActionType.clickedArtworkNavigationTab;
62
62
  context_module: CmsContextModule.artworkTemplates;
63
63
  context_page_owner_type: CmsOwnerType.artwork;
64
- tabName: string;
64
+ tab_name: string;
65
65
  user_id: string;
66
66
  }
67
67
  export type CmsArtworkTemplatesPage = ArtworkTemplatesPageDeleteArtworkTemplate | ArtworkTemplatesPageClickedUseTemplate | ArtworkTemplatesPageClickedArtworkNavigationTab;
@@ -275,7 +275,7 @@ export interface ClickedCollectionGroup extends ClickedEntityGroup {
275
275
  action: ActionType.clickedCollectionGroup;
276
276
  }
277
277
  /**
278
- * User clicks on Artsy's buyer protection link during their checkout flow.
278
+ * User clicks on Artsy's buyer protection link during their checkout flow, or on the signup page.
279
279
  *
280
280
  * This schema describes events sent to Segment from [[clickedBuyerProtection]]
281
281
  *
@@ -283,9 +283,9 @@ export interface ClickedCollectionGroup extends ClickedEntityGroup {
283
283
  * ```
284
284
  * {
285
285
  * action: "clickedBuyerProtection",
286
- * context_module: "ordersShipping",
287
- * context_page_owner_type: "orders-shipping",
288
- * context_page_owner_id: "57e60c68-a198-431e-8a02-6ecb01e3a99b",
286
+ * context_module: "ordersShipping" | "about",
287
+ * context_page_owner_type: "orders-shipping" | "signup",
288
+ * context_page_owner_id?: "57e60c68-a198-431e-8a02-6ecb01e3a99b" | null,
289
289
  * destination_page_owner_type: "articles",
290
290
  * destination_page_owner_slug: "360048946973-How-does-Artsy-protect-me"
291
291
  * }
@@ -295,7 +295,7 @@ export interface ClickedBuyerProtection {
295
295
  action: ActionType.clickedBuyerProtection;
296
296
  context_module: ContextModule;
297
297
  context_page_owner_type: string;
298
- context_page_owner_id: string;
298
+ context_page_owner_id?: string;
299
299
  destination_page_owner_type: PageOwnerType;
300
300
  destination_page_owner_slug: string;
301
301
  }
@@ -143,6 +143,7 @@ export declare enum OwnerType {
143
143
  settings = "settings",
144
144
  show = "show",
145
145
  shows = "shows",
146
+ signup = "signup",
146
147
  similarToRecentlyViewed = "similarToRecentlyViewed",
147
148
  submitArtworkStepAddDetails = "submitArtworkStepAddDetails",
148
149
  submitArtworkStepAddDimensions = "submitArtworkStepAddDimensions",
@@ -178,4 +179,4 @@ export type ScreenOwnerType = OwnerType.about | OwnerType.account | OwnerType.ac
178
179
  /**
179
180
  * Owner types available in web/mobile web
180
181
  */
181
- export type PageOwnerType = OwnerType.about | OwnerType.activities | OwnerType.activity | OwnerType.alertConfirmation | OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctions | OwnerType.basedOnYourRecentSaves | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.conversation | 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;
182
+ export type PageOwnerType = OwnerType.about | OwnerType.activities | OwnerType.activity | OwnerType.alertConfirmation | OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctions | OwnerType.basedOnYourRecentSaves | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.conversation | 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.signup | 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;
@@ -161,6 +161,7 @@ exports.OwnerType = OwnerType;
161
161
  OwnerType["settings"] = "settings";
162
162
  OwnerType["show"] = "show";
163
163
  OwnerType["shows"] = "shows";
164
+ OwnerType["signup"] = "signup";
164
165
  OwnerType["similarToRecentlyViewed"] = "similarToRecentlyViewed";
165
166
  OwnerType["submitArtworkStepAddDetails"] = "submitArtworkStepAddDetails";
166
167
  OwnerType["submitArtworkStepAddDimensions"] = "submitArtworkStepAddDimensions";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.350.0",
3
+ "version": "4.352.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {