@adaptabletools/adaptable-plugin-ipushpull 20.0.0-canary.8 → 20.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/IPushPullApiImpl.d.ts +1 -1
- package/src/Module/Interface/IPushPullModule.d.ts +1 -1
- package/src/Module/PushPullModule.d.ts +1 -1
- package/src/Redux/ActionReducers/IPushPullRedux.d.ts +3 -3
- package/src/Utilities/Services/Interface/IPushPullService.d.ts +1 -1
- package/src/Utilities/Services/PushPullService.d.ts +1 -1
- package/src/View/IPushPullAddPagePopup.d.ts +1 -1
- package/src/View/IPushPullPopup.d.ts +3 -3
- package/src/View/IPushPullViewPanel.d.ts +3 -3
- package/src/index.d.ts +2 -2
- package/src/index.js +1 -1
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ApiBase } from '@adaptabletools/adaptable/src/Api/Implementation/ApiBase';
|
2
|
-
import { IPushPullDomain, IPushPullReport, IPushPullSchedule } from '@adaptabletools/adaptable/src/
|
2
|
+
import { IPushPullDomain, IPushPullReport, IPushPullSchedule } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
3
3
|
import { IPushPullApi } from '@adaptabletools/adaptable/src/Api/IPushPullApi';
|
4
4
|
import { IPushPullPluginOptions } from '@adaptabletools/adaptable/src/AdaptableOptions/IPushPullPluginOptions';
|
5
5
|
import { IAdaptable } from '@adaptabletools/adaptable/src/AdaptableInterfaces/IAdaptable';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { IPushPullReport } from '@adaptabletools/adaptable/src/
|
1
|
+
import { IPushPullReport } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
2
2
|
import { IModule } from '@adaptabletools/adaptable/src/Strategy/Interface/IModule';
|
3
3
|
export interface IPushPullModule extends IModule {
|
4
4
|
sendSnapshot(report: IPushPullReport): void;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AdaptableModuleBase } from '@adaptabletools/adaptable/src/Strategy/AdaptableModuleBase';
|
2
2
|
import { IPushPullModule } from './Interface/IPushPullModule';
|
3
|
-
import { IPushPullReport } from '@adaptabletools/adaptable/src/
|
3
|
+
import { IPushPullReport } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
4
4
|
import { IPushPullApi } from '@adaptabletools/adaptable/src/Api/IPushPullApi';
|
5
5
|
import { AccessLevel, AdaptableApi } from '@adaptabletools/adaptable/types';
|
6
6
|
export declare class PushPullModule extends AdaptableModuleBase implements IPushPullModule {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import * as Redux from 'redux';
|
2
|
-
import { IPushPullReport } from '@adaptabletools/adaptable/src/
|
3
|
-
import { IPushPullDomain } from '@adaptabletools/adaptable/src/
|
4
|
-
import { IPushPullState } from '@adaptabletools/adaptable/src/
|
2
|
+
import { IPushPullReport } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
3
|
+
import { IPushPullDomain } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
4
|
+
import { IPushPullState } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
5
5
|
export interface IPushPullSetThrottleTimeAction extends Redux.Action {
|
6
6
|
throttleTime: number;
|
7
7
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ServiceStatus } from '../PushPullService';
|
2
|
-
import { IPushPullDomain } from '@adaptabletools/adaptable/src/
|
2
|
+
import { IPushPullDomain } from '@adaptabletools/adaptable/src/AdaptableState/InternalState';
|
3
3
|
export interface IPushPullService {
|
4
4
|
login(login: string, password: string): Promise<any>;
|
5
5
|
getDomainPages(): Promise<IPushPullDomain[]>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { IAdaptable } from '@adaptabletools/adaptable/src/AdaptableInterfaces/IAdaptable';
|
2
2
|
import { IPPStyle } from '@adaptabletools/adaptable/src/Utilities/Interface/IPPStyle';
|
3
3
|
import { IPushPullService } from './Interface/IPushPullService';
|
4
|
-
import { IPushPullDomain } from '@adaptabletools/adaptable/src/
|
4
|
+
import { IPushPullDomain } from '@adaptabletools/adaptable/src/AdaptableState/InternalState';
|
5
5
|
export declare enum ServiceStatus {
|
6
6
|
Unknown = "Unknown",
|
7
7
|
Disconnected = "Disconnected",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as React from 'react';
|
2
2
|
import * as IPushPullRedux from '../Redux/ActionReducers/IPushPullRedux';
|
3
|
-
import { IPushPullDomain } from '@adaptabletools/adaptable/src/
|
3
|
+
import { IPushPullDomain } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
4
4
|
interface IPushPullAddPagePopupProps {
|
5
5
|
IPushPullDomainsPages: IPushPullDomain[] | undefined;
|
6
6
|
onAddPage: (folder: string, page: string) => IPushPullRedux.IPushPullAddPageAction;
|
@@ -4,9 +4,9 @@ import * as IPushPullRedux from '../Redux/ActionReducers/IPushPullRedux';
|
|
4
4
|
import { ModuleViewPopupProps } from '@adaptabletools/adaptable/src/View/Components/SharedProps/ModuleViewPopupProps';
|
5
5
|
import * as TeamSharingRedux from '@adaptabletools/adaptable/src/Redux/ActionsReducers/TeamSharingRedux';
|
6
6
|
import { EditableConfigEntityState } from '@adaptabletools/adaptable/src/View/Components/SharedProps/EditableConfigEntityState';
|
7
|
-
import { AdaptableObject } from '@adaptabletools/adaptable/src/
|
8
|
-
import { IPushPullReport } from '@adaptabletools/adaptable/src/
|
9
|
-
import { AdaptableSharedEntityConfig } from '@adaptabletools/adaptable/src/
|
7
|
+
import { AdaptableObject } from '@adaptabletools/adaptable/src/AdaptableState/Common/AdaptableObject';
|
8
|
+
import { IPushPullReport } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
9
|
+
import { AdaptableSharedEntityConfig } from '@adaptabletools/adaptable/src/AdaptableState/TeamSharingState';
|
10
10
|
interface IPushPullPopupProps extends ModuleViewPopupProps<IPushPullPopupComponent> {
|
11
11
|
onIPushPullSendSnapshot: (iPushPulleport: IPushPullReport) => IPushPullRedux.IPushPullSendSnapshotAction;
|
12
12
|
onIPushPullStopLiveData: () => IPushPullRedux.IPushPullStopLiveDataAction;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { ViewPanelProps } from '@adaptabletools/adaptable/src/View/Components/SharedProps/ViewPanelProps';
|
2
|
-
import { IPushPullDomain, IPushPullReport, IPushPullSchedule } from '@adaptabletools/adaptable/src/
|
2
|
+
import { IPushPullDomain, IPushPullReport, IPushPullSchedule } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
3
3
|
import * as IPushPullRedux from '../Redux/ActionReducers/IPushPullRedux';
|
4
4
|
import * as PopupRedux from '@adaptabletools/adaptable/src/Redux/ActionsReducers/PopupRedux';
|
5
|
-
import { AdaptableColumn } from '@adaptabletools/adaptable/src/
|
6
|
-
import { Report } from '@adaptabletools/adaptable/src/
|
5
|
+
import { AdaptableColumn } from '@adaptabletools/adaptable/src/AdaptableState/Common/AdaptableColumn';
|
6
|
+
import { Report } from '@adaptabletools/adaptable/src/AdaptableState/ExportState';
|
7
7
|
import * as React from 'react';
|
8
8
|
export interface IPushPullViewPanelComponentProps extends ViewPanelProps {
|
9
9
|
onIPushPullSendSnapshot: (iPushPulleport: IPushPullReport) => IPushPullRedux.IPushPullSendSnapshotAction;
|
package/src/index.d.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
import { AdaptablePlugin } from '@adaptabletools/adaptable/types';
|
2
|
+
import type { Action, Middleware } from 'redux';
|
2
3
|
import * as Redux from 'redux';
|
3
|
-
import { IPushPullState } from '@adaptabletools/adaptable/src/
|
4
|
+
import { IPushPullState } from '@adaptabletools/adaptable/src/AdaptableState/IPushPullState';
|
4
5
|
import { IPushPullApi } from '@adaptabletools/adaptable/src/Api/IPushPullApi';
|
5
6
|
import { IPushPullPluginOptions } from '@adaptabletools/adaptable/src/AdaptableOptions/IPushPullPluginOptions';
|
6
7
|
import { IAdaptable } from '@adaptabletools/adaptable/src/AdaptableInterfaces/IAdaptable';
|
7
|
-
import type { Middleware, Action } from 'redux';
|
8
8
|
declare class IPushPullPlugin extends AdaptablePlugin {
|
9
9
|
options: IPushPullPluginOptions;
|
10
10
|
pluginId: string;
|
package/src/index.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { AdaptablePlugin } from '@adaptabletools/adaptable/types';
|
2
2
|
import env from './env';
|
3
3
|
// TODO in the future, try to put back the version check
|
4
|
-
import {
|
4
|
+
import { name, version } from '../package.json';
|
5
5
|
import { version as coreVersion } from '@adaptabletools/adaptable/package.json';
|
6
6
|
import * as ModuleConstants from '@adaptabletools/adaptable/src/Utilities/Constants/ModuleConstants';
|
7
7
|
import { IPushPullModuleId } from '@adaptabletools/adaptable/src/Utilities/Constants/ModuleConstants';
|