@artsy/cohesion 4.28.0 → 4.29.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,15 @@
|
|
|
1
|
+
# v4.29.0 (Wed Jan 05 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: add auth intent to create alert [#292](https://github.com/artsy/cohesion/pull/292) ([@dimatretyak](https://github.com/dimatretyak))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Dima Tretyak (Dzmitry Tratsiak) ([@dimatretyak](https://github.com/dimatretyak))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.28.0 (Wed Jan 05 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -8,6 +8,7 @@ export declare enum Intent {
|
|
|
8
8
|
bid = "bid",
|
|
9
9
|
buyNow = "buyNow",
|
|
10
10
|
consign = "consign",
|
|
11
|
+
createAlert = "createAlert",
|
|
11
12
|
followArtist = "followArtist",
|
|
12
13
|
followPartner = "followPartner",
|
|
13
14
|
followGene = "followGene",
|
|
@@ -33,4 +34,4 @@ export declare enum Intent {
|
|
|
33
34
|
*
|
|
34
35
|
* An action taken that prompted the user to view an authentication form
|
|
35
36
|
*/
|
|
36
|
-
export declare type AuthIntent = Intent.bid | Intent.buyNow | Intent.consign | Intent.followArtist | Intent.followGene | Intent.followPartner | Intent.forgot | Intent.inquire | Intent.login | Intent.seeEstimateAuctionRecords | Intent.seePriceAuctionRecords | Intent.seeRealizedPriceAuctionRecords | Intent.makeOffer | Intent.registerToBid | Intent.requestConditionReport | Intent.saveArtwork | Intent.signup | Intent.viewAuctionResults | Intent.viewArtist | Intent.viewEditorial | Intent.viewFair | Intent.viewViewingRoom;
|
|
37
|
+
export declare type AuthIntent = Intent.bid | Intent.buyNow | Intent.consign | Intent.createAlert | Intent.followArtist | Intent.followGene | Intent.followPartner | Intent.forgot | Intent.inquire | Intent.login | Intent.seeEstimateAuctionRecords | Intent.seePriceAuctionRecords | Intent.seeRealizedPriceAuctionRecords | Intent.makeOffer | Intent.registerToBid | Intent.requestConditionReport | Intent.saveArtwork | Intent.signup | Intent.viewAuctionResults | Intent.viewArtist | Intent.viewEditorial | Intent.viewFair | Intent.viewViewingRoom;
|
|
@@ -24,6 +24,7 @@ exports.Intent = Intent;
|
|
|
24
24
|
Intent["bid"] = "bid";
|
|
25
25
|
Intent["buyNow"] = "buyNow";
|
|
26
26
|
Intent["consign"] = "consign";
|
|
27
|
+
Intent["createAlert"] = "createAlert";
|
|
27
28
|
Intent["followArtist"] = "followArtist";
|
|
28
29
|
Intent["followPartner"] = "followPartner";
|
|
29
30
|
Intent["followGene"] = "followGene";
|