Add author field to AppManifest (#218)

* Add author field to AppManifest

* Create changeset/sharp-crabs-notice.md
This commit is contained in:
Przemysław Łada 2023-03-15 09:27:24 +01:00 committed by GitHub
parent bf926219bb
commit 6e748e3c15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
"@saleor/app-sdk": minor
---
Add author field to AppManifest

View file

@ -263,4 +263,10 @@ export interface AppManifest {
* ">=3.10 <4 || 4.0.0" - 3.10 and newer, less than 4, but allow exactly 4.0.0
*/
requiredSaleorVersion?: string;
/**
* App author name displayed in the dashboard
*
* In Saleor versions lower than 3.13, this field will be ignored
*/
author?: string;
}