Add author
field to AppManifest (#218)
* Add author field to AppManifest * Create changeset/sharp-crabs-notice.md
This commit is contained in:
parent
bf926219bb
commit
6e748e3c15
2 changed files with 11 additions and 0 deletions
5
.changeset/sharp-crabs-notice.md
Normal file
5
.changeset/sharp-crabs-notice.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"@saleor/app-sdk": minor
|
||||||
|
---
|
||||||
|
|
||||||
|
Add author field to AppManifest
|
|
@ -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
|
* ">=3.10 <4 || 4.0.0" - 3.10 and newer, less than 4, but allow exactly 4.0.0
|
||||||
*/
|
*/
|
||||||
requiredSaleorVersion?: string;
|
requiredSaleorVersion?: string;
|
||||||
|
/**
|
||||||
|
* App author name displayed in the dashboard
|
||||||
|
*
|
||||||
|
* In Saleor versions lower than 3.13, this field will be ignored
|
||||||
|
*/
|
||||||
|
author?: string;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue