@@ -35,6 +35,7 @@ export interface IGetSoftwareByIdResponse {
3535export interface ISoftware {
3636 id : number ;
3737 name : string ; // e.g., "Figma.app"
38+ /** Custom name set per team by admin */
3839 display_name ?: string ; // e.g. "Figma for Desktop"
3940 version : string ; // e.g., "2.1.11"
4041 bundle_identifier ?: string | null ; // e.g., "com.figma.Desktop"
@@ -91,6 +92,9 @@ export interface ISoftwareAppStoreAppStatus {
9192
9293export interface ISoftwarePackage {
9394 name : string ;
95+ /** Not included in SoftwareTitle software.software_package response, hoisted up one level
96+ * Custom name set per team by admin
97+ */
9498 display_name ?: string ;
9599 title_id : number ;
96100 url : string ;
@@ -120,6 +124,9 @@ export const isSoftwarePackage = (
120124
121125export interface IAppStoreApp {
122126 name : string ;
127+ /** Not included in SoftwareTitle software.app_store_app response, hoisted up one level
128+ * Custom name set per team by admin
129+ */
123130 display_name ?: string ;
124131 app_store_id : string ; // API returns this as a string
125132 latest_version : string ;
@@ -145,6 +152,7 @@ export interface IAppStoreApp {
145152export interface ISoftwareTitle {
146153 id : number ;
147154 name : string ;
155+ /** Custom name set per team by admin */
148156 display_name ?: string ;
149157 icon_url : string | null ;
150158 versions_count : number ;
@@ -161,6 +169,7 @@ export interface ISoftwareTitle {
161169export interface ISoftwareTitleDetails {
162170 id : number ;
163171 name : string ;
172+ /** Custom name set per team by admin */
164173 display_name ?: string ;
165174 icon_url : string | null ;
166175 software_package : ISoftwarePackage | null ;
@@ -191,6 +200,7 @@ export interface ISoftwareVulnerability {
191200export interface ISoftwareVersion {
192201 id : number ;
193202 name : string ; // e.g., "Figma.app"
203+ /** Custom name set per team by admin */
194204 display_name ?: string ; // e.g. "Figma for Desktop"
195205 version : string ; // e.g., "2.1.11"
196206 bundle_identifier ?: string ; // e.g., "com.figma.Desktop"
@@ -499,7 +509,6 @@ export interface ISoftwareInstallVersion {
499509
500510export interface IHostSoftwarePackage {
501511 name : string ;
502- display_name ?: string ;
503512 self_service : boolean ;
504513 icon_url : string | null ;
505514 version : string ;
@@ -511,7 +520,6 @@ export interface IHostSoftwarePackage {
511520}
512521
513522export interface IHostAppStoreApp {
514- display_name ?: string ;
515523 app_store_id : string ;
516524 self_service : boolean ;
517525 icon_url : string ;
@@ -523,8 +531,9 @@ export interface IHostAppStoreApp {
523531
524532export interface IHostSoftware {
525533 id : number ;
526- name : string ;
527- display_name ?: string ;
534+ name : string ; // e.g., "mock software.app"
535+ /** Custom name set per team by admin */
536+ display_name ?: string ; // e.g. "Mock Software"
528537 icon_url : string | null ;
529538 software_package : IHostSoftwarePackage | null ;
530539 app_store_app : IHostAppStoreApp | null ;
0 commit comments