@artsy/cohesion 4.62.0 → 4.64.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 +41 -0
- package/dist/Schema/Events/MyCollectionInsights.d.ts +127 -0
- package/dist/Schema/Events/MyCollectionInsights.js +1 -0
- package/dist/Schema/Events/index.d.ts +18 -1
- package/dist/Schema/Events/index.js +4 -0
- package/dist/Schema/Values/ContextModule.d.ts +2 -0
- package/dist/Schema/Values/ContextModule.js +2 -0
- package/dist/Schema/Values/OwnerType.d.ts +1 -0
- package/dist/Schema/Values/OwnerType.js +1 -0
- package/dist/Schema/index.d.ts +2 -0
- package/dist/Schema/index.js +24 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
# v4.64.0 (Fri Sep 09 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Add tracking for career highlight in price chart [#352](https://github.com/artsy/cohesion/pull/352) ([@lordkiz](https://github.com/lordkiz))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Kizito Egeonu ([@lordkiz](https://github.com/lordkiz))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.63.0 (Fri Sep 09 2022)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- feat(CX-2918): Add MyCollectionInsigts Median Auction Price tracking [#351](https://github.com/artsy/cohesion/pull/351) ([@lordkiz](https://github.com/lordkiz))
|
|
18
|
+
|
|
19
|
+
#### 🏠 Internal
|
|
20
|
+
|
|
21
|
+
- chore(deps): update dep typescript from 4.8.2 to v4.8.3 [#350](https://github.com/artsy/cohesion/pull/350) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
22
|
+
|
|
23
|
+
#### Authors: 2
|
|
24
|
+
|
|
25
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
26
|
+
- Kizito Egeonu ([@lordkiz](https://github.com/lordkiz))
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
# v4.62.1 (Thu Sep 08 2022)
|
|
31
|
+
|
|
32
|
+
#### 🐛 Bug Fix
|
|
33
|
+
|
|
34
|
+
- chore(FX-4209): reexport reverse image search events [#349](https://github.com/artsy/cohesion/pull/349) ([@dimatretyak](https://github.com/dimatretyak))
|
|
35
|
+
|
|
36
|
+
#### Authors: 1
|
|
37
|
+
|
|
38
|
+
- Dima Tretyak (Dzmitry Tratsiak) ([@dimatretyak](https://github.com/dimatretyak))
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
1
42
|
# v4.62.0 (Thu Sep 08 2022)
|
|
2
43
|
|
|
3
44
|
#### 🚀 Enhancement
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { ContextModule } from "../Values/ContextModule";
|
|
2
|
+
import { OwnerType } from "../Values/OwnerType";
|
|
3
|
+
import { ActionType } from ".";
|
|
4
|
+
/**
|
|
5
|
+
* Schema describing 'MyCollectionInsightsRails' events
|
|
6
|
+
* @packageDocumentation
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* A user taps on the MyCollectionInsightsMedianAuctionRailItem
|
|
10
|
+
*
|
|
11
|
+
* This schema describes events sent to Segment from [[tappedMyCollectionInsightsMedianAuctionRailItem]]
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```
|
|
15
|
+
* {
|
|
16
|
+
* action: "tappedMyCollectionInsightsMedianAuctionRailItem",
|
|
17
|
+
* context_module: "myCollectionInsightsMedianAuctionRail",
|
|
18
|
+
* context_screen: "myCollectionInsights",
|
|
19
|
+
* context_screen_owner_type: "myCollectionInsights",
|
|
20
|
+
* artist_id: "373828273738281827",
|
|
21
|
+
* category: "Painting"
|
|
22
|
+
* }
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export interface TappedMyCollectionInsightsMedianAuctionRailItem {
|
|
26
|
+
action: ActionType.tappedMyCollectionInsightsMedianAuctionRailItem;
|
|
27
|
+
context_module: ContextModule.myCollectionInsightsMedianAuctionRail;
|
|
28
|
+
context_screen: OwnerType.myCollectionInsights;
|
|
29
|
+
context_screen_owner_type: OwnerType.myCollectionInsights;
|
|
30
|
+
artist_id: string;
|
|
31
|
+
category: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Schema describing 'MyCollectionInsightsMedianAuctionPriceChart' events
|
|
35
|
+
* @packageDocumentation
|
|
36
|
+
*/
|
|
37
|
+
/**
|
|
38
|
+
* A user taps on the MedianAuctionPriceChartCategory
|
|
39
|
+
*
|
|
40
|
+
* This schema describes events sent to Segment from [[tappedMyCollectionInsightsMedianAuctionPriceChartCategory]]
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* ```
|
|
44
|
+
* {
|
|
45
|
+
* action: "tappedMyCollectionInsightsMedianAuctionPriceChartCategory",
|
|
46
|
+
* context_module: "myCollectionInsightsMedianAuctionPriceChart",
|
|
47
|
+
* context_screen: "myCollectionInsightsMedianAuctionPrice",
|
|
48
|
+
* context_screen_owner_type: "myCollectionInsightsMedianAuctionPrice",
|
|
49
|
+
* context_screen_owner_id: "5fad78273c8451000d0c53b9",
|
|
50
|
+
* context_screen_owner_slug: "andy-warhol",
|
|
51
|
+
* artist_id: "5fad78273c8451000d0c53b9",
|
|
52
|
+
* selected_category: "Painting"
|
|
53
|
+
* }
|
|
54
|
+
* ```
|
|
55
|
+
*/
|
|
56
|
+
export interface TappedMyCollectionInsightsMedianAuctionPriceChartCategory {
|
|
57
|
+
action: ActionType.tappedMyCollectionInsightsMedianAuctionPriceChartCategory;
|
|
58
|
+
context_module: ContextModule.myCollectionInsightsMedianAuctionPriceChart;
|
|
59
|
+
context_screen: OwnerType.myCollectionInsightsMedianAuctionPrice;
|
|
60
|
+
context_screen_owner_type: OwnerType.myCollectionInsightsMedianAuctionPrice;
|
|
61
|
+
context_screen_owner_id?: string;
|
|
62
|
+
context_screen_owner_slug?: string;
|
|
63
|
+
artist_id: string;
|
|
64
|
+
selected_category: string;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* A user taps on the MedianAuctionPriceChartTimeframe
|
|
68
|
+
*
|
|
69
|
+
* This schema describes events sent to Segment from [[tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe]]
|
|
70
|
+
*
|
|
71
|
+
* @example
|
|
72
|
+
* ```
|
|
73
|
+
* {
|
|
74
|
+
* action: "tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe",
|
|
75
|
+
* context_module: "myCollectionInsightsMedianAuctionPriceChart",
|
|
76
|
+
* context_screen: "myCollectionInsightsMedianAuctionPrice",
|
|
77
|
+
* context_screen_owner_type: "myCollectionInsightsMedianAuctionPrice",
|
|
78
|
+
* context_screen_owner_id: "5fad78273c8451000d0c53b9",
|
|
79
|
+
* context_screen_owner_slug: "andy-warhol",
|
|
80
|
+
* artist_id: "5fad78273c8451000d0c53b9",
|
|
81
|
+
* selected_timeframe: "3 yrs"
|
|
82
|
+
* }
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export interface TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe {
|
|
86
|
+
action: ActionType.tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe;
|
|
87
|
+
context_module: ContextModule.myCollectionInsightsMedianAuctionPriceChart;
|
|
88
|
+
context_screen: OwnerType.myCollectionInsightsMedianAuctionPrice;
|
|
89
|
+
context_screen_owner_type: OwnerType.myCollectionInsightsMedianAuctionPrice;
|
|
90
|
+
context_screen_owner_id?: string;
|
|
91
|
+
context_screen_owner_slug?: string;
|
|
92
|
+
artist_id: string;
|
|
93
|
+
selected_timeframe: string;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* A user taps on the MedianAuctionPriceChartCareerHighlight
|
|
97
|
+
*
|
|
98
|
+
* This schema describes events sent to Segment from [[tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight]]
|
|
99
|
+
*
|
|
100
|
+
* @example
|
|
101
|
+
* ```
|
|
102
|
+
* {
|
|
103
|
+
* action: "tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight",
|
|
104
|
+
* context_module: "myCollectionInsightsMedianAuctionPriceChart",
|
|
105
|
+
* context_screen: "myCollectionInsightsMedianAuctionPrice",
|
|
106
|
+
* context_screen_owner_type: "myCollectionInsightsMedianAuctionPrice",
|
|
107
|
+
* context_screen_owner_id: "5fad78273c8451000d0c53b9",
|
|
108
|
+
* context_screen_owner_slug: "andy-warhol",
|
|
109
|
+
* artist_id: "5fad78273c8451000d0c53b9",
|
|
110
|
+
* selected_category: "Painting"
|
|
111
|
+
* selected_timeframe:"3 yrs"
|
|
112
|
+
* year: 2019
|
|
113
|
+
* }
|
|
114
|
+
* ```
|
|
115
|
+
*/
|
|
116
|
+
export interface TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight {
|
|
117
|
+
action: ActionType.tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight;
|
|
118
|
+
context_module: ContextModule.myCollectionInsightsMedianAuctionPriceChart;
|
|
119
|
+
context_screen: OwnerType.myCollectionInsightsMedianAuctionPrice;
|
|
120
|
+
context_screen_owner_type: OwnerType.myCollectionInsightsMedianAuctionPrice;
|
|
121
|
+
context_screen_owner_id?: string;
|
|
122
|
+
context_screen_owner_slug?: string;
|
|
123
|
+
artist_id: string;
|
|
124
|
+
selected_category: string;
|
|
125
|
+
selected_timeframe: string;
|
|
126
|
+
year: number;
|
|
127
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -8,6 +8,7 @@ import { ExperimentViewed } from "./ExperimentViewed";
|
|
|
8
8
|
import { AuctionResultsFilterParamsChanged, CommercialFilterParamsChanged, PriceDatabaseFilterParamsChanged } from "./FilterAndSort";
|
|
9
9
|
import { Impression } from "./Impression";
|
|
10
10
|
import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
|
|
11
|
+
import { TappedMyCollectionInsightsMedianAuctionRailItem, TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight, TappedMyCollectionInsightsMedianAuctionPriceChartCategory, TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe } from "./MyCollectionInsights";
|
|
11
12
|
import { PromptForReview } from "./PromptForReview";
|
|
12
13
|
import { SearchedReverseImageWithNoResults, SearchedReverseImageWithResults, SelectedArtworkFromReverseImageSearch, TappedPickImageFromLibrary, TappedReverseImageSearch, TappedToggleCameraFlash } from "./ReverseImageSearch";
|
|
13
14
|
import { DeletedSavedSearch, EditedSavedSearch } from "./SavedSearch";
|
|
@@ -23,7 +24,7 @@ import { ToggledAccordion } from "./UserExperienceInteractions";
|
|
|
23
24
|
*
|
|
24
25
|
* Each event describes one ActionType
|
|
25
26
|
*/
|
|
26
|
-
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 | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | CommercialFilterParamsChanged | CompletedOnboarding | 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 | SearchedReverseImageWithNoResults | SearchedReverseImageWithResults | SearchedWithNoResults | SelectedArtworkFromReverseImageSearch | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | 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 | TappedPickImageFromLibrary | TappedPromoSpace | TappedRequestPriceEstimate | TappedReverseImageSearch | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedToggleCameraFlash | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
|
|
27
|
+
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 | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | CommercialFilterParamsChanged | CompletedOnboarding | 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 | SearchedReverseImageWithNoResults | SearchedReverseImageWithResults | SearchedWithNoResults | SelectedArtworkFromReverseImageSearch | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | 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 | TappedMyCollectionInsightsMedianAuctionRailItem | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedPartnerCard | TappedPickImageFromLibrary | TappedPromoSpace | TappedRequestPriceEstimate | TappedReverseImageSearch | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedToggleCameraFlash | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
|
|
27
28
|
/**
|
|
28
29
|
* The top-level actions an Event describes.
|
|
29
30
|
*
|
|
@@ -547,6 +548,22 @@ export declare enum ActionType {
|
|
|
547
548
|
* Corresponds to {@link TappedMakeOffer}
|
|
548
549
|
*/
|
|
549
550
|
tappedMakeOffer = "tappedMakeOffer",
|
|
551
|
+
/**
|
|
552
|
+
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionRailItem}
|
|
553
|
+
*/
|
|
554
|
+
tappedMyCollectionInsightsMedianAuctionRailItem = "tappedMyCollectionInsightsMedianAuctionRailItem",
|
|
555
|
+
/**
|
|
556
|
+
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight}
|
|
557
|
+
*/
|
|
558
|
+
tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight = "tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight",
|
|
559
|
+
/**
|
|
560
|
+
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionPriceChartCategory}
|
|
561
|
+
*/
|
|
562
|
+
tappedMyCollectionInsightsMedianAuctionPriceChartCategory = "TappedMyCollectionInsightsMedianAuctionPriceChartCategory",
|
|
563
|
+
/**
|
|
564
|
+
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe}
|
|
565
|
+
*/
|
|
566
|
+
tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe = "tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe",
|
|
550
567
|
/**
|
|
551
568
|
* Corresponds to {@link TappedNavigationTab}
|
|
552
569
|
*/
|
|
@@ -149,6 +149,10 @@ exports.ActionType = ActionType;
|
|
|
149
149
|
ActionType["tappedLink"] = "tappedLink";
|
|
150
150
|
ActionType["tappedMainArtworkGrid"] = "tappedMainArtworkGrid";
|
|
151
151
|
ActionType["tappedMakeOffer"] = "tappedMakeOffer";
|
|
152
|
+
ActionType["tappedMyCollectionInsightsMedianAuctionRailItem"] = "tappedMyCollectionInsightsMedianAuctionRailItem";
|
|
153
|
+
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight"] = "tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight";
|
|
154
|
+
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartCategory"] = "TappedMyCollectionInsightsMedianAuctionPriceChartCategory";
|
|
155
|
+
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe"] = "tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe";
|
|
152
156
|
ActionType["tappedNavigationTab"] = "tappedNavigationTab";
|
|
153
157
|
ActionType["tappedPartnerCard"] = "tappedPartnerCard";
|
|
154
158
|
ActionType["tappedPickImageFromLibrary"] = "tappedPickImageFromLibrary";
|
|
@@ -100,6 +100,8 @@ export declare enum ContextModule {
|
|
|
100
100
|
myCollectionArtworkAbout = "myCollectionArtworkAbout",
|
|
101
101
|
myCollectionComparableWorks = "myCollectionComparableWorks",
|
|
102
102
|
myCollectionHome = "myCollectionHome",
|
|
103
|
+
myCollectionInsightsMedianAuctionRail = "myCollectionInsightsMedianAuctionRail",
|
|
104
|
+
myCollectionInsightsMedianAuctionPriceChart = "myCollectionInsightsMedianAuctionPriceChart",
|
|
103
105
|
myCollectionMarketSignals = "myCollectionMarketSignals",
|
|
104
106
|
newWorksByArtistsYouFollowRail = "newWorksByArtistsYouFollowRail",
|
|
105
107
|
newWorksForYouRail = "newWorksForYouRail",
|
|
@@ -114,6 +114,8 @@ exports.ContextModule = ContextModule;
|
|
|
114
114
|
ContextModule["myCollectionArtworkAbout"] = "myCollectionArtworkAbout";
|
|
115
115
|
ContextModule["myCollectionComparableWorks"] = "myCollectionComparableWorks";
|
|
116
116
|
ContextModule["myCollectionHome"] = "myCollectionHome";
|
|
117
|
+
ContextModule["myCollectionInsightsMedianAuctionRail"] = "myCollectionInsightsMedianAuctionRail";
|
|
118
|
+
ContextModule["myCollectionInsightsMedianAuctionPriceChart"] = "myCollectionInsightsMedianAuctionPriceChart";
|
|
117
119
|
ContextModule["myCollectionMarketSignals"] = "myCollectionMarketSignals";
|
|
118
120
|
ContextModule["newWorksByArtistsYouFollowRail"] = "newWorksByArtistsYouFollowRail";
|
|
119
121
|
ContextModule["newWorksForYouRail"] = "newWorksForYouRail";
|
|
@@ -45,6 +45,7 @@ export declare enum OwnerType {
|
|
|
45
45
|
myCollectionArtworkAbout = "MyCollectionArtworkAbout",
|
|
46
46
|
myCollectionArtworkInsights = "MyCollectionArtworkInsights",
|
|
47
47
|
myCollectionInsights = "myCollectionInsights",
|
|
48
|
+
myCollectionInsightsMedianAuctionPrice = "myCollectionInsightsMedianAuctionPrice",
|
|
48
49
|
newWorksForYou = "newWorksForYou",
|
|
49
50
|
onboarding = "onboarding",
|
|
50
51
|
ordersAccept = "orders-accept",
|
|
@@ -63,6 +63,7 @@ exports.OwnerType = OwnerType;
|
|
|
63
63
|
OwnerType["myCollectionArtworkAbout"] = "MyCollectionArtworkAbout";
|
|
64
64
|
OwnerType["myCollectionArtworkInsights"] = "MyCollectionArtworkInsights";
|
|
65
65
|
OwnerType["myCollectionInsights"] = "myCollectionInsights";
|
|
66
|
+
OwnerType["myCollectionInsightsMedianAuctionPrice"] = "myCollectionInsightsMedianAuctionPrice";
|
|
66
67
|
OwnerType["newWorksForYou"] = "newWorksForYou";
|
|
67
68
|
OwnerType["onboarding"] = "onboarding";
|
|
68
69
|
OwnerType["ordersAccept"] = "orders-accept";
|
package/dist/Schema/index.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ export * from "./Events/FilterAndSort";
|
|
|
8
8
|
export * from "./Events/Impression";
|
|
9
9
|
export * from "./Events/Inquiries";
|
|
10
10
|
export * from "./Events/MyCollection";
|
|
11
|
+
export * from "./Events/MyCollectionInsights";
|
|
12
|
+
export * from "./Events/ReverseImageSearch";
|
|
11
13
|
export * from "./Events/SavedSearch";
|
|
12
14
|
export * from "./Events/SavesAndFollows";
|
|
13
15
|
export * from "./Events/Search";
|
package/dist/Schema/index.js
CHANGED
|
@@ -124,6 +124,30 @@ Object.keys(_MyCollection).forEach(function (key) {
|
|
|
124
124
|
});
|
|
125
125
|
});
|
|
126
126
|
|
|
127
|
+
var _MyCollectionInsights = require("./Events/MyCollectionInsights");
|
|
128
|
+
|
|
129
|
+
Object.keys(_MyCollectionInsights).forEach(function (key) {
|
|
130
|
+
if (key === "default" || key === "__esModule") return;
|
|
131
|
+
Object.defineProperty(exports, key, {
|
|
132
|
+
enumerable: true,
|
|
133
|
+
get: function get() {
|
|
134
|
+
return _MyCollectionInsights[key];
|
|
135
|
+
}
|
|
136
|
+
});
|
|
137
|
+
});
|
|
138
|
+
|
|
139
|
+
var _ReverseImageSearch = require("./Events/ReverseImageSearch");
|
|
140
|
+
|
|
141
|
+
Object.keys(_ReverseImageSearch).forEach(function (key) {
|
|
142
|
+
if (key === "default" || key === "__esModule") return;
|
|
143
|
+
Object.defineProperty(exports, key, {
|
|
144
|
+
enumerable: true,
|
|
145
|
+
get: function get() {
|
|
146
|
+
return _ReverseImageSearch[key];
|
|
147
|
+
}
|
|
148
|
+
});
|
|
149
|
+
});
|
|
150
|
+
|
|
127
151
|
var _SavedSearch = require("./Events/SavedSearch");
|
|
128
152
|
|
|
129
153
|
Object.keys(_SavedSearch).forEach(function (key) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artsy/cohesion",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.64.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.8.
|
|
50
|
+
"typescript": "4.8.3"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"core-js": "3"
|