@artsy/cohesion 4.162.0 → 4.164.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 +29 -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 -4
- package/dist/Schema/Events/index.js +9 -0
- package/dist/Schema/Values/OwnerType.d.ts +4 -2
- package/dist/Schema/Values/OwnerType.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
# v4.164.0 (Wed Jan 24 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: Add page and screen owner types for activities and activity [#481](https://github.com/artsy/cohesion/pull/481) ([@olerichter00](https://github.com/olerichter00))
|
|
6
|
+
|
|
7
|
+
#### 🏠 Internal
|
|
8
|
+
|
|
9
|
+
- chore(deps): update auto orb from 2.1.0 to v2.2.0 [#480](https://github.com/artsy/cohesion/pull/480) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
14
|
+
- Ole ([@olerichter00](https://github.com/olerichter00))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
# v4.163.0 (Thu Jan 18 2024)
|
|
19
|
+
|
|
20
|
+
#### 🚀 Enhancement
|
|
21
|
+
|
|
22
|
+
- [AS-4346] Adding new events for partners offers [#479](https://github.com/artsy/cohesion/pull/479) ([@daytavares](https://github.com/daytavares))
|
|
23
|
+
|
|
24
|
+
#### Authors: 1
|
|
25
|
+
|
|
26
|
+
- Dayane Tavares ([@daytavares](https://github.com/daytavares))
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
1
30
|
# v4.162.0 (Thu Jan 04 2024)
|
|
2
31
|
|
|
3
32
|
#### 🚀 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,7 +14,7 @@ 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";
|
|
@@ -33,7 +33,7 @@ import { ViewedVideo } from "./Video";
|
|
|
33
33
|
*
|
|
34
34
|
* Each event describes one ActionType
|
|
35
35
|
*/
|
|
36
|
-
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 | SearchedWithNoResults | SearchedWithResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SelectedItemFromAddressAutoCompletion | SelectedRecentPriceRange | SelectedSearchSuggestionQuickNavigationItem | 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;
|
|
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;
|
|
37
37
|
/**
|
|
38
38
|
* The top-level actions an Event describes.
|
|
39
39
|
*
|
|
@@ -108,6 +108,10 @@ export declare enum ActionType {
|
|
|
108
108
|
* Corresponds to {@link ClickedAddFilters}
|
|
109
109
|
*/
|
|
110
110
|
clickedAddFilters = "clickedAddFilters",
|
|
111
|
+
/**
|
|
112
|
+
* Corresponds to {@link ClickedAddMissingArtworksDetails}
|
|
113
|
+
*/
|
|
114
|
+
clickedAddMissingArtworksDetails = "clickedAddMissingArtworksDetails",
|
|
111
115
|
/**
|
|
112
116
|
* Corresponds to {@link ClickedAddNewShippingAddress}
|
|
113
117
|
*/
|
|
@@ -268,6 +272,10 @@ export declare enum ActionType {
|
|
|
268
272
|
* Corresponds to {@link ClickedOnDuplicateArtwork}
|
|
269
273
|
*/
|
|
270
274
|
clickedOnDuplicateArtwork = "clickedOnDuplicateArtwork",
|
|
275
|
+
/**
|
|
276
|
+
* Corresponds to {@link ClickedOnPagination}
|
|
277
|
+
*/
|
|
278
|
+
clickedOnPagination = "clickedOnPagination",
|
|
271
279
|
/**
|
|
272
280
|
* Corresponds to {@link ClickedOnPriceDisplayDropdown}
|
|
273
281
|
*/
|
|
@@ -336,6 +344,14 @@ export declare enum ActionType {
|
|
|
336
344
|
* Corresponds to {@link ClickedSelectShippingOption}
|
|
337
345
|
*/
|
|
338
346
|
clickedSelectShippingOption = "clickedSelectShippingOption",
|
|
347
|
+
/**
|
|
348
|
+
* Corresponds to {@link ClickedStartPartnerOffer}
|
|
349
|
+
*/
|
|
350
|
+
clickedStartPartnerOffer = "clickedStartPartnerOffer",
|
|
351
|
+
/**
|
|
352
|
+
* Corresponds to {@link ClickedSendPartnerOffer}
|
|
353
|
+
*/
|
|
354
|
+
clickedSendPartnerOffer = "clickedSendPartnerOffer",
|
|
339
355
|
/**
|
|
340
356
|
* Corresponds to {@link ClickedShippingAddress}
|
|
341
357
|
*/
|
|
@@ -345,8 +361,12 @@ export declare enum ActionType {
|
|
|
345
361
|
*/
|
|
346
362
|
clickedShowGroup = "clickedShowGroup",
|
|
347
363
|
/**
|
|
348
|
-
* Corresponds to {@link
|
|
364
|
+
* Corresponds to {@link ClickedMarketingModal}
|
|
349
365
|
*/
|
|
366
|
+
clickedMarketingModal = "clickedMarketingModal",
|
|
367
|
+
/**
|
|
368
|
+
* Corresponds to {@link ClickedShowMore}
|
|
369
|
+
*/
|
|
350
370
|
clickedShowMore = "clickedShowMore",
|
|
351
371
|
/**
|
|
352
372
|
* Corresponds to {@link ClickedSnooze}
|
|
@@ -364,6 +384,10 @@ export declare enum ActionType {
|
|
|
364
384
|
* Corresponds to {@link ClickedTooltip}
|
|
365
385
|
*/
|
|
366
386
|
clickedTooltip = "clickedTooltip",
|
|
387
|
+
/**
|
|
388
|
+
* Corresponds to {@link ClickedUpdateArtwork}
|
|
389
|
+
*/
|
|
390
|
+
clickedUpdateArtwork = "clickedUpdateArtwork",
|
|
367
391
|
/**
|
|
368
392
|
* Corresponds to {@link ClickedVerifyIdentity}
|
|
369
393
|
*/
|
|
@@ -640,6 +664,18 @@ export declare enum ActionType {
|
|
|
640
664
|
* Corresponds to {@link SelectedRecentPriceRange}
|
|
641
665
|
*/
|
|
642
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",
|
|
643
679
|
/**
|
|
644
680
|
* Corresponds to {@link sentArtworkInquiry}
|
|
645
681
|
*/
|
|
@@ -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";
|
|
@@ -170,6 +176,9 @@ exports.ActionType = ActionType;
|
|
|
170
176
|
ActionType["selectedItemFromAddressAutoCompletion"] = "selectedItemFromAddressAutoCompletion";
|
|
171
177
|
ActionType["selectedSuggestedFilter"] = "selectedSuggestedFilter";
|
|
172
178
|
ActionType["selectedRecentPriceRange"] = "selectedRecentPriceRange";
|
|
179
|
+
ActionType["sendOffersBannerViewed"] = "sendOffersBannerViewed";
|
|
180
|
+
ActionType["sendOffersErrorMessage"] = "sendOffersErrorMessage";
|
|
181
|
+
ActionType["sendOffersModalViewed"] = "sendOffersModalViewed";
|
|
173
182
|
ActionType["sentArtworkInquiry"] = "sentArtworkInquiry";
|
|
174
183
|
ActionType["sentConsignmentInquiry"] = "sentConsignmentInquiry";
|
|
175
184
|
ActionType["sentConversationMessage"] = "sentConversationMessage";
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export declare enum OwnerType {
|
|
7
7
|
activities = "activities",
|
|
8
|
+
activity = "activity",
|
|
8
9
|
allArtistSeries = "allArtistSeries",
|
|
9
10
|
alerts = "alerts",
|
|
10
11
|
alertDetails = "alertDetails",
|
|
@@ -87,6 +88,7 @@ export declare enum OwnerType {
|
|
|
87
88
|
savesAndFollows = "savesAndFollows",
|
|
88
89
|
search = "search",
|
|
89
90
|
sell = "sell",
|
|
91
|
+
sendOffers = "sendOffers",
|
|
90
92
|
show = "show",
|
|
91
93
|
shows = "shows",
|
|
92
94
|
similarToRecentlyViewed = "similarToRecentlyViewed",
|
|
@@ -103,8 +105,8 @@ export declare enum OwnerType {
|
|
|
103
105
|
/**
|
|
104
106
|
* Owner types available in iOS/Android
|
|
105
107
|
*/
|
|
106
|
-
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
|
+
export type ScreenOwnerType = OwnerType.activities | OwnerType.activity | 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;
|
|
107
109
|
/**
|
|
108
110
|
* Owner types available in web/mobile web
|
|
109
111
|
*/
|
|
110
|
-
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;
|
|
112
|
+
export type PageOwnerType = OwnerType.activities | OwnerType.activity | 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;
|
|
@@ -23,6 +23,7 @@ exports.OwnerType = OwnerType;
|
|
|
23
23
|
|
|
24
24
|
(function (OwnerType) {
|
|
25
25
|
OwnerType["activities"] = "activities";
|
|
26
|
+
OwnerType["activity"] = "activity";
|
|
26
27
|
OwnerType["allArtistSeries"] = "allArtistSeries";
|
|
27
28
|
OwnerType["alerts"] = "alerts";
|
|
28
29
|
OwnerType["alertDetails"] = "alertDetails";
|
|
@@ -105,6 +106,7 @@ exports.OwnerType = OwnerType;
|
|
|
105
106
|
OwnerType["savesAndFollows"] = "savesAndFollows";
|
|
106
107
|
OwnerType["search"] = "search";
|
|
107
108
|
OwnerType["sell"] = "sell";
|
|
109
|
+
OwnerType["sendOffers"] = "sendOffers";
|
|
108
110
|
OwnerType["show"] = "show";
|
|
109
111
|
OwnerType["shows"] = "shows";
|
|
110
112
|
OwnerType["similarToRecentlyViewed"] = "similarToRecentlyViewed";
|