Skip to content

Commit

Permalink
feat: enable having vendor information in releaseInfo (#7373)
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny-signal authored Jan 23, 2023
1 parent d07b98a commit 9700c75
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/brown-tigers-check.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-lib": minor
---

feat: optional vendor information in releaseInfo
6 changes: 5 additions & 1 deletion packages/app-builder-lib/scheme.json
Original file line number Diff line number Diff line change
Expand Up @@ -4874,6 +4874,10 @@
"null",
"string"
]
},
"vendor": {
"description": "Vendor-specific informaton",
"type": "object"
}
},
"type": "object"
Expand Down Expand Up @@ -7074,4 +7078,4 @@
}
},
"type": "object"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ export interface ReleaseInfo {
* The release date.
*/
releaseDate?: string

/**
* Vendor specific information.
*/
vendor?: Record<string, unknown> | null
}

/**
Expand Down

0 comments on commit 9700c75

Please sign in to comment.