Skip to content

Commit 787ed7a

Browse files
committed
comment
1 parent 73c0a2b commit 787ed7a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

frontend/interfaces/software.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ export const isSoftwarePackage = (
124124

125125
export 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 {
150152
export 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 {
166169
export 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 {
196200
export 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

Comments
 (0)