Skip to content

Commit cb8e90b

Browse files
committed
Move projectId and resourceName to AppMetadata
1 parent 3f886aa commit cb8e90b

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/project-management/app-metadata.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,18 @@ export enum AppPlatform {
2222

2323
export interface AppMetadata {
2424
readonly appId: string;
25-
readonly displayName: string;
25+
readonly displayName?: string;
2626
readonly platform: AppPlatform;
27+
readonly projectId: string;
28+
readonly resourceName: string;
2729
}
2830

2931
export interface AndroidAppMetadata extends AppMetadata {
3032
readonly platform: AppPlatform.ANDROID;
31-
readonly resourceName: string;
32-
readonly projectId: string;
3333
readonly packageName: string;
3434
}
3535

3636
export interface IosAppMetadata extends AppMetadata {
3737
readonly platform: AppPlatform.IOS;
38-
readonly resourceName: string;
39-
readonly projectId: string;
4038
readonly bundleId: string;
4139
}

0 commit comments

Comments
 (0)