diff --git a/.changeset/grumpy-spies-sin.md b/.changeset/grumpy-spies-sin.md new file mode 100644 index 0000000..d305959 --- /dev/null +++ b/.changeset/grumpy-spies-sin.md @@ -0,0 +1,5 @@ +--- +"@saleor/app-sdk": minor +--- + +Added "brand" field to Manifest type, that allows to provide app's logo URL. It will work from Saleor 3.15 diff --git a/src/types.ts b/src/types.ts index 18528c3..a190cb5 100644 --- a/src/types.ts +++ b/src/types.ts @@ -280,4 +280,20 @@ export interface AppManifest { * In Saleor versions lower than 3.13, this field will be ignored */ author?: string; + /** + * Add brand-specific metadata to the app + * + * Available from Saleor 3.15. In previous versions will be ignored + */ + brand?: { + /** + * Logo will be displayed in the dashboard + */ + logo: { + /** + * URL with the public image. File will be copied to Saleor database during installation + */ + default: string; + }; + }; }