@artsy/cohesion 4.384.0 → 4.386.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.
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
name: Link PR to Notion
|
|
2
|
+
on:
|
|
3
|
+
pull_request:
|
|
4
|
+
types: [opened, edited]
|
|
5
|
+
jobs:
|
|
6
|
+
link:
|
|
7
|
+
uses: artsy/duchamp/.github/workflows/link-pr-to-notion.yml@main
|
|
8
|
+
secrets:
|
|
9
|
+
notion-token: ${{ secrets.NOTION_TOKEN }}
|
|
10
|
+
root-page-id: ${{ secrets.NOTION_ROOT_PAGE_ID }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.386.0 (Fri Jul 10 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: add link-pr-to-notion workflow [#730](https://github.com/artsy/cohesion/pull/730) ([@rabidpaul](https://github.com/rabidpaul))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Paul Sanders ([@rabidpaul](https://github.com/rabidpaul))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.385.0 (Tue Jul 07 2026)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- fix: allow CompletedArtworkDistribution to fire on any owner type [#729](https://github.com/artsy/cohesion/pull/729) ([@chr-tatu](https://github.com/chr-tatu))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Christian Tatu ([@chr-tatu](https://github.com/chr-tatu))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.384.0 (Fri Jul 03 2026)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -100,7 +100,7 @@ export interface DistributedArtworks {
|
|
|
100
100
|
export interface CompletedArtworkDistribution {
|
|
101
101
|
action: OsActionType.completedArtworkDistribution;
|
|
102
102
|
context_module: OsContextModule.artworkTable;
|
|
103
|
-
context_page_owner_type: OsOwnerType
|
|
103
|
+
context_page_owner_type: OsOwnerType;
|
|
104
104
|
/** Destination marketplaces (currently Artsy only; extensible) */
|
|
105
105
|
destination: string[];
|
|
106
106
|
total_artworks: number;
|