@artsy/cohesion 4.6.0 → 4.10.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,51 @@
1
+ # v4.10.0 (Thu Oct 07 2021)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Adding showsRail in Context module [#249](https://github.com/artsy/cohesion/pull/249) ([@rajsam003](https://github.com/rajsam003))
6
+
7
+ #### Authors: 1
8
+
9
+ - Sam Raj ([@rajsam003](https://github.com/rajsam003))
10
+
11
+ ---
12
+
13
+ # v4.9.0 (Wed Oct 06 2021)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - chore: move shipping constants into cohesion [#243](https://github.com/artsy/cohesion/pull/243) ([@pepopowitz](https://github.com/pepopowitz))
18
+
19
+ #### Authors: 1
20
+
21
+ - Steven Hicks ([@pepopowitz](https://github.com/pepopowitz))
22
+
23
+ ---
24
+
25
+ # v4.8.0 (Wed Oct 06 2021)
26
+
27
+ #### 🚀 Enhancement
28
+
29
+ - Added show and shows [#247](https://github.com/artsy/cohesion/pull/247) ([@rajsam003](https://github.com/rajsam003))
30
+
31
+ #### Authors: 1
32
+
33
+ - Sam Raj ([@rajsam003](https://github.com/rajsam003))
34
+
35
+ ---
36
+
37
+ # v4.7.0 (Tue Oct 05 2021)
38
+
39
+ #### 🚀 Enhancement
40
+
41
+ - chore(deps): update cimg/python docker tag to v3.10 [#246](https://github.com/artsy/cohesion/pull/246) ([@renovate-bot](https://github.com/renovate-bot))
42
+
43
+ #### Authors: 1
44
+
45
+ - WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
46
+
47
+ ---
48
+
1
49
  # v4.6.0 (Fri Oct 01 2021)
2
50
 
3
51
  #### 🚀 Enhancement
@@ -36,6 +36,9 @@ import { ActionType } from ".";
36
36
  export interface TappedArticleGroup extends TappedEntityGroup {
37
37
  action: ActionType.tappedArticleGroup;
38
38
  }
39
+ export interface TappedShowGroup extends TappedEntityGroup {
40
+ action: ActionType.tappedShowGroup;
41
+ }
39
42
  /**
40
43
  * A user taps a grouping of artists on iOS
41
44
  *
@@ -224,7 +227,7 @@ export interface TappedFairGroup extends TappedEntityGroup {
224
227
  * This schema describes events sent to Segment from [[tappedEntityGroup]]
225
228
  */
226
229
  export interface TappedEntityGroup {
227
- action: ActionType.tappedArticleGroup | ActionType.tappedArtistGroup | ActionType.tappedArtistSeriesGroup | ActionType.tappedArtworkGroup | ActionType.tappedAuctionGroup | ActionType.tappedAuctionResultGroup | ActionType.tappedCollectionGroup | ActionType.tappedExploreGroup | ActionType.tappedFairGroup | ActionType.tappedViewingRoomGroup;
230
+ action: ActionType.tappedArticleGroup | ActionType.tappedShowGroup | ActionType.tappedArtistGroup | ActionType.tappedArtistSeriesGroup | ActionType.tappedArtworkGroup | ActionType.tappedAuctionGroup | ActionType.tappedAuctionResultGroup | ActionType.tappedCollectionGroup | ActionType.tappedExploreGroup | ActionType.tappedFairGroup | ActionType.tappedViewingRoomGroup;
228
231
  context_module: ContextModule;
229
232
  context_screen_owner_type: ScreenOwnerType;
230
233
  context_screen_owner_id?: string;
@@ -300,6 +300,10 @@ export declare enum ActionType {
300
300
  * Corresponds to {@link TappedArticleGroup}
301
301
  */
302
302
  tappedArticleGroup = "tappedArticleGroup",
303
+ /**
304
+ * Corresponds to {@link TappedShowGroup}
305
+ */
306
+ tappedShowGroup = "tappedShowGroup",
303
307
  /**
304
308
  * Corresponds to {@link TappedArtistGroup}
305
309
  */
@@ -89,6 +89,7 @@ exports.ActionType = ActionType;
89
89
  ActionType["share"] = "share";
90
90
  ActionType["successfullyLoggedIn"] = "successfullyLoggedIn";
91
91
  ActionType["tappedArticleGroup"] = "tappedArticleGroup";
92
+ ActionType["tappedShowGroup"] = "tappedShowGroup";
92
93
  ActionType["tappedArtistGroup"] = "tappedArtistGroup";
93
94
  ActionType["tappedArtistSeriesGroup"] = "tappedArtistSeriesGroup";
94
95
  ActionType["tappedArtworkGroup"] = "tappedArtworkGroup";
@@ -20,12 +20,11 @@ export declare enum ContextModule {
20
20
  artistsToFollowRail = "artistsToFollowRail",
21
21
  artworkGrid = "artworkGrid",
22
22
  artworkImage = "artworkImage",
23
- artworkRecentlySoldGrid = "artworkRecentlySoldGrid",
24
23
  artworkMetadata = "artworkMetadata",
24
+ artworkRecentlySoldGrid = "artworkRecentlySoldGrid",
25
25
  artworkSidebar = "artworkSidebar",
26
26
  artworksTab = "artworksTab",
27
27
  associatedViewingRoom = "associatedViewingRoom",
28
- auctionSidebar = "auctionSidebar",
29
28
  auctionCard = "auctionCard",
30
29
  auctionHome = "auctionHome",
31
30
  auctionLots = "auctionLots",
@@ -34,6 +33,7 @@ export declare enum ContextModule {
34
33
  auctionResults = "auctionResults",
35
34
  auctionResultsForArtistsYouFollow = "auctionResultsForArtistsYouFollow",
36
35
  auctionResultsRail = "auctionResultsRail",
36
+ auctionSidebar = "auctionSidebar",
37
37
  auctionsInfo = "auctionsInfo",
38
38
  banner = "banner",
39
39
  bannerPopUp = "bannerPopUp",
@@ -41,19 +41,19 @@ export declare enum ContextModule {
41
41
  browseFair = "browseFair",
42
42
  categoryRail = "categoryRail",
43
43
  cityGuideCard = "cityGuideCard",
44
+ collectionCard = "collectionCard",
44
45
  collectionDescription = "collectionDescription",
45
46
  collectionRail = "collectionRail",
46
- collectionCard = "collectionCard",
47
47
  consignSubmissionFlow = "consignSubmissionFlow",
48
48
  curatedHighlightsRail = "curatedHighlightsRail",
49
49
  currentAuctions = "currentAuctions",
50
50
  currentShowsRail = "currentShowsRail",
51
51
  exhibitorsTab = "exhibitorsTab",
52
+ fairCard = "fairCard",
53
+ fairHome = "fairHome",
52
54
  fairInfo = "fairInfo",
53
55
  fairOrganizerHeader = "fairOrganizerHeader",
54
56
  fairRail = "fairRail",
55
- fairCard = "fairCard",
56
- fairHome = "fairHome",
57
57
  fairsHeader = "fairsHeader",
58
58
  featuredArtists = "featuredArtists",
59
59
  featuredArtistsRail = "featuredArtistsRail",
@@ -71,28 +71,34 @@ export declare enum ContextModule {
71
71
  inboxClosedBids = "inboxClosedBids",
72
72
  inboxConversation = "inboxConversation",
73
73
  inboxInquiries = "inboxInquiries",
74
- intextTooltip = "intextTooltip",
75
74
  inquiry = "inquiry",
75
+ intextTooltip = "intextTooltip",
76
76
  latestViewingRoomsRail = "latestViewingRoomsRail",
77
77
  liveAuctionRoom = "liveAuctionRoom",
78
78
  liveAuctionsRail = "liveAuctionsRail",
79
79
  mainCarousel = "mainCarousel",
80
+ marketInsights = "marketInsights",
80
81
  marketNews = "marketNews",
81
82
  minimalCTABanner = "minimalCTABanner",
82
83
  moreFromThisSeries = "moreFromThisSeries",
83
84
  moreSeriesByThisArtist = "moreSeriesByThisArtist",
84
85
  myCollectionArtwork = "myCollectionArtwork",
85
86
  myCollectionHome = "myCollectionHome",
86
- marketInsights = "marketInsights",
87
87
  newWorksByArtistsYouFollowRail = "newWorksByArtistsYouFollowRail",
88
88
  newWorksForYouRail = "newWorksForYouRail",
89
89
  newWorksByGalleriesYouFollowRail = "newWorksByGalleriesYouFollowRail",
90
- ordersShipping = "ordersShipping",
91
- ordersReview = "ordersReview",
92
90
  onboardingArtists = "onboardingArtists",
93
91
  onboardingBudget = "onboardingBudget",
94
92
  onboardingGenes = "onboardingGenes",
95
93
  onboardingInterests = "onboardingInterests",
94
+ ordersAccept = "ordersAccept",
95
+ ordersCounter = "ordersCounter",
96
+ ordersNewPayment = "ordersNewPayment",
97
+ ordersOffer = "ordersOffer",
98
+ ordersPayment = "ordersPayment",
99
+ ordersRespond = "ordersRespond",
100
+ ordersReview = "ordersReview",
101
+ ordersShipping = "ordersShipping",
96
102
  otherCollectionsRail = "otherCollectionsRail",
97
103
  otherWorksByArtistRail = "otherWorksByArtistRail",
98
104
  otherWorksFromPartnerRail = "otherWorksFromPartnerRail",
@@ -107,9 +113,9 @@ export declare enum ContextModule {
107
113
  presentingPartner = "presentingPartner",
108
114
  priceDatabase = "priceDatabase",
109
115
  priceDatabaseLanding = "priceDatabaseLanding",
110
- pushNotifications = "pushNotifications",
111
116
  priceEstimate = "priceEstimate",
112
117
  promoSpace = "promoSpace",
118
+ pushNotifications = "pushNotifications",
113
119
  recentlySavedRail = "recentlySavedRail",
114
120
  recentlyViewedRail = "recentlyViewedRail",
115
121
  recommendedArtistsRail = "recommendedArtistsRail",
@@ -123,6 +129,7 @@ export declare enum ContextModule {
123
129
  sellHeader = "sellHeader",
124
130
  showHeader = "showHeader",
125
131
  showInfo = "showInfo",
132
+ showsRail = "showsRail",
126
133
  similarToWorksYouSavedRail = "similarToWorksYouSavedRail",
127
134
  similarToWorksYouViewedRail = "similarToWorksYouViewedRail",
128
135
  standoutLots = "standoutLots",
@@ -135,12 +142,12 @@ export declare enum ContextModule {
135
142
  upcomingAuctions = "upcomingAuctions",
136
143
  viewingRoom = "viewingRoom",
137
144
  voltArtworksEdit = "voltArtworksEdit",
138
- worksByPopularArtistsRail = "worksByPopularArtistsRail",
139
145
  worksByArtistsYouFollowRail = "worksByArtistsYouFollowRail",
146
+ worksByPopularArtistsRail = "worksByPopularArtistsRail",
140
147
  worksForSaleRail = "worksForSaleRail",
141
148
  yourActiveBids = "yourActiveBids"
142
149
  }
143
150
  /**
144
151
  * Limited ContextModules available for web authentication events
145
152
  */
146
- export declare type AuthContextModule = ContextModule.aboutTheWork | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.associatedViewingRoom | ContextModule.auctionSidebar | ContextModule.auctionRail | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionResult | ContextModule.auctionResults | ContextModule.auctionsInfo | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.consignSubmissionFlow | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.geneHeader | ContextModule.header | ContextModule.intextTooltip | ContextModule.inquiry | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.mainCarousel | ContextModule.minimalCTABanner | ContextModule.otherWorksByArtistRail | ContextModule.otherWorksFromPartnerRail | ContextModule.otherWorksFromShowRail | ContextModule.otherWorksInAuctionRail | ContextModule.partnerHeader | ContextModule.pastFairs | ContextModule.popularArtistsRail | ContextModule.popUpModal | ContextModule.presentingFair | ContextModule.presentingPartner | ContextModule.priceEstimate | ContextModule.recentlyViewedRail | ContextModule.recommendedArtistsRail | ContextModule.relatedArtistsRail | ContextModule.relatedWorksRail | ContextModule.saveWorksCTA | ContextModule.showHeader | ContextModule.showInfo | ContextModule.standoutLots | ContextModule.tagHeader | ContextModule.topWorksRail | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.worksByPopularArtistsRail | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksForSaleRail | ContextModule.viewingRoom;
153
+ export declare type AuthContextModule = ContextModule.aboutTheWork | ContextModule.artistHeader | ContextModule.artistRecentlySold | ContextModule.artistSeriesRail | ContextModule.artistsTab | ContextModule.artistsToFollowRail | ContextModule.artworkGrid | ContextModule.artworkImage | ContextModule.artworkSidebar | ContextModule.associatedViewingRoom | ContextModule.auctionHome | ContextModule.auctionLots | ContextModule.auctionRail | ContextModule.auctionResult | ContextModule.auctionResults | ContextModule.auctionSidebar | ContextModule.auctionsInfo | ContextModule.bannerPopUp | ContextModule.boothsTab | ContextModule.browseFair | ContextModule.categoryRail | ContextModule.collectionDescription | ContextModule.consignSubmissionFlow | ContextModule.currentShowsRail | ContextModule.fairInfo | ContextModule.fairOrganizerHeader | ContextModule.fairRail | ContextModule.fairsHeader | ContextModule.featuredArtists | ContextModule.featuredArtistsRail | ContextModule.featuredGalleriesRail | ContextModule.footer | ContextModule.geneHeader | ContextModule.header | ContextModule.inquiry | ContextModule.intextTooltip | ContextModule.liveAuctionRoom | ContextModule.liveAuctionsRail | ContextModule.mainCarousel | ContextModule.minimalCTABanner | ContextModule.otherWorksByArtistRail | ContextModule.otherWorksFromPartnerRail | ContextModule.otherWorksFromShowRail | ContextModule.otherWorksInAuctionRail | ContextModule.partnerHeader | ContextModule.pastFairs | ContextModule.popularArtistsRail | ContextModule.popUpModal | ContextModule.presentingFair | ContextModule.presentingPartner | ContextModule.priceEstimate | ContextModule.recentlyViewedRail | ContextModule.recommendedArtistsRail | ContextModule.relatedArtistsRail | ContextModule.relatedWorksRail | ContextModule.saveWorksCTA | ContextModule.showHeader | ContextModule.showInfo | ContextModule.standoutLots | ContextModule.tagHeader | ContextModule.topWorksRail | ContextModule.trendingArtistsRail | ContextModule.trendingLots | ContextModule.viewingRoom | ContextModule.worksByArtistsYouFollowRail | ContextModule.worksByPopularArtistsRail | ContextModule.worksForSaleRail;
@@ -34,12 +34,11 @@ exports.ContextModule = ContextModule;
34
34
  ContextModule["artistsToFollowRail"] = "artistsToFollowRail";
35
35
  ContextModule["artworkGrid"] = "artworkGrid";
36
36
  ContextModule["artworkImage"] = "artworkImage";
37
- ContextModule["artworkRecentlySoldGrid"] = "artworkRecentlySoldGrid";
38
37
  ContextModule["artworkMetadata"] = "artworkMetadata";
38
+ ContextModule["artworkRecentlySoldGrid"] = "artworkRecentlySoldGrid";
39
39
  ContextModule["artworkSidebar"] = "artworkSidebar";
40
40
  ContextModule["artworksTab"] = "artworksTab";
41
41
  ContextModule["associatedViewingRoom"] = "associatedViewingRoom";
42
- ContextModule["auctionSidebar"] = "auctionSidebar";
43
42
  ContextModule["auctionCard"] = "auctionCard";
44
43
  ContextModule["auctionHome"] = "auctionHome";
45
44
  ContextModule["auctionLots"] = "auctionLots";
@@ -48,6 +47,7 @@ exports.ContextModule = ContextModule;
48
47
  ContextModule["auctionResults"] = "auctionResults";
49
48
  ContextModule["auctionResultsForArtistsYouFollow"] = "auctionResultsForArtistsYouFollow";
50
49
  ContextModule["auctionResultsRail"] = "auctionResultsRail";
50
+ ContextModule["auctionSidebar"] = "auctionSidebar";
51
51
  ContextModule["auctionsInfo"] = "auctionsInfo";
52
52
  ContextModule["banner"] = "banner";
53
53
  ContextModule["bannerPopUp"] = "bannerPopUp";
@@ -55,19 +55,19 @@ exports.ContextModule = ContextModule;
55
55
  ContextModule["browseFair"] = "browseFair";
56
56
  ContextModule["categoryRail"] = "categoryRail";
57
57
  ContextModule["cityGuideCard"] = "cityGuideCard";
58
+ ContextModule["collectionCard"] = "collectionCard";
58
59
  ContextModule["collectionDescription"] = "collectionDescription";
59
60
  ContextModule["collectionRail"] = "collectionRail";
60
- ContextModule["collectionCard"] = "collectionCard";
61
61
  ContextModule["consignSubmissionFlow"] = "consignSubmissionFlow";
62
62
  ContextModule["curatedHighlightsRail"] = "curatedHighlightsRail";
63
63
  ContextModule["currentAuctions"] = "currentAuctions";
64
64
  ContextModule["currentShowsRail"] = "currentShowsRail";
65
65
  ContextModule["exhibitorsTab"] = "exhibitorsTab";
66
+ ContextModule["fairCard"] = "fairCard";
67
+ ContextModule["fairHome"] = "fairHome";
66
68
  ContextModule["fairInfo"] = "fairInfo";
67
69
  ContextModule["fairOrganizerHeader"] = "fairOrganizerHeader";
68
70
  ContextModule["fairRail"] = "fairRail";
69
- ContextModule["fairCard"] = "fairCard";
70
- ContextModule["fairHome"] = "fairHome";
71
71
  ContextModule["fairsHeader"] = "fairsHeader";
72
72
  ContextModule["featuredArtists"] = "featuredArtists";
73
73
  ContextModule["featuredArtistsRail"] = "featuredArtistsRail";
@@ -85,28 +85,34 @@ exports.ContextModule = ContextModule;
85
85
  ContextModule["inboxClosedBids"] = "inboxClosedBids";
86
86
  ContextModule["inboxConversation"] = "inboxConversation";
87
87
  ContextModule["inboxInquiries"] = "inboxInquiries";
88
- ContextModule["intextTooltip"] = "intextTooltip";
89
88
  ContextModule["inquiry"] = "inquiry";
89
+ ContextModule["intextTooltip"] = "intextTooltip";
90
90
  ContextModule["latestViewingRoomsRail"] = "latestViewingRoomsRail";
91
91
  ContextModule["liveAuctionRoom"] = "liveAuctionRoom";
92
92
  ContextModule["liveAuctionsRail"] = "liveAuctionsRail";
93
93
  ContextModule["mainCarousel"] = "mainCarousel";
94
+ ContextModule["marketInsights"] = "marketInsights";
94
95
  ContextModule["marketNews"] = "marketNews";
95
96
  ContextModule["minimalCTABanner"] = "minimalCTABanner";
96
97
  ContextModule["moreFromThisSeries"] = "moreFromThisSeries";
97
98
  ContextModule["moreSeriesByThisArtist"] = "moreSeriesByThisArtist";
98
99
  ContextModule["myCollectionArtwork"] = "myCollectionArtwork";
99
100
  ContextModule["myCollectionHome"] = "myCollectionHome";
100
- ContextModule["marketInsights"] = "marketInsights";
101
101
  ContextModule["newWorksByArtistsYouFollowRail"] = "newWorksByArtistsYouFollowRail";
102
102
  ContextModule["newWorksForYouRail"] = "newWorksForYouRail";
103
103
  ContextModule["newWorksByGalleriesYouFollowRail"] = "newWorksByGalleriesYouFollowRail";
104
- ContextModule["ordersShipping"] = "ordersShipping";
105
- ContextModule["ordersReview"] = "ordersReview";
106
104
  ContextModule["onboardingArtists"] = "onboardingArtists";
107
105
  ContextModule["onboardingBudget"] = "onboardingBudget";
108
106
  ContextModule["onboardingGenes"] = "onboardingGenes";
109
107
  ContextModule["onboardingInterests"] = "onboardingInterests";
108
+ ContextModule["ordersAccept"] = "ordersAccept";
109
+ ContextModule["ordersCounter"] = "ordersCounter";
110
+ ContextModule["ordersNewPayment"] = "ordersNewPayment";
111
+ ContextModule["ordersOffer"] = "ordersOffer";
112
+ ContextModule["ordersPayment"] = "ordersPayment";
113
+ ContextModule["ordersRespond"] = "ordersRespond";
114
+ ContextModule["ordersReview"] = "ordersReview";
115
+ ContextModule["ordersShipping"] = "ordersShipping";
110
116
  ContextModule["otherCollectionsRail"] = "otherCollectionsRail";
111
117
  ContextModule["otherWorksByArtistRail"] = "otherWorksByArtistRail";
112
118
  ContextModule["otherWorksFromPartnerRail"] = "otherWorksFromPartnerRail";
@@ -121,9 +127,9 @@ exports.ContextModule = ContextModule;
121
127
  ContextModule["presentingPartner"] = "presentingPartner";
122
128
  ContextModule["priceDatabase"] = "priceDatabase";
123
129
  ContextModule["priceDatabaseLanding"] = "priceDatabaseLanding";
124
- ContextModule["pushNotifications"] = "pushNotifications";
125
130
  ContextModule["priceEstimate"] = "priceEstimate";
126
131
  ContextModule["promoSpace"] = "promoSpace";
132
+ ContextModule["pushNotifications"] = "pushNotifications";
127
133
  ContextModule["recentlySavedRail"] = "recentlySavedRail";
128
134
  ContextModule["recentlyViewedRail"] = "recentlyViewedRail";
129
135
  ContextModule["recommendedArtistsRail"] = "recommendedArtistsRail";
@@ -137,6 +143,7 @@ exports.ContextModule = ContextModule;
137
143
  ContextModule["sellHeader"] = "sellHeader";
138
144
  ContextModule["showHeader"] = "showHeader";
139
145
  ContextModule["showInfo"] = "showInfo";
146
+ ContextModule["showsRail"] = "showsRail";
140
147
  ContextModule["similarToWorksYouSavedRail"] = "similarToWorksYouSavedRail";
141
148
  ContextModule["similarToWorksYouViewedRail"] = "similarToWorksYouViewedRail";
142
149
  ContextModule["standoutLots"] = "standoutLots";
@@ -149,8 +156,8 @@ exports.ContextModule = ContextModule;
149
156
  ContextModule["upcomingAuctions"] = "upcomingAuctions";
150
157
  ContextModule["viewingRoom"] = "viewingRoom";
151
158
  ContextModule["voltArtworksEdit"] = "voltArtworksEdit";
152
- ContextModule["worksByPopularArtistsRail"] = "worksByPopularArtistsRail";
153
159
  ContextModule["worksByArtistsYouFollowRail"] = "worksByArtistsYouFollowRail";
160
+ ContextModule["worksByPopularArtistsRail"] = "worksByPopularArtistsRail";
154
161
  ContextModule["worksForSaleRail"] = "worksForSaleRail";
155
162
  ContextModule["yourActiveBids"] = "yourActiveBids";
156
163
  })(ContextModule || (exports.ContextModule = ContextModule = {}));
@@ -41,6 +41,14 @@ export declare enum OwnerType {
41
41
  myCollectionArtwork = "myCollectionArtwork",
42
42
  newWorksForYou = "newWorksForYou",
43
43
  onboarding = "onboarding",
44
+ ordersAccept = "orders-accept",
45
+ ordersCounter = "orders-counter",
46
+ ordersNewPayment = "orders-new-payment",
47
+ ordersOffer = "orders-offer",
48
+ ordersPayment = "orders-payment",
49
+ ordersRespond = "orders-respond",
50
+ ordersReview = "orders-review",
51
+ ordersShipping = "orders-shipping",
44
52
  partner = "partner",
45
53
  partnerShowsArtworks = "partnerShowsArtworks",
46
54
  priceDatabase = "priceDatabase",
@@ -69,4 +77,4 @@ export declare type ScreenOwnerType = OwnerType.allArtistSeries | OwnerType.arti
69
77
  /**
70
78
  * Owner types available in web/mobile web
71
79
  */
72
- export declare type PageOwnerType = OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artists | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctions | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.onboarding | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.sale | OwnerType.search | OwnerType.show | OwnerType.shows | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou;
80
+ export declare type PageOwnerType = OwnerType.article | OwnerType.articles | OwnerType.artist | OwnerType.artists | OwnerType.artistAuctionResults | OwnerType.artistSeries | OwnerType.artwork | OwnerType.auctions | OwnerType.collect | OwnerType.collection | OwnerType.collections | OwnerType.consign | OwnerType.fair | OwnerType.fairs | OwnerType.galleries | OwnerType.gene | OwnerType.home | OwnerType.onboarding | OwnerType.ordersAccept | OwnerType.ordersCounter | OwnerType.ordersNewPayment | OwnerType.ordersOffer | OwnerType.ordersPayment | OwnerType.ordersRespond | OwnerType.ordersReview | OwnerType.ordersShipping | OwnerType.partner | OwnerType.partnerShowsArtworks | OwnerType.priceDatabase | OwnerType.profile | OwnerType.sale | OwnerType.search | OwnerType.show | OwnerType.shows | OwnerType.user | OwnerType.viewingRoom | OwnerType.viewingRooms | OwnerType.worksForYou;
@@ -59,6 +59,14 @@ exports.OwnerType = OwnerType;
59
59
  OwnerType["myCollectionArtwork"] = "myCollectionArtwork";
60
60
  OwnerType["newWorksForYou"] = "newWorksForYou";
61
61
  OwnerType["onboarding"] = "onboarding";
62
+ OwnerType["ordersAccept"] = "orders-accept";
63
+ OwnerType["ordersCounter"] = "orders-counter";
64
+ OwnerType["ordersNewPayment"] = "orders-new-payment";
65
+ OwnerType["ordersOffer"] = "orders-offer";
66
+ OwnerType["ordersPayment"] = "orders-payment";
67
+ OwnerType["ordersRespond"] = "orders-respond";
68
+ OwnerType["ordersReview"] = "orders-review";
69
+ OwnerType["ordersShipping"] = "orders-shipping";
62
70
  OwnerType["partner"] = "partner";
63
71
  OwnerType["partnerShowsArtworks"] = "partnerShowsArtworks";
64
72
  OwnerType["priceDatabase"] = "priceDatabase";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.6.0",
3
+ "version": "4.10.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {