Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fresh-bars-kick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@saleor/app-sdk": patch
---

Add `TRANSLATIONS_MORE_ACTIONS` mount point to typescript definitions of available App Extension mounts
6 changes: 2 additions & 4 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
*/
export type AppExtensionTarget = "POPUP" | "APP_PAGE" | "NEW_TAB" | "WIDGET";

type AppExtensionMount3_23 = "TRANSLATION_DETAILS";

// Available mounts in Saleor 3.22 and newer
type AppExtensionMount3_22 =
| "CATEGORY_OVERVIEW_CREATE"
Expand Down Expand Up @@ -44,11 +42,11 @@ type AppExtensionMount3_22 =
| "ORDER_DETAILS_WIDGETS"
| "DRAFT_ORDER_DETAILS_WIDGETS"
| "VOUCHER_DETAILS_WIDGETS"
| "GIFT_CARD_DETAILS_WIDGETS";
| "GIFT_CARD_DETAILS_WIDGETS"
| "TRANSLATIONS_MORE_ACTIONS";

export type AppExtensionMount =
| AppExtensionMount3_22
| AppExtensionMount3_23
| "CUSTOMER_OVERVIEW_CREATE"
| "CUSTOMER_OVERVIEW_MORE_ACTIONS"
| "CUSTOMER_DETAILS_MORE_ACTIONS"
Expand Down
Loading