@artsy/cohesion 4.84.0 → 4.85.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 +19 -0
- package/dist/Schema/Events/Consignments.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# v4.85.0 (Thu Dec 08 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Change consignment_inquiry_id from bigint to number [#380](https://github.com/artsy/cohesion/pull/380) ([@lordkiz](https://github.com/lordkiz))
|
|
6
|
+
|
|
7
|
+
#### 🏠 Internal
|
|
8
|
+
|
|
9
|
+
- Bump decode-uri-component from 0.2.0 to 0.2.2 [#377](https://github.com/artsy/cohesion/pull/377) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
10
|
+
- chore(deps): update dep typescript from 4.9.3 to v4.9.4 [#379](https://github.com/artsy/cohesion/pull/379) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
11
|
+
|
|
12
|
+
#### Authors: 3
|
|
13
|
+
|
|
14
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
15
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
16
|
+
- Kizito Egeonu ([@lordkiz](https://github.com/lordkiz))
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
1
20
|
# v4.84.0 (Wed Dec 07 2022)
|
|
2
21
|
|
|
3
22
|
#### 🚀 Enhancement
|
|
@@ -156,5 +156,5 @@ export interface SentConsignmentInquiry {
|
|
|
156
156
|
context_module: ContextModule.consignmentInquiryForm;
|
|
157
157
|
context_screen: OwnerType.consignmentInquiry;
|
|
158
158
|
context_screen_owner_type: OwnerType.consignmentInquiry;
|
|
159
|
-
consignment_inquiry_id?:
|
|
159
|
+
consignment_inquiry_id?: number;
|
|
160
160
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artsy/cohesion",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.85.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.9.
|
|
50
|
+
"typescript": "4.9.4"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"core-js": "3"
|