@@ -124,7 +124,9 @@ export const isSoftwarePackage = (
124124
125125export interface IAppStoreApp {
126126 name : string ;
127- /** Not included in SoftwareTitle software.app_store_app response, hoisted up one level */
127+ /** Not included in SoftwareTitle software.app_store_app response, hoisted up one level
128+ * Custom name set per team by admin
129+ */
128130 display_name ?: string ;
129131 app_store_id : string ; // API returns this as a string
130132 latest_version : string ;
@@ -150,6 +152,7 @@ export interface IAppStoreApp {
150152export interface ISoftwareTitle {
151153 id : number ;
152154 name : string ;
155+ /** Custom name set per team by admin */
153156 display_name ?: string ;
154157 icon_url : string | null ;
155158 versions_count : number ;
@@ -166,6 +169,7 @@ export interface ISoftwareTitle {
166169export interface ISoftwareTitleDetails {
167170 id : number ;
168171 name : string ;
172+ /** Custom name set per team by admin */
169173 display_name ?: string ;
170174 icon_url : string | null ;
171175 software_package : ISoftwarePackage | null ;
@@ -196,6 +200,7 @@ export interface ISoftwareVulnerability {
196200export interface ISoftwareVersion {
197201 id : number ;
198202 name : string ; // e.g., "Figma.app"
203+ /** Custom name set per team by admin */
199204 display_name ?: string ; // e.g. "Figma for Desktop"
200205 version : string ; // e.g., "2.1.11"
201206 bundle_identifier ?: string ; // e.g., "com.figma.Desktop"
0 commit comments