@artsy/cohesion 4.25.1 → 4.26.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,21 @@
|
|
|
1
|
+
# v4.26.0 (Wed Dec 15 2021)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: add auth intent to create alert [#274](https://github.com/artsy/cohesion/pull/274) ([@dblandin](https://github.com/dblandin))
|
|
6
|
+
|
|
7
|
+
#### 🏠 Internal
|
|
8
|
+
|
|
9
|
+
- chore(deps): update yarn orb from 6.0.0 to v6.1.0 [#273](https://github.com/artsy/cohesion/pull/273) ([@renovate-bot](https://github.com/renovate-bot))
|
|
10
|
+
- chore(deps): update dep typescript from 4.5.3 to v4.5.4 [#272](https://github.com/artsy/cohesion/pull/272) ([@renovate-bot](https://github.com/renovate-bot))
|
|
11
|
+
|
|
12
|
+
#### Authors: 2
|
|
13
|
+
|
|
14
|
+
- Devon Blandin ([@dblandin](https://github.com/dblandin))
|
|
15
|
+
- WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
1
19
|
# v4.25.1 (Fri Dec 10 2021)
|
|
2
20
|
|
|
3
21
|
#### 🐛 Bug Fix
|
|
@@ -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";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artsy/cohesion",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.26.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.5.
|
|
50
|
+
"typescript": "4.5.4"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"core-js": "3"
|