@artsy/cohesion 4.65.0 → 4.66.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 +12 -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/index.d.ts +79 -76
- package/dist/Schema/Events/index.js +19 -18
- package/package.json +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,15 @@
|
|
|
1
|
+
# v4.66.0 (Mon Sep 19 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat(CX-2731): Add saveCollectedArtwork action to MyCollection events [#354](https://github.com/artsy/cohesion/pull/354) ([@MrSltun](https://github.com/MrSltun))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Sultan Al-Maari ([@MrSltun](https://github.com/MrSltun))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.65.0 (Fri Sep 09 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 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
|
|
@@ -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,14 +156,13 @@ 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
|
*/
|
|
@@ -169,12 +172,16 @@ export declare enum ActionType {
|
|
|
169
172
|
*/
|
|
170
173
|
clickedNavigationTab = "clickedNavigationTab",
|
|
171
174
|
/**
|
|
172
|
-
* Corresponds to {@link
|
|
175
|
+
* Corresponds to {@link ClickedOfferActions}
|
|
173
176
|
*/
|
|
174
|
-
|
|
177
|
+
clickedOfferActions = "clickedOfferActions",
|
|
175
178
|
/**
|
|
176
179
|
* Corresponds to {@link ClickedOfferOption}
|
|
177
180
|
*/
|
|
181
|
+
clickedOfferOption = "clickedOfferOption",
|
|
182
|
+
/**
|
|
183
|
+
* Corresponds to {@link ClickedOnArtworkShippingUnitsDropdown}
|
|
184
|
+
*/
|
|
178
185
|
clickedOnArtworkShippingUnitsDropdown = "clickedOnArtworkShippingUnitsDropdown",
|
|
179
186
|
/**
|
|
180
187
|
* Corresponds to {@link ClickedOnArtworkShippingWeight}
|
|
@@ -193,9 +200,9 @@ export declare enum ActionType {
|
|
|
193
200
|
*/
|
|
194
201
|
clickedOnSubmitOrder = "clickedOnSubmitOrder",
|
|
195
202
|
/**
|
|
196
|
-
* Corresponds to {@link
|
|
203
|
+
* Corresponds to {@link ClickedOrderPage}
|
|
197
204
|
*/
|
|
198
|
-
|
|
205
|
+
clickedOrderPage = "clickedOrderPage",
|
|
199
206
|
/**
|
|
200
207
|
* Corresponds to {@link ClickedPartnerCard}
|
|
201
208
|
*/
|
|
@@ -205,23 +212,19 @@ export declare enum ActionType {
|
|
|
205
212
|
*/
|
|
206
213
|
clickedPartnerLink = "clickedPartnerLink",
|
|
207
214
|
/**
|
|
208
|
-
* Corresponds to {@link
|
|
209
|
-
*/
|
|
210
|
-
clickedPlayVideo = "clickedPlayVideo",
|
|
211
|
-
/**
|
|
212
|
-
* Corresponds to {@link ClickedPromoSpace}
|
|
215
|
+
* Corresponds to {@link ClickedPaymentMethod}
|
|
213
216
|
*/
|
|
214
217
|
clickedPaymentMethod = "clickedPaymentMethod",
|
|
215
218
|
/**
|
|
216
|
-
* Corresponds to {@link
|
|
219
|
+
* Corresponds to {@link ClickedPaymentDetails}
|
|
217
220
|
*/
|
|
218
221
|
clickedPaymentDetails = "clickedPaymentDetails",
|
|
219
222
|
/**
|
|
220
|
-
* Corresponds to {@link
|
|
223
|
+
* Corresponds to {@link ClickedPlayVideo}
|
|
221
224
|
*/
|
|
222
|
-
|
|
225
|
+
clickedPlayVideo = "clickedPlayVideo",
|
|
223
226
|
/**
|
|
224
|
-
* Corresponds to {@link
|
|
227
|
+
* Corresponds to {@link ClickedPromoSpace}
|
|
225
228
|
*/
|
|
226
229
|
clickedPromoSpace = "clickedPromoSpace",
|
|
227
230
|
/**
|
|
@@ -244,6 +247,10 @@ export declare enum ActionType {
|
|
|
244
247
|
* Corresponds to {@link ClickedShowMore}
|
|
245
248
|
*/
|
|
246
249
|
clickedShowMore = "clickedShowMore",
|
|
250
|
+
/**
|
|
251
|
+
* Corresponds to {@link ClickedSnooze}
|
|
252
|
+
*/
|
|
253
|
+
clickedSnooze = "clickedSnooze",
|
|
247
254
|
/**
|
|
248
255
|
* Corresponds to {@link ClickedSponsorLink}
|
|
249
256
|
*/
|
|
@@ -253,21 +260,13 @@ export declare enum ActionType {
|
|
|
253
260
|
*/
|
|
254
261
|
clickedTooltip = "clickedTooltip",
|
|
255
262
|
/**
|
|
256
|
-
* Corresponds to {@link
|
|
263
|
+
* Corresponds to {@link ClickedVerifyIdentity}
|
|
257
264
|
*/
|
|
258
265
|
clickedVerifyIdentity = "clickedVerifyIdentity",
|
|
259
266
|
/**
|
|
260
267
|
* Corresponds to {@link ClickedViewingRoomCard}
|
|
261
268
|
*/
|
|
262
269
|
clickedViewingRoomCard = "clickedViewingRoomCard",
|
|
263
|
-
/**
|
|
264
|
-
* Corresponds to {@link ClickedOfferActions}
|
|
265
|
-
*/
|
|
266
|
-
clickedOfferActions = "clickedOfferActions",
|
|
267
|
-
/**
|
|
268
|
-
* Corresponds to {@link ClickedOrderPage}
|
|
269
|
-
*/
|
|
270
|
-
clickedOrderPage = "clickedOrderPage",
|
|
271
270
|
/**
|
|
272
271
|
* Corresponds to {@link CommercialFilterParamsChanged}
|
|
273
272
|
*/
|
|
@@ -292,14 +291,14 @@ export declare enum ActionType {
|
|
|
292
291
|
* Corresponds to {@link ConsignmentSubmitted}
|
|
293
292
|
*/
|
|
294
293
|
consignmentSubmitted = "consignmentSubmitted",
|
|
295
|
-
/**
|
|
296
|
-
* Corresponds to {@link ContactInformationCompleted}
|
|
297
|
-
*/
|
|
298
|
-
contactInformationCompleted = "contactInformationCompleted",
|
|
299
294
|
/**
|
|
300
295
|
* Corresponds to {@link ContactGallery}
|
|
301
296
|
*/
|
|
302
297
|
contactGallery = "contactGallery",
|
|
298
|
+
/**
|
|
299
|
+
* Corresponds to {@link ContactInformationCompleted}
|
|
300
|
+
*/
|
|
301
|
+
contactInformationCompleted = "contactInformationCompleted",
|
|
303
302
|
/**
|
|
304
303
|
* Corresponds to {@link CreatedAccount}
|
|
305
304
|
*/
|
|
@@ -325,17 +324,21 @@ export declare enum ActionType {
|
|
|
325
324
|
*/
|
|
326
325
|
enterLiveAuction = "enterLiveAuction",
|
|
327
326
|
/**
|
|
328
|
-
* Corresponds to {@link
|
|
327
|
+
* Corresponds to {@link ExperimentViewed}
|
|
329
328
|
*/
|
|
330
|
-
|
|
329
|
+
experimentViewed = "experimentViewed",
|
|
331
330
|
/**
|
|
332
|
-
* Corresponds to {@link
|
|
331
|
+
* Corresponds to {@link FocusedOnConversationMessageInput}
|
|
333
332
|
*/
|
|
334
|
-
|
|
333
|
+
focusedOnConversationMessageInput = "focusedOnConversationMessageInput",
|
|
335
334
|
/**
|
|
336
335
|
* Corresponds to {@link FocusedOnPriceDatabaseSearchInput}
|
|
337
336
|
*/
|
|
338
337
|
focusedOnPriceDatabaseSearchInput = "focusedOnPriceDatabaseSearchInput",
|
|
338
|
+
/**
|
|
339
|
+
* Corresponds to {@link FocusedOnSearchInput}
|
|
340
|
+
*/
|
|
341
|
+
focusedOnSearchInput = "focusedOnSearchInput",
|
|
339
342
|
/**
|
|
340
343
|
* Corresponds to {@link FollowedArtist}
|
|
341
344
|
*/
|
|
@@ -388,6 +391,10 @@ export declare enum ActionType {
|
|
|
388
391
|
* Corresponds to {@link SaleScreenLoadComplete}
|
|
389
392
|
*/
|
|
390
393
|
saleScreenLoadComplete = "saleScreenLoadComplete",
|
|
394
|
+
/**
|
|
395
|
+
* Corresponds to {@link SaveCollectedArtwork}
|
|
396
|
+
*/
|
|
397
|
+
saveCollectedArtwork = "saveCollectedArtwork",
|
|
391
398
|
/**
|
|
392
399
|
* Corresponds to {@link Screen}
|
|
393
400
|
*/
|
|
@@ -412,14 +419,14 @@ export declare enum ActionType {
|
|
|
412
419
|
* Corresponds to {@link SelectedArtworkFromReverseImageSearch}
|
|
413
420
|
*/
|
|
414
421
|
selectedArtworkFromReverseImageSearch = "selectedArtworkFromReverseImageSearch",
|
|
415
|
-
/**
|
|
416
|
-
* Corresponds to {@link SelectedItemFromSearch}
|
|
417
|
-
*/
|
|
418
|
-
selectedItemFromSearch = "selectedItemFromSearch",
|
|
419
422
|
/**
|
|
420
423
|
* Corresponds to {@link SelectedItemFromPriceDatabaseSearch}
|
|
421
424
|
*/
|
|
422
425
|
selectedItemFromPriceDatabaseSearch = "selectedItemFromPriceDatabaseSearch",
|
|
426
|
+
/**
|
|
427
|
+
* Corresponds to {@link SelectedItemFromSearch}
|
|
428
|
+
*/
|
|
429
|
+
selectedItemFromSearch = "selectedItemFromSearch",
|
|
423
430
|
/**
|
|
424
431
|
* Corresponds to {@link sentArtworkInquiry}
|
|
425
432
|
*/
|
|
@@ -437,11 +444,7 @@ export declare enum ActionType {
|
|
|
437
444
|
*/
|
|
438
445
|
share = "share",
|
|
439
446
|
/**
|
|
440
|
-
* Corresponds to {@link
|
|
441
|
-
*/
|
|
442
|
-
experimentViewed = "experimentViewed",
|
|
443
|
-
/**
|
|
444
|
-
* Corresponds to {@link SuccessfullyLoggedIn}
|
|
447
|
+
* Corresponds to {@link StartedOnboarding}
|
|
445
448
|
*/
|
|
446
449
|
startedOnboarding = "startedOnboarding",
|
|
447
450
|
/**
|
|
@@ -456,10 +459,6 @@ export declare enum ActionType {
|
|
|
456
459
|
* Corresponds to {@link TappedArticleGroup}
|
|
457
460
|
*/
|
|
458
461
|
tappedArticleGroup = "tappedArticleGroup",
|
|
459
|
-
/**
|
|
460
|
-
* Corresponds to {@link TappedShowGroup}
|
|
461
|
-
*/
|
|
462
|
-
tappedShowGroup = "tappedShowGroup",
|
|
463
462
|
/**
|
|
464
463
|
* Corresponds to {@link TappedArtistGroup}
|
|
465
464
|
*/
|
|
@@ -492,10 +491,6 @@ export declare enum ActionType {
|
|
|
492
491
|
* Corresponds to {@link TappedCollectedArtwork}
|
|
493
492
|
*/
|
|
494
493
|
tappedCollectedArtwork = "tappedCollectedArtwork",
|
|
495
|
-
/**
|
|
496
|
-
* Corresponds to {@link TappedMyCollectionAddArtworkArtist}
|
|
497
|
-
*/
|
|
498
|
-
tappedMyCollectionAddArtworkArtist = "tappedMyCollectionAddArtworkArtist",
|
|
499
494
|
/**
|
|
500
495
|
* Corresponds to {@link TappedCollectedArtworkImages}
|
|
501
496
|
*/
|
|
@@ -520,14 +515,14 @@ export declare enum ActionType {
|
|
|
520
515
|
* Corresponds to {@link TappedExploreGroup}
|
|
521
516
|
*/
|
|
522
517
|
tappedExploreGroup = "tappedExploreGroup",
|
|
523
|
-
/**
|
|
524
|
-
* Corresponds to {@link TappedFairGroup}
|
|
525
|
-
*/
|
|
526
|
-
tappedFairGroup = "tappedFairGroup",
|
|
527
518
|
/**
|
|
528
519
|
* Corresponds to {@link TappedFairCard}
|
|
529
520
|
*/
|
|
530
521
|
tappedFairCard = "tappedFairCard",
|
|
522
|
+
/**
|
|
523
|
+
* Corresponds to {@link TappedFairGroup}
|
|
524
|
+
*/
|
|
525
|
+
tappedFairGroup = "tappedFairGroup",
|
|
531
526
|
/**
|
|
532
527
|
* Corresponds to {@link TappedInboxConversation}
|
|
533
528
|
*/
|
|
@@ -536,6 +531,10 @@ export declare enum ActionType {
|
|
|
536
531
|
* Corresponds to {@link TappedInfoBubble}
|
|
537
532
|
*/
|
|
538
533
|
tappedInfoBubble = "tappedInfoBubble",
|
|
534
|
+
/**
|
|
535
|
+
* Corresponds to {@link TappedLearnMore}
|
|
536
|
+
*/
|
|
537
|
+
tappedLearnMore = "tappedLearnMore",
|
|
539
538
|
/**
|
|
540
539
|
* Corresponds to {@link TappedLink}
|
|
541
540
|
*/
|
|
@@ -549,9 +548,9 @@ export declare enum ActionType {
|
|
|
549
548
|
*/
|
|
550
549
|
tappedMakeOffer = "tappedMakeOffer",
|
|
551
550
|
/**
|
|
552
|
-
* Corresponds to {@link
|
|
551
|
+
* Corresponds to {@link TappedMyCollectionAddArtworkArtist}
|
|
553
552
|
*/
|
|
554
|
-
|
|
553
|
+
tappedMyCollectionAddArtworkArtist = "tappedMyCollectionAddArtworkArtist",
|
|
555
554
|
/**
|
|
556
555
|
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight}
|
|
557
556
|
*/
|
|
@@ -564,6 +563,10 @@ export declare enum ActionType {
|
|
|
564
563
|
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe}
|
|
565
564
|
*/
|
|
566
565
|
tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe = "tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe",
|
|
566
|
+
/**
|
|
567
|
+
* Corresponds to {@link TappedMyCollectionInsightsMedianAuctionRailItem}
|
|
568
|
+
*/
|
|
569
|
+
tappedMyCollectionInsightsMedianAuctionRailItem = "tappedMyCollectionInsightsMedianAuctionRailItem",
|
|
567
570
|
/**
|
|
568
571
|
* Corresponds to {@link TappedNavigationTab}
|
|
569
572
|
*/
|
|
@@ -601,13 +604,13 @@ export declare enum ActionType {
|
|
|
601
604
|
*/
|
|
602
605
|
tappedSellArtwork = "tappedSellArtwork",
|
|
603
606
|
/**
|
|
604
|
-
* Corresponds to {@link
|
|
607
|
+
* Corresponds to {@link TappedShowGroup}
|
|
605
608
|
*/
|
|
606
|
-
|
|
609
|
+
tappedShowGroup = "tappedShowGroup",
|
|
607
610
|
/**
|
|
608
|
-
* Corresponds to {@link
|
|
611
|
+
* Corresponds to {@link TappedShowMore}
|
|
609
612
|
*/
|
|
610
|
-
|
|
613
|
+
tappedShowMore = "tappedShowMore",
|
|
611
614
|
/**
|
|
612
615
|
* Corresponds to {@link TappedSkip}
|
|
613
616
|
*/
|
|
@@ -620,6 +623,10 @@ export declare enum ActionType {
|
|
|
620
623
|
* Corresponds to {@link TappedToggleCameraFlash}
|
|
621
624
|
*/
|
|
622
625
|
tappedToggleCameraFlash = "tappedToggleCameraFlash",
|
|
626
|
+
/**
|
|
627
|
+
* Corresponds to {@link TappedUploadAnotherArtwork}
|
|
628
|
+
*/
|
|
629
|
+
tappedUploadAnotherArtwork = "tappedUploadAnotherArtwork",
|
|
623
630
|
/**
|
|
624
631
|
* Corresponds to {@link TappedVerifyIdentity}
|
|
625
632
|
*/
|
|
@@ -636,10 +643,6 @@ export declare enum ActionType {
|
|
|
636
643
|
* Corresponds to {@link TappedViewOffer}
|
|
637
644
|
*/
|
|
638
645
|
tappedViewOffer = "tappedViewOffer",
|
|
639
|
-
/**
|
|
640
|
-
* Corresponds to {@link TappedUploadAnotherArtwork}
|
|
641
|
-
*/
|
|
642
|
-
tappedUploadAnotherArtwork = "tappedUploadAnotherArtwork",
|
|
643
646
|
/**
|
|
644
647
|
* Corresponds to {@link TimeOnPage}
|
|
645
648
|
*/
|
|
@@ -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";
|
|
@@ -54,48 +55,48 @@ exports.ActionType = ActionType;
|
|
|
54
55
|
ActionType["clickedLoadMore"] = "clickedLoadMore";
|
|
55
56
|
ActionType["clickedMainArtworkGrid"] = "clickedMainArtworkGrid";
|
|
56
57
|
ActionType["clickedNavigationTab"] = "clickedNavigationTab";
|
|
58
|
+
ActionType["clickedOfferActions"] = "clickedOfferActions";
|
|
57
59
|
ActionType["clickedOfferOption"] = "clickedOfferOption";
|
|
58
60
|
ActionType["clickedOnArtworkShippingUnitsDropdown"] = "clickedOnArtworkShippingUnitsDropdown";
|
|
59
61
|
ActionType["clickedOnArtworkShippingWeight"] = "clickedOnArtworkShippingWeight";
|
|
60
62
|
ActionType["clickedOnFramedMeasurements"] = "clickedOnFramedMeasurements";
|
|
61
63
|
ActionType["clickedOnFramedMeasurementsDropdown"] = "clickedOnFramedMeasurementsDropdown";
|
|
62
64
|
ActionType["clickedOnSubmitOrder"] = "clickedOnSubmitOrder";
|
|
63
|
-
ActionType["
|
|
65
|
+
ActionType["clickedOrderPage"] = "clickedOrderPage";
|
|
64
66
|
ActionType["clickedPartnerCard"] = "clickedPartnerCard";
|
|
65
67
|
ActionType["clickedPartnerLink"] = "clickedPartnerLink";
|
|
66
|
-
ActionType["clickedPlayVideo"] = "clickedPlayVideo";
|
|
67
68
|
ActionType["clickedPaymentMethod"] = "clickedPaymentMethod";
|
|
68
69
|
ActionType["clickedPaymentDetails"] = "clickedPaymentDetails";
|
|
69
|
-
ActionType["
|
|
70
|
+
ActionType["clickedPlayVideo"] = "clickedPlayVideo";
|
|
70
71
|
ActionType["clickedPromoSpace"] = "clickedPromoSpace";
|
|
71
72
|
ActionType["clickedRegisterToBid"] = "clickedRegisterToBid";
|
|
72
73
|
ActionType["clickedSelectShippingOption"] = "clickedSelectShippingOption";
|
|
73
74
|
ActionType["clickedShippingAddress"] = "clickedShippingAddress";
|
|
74
75
|
ActionType["clickedShowGroup"] = "clickedShowGroup";
|
|
75
76
|
ActionType["clickedShowMore"] = "clickedShowMore";
|
|
77
|
+
ActionType["clickedSnooze"] = "clickedSnooze";
|
|
76
78
|
ActionType["clickedSponsorLink"] = "clickedSponsorLink";
|
|
77
79
|
ActionType["clickedTooltip"] = "clickedTooltip";
|
|
78
80
|
ActionType["clickedVerifyIdentity"] = "clickedVerifyIdentity";
|
|
79
81
|
ActionType["clickedViewingRoomCard"] = "clickedViewingRoomCard";
|
|
80
|
-
ActionType["clickedOfferActions"] = "clickedOfferActions";
|
|
81
|
-
ActionType["clickedOrderPage"] = "clickedOrderPage";
|
|
82
82
|
ActionType["commercialFilterParamsChanged"] = "commercialFilterParamsChanged";
|
|
83
83
|
ActionType["completedOnboarding"] = "completedOnboarding";
|
|
84
84
|
ActionType["confirmBid"] = "confirmBid";
|
|
85
85
|
ActionType["confirmRegistrationPageview"] = "confirmRegistrationPageview";
|
|
86
86
|
ActionType["consignmentArtistFailed"] = "consignmentArtistFailed";
|
|
87
87
|
ActionType["consignmentSubmitted"] = "consignmentSubmitted";
|
|
88
|
-
ActionType["contactInformationCompleted"] = "contactInformationCompleted";
|
|
89
88
|
ActionType["contactGallery"] = "contactGallery";
|
|
89
|
+
ActionType["contactInformationCompleted"] = "contactInformationCompleted";
|
|
90
90
|
ActionType["createdAccount"] = "createdAccount";
|
|
91
91
|
ActionType["deleteCollectedArtwork"] = "deleteCollectedArtwork";
|
|
92
92
|
ActionType["deletedSavedSearch"] = "deletedSavedSearch";
|
|
93
93
|
ActionType["editCollectedArtwork"] = "editCollectedArtwork";
|
|
94
94
|
ActionType["editedSavedSearch"] = "editedSavedSearch";
|
|
95
95
|
ActionType["enterLiveAuction"] = "enterLiveAuction";
|
|
96
|
+
ActionType["experimentViewed"] = "experimentViewed";
|
|
96
97
|
ActionType["focusedOnConversationMessageInput"] = "focusedOnConversationMessageInput";
|
|
97
|
-
ActionType["focusedOnSearchInput"] = "focusedOnSearchInput";
|
|
98
98
|
ActionType["focusedOnPriceDatabaseSearchInput"] = "focusedOnPriceDatabaseSearchInput";
|
|
99
|
+
ActionType["focusedOnSearchInput"] = "focusedOnSearchInput";
|
|
99
100
|
ActionType["followedArtist"] = "followedArtist";
|
|
100
101
|
ActionType["followedFair"] = "followedFair";
|
|
101
102
|
ActionType["followedGene"] = "followedGene";
|
|
@@ -109,24 +110,23 @@ exports.ActionType = ActionType;
|
|
|
109
110
|
ActionType["registrationSubmitted"] = "registrationSubmitted";
|
|
110
111
|
ActionType["resetYourPassword"] = "resetYourPassword";
|
|
111
112
|
ActionType["saleScreenLoadComplete"] = "saleScreenLoadComplete";
|
|
113
|
+
ActionType["saveCollectedArtwork"] = "saveCollectedArtwork";
|
|
112
114
|
ActionType["screen"] = "screen";
|
|
113
115
|
ActionType["searchedPriceDatabase"] = "searchedPriceDatabase";
|
|
114
116
|
ActionType["searchedReverseImageWithNoResults"] = "searchedReverseImageWithNoResults";
|
|
115
117
|
ActionType["searchedReverseImageWithResults"] = "searchedReverseImageWithResults";
|
|
116
118
|
ActionType["searchedWithNoResults"] = "searchedWithNoResults";
|
|
117
119
|
ActionType["selectedArtworkFromReverseImageSearch"] = "selectedArtworkFromReverseImageSearch";
|
|
118
|
-
ActionType["selectedItemFromSearch"] = "selectedItemFromSearch";
|
|
119
120
|
ActionType["selectedItemFromPriceDatabaseSearch"] = "selectedItemFromPriceDatabaseSearch";
|
|
121
|
+
ActionType["selectedItemFromSearch"] = "selectedItemFromSearch";
|
|
120
122
|
ActionType["sentArtworkInquiry"] = "sentArtworkInquiry";
|
|
121
123
|
ActionType["sentConversationMessage"] = "sentConversationMessage";
|
|
122
124
|
ActionType["sentRequestPriceEstimate"] = "sentRequestPriceEstimate";
|
|
123
125
|
ActionType["share"] = "share";
|
|
124
|
-
ActionType["experimentViewed"] = "experimentViewed";
|
|
125
126
|
ActionType["startedOnboarding"] = "startedOnboarding";
|
|
126
127
|
ActionType["submitAnotherArtwork"] = "submitAnotherArtwork";
|
|
127
128
|
ActionType["successfullyLoggedIn"] = "successfullyLoggedIn";
|
|
128
129
|
ActionType["tappedArticleGroup"] = "tappedArticleGroup";
|
|
129
|
-
ActionType["tappedShowGroup"] = "tappedShowGroup";
|
|
130
130
|
ActionType["tappedArtistGroup"] = "tappedArtistGroup";
|
|
131
131
|
ActionType["tappedArtistSeriesGroup"] = "tappedArtistSeriesGroup";
|
|
132
132
|
ActionType["tappedArtworkGroup"] = "tappedArtworkGroup";
|
|
@@ -135,24 +135,25 @@ exports.ActionType = ActionType;
|
|
|
135
135
|
ActionType["tappedBid"] = "tappedBid";
|
|
136
136
|
ActionType["tappedBuyNow"] = "tappedBuyNow";
|
|
137
137
|
ActionType["tappedCollectedArtwork"] = "tappedCollectedArtwork";
|
|
138
|
-
ActionType["tappedMyCollectionAddArtworkArtist"] = "tappedMyCollectionAddArtworkArtist";
|
|
139
138
|
ActionType["tappedCollectedArtworkImages"] = "tappedCollectedArtworkImages";
|
|
140
139
|
ActionType["tappedCollectionGroup"] = "tappedCollectionGroup";
|
|
141
140
|
ActionType["tappedConsign"] = "tappedConsign";
|
|
142
141
|
ActionType["tappedContactGallery"] = "tappedContactGallery";
|
|
143
142
|
ActionType["tappedCreateAlert"] = "tappedCreateAlert";
|
|
144
143
|
ActionType["tappedExploreGroup"] = "tappedExploreGroup";
|
|
145
|
-
ActionType["tappedFairGroup"] = "tappedFairGroup";
|
|
146
144
|
ActionType["tappedFairCard"] = "tappedFairCard";
|
|
145
|
+
ActionType["tappedFairGroup"] = "tappedFairGroup";
|
|
147
146
|
ActionType["tappedInboxConversation"] = "tappedInboxConversation";
|
|
148
147
|
ActionType["tappedInfoBubble"] = "tappedInfoBubble";
|
|
148
|
+
ActionType["tappedLearnMore"] = "tappedLearnMore";
|
|
149
149
|
ActionType["tappedLink"] = "tappedLink";
|
|
150
150
|
ActionType["tappedMainArtworkGrid"] = "tappedMainArtworkGrid";
|
|
151
151
|
ActionType["tappedMakeOffer"] = "tappedMakeOffer";
|
|
152
|
-
ActionType["
|
|
152
|
+
ActionType["tappedMyCollectionAddArtworkArtist"] = "tappedMyCollectionAddArtworkArtist";
|
|
153
153
|
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight"] = "tappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight";
|
|
154
154
|
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartCategory"] = "TappedMyCollectionInsightsMedianAuctionPriceChartCategory";
|
|
155
155
|
ActionType["tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe"] = "tappedMyCollectionInsightsMedianAuctionPriceChartTimeframe";
|
|
156
|
+
ActionType["tappedMyCollectionInsightsMedianAuctionRailItem"] = "tappedMyCollectionInsightsMedianAuctionRailItem";
|
|
156
157
|
ActionType["tappedNavigationTab"] = "tappedNavigationTab";
|
|
157
158
|
ActionType["tappedPartnerCard"] = "tappedPartnerCard";
|
|
158
159
|
ActionType["tappedPickImageFromLibrary"] = "tappedPickImageFromLibrary";
|
|
@@ -162,16 +163,16 @@ exports.ActionType = ActionType;
|
|
|
162
163
|
ActionType["tappedReverseImageSearch"] = "tappedReverseImageSearch";
|
|
163
164
|
ActionType["tappedSell"] = "tappedSell";
|
|
164
165
|
ActionType["tappedSellArtwork"] = "tappedSellArtwork";
|
|
166
|
+
ActionType["tappedShowGroup"] = "tappedShowGroup";
|
|
165
167
|
ActionType["tappedShowMore"] = "tappedShowMore";
|
|
166
|
-
ActionType["tappedLearnMore"] = "tappedLearnMore";
|
|
167
168
|
ActionType["tappedSkip"] = "tappedSkip";
|
|
168
169
|
ActionType["tappedTabBar"] = "tappedTabBar";
|
|
169
170
|
ActionType["tappedToggleCameraFlash"] = "tappedToggleCameraFlash";
|
|
171
|
+
ActionType["tappedUploadAnotherArtwork"] = "tappedUploadAnotherArtwork";
|
|
170
172
|
ActionType["tappedVerifyIdentity"] = "tappedVerifyIdentity";
|
|
171
173
|
ActionType["tappedViewingRoomCard"] = "tappedViewingRoomCard";
|
|
172
174
|
ActionType["tappedViewingRoomGroup"] = "tappedViewingRoomGroup";
|
|
173
175
|
ActionType["tappedViewOffer"] = "tappedViewOffer";
|
|
174
|
-
ActionType["tappedUploadAnotherArtwork"] = "tappedUploadAnotherArtwork";
|
|
175
176
|
ActionType["timeOnPage"] = "timeOnPage";
|
|
176
177
|
ActionType["toggledAccordion"] = "toggledAccordion";
|
|
177
178
|
ActionType["toggledNotification"] = "toggledNotification";
|
package/package.json
CHANGED
|
@@ -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 {};
|