declare module "wix-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 * @permissionScope Read Site Plugin Status * @permissionScopeId SCOPE.SITE-PLUGIN.READ-PLACEMENT-STATUS * @applicableIdentity APP * @adminMethod */ function getPlacementStatus(): Promise; type appPluginsSitePluginsV1PlacementStatusPlugins_universal_d_PlacementStatus = PlacementStatus; type appPluginsSitePluginsV1PlacementStatusPlugins_universal_d_GetPlacementStatusRequest = GetPlacementStatusRequest; type appPluginsSitePluginsV1PlacementStatusPlugins_universal_d_GetPlacementStatusResponse = GetPlacementStatusResponse; const appPluginsSitePluginsV1PlacementStatusPlugins_universal_d_getPlacementStatus: typeof getPlacementStatus; namespace appPluginsSitePluginsV1PlacementStatusPlugins_universal_d { export { appPluginsSitePluginsV1PlacementStatusPlugins_universal_d_PlacementStatus as PlacementStatus, appPluginsSitePluginsV1PlacementStatusPlugins_universal_d_GetPlacementStatusRequest as GetPlacementStatusRequest, appPluginsSitePluginsV1PlacementStatusPlugins_universal_d_GetPlacementStatusResponse as GetPlacementStatusResponse, appPluginsSitePluginsV1PlacementStatusPlugins_universal_d_getPlacementStatus as getPlacementStatus, }; } export { appPluginsSitePluginsV1PlacementStatusPlugins_universal_d as plugins }; }