@@ -607,67 +607,42 @@ export namespace messaging {
607607}
608608
609609// @public
610- export function projectManagement(app ? : app . App ): projectManagement .ProjectManagement ;
610+ export function projectManagement(app ? : App ): projectManagement .ProjectManagement ;
611611
612612// @public (undocumented)
613613export namespace projectManagement {
614- export interface AndroidApp {
615- addShaCertificate(certificateToAdd : ShaCertificate ): Promise <void >;
616- // (undocumented)
617- appId: string ;
618- deleteShaCertificate(certificateToRemove : ShaCertificate ): Promise <void >;
619- getConfig(): Promise <string >;
620- getMetadata(): Promise <AndroidAppMetadata >;
621- getShaCertificates(): Promise <ShaCertificate []>;
622- setDisplayName(newDisplayName : string ): Promise <void >;
623- }
624- export interface AndroidAppMetadata extends AppMetadata {
625- packageName: string ;
626- // (undocumented)
627- platform: AppPlatform .ANDROID ;
628- }
629- export interface AppMetadata {
630- appId: string ;
631- displayName? : string ;
632- platform: AppPlatform ;
633- projectId: string ;
634- resourceName: string ;
635- }
636- export enum AppPlatform {
637- ANDROID = " ANDROID" ,
638- IOS = " IOS" ,
639- PLATFORM_UNKNOWN = " PLATFORM_UNKNOWN"
640- }
641- export interface IosApp {
642- // (undocumented)
643- appId: string ;
644- getConfig(): Promise <string >;
645- getMetadata(): Promise <IosAppMetadata >;
646- setDisplayName(newDisplayName : string ): Promise <void >;
647- }
648- export interface IosAppMetadata extends AppMetadata {
649- bundleId: string ;
650- // (undocumented)
651- platform: AppPlatform .IOS ;
652- }
653- export interface ProjectManagement {
654- androidApp(appId : string ): AndroidApp ;
655- // (undocumented)
656- app: app .App ;
657- createAndroidApp(packageName : string , displayName ? : string ): Promise <AndroidApp >;
658- createIosApp(bundleId : string , displayName ? : string ): Promise <IosApp >;
659- iosApp(appId : string ): IosApp ;
660- listAndroidApps(): Promise <AndroidApp []>;
661- listAppMetadata(): Promise <AppMetadata []>;
662- listIosApps(): Promise <IosApp []>;
663- setDisplayName(newDisplayName : string ): Promise <void >;
664- shaCertificate(shaHash : string ): ShaCertificate ;
665- }
666- export interface ShaCertificate {
667- certType: (' sha1' | ' sha256' );
668- resourceName? : string ;
669- shaHash: string ;
670- }
614+ // Warning: (ae-forgotten-export) The symbol "AndroidApp" needs to be exported by the entry point default-namespace.d.ts
615+ //
616+ // (undocumented)
617+ export type AndroidApp = AndroidApp ;
618+ // Warning: (ae-forgotten-export) The symbol "AndroidAppMetadata" needs to be exported by the entry point default-namespace.d.ts
619+ //
620+ // (undocumented)
621+ export type AndroidAppMetadata = AndroidAppMetadata ;
622+ // Warning: (ae-forgotten-export) The symbol "AppMetadata" needs to be exported by the entry point default-namespace.d.ts
623+ //
624+ // (undocumented)
625+ export type AppMetadata = AppMetadata ;
626+ // Warning: (ae-forgotten-export) The symbol "AppPlatform" needs to be exported by the entry point default-namespace.d.ts
627+ //
628+ // (undocumented)
629+ export type AppPlatform = AppPlatform ;
630+ // Warning: (ae-forgotten-export) The symbol "IosApp" needs to be exported by the entry point default-namespace.d.ts
631+ //
632+ // (undocumented)
633+ export type IosApp = IosApp ;
634+ // Warning: (ae-forgotten-export) The symbol "IosAppMetadata" needs to be exported by the entry point default-namespace.d.ts
635+ //
636+ // (undocumented)
637+ export type IosAppMetadata = IosAppMetadata ;
638+ // Warning: (ae-forgotten-export) The symbol "ProjectManagement" needs to be exported by the entry point default-namespace.d.ts
639+ //
640+ // (undocumented)
641+ export type ProjectManagement = ProjectManagement ;
642+ // Warning: (ae-forgotten-export) The symbol "ShaCertificate" needs to be exported by the entry point default-namespace.d.ts
643+ //
644+ // (undocumented)
645+ export type ShaCertificate = ShaCertificate ;
671646}
672647
673648// @public (undocumented)
0 commit comments