@craftercms/studio-ui
Version:
Services, components, models & utils to build CrafterCMS authoring extensions.
67 lines (65 loc) • 3.08 kB
TypeScript
/*
* Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import LookupTable from '../../models/LookupTable';
export declare const sessionTimeout: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'SESSION_TIMEOUT'>;
export declare const fetchGlobalProperties: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'FETCH_GLOBAL_PROPERTIES'>;
export declare const fetchGlobalPropertiesComplete: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<
{
properties: LookupTable<string>;
},
string
>;
export declare const fetchGlobalPropertiesFailed: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'FETCH_GLOBAL_PROPERTIES_FAILED'>;
export declare const fetchSiteProperties: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'FETCH_SITE_PROPERTIES'>;
export declare const fetchSitePropertiesComplete: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<
{
properties: LookupTable<string>;
},
string
>;
export declare const fetchSitePropertiesFailed: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'FETCH_SITE_PROPERTIES_FAILED'>;
export declare const deleteProperties: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<
{
properties: string[];
siteId?: string;
},
string
>;
export declare const deletePropertiesComplete: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<
{
properties: LookupTable<string>;
},
string
>;
export declare const deletePropertiesFailed: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'DELETE_PROPERTIES_FAILED'>;
export declare const fetchMyRolesInSite: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'FETCH_MY_ROLES_IN_SITE'>;
export declare const fetchMyRolesInSiteComplete: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<
{
site: string;
roles: string[];
},
string
>;
export declare const fetchMyRolesInSiteFailed: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'FETCH_MY_ROLES_IN_SITE_FAILED'>;
export declare const fetchMyPermissionsInSite: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'FETCH_MY_PERMISSIONS_IN_SITE'>;
export declare const fetchMyPermissionsInSiteComplete: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<
{
site: string;
permissions: string[];
},
string
>;
export declare const fetchMyPermissionsInSiteFailed: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<'FETCH_MY_PERMISSIONS_IN_SITE_FAILED'>;