@artsy/cohesion 4.53.0 → 4.56.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,49 @@
1
+ # v4.56.0 (Tue Jul 05 2022)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - [AS-3293] Adding new events for CMS tracking [#341](https://github.com/artsy/cohesion/pull/341) ([@daytavares](https://github.com/daytavares))
6
+
7
+ #### 🔩 Dependency Updates
8
+
9
+ - Bump jsdom from 16.2.2 to 16.7.0 [#340](https://github.com/artsy/cohesion/pull/340) ([@dependabot[bot]](https://github.com/dependabot[bot]))
10
+
11
+ #### Authors: 2
12
+
13
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
14
+ - Dayane Tavares ([@daytavares](https://github.com/daytavares))
15
+
16
+ ---
17
+
18
+ # v4.55.0 (Wed Jun 22 2022)
19
+
20
+ #### 🚀 Enhancement
21
+
22
+ - chore: add Tag owner type [#338](https://github.com/artsy/cohesion/pull/338) ([@dimatretyak](https://github.com/dimatretyak))
23
+
24
+ #### Authors: 1
25
+
26
+ - Dima Tretyak (Dzmitry Tratsiak) ([@dimatretyak](https://github.com/dimatretyak))
27
+
28
+ ---
29
+
30
+ # v4.54.0 (Tue Jun 21 2022)
31
+
32
+ #### 🚀 Enhancement
33
+
34
+ - Partner url click [#339](https://github.com/artsy/cohesion/pull/339) ([@louislecluse](https://github.com/louislecluse))
35
+
36
+ #### 🏠 Internal
37
+
38
+ - chore(deps): update dep typescript from 4.7.3 to v4.7.4 [#337](https://github.com/artsy/cohesion/pull/337) ([@renovate[bot]](https://github.com/renovate[bot]))
39
+
40
+ #### Authors: 2
41
+
42
+ - [@louislecluse](https://github.com/louislecluse)
43
+ - [@renovate[bot]](https://github.com/renovate[bot])
44
+
45
+ ---
46
+
1
47
  # v4.53.0 (Thu Jun 16 2022)
2
48
 
3
49
  #### 🚀 Enhancement
@@ -609,6 +609,74 @@ export interface ClickedOnFramedMeasurementsDropdown {
609
609
  context_page_owner_type: PageOwnerType;
610
610
  context_page_owner_id?: string;
611
611
  }
612
+ /**
613
+ * A Partner clicks on one of the options (Accept collector's offer, Send a counteroffer, Decline collector's offer)
614
+ * for offers on the orders page on CMS.
615
+ *
616
+ * This schema describes events sent to Segment from [[clickedOfferActions]]
617
+ *
618
+ * @example
619
+ * ```
620
+ * {
621
+ * action: "clickedOfferActions",
622
+ * context_page_owner_type: "order",
623
+ * context_page_owner_id: "60de173a47476c000fd5c4cc"
624
+ * order_id: "60de173a47476c000fd5c4cc"
625
+ * label: "Accept collector's offer"
626
+ * artwork_id: "60de173a47476c000fd5c4cc"
627
+ * flow: offer
628
+ * partner_id: "60de173a47476c000fd5c4cc"
629
+ * }
630
+ * ```
631
+ */
632
+ export interface ClickedOfferActions {
633
+ action: ActionType.clickedOfferActions;
634
+ context_module: ContextModule;
635
+ context_page_owner_type: PageOwnerType;
636
+ context_page_owner_id?: string;
637
+ order_id: string;
638
+ label: string;
639
+ artwork_id: string;
640
+ flow: string;
641
+ partner_id: string;
642
+ }
643
+ /**
644
+ * A Partner clicks on one of the the CTAs on the orders page on the orders page on CMS.
645
+ * - Confirm order
646
+ * - Confirm shipping contact and confirm order
647
+ * - Accept offer
648
+ * - Confirm shipping contact and accept offer
649
+ * - Decline offer
650
+ * - Send a counter offer
651
+ * - Confirm shipping contact and send counter offer
652
+ *
653
+ * This schema describes events sent to Segment from [[clickedOrderPage]]
654
+ *
655
+ * @example
656
+ * ```
657
+ * {
658
+ * action: "clickedOrderPage",
659
+ * context_page_owner_type: "order",
660
+ * context_page_owner_id: "60de173a47476c000fd5c4cc"
661
+ * order_id: "60de173a47476c000fd5c4cc"
662
+ * label: "Confirm order"
663
+ * artwork_id: "60de173a47476c000fd5c4cc"
664
+ * flow: buy
665
+ * partner_id: "60de173a47476c000fd5c4cc"
666
+ * }
667
+ * ```
668
+ */
669
+ export interface ClickedOrderPage {
670
+ action: ActionType.clickedOrderPage;
671
+ context_module: ContextModule;
672
+ context_page_owner_type: PageOwnerType;
673
+ context_page_owner_id?: string;
674
+ order_id: string;
675
+ label: string;
676
+ artwork_id: string;
677
+ flow: string;
678
+ partner_id: string;
679
+ }
612
680
  /**
613
681
  * User clicks on submit order on the orders review page.
614
682
  *
@@ -1142,3 +1210,26 @@ export interface ClickedTooltip {
1142
1210
  destination_path: string;
1143
1211
  type: string;
1144
1212
  }
1213
+ /**
1214
+ * A user clicks on the partner's website url on the partner page
1215
+ *
1216
+ * This schema describes events sent to Segment from [[clickedPartnerLink]]
1217
+ *
1218
+ * @example
1219
+ * ```
1220
+ * {
1221
+ * action: "clickedPartnerLink",
1222
+ * context_page_owner_type: "partner",
1223
+ * context_page_owner_id: "62389c0a0b01c80022eb82a1",
1224
+ * context_page_owner_slug: "heather-james-fine-art",
1225
+ * destination_path: "https://www.heatherjames.com/",
1226
+ * }
1227
+ * ```
1228
+ */
1229
+ export interface ClickedPartnerLink {
1230
+ action: ActionType.clickedPartnerLink;
1231
+ context_owner_id: string;
1232
+ context_owner_slug: string;
1233
+ context_owner_type: PageOwnerType;
1234
+ destination_path: string;
1235
+ }
@@ -1,7 +1,7 @@
1
1
  import { AddToCalendar } from "./AddToCalendar";
2
2
  import { AuctionPageView, BidPageView, ClickedActiveBid, ClickedRegisterToBid, ConfirmBid, ConfirmRegistrationPageview, EnterLiveAuction, MaxBidSelected, RegistrationPageView, RegistrationSubmitted } from "./Auction";
3
3
  import { AuthImpression, CreatedAccount, OnboardingUserInputData, ResetYourPassword, SuccessfullyLoggedIn } from "./Authentication";
4
- import { ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCollectionGroup, ClickedCreateAlert, ClickedDeliveryMethod, ClickedEditArtwork, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedNavigationTab, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnSubmitOrder, ClickedPartnerCard, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedSelectShippingOption, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
4
+ import { ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCollectionGroup, ClickedCreateAlert, ClickedDeliveryMethod, ClickedEditArtwork, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedNavigationTab, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnSubmitOrder, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedSelectShippingOption, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedVerifyIdentity, ClickedViewingRoomCard, ClickedOfferActions, ClickedOrderPage } from "./Click";
5
5
  import { ArtworkDetailsCompleted, ConsignmentSubmitted, SubmitAnotherArtwork, UploadPhotosCompleted, ViewArtworkMyCollection } from "./Consignments";
6
6
  import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInboxConversation, TappedMakeOffer, TappedViewOffer } from "./Conversations";
7
7
  import { ExperimentViewed } from "./ExperimentViewed";
@@ -22,7 +22,7 @@ import { ToggledAccordion } from "./UserExperienceInteractions";
22
22
  *
23
23
  * Each event describes one ActionType
24
24
  */
25
- export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | ClickedActiveBid | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPaymentMethod | ClickedPaymentDetails | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | CommercialFilterParamsChanged | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | SentRequestPriceEstimate | Share | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedPartnerCard | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
25
+ export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | ClickedActiveBid | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | CommercialFilterParamsChanged | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | SentRequestPriceEstimate | Share | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedPartnerCard | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
26
26
  /**
27
27
  * The top-level actions an Event describes.
28
28
  *
@@ -198,6 +198,10 @@ export declare enum ActionType {
198
198
  * Corresponds to {@link ClickedPartnerCard}
199
199
  */
200
200
  clickedPartnerCard = "clickedPartnerCard",
201
+ /**
202
+ * Corresponds to {@link ClickedPartnerLink}
203
+ */
204
+ clickedPartnerLink = "clickedPartnerLink",
201
205
  /**
202
206
  * Corresponds to {@link ClickedPlayVideo}
203
207
  */
@@ -250,6 +254,14 @@ export declare enum ActionType {
250
254
  * Corresponds to {@link ClickedViewingRoomCard}
251
255
  */
252
256
  clickedViewingRoomCard = "clickedViewingRoomCard",
257
+ /**
258
+ * Corresponds to {@link ClickedOfferActions}
259
+ */
260
+ clickedOfferActions = "clickedOfferActions",
261
+ /**
262
+ * Corresponds to {@link ClickedOrderPage}
263
+ */
264
+ clickedOrderPage = "clickedOrderPage",
253
265
  /**
254
266
  * Corresponds to {@link CommercialFilterParamsChanged}
255
267
  */
@@ -62,6 +62,7 @@ exports.ActionType = ActionType;
62
62
  ActionType["clickedOnSubmitOrder"] = "clickedOnSubmitOrder";
63
63
  ActionType["clickedSnooze"] = "clickedSnooze";
64
64
  ActionType["clickedPartnerCard"] = "clickedPartnerCard";
65
+ ActionType["clickedPartnerLink"] = "clickedPartnerLink";
65
66
  ActionType["clickedPlayVideo"] = "clickedPlayVideo";
66
67
  ActionType["clickedPaymentMethod"] = "clickedPaymentMethod";
67
68
  ActionType["clickedPaymentDetails"] = "clickedPaymentDetails";
@@ -75,6 +76,8 @@ exports.ActionType = ActionType;
75
76
  ActionType["clickedTooltip"] = "clickedTooltip";
76
77
  ActionType["clickedVerifyIdentity"] = "clickedVerifyIdentity";
77
78
  ActionType["clickedViewingRoomCard"] = "clickedViewingRoomCard";
79
+ ActionType["clickedOfferActions"] = "clickedOfferActions";
80
+ ActionType["clickedOrderPage"] = "clickedOrderPage";
78
81
  ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
79
82
  ActionType["confirmBid"] = "confirmBid";
80
83
  ActionType["confirmRegistrationPageview"] = "confirmRegistrationPageview";
@@ -69,6 +69,7 @@ export declare enum OwnerType {
69
69
  sell = "sell",
70
70
  show = "show",
71
71
  shows = "shows",
72
+ tag = "tag",
72
73
  user = "user",
73
74
  viewingRoom = "viewingRoom",
74
75
  viewingRoomArtworkPage = "viewingRoomArtworkPage",
@@ -80,8 +81,8 @@ export declare enum OwnerType {
80
81
  /**
81
82
  * Owner types available in iOS/Android
82
83
  */
83
- export declare type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | 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.newWorksForYou | OwnerType.onboarding | OwnerType.partner | OwnerType.profile | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
84
+ export declare type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | 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.newWorksForYou | OwnerType.onboarding | OwnerType.partner | OwnerType.profile | OwnerType.sale | 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;
84
85
  /**
85
86
  * Owner types available in web/mobile web
86
87
  */
87
- export declare 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.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | 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.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou;
88
+ export declare 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.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | 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;
@@ -87,6 +87,7 @@ exports.OwnerType = OwnerType;
87
87
  OwnerType["sell"] = "sell";
88
88
  OwnerType["show"] = "show";
89
89
  OwnerType["shows"] = "shows";
90
+ OwnerType["tag"] = "tag";
90
91
  OwnerType["user"] = "user";
91
92
  OwnerType["viewingRoom"] = "viewingRoom";
92
93
  OwnerType["viewingRoomArtworkPage"] = "viewingRoomArtworkPage";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.53.0",
3
+ "version": "4.56.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {
@@ -47,7 +47,7 @@
47
47
  "lint-staged": "10.1.7",
48
48
  "prettier": "2.0.5",
49
49
  "typedoc": "0.17.7",
50
- "typescript": "4.7.3"
50
+ "typescript": "4.7.4"
51
51
  },
52
52
  "dependencies": {
53
53
  "core-js": "3"