|
@@ -1,90 +1,20 @@
|
|
|
-import { Team, TeamsState, TeamState, TeamGroup, TeamMember } from './teams';
|
|
|
|
|
-import { AlertRuleDTO, AlertRule, AlertRulesState } from './alerting';
|
|
|
|
|
-import { LocationState, LocationUpdate, UrlQueryMap, UrlQueryValue } from './location';
|
|
|
|
|
-import { NavModel, NavModelItem, NavIndex } from './navModel';
|
|
|
|
|
-import { FolderDTO, FolderState, FolderInfo } from './folders';
|
|
|
|
|
-import { DashboardState } from './dashboard';
|
|
|
|
|
-import { DashboardAcl, OrgRole, PermissionLevel } from './acl';
|
|
|
|
|
-import { ApiKey, ApiKeysState, NewApiKey } from './apiKeys';
|
|
|
|
|
-import { Invitee, OrgUser, User, UsersState, UserState } from './user';
|
|
|
|
|
-import { DataSource, DataSourceSelectItem, DataSourcesState } from './datasources';
|
|
|
|
|
-import { DataQuery, DataQueryResponse, DataQueryOptions } from './series';
|
|
|
|
|
-import { PluginDashboard, PluginMeta, Plugin, PanelPlugin, PluginsState } from './plugins';
|
|
|
|
|
-import { Organization, OrganizationState } from './organization';
|
|
|
|
|
-import {
|
|
|
|
|
- AppNotification,
|
|
|
|
|
- AppNotificationSeverity,
|
|
|
|
|
- AppNotificationsState,
|
|
|
|
|
- AppNotificationTimeout,
|
|
|
|
|
-} from './appNotifications';
|
|
|
|
|
-import { DashboardSearchHit } from './search';
|
|
|
|
|
-import { ValidationEvents, ValidationRule } from './form';
|
|
|
|
|
-import { ExploreState } from './explore';
|
|
|
|
|
-export {
|
|
|
|
|
- Team,
|
|
|
|
|
- TeamsState,
|
|
|
|
|
- TeamState,
|
|
|
|
|
- TeamGroup,
|
|
|
|
|
- TeamMember,
|
|
|
|
|
- AlertRuleDTO,
|
|
|
|
|
- AlertRule,
|
|
|
|
|
- AlertRulesState,
|
|
|
|
|
- LocationState,
|
|
|
|
|
- LocationUpdate,
|
|
|
|
|
- NavModel,
|
|
|
|
|
- NavModelItem,
|
|
|
|
|
- NavIndex,
|
|
|
|
|
- UrlQueryMap,
|
|
|
|
|
- UrlQueryValue,
|
|
|
|
|
- FolderDTO,
|
|
|
|
|
- FolderState,
|
|
|
|
|
- FolderInfo,
|
|
|
|
|
- DashboardState,
|
|
|
|
|
- DashboardAcl,
|
|
|
|
|
- OrgRole,
|
|
|
|
|
- PermissionLevel,
|
|
|
|
|
- DataSource,
|
|
|
|
|
- DataSourceSelectItem,
|
|
|
|
|
- PluginMeta,
|
|
|
|
|
- ApiKey,
|
|
|
|
|
- ApiKeysState,
|
|
|
|
|
- NewApiKey,
|
|
|
|
|
- Plugin,
|
|
|
|
|
- PluginsState,
|
|
|
|
|
- DataSourcesState,
|
|
|
|
|
- Invitee,
|
|
|
|
|
- OrgUser,
|
|
|
|
|
- User,
|
|
|
|
|
- UsersState,
|
|
|
|
|
- PanelPlugin,
|
|
|
|
|
- DataQuery,
|
|
|
|
|
- DataQueryResponse,
|
|
|
|
|
- DataQueryOptions,
|
|
|
|
|
- PluginDashboard,
|
|
|
|
|
- Organization,
|
|
|
|
|
- OrganizationState,
|
|
|
|
|
- AppNotification,
|
|
|
|
|
- AppNotificationsState,
|
|
|
|
|
- AppNotificationSeverity,
|
|
|
|
|
- AppNotificationTimeout,
|
|
|
|
|
- DashboardSearchHit,
|
|
|
|
|
- UserState,
|
|
|
|
|
- ValidationEvents,
|
|
|
|
|
- ValidationRule,
|
|
|
|
|
-};
|
|
|
|
|
|
|
+export * from './teams';
|
|
|
|
|
+export * from './alerting';
|
|
|
|
|
+export * from './location';
|
|
|
|
|
+export * from './navModel';
|
|
|
|
|
+export * from './folders';
|
|
|
|
|
+export * from './dashboard';
|
|
|
|
|
+export * from './acl';
|
|
|
|
|
+export * from './apiKeys';
|
|
|
|
|
+export * from './user';
|
|
|
|
|
+export * from './datasources';
|
|
|
|
|
+export * from './series';
|
|
|
|
|
+export * from './plugins';
|
|
|
|
|
+export * from './organization';
|
|
|
|
|
+export * from './appNotifications';
|
|
|
|
|
+export * from './search';
|
|
|
|
|
+export * from './form';
|
|
|
|
|
+export * from './explore';
|
|
|
|
|
+export * from './store';
|
|
|
|
|
+
|
|
|
|
|
|
|
|
-export interface StoreState {
|
|
|
|
|
- navIndex: NavIndex;
|
|
|
|
|
- location: LocationState;
|
|
|
|
|
- alertRules: AlertRulesState;
|
|
|
|
|
- teams: TeamsState;
|
|
|
|
|
- team: TeamState;
|
|
|
|
|
- folder: FolderState;
|
|
|
|
|
- dashboard: DashboardState;
|
|
|
|
|
- dataSources: DataSourcesState;
|
|
|
|
|
- explore: ExploreState;
|
|
|
|
|
- users: UsersState;
|
|
|
|
|
- organization: OrganizationState;
|
|
|
|
|
- appNotifications: AppNotificationsState;
|
|
|
|
|
- user: UserState;
|
|
|
|
|
-}
|
|
|