declare module "wix-app-plugins-site-plugins.v1" { /** The `PlacementStatus` object represents the status of your app's site plugins, indicating whether they are currently placed in a slot on the user's site. */ interface PlacementStatus { /** * Plugin ID. This is a unique ID that is assigned to each plugin. You can view your plugin IDs in your app's plugin extensions in the Wix Dev Center. * @readonly */ pluginId?: string | null; /** * Whether the plugin placed in a slot on the user's site. * @readonly */ placedInSlot?: boolean | null; } interface GetPlacementStatusRequest { } interface GetPlacementStatusResponse { /** Data about placement statuses of your app's site plugins on the user's site. */ placementStatuses?: PlacementStatus[]; } /** * Get the placement statuses of your app's site plugins on the user's site. * @public * @documentationMaturity preview * @adminMethod */ function getPlacementStatus(): Promise; type appPluginsSitePluginsV1PlacementStatus_universal_d_PlacementStatus = PlacementStatus; type appPluginsSitePluginsV1PlacementStatus_universal_d_GetPlacementStatusRequest = GetPlacementStatusRequest; type appPluginsSitePluginsV1PlacementStatus_universal_d_GetPlacementStatusResponse = GetPlacementStatusResponse; const appPluginsSitePluginsV1PlacementStatus_universal_d_getPlacementStatus: typeof getPlacementStatus; namespace appPluginsSitePluginsV1PlacementStatus_universal_d { export { appPluginsSitePluginsV1PlacementStatus_universal_d_PlacementStatus as PlacementStatus, appPluginsSitePluginsV1PlacementStatus_universal_d_GetPlacementStatusRequest as GetPlacementStatusRequest, appPluginsSitePluginsV1PlacementStatus_universal_d_GetPlacementStatusResponse as GetPlacementStatusResponse, appPluginsSitePluginsV1PlacementStatus_universal_d_getPlacementStatus as getPlacementStatus, }; } export { appPluginsSitePluginsV1PlacementStatus_universal_d as placementStatus }; }