/*! * Copyright (c) Microsoft. All rights reserved. */ import { CommonAppInfo } from "./CommonInfo"; /** * Identifier for the application within a tenant. * * @member * id: The application id (GUID). */ export interface AppIdentifier extends CommonAppInfo { appId: string; } /** * App-Saved and App-Published event callbacks from MakerSession return object conforming to this interface. * * @members * id: The application id. * * environmentId: The environment in which the application was last saved/published. * * logicalName: The logical name for this application which is unique and consistent across tenants. * * tenantId: The tenant in which the application was last saved/published. */ export interface MakerSessionAppInfo { appId: string; environmentId: string; logicalName: string; tenantId: string; }