@artsy/cohesion 4.50.0 → 4.53.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
CHANGED
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
# v4.53.0 (Thu Jun 16 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: add SentRequestPriceEstimate interface, small ref [#336](https://github.com/artsy/cohesion/pull/336) ([@dariakoko](https://github.com/dariakoko))
|
|
6
|
+
|
|
7
|
+
#### 🏠 Internal
|
|
8
|
+
|
|
9
|
+
- chore(deps): update dep typescript from 4.7.2 to v4.7.3 [#335](https://github.com/artsy/cohesion/pull/335) ([@renovate-bot](https://github.com/renovate-bot))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
|
|
14
|
+
- WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
# v4.52.0 (Thu Jun 02 2022)
|
|
19
|
+
|
|
20
|
+
#### 🚀 Enhancement
|
|
21
|
+
|
|
22
|
+
- chore(CX-2610): add my collection insights context modules [#334](https://github.com/artsy/cohesion/pull/334) ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
23
|
+
|
|
24
|
+
#### Authors: 1
|
|
25
|
+
|
|
26
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
# v4.51.0 (Thu Jun 02 2022)
|
|
31
|
+
|
|
32
|
+
#### 🚀 Enhancement
|
|
33
|
+
|
|
34
|
+
- fix example [#333](https://github.com/artsy/cohesion/pull/333) ([@dariakoko](https://github.com/dariakoko))
|
|
35
|
+
|
|
36
|
+
#### Authors: 1
|
|
37
|
+
|
|
38
|
+
- Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
1
42
|
# v4.50.0 (Thu Jun 02 2022)
|
|
2
43
|
|
|
3
44
|
#### 🚀 Enhancement
|
|
@@ -159,18 +159,47 @@ export interface TappedMyCollectionAddArtworkArtist {
|
|
|
159
159
|
* {
|
|
160
160
|
* action: "tappedRequestPriceEstimate",
|
|
161
161
|
* context_module: "myCollectionArtworkInsights",
|
|
162
|
-
* context_screen: "
|
|
162
|
+
* context_screen: "myCollectionArtworkInsights",
|
|
163
|
+
* context_screen_owner_type: "myCollectionArtwork",
|
|
163
164
|
* context_screen_owner_id: "5fad78273c8451000d0c53b9"
|
|
164
165
|
* context_screen_owner_slug: "andy-warhol"
|
|
165
166
|
* demand_index: 8.9
|
|
166
|
-
*
|
|
167
167
|
* }
|
|
168
168
|
* ```
|
|
169
169
|
*/
|
|
170
170
|
export interface TappedRequestPriceEstimate {
|
|
171
171
|
action: ActionType.tappedRequestPriceEstimate;
|
|
172
172
|
context_module: ContextModule.myCollectionArtworkInsights;
|
|
173
|
+
context_screen: OwnerType.myCollectionArtworkInsights;
|
|
174
|
+
context_screen_owner_type: OwnerType.myCollectionArtwork;
|
|
173
175
|
context_screen_owner_id?: string;
|
|
174
176
|
context_screen_owner_slug?: string;
|
|
175
177
|
demand_index?: number;
|
|
176
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* A request for a price estimate has been susessfully sent by a user
|
|
181
|
+
*
|
|
182
|
+
* This schema describes events sent to Segment from [[sentRequestPriceEstimate]]
|
|
183
|
+
*
|
|
184
|
+
* @example
|
|
185
|
+
* ```
|
|
186
|
+
* {
|
|
187
|
+
* action: "sentRequestPriceEstimate",
|
|
188
|
+
* context_module: "myCollectionArtworkInsights",
|
|
189
|
+
* context_screen: "myCollectionArtworkInsights",
|
|
190
|
+
* context_screen_owner_type: "myCollectionArtwork",
|
|
191
|
+
* context_screen_owner_id: "5fad78273c8451000d0c53b9"
|
|
192
|
+
* context_screen_owner_slug: "andy-warhol"
|
|
193
|
+
* demand_index: 8.9
|
|
194
|
+
* }
|
|
195
|
+
* ```
|
|
196
|
+
*/
|
|
197
|
+
export interface SentRequestPriceEstimate {
|
|
198
|
+
action: ActionType.sentRequestPriceEstimate;
|
|
199
|
+
context_module: ContextModule.myCollectionArtworkInsights;
|
|
200
|
+
context_screen: OwnerType.myCollectionArtworkInsights;
|
|
201
|
+
context_screen_owner_type: OwnerType.myCollectionArtwork;
|
|
202
|
+
context_screen_owner_id: string;
|
|
203
|
+
context_screen_owner_slug: string;
|
|
204
|
+
demand_index?: number;
|
|
205
|
+
}
|
|
@@ -7,7 +7,7 @@ import { FocusedOnConversationMessageInput, SentConversationMessage, TappedInbox
|
|
|
7
7
|
import { ExperimentViewed } from "./ExperimentViewed";
|
|
8
8
|
import { AuctionResultsFilterParamsChanged, CommercialFilterParamsChanged, PriceDatabaseFilterParamsChanged } from "./FilterAndSort";
|
|
9
9
|
import { Impression } from "./Impression";
|
|
10
|
-
import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
|
|
10
|
+
import { AddCollectedArtwork, DeleteCollectedArtwork, EditCollectedArtwork, SentRequestPriceEstimate, TappedCollectedArtwork, TappedCollectedArtworkImages, TappedRequestPriceEstimate } from "./MyCollection";
|
|
11
11
|
import { PromptForReview } from "./PromptForReview";
|
|
12
12
|
import { DeletedSavedSearch, EditedSavedSearch } from "./SavedSearch";
|
|
13
13
|
import { FollowEvents } from "./SavesAndFollows";
|
|
@@ -22,7 +22,7 @@ import { ToggledAccordion } from "./UserExperienceInteractions";
|
|
|
22
22
|
*
|
|
23
23
|
* Each event describes one ActionType
|
|
24
24
|
*/
|
|
25
|
-
export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | ClickedActiveBid | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPaymentMethod | ClickedPaymentDetails | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | CommercialFilterParamsChanged | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | Share | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedPartnerCard | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
|
|
25
|
+
export declare type Event = AddToCalendar | AddCollectedArtwork | ArtworkDetailsCompleted | AuctionPageView | AuctionResultsFilterParamsChanged | AuthImpression | BidPageView | CreatedAccount | ClickedActiveBid | ClickedAddNewShippingAddress | ClickedAddWorksToFair | ClickedAppDownload | ClickedArticleGroup | ClickedArtistGroup | ClickedArtistSeriesGroup | ClickedArtworkGroup | ClickedAuctionGroup | ClickedBuyerProtection | ClickedChangePage | ClickedChangePaymentMethod | ClickedChangeShippingAddress | ClickedChangeShippingMethod | ClickedCollectionGroup | ClickedCreateAlert | ClickedDeliveryMethod | ClickedEditArtwork | ClickedExpansionToggle | ClickedFairCard | ClickedFairGroup | ClickedGalleryGroup | ClickedLoadMore | ClickedMainArtworkGrid | ClickedNavigationTab | ClickedOfferOption | ClickedOnArtworkShippingWeight | ClickedOnArtworkShippingUnitsDropdown | ClickedOnFramedMeasurements | ClickedOnFramedMeasurementsDropdown | ClickedOnSubmitOrder | ClickedSnooze | ClickedPartnerCard | ClickedPaymentMethod | ClickedPaymentDetails | ClickedPromoSpace | ClickedRegisterToBid | ClickedSelectShippingOption | ClickedShippingAddress | ClickedShowGroup | ClickedShowMore | ClickedVerifyIdentity | ClickedViewingRoomCard | CommercialFilterParamsChanged | ConfirmBid | ConfirmRegistrationPageview | ConsignmentArtistFailed | ConsignmentSubmitted | DeleteCollectedArtwork | DeletedSavedSearch | EditCollectedArtwork | EditedSavedSearch | EnterLiveAuction | ExperimentViewed | FocusedOnConversationMessageInput | FocusedOnSearchInput | FocusedOnPriceDatabaseSearchInput | FollowEvents | Impression | MaxBidSelected | OnboardingUserInputData | PriceDatabaseFilterParamsChanged | PromptForReview | RegistrationPageView | RegistrationSubmitted | ResetYourPassword | SaleScreenLoadComplete | Screen | SearchedPriceDatabase | SearchedWithNoResults | SelectedItemFromSearch | SelectedItemFromPriceDatabaseSearch | SentConversationMessage | SentRequestPriceEstimate | Share | SubmitAnotherArtwork | SuccessfullyLoggedIn | TappedArticleGroup | TappedArtistGroup | TappedArtistSeriesGroup | TappedArtworkGroup | TappedAuctionGroup | TappedAuctionResultGroup | TappedBid | TappedBuyNow | TappedCollectedArtwork | TappedCollectedArtworkImages | TappedCollectionGroup | TappedConsign | TappedContactGallery | TappedCreateAlert | TappedExploreGroup | TappedFairCard | TappedFairGroup | TappedInboxConversation | TappedInfoBubble | TappedLink | TappedNavigationTab | TappedMainArtworkGrid | TappedMakeOffer | TappedPartnerCard | TappedPromoSpace | TappedRequestPriceEstimate | TappedSell | TappedSellArtwork | TappedShowMore | TappedLearnMore | TappedSkip | TappedTabBar | TappedVerifyIdentity | TappedViewingRoomCard | TappedViewingRoomGroup | TappedViewOffer | TimeOnPage | ToggledAccordion | ToggledNotification | ToggledSavedSearch | UploadPhotosCompleted | ViewArtworkMyCollection;
|
|
26
26
|
/**
|
|
27
27
|
* The top-level actions an Event describes.
|
|
28
28
|
*
|
|
@@ -394,6 +394,10 @@ export declare enum ActionType {
|
|
|
394
394
|
* Corresponds to {@link SentConversationMessage}
|
|
395
395
|
*/
|
|
396
396
|
sentConversationMessage = "sentConversationMessage",
|
|
397
|
+
/**
|
|
398
|
+
* Corresponds to {@link SentRequestPriceEstimate}
|
|
399
|
+
*/
|
|
400
|
+
sentRequestPriceEstimate = "sentRequestPriceEstimate",
|
|
397
401
|
/**
|
|
398
402
|
* Corresponds to {@link Share}
|
|
399
403
|
*/
|
|
@@ -111,6 +111,7 @@ exports.ActionType = ActionType;
|
|
|
111
111
|
ActionType["selectedItemFromPriceDatabaseSearch"] = "selectedItemFromPriceDatabaseSearch";
|
|
112
112
|
ActionType["sentArtworkInquiry"] = "sentArtworkInquiry";
|
|
113
113
|
ActionType["sentConversationMessage"] = "sentConversationMessage";
|
|
114
|
+
ActionType["sentRequestPriceEstimate"] = "sentRequestPriceEstimate";
|
|
114
115
|
ActionType["share"] = "share";
|
|
115
116
|
ActionType["experimentViewed"] = "experimentViewed";
|
|
116
117
|
ActionType["submitAnotherArtwork"] = "submitAnotherArtwork";
|
|
@@ -8,8 +8,8 @@ export declare enum OwnerType {
|
|
|
8
8
|
article = "article",
|
|
9
9
|
articles = "articles",
|
|
10
10
|
artist = "artist",
|
|
11
|
-
artists = "artists",
|
|
12
11
|
artistAuctionResults = "artistAuctionResults",
|
|
12
|
+
artists = "artists",
|
|
13
13
|
artistSeries = "artistSeries",
|
|
14
14
|
artwork = "artwork",
|
|
15
15
|
auction = "auction",
|
|
@@ -23,9 +23,9 @@ export declare enum OwnerType {
|
|
|
23
23
|
collect = "collect",
|
|
24
24
|
collection = "collection",
|
|
25
25
|
collections = "collections",
|
|
26
|
+
consign = "consign",
|
|
26
27
|
consignmentFlow = "consignmentFlow",
|
|
27
28
|
consignmentSubmission = "consignmentSubmission",
|
|
28
|
-
consign = "consign",
|
|
29
29
|
conversation = "conversation",
|
|
30
30
|
conversationMakeOfferConfirmArtwork = "conversationMakeOfferConfirmArtwork",
|
|
31
31
|
explore = "explore",
|
|
@@ -40,8 +40,10 @@ export declare enum OwnerType {
|
|
|
40
40
|
inboxConversation = "inboxConversation",
|
|
41
41
|
inboxInquiries = "inboxInquiries",
|
|
42
42
|
myCollection = "myCollection",
|
|
43
|
-
myCollectionArtwork = "myCollectionArtwork",
|
|
44
43
|
myCollectionAddArtworkArtist = "myCollectionAddArtworkArtist",
|
|
44
|
+
myCollectionArtwork = "myCollectionArtwork",
|
|
45
|
+
myCollectionArtworkAbout = "MyCollectionArtworkAbout",
|
|
46
|
+
myCollectionArtworkInsights = "MyCollectionArtworkInsights",
|
|
45
47
|
myCollectionInsights = "myCollectionInsights",
|
|
46
48
|
newWorksForYou = "newWorksForYou",
|
|
47
49
|
onboarding = "onboarding",
|
|
@@ -62,23 +64,23 @@ export declare enum OwnerType {
|
|
|
62
64
|
saleInformation = "saleInformation",
|
|
63
65
|
savedSearch = "savedSearch",
|
|
64
66
|
savedSearches = "savedSearches",
|
|
67
|
+
savesAndFollows = "savesAndFollows",
|
|
65
68
|
search = "search",
|
|
66
69
|
sell = "sell",
|
|
67
70
|
show = "show",
|
|
68
71
|
shows = "shows",
|
|
69
|
-
savesAndFollows = "savesAndFollows",
|
|
70
72
|
user = "user",
|
|
71
73
|
viewingRoom = "viewingRoom",
|
|
72
|
-
|
|
74
|
+
viewingRoomArtworkPage = "viewingRoomArtworkPage",
|
|
73
75
|
viewingRoomArtworks = "viewingRoomArtworks",
|
|
74
76
|
viewingRoomList = "viewingRoomList",
|
|
75
|
-
|
|
77
|
+
viewingRooms = "viewingRooms",
|
|
76
78
|
worksForYou = "worksForYou"
|
|
77
79
|
}
|
|
78
80
|
/**
|
|
79
81
|
* Owner types available in iOS/Android
|
|
80
82
|
*/
|
|
81
|
-
export declare type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.
|
|
83
|
+
export declare type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctionResult | OwnerType.auctionResultsForArtistsYouFollow | OwnerType.auctions | OwnerType.cityGuideGuide | OwnerType.cityGuideMap | OwnerType.cityPicker | OwnerType.collection | OwnerType.consign | OwnerType.consignmentFlow | OwnerType.consignmentSubmission | OwnerType.conversation | OwnerType.conversationMakeOfferConfirmArtwork | OwnerType.explore | OwnerType.fair | OwnerType.fairArtworks | OwnerType.gene | OwnerType.home | OwnerType.inbox | OwnerType.inboxBids | OwnerType.inboxConversation | OwnerType.inboxInquiries | OwnerType.myCollection | OwnerType.myCollectionAddArtworkArtist | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtwork | OwnerType.myCollectionArtworkAbout | OwnerType.myCollectionArtworkInsights | OwnerType.myCollectionInsights | OwnerType.newWorksForYou | OwnerType.onboarding | OwnerType.partner | OwnerType.profile | OwnerType.sale | OwnerType.saleInformation | OwnerType.savedSearch | OwnerType.savedSearches | OwnerType.savesAndFollows | OwnerType.search | OwnerType.sell | OwnerType.show | OwnerType.shows | OwnerType.viewingRoom | OwnerType.viewingRoomArtworkPage | OwnerType.viewingRoomArtworks | OwnerType.viewingRoomList | OwnerType.worksForYou;
|
|
82
84
|
/**
|
|
83
85
|
* Owner types available in web/mobile web
|
|
84
86
|
*/
|
|
@@ -26,8 +26,8 @@ exports.OwnerType = OwnerType;
|
|
|
26
26
|
OwnerType["article"] = "article";
|
|
27
27
|
OwnerType["articles"] = "articles";
|
|
28
28
|
OwnerType["artist"] = "artist";
|
|
29
|
-
OwnerType["artists"] = "artists";
|
|
30
29
|
OwnerType["artistAuctionResults"] = "artistAuctionResults";
|
|
30
|
+
OwnerType["artists"] = "artists";
|
|
31
31
|
OwnerType["artistSeries"] = "artistSeries";
|
|
32
32
|
OwnerType["artwork"] = "artwork";
|
|
33
33
|
OwnerType["auction"] = "auction";
|
|
@@ -41,9 +41,9 @@ exports.OwnerType = OwnerType;
|
|
|
41
41
|
OwnerType["collect"] = "collect";
|
|
42
42
|
OwnerType["collection"] = "collection";
|
|
43
43
|
OwnerType["collections"] = "collections";
|
|
44
|
+
OwnerType["consign"] = "consign";
|
|
44
45
|
OwnerType["consignmentFlow"] = "consignmentFlow";
|
|
45
46
|
OwnerType["consignmentSubmission"] = "consignmentSubmission";
|
|
46
|
-
OwnerType["consign"] = "consign";
|
|
47
47
|
OwnerType["conversation"] = "conversation";
|
|
48
48
|
OwnerType["conversationMakeOfferConfirmArtwork"] = "conversationMakeOfferConfirmArtwork";
|
|
49
49
|
OwnerType["explore"] = "explore";
|
|
@@ -58,8 +58,10 @@ exports.OwnerType = OwnerType;
|
|
|
58
58
|
OwnerType["inboxConversation"] = "inboxConversation";
|
|
59
59
|
OwnerType["inboxInquiries"] = "inboxInquiries";
|
|
60
60
|
OwnerType["myCollection"] = "myCollection";
|
|
61
|
-
OwnerType["myCollectionArtwork"] = "myCollectionArtwork";
|
|
62
61
|
OwnerType["myCollectionAddArtworkArtist"] = "myCollectionAddArtworkArtist";
|
|
62
|
+
OwnerType["myCollectionArtwork"] = "myCollectionArtwork";
|
|
63
|
+
OwnerType["myCollectionArtworkAbout"] = "MyCollectionArtworkAbout";
|
|
64
|
+
OwnerType["myCollectionArtworkInsights"] = "MyCollectionArtworkInsights";
|
|
63
65
|
OwnerType["myCollectionInsights"] = "myCollectionInsights";
|
|
64
66
|
OwnerType["newWorksForYou"] = "newWorksForYou";
|
|
65
67
|
OwnerType["onboarding"] = "onboarding";
|
|
@@ -80,16 +82,16 @@ exports.OwnerType = OwnerType;
|
|
|
80
82
|
OwnerType["saleInformation"] = "saleInformation";
|
|
81
83
|
OwnerType["savedSearch"] = "savedSearch";
|
|
82
84
|
OwnerType["savedSearches"] = "savedSearches";
|
|
85
|
+
OwnerType["savesAndFollows"] = "savesAndFollows";
|
|
83
86
|
OwnerType["search"] = "search";
|
|
84
87
|
OwnerType["sell"] = "sell";
|
|
85
88
|
OwnerType["show"] = "show";
|
|
86
89
|
OwnerType["shows"] = "shows";
|
|
87
|
-
OwnerType["savesAndFollows"] = "savesAndFollows";
|
|
88
90
|
OwnerType["user"] = "user";
|
|
89
91
|
OwnerType["viewingRoom"] = "viewingRoom";
|
|
90
|
-
OwnerType["
|
|
92
|
+
OwnerType["viewingRoomArtworkPage"] = "viewingRoomArtworkPage";
|
|
91
93
|
OwnerType["viewingRoomArtworks"] = "viewingRoomArtworks";
|
|
92
94
|
OwnerType["viewingRoomList"] = "viewingRoomList";
|
|
93
|
-
OwnerType["
|
|
95
|
+
OwnerType["viewingRooms"] = "viewingRooms";
|
|
94
96
|
OwnerType["worksForYou"] = "worksForYou";
|
|
95
97
|
})(OwnerType || (exports.OwnerType = OwnerType = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artsy/cohesion",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.53.0",
|
|
4
4
|
"description": "Analytics schema",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"lint-staged": "10.1.7",
|
|
48
48
|
"prettier": "2.0.5",
|
|
49
49
|
"typedoc": "0.17.7",
|
|
50
|
-
"typescript": "4.7.
|
|
50
|
+
"typescript": "4.7.3"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"core-js": "3"
|