@artsy/cohesion 4.65.0 → 4.67.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 +39 -0
- package/dist/DeprecatedHelpers/index.d.ts +0 -3
- package/dist/DeprecatedHelpers/index.js +0 -36
- package/dist/Schema/Events/MyCollection.d.ts +34 -2
- package/dist/Schema/Events/MyCollectionInsights.d.ts +25 -0
- package/dist/Schema/Events/index.d.ts +83 -76
- package/dist/Schema/Events/index.js +20 -18
- package/package.json +3 -3
- package/pull_request_template.md +1 -1
- package/dist/DeprecatedHelpers/MyCollection/AddCollectedArtwork.d.ts +0 -11
- package/dist/DeprecatedHelpers/MyCollection/AddCollectedArtwork.js +0 -27
- package/dist/DeprecatedHelpers/MyCollection/DeleteCollectedArtwork.d.ts +0 -17
- package/dist/DeprecatedHelpers/MyCollection/DeleteCollectedArtwork.js +0 -33
- package/dist/DeprecatedHelpers/MyCollection/EditCollectedArtwork.d.ts +0 -17
- package/dist/DeprecatedHelpers/MyCollection/EditCollectedArtwork.js +0 -33
- package/dist/DeprecatedHelpers/MyCollection/__tests__/AddCollectedArtwork.test.d.ts +0 -1
- package/dist/DeprecatedHelpers/MyCollection/__tests__/DeleteCollectedArtwork.test.d.ts +0 -1
- package/dist/DeprecatedHelpers/MyCollection/__tests__/EditCollectedArtwork.test.d.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
# v4.67.0 (Tue Oct 18 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat(CX-3066): Add MyC Insights web tracking events [#357](https://github.com/artsy/cohesion/pull/357) ([@MrSltun](https://github.com/MrSltun))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Update pull_request_template.md [#305](https://github.com/artsy/cohesion/pull/305) ([@pvinis](https://github.com/pvinis))
|
|
10
|
+
|
|
11
|
+
#### 🏠 Internal
|
|
12
|
+
|
|
13
|
+
- chore(deps): update dep typescript from 4.8.3 to v4.8.4 [#355](https://github.com/artsy/cohesion/pull/355) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
14
|
+
- Bump ajv from 6.12.0 to 6.12.6 [#300](https://github.com/artsy/cohesion/pull/300) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
15
|
+
- Bump shelljs from 0.8.4 to 0.8.5 [#295](https://github.com/artsy/cohesion/pull/295) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
16
|
+
- chore(deps): update dep @artsy/auto-config from 1.1.0 to v1.2.0 [#308](https://github.com/artsy/cohesion/pull/308) ([@renovate-bot](https://github.com/renovate-bot) [@renovate[bot]](https://github.com/renovate[bot]))
|
|
17
|
+
|
|
18
|
+
#### Authors: 5
|
|
19
|
+
|
|
20
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
21
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
22
|
+
- Pavlos Vinieratos ([@pvinis](https://github.com/pvinis))
|
|
23
|
+
- Sultan Al-Maari ([@MrSltun](https://github.com/MrSltun))
|
|
24
|
+
- WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
# v4.66.0 (Mon Sep 19 2022)
|
|
29
|
+
|
|
30
|
+
#### 🚀 Enhancement
|
|
31
|
+
|
|
32
|
+
- feat(CX-2731): Add saveCollectedArtwork action to MyCollection events [#354](https://github.com/artsy/cohesion/pull/354) ([@MrSltun](https://github.com/MrSltun))
|
|
33
|
+
|
|
34
|
+
#### Authors: 1
|
|
35
|
+
|
|
36
|
+
- Sultan Al-Maari ([@MrSltun](https://github.com/MrSltun))
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
1
40
|
# v4.65.0 (Fri Sep 09 2022)
|
|
2
41
|
|
|
3
42
|
#### 🚀 Enhancement
|
|
@@ -8,9 +8,6 @@ export * from "./Conversations/SentConversationMessage";
|
|
|
8
8
|
export * from "./Conversations/TappedMakeOffer";
|
|
9
9
|
export * from "./Conversations/TappedConfirmArtwork";
|
|
10
10
|
export * from "./FilterAndSort/CommercialFilterParamsChanged";
|
|
11
|
-
export * from "./MyCollection/AddCollectedArtwork";
|
|
12
|
-
export * from "./MyCollection/DeleteCollectedArtwork";
|
|
13
|
-
export * from "./MyCollection/EditCollectedArtwork";
|
|
14
11
|
export * from "./MyCollection/TappedCollectedArtwork";
|
|
15
12
|
export * from "./MyCollection/TappedCollectedArtworkImages";
|
|
16
13
|
export * from "./SavesAndFollows/Follow";
|
|
@@ -124,42 +124,6 @@ Object.keys(_CommercialFilterParamsChanged).forEach(function (key) {
|
|
|
124
124
|
});
|
|
125
125
|
});
|
|
126
126
|
|
|
127
|
-
var _AddCollectedArtwork = require("./MyCollection/AddCollectedArtwork");
|
|
128
|
-
|
|
129
|
-
Object.keys(_AddCollectedArtwork).forEach(function (key) {
|
|
130
|
-
if (key === "default" || key === "__esModule") return;
|
|
131
|
-
Object.defineProperty(exports, key, {
|
|
132
|
-
enumerable: true,
|
|
133
|
-
get: function get() {
|
|
134
|
-
return _AddCollectedArtwork[key];
|
|
135
|
-
}
|
|
136
|
-
});
|
|
137
|
-
});
|
|
138
|
-
|
|
139
|
-
var _DeleteCollectedArtwork = require("./MyCollection/DeleteCollectedArtwork");
|
|
140
|
-
|
|
141
|
-
Object.keys(_DeleteCollectedArtwork).forEach(function (key) {
|
|
142
|
-
if (key === "default" || key === "__esModule") return;
|
|
143
|
-
Object.defineProperty(exports, key, {
|
|
144
|
-
enumerable: true,
|
|
145
|
-
get: function get() {
|
|
146
|
-
return _DeleteCollectedArtwork[key];
|
|
147
|
-
}
|
|
148
|
-
});
|
|
149
|
-
});
|
|
150
|
-
|
|
151
|
-
var _EditCollectedArtwork = require("./MyCollection/EditCollectedArtwork");
|
|
152
|
-
|
|
153
|
-
Object.keys(_EditCollectedArtwork).forEach(function (key) {
|
|
154
|
-
if (key === "default" || key === "__esModule") return;
|
|
155
|
-
Object.defineProperty(exports, key, {
|
|
156
|
-
enumerable: true,
|
|
157
|
-
get: function get() {
|
|
158
|
-
return _EditCollectedArtwork[key];
|
|
159
|
-
}
|
|
160
|
-
});
|
|
161
|
-
});
|
|
162
|
-
|
|
163
127
|
var _TappedCollectedArtwork = require("./MyCollection/TappedCollectedArtwork");
|
|
164
128
|
|
|
165
129
|
Object.keys(_TappedCollectedArtwork).forEach(function (key) {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ContextModule } from "../Values/ContextModule";
|
|
2
2
|
import { OwnerType } from "../Values/OwnerType";
|
|
3
3
|
import { ActionType } from ".";
|
|
4
|
+
export declare type Platform = "web" | "mobile";
|
|
4
5
|
/**
|
|
5
6
|
* Schema describing 'Add Collected Artwork' events
|
|
6
7
|
* @packageDocumentation
|
|
@@ -15,7 +16,8 @@ import { ActionType } from ".";
|
|
|
15
16
|
* {
|
|
16
17
|
* action: "addCollectedArtwork",
|
|
17
18
|
* context_module: "myCollectionHome",
|
|
18
|
-
* context_owner_type: "myCollection"
|
|
19
|
+
* context_owner_type: "myCollection",
|
|
20
|
+
* platform: "mobile"
|
|
19
21
|
* }
|
|
20
22
|
* ```
|
|
21
23
|
*/
|
|
@@ -23,6 +25,32 @@ export interface AddCollectedArtwork {
|
|
|
23
25
|
action: ActionType.addCollectedArtwork;
|
|
24
26
|
context_module: ContextModule.myCollectionHome;
|
|
25
27
|
context_owner_type: OwnerType.myCollection;
|
|
28
|
+
platform: Platform;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Schema describing 'Save Collected Artwork' events
|
|
32
|
+
* @packageDocumentation
|
|
33
|
+
*/
|
|
34
|
+
/**
|
|
35
|
+
* A user taps "save artwork" to save an artwork to My Collection.
|
|
36
|
+
*
|
|
37
|
+
* This schema describes events sent to Segment from [[saveCollectedArtwork]]
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* ```
|
|
41
|
+
* {
|
|
42
|
+
* action: "saveCollectedArtwork",
|
|
43
|
+
* context_module: "myCollectionHome",
|
|
44
|
+
* context_owner_type: "myCollection",
|
|
45
|
+
* platform: "mobile"
|
|
46
|
+
* }
|
|
47
|
+
* ```
|
|
48
|
+
*/
|
|
49
|
+
export interface SaveCollectedArtwork {
|
|
50
|
+
action: ActionType.saveCollectedArtwork;
|
|
51
|
+
context_module: ContextModule.myCollectionHome;
|
|
52
|
+
context_owner_type: OwnerType.myCollection;
|
|
53
|
+
platform: Platform;
|
|
26
54
|
}
|
|
27
55
|
/**
|
|
28
56
|
* Schema describing 'Edit Collected Artwork' events
|
|
@@ -41,6 +69,7 @@ export interface AddCollectedArtwork {
|
|
|
41
69
|
* context_owner_type: "myCollectionArtwork",
|
|
42
70
|
* context_owner_id: "my-artwork-id",
|
|
43
71
|
* context_owner_slug: "my-artwork-slug"
|
|
72
|
+
* platform: "web"
|
|
44
73
|
* }
|
|
45
74
|
* ```
|
|
46
75
|
*/
|
|
@@ -50,6 +79,7 @@ export interface EditCollectedArtwork {
|
|
|
50
79
|
context_owner_type: OwnerType.myCollectionArtwork;
|
|
51
80
|
context_owner_id: string;
|
|
52
81
|
context_owner_slug: string;
|
|
82
|
+
platform: Platform;
|
|
53
83
|
}
|
|
54
84
|
/**
|
|
55
85
|
* Schema describing 'Delete Collected Artwork' events
|
|
@@ -67,7 +97,8 @@ export interface EditCollectedArtwork {
|
|
|
67
97
|
* context_module: "myCollectionArtwork",
|
|
68
98
|
* context_owner_type: "myCollectionArtwork"
|
|
69
99
|
* context_owner_id: "my-artwork-id",
|
|
70
|
-
* context_owner_slug: "my-artwork-slug"
|
|
100
|
+
* context_owner_slug: "my-artwork-slug",
|
|
101
|
+
* platform: "web"
|
|
71
102
|
* }
|
|
72
103
|
* ```
|
|
73
104
|
*/
|
|
@@ -77,6 +108,7 @@ export interface DeleteCollectedArtwork {
|
|
|
77
108
|
context_owner_type: OwnerType.myCollectionArtwork;
|
|
78
109
|
context_owner_id: string;
|
|
79
110
|
context_owner_slug: string;
|
|
111
|
+
platform: Platform;
|
|
80
112
|
}
|
|
81
113
|
/**
|
|
82
114
|
* A user taps a collected artwork within My Collection
|
|
@@ -5,6 +5,31 @@ import { ActionType } from ".";
|
|
|
5
5
|
* Schema describing 'MyCollectionInsightsRails' events
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
*/
|
|
8
|
+
/**
|
|
9
|
+
* A user clicks on My Collection Insights Median Auction Rail item.
|
|
10
|
+
*
|
|
11
|
+
* This schema describes events sent to Segment from [[clickedMyCollectionInsightsMedianAuctionRailItem]]
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```
|
|
15
|
+
* {
|
|
16
|
+
* action: "clickedMyCollectionInsightsMedianAuctionRailItem",
|
|
17
|
+
* context_module: "myCollectionInsightsMedianAuctionRail",
|
|
18
|
+
* context_screen: "myCollectionInsights",
|
|
19
|
+
* context_screen_owner_type: "myCollectionInsights",
|
|
20
|
+
* artist_id: "4212691337420",
|
|
21
|
+
* category: "Print"
|
|
22
|
+
* }
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export interface ClickedMyCollectionInsightsMedianAuctionRailItem {
|
|
26
|
+
action: ActionType.clickedMyCollectionInsightsMedianAuctionRailItem;
|
|
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
|
+
}
|
|
8
33
|
/**
|
|
9
34
|
* A user taps on the MyCollectionInsightsMedianAuctionRailItem
|
|
10
35
|
*
|
|
@@ -7,8 +7,8 @@ import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInbox
|
|
|
7
7
|
import { ExperimentViewed } from "./ExperimentViewed";
|
|
8
8
|
import { AuctionResultsFilterParamsChanged, CommercialFilterParamsChanged, PriceDatabaseFilterParamsChanged } from "./FilterAndSort";
|
|
9
9
|
import { Impression } from "./Impression";
|
|
10
|
-
import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
|
|
11
|
-
import {
|
|
10
|
+
import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SaveCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
|
|
11
|
+
import { TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight, TappedMyCollectionInsightsMedianAuctionPriceChartCategory, TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe, TappedMyCollectionInsightsMedianAuctionRailItem } from "./MyCollectionInsights";
|
|
12
12
|
import { PromptForReview } from "./PromptForReview";
|
|
13
13
|
import { SearchedReverseImageWithNoResults, SearchedReverseImageWithResults, SelectedArtworkFromReverseImageSearch, TappedPickImageFromLibrary, TappedReverseImageSearch, TappedToggleCameraFlash } from "./ReverseImageSearch";
|
|
14
14
|
import { DeletedSavedSearch, EditedSavedSearch } from "./SavedSearch";
|
|
@@ -24,7 +24,7 @@ import { ToggledAccordion } from "./UserExperienceInteractions";
|
|
|
24
24
|
*
|
|
25
25
|
* Each event describes one ActionType
|
|
26
26
|
*/
|
|
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
|
+
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 | SaveCollectedArtwork | 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;
|
|
28
28
|
/**
|
|
29
29
|
* The top-level actions an Event describes.
|
|
30
30
|
*
|
|
@@ -32,17 +32,13 @@ export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetails
|
|
|
32
32
|
*/
|
|
33
33
|
export declare enum ActionType {
|
|
34
34
|
/**
|
|
35
|
-
* Corresponds to {@link
|
|
35
|
+
* Corresponds to {@link AddCollectedArtwork}
|
|
36
36
|
*/
|
|
37
|
-
|
|
37
|
+
addCollectedArtwork = "addCollectedArtwork",
|
|
38
38
|
/**
|
|
39
39
|
* Corresponds to {@link AddToCalendar}
|
|
40
40
|
*/
|
|
41
41
|
addToCalendar = "addToCalendar",
|
|
42
|
-
/**
|
|
43
|
-
* Corresponds to {@link AddCollectedArtwork}
|
|
44
|
-
*/
|
|
45
|
-
addCollectedArtwork = "addCollectedArtwork",
|
|
46
42
|
/**
|
|
47
43
|
* Corresponds to {@link ArtworkDetailsCompleted}
|
|
48
44
|
*/
|
|
@@ -55,10 +51,18 @@ export declare enum ActionType {
|
|
|
55
51
|
* Corresponds to {@link AuctionResultsFilterParamsChanged}
|
|
56
52
|
*/
|
|
57
53
|
auctionResultsFilterParamsChanged = "auctionResultsFilterParamsChanged",
|
|
54
|
+
/**
|
|
55
|
+
* Corresponds to {@link AuthImpression}
|
|
56
|
+
*/
|
|
57
|
+
authImpression = "authImpression",
|
|
58
58
|
/**
|
|
59
59
|
* Corresponds to {@link BidPageView}
|
|
60
60
|
*/
|
|
61
61
|
bidPageView = "bidPageView",
|
|
62
|
+
/**
|
|
63
|
+
* Corresponds to {@link CheckedAccountBalance}
|
|
64
|
+
*/
|
|
65
|
+
checkedAccountBalance = "checkedAccountBalance",
|
|
62
66
|
/**
|
|
63
67
|
* Corresponds to {@link ClickedActiveBid}
|
|
64
68
|
*/
|
|
@@ -107,6 +111,10 @@ export declare enum ActionType {
|
|
|
107
111
|
* Corresponds to {@link ClickedChangePage}
|
|
108
112
|
*/
|
|
109
113
|
clickedChangePage = "clickedChangePage",
|
|
114
|
+
/**
|
|
115
|
+
* Corresponds to {@link ClickedChangePaymentMethod}
|
|
116
|
+
*/
|
|
117
|
+
clickedChangePaymentMethod = "clickedChangePaymentMethod",
|
|
110
118
|
/**
|
|
111
119
|
* Corresponds to {@link ClickedChangeShippingAddress}
|
|
112
120
|
*/
|
|
@@ -115,10 +123,6 @@ export declare enum ActionType {
|
|
|
115
123
|
* Corresponds to {@link ClickedChangeShippingMethod}
|
|
116
124
|
*/
|
|
117
125
|
clickedChangeShippingMethod = "clickedChangeShippingMethod",
|
|
118
|
-
/**
|
|
119
|
-
* Corresponds to {@link ClickedChangePaymentMethod}
|
|
120
|
-
*/
|
|
121
|
-
clickedChangePaymentMethod = "clickedChangePaymentMethod",
|
|
122
126
|
/**
|
|
123
127
|
* Corresponds to {@link ClickedCollectionGroup}
|
|
124
128
|
*/
|
|
@@ -152,29 +156,36 @@ export declare enum ActionType {
|
|
|
152
156
|
*/
|
|
153
157
|
clickedFairGroup = "clickedFairGroup",
|
|
154
158
|
/**
|
|
155
|
-
* Corresponds to {@link
|
|
159
|
+
* Corresponds to {@link ClickedGalleryGroup}
|
|
156
160
|
*/
|
|
157
161
|
clickedGalleryGroup = "clickedGalleryGroup",
|
|
158
162
|
/**
|
|
159
163
|
* Corresponds to {@link ClickedLoadMore}
|
|
160
164
|
*/
|
|
161
165
|
clickedLoadMore = "clickedLoadMore",
|
|
162
|
-
/**
|
|
163
166
|
/**
|
|
164
167
|
* Corresponds to {@link ClickedMainArtworkGrid}
|
|
165
168
|
*/
|
|
166
169
|
clickedMainArtworkGrid = "clickedMainArtworkGrid",
|
|
170
|
+
/**
|
|
171
|
+
* Corresponds to {@link ClickedMyCollectionInsightsMedianAuctionRailItem}
|
|
172
|
+
*/
|
|
173
|
+
clickedMyCollectionInsightsMedianAuctionRailItem = "clickedMyCollectionInsightsMedianAuctionRailItem",
|
|
167
174
|
/**
|
|
168
175
|
* Corresponds to {@link ClickedNavigationTab}
|
|
169
176
|
*/
|
|
170
177
|
clickedNavigationTab = "clickedNavigationTab",
|
|
171
178
|
/**
|
|
172
|
-
* Corresponds to {@link
|
|
179
|
+
* Corresponds to {@link ClickedOfferActions}
|
|
173
180
|
*/
|
|
174
|
-
|
|
181
|
+
clickedOfferActions = "clickedOfferActions",
|
|
175
182
|
/**
|
|
176
183
|
* Corresponds to {@link ClickedOfferOption}
|
|
177
184
|
*/
|
|
185
|
+
clickedOfferOption = "clickedOfferOption",
|
|
186
|
+
/**
|
|
187
|
+
* Corresponds to {@link ClickedOnArtworkShippingUnitsDropdown}
|
|
188
|
+
*/
|
|
178
189
|
clickedOnArtworkShippingUnitsDropdown = "clickedOnArtworkShippingUnitsDropdown",
|
|
179
190
|
/**
|
|
180
191
|
* Corresponds to {@link ClickedOnArtworkShippingWeight}
|
|
@@ -193,9 +204,9 @@ export declare enum ActionType {
|
|
|
193
204
|
*/
|
|
194
205
|
clickedOnSubmitOrder = "clickedOnSubmitOrder",
|
|
195
206
|
/**
|
|
196
|
-
* Corresponds to {@link
|
|
207
|
+
* Corresponds to {@link ClickedOrderPage}
|
|
197
208
|
*/
|
|
198
|
-
|
|
209
|
+
clickedOrderPage = "clickedOrderPage",
|
|
199
210
|
/**
|
|
200
211
|
* Corresponds to {@link ClickedPartnerCard}
|
|
201
212
|
*/
|
|
@@ -205,23 +216,19 @@ export declare enum ActionType {
|
|
|
205
216
|
*/
|
|
206
217
|
clickedPartnerLink = "clickedPartnerLink",
|
|
207
218
|
/**
|
|
208
|
-
* Corresponds to {@link
|
|
209
|
-
*/
|
|
210
|
-
clickedPlayVideo = "clickedPlayVideo",
|
|
211
|
-
/**
|
|
212
|
-
* Corresponds to {@link ClickedPromoSpace}
|
|
219
|
+
* Corresponds to {@link ClickedPaymentMethod}
|
|
213
220
|
*/
|
|
214
221
|
clickedPaymentMethod = "clickedPaymentMethod",
|
|
215
222
|
/**
|
|
216
|
-
* Corresponds to {@link
|
|
223
|
+
* Corresponds to {@link ClickedPaymentDetails}
|
|
217
224
|
*/
|
|
218
225
|
clickedPaymentDetails = "clickedPaymentDetails",
|
|
219
226
|
/**
|
|
220
|
-
* Corresponds to {@link
|
|
227
|
+
* Corresponds to {@link ClickedPlayVideo}
|
|
221
228
|
*/
|
|
222
|
-
|
|
229
|
+
clickedPlayVideo = "clickedPlayVideo",
|
|
223
230
|
/**
|
|
224
|
-
* Corresponds to {@link
|
|
231
|
+
* Corresponds to {@link ClickedPromoSpace}
|
|
225
232
|
*/
|
|
226
233
|
clickedPromoSpace = "clickedPromoSpace",
|
|
227
234
|
/**
|
|
@@ -244,6 +251,10 @@ export declare enum ActionType {
|
|
|
244
251
|
* Corresponds to {@link ClickedShowMore}
|
|
245
252
|
*/
|
|
246
253
|
clickedShowMore = "clickedShowMore",
|
|
254
|
+
/**
|
|
255
|
+
* Corresponds to {@link ClickedSnooze}
|
|
256
|
+
*/
|
|
257
|
+
clickedSnooze = "clickedSnooze",
|
|
247
258
|
/**
|
|
248
259
|
* Corresponds to {@link ClickedSponsorLink}
|
|
249
260
|
*/
|
|
@@ -253,21 +264,13 @@ export declare enum ActionType {
|
|
|
253
264
|
*/
|
|
254
265
|
clickedTooltip = "clickedTooltip",
|
|
255
266
|
/**
|
|
256
|
-
* Corresponds to {@link
|
|
267
|
+
* Corresponds to {@link ClickedVerifyIdentity}
|
|
257
268
|
*/
|
|
258
269
|
clickedVerifyIdentity = "clickedVerifyIdentity",
|
|
259
270
|
/**
|
|
260
271
|
* Corresponds to {@link ClickedViewingRoomCard}
|
|
261
272
|
*/
|
|
262
273
|
clickedViewingRoomCard = "clickedViewingRoomCard",
|
|
263
|
-
/**
|
|
264
|
-
* Corresponds to {@link ClickedOfferActions}
|
|
265
|
-
*/
|
|
266
|
-
clickedOfferActions = "clickedOfferActions",
|
|
267
|
-
/**
|
|
268
|
-
* Corresponds to {@link ClickedOrderPage}
|
|
269
|
-
*/
|
|
270
|
-
clickedOrderPage = "clickedOrderPage",
|
|
271
274
|
/**
|
|
272
275
|
* Corresponds to {@link CommercialFilterParamsChanged}
|
|
273
276
|
*/
|
|
@@ -292,14 +295,14 @@ export declare enum ActionType {
|
|
|
292
295
|
* Corresponds to {@link ConsignmentSubmitted}
|
|
293
296
|
*/
|
|
294
297
|
consignmentSubmitted = "consignmentSubmitted",
|
|
295
|
-
/**
|
|
296
|
-
* Corresponds to {@link ContactInformationCompleted}
|
|
297
|
-
*/
|
|
298
|
-
contactInformationCompleted = "contactInformationCompleted",
|
|
299
298
|
/**
|
|
300
299
|
* Corresponds to {@link ContactGallery}
|
|
301
300
|
*/
|
|
302
301
|
contactGallery = "contactGallery",
|
|
302
|
+
/**
|
|
303
|
+
* Corresponds to {@link ContactInformationCompleted}
|
|
304
|
+
*/
|
|
305
|
+
contactInformationCompleted = "contactInformationCompleted",
|
|
303
306
|
/**
|
|
304
307
|
* Corresponds to {@link CreatedAccount}
|
|
305
308
|
*/
|
|
@@ -325,17 +328,21 @@ export declare enum ActionType {
|
|
|
325
328
|
*/
|
|
326
329
|
enterLiveAuction = "enterLiveAuction",
|
|
327
330
|
/**
|
|
328
|
-
* Corresponds to {@link
|
|
331
|
+
* Corresponds to {@link ExperimentViewed}
|
|
329
332
|
*/
|
|
330
|
-
|
|
333
|
+
experimentViewed = "experimentViewed",
|
|
331
334
|
/**
|
|
332
|
-
* Corresponds to {@link
|
|
335
|
+
* Corresponds to {@link FocusedOnConversationMessageInput}
|
|
333
336
|
*/
|
|
334
|
-
|
|
337
|
+
focusedOnConversationMessageInput = "focusedOnConversationMessageInput",
|
|
335
338
|
/**
|
|
336
339
|
* Corresponds to {@link FocusedOnPriceDatabaseSearchInput}
|
|
337
340
|
*/
|
|
338
341
|
focusedOnPriceDatabaseSearchInput = "focusedOnPriceDatabaseSearchInput",
|
|
342
|
+
/**
|
|
343
|
+
* Corresponds to {@link FocusedOnSearchInput}
|
|
344
|
+
*/
|
|
345
|
+
focusedOnSearchInput = "focusedOnSearchInput",
|
|
339
346
|
/**
|
|
340
347
|
* Corresponds to {@link FollowedArtist}
|
|
341
348
|
*/
|
|
@@ -388,6 +395,10 @@ export declare enum ActionType {
|
|
|
388
395
|
* Corresponds to {@link SaleScreenLoadComplete}
|
|
389
396
|
*/
|
|
390
397
|
saleScreenLoadComplete = "saleScreenLoadComplete",
|
|
398
|
+
/**
|
|
399
|
+
* Corresponds to {@link SaveCollectedArtwork}
|
|
400
|
+
*/
|
|
401
|
+
saveCollectedArtwork = "saveCollectedArtwork",
|
|
391
402
|
/**
|
|
392
403
|
* Corresponds to {@link Screen}
|
|
393
404
|
*/
|
|
@@ -412,14 +423,14 @@ export declare enum ActionType {
|
|
|
412
423
|
* Corresponds to {@link SelectedArtworkFromReverseImageSearch}
|
|
413
424
|
*/
|
|
414
425
|
selectedArtworkFromReverseImageSearch = "selectedArtworkFromReverseImageSearch",
|
|
415
|
-
/**
|
|
416
|
-
* Corresponds to {@link SelectedItemFromSearch}
|
|
417
|
-
*/
|
|
418
|
-
selectedItemFromSearch = "selectedItemFromSearch",
|
|
419
426
|
/**
|
|
420
427
|
* Corresponds to {@link SelectedItemFromPriceDatabaseSearch}
|
|
421
428
|
*/
|
|
422
429
|
selectedItemFromPriceDatabaseSearch = "selectedItemFromPriceDatabaseSearch",
|
|
430
|
+
/**
|
|
431
|
+
* Corresponds to {@link SelectedItemFromSearch}
|
|
432
|
+
*/
|
|
433
|
+
selectedItemFromSearch = "selectedItemFromSearch",
|
|
423
434
|
/**
|
|
424
435
|
* Corresponds to {@link sentArtworkInquiry}
|
|
425
436
|
*/
|
|
@@ -437,11 +448,7 @@ export declare enum ActionType {
|
|
|
437
448
|
*/
|
|
438
449
|
share = "share",
|
|
439
450
|
/**
|
|
440
|
-
* Corresponds to {@link
|
|
441
|
-
*/
|
|
442
|
-
experimentViewed = "experimentViewed",
|
|
443
|
-
/**
|
|
444
|
-
* Corresponds to {@link SuccessfullyLoggedIn}
|
|
451
|
+
* Corresponds to {@link StartedOnboarding}
|
|
445
452
|
*/
|
|
446
453
|
startedOnboarding = "startedOnboarding",
|
|
447
454
|
/**
|
|
@@ -456,10 +463,6 @@ export declare enum ActionType {
|
|
|
456
463
|
* Corresponds to {@link TappedArticleGroup}
|
|
457
464
|
*/
|
|
458
465
|
tappedArticleGroup = "tappedArticleGroup",
|
|
459
|
-
/**
|
|
460
|
-
* Corresponds to {@link TappedShowGroup}
|
|
461
|
-
*/
|
|
462
|
-
tappedShowGroup = "tappedShowGroup",
|
|
463
466
|
/**
|
|
464
467
|
* Corresponds to {@link TappedArtistGroup}
|
|
465
468
|
*/
|
|
@@ -492,10 +495,6 @@ export declare enum ActionType {
|
|
|
492
495
|
* Corresponds to {@link TappedCollectedArtwork}
|
|
493
496
|
*/
|
|
494
497
|
tappedCollectedArtwork = "tappedCollectedArtwork",
|
|
495
|
-
/**
|
|
496
|
-
* Corresponds to {@link TappedMyCollectionAddArtworkArtist}
|
|
497
|
-
*/
|
|
498
|
-
tappedMyCollectionAddArtworkArtist = "tappedMyCollectionAddArtworkArtist",
|
|
499
498
|
/**
|
|
500
499
|
* Corresponds to {@link TappedCollectedArtworkImages}
|
|
501
500
|
*/
|
|
@@ -520,14 +519,14 @@ export declare enum ActionType {
|
|
|
520
519
|
* Corresponds to {@link TappedExploreGroup}
|
|
521
520
|
*/
|
|
522
521
|
tappedExploreGroup = "tappedExploreGroup",
|
|
523
|
-
/**
|
|
524
|
-
* Corresponds to {@link TappedFairGroup}
|
|
525
|
-
*/
|
|
526
|
-
tappedFairGroup = "tappedFairGroup",
|
|
527
522
|
/**
|
|
528
523
|
* Corresponds to {@link TappedFairCard}
|
|
529
524
|
*/
|
|
530
525
|
tappedFairCard = "tappedFairCard",
|
|
526
|
+
/**
|
|
527
|
+
* Corresponds to {@link TappedFairGroup}
|
|
528
|
+
*/
|
|
529
|
+
tappedFairGroup = "tappedFairGroup",
|
|
531
530
|
/**
|
|
532
531
|
* Corresponds to {@link TappedInboxConversation}
|
|
533
532
|
*/
|
|
@@ -536,6 +535,10 @@ export declare enum ActionType {
|
|
|
536
535
|
* Corresponds to {@link TappedInfoBubble}
|
|
537
536
|
*/
|
|
538
537
|
tappedInfoBubble = "tappedInfoBubble",
|
|
538
|
+
/**
|
|
539
|
+
* Corresponds to {@link TappedLearnMore}
|
|
540
|
+
*/
|
|
541
|
+
tappedLearnMore = "tappedLearnMore",
|
|
539
542
|
/**
|
|
540
543
|
* Corresponds to {@link TappedLink}
|
|
541
544
|
*/
|
|
@@ -549,9 +552,9 @@ export declare enum ActionType {
|
|
|
549
552
|
*/
|
|
550
553
|
tappedMakeOffer = "tappedMakeOffer",
|
|
551
554
|
/**
|
|
552
|
-
* Corresponds to {@link
|
|
555
|
+
* Corresponds to {@link TappedMyCollectionAddArtworkArtist}
|
|
553
556
|
*/
|
|
554
|
-
|
|
557
|
+
tappedMyCollectionAddArtworkArtist = "tappedMyCollectionAddArtworkArtist",
|
|
555
558
|
/**
|
|
556
559
|
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight}
|
|
557
560
|
*/
|
|
@@ -564,6 +567,10 @@ export declare enum ActionType {
|
|
|
564
567
|
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe}
|
|
565
568
|
*/
|
|
566
569
|
tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe = "tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe",
|
|
570
|
+
/**
|
|
571
|
+
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionRailItem}
|
|
572
|
+
*/
|
|
573
|
+
tappedMyCollectionInsightsMedianAuctionRailItem = "tappedMyCollectionInsightsMedianAuctionRailItem",
|
|
567
574
|
/**
|
|
568
575
|
* Corresponds to {@link TappedNavigationTab}
|
|
569
576
|
*/
|
|
@@ -601,13 +608,13 @@ export declare enum ActionType {
|
|
|
601
608
|
*/
|
|
602
609
|
tappedSellArtwork = "tappedSellArtwork",
|
|
603
610
|
/**
|
|
604
|
-
* Corresponds to {@link
|
|
611
|
+
* Corresponds to {@link TappedShowGroup}
|
|
605
612
|
*/
|
|
606
|
-
|
|
613
|
+
tappedShowGroup = "tappedShowGroup",
|
|
607
614
|
/**
|
|
608
|
-
* Corresponds to {@link
|
|
615
|
+
* Corresponds to {@link TappedShowMore}
|
|
609
616
|
*/
|
|
610
|
-
|
|
617
|
+
tappedShowMore = "tappedShowMore",
|
|
611
618
|
/**
|
|
612
619
|
* Corresponds to {@link TappedSkip}
|
|
613
620
|
*/
|
|
@@ -620,6 +627,10 @@ export declare enum ActionType {
|
|
|
620
627
|
* Corresponds to {@link TappedToggleCameraFlash}
|
|
621
628
|
*/
|
|
622
629
|
tappedToggleCameraFlash = "tappedToggleCameraFlash",
|
|
630
|
+
/**
|
|
631
|
+
* Corresponds to {@link TappedUploadAnotherArtwork}
|
|
632
|
+
*/
|
|
633
|
+
tappedUploadAnotherArtwork = "tappedUploadAnotherArtwork",
|
|
623
634
|
/**
|
|
624
635
|
* Corresponds to {@link TappedVerifyIdentity}
|
|
625
636
|
*/
|
|
@@ -636,10 +647,6 @@ export declare enum ActionType {
|
|
|
636
647
|
* Corresponds to {@link TappedViewOffer}
|
|
637
648
|
*/
|
|
638
649
|
tappedViewOffer = "tappedViewOffer",
|
|
639
|
-
/**
|
|
640
|
-
* Corresponds to {@link TappedUploadAnotherArtwork}
|
|
641
|
-
*/
|
|
642
|
-
tappedUploadAnotherArtwork = "tappedUploadAnotherArtwork",
|
|
643
650
|
/**
|
|
644
651
|
* Corresponds to {@link TimeOnPage}
|
|
645
652
|
*/
|
|
@@ -20,13 +20,14 @@ var ActionType;
|
|
|
20
20
|
exports.ActionType = ActionType;
|
|
21
21
|
|
|
22
22
|
(function (ActionType) {
|
|
23
|
-
ActionType["authImpression"] = "authImpression";
|
|
24
|
-
ActionType["addToCalendar"] = "addToCalendar";
|
|
25
23
|
ActionType["addCollectedArtwork"] = "addCollectedArtwork";
|
|
24
|
+
ActionType["addToCalendar"] = "addToCalendar";
|
|
26
25
|
ActionType["artworkDetailsCompleted"] = "artworkDetailsCompleted";
|
|
27
26
|
ActionType["auctionPageView"] = "auctionPageView";
|
|
28
27
|
ActionType["auctionResultsFilterParamsChanged"] = "auctionResultsFilterParamsChanged";
|
|
28
|
+
ActionType["authImpression"] = "authImpression";
|
|
29
29
|
ActionType["bidPageView"] = "bidPageView";
|
|
30
|
+
ActionType["checkedAccountBalance"] = "checkedAccountBalance";
|
|
30
31
|
ActionType["clickedActiveBid"] = "clickedActiveBid";
|
|
31
32
|
ActionType["clickedAddNewShippingAddress"] = "clickedAddNewShippingAddress";
|
|
32
33
|
ActionType["clickedAddWorksToFair"] = "clickedAddWorksToFair";
|
|
@@ -39,9 +40,9 @@ exports.ActionType = ActionType;
|
|
|
39
40
|
ActionType["clickedAuctionGroup"] = "clickedAuctionGroup";
|
|
40
41
|
ActionType["clickedBuyerProtection"] = "clickedBuyerProtection";
|
|
41
42
|
ActionType["clickedChangePage"] = "clickedChangePage";
|
|
43
|
+
ActionType["clickedChangePaymentMethod"] = "clickedChangePaymentMethod";
|
|
42
44
|
ActionType["clickedChangeShippingAddress"] = "clickedChangeShippingAddress";
|
|
43
45
|
ActionType["clickedChangeShippingMethod"] = "clickedChangeShippingMethod";
|
|
44
|
-
ActionType["clickedChangePaymentMethod"] = "clickedChangePaymentMethod";
|
|
45
46
|
ActionType["clickedCollectionGroup"] = "clickedCollectionGroup";
|
|
46
47
|
ActionType["clickedCreateAlert"] = "clickedCreateAlert";
|
|
47
48
|
ActionType["clickedDeliveryMethod"] = "clickedDeliveryMethod";
|
|
@@ -53,49 +54,50 @@ exports.ActionType = ActionType;
|
|
|
53
54
|
ActionType["clickedGalleryGroup"] = "clickedGalleryGroup";
|
|
54
55
|
ActionType["clickedLoadMore"] = "clickedLoadMore";
|
|
55
56
|
ActionType["clickedMainArtworkGrid"] = "clickedMainArtworkGrid";
|
|
57
|
+
ActionType["clickedMyCollectionInsightsMedianAuctionRailItem"] = "clickedMyCollectionInsightsMedianAuctionRailItem";
|
|
56
58
|
ActionType["clickedNavigationTab"] = "clickedNavigationTab";
|
|
59
|
+
ActionType["clickedOfferActions"] = "clickedOfferActions";
|
|
57
60
|
ActionType["clickedOfferOption"] = "clickedOfferOption";
|
|
58
61
|
ActionType["clickedOnArtworkShippingUnitsDropdown"] = "clickedOnArtworkShippingUnitsDropdown";
|
|
59
62
|
ActionType["clickedOnArtworkShippingWeight"] = "clickedOnArtworkShippingWeight";
|
|
60
63
|
ActionType["clickedOnFramedMeasurements"] = "clickedOnFramedMeasurements";
|
|
61
64
|
ActionType["clickedOnFramedMeasurementsDropdown"] = "clickedOnFramedMeasurementsDropdown";
|
|
62
65
|
ActionType["clickedOnSubmitOrder"] = "clickedOnSubmitOrder";
|
|
63
|
-
ActionType["
|
|
66
|
+
ActionType["clickedOrderPage"] = "clickedOrderPage";
|
|
64
67
|
ActionType["clickedPartnerCard"] = "clickedPartnerCard";
|
|
65
68
|
ActionType["clickedPartnerLink"] = "clickedPartnerLink";
|
|
66
|
-
ActionType["clickedPlayVideo"] = "clickedPlayVideo";
|
|
67
69
|
ActionType["clickedPaymentMethod"] = "clickedPaymentMethod";
|
|
68
70
|
ActionType["clickedPaymentDetails"] = "clickedPaymentDetails";
|
|
69
|
-
ActionType["
|
|
71
|
+
ActionType["clickedPlayVideo"] = "clickedPlayVideo";
|
|
70
72
|
ActionType["clickedPromoSpace"] = "clickedPromoSpace";
|
|
71
73
|
ActionType["clickedRegisterToBid"] = "clickedRegisterToBid";
|
|
72
74
|
ActionType["clickedSelectShippingOption"] = "clickedSelectShippingOption";
|
|
73
75
|
ActionType["clickedShippingAddress"] = "clickedShippingAddress";
|
|
74
76
|
ActionType["clickedShowGroup"] = "clickedShowGroup";
|
|
75
77
|
ActionType["clickedShowMore"] = "clickedShowMore";
|
|
78
|
+
ActionType["clickedSnooze"] = "clickedSnooze";
|
|
76
79
|
ActionType["clickedSponsorLink"] = "clickedSponsorLink";
|
|
77
80
|
ActionType["clickedTooltip"] = "clickedTooltip";
|
|
78
81
|
ActionType["clickedVerifyIdentity"] = "clickedVerifyIdentity";
|
|
79
82
|
ActionType["clickedViewingRoomCard"] = "clickedViewingRoomCard";
|
|
80
|
-
ActionType["clickedOfferActions"] = "clickedOfferActions";
|
|
81
|
-
ActionType["clickedOrderPage"] = "clickedOrderPage";
|
|
82
83
|
ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
|
|
83
84
|
ActionType["completedOnboarding"] = "completedOnboarding";
|
|
84
85
|
ActionType["confirmBid"] = "confirmBid";
|
|
85
86
|
ActionType["confirmRegistrationPageview"] = "confirmRegistrationPageview";
|
|
86
87
|
ActionType["consignmentArtistFailed"] = "consignmentArtistFailed";
|
|
87
88
|
ActionType["consignmentSubmitted"] = "consignmentSubmitted";
|
|
88
|
-
ActionType["contactInformationCompleted"] = "contactInformationCompleted";
|
|
89
89
|
ActionType["contactGallery"] = "contactGallery";
|
|
90
|
+
ActionType["contactInformationCompleted"] = "contactInformationCompleted";
|
|
90
91
|
ActionType["createdAccount"] = "createdAccount";
|
|
91
92
|
ActionType["deleteCollectedArtwork"] = "deleteCollectedArtwork";
|
|
92
93
|
ActionType["deletedSavedSearch"] = "deletedSavedSearch";
|
|
93
94
|
ActionType["editCollectedArtwork"] = "editCollectedArtwork";
|
|
94
95
|
ActionType["editedSavedSearch"] = "editedSavedSearch";
|
|
95
96
|
ActionType["enterLiveAuction"] = "enterLiveAuction";
|
|
97
|
+
ActionType["experimentViewed"] = "experimentViewed";
|
|
96
98
|
ActionType["focusedOnConversationMessageInput"] = "focusedOnConversationMessageInput";
|
|
97
|
-
ActionType["focusedOnSearchInput"] = "focusedOnSearchInput";
|
|
98
99
|
ActionType["focusedOnPriceDatabaseSearchInput"] = "focusedOnPriceDatabaseSearchInput";
|
|
100
|
+
ActionType["focusedOnSearchInput"] = "focusedOnSearchInput";
|
|
99
101
|
ActionType["followedArtist"] = "followedArtist";
|
|
100
102
|
ActionType["followedFair"] = "followedFair";
|
|
101
103
|
ActionType["followedGene"] = "followedGene";
|
|
@@ -109,24 +111,23 @@ exports.ActionType = ActionType;
|
|
|
109
111
|
ActionType["registrationSubmitted"] = "registrationSubmitted";
|
|
110
112
|
ActionType["resetYourPassword"] = "resetYourPassword";
|
|
111
113
|
ActionType["saleScreenLoadComplete"] = "saleScreenLoadComplete";
|
|
114
|
+
ActionType["saveCollectedArtwork"] = "saveCollectedArtwork";
|
|
112
115
|
ActionType["screen"] = "screen";
|
|
113
116
|
ActionType["searchedPriceDatabase"] = "searchedPriceDatabase";
|
|
114
117
|
ActionType["searchedReverseImageWithNoResults"] = "searchedReverseImageWithNoResults";
|
|
115
118
|
ActionType["searchedReverseImageWithResults"] = "searchedReverseImageWithResults";
|
|
116
119
|
ActionType["searchedWithNoResults"] = "searchedWithNoResults";
|
|
117
120
|
ActionType["selectedArtworkFromReverseImageSearch"] = "selectedArtworkFromReverseImageSearch";
|
|
118
|
-
ActionType["selectedItemFromSearch"] = "selectedItemFromSearch";
|
|
119
121
|
ActionType["selectedItemFromPriceDatabaseSearch"] = "selectedItemFromPriceDatabaseSearch";
|
|
122
|
+
ActionType["selectedItemFromSearch"] = "selectedItemFromSearch";
|
|
120
123
|
ActionType["sentArtworkInquiry"] = "sentArtworkInquiry";
|
|
121
124
|
ActionType["sentConversationMessage"] = "sentConversationMessage";
|
|
122
125
|
ActionType["sentRequestPriceEstimate"] = "sentRequestPriceEstimate";
|
|
123
126
|
ActionType["share"] = "share";
|
|
124
|
-
ActionType["experimentViewed"] = "experimentViewed";
|
|
125
127
|
ActionType["startedOnboarding"] = "startedOnboarding";
|
|
126
128
|
ActionType["submitAnotherArtwork"] = "submitAnotherArtwork";
|
|
127
129
|
ActionType["successfullyLoggedIn"] = "successfullyLoggedIn";
|
|
128
130
|
ActionType["tappedArticleGroup"] = "tappedArticleGroup";
|
|
129
|
-
ActionType["tappedShowGroup"] = "tappedShowGroup";
|
|
130
131
|
ActionType["tappedArtistGroup"] = "tappedArtistGroup";
|
|
131
132
|
ActionType["tappedArtistSeriesGroup"] = "tappedArtistSeriesGroup";
|
|
132
133
|
ActionType["tappedArtworkGroup"] = "tappedArtworkGroup";
|
|
@@ -135,24 +136,25 @@ exports.ActionType = ActionType;
|
|
|
135
136
|
ActionType["tappedBid"] = "tappedBid";
|
|
136
137
|
ActionType["tappedBuyNow"] = "tappedBuyNow";
|
|
137
138
|
ActionType["tappedCollectedArtwork"] = "tappedCollectedArtwork";
|
|
138
|
-
ActionType["tappedMyCollectionAddArtworkArtist"] = "tappedMyCollectionAddArtworkArtist";
|
|
139
139
|
ActionType["tappedCollectedArtworkImages"] = "tappedCollectedArtworkImages";
|
|
140
140
|
ActionType["tappedCollectionGroup"] = "tappedCollectionGroup";
|
|
141
141
|
ActionType["tappedConsign"] = "tappedConsign";
|
|
142
142
|
ActionType["tappedContactGallery"] = "tappedContactGallery";
|
|
143
143
|
ActionType["tappedCreateAlert"] = "tappedCreateAlert";
|
|
144
144
|
ActionType["tappedExploreGroup"] = "tappedExploreGroup";
|
|
145
|
-
ActionType["tappedFairGroup"] = "tappedFairGroup";
|
|
146
145
|
ActionType["tappedFairCard"] = "tappedFairCard";
|
|
146
|
+
ActionType["tappedFairGroup"] = "tappedFairGroup";
|
|
147
147
|
ActionType["tappedInboxConversation"] = "tappedInboxConversation";
|
|
148
148
|
ActionType["tappedInfoBubble"] = "tappedInfoBubble";
|
|
149
|
+
ActionType["tappedLearnMore"] = "tappedLearnMore";
|
|
149
150
|
ActionType["tappedLink"] = "tappedLink";
|
|
150
151
|
ActionType["tappedMainArtworkGrid"] = "tappedMainArtworkGrid";
|
|
151
152
|
ActionType["tappedMakeOffer"] = "tappedMakeOffer";
|
|
152
|
-
ActionType["
|
|
153
|
+
ActionType["tappedMyCollectionAddArtworkArtist"] = "tappedMyCollectionAddArtworkArtist";
|
|
153
154
|
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight"] = "tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight";
|
|
154
155
|
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartCategory"] = "TappedMyCollectionInsightsMedianAuctionPriceChartCategory";
|
|
155
156
|
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe"] = "tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe";
|
|
157
|
+
ActionType["tappedMyCollectionInsightsMedianAuctionRailItem"] = "tappedMyCollectionInsightsMedianAuctionRailItem";
|
|
156
158
|
ActionType["tappedNavigationTab"] = "tappedNavigationTab";
|
|
157
159
|
ActionType["tappedPartnerCard"] = "tappedPartnerCard";
|
|
158
160
|
ActionType["tappedPickImageFromLibrary"] = "tappedPickImageFromLibrary";
|
|
@@ -162,16 +164,16 @@ exports.ActionType = ActionType;
|
|
|
162
164
|
ActionType["tappedReverseImageSearch"] = "tappedReverseImageSearch";
|
|
163
165
|
ActionType["tappedSell"] = "tappedSell";
|
|
164
166
|
ActionType["tappedSellArtwork"] = "tappedSellArtwork";
|
|
167
|
+
ActionType["tappedShowGroup"] = "tappedShowGroup";
|
|
165
168
|
ActionType["tappedShowMore"] = "tappedShowMore";
|
|
166
|
-
ActionType["tappedLearnMore"] = "tappedLearnMore";
|
|
167
169
|
ActionType["tappedSkip"] = "tappedSkip";
|
|
168
170
|
ActionType["tappedTabBar"] = "tappedTabBar";
|
|
169
171
|
ActionType["tappedToggleCameraFlash"] = "tappedToggleCameraFlash";
|
|
172
|
+
ActionType["tappedUploadAnotherArtwork"] = "tappedUploadAnotherArtwork";
|
|
170
173
|
ActionType["tappedVerifyIdentity"] = "tappedVerifyIdentity";
|
|
171
174
|
ActionType["tappedViewingRoomCard"] = "tappedViewingRoomCard";
|
|
172
175
|
ActionType["tappedViewingRoomGroup"] = "tappedViewingRoomGroup";
|
|
173
176
|
ActionType["tappedViewOffer"] = "tappedViewOffer";
|
|
174
|
-
ActionType["tappedUploadAnotherArtwork"] = "tappedUploadAnotherArtwork";
|
|
175
177
|
ActionType["timeOnPage"] = "timeOnPage";
|
|
176
178
|
ActionType["toggledAccordion"] = "toggledAccordion";
|
|
177
179
|
ActionType["toggledNotification"] = "toggledNotification";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artsy/cohesion",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.67.0",
|
|
4
4
|
"description": "Analytics schema",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"watch": "concurrently --raw --kill-others 'yarn compile -w' 'yarn emit-types -w'"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@artsy/auto-config": "1.
|
|
28
|
+
"@artsy/auto-config": "1.2.0",
|
|
29
29
|
"@babel/cli": "7.8.4",
|
|
30
30
|
"@babel/core": "7.9.0",
|
|
31
31
|
"@babel/preset-env": "7.9.5",
|
|
@@ -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.4"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"core-js": "3"
|
package/pull_request_template.md
CHANGED
|
@@ -15,6 +15,6 @@ This PR resolves [CO-]
|
|
|
15
15
|
|
|
16
16
|
<!-- 💡 This checklist is experimental. #cohesion warmly welcomes any feedback about the list or how it impacts your workflow -->
|
|
17
17
|
|
|
18
|
-
- [ ] If I've added a new file to the tree I've exported it from the common `index.ts`
|
|
18
|
+
- [ ] If I've added a new file to the tree I've exported it from the common [`index.ts`](https://github.com/artsy/cohesion/blob/main/src/Schema/Events/index.ts)
|
|
19
19
|
- [ ] I've added comments with examples for any new interfaces and ensured that they're in the docs
|
|
20
20
|
- [ ] No platform-specific terminology has been used outside of `click` and `tap` (platform is inferred by the DB storing events)
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { AddCollectedArtwork } from "../../Schema/Events/MyCollection";
|
|
2
|
-
/**
|
|
3
|
-
* A user adds an artwork to their My Collection
|
|
4
|
-
*
|
|
5
|
-
* @example
|
|
6
|
-
* ```
|
|
7
|
-
* addCollectedArtwork()
|
|
8
|
-
* ```
|
|
9
|
-
*
|
|
10
|
-
*/
|
|
11
|
-
export declare const addCollectedArtwork: () => AddCollectedArtwork;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.addCollectedArtwork = void 0;
|
|
7
|
-
|
|
8
|
-
var _Schema = require("../../Schema");
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* A user adds an artwork to their My Collection
|
|
12
|
-
*
|
|
13
|
-
* @example
|
|
14
|
-
* ```
|
|
15
|
-
* addCollectedArtwork()
|
|
16
|
-
* ```
|
|
17
|
-
*
|
|
18
|
-
*/
|
|
19
|
-
var addCollectedArtwork = function addCollectedArtwork() {
|
|
20
|
-
return {
|
|
21
|
-
action: _Schema.ActionType.addCollectedArtwork,
|
|
22
|
-
context_module: _Schema.ContextModule.myCollectionHome,
|
|
23
|
-
context_owner_type: _Schema.OwnerType.myCollection
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
exports.addCollectedArtwork = addCollectedArtwork;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { DeleteCollectedArtwork } from "../../Schema/Events/MyCollection";
|
|
2
|
-
export interface DeleteCollectedArtworkArgs {
|
|
3
|
-
contextOwnerId: string;
|
|
4
|
-
contextOwnerSlug: string;
|
|
5
|
-
}
|
|
6
|
-
/**
|
|
7
|
-
* A user deletes an artwork in their My Collection
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* ```
|
|
11
|
-
* deleteCollectedArtwork({
|
|
12
|
-
* contextOwnerId: "1234455",
|
|
13
|
-
* contextOwnerSlug: "my-artwork-slug"
|
|
14
|
-
* })
|
|
15
|
-
* ```
|
|
16
|
-
*/
|
|
17
|
-
export declare const deleteCollectedArtwork: ({ contextOwnerId, contextOwnerSlug, }: DeleteCollectedArtworkArgs) => DeleteCollectedArtwork;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.deleteCollectedArtwork = void 0;
|
|
7
|
-
|
|
8
|
-
var _Schema = require("../../Schema");
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* A user deletes an artwork in their My Collection
|
|
12
|
-
*
|
|
13
|
-
* @example
|
|
14
|
-
* ```
|
|
15
|
-
* deleteCollectedArtwork({
|
|
16
|
-
* contextOwnerId: "1234455",
|
|
17
|
-
* contextOwnerSlug: "my-artwork-slug"
|
|
18
|
-
* })
|
|
19
|
-
* ```
|
|
20
|
-
*/
|
|
21
|
-
var deleteCollectedArtwork = function deleteCollectedArtwork(_ref) {
|
|
22
|
-
var contextOwnerId = _ref.contextOwnerId,
|
|
23
|
-
contextOwnerSlug = _ref.contextOwnerSlug;
|
|
24
|
-
return {
|
|
25
|
-
action: _Schema.ActionType.deleteCollectedArtwork,
|
|
26
|
-
context_module: _Schema.ContextModule.myCollectionArtwork,
|
|
27
|
-
context_owner_id: contextOwnerId,
|
|
28
|
-
context_owner_slug: contextOwnerSlug,
|
|
29
|
-
context_owner_type: _Schema.OwnerType.myCollectionArtwork
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
exports.deleteCollectedArtwork = deleteCollectedArtwork;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { EditCollectedArtwork } from "../../Schema/Events/MyCollection";
|
|
2
|
-
export interface EditCollectedArtworkArgs {
|
|
3
|
-
contextOwnerId: string;
|
|
4
|
-
contextOwnerSlug: string;
|
|
5
|
-
}
|
|
6
|
-
/**
|
|
7
|
-
* A user edits an artwork in their My Collection
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* ```
|
|
11
|
-
* editCollectedArtwork({
|
|
12
|
-
* contextOwnerId: "1234455",
|
|
13
|
-
* contextOwnerSlug: "my-artwork-slug"
|
|
14
|
-
* })
|
|
15
|
-
* ```
|
|
16
|
-
*/
|
|
17
|
-
export declare const editCollectedArtwork: ({ contextOwnerId, contextOwnerSlug, }: EditCollectedArtworkArgs) => EditCollectedArtwork;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.editCollectedArtwork = void 0;
|
|
7
|
-
|
|
8
|
-
var _Schema = require("../../Schema");
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* A user edits an artwork in their My Collection
|
|
12
|
-
*
|
|
13
|
-
* @example
|
|
14
|
-
* ```
|
|
15
|
-
* editCollectedArtwork({
|
|
16
|
-
* contextOwnerId: "1234455",
|
|
17
|
-
* contextOwnerSlug: "my-artwork-slug"
|
|
18
|
-
* })
|
|
19
|
-
* ```
|
|
20
|
-
*/
|
|
21
|
-
var editCollectedArtwork = function editCollectedArtwork(_ref) {
|
|
22
|
-
var contextOwnerId = _ref.contextOwnerId,
|
|
23
|
-
contextOwnerSlug = _ref.contextOwnerSlug;
|
|
24
|
-
return {
|
|
25
|
-
action: _Schema.ActionType.editCollectedArtwork,
|
|
26
|
-
context_module: _Schema.ContextModule.myCollectionArtwork,
|
|
27
|
-
context_owner_id: contextOwnerId,
|
|
28
|
-
context_owner_slug: contextOwnerSlug,
|
|
29
|
-
context_owner_type: _Schema.OwnerType.myCollectionArtwork
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
exports.editCollectedArtwork = editCollectedArtwork;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|