Skip to content

Commit 9700c75

Browse files
feat: enable having vendor information in releaseInfo (#7373)
1 parent d07b98a commit 9700c75

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.changeset/brown-tigers-check.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": minor
3+
---
4+
5+
feat: optional vendor information in releaseInfo

packages/app-builder-lib/scheme.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -4874,6 +4874,10 @@
48744874
"null",
48754875
"string"
48764876
]
4877+
},
4878+
"vendor": {
4879+
"description": "Vendor-specific informaton",
4880+
"type": "object"
48774881
}
48784882
},
48794883
"type": "object"
@@ -7074,4 +7078,4 @@
70747078
}
70757079
},
70767080
"type": "object"
7077-
}
7081+
}

packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts

+5
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,11 @@ export interface ReleaseInfo {
143143
* The release date.
144144
*/
145145
releaseDate?: string
146+
147+
/**
148+
* Vendor specific information.
149+
*/
150+
vendor?: Record<string, unknown> | null
146151
}
147152

148153
/**

0 commit comments

Comments
 (0)