@artsy/cohesion 4.161.0 → 4.163.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 +24 -0
- package/dist/Schema/Events/Click.d.ts +186 -0
- package/dist/Schema/Events/ImpressionTracking.d.ts +88 -0
- package/dist/Schema/Events/index.d.ts +40 -29
- package/dist/Schema/Events/index.js +9 -6
- package/dist/Schema/Values/OwnerType.d.ts +3 -3
- package/dist/Schema/Values/OwnerType.js +1 -1
- package/dist/Schema/index.d.ts +0 -1
- package/dist/Schema/index.js +0 -12
- package/package.json +1 -1
- package/dist/Schema/Events/ReverseImageSearch.d.ts +0 -158
- package/dist/Schema/Events/ReverseImageSearch.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.163.0 (Thu Jan 18 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- [AS-4346] Adding new events for partners offers [#479](https://github.com/artsy/cohesion/pull/479) ([@daytavares](https://github.com/daytavares))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Dayane Tavares ([@daytavares](https://github.com/daytavares))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.162.0 (Thu Jan 04 2024)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- chore(ONYX-535): Clean up analytic events related to TinEye (reverse image) search [#478](https://github.com/artsy/cohesion/pull/478) ([@dariakoko](https://github.com/dariakoko))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.161.0 (Thu Dec 21 2023)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -1790,3 +1790,189 @@ export interface ClickedAlertsFilters {
|
|
|
1790
1790
|
changed: string;
|
|
1791
1791
|
current: string;
|
|
1792
1792
|
}
|
|
1793
|
+
/**
|
|
1794
|
+
* A user clicks on Start Sendind Offers on the marketing banner in CMS
|
|
1795
|
+
*
|
|
1796
|
+
* This schema describes events sent to Segment from [[ClickedMarketingModal]]
|
|
1797
|
+
*
|
|
1798
|
+
* @example
|
|
1799
|
+
* ```
|
|
1800
|
+
* {
|
|
1801
|
+
* action: "clickedMarketingModal",
|
|
1802
|
+
* context_page_owner_type: "Home",
|
|
1803
|
+
* context_page_owner_id: "",
|
|
1804
|
+
* context_page_owner_slug: "",
|
|
1805
|
+
* partner_id: "61bcda16515b038ce5000104",
|
|
1806
|
+
* user_id: "55bcda16515b038ce5033104",
|
|
1807
|
+
* title: "Make an offer, connect now",
|
|
1808
|
+
* label: "Start Sending Offers"
|
|
1809
|
+
* }
|
|
1810
|
+
* ```
|
|
1811
|
+
*/
|
|
1812
|
+
export interface ClickedMarketingModal {
|
|
1813
|
+
action: ActionType.clickedMarketingModal;
|
|
1814
|
+
context_page_owner_type: PageOwnerType;
|
|
1815
|
+
context_page_owner_id: string;
|
|
1816
|
+
context_page_owner_slug?: string;
|
|
1817
|
+
partner_id: string;
|
|
1818
|
+
user_id: string;
|
|
1819
|
+
title: string;
|
|
1820
|
+
label: string;
|
|
1821
|
+
}
|
|
1822
|
+
/**
|
|
1823
|
+
* A user clicks on the CTA to start with a partner offer on the Send Offers page in CMS
|
|
1824
|
+
*
|
|
1825
|
+
* This schema describes events sent to Segment from [[ClickedStartPartnerOffer]]
|
|
1826
|
+
*
|
|
1827
|
+
* @example
|
|
1828
|
+
* ```
|
|
1829
|
+
* {
|
|
1830
|
+
* action: "clickedStartPartnerOffer",
|
|
1831
|
+
* context_module: "Send offers",
|
|
1832
|
+
* context_page_owner_type: "sendOffers",
|
|
1833
|
+
* context_page_owner_id: "",
|
|
1834
|
+
* context_page_owner_slug: "",
|
|
1835
|
+
* partner_id: "61bcda16515b038ce5000104",
|
|
1836
|
+
* artwork_id: "60de173a47476c000fd5c4cc",
|
|
1837
|
+
* price: $20,000,
|
|
1838
|
+
* last_offer_sent: 20,
|
|
1839
|
+
* new_saves: 5,
|
|
1840
|
+
* page: 1
|
|
1841
|
+
* }
|
|
1842
|
+
* ```
|
|
1843
|
+
*/
|
|
1844
|
+
export interface ClickedStartPartnerOffer {
|
|
1845
|
+
action: ActionType.clickedStartPartnerOffer;
|
|
1846
|
+
context_page_module: string;
|
|
1847
|
+
context_page_owner_type: PageOwnerType;
|
|
1848
|
+
context_page_owner_id: string;
|
|
1849
|
+
context_page_owner_slug?: string;
|
|
1850
|
+
partner_id: string;
|
|
1851
|
+
artwork_id: string;
|
|
1852
|
+
price: number;
|
|
1853
|
+
last_offer_sent: number;
|
|
1854
|
+
new_saves: number;
|
|
1855
|
+
page: number;
|
|
1856
|
+
}
|
|
1857
|
+
/**
|
|
1858
|
+
* A user clicks on Add Missing Artworks Details on the Send Offers page in CMS
|
|
1859
|
+
*
|
|
1860
|
+
* This schema describes events sent to Segment from [[ClickedAddMissingArtworksDetails]]
|
|
1861
|
+
*
|
|
1862
|
+
* @example
|
|
1863
|
+
* ```
|
|
1864
|
+
* {
|
|
1865
|
+
* action: "clickedAddMissingArtworksDetails",
|
|
1866
|
+
* context_module: "Send offers",
|
|
1867
|
+
* context_page_owner_type: "sendOffers",
|
|
1868
|
+
* context_page_owner_id: "",
|
|
1869
|
+
* context_page_owner_slug: "",
|
|
1870
|
+
* partner_id: "61bcda16515b038ce5000104",
|
|
1871
|
+
* arwork_id: "60de173a47476c000fd5c4cc",
|
|
1872
|
+
* price: $20,000,
|
|
1873
|
+
* last_offer_sent: 20,
|
|
1874
|
+
* new_saves: 5,
|
|
1875
|
+
* page: 1
|
|
1876
|
+
* }
|
|
1877
|
+
* ```
|
|
1878
|
+
*/
|
|
1879
|
+
export interface ClickedAddMissingArtworksDetails {
|
|
1880
|
+
action: ActionType.clickedAddMissingArtworksDetails;
|
|
1881
|
+
context_page_module: string;
|
|
1882
|
+
context_page_owner_type: PageOwnerType;
|
|
1883
|
+
context_page_owner_id: string;
|
|
1884
|
+
context_page_owner_slug?: string;
|
|
1885
|
+
partner_id: string;
|
|
1886
|
+
artwork_id: string;
|
|
1887
|
+
price: number;
|
|
1888
|
+
last_offer_sent: number;
|
|
1889
|
+
new_saves: number;
|
|
1890
|
+
page: number;
|
|
1891
|
+
}
|
|
1892
|
+
/**
|
|
1893
|
+
* A user clicks on pagination on the Send Offers page in CMS
|
|
1894
|
+
*
|
|
1895
|
+
* This schema describes events sent to Segment from [[ClickedOnPagination]]
|
|
1896
|
+
*
|
|
1897
|
+
* @example
|
|
1898
|
+
* ```
|
|
1899
|
+
* {
|
|
1900
|
+
* action: "clickedOnPagination",
|
|
1901
|
+
* context_module: "Send offers",
|
|
1902
|
+
* context_page_owner_type: "sendOffers",
|
|
1903
|
+
* context_page_owner_id: "",
|
|
1904
|
+
* context_page_owner_slug: "",
|
|
1905
|
+
* partner_id: "61bcda16515b038ce5000104",
|
|
1906
|
+
* label: "1",
|
|
1907
|
+
* current_page: 1
|
|
1908
|
+
* }
|
|
1909
|
+
* ```
|
|
1910
|
+
*/
|
|
1911
|
+
export interface ClickedOnPagination {
|
|
1912
|
+
action: ActionType.clickedOnPagination;
|
|
1913
|
+
context_page_module: string;
|
|
1914
|
+
context_page_owner_type: PageOwnerType;
|
|
1915
|
+
context_page_owner_id: string;
|
|
1916
|
+
context_page_owner_slug?: string;
|
|
1917
|
+
partner_id: string;
|
|
1918
|
+
label: string;
|
|
1919
|
+
current_page: number;
|
|
1920
|
+
}
|
|
1921
|
+
/**
|
|
1922
|
+
* A user clicks on the CTA to send offers to collectors in the modal for partner offers.
|
|
1923
|
+
*
|
|
1924
|
+
* This schema describes events sent to Segment from [[ClickedSendPartnerOffer]]
|
|
1925
|
+
*
|
|
1926
|
+
* @example
|
|
1927
|
+
* ```
|
|
1928
|
+
* {
|
|
1929
|
+
* action: "clickedSendPartnerOffer",
|
|
1930
|
+
* context_module: "Send offers",
|
|
1931
|
+
* context_page_owner_type: "sendOffers",
|
|
1932
|
+
* context_page_owner_id: "",
|
|
1933
|
+
* context_page_owner_slug: "",
|
|
1934
|
+
* partner_id: "61bcda16515b038ce5000104",
|
|
1935
|
+
* arwork_id: "60de173a47476c000fd5c4cc",
|
|
1936
|
+
* price: $20,000,
|
|
1937
|
+
* collectors: 4
|
|
1938
|
+
* }
|
|
1939
|
+
* ```
|
|
1940
|
+
*/
|
|
1941
|
+
export interface ClickedSendPartnerOffer {
|
|
1942
|
+
action: ActionType.clickedSendPartnerOffer;
|
|
1943
|
+
context_page_module: string;
|
|
1944
|
+
context_page_owner_type: PageOwnerType;
|
|
1945
|
+
context_page_owner_id: string;
|
|
1946
|
+
context_page_owner_slug?: string;
|
|
1947
|
+
partner_id: string;
|
|
1948
|
+
artwork_id: string;
|
|
1949
|
+
price: number;
|
|
1950
|
+
collectors: number;
|
|
1951
|
+
}
|
|
1952
|
+
/**
|
|
1953
|
+
* A user clicks on the link to update artworks details in the modal for partner offers.
|
|
1954
|
+
*
|
|
1955
|
+
* This schema describes events sent to Segment from [[ClickedUpdateArtwork]]
|
|
1956
|
+
*
|
|
1957
|
+
* @example
|
|
1958
|
+
* ```
|
|
1959
|
+
* {
|
|
1960
|
+
* action: "clickedUpdateArtwork",
|
|
1961
|
+
* context_module: "Send offers",
|
|
1962
|
+
* context_page_owner_type: "sendOffers",
|
|
1963
|
+
* context_page_owner_id: "",
|
|
1964
|
+
* context_page_owner_slug: "",
|
|
1965
|
+
* partner_id: "61bcda16515b038ce5000104"
|
|
1966
|
+
* artwork_id: "60de173a47476c000fd5c4cc"
|
|
1967
|
+
* }
|
|
1968
|
+
* ```
|
|
1969
|
+
*/
|
|
1970
|
+
export interface ClickedUpdateArtwork {
|
|
1971
|
+
action: ActionType.clickedUpdateArtwork;
|
|
1972
|
+
context_page_module: string;
|
|
1973
|
+
context_page_owner_type: PageOwnerType;
|
|
1974
|
+
context_page_owner_id: string;
|
|
1975
|
+
context_page_owner_slug?: string;
|
|
1976
|
+
partner_id: string;
|
|
1977
|
+
artwork_id: string;
|
|
1978
|
+
}
|
|
@@ -134,3 +134,91 @@ export interface ValidationAddressViewed {
|
|
|
134
134
|
subject: string;
|
|
135
135
|
option: string;
|
|
136
136
|
}
|
|
137
|
+
/**
|
|
138
|
+
* User sees banner "Make an offer, connect now" in CMS.
|
|
139
|
+
*
|
|
140
|
+
* This schema describes events sent to Segment from [[SendOffersBannerViewed]].
|
|
141
|
+
*
|
|
142
|
+
* @example
|
|
143
|
+
* ```
|
|
144
|
+
* {
|
|
145
|
+
* action: "sendOffersBannerViewed",
|
|
146
|
+
* context_module: "Home",
|
|
147
|
+
* context_page_owner_type: "home"
|
|
148
|
+
* partner_id: "61bcda16515b038ce5000104"
|
|
149
|
+
* }
|
|
150
|
+
* ```
|
|
151
|
+
*
|
|
152
|
+
*/
|
|
153
|
+
export interface SendOffersBannerViewed {
|
|
154
|
+
action: ActionType.sendOffersBannerViewed;
|
|
155
|
+
context_module: string;
|
|
156
|
+
context_page_owner_type: PageOwnerType;
|
|
157
|
+
partner_id: string;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* User sees modal send offers after clicking on Send Offer in CMS.
|
|
161
|
+
*
|
|
162
|
+
* This schema describes events sent to Segment from [[SendOffersModalViewed]].
|
|
163
|
+
*
|
|
164
|
+
* @example
|
|
165
|
+
* ```
|
|
166
|
+
* {
|
|
167
|
+
* action: "sendOffersModalViewed"
|
|
168
|
+
* context_module:"Send offers"
|
|
169
|
+
* context_page_owner_type: "sendOffers"
|
|
170
|
+
* context_page_owner_id: "",
|
|
171
|
+
* context_page_owner_slug: "",
|
|
172
|
+
* partner_id: "61bcda16515b038ce5000104"
|
|
173
|
+
* arwork_id: "60de173a47476c000fd5c4cc"
|
|
174
|
+
* price: $20,000
|
|
175
|
+
* collectors: 4
|
|
176
|
+
* }
|
|
177
|
+
* ```
|
|
178
|
+
*
|
|
179
|
+
*/
|
|
180
|
+
export interface SendOffersModalViewed {
|
|
181
|
+
action: ActionType.sendOffersModalViewed;
|
|
182
|
+
context_module: string;
|
|
183
|
+
context_page_owner_type: PageOwnerType;
|
|
184
|
+
context_page_owner_id: string;
|
|
185
|
+
context_page_owner_slug: string;
|
|
186
|
+
partner_id: string;
|
|
187
|
+
artwork_id: string;
|
|
188
|
+
price: number;
|
|
189
|
+
collectors: number;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* User sees an error message on the send offers modal if inputs a not acceptable price in CMS
|
|
193
|
+
*
|
|
194
|
+
* This schema describes events sent to Segment from [[SendOffersErrorMessage]].
|
|
195
|
+
*
|
|
196
|
+
* @example
|
|
197
|
+
* ```
|
|
198
|
+
* {
|
|
199
|
+
* action: "sendOffersErrorMessage"
|
|
200
|
+
* context_module:"Send offers"
|
|
201
|
+
* context_page_owner_type: "sendOffers"
|
|
202
|
+
* context_page_owner_id: "",
|
|
203
|
+
* context_page_owner_slug: "",
|
|
204
|
+
* partner_id: "61bcda16515b038ce5000104"
|
|
205
|
+
* arwork_id: "60de173a47476c000fd5c4cc"
|
|
206
|
+
* price: $20,000
|
|
207
|
+
* collectors: 4
|
|
208
|
+
* message: "Offer amount within displayed price range"
|
|
209
|
+
* }
|
|
210
|
+
* ```
|
|
211
|
+
*
|
|
212
|
+
*/
|
|
213
|
+
export interface SendOffersErrorMessage {
|
|
214
|
+
action: ActionType.sendOffersErrorMessage;
|
|
215
|
+
context_module: string;
|
|
216
|
+
context_page_owner_type: PageOwnerType;
|
|
217
|
+
context_page_owner_id: string;
|
|
218
|
+
context_page_owner_slug: string;
|
|
219
|
+
partner_id: string;
|
|
220
|
+
artwork_id: string;
|
|
221
|
+
price: number;
|
|
222
|
+
collectors: number;
|
|
223
|
+
message: string;
|
|
224
|
+
}
|
|
@@ -3,7 +3,7 @@ import { AddToCalendar } from "./AddToCalendar";
|
|
|
3
3
|
import { AddedArtworkToArtworkList, CreatedArtworkList, DeletedArtworkList, EditedArtworkList, ViewedArtworkList } from "./ArtworkLists";
|
|
4
4
|
import { AuctionPageView, BidPageView, ClickedActiveBid, ClickedRegisterToBid, ConfirmBid, ConfirmRegistrationPageview, EnterLiveAuction, MaxBidSelected, RegistrationPageView, RegistrationSubmitted } from "./Auction";
|
|
5
5
|
import { AuthImpression, CompletedOnboarding, CreatedAccount, OnboardingUserInputData, ResetYourPassword, StartedOnboarding, SuccessfullyLoggedIn } from "./Authentication";
|
|
6
|
-
import { CheckedAccountBalance, ClickedAddFilters, ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAlertsFilters, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedAuctionResultItem, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCloseValidationAddressModal, ClickedCollectionGroup, ClickedConversationsFilter, ClickedCreateAlert, ClickedDeliveryMethod, ClickedDismissInquiry, ClickedEditArtwork, ClickedExpandFilterPanel, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedMarkSold, ClickedMarkSpam, ClickedNavBar, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnBuyNowCheckbox, ClickedOnDuplicateArtwork, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnMakeOfferCheckbox, ClickedOnPriceDisplayDropdown, ClickedOnSubmitOrder, ClickedOrderPage, ClickedOrderSummary, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedPublish, ClickedSelectShippingOption, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedUploadArtwork, ClickedValidationAddressOptions, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
|
|
6
|
+
import { CheckedAccountBalance, ClickedAddFilters, ClickedAddMissingArtworksDetails, ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAlertsFilters, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedAuctionResultItem, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCloseValidationAddressModal, ClickedCollectionGroup, ClickedConversationsFilter, ClickedCreateAlert, ClickedDeliveryMethod, ClickedDismissInquiry, ClickedEditArtwork, ClickedExpandFilterPanel, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedMarketingModal, ClickedMarkSold, ClickedMarkSpam, ClickedNavBar, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnBuyNowCheckbox, ClickedOnDuplicateArtwork, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnMakeOfferCheckbox, ClickedOnPagination, ClickedOnPriceDisplayDropdown, ClickedOnSubmitOrder, ClickedOrderPage, ClickedOrderSummary, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedPublish, ClickedSelectShippingOption, ClickedSendPartnerOffer, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedStartPartnerOffer, ClickedUploadArtwork, ClickedUpdateArtwork, ClickedValidationAddressOptions, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
|
|
7
7
|
import { EditedUserProfile } from "./CollectorProfile";
|
|
8
8
|
import { ArtworkDetailsCompleted, ConsignmentSubmitted, ContactInformationCompleted, SentConsignmentInquiry, SubmitAnotherArtwork, UploadPhotosCompleted, ViewArtworkMyCollection } from "./Consignments";
|
|
9
9
|
import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInboxConversation, TappedMakeOffer, TappedViewOffer } from "./Conversations";
|
|
@@ -14,11 +14,10 @@ import { AddedToAlbum, CompletedOfflineSync, CreatedAlbum, SentContent, ToggledP
|
|
|
14
14
|
import { TappedProductCapabilitiesGroup } from "./HomeFeedArtsyOnboarding";
|
|
15
15
|
import { MyCollectionOnboardingCompleted, TappedExploreMyCollection, VisitMyCollection, VisitMyCollectionOnboardingSlide } from "./HomeFeedMyCollectionOnboarding";
|
|
16
16
|
import { Impression } from "./Impression";
|
|
17
|
-
import { ErrorMessageViewed, ItemViewed, RailViewed, TooltipViewed, ValidationAddressViewed } from "./ImpressionTracking";
|
|
17
|
+
import { ErrorMessageViewed, ItemViewed, RailViewed, SendOffersBannerViewed, SendOffersErrorMessage, SendOffersModalViewed, TooltipViewed, ValidationAddressViewed } from "./ImpressionTracking";
|
|
18
18
|
import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SaveCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
|
|
19
19
|
import { TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight, TappedMyCollectionInsightsMedianAuctionPriceChartCategory, TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe, TappedMyCollectionInsightsMedianAuctionRailItem } from "./MyCollectionInsights";
|
|
20
20
|
import { PromptForReview } from "./PromptForReview";
|
|
21
|
-
import { SearchedReverseImageWithNoResults, SearchedReverseImageWithResults, SelectedArtworkFromReverseImageSearch, TappedPickImageFromLibrary, TappedReverseImageSearch, TappedToggleCameraFlash } from "./ReverseImageSearch";
|
|
22
21
|
import { DeletedSavedSearch, EditedAlert, EditedSavedSearch } from "./SavedSearch";
|
|
23
22
|
import { FollowEvents } from "./SavesAndFollows";
|
|
24
23
|
import { AddressAutoCompletionResult, ConsignmentArtistFailed, EditedAutocompletedAddress, FocusedOnPriceDatabaseSearchInput, FocusedOnSearchInput, SearchedPriceDatabase, SearchedWithNoResults, SearchedWithResults, SelectedItemFromAddressAutoCompletion, SelectedItemFromPriceDatabaseSearch, SelectedItemFromSearch, SelectedSearchSuggestionQuickNavigationItem } from "./Search";
|
|
@@ -34,7 +33,7 @@ import { ViewedVideo } from "./Video";
|
|
|
34
33
|
*
|
|
35
34
|
* Each event describes one ActionType
|
|
36
35
|
*/
|
|
37
|
-
export type Event = AddedArtworkToArtworkList | AddedToAlbum | AddToCalendar | AddCollectedArtwork | AddressAutoCompletionResult | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | CreatedArtworkList | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedNavBar | ClickedNotificationsBell | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnBuyNowCheckbox | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnMakeOfferCheckbox | ClickedOnDuplicateArtwork | ClickedOnPriceDisplayDropdown | ClickedPublish | ClickedOnSubmitOrder | ClickedSnooze | ClickedUploadArtwork | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | ClickedOrderSummary | ClickedDismissInquiry | ClickedMarkSpam | ClickedMarkSold | ClickedConversationsFilter | ClickedValidationAddressOptions | ClickedCloseValidationAddressModal | CommercialFilterParamsChanged | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAlbum | DeleteCollectedArtwork | EditedAlert | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | ItemViewed | UploadSizeLimitExceeded | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | ValidationAddressViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase |
|
|
36
|
+
export type Event = AddedArtworkToArtworkList | AddedToAlbum | AddToCalendar | AddCollectedArtwork | AddressAutoCompletionResult | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | CreatedArtworkList | ClickedActiveBid | ClickedActivityPanelNotificationItem | ClickedActivityPanelTab | ClickedAddFilters | ClickedAddMissingArtworksDetails | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAlertsFilters | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedAuctionResultItem | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpandFilterPanel | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedMarketingModal | ClickedNavigationTab | ClickedNavBar | ClickedNotificationsBell | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnBuyNowCheckbox | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnMakeOfferCheckbox | ClickedOnDuplicateArtwork | ClickedOnPagination | ClickedOnPriceDisplayDropdown | ClickedPublish | ClickedOnSubmitOrder | ClickedSnooze | ClickedUploadArtwork | ClickedPartnerCard | ClickedPartnerLink | ClickedPaymentMethod | ClickedPaymentDetails | CheckedAccountBalance | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedSendPartnerOffer | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedStartPartnerOffer | ClickedVerifyIdentity | ClickedViewingRoomCard | ClickedOfferActions | ClickedOrderPage | ClickedOrderSummary | ClickedDismissInquiry | ClickedMarkSpam | ClickedMarkSold | ClickedConversationsFilter | ClickedUpdateArtwork | ClickedValidationAddressOptions | ClickedCloseValidationAddressModal | CommercialFilterParamsChanged | CompletedOfflineSync | CompletedOnboarding | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | ContactInformationCompleted | CreatedAlbum | DeleteCollectedArtwork | EditedAlert | DeletedArtworkList | DeletedSavedSearch | EditCollectedArtwork | EditedArtworkList | EditedAutocompletedAddress | EditedSavedSearch | EditedUserProfile | EnterLiveAuction | ErrorMessageViewed | ExperimentViewed | ItemViewed | UploadSizeLimitExceeded | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | MyCollectionOnboardingCompleted | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RailViewed | ValidationAddressViewed | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | SaveCollectedArtwork | SavedCookieConsentPreferences | Screen | SearchedPriceDatabase | SearchedWithNoResults | SearchedWithResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SelectedItemFromAddressAutoCompletion | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | SendOffersBannerViewed | SendOffersErrorMessage | SendOffersModalViewed | SentContent | SentConsignmentInquiry | SentConversationMessage | SentRequestPriceEstimate | Share | StartedOnboarding | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedActivityGroup | TappedArticleGroup | TappedArticleShare | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBrowseSimilarArtworks | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedConsignmentInquiry | TappedCreateAlert | TappedExploreGroup | TappedExploreMyCollection | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedMyCollectionInsightsMedianAuctionRailItem | TappedMyCollectionInsightsMedianAuctionPriceChartCareerHighlight | TappedMyCollectionInsightsMedianAuctionPriceChartCategory | TappedMyCollectionInsightsMedianAuctionPriceChartTimeframe | TappedPartnerCard | TappedProductCapabilitiesGroup | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledPresentationModeSetting | ToggledSavedSearch | TooltipViewed | UploadPhotosCompleted | ViewArtworkMyCollection | ViewedArtworkList | ViewedVideo | VisitMyCollection | VisitMyCollectionOnboardingSlide;
|
|
38
37
|
/**
|
|
39
38
|
* The top-level actions an Event describes.
|
|
40
39
|
*
|
|
@@ -109,6 +108,10 @@ export declare enum ActionType {
|
|
|
109
108
|
* Corresponds to {@link ClickedAddFilters}
|
|
110
109
|
*/
|
|
111
110
|
clickedAddFilters = "clickedAddFilters",
|
|
111
|
+
/**
|
|
112
|
+
* Corresponds to {@link ClickedAddMissingArtworksDetails}
|
|
113
|
+
*/
|
|
114
|
+
clickedAddMissingArtworksDetails = "clickedAddMissingArtworksDetails",
|
|
112
115
|
/**
|
|
113
116
|
* Corresponds to {@link ClickedAddNewShippingAddress}
|
|
114
117
|
*/
|
|
@@ -269,6 +272,10 @@ export declare enum ActionType {
|
|
|
269
272
|
* Corresponds to {@link ClickedOnDuplicateArtwork}
|
|
270
273
|
*/
|
|
271
274
|
clickedOnDuplicateArtwork = "clickedOnDuplicateArtwork",
|
|
275
|
+
/**
|
|
276
|
+
* Corresponds to {@link ClickedOnPagination}
|
|
277
|
+
*/
|
|
278
|
+
clickedOnPagination = "clickedOnPagination",
|
|
272
279
|
/**
|
|
273
280
|
* Corresponds to {@link ClickedOnPriceDisplayDropdown}
|
|
274
281
|
*/
|
|
@@ -337,6 +344,14 @@ export declare enum ActionType {
|
|
|
337
344
|
* Corresponds to {@link ClickedSelectShippingOption}
|
|
338
345
|
*/
|
|
339
346
|
clickedSelectShippingOption = "clickedSelectShippingOption",
|
|
347
|
+
/**
|
|
348
|
+
* Corresponds to {@link ClickedStartPartnerOffer}
|
|
349
|
+
*/
|
|
350
|
+
clickedStartPartnerOffer = "clickedStartPartnerOffer",
|
|
351
|
+
/**
|
|
352
|
+
* Corresponds to {@link ClickedSendPartnerOffer}
|
|
353
|
+
*/
|
|
354
|
+
clickedSendPartnerOffer = "clickedSendPartnerOffer",
|
|
340
355
|
/**
|
|
341
356
|
* Corresponds to {@link ClickedShippingAddress}
|
|
342
357
|
*/
|
|
@@ -346,8 +361,12 @@ export declare enum ActionType {
|
|
|
346
361
|
*/
|
|
347
362
|
clickedShowGroup = "clickedShowGroup",
|
|
348
363
|
/**
|
|
349
|
-
* Corresponds to {@link
|
|
364
|
+
* Corresponds to {@link ClickedMarketingModal}
|
|
350
365
|
*/
|
|
366
|
+
clickedMarketingModal = "clickedMarketingModal",
|
|
367
|
+
/**
|
|
368
|
+
* Corresponds to {@link ClickedShowMore}
|
|
369
|
+
*/
|
|
351
370
|
clickedShowMore = "clickedShowMore",
|
|
352
371
|
/**
|
|
353
372
|
* Corresponds to {@link ClickedSnooze}
|
|
@@ -365,6 +384,10 @@ export declare enum ActionType {
|
|
|
365
384
|
* Corresponds to {@link ClickedTooltip}
|
|
366
385
|
*/
|
|
367
386
|
clickedTooltip = "clickedTooltip",
|
|
387
|
+
/**
|
|
388
|
+
* Corresponds to {@link ClickedUpdateArtwork}
|
|
389
|
+
*/
|
|
390
|
+
clickedUpdateArtwork = "clickedUpdateArtwork",
|
|
368
391
|
/**
|
|
369
392
|
* Corresponds to {@link ClickedVerifyIdentity}
|
|
370
393
|
*/
|
|
@@ -601,14 +624,6 @@ export declare enum ActionType {
|
|
|
601
624
|
* Corresponds to {@link SearchedPriceDatabase}
|
|
602
625
|
*/
|
|
603
626
|
searchedPriceDatabase = "searchedPriceDatabase",
|
|
604
|
-
/**
|
|
605
|
-
* Corresponds to {@link SearchedReverseImageWithNoResults}
|
|
606
|
-
*/
|
|
607
|
-
searchedReverseImageWithNoResults = "searchedReverseImageWithNoResults",
|
|
608
|
-
/**
|
|
609
|
-
* Corresponds to {@link SearchedReverseImageWithResults}
|
|
610
|
-
*/
|
|
611
|
-
searchedReverseImageWithResults = "searchedReverseImageWithResults",
|
|
612
627
|
/**
|
|
613
628
|
* Corresponds to {@link SearchedWithNoResults}
|
|
614
629
|
*/
|
|
@@ -625,10 +640,6 @@ export declare enum ActionType {
|
|
|
625
640
|
* Corresponds to {@link selectArtworkFromGrid}
|
|
626
641
|
*/
|
|
627
642
|
selectArtworkFromGrid = "selectArtworkFromGrid",
|
|
628
|
-
/**
|
|
629
|
-
* Corresponds to {@link SelectedArtworkFromReverseImageSearch}
|
|
630
|
-
*/
|
|
631
|
-
selectedArtworkFromReverseImageSearch = "selectedArtworkFromReverseImageSearch",
|
|
632
643
|
/**
|
|
633
644
|
* Corresponds to {@link SelectedItemFromPriceDatabaseSearch}
|
|
634
645
|
*/
|
|
@@ -653,6 +664,18 @@ export declare enum ActionType {
|
|
|
653
664
|
* Corresponds to {@link SelectedRecentPriceRange}
|
|
654
665
|
*/
|
|
655
666
|
selectedRecentPriceRange = "selectedRecentPriceRange",
|
|
667
|
+
/**
|
|
668
|
+
* Corresponds to {@link SendOffersBannerViewed}
|
|
669
|
+
*/
|
|
670
|
+
sendOffersBannerViewed = "sendOffersBannerViewed",
|
|
671
|
+
/**
|
|
672
|
+
* Corresponds to {@link SendOffersErrorMessage}
|
|
673
|
+
*/
|
|
674
|
+
sendOffersErrorMessage = "sendOffersErrorMessage",
|
|
675
|
+
/**
|
|
676
|
+
* Corresponds to {@link SendOffersModalViewed}
|
|
677
|
+
*/
|
|
678
|
+
sendOffersModalViewed = "sendOffersModalViewed",
|
|
656
679
|
/**
|
|
657
680
|
* Corresponds to {@link sentArtworkInquiry}
|
|
658
681
|
*/
|
|
@@ -829,10 +852,6 @@ export declare enum ActionType {
|
|
|
829
852
|
* Corresponds to {@link TappedPartnerCard}
|
|
830
853
|
*/
|
|
831
854
|
tappedPartnerCard = "tappedPartnerCard",
|
|
832
|
-
/**
|
|
833
|
-
* Corresponds to {@link TappedPickImageFromLibrary}
|
|
834
|
-
*/
|
|
835
|
-
tappedPickImageFromLibrary = "tappedPickImageFromLibrary",
|
|
836
855
|
/**
|
|
837
856
|
* Corresponds to {@link TappedProductCapabilitiesGroup}
|
|
838
857
|
*/
|
|
@@ -849,10 +868,6 @@ export declare enum ActionType {
|
|
|
849
868
|
* Corresponds to {@link TappedRequestPriceEstimate}
|
|
850
869
|
*/
|
|
851
870
|
tappedRequestPriceEstimate = "tappedRequestPriceEstimate",
|
|
852
|
-
/**
|
|
853
|
-
* Corresponds to {@link TappedReverseImageSearch}
|
|
854
|
-
*/
|
|
855
|
-
tappedReverseImageSearch = "tappedReverseImageSearch",
|
|
856
871
|
/**
|
|
857
872
|
* Corresponds to {@link TappedSell}
|
|
858
873
|
*/
|
|
@@ -877,10 +892,6 @@ export declare enum ActionType {
|
|
|
877
892
|
* Corresponds to {@link TappedTabBar}
|
|
878
893
|
*/
|
|
879
894
|
tappedTabBar = "tappedTabBar",
|
|
880
|
-
/**
|
|
881
|
-
* Corresponds to {@link TappedToggleCameraFlash}
|
|
882
|
-
*/
|
|
883
|
-
tappedToggleCameraFlash = "tappedToggleCameraFlash",
|
|
884
895
|
/**
|
|
885
896
|
* Corresponds to {@link TappedUploadAnotherArtwork}
|
|
886
897
|
*/
|
|
@@ -37,6 +37,7 @@ exports.ActionType = ActionType;
|
|
|
37
37
|
ActionType["clickedActivityPanelNotificationItem"] = "clickedActivityPanelNotificationItem";
|
|
38
38
|
ActionType["clickedActivityPanelTab"] = "clickedActivityPanelTab";
|
|
39
39
|
ActionType["clickedAddFilters"] = "clickedAddFilters";
|
|
40
|
+
ActionType["clickedAddMissingArtworksDetails"] = "clickedAddMissingArtworksDetails";
|
|
40
41
|
ActionType["clickedAddNewShippingAddress"] = "clickedAddNewShippingAddress";
|
|
41
42
|
ActionType["clickedAddWorksToFair"] = "clickedAddWorksToFair";
|
|
42
43
|
ActionType["clickedAlertsFilters"] = "clickedAlertsFilters";
|
|
@@ -77,6 +78,7 @@ exports.ActionType = ActionType;
|
|
|
77
78
|
ActionType["clickedOnFramedMeasurementsDropdown"] = "clickedOnFramedMeasurementsDropdown";
|
|
78
79
|
ActionType["clickedOnMakeOfferCheckbox"] = "clickedOnMakeOfferCheckbox";
|
|
79
80
|
ActionType["clickedOnDuplicateArtwork"] = "clickedOnDuplicateArtwork";
|
|
81
|
+
ActionType["clickedOnPagination"] = "clickedOnPagination";
|
|
80
82
|
ActionType["clickedOnPriceDisplayDropdown"] = "clickedOnPriceDisplayDropdown";
|
|
81
83
|
ActionType["clickedPublish"] = "clickedPublish";
|
|
82
84
|
ActionType["clickedOnSubmitOrder"] = "clickedOnSubmitOrder";
|
|
@@ -94,13 +96,17 @@ exports.ActionType = ActionType;
|
|
|
94
96
|
ActionType["clickedPromoSpace"] = "clickedPromoSpace";
|
|
95
97
|
ActionType["clickedRegisterToBid"] = "clickedRegisterToBid";
|
|
96
98
|
ActionType["clickedSelectShippingOption"] = "clickedSelectShippingOption";
|
|
99
|
+
ActionType["clickedStartPartnerOffer"] = "clickedStartPartnerOffer";
|
|
100
|
+
ActionType["clickedSendPartnerOffer"] = "clickedSendPartnerOffer";
|
|
97
101
|
ActionType["clickedShippingAddress"] = "clickedShippingAddress";
|
|
98
102
|
ActionType["clickedShowGroup"] = "clickedShowGroup";
|
|
103
|
+
ActionType["clickedMarketingModal"] = "clickedMarketingModal";
|
|
99
104
|
ActionType["clickedShowMore"] = "clickedShowMore";
|
|
100
105
|
ActionType["clickedSnooze"] = "clickedSnooze";
|
|
101
106
|
ActionType["clickedUploadArtwork"] = "clickedUploadArtwork";
|
|
102
107
|
ActionType["clickedSponsorLink"] = "clickedSponsorLink";
|
|
103
108
|
ActionType["clickedTooltip"] = "clickedTooltip";
|
|
109
|
+
ActionType["clickedUpdateArtwork"] = "clickedUpdateArtwork";
|
|
104
110
|
ActionType["clickedVerifyIdentity"] = "clickedVerifyIdentity";
|
|
105
111
|
ActionType["clickedViewingRoomCard"] = "clickedViewingRoomCard";
|
|
106
112
|
ActionType["clickedValidationAddressOptions"] = "clickedValidationAddressOptions";
|
|
@@ -160,19 +166,19 @@ exports.ActionType = ActionType;
|
|
|
160
166
|
ActionType["selectedSearchSuggestionQuickNavigationItem"] = "selectedSearchSuggestionQuickNavigationItem";
|
|
161
167
|
ActionType["sentContent"] = "sentContent";
|
|
162
168
|
ActionType["searchedPriceDatabase"] = "searchedPriceDatabase";
|
|
163
|
-
ActionType["searchedReverseImageWithNoResults"] = "searchedReverseImageWithNoResults";
|
|
164
|
-
ActionType["searchedReverseImageWithResults"] = "searchedReverseImageWithResults";
|
|
165
169
|
ActionType["searchedWithNoResults"] = "searchedWithNoResults";
|
|
166
170
|
ActionType["searchedWithResults"] = "searchedWithResults";
|
|
167
171
|
ActionType["selectArtistFromSearch"] = "selectArtistFromSearch";
|
|
168
172
|
ActionType["selectArtworkFromGrid"] = "selectArtworkFromGrid";
|
|
169
|
-
ActionType["selectedArtworkFromReverseImageSearch"] = "selectedArtworkFromReverseImageSearch";
|
|
170
173
|
ActionType["clickedConversationsFilter"] = "clickedConversationsFilter";
|
|
171
174
|
ActionType["selectedItemFromPriceDatabaseSearch"] = "selectedItemFromPriceDatabaseSearch";
|
|
172
175
|
ActionType["selectedItemFromSearch"] = "selectedItemFromSearch";
|
|
173
176
|
ActionType["selectedItemFromAddressAutoCompletion"] = "selectedItemFromAddressAutoCompletion";
|
|
174
177
|
ActionType["selectedSuggestedFilter"] = "selectedSuggestedFilter";
|
|
175
178
|
ActionType["selectedRecentPriceRange"] = "selectedRecentPriceRange";
|
|
179
|
+
ActionType["sendOffersBannerViewed"] = "sendOffersBannerViewed";
|
|
180
|
+
ActionType["sendOffersErrorMessage"] = "sendOffersErrorMessage";
|
|
181
|
+
ActionType["sendOffersModalViewed"] = "sendOffersModalViewed";
|
|
176
182
|
ActionType["sentArtworkInquiry"] = "sentArtworkInquiry";
|
|
177
183
|
ActionType["sentConsignmentInquiry"] = "sentConsignmentInquiry";
|
|
178
184
|
ActionType["sentConversationMessage"] = "sentConversationMessage";
|
|
@@ -217,19 +223,16 @@ exports.ActionType = ActionType;
|
|
|
217
223
|
ActionType["tappedMyCollectionInsightsMedianAuctionRailItem"] = "tappedMyCollectionInsightsMedianAuctionRailItem";
|
|
218
224
|
ActionType["tappedNavigationTab"] = "tappedNavigationTab";
|
|
219
225
|
ActionType["tappedPartnerCard"] = "tappedPartnerCard";
|
|
220
|
-
ActionType["tappedPickImageFromLibrary"] = "tappedPickImageFromLibrary";
|
|
221
226
|
ActionType["tappedProductCapabilitiesGroup"] = "tappedProductCapabilitiesGroup";
|
|
222
227
|
ActionType["tappedPromoSpace"] = "tappedPromoSpace";
|
|
223
228
|
ActionType["tappedRegisterToBid"] = "tappedRegisterToBid";
|
|
224
229
|
ActionType["tappedRequestPriceEstimate"] = "tappedRequestPriceEstimate";
|
|
225
|
-
ActionType["tappedReverseImageSearch"] = "tappedReverseImageSearch";
|
|
226
230
|
ActionType["tappedSell"] = "tappedSell";
|
|
227
231
|
ActionType["tappedSellArtwork"] = "tappedSellArtwork";
|
|
228
232
|
ActionType["tappedShowGroup"] = "tappedShowGroup";
|
|
229
233
|
ActionType["tappedShowMore"] = "tappedShowMore";
|
|
230
234
|
ActionType["tappedSkip"] = "tappedSkip";
|
|
231
235
|
ActionType["tappedTabBar"] = "tappedTabBar";
|
|
232
|
-
ActionType["tappedToggleCameraFlash"] = "tappedToggleCameraFlash";
|
|
233
236
|
ActionType["tappedUploadAnotherArtwork"] = "tappedUploadAnotherArtwork";
|
|
234
237
|
ActionType["tappedVerifyIdentity"] = "tappedVerifyIdentity";
|
|
235
238
|
ActionType["tappedViewingRoomCard"] = "tappedViewingRoomCard";
|
|
@@ -79,7 +79,6 @@ export declare enum OwnerType {
|
|
|
79
79
|
priceDatabase = "priceDatabase",
|
|
80
80
|
profile = "profile",
|
|
81
81
|
recentlyViewed = "recentlyViewed",
|
|
82
|
-
reverseImageSearch = "reverseImageSearch",
|
|
83
82
|
sale = "sale",
|
|
84
83
|
saleInformation = "saleInformation",
|
|
85
84
|
savedSearch = "savedSearch",
|
|
@@ -88,6 +87,7 @@ export declare enum OwnerType {
|
|
|
88
87
|
savesAndFollows = "savesAndFollows",
|
|
89
88
|
search = "search",
|
|
90
89
|
sell = "sell",
|
|
90
|
+
sendOffers = "sendOffers",
|
|
91
91
|
show = "show",
|
|
92
92
|
shows = "shows",
|
|
93
93
|
similarToRecentlyViewed = "similarToRecentlyViewed",
|
|
@@ -104,8 +104,8 @@ export declare enum OwnerType {
|
|
|
104
104
|
/**
|
|
105
105
|
* Owner types available in iOS/Android
|
|
106
106
|
*/
|
|
107
|
-
export type ScreenOwnerType = OwnerType.activities | OwnerType.allArtistSeries | OwnerType.alerts | OwnerType.alertDetails | OwnerType.alertConfirmation | OwnerType.alertFilters | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.createAlert | OwnerType.editAlert | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.lotsByArtistsYouFollow | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.
|
|
107
|
+
export type ScreenOwnerType = OwnerType.activities | OwnerType.allArtistSeries | OwnerType.alerts | OwnerType.alertDetails | OwnerType.alertConfirmation | OwnerType.alertFilters | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.artworkPriceFilter | OwnerType.artworkRecommendations | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentInquiry | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.createAlert | OwnerType.editAlert | OwnerType.editProfile | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.galleriesForYou | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.lotsByArtistsYouFollow | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.myCollectionInsightsMedianAuctionPrice | OwnerType.myCollectionOnboarding | OwnerType.newWorksForYou | OwnerType.newWorksFromGalleriesYouFollow | OwnerType.onboarding | OwnerType.partner | OwnerType.priceDatabase | OwnerType.profile | OwnerType.recentlyViewed | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.similarToRecentlyViewed | OwnerType.tag | OwnerType.upcomingAuctions | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
|
|
108
108
|
/**
|
|
109
109
|
* Owner types available in web/mobile web
|
|
110
110
|
*/
|
|
111
|
-
export type PageOwnerType = OwnerType.alertConfirmation | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctions | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.demand | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCounter | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.search | OwnerType.show | OwnerType.shows | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou | OwnerType.newWorksFromGalleriesYouFollow;
|
|
111
|
+
export type PageOwnerType = OwnerType.alertConfirmation | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artists | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctions | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.demand | OwnerType.editProfile | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCounter | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.ordersSubmitted | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.sale | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.saves | OwnerType.search | OwnerType.sendOffers | OwnerType.show | OwnerType.shows | OwnerType.tag | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou | OwnerType.newWorksFromGalleriesYouFollow;
|
|
@@ -97,7 +97,6 @@ exports.OwnerType = OwnerType;
|
|
|
97
97
|
OwnerType["priceDatabase"] = "priceDatabase";
|
|
98
98
|
OwnerType["profile"] = "profile";
|
|
99
99
|
OwnerType["recentlyViewed"] = "recentlyViewed";
|
|
100
|
-
OwnerType["reverseImageSearch"] = "reverseImageSearch";
|
|
101
100
|
OwnerType["sale"] = "sale";
|
|
102
101
|
OwnerType["saleInformation"] = "saleInformation";
|
|
103
102
|
OwnerType["savedSearch"] = "savedSearch";
|
|
@@ -106,6 +105,7 @@ exports.OwnerType = OwnerType;
|
|
|
106
105
|
OwnerType["savesAndFollows"] = "savesAndFollows";
|
|
107
106
|
OwnerType["search"] = "search";
|
|
108
107
|
OwnerType["sell"] = "sell";
|
|
108
|
+
OwnerType["sendOffers"] = "sendOffers";
|
|
109
109
|
OwnerType["show"] = "show";
|
|
110
110
|
OwnerType["shows"] = "shows";
|
|
111
111
|
OwnerType["similarToRecentlyViewed"] = "similarToRecentlyViewed";
|
package/dist/Schema/index.d.ts
CHANGED
|
@@ -14,7 +14,6 @@ export * from "./Events/ImpressionTracking";
|
|
|
14
14
|
export * from "./Events/Inquiries";
|
|
15
15
|
export * from "./Events/MyCollection";
|
|
16
16
|
export * from "./Events/MyCollectionInsights";
|
|
17
|
-
export * from "./Events/ReverseImageSearch";
|
|
18
17
|
export * from "./Events/SavedSearch";
|
|
19
18
|
export * from "./Events/SavesAndFollows";
|
|
20
19
|
export * from "./Events/Search";
|
package/dist/Schema/index.js
CHANGED
|
@@ -196,18 +196,6 @@ Object.keys(_MyCollectionInsights).forEach(function (key) {
|
|
|
196
196
|
});
|
|
197
197
|
});
|
|
198
198
|
|
|
199
|
-
var _ReverseImageSearch = require("./Events/ReverseImageSearch");
|
|
200
|
-
|
|
201
|
-
Object.keys(_ReverseImageSearch).forEach(function (key) {
|
|
202
|
-
if (key === "default" || key === "__esModule") return;
|
|
203
|
-
Object.defineProperty(exports, key, {
|
|
204
|
-
enumerable: true,
|
|
205
|
-
get: function get() {
|
|
206
|
-
return _ReverseImageSearch[key];
|
|
207
|
-
}
|
|
208
|
-
});
|
|
209
|
-
});
|
|
210
|
-
|
|
211
199
|
var _SavedSearch = require("./Events/SavedSearch");
|
|
212
200
|
|
|
213
201
|
Object.keys(_SavedSearch).forEach(function (key) {
|
package/package.json
CHANGED
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
import { ScreenOwnerType } from "../Values/OwnerType";
|
|
2
|
-
import { ActionType } from ".";
|
|
3
|
-
/**
|
|
4
|
-
* Schema describing 'Reverse Image Search' events
|
|
5
|
-
* @packageDocumentation
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* A user taps the reverse image search button on a fair or show screen
|
|
9
|
-
*
|
|
10
|
-
* This schema describes events sent to Segment from [[tappedReverseImageSearch]]
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```
|
|
14
|
-
* {
|
|
15
|
-
* action: "tappedReverseImageSearch",
|
|
16
|
-
* context_screen_owner_type: "reverseImageSearch",
|
|
17
|
-
* owner_type: "fair",
|
|
18
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
19
|
-
* owner_slug: "spring-slash-break-art-show-2022"
|
|
20
|
-
* }
|
|
21
|
-
* ```
|
|
22
|
-
*/
|
|
23
|
-
export interface TappedReverseImageSearch {
|
|
24
|
-
action: ActionType.tappedReverseImageSearch;
|
|
25
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
26
|
-
owner_type: ScreenOwnerType;
|
|
27
|
-
owner_id: string;
|
|
28
|
-
owner_slug: string;
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* A user taps the flash button on the reverse image search camera screen
|
|
32
|
-
*
|
|
33
|
-
* This schema describes events sent to Segment from [[tappedToggleCameraFlash]]
|
|
34
|
-
*
|
|
35
|
-
* @example
|
|
36
|
-
* ```
|
|
37
|
-
* {
|
|
38
|
-
* action: "tappedToggleCameraFlash",
|
|
39
|
-
* context_screen_owner_type: "reverseImageSearch"
|
|
40
|
-
* owner_type: "fair",
|
|
41
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
42
|
-
* owner_slug: "spring-slash-break-art-show-2022",
|
|
43
|
-
* }
|
|
44
|
-
* ```
|
|
45
|
-
*/
|
|
46
|
-
export interface TappedToggleCameraFlash {
|
|
47
|
-
action: ActionType.tappedToggleCameraFlash;
|
|
48
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
49
|
-
owner_type: ScreenOwnerType;
|
|
50
|
-
owner_id: string;
|
|
51
|
-
owner_slug: string;
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* A user taps the library button on the reverse image search camera screen
|
|
55
|
-
*
|
|
56
|
-
* This schema describes events sent to Segment from [[tappedPickImageFromLibrary]]
|
|
57
|
-
*
|
|
58
|
-
* @example
|
|
59
|
-
* ```
|
|
60
|
-
* {
|
|
61
|
-
* action: "tappedPickImageFromLibrary",
|
|
62
|
-
* context_screen_owner_type: "reverseImageSearch"
|
|
63
|
-
* owner_type: "fair",
|
|
64
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
65
|
-
* owner_slug: "spring-slash-break-art-show-2022",
|
|
66
|
-
* }
|
|
67
|
-
* ```
|
|
68
|
-
*/
|
|
69
|
-
export interface TappedPickImageFromLibrary {
|
|
70
|
-
action: ActionType.tappedPickImageFromLibrary;
|
|
71
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
72
|
-
owner_type: ScreenOwnerType;
|
|
73
|
-
owner_id: string;
|
|
74
|
-
owner_slug: string;
|
|
75
|
-
}
|
|
76
|
-
/**
|
|
77
|
-
* A user searches with a reverse image query with results
|
|
78
|
-
*
|
|
79
|
-
* This schema describes events sent to Segment from [[searchedReverseImageWithResults]]
|
|
80
|
-
*
|
|
81
|
-
* @example
|
|
82
|
-
* ```
|
|
83
|
-
* {
|
|
84
|
-
* action: "searchedReverseImageWithResults",
|
|
85
|
-
* context_screen_owner_type: "reverseImageSearch",
|
|
86
|
-
* owner_type: "fair",
|
|
87
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
88
|
-
* owner_slug: "spring-slash-break-art-show-2022",
|
|
89
|
-
* total_matches_count: 3
|
|
90
|
-
* artwork_ids: "5f7190cc9e4a6f000d02085c,60b755f8052e35000f05820d,611ab14f3bb0e9000fc1a057"
|
|
91
|
-
* }
|
|
92
|
-
* ```
|
|
93
|
-
*/
|
|
94
|
-
export interface SearchedReverseImageWithResults {
|
|
95
|
-
action: ActionType.searchedReverseImageWithResults;
|
|
96
|
-
context_screen_owner_type?: ScreenOwnerType;
|
|
97
|
-
owner_type: ScreenOwnerType;
|
|
98
|
-
owner_id: string;
|
|
99
|
-
owner_slug: string;
|
|
100
|
-
total_matches_count: number;
|
|
101
|
-
artwork_ids: string;
|
|
102
|
-
}
|
|
103
|
-
/**
|
|
104
|
-
* A user searches with a reverse image query with no results
|
|
105
|
-
*
|
|
106
|
-
* This schema describes events sent to Segment from [[searchedReverseImageWithNoResults]]
|
|
107
|
-
*
|
|
108
|
-
* @example
|
|
109
|
-
* ```
|
|
110
|
-
* {
|
|
111
|
-
* action: "searchedReverseImageWithNoResults",
|
|
112
|
-
* context_screen_owner_type: "reverseImageSearch",
|
|
113
|
-
* owner_type: "fair",
|
|
114
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
115
|
-
* owner_slug: "spring-slash-break-art-show-2022"
|
|
116
|
-
* }
|
|
117
|
-
* ```
|
|
118
|
-
*/
|
|
119
|
-
export interface SearchedReverseImageWithNoResults {
|
|
120
|
-
action: ActionType.searchedReverseImageWithNoResults;
|
|
121
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
122
|
-
owner_type: ScreenOwnerType;
|
|
123
|
-
owner_id: string;
|
|
124
|
-
owner_slug: string;
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* A user selects an artwork from reverse image search results
|
|
128
|
-
*
|
|
129
|
-
* This schema describes events sent to Segment from [[selectedArtworkFromReverseImageSearch]]
|
|
130
|
-
*
|
|
131
|
-
* @example
|
|
132
|
-
* ```
|
|
133
|
-
* {
|
|
134
|
-
* action: "selectedArtworkFromReverseImageSearch",
|
|
135
|
-
* context_screen_owner_type: "reverseImageSearch",
|
|
136
|
-
* destination_owner_type: "artwork",
|
|
137
|
-
* destination_owner_id: "5f7190cc9e4a6f000d02085c",
|
|
138
|
-
* destination_owner_slug: "kaarina-kaikkonen-i-no-longer-hear-you-singing",
|
|
139
|
-
* owner_type: "fair",
|
|
140
|
-
* owner_id: "6303add6f2f46c000d17c449",
|
|
141
|
-
* owner_slug: "spring-slash-break-art-show-2022"
|
|
142
|
-
* total_matches_count: 3,
|
|
143
|
-
* position: 1
|
|
144
|
-
* }
|
|
145
|
-
* ```
|
|
146
|
-
*/
|
|
147
|
-
export interface SelectedArtworkFromReverseImageSearch {
|
|
148
|
-
action: ActionType.selectedArtworkFromReverseImageSearch;
|
|
149
|
-
context_screen_owner_type: ScreenOwnerType;
|
|
150
|
-
destination_owner_type: ScreenOwnerType;
|
|
151
|
-
destination_owner_id?: string;
|
|
152
|
-
destination_owner_slug: string;
|
|
153
|
-
owner_type: ScreenOwnerType;
|
|
154
|
-
owner_id: string;
|
|
155
|
-
owner_slug: string;
|
|
156
|
-
total_matches_count: number;
|
|
157
|
-
position: number;
|
|
158
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|