@magic-xpa/engine 4.1100.0-dev4110.106 → 4.1100.0-dev4110.109
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/esm2020/index.mjs +188 -2
- package/esm2020/src/AccessHelper.mjs +9 -0
- package/esm2020/src/ClientManager.mjs +399 -0
- package/esm2020/src/CommandsProcessorBase.mjs +58 -0
- package/esm2020/src/CommandsProcessorManager.mjs +26 -0
- package/esm2020/src/CommandsTable.mjs +162 -0
- package/esm2020/src/ConstInterface.mjs +516 -0
- package/esm2020/src/CurrentClientVersion.mjs +2 -0
- package/esm2020/src/FlowMonitorInterface.mjs +16 -0
- package/esm2020/src/GUIManager.mjs +62 -0
- package/esm2020/src/GlobalCommandsManager.mjs +34 -0
- package/esm2020/src/GuiEventsProcessor.mjs +154 -0
- package/esm2020/src/ICommandsTable.mjs +2 -0
- package/esm2020/src/ServerConfig.mjs +117 -0
- package/esm2020/src/bridge/IGuiEvent.mjs +20 -0
- package/esm2020/src/bridge/MagicBridge.mjs +41 -0
- package/esm2020/src/commands/ClientOriginatedCommandTaskTag.mjs +11 -0
- package/esm2020/src/commands/ClientToServer/AddUserLocateDataViewCommand.mjs +9 -0
- package/esm2020/src/commands/ClientToServer/AddUserRangeDataviewCommand.mjs +9 -0
- package/esm2020/src/commands/ClientToServer/AddUserSortDataViewCommand.mjs +9 -0
- package/esm2020/src/commands/ClientToServer/BrowserEscEventCommand.mjs +23 -0
- package/esm2020/src/commands/ClientToServer/ClientOriginatedCommand.mjs +15 -0
- package/esm2020/src/commands/ClientToServer/ClientOriginatedCommandSerializer.mjs +60 -0
- package/esm2020/src/commands/ClientToServer/ColumnSortEventCommand.mjs +26 -0
- package/esm2020/src/commands/ClientToServer/CommandFactory.mjs +260 -0
- package/esm2020/src/commands/ClientToServer/CommandSerializationHelper.mjs +69 -0
- package/esm2020/src/commands/ClientToServer/ComputeEventCommand.mjs +23 -0
- package/esm2020/src/commands/ClientToServer/ContextTerminationEventCommand.mjs +21 -0
- package/esm2020/src/commands/ClientToServer/ContextTimeoutResetCommand.mjs +20 -0
- package/esm2020/src/commands/ClientToServer/ControlItemsRefreshCommand.mjs +8 -0
- package/esm2020/src/commands/ClientToServer/DataViewOutputCommand.mjs +13 -0
- package/esm2020/src/commands/ClientToServer/DataviewCommand.mjs +44 -0
- package/esm2020/src/commands/ClientToServer/EvaluateCommand.mjs +36 -0
- package/esm2020/src/commands/ClientToServer/EventCommand.mjs +40 -0
- package/esm2020/src/commands/ClientToServer/ExecOperCommand.mjs +67 -0
- package/esm2020/src/commands/ClientToServer/FetchDataControlValuesEventCommand.mjs +22 -0
- package/esm2020/src/commands/ClientToServer/GlobalParamsQueryCommand.mjs +11 -0
- package/esm2020/src/commands/ClientToServer/ICommandTaskTag.mjs +2 -0
- package/esm2020/src/commands/ClientToServer/IndexChangeEventCommand.mjs +21 -0
- package/esm2020/src/commands/ClientToServer/IniputForceWriteCommand.mjs +23 -0
- package/esm2020/src/commands/ClientToServer/NonReversibleExitEventCommand.mjs +23 -0
- package/esm2020/src/commands/ClientToServer/QueryCommand.mjs +21 -0
- package/esm2020/src/commands/ClientToServer/RecomputeCommand.mjs +27 -0
- package/esm2020/src/commands/ClientToServer/RefreshEventCommand.mjs +27 -0
- package/esm2020/src/commands/ClientToServer/RefreshScreenEventCommand.mjs +24 -0
- package/esm2020/src/commands/ClientToServer/RollbackEventCommand.mjs +39 -0
- package/esm2020/src/commands/ClientToServer/SelectProgramCommand.mjs +15 -0
- package/esm2020/src/commands/ClientToServer/SetTransactionStateDataviewCommand.mjs +9 -0
- package/esm2020/src/commands/ClientToServer/SubformOpenEventCommand.mjs +21 -0
- package/esm2020/src/commands/ClientToServer/SubformRefreshEventCommand.mjs +24 -0
- package/esm2020/src/commands/ClientToServer/TransactionCommand.mjs +28 -0
- package/esm2020/src/commands/ClientToServer/UnloadCommand.mjs +15 -0
- package/esm2020/src/commands/ClientToServer/WriteMessageToServerLogCommand.mjs +18 -0
- package/esm2020/src/commands/DataViewCommandBase.mjs +10 -0
- package/esm2020/src/commands/IClientCommand.mjs +2 -0
- package/esm2020/src/commands/IClientTargetedCommand.mjs +9 -0
- package/esm2020/src/commands/IClientToServerCommandInfo.mjs +2 -0
- package/esm2020/src/commands/ServerToClient/AbortCommand.mjs +65 -0
- package/esm2020/src/commands/ServerToClient/AddLocateCommand.mjs +22 -0
- package/esm2020/src/commands/ServerToClient/AddRangeCommand.mjs +62 -0
- package/esm2020/src/commands/ServerToClient/AddSortCommand.mjs +33 -0
- package/esm2020/src/commands/ServerToClient/ClientRefreshCommand.mjs +25 -0
- package/esm2020/src/commands/ServerToClient/ClientTargetedCommandBase.mjs +27 -0
- package/esm2020/src/commands/ServerToClient/EnhancedVerifyCommand.mjs +45 -0
- package/esm2020/src/commands/ServerToClient/OpenURLCommand.mjs +221 -0
- package/esm2020/src/commands/ServerToClient/ResetLocateCommand.mjs +15 -0
- package/esm2020/src/commands/ServerToClient/ResetRangeCommand.mjs +15 -0
- package/esm2020/src/commands/ServerToClient/ResetSortCommand.mjs +15 -0
- package/esm2020/src/commands/ServerToClient/ResultCommand.mjs +37 -0
- package/esm2020/src/commands/ServerToClient/VerifyCommand.mjs +83 -0
- package/esm2020/src/commands/ServerToClient/XMLBasedCommandBuilder.mjs +132 -0
- package/esm2020/src/communications/IConnectionStateManager.mjs +2 -0
- package/esm2020/src/communications/InteractiveCommunicationsFailureHandler.mjs +17 -0
- package/esm2020/src/data/DataSourceIdKey.mjs +3 -0
- package/esm2020/src/data/DataView.mjs +1610 -0
- package/esm2020/src/data/DataViewBase.mjs +4 -0
- package/esm2020/src/data/DataviewManager.mjs +28 -0
- package/esm2020/src/data/DataviewManagerBase.mjs +15 -0
- package/esm2020/src/data/DvCache.mjs +67 -0
- package/esm2020/src/data/Field.mjs +646 -0
- package/esm2020/src/data/FieldBase.mjs +18 -0
- package/esm2020/src/data/FieldsTable.mjs +103 -0
- package/esm2020/src/data/IRecordsTable.mjs +2 -0
- package/esm2020/src/data/Key.mjs +88 -0
- package/esm2020/src/data/Record.mjs +846 -0
- package/esm2020/src/data/RecordOutOfDataViewException.mjs +16 -0
- package/esm2020/src/data/RecordsTable.mjs +267 -0
- package/esm2020/src/data/TaskTransactionManager.mjs +103 -0
- package/esm2020/src/data/XMLBasedDcValuesBuilder.mjs +74 -0
- package/esm2020/src/enums.mjs +24 -0
- package/esm2020/src/env/EnvVariablesTable.mjs +340 -0
- package/esm2020/src/env/Environment.mjs +489 -0
- package/esm2020/src/env/ILanguageData.mjs +2 -0
- package/esm2020/src/env/LanguageData.mjs +226 -0
- package/esm2020/src/env/MirrorString.mjs +65 -0
- package/esm2020/src/event/ActionManager.mjs +91 -0
- package/esm2020/src/event/Event.mjs +1333 -0
- package/esm2020/src/event/EventHandler.mjs +766 -0
- package/esm2020/src/event/EventHandlerPosition.mjs +204 -0
- package/esm2020/src/event/EventsManager.mjs +2975 -0
- package/esm2020/src/event/IEventsManager.mjs +7 -0
- package/esm2020/src/event/RunTimeEvent.mjs +392 -0
- package/esm2020/src/event/RunTimeEventBase.mjs +4 -0
- package/esm2020/src/event/UserEventsTable.mjs +47 -0
- package/esm2020/src/exp/ExpTable.mjs +59 -0
- package/esm2020/src/exp/Expression.mjs +200 -0
- package/esm2020/src/exp/ExpressionDict.mjs +727 -0
- package/esm2020/src/exp/ExpressionEvaluator.mjs +4208 -0
- package/esm2020/src/exp/ExpressionLocalJpn.mjs +314 -0
- package/esm2020/src/exp/GlobalParamsTable.mjs +85 -0
- package/esm2020/src/exp/YesNoExp.mjs +36 -0
- package/esm2020/src/gui/CreatedFormVector.mjs +23 -0
- package/esm2020/src/gui/FormsTable.mjs +66 -0
- package/esm2020/src/gui/MgControl.mjs +353 -0
- package/esm2020/src/gui/MgForm.mjs +1181 -0
- package/esm2020/src/http/HttpManager.mjs +97 -0
- package/esm2020/src/http/client/HttpClientAsync.mjs +67 -0
- package/esm2020/src/http/client/HttpClientBase.mjs +132 -0
- package/esm2020/src/http/client/HttpClientEvents.mjs +39 -0
- package/esm2020/src/http/client/HttpClientSync.mjs +42 -0
- package/esm2020/src/http/client/HttpUtility.mjs +84 -0
- package/esm2020/src/http/client/ICommunicationsFailureHandler.mjs +2 -0
- package/esm2020/src/remote/AddUserLocateRemoteDataViewCommand.mjs +18 -0
- package/esm2020/src/remote/AddUserRangeRemoteDataViewCommand.mjs +18 -0
- package/esm2020/src/remote/AddUserSortRemoteDataViewCommand.mjs +18 -0
- package/esm2020/src/remote/RemoteCommandsProcessor.mjs +880 -0
- package/esm2020/src/remote/RemoteControlItemsRefreshCommand.mjs +25 -0
- package/esm2020/src/remote/RemoteDataViewCommandBase.mjs +24 -0
- package/esm2020/src/remote/RemoteDataViewCommandFactory.mjs +61 -0
- package/esm2020/src/remote/RemoteDataViewCommandUpdateNonModifiable.mjs +16 -0
- package/esm2020/src/remote/RemoteDataviewManager.mjs +17 -0
- package/esm2020/src/remote/RemoteInitDataViewCommand.mjs +11 -0
- package/esm2020/src/remote/ResetUserLocateRemoteDataviewCommand.mjs +17 -0
- package/esm2020/src/remote/ResetUserRangeRemoteDataviewCommand.mjs +13 -0
- package/esm2020/src/remote/ResetUserSortRemoteDataviewCommand.mjs +16 -0
- package/esm2020/src/remote/ServerError.mjs +40 -0
- package/esm2020/src/remote/SetTransactionStateRemoteDataViewCommand.mjs +20 -0
- package/esm2020/src/rt/Argument.mjs +265 -0
- package/esm2020/src/rt/ArgumentsList.mjs +103 -0
- package/esm2020/src/rt/Boundary.mjs +152 -0
- package/esm2020/src/rt/CompMainPrgTable.mjs +65 -0
- package/esm2020/src/rt/DataviewHeaderBase.mjs +96 -0
- package/esm2020/src/rt/DataviewHeaderFactory.mjs +7 -0
- package/esm2020/src/rt/DataviewHeaders.mjs +53 -0
- package/esm2020/src/rt/DataviewHeadersSaxHandler.mjs +38 -0
- package/esm2020/src/rt/ExecutionStack.mjs +94 -0
- package/esm2020/src/rt/ExecutionStackEntry.mjs +17 -0
- package/esm2020/src/rt/HandlersTable.mjs +96 -0
- package/esm2020/src/rt/IDataSourceViewDefinition.mjs +2 -0
- package/esm2020/src/rt/IDataviewHeader.mjs +2 -0
- package/esm2020/src/rt/IResultValue.mjs +2 -0
- package/esm2020/src/rt/LastFocusedManager.mjs +67 -0
- package/esm2020/src/rt/Operation.mjs +735 -0
- package/esm2020/src/rt/OperationTable.mjs +67 -0
- package/esm2020/src/rt/Recompute.mjs +355 -0
- package/esm2020/src/rt/RecomputeTable.mjs +63 -0
- package/esm2020/src/rt/RemoteDataviewHeader.mjs +108 -0
- package/esm2020/src/rt/ResultValue.mjs +12 -0
- package/esm2020/src/rt/TableCache.mjs +177 -0
- package/esm2020/src/rt/TableCacheManager.mjs +67 -0
- package/esm2020/src/rt/Transaction.mjs +53 -0
- package/esm2020/src/security/UserDetails.mjs +71 -0
- package/esm2020/src/tasks/IMGDataCollection.mjs +2 -0
- package/esm2020/src/tasks/MGData.mjs +552 -0
- package/esm2020/src/tasks/MGDataCollection.mjs +252 -0
- package/esm2020/src/tasks/RCTimer.mjs +63 -0
- package/esm2020/src/tasks/RemoteTaskService.mjs +45 -0
- package/esm2020/src/tasks/Task.mjs +2496 -0
- package/esm2020/src/tasks/TaskBase.mjs +87 -0
- package/esm2020/src/tasks/TaskServiceBase.mjs +25 -0
- package/esm2020/src/tasks/TasksTable.mjs +80 -0
- package/esm2020/src/tasks/sort/Sort.mjs +7 -0
- package/esm2020/src/tasks/sort/SortCollection.mjs +67 -0
- package/esm2020/src/util/ConstUtils.mjs +14 -0
- package/esm2020/src/util/FlowMonitorQueue.mjs +453 -0
- package/esm2020/src/util/HeapSort.mjs +70 -0
- package/esm2020/src/util/IMirrorXML.mjs +2 -0
- package/esm2020/src/util/IServerConfig.mjs +2 -0
- package/esm2020/src/util/MgBlockingQueue.mjs +2 -0
- package/esm2020/src/util/MgPriorityBlockingQueue.mjs +74 -0
- package/esm2020/src/util/MgPriorityQueue.mjs +66 -0
- package/esm2020/src/util/ParamParseResult.mjs +8 -0
- package/esm2020/src/util/PrmMap.mjs +151 -0
- package/esm2020/src/util/ReturnResult.mjs +46 -0
- package/esm2020/src/util/ReturnResultBase.mjs +18 -0
- package/esm2020/src/util/Scrambler.mjs +89 -0
- package/esm2020/src/util/UniqueIDUtils.mjs +12 -0
- package/esm2020/src/util/cookie.service.mjs +92 -0
- package/fesm2015/magic-xpa-engine.mjs +30835 -0
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +30004 -0
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/index.d.ts +187 -1
- package/package.json +4 -4
- package/src/AccessHelper.d.ts +20 -0
- package/src/ClientManager.d.ts +32 -0
- package/src/CommandsProcessorBase.d.ts +23 -0
- package/src/CommandsProcessorManager.d.ts +6 -0
- package/src/CommandsTable.d.ts +22 -0
- package/src/ConstInterface.d.ts +515 -0
- package/src/CurrentClientVersion.d.ts +1 -0
- package/src/FlowMonitorInterface.d.ts +15 -0
- package/src/GUIManager.d.ts +17 -0
- package/src/GlobalCommandsManager.d.ts +17 -0
- package/src/GuiEventsProcessor.d.ts +24 -0
- package/src/ICommandsTable.d.ts +9 -0
- package/src/ServerConfig.d.ts +34 -0
- package/src/bridge/IGuiEvent.d.ts +19 -0
- package/src/bridge/MagicBridge.d.ts +16 -0
- package/src/commands/ClientOriginatedCommandTaskTag.d.ts +8 -0
- package/src/commands/ClientToServer/AddUserLocateDataViewCommand.d.ts +4 -0
- package/src/commands/ClientToServer/AddUserRangeDataviewCommand.d.ts +6 -0
- package/src/commands/ClientToServer/AddUserSortDataViewCommand.d.ts +6 -0
- package/src/commands/ClientToServer/BrowserEscEventCommand.d.ts +8 -0
- package/src/commands/ClientToServer/ClientOriginatedCommand.d.ts +8 -0
- package/src/commands/ClientToServer/ClientOriginatedCommandSerializer.d.ts +6 -0
- package/src/commands/ClientToServer/ColumnSortEventCommand.d.ts +10 -0
- package/src/commands/ClientToServer/CommandFactory.d.ts +64 -0
- package/src/commands/ClientToServer/CommandSerializationHelper.d.ts +20 -0
- package/src/commands/ClientToServer/ComputeEventCommand.d.ts +8 -0
- package/src/commands/ClientToServer/ContextTerminationEventCommand.d.ts +7 -0
- package/src/commands/ClientToServer/ContextTimeoutResetCommand.d.ts +7 -0
- package/src/commands/ClientToServer/ControlItemsRefreshCommand.d.ts +6 -0
- package/src/commands/ClientToServer/DataViewOutputCommand.d.ts +9 -0
- package/src/commands/ClientToServer/DataviewCommand.d.ts +32 -0
- package/src/commands/ClientToServer/EvaluateCommand.d.ts +15 -0
- package/src/commands/ClientToServer/EventCommand.d.ts +15 -0
- package/src/commands/ClientToServer/ExecOperCommand.d.ts +23 -0
- package/src/commands/ClientToServer/FetchDataControlValuesEventCommand.d.ts +8 -0
- package/src/commands/ClientToServer/GlobalParamsQueryCommand.d.ts +5 -0
- package/src/commands/ClientToServer/ICommandTaskTag.d.ts +3 -0
- package/src/commands/ClientToServer/IndexChangeEventCommand.d.ts +8 -0
- package/src/commands/ClientToServer/IniputForceWriteCommand.d.ts +10 -0
- package/src/commands/ClientToServer/NonReversibleExitEventCommand.d.ts +8 -0
- package/src/commands/ClientToServer/QueryCommand.d.ts +8 -0
- package/src/commands/ClientToServer/RecomputeCommand.d.ts +11 -0
- package/src/commands/ClientToServer/RefreshEventCommand.d.ts +12 -0
- package/src/commands/ClientToServer/RefreshScreenEventCommand.d.ts +10 -0
- package/src/commands/ClientToServer/RollbackEventCommand.d.ts +14 -0
- package/src/commands/ClientToServer/SelectProgramCommand.d.ts +6 -0
- package/src/commands/ClientToServer/SetTransactionStateDataviewCommand.d.ts +5 -0
- package/src/commands/ClientToServer/SubformOpenEventCommand.d.ts +8 -0
- package/src/commands/ClientToServer/SubformRefreshEventCommand.d.ts +9 -0
- package/src/commands/ClientToServer/TransactionCommand.d.ts +12 -0
- package/src/commands/ClientToServer/UnloadCommand.d.ts +7 -0
- package/src/commands/ClientToServer/WriteMessageToServerLogCommand.d.ts +6 -0
- package/src/commands/DataViewCommandBase.d.ts +6 -0
- package/src/commands/IClientCommand.d.ts +2 -0
- package/src/commands/IClientTargetedCommand.d.ts +12 -0
- package/src/commands/IClientToServerCommandInfo.d.ts +3 -0
- package/src/commands/ServerToClient/AbortCommand.d.ts +11 -0
- package/src/commands/ServerToClient/AddLocateCommand.d.ts +6 -0
- package/src/commands/ServerToClient/AddRangeCommand.d.ts +10 -0
- package/src/commands/ServerToClient/AddSortCommand.d.ts +9 -0
- package/src/commands/ServerToClient/ClientRefreshCommand.d.ts +7 -0
- package/src/commands/ServerToClient/ClientTargetedCommandBase.d.ts +12 -0
- package/src/commands/ServerToClient/EnhancedVerifyCommand.d.ts +13 -0
- package/src/commands/ServerToClient/OpenURLCommand.d.ts +21 -0
- package/src/commands/ServerToClient/ResetLocateCommand.d.ts +6 -0
- package/src/commands/ServerToClient/ResetRangeCommand.d.ts +6 -0
- package/src/commands/ServerToClient/ResetSortCommand.d.ts +6 -0
- package/src/commands/ServerToClient/ResultCommand.d.ts +10 -0
- package/src/commands/ServerToClient/VerifyCommand.d.ts +17 -0
- package/src/commands/ServerToClient/XMLBasedCommandBuilder.d.ts +11 -0
- package/src/communications/IConnectionStateManager.d.ts +4 -0
- package/src/communications/InteractiveCommunicationsFailureHandler.d.ts +6 -0
- package/src/data/DataSourceIdKey.d.ts +2 -0
- package/src/data/DataView.d.ts +162 -0
- package/src/data/DataViewBase.d.ts +12 -0
- package/src/data/DataviewManager.d.ts +14 -0
- package/src/data/DataviewManagerBase.d.ts +11 -0
- package/src/data/DvCache.d.ts +15 -0
- package/src/data/Field.d.ts +103 -0
- package/src/data/FieldBase.d.ts +23 -0
- package/src/data/FieldsTable.d.ts +27 -0
- package/src/data/IRecordsTable.d.ts +7 -0
- package/src/data/Key.d.ts +15 -0
- package/src/data/Record.d.ts +156 -0
- package/src/data/RecordOutOfDataViewException.d.ts +10 -0
- package/src/data/RecordsTable.d.ts +38 -0
- package/src/data/TaskTransactionManager.d.ts +17 -0
- package/src/data/XMLBasedDcValuesBuilder.d.ts +11 -0
- package/src/enums.d.ts +21 -0
- package/src/env/EnvVariablesTable.d.ts +17 -0
- package/src/env/Environment.d.ts +118 -0
- package/src/env/ILanguageData.d.ts +3 -0
- package/src/env/LanguageData.d.ts +20 -0
- package/src/env/MirrorString.d.ts +15 -0
- package/src/event/ActionManager.d.ts +14 -0
- package/src/event/Event.d.ts +79 -0
- package/src/event/EventHandler.d.ts +66 -0
- package/src/event/EventHandlerPosition.d.ts +25 -0
- package/src/event/EventsManager.d.ts +204 -0
- package/src/event/IEventsManager.d.ts +77 -0
- package/src/event/RunTimeEvent.d.ts +123 -0
- package/src/event/RunTimeEventBase.d.ts +5 -0
- package/src/event/UserEventsTable.d.ts +11 -0
- package/src/exp/ExpTable.d.ts +11 -0
- package/src/exp/Expression.d.ts +37 -0
- package/src/exp/ExpressionDict.d.ts +12 -0
- package/src/exp/ExpressionEvaluator.d.ts +198 -0
- package/src/exp/ExpressionLocalJpn.d.ts +18 -0
- package/src/exp/GlobalParamsTable.d.ts +19 -0
- package/src/exp/YesNoExp.d.ts +9 -0
- package/src/gui/CreatedFormVector.d.ts +10 -0
- package/src/gui/FormsTable.d.ts +15 -0
- package/src/gui/MgControl.d.ts +60 -0
- package/src/gui/MgForm.d.ts +93 -0
- package/src/http/HttpManager.d.ts +25 -0
- package/src/http/client/HttpClientAsync.d.ts +16 -0
- package/src/http/client/HttpClientBase.d.ts +30 -0
- package/src/http/client/HttpClientEvents.d.ts +18 -0
- package/src/http/client/HttpClientSync.d.ts +17 -0
- package/src/http/client/HttpUtility.d.ts +10 -0
- package/src/http/client/ICommunicationsFailureHandler.d.ts +5 -0
- package/src/remote/AddUserLocateRemoteDataViewCommand.d.ts +8 -0
- package/src/remote/AddUserRangeRemoteDataViewCommand.d.ts +8 -0
- package/src/remote/AddUserSortRemoteDataViewCommand.d.ts +8 -0
- package/src/remote/RemoteCommandsProcessor.d.ts +51 -0
- package/src/remote/RemoteControlItemsRefreshCommand.d.ts +8 -0
- package/src/remote/RemoteDataViewCommandBase.d.ts +10 -0
- package/src/remote/RemoteDataViewCommandFactory.d.ts +6 -0
- package/src/remote/RemoteDataViewCommandUpdateNonModifiable.d.ts +8 -0
- package/src/remote/RemoteDataviewManager.d.ts +9 -0
- package/src/remote/RemoteInitDataViewCommand.d.ts +7 -0
- package/src/remote/ResetUserLocateRemoteDataviewCommand.d.ts +7 -0
- package/src/remote/ResetUserRangeRemoteDataviewCommand.d.ts +7 -0
- package/src/remote/ResetUserSortRemoteDataviewCommand.d.ts +7 -0
- package/src/remote/ServerError.d.ts +16 -0
- package/src/remote/SetTransactionStateRemoteDataViewCommand.d.ts +8 -0
- package/src/rt/Argument.d.ts +36 -0
- package/src/rt/ArgumentsList.d.ts +24 -0
- package/src/rt/Boundary.d.ts +27 -0
- package/src/rt/CompMainPrgTable.d.ts +10 -0
- package/src/rt/DataviewHeaderBase.d.ts +34 -0
- package/src/rt/DataviewHeaderFactory.d.ts +5 -0
- package/src/rt/DataviewHeaders.d.ts +12 -0
- package/src/rt/DataviewHeadersSaxHandler.d.ts +10 -0
- package/src/rt/ExecutionStack.d.ts +22 -0
- package/src/rt/ExecutionStackEntry.d.ts +7 -0
- package/src/rt/HandlersTable.d.ts +19 -0
- package/src/rt/IDataSourceViewDefinition.d.ts +6 -0
- package/src/rt/IDataviewHeader.d.ts +10 -0
- package/src/rt/IResultValue.d.ts +4 -0
- package/src/rt/LastFocusedManager.d.ts +23 -0
- package/src/rt/Operation.d.ts +97 -0
- package/src/rt/OperationTable.d.ts +15 -0
- package/src/rt/Recompute.d.ts +41 -0
- package/src/rt/RecomputeTable.d.ts +9 -0
- package/src/rt/RemoteDataviewHeader.d.ts +14 -0
- package/src/rt/ResultValue.d.ts +7 -0
- package/src/rt/TableCache.d.ts +29 -0
- package/src/rt/TableCacheManager.d.ts +10 -0
- package/src/rt/Transaction.d.ts +23 -0
- package/src/security/UserDetails.d.ts +16 -0
- package/src/tasks/IMGDataCollection.d.ts +26 -0
- package/src/tasks/MGData.d.ts +63 -0
- package/src/tasks/MGDataCollection.d.ts +42 -0
- package/src/tasks/RCTimer.d.ts +13 -0
- package/src/tasks/RemoteTaskService.d.ts +16 -0
- package/src/tasks/Task.d.ts +312 -0
- package/src/tasks/TaskBase.d.ts +123 -0
- package/src/tasks/TaskServiceBase.d.ts +16 -0
- package/src/tasks/TasksTable.d.ts +21 -0
- package/src/tasks/sort/Sort.d.ts +4 -0
- package/src/tasks/sort/SortCollection.d.ts +11 -0
- package/src/util/ConstUtils.d.ts +3 -0
- package/src/util/FlowMonitorQueue.d.ts +70 -0
- package/src/util/HeapSort.d.ts +6 -0
- package/src/util/IMirrorXML.d.ts +6 -0
- package/src/util/IServerConfig.d.ts +11 -0
- package/src/util/MgBlockingQueue.d.ts +5 -0
- package/src/util/MgPriorityBlockingQueue.d.ts +17 -0
- package/src/util/MgPriorityQueue.d.ts +13 -0
- package/src/util/ParamParseResult.d.ts +6 -0
- package/src/util/PrmMap.d.ts +28 -0
- package/src/util/ReturnResult.d.ts +18 -0
- package/src/util/ReturnResultBase.d.ts +11 -0
- package/src/util/Scrambler.d.ts +10 -0
- package/src/util/UniqueIDUtils.d.ts +4 -0
- package/src/util/cookie.service.d.ts +8 -0
@@ -0,0 +1,8 @@
|
|
1
|
+
import { EventCommand } from './EventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class BrowserEscEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
CloseSubformOnly: boolean;
|
5
|
+
constructor();
|
6
|
+
SerializeCommandData(): string;
|
7
|
+
getCommandInfo(): string;
|
8
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { IClientCommand } from "../IClientCommand";
|
2
|
+
export declare abstract class ClientOriginatedCommand implements IClientCommand {
|
3
|
+
abstract get CommandTypeAttribute(): string;
|
4
|
+
get ShouldSerialize(): boolean;
|
5
|
+
get ShouldSerializeRecords(): boolean;
|
6
|
+
SerializeCommandData(): string;
|
7
|
+
SerializeDataAfterCommand(): string;
|
8
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { MGData } from "../../tasks/MGData";
|
2
|
+
import { ClientOriginatedCommand } from "./ClientOriginatedCommand";
|
3
|
+
export declare class ClientOriginatedCommandSerializer {
|
4
|
+
static Serialize(cmd: ClientOriginatedCommand, currMGData: MGData): string;
|
5
|
+
static SerializeRecords(currMGData: MGData): string;
|
6
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { EventCommand } from './EventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class ColumnSortEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
FldId: number;
|
5
|
+
DitIdx: number;
|
6
|
+
Direction: number;
|
7
|
+
constructor();
|
8
|
+
SerializeCommandData(): string;
|
9
|
+
getCommandInfo(): string;
|
10
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
import { MgControlBase } from '@magic-xpa/gui';
|
2
|
+
import { StorageAttribute } from '@magic-xpa/utils';
|
3
|
+
import { EventCommand } from './EventCommand';
|
4
|
+
import { RollbackEventCommand, RollbackEventCommand_RollbackType } from './RollbackEventCommand';
|
5
|
+
import { DataviewCommand, DataViewCommandType } from './DataviewCommand';
|
6
|
+
import { Task } from '../../tasks/Task';
|
7
|
+
import { UserRange } from '../../tasks/TaskBase';
|
8
|
+
import { AddUserRangeDataviewCommand } from './AddUserRangeDataviewCommand';
|
9
|
+
import { Sort } from '../../tasks/sort/Sort';
|
10
|
+
import { AddUserSortDataViewCommand } from './AddUserSortDataViewCommand';
|
11
|
+
import { AddUserLocateDataViewCommand } from './AddUserLocateDataViewCommand';
|
12
|
+
import { SetTransactionStateDataviewCommand } from './SetTransactionStateDataviewCommand';
|
13
|
+
import { RefreshEventCommand } from './RefreshEventCommand';
|
14
|
+
import { ArgumentsList } from '../../rt/ArgumentsList';
|
15
|
+
import { FetchDataControlValuesEventCommand } from './FetchDataControlValuesEventCommand';
|
16
|
+
import { SubformRefreshEventCommand } from './SubformRefreshEventCommand';
|
17
|
+
import { BrowserEscEventCommand } from './BrowserEscEventCommand';
|
18
|
+
import { IndexChangeEventCommand } from './IndexChangeEventCommand';
|
19
|
+
import { ColumnSortEventCommand } from './ColumnSortEventCommand';
|
20
|
+
import { RefreshScreenEventCommand } from './RefreshScreenEventCommand';
|
21
|
+
import { SubformOpenEventCommand } from './SubformOpenEventCommand';
|
22
|
+
import { ComputeEventCommand } from './ComputeEventCommand';
|
23
|
+
import { NonReversibleExitEventCommand } from './NonReversibleExitEventCommand';
|
24
|
+
import { RecomputeCommand } from './RecomputeCommand';
|
25
|
+
import { TransactionCommand } from './TransactionCommand';
|
26
|
+
import { UnloadCommand } from './UnloadCommand';
|
27
|
+
import { ExecOperCommand } from './ExecOperCommand';
|
28
|
+
import { EvaluateCommand } from './EvaluateCommand';
|
29
|
+
import { GlobalParamsQueryCommand } from './GlobalParamsQueryCommand';
|
30
|
+
import { IniputForceWriteCommand } from './IniputForceWriteCommand';
|
31
|
+
import { ContextTerminationEventCommand } from './ContextTerminationEventCommand';
|
32
|
+
import { ContextTimeoutResetCommand } from './ContextTimeoutResetCommand';
|
33
|
+
import { ControlItemsRefreshCommand } from './ControlItemsRefreshCommand';
|
34
|
+
export declare class CommandFactory {
|
35
|
+
static CreateEventCommand(taskTag: string, magicEvent: number): EventCommand;
|
36
|
+
static CreateRollbackEventCommand(taskTag: string, rollbackType: RollbackEventCommand_RollbackType): RollbackEventCommand;
|
37
|
+
static CreateDataViewCommand(taskId: string, commandType: DataViewCommandType): DataviewCommand;
|
38
|
+
static CreateControlItemsRefreshCommand(taskId: string, control: MgControlBase): ControlItemsRefreshCommand;
|
39
|
+
static CreateAddUserRangeDataviewCommand(taskId: string, userRange: UserRange): AddUserRangeDataviewCommand;
|
40
|
+
static CreateAddUserSortDataviewCommand(taskId: string, sort: Sort): AddUserSortDataViewCommand;
|
41
|
+
static CreateAddUserLocateDataviewCommand(taskId: string, userRange: UserRange): AddUserLocateDataViewCommand;
|
42
|
+
static CreateSetTransactionStateDataviewCommand(taskId: string, transactionIsOpened: boolean): SetTransactionStateDataviewCommand;
|
43
|
+
static CreateInternalRefreshCommand(taskId: string, magicEvent: number, currentRecId: number, currentRow: number): RefreshEventCommand;
|
44
|
+
static CreateRealRefreshCommand(taskId: string, magicEvent: number, currentRow: number, argList: ArgumentsList, currentRecId: number): Promise<RefreshEventCommand>;
|
45
|
+
static CreatecFetchDataControlValuesCommand(taskTag: string, controlName: string): FetchDataControlValuesEventCommand;
|
46
|
+
static CreateSubformRefreshCommand(taskTag: string, subformTaskTag: string, explicitSubformRefresh: boolean): SubformRefreshEventCommand;
|
47
|
+
static CreateSubformOpenCommand(taskTag: string, subformDitIdx: number): SubformOpenEventCommand;
|
48
|
+
static CreateScreenRefreshCommand(taskTag: string, topRecIdx: number, clientRecId: number): RefreshScreenEventCommand;
|
49
|
+
static CreateColumnSortCommand(taskTag: string, direction: number, ditIdx: number, fieldId: number, recId: number): ColumnSortEventCommand;
|
50
|
+
static CreateIndexChangeCommand(taskTag: string, recId: number, argList: ArgumentsList): Promise<IndexChangeEventCommand>;
|
51
|
+
static CreateBrowserEscEventCommand(taskTag: string, closeSubformOnly: boolean): BrowserEscEventCommand;
|
52
|
+
static CreateComputeEventCommand(taskTag: string, subforms: boolean, clientRecId: number): ComputeEventCommand;
|
53
|
+
static CreateContextTerminationEventCommand(taskTag: string): ContextTerminationEventCommand;
|
54
|
+
static CreateContextTimeoutResetEventCommand(): ContextTimeoutResetCommand;
|
55
|
+
static CreateNonReversibleExitCommand(taskTag: string, closeSubformOnly: boolean): NonReversibleExitEventCommand;
|
56
|
+
static CreateRecomputeCommand(taskTag: string, fieldId: number, ignoreSubformRecompute: boolean): RecomputeCommand;
|
57
|
+
static CreateTransactionCommand(oper: string, taskTag: string, cReversibleExit: boolean, level: string): TransactionCommand;
|
58
|
+
static CreateUnloadCommand(): UnloadCommand;
|
59
|
+
static CreateExecOperCommand(taskTag: string, handlerId: string, operIdx: number, ditIdx: number, value: string): ExecOperCommand;
|
60
|
+
static CreateSelectProgramCommand(taskTag: string, handlerId: string, operIdx: number, ditIdx: number, value: string): ExecOperCommand;
|
61
|
+
static CreateEvaluateCommand(taskTag: string, expType: StorageAttribute, expIdx: number, expValLen: number, mprgCreator: Task): EvaluateCommand;
|
62
|
+
static CreateQueryGlobalParamsCommand(): GlobalParamsQueryCommand;
|
63
|
+
static CreateIniputForceWriteCommand(param: string): IniputForceWriteCommand;
|
64
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { ViewRefreshMode } from "@magic-xpa/utils";
|
2
|
+
import { Operation } from "../../rt/Operation";
|
3
|
+
export declare class CommandSerializationHelper {
|
4
|
+
private message;
|
5
|
+
GetString(): string;
|
6
|
+
SerializeTaskTag(taskTag: string): void;
|
7
|
+
SerializeFldId(fldId: number): void;
|
8
|
+
SerializeDitIdx(ditIdx: number): void;
|
9
|
+
SerializeRouteParams(operation: Operation): void;
|
10
|
+
SerializeRefreshMode(refreshMode: ViewRefreshMode): void;
|
11
|
+
SerializeMagicEvent(magicEvent: number): void;
|
12
|
+
SerializeCloseSubformOnly(closeSubformOnly: boolean): void;
|
13
|
+
SerializeKeyIndex(keyIndex: number): void;
|
14
|
+
SerializeAttribute(attribute: string, value: string): void;
|
15
|
+
SerializeAttribute(attribute: string, value: number): void;
|
16
|
+
SerializeAttribute(attribute: string, value: string): void;
|
17
|
+
private SerializeAttribute_0;
|
18
|
+
private SerializeAttribute_1;
|
19
|
+
private SerializeAttribute_2;
|
20
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { EventCommand } from "./EventCommand";
|
2
|
+
import { IClientToServerCommandInfo } from "../IClientToServerCommandInfo";
|
3
|
+
export declare class ComputeEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
Subforms: boolean;
|
5
|
+
constructor();
|
6
|
+
SerializeCommandData(): string;
|
7
|
+
getCommandInfo(): string;
|
8
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { EventCommand } from "./EventCommand";
|
2
|
+
import { IClientToServerCommandInfo } from "../IClientToServerCommandInfo";
|
3
|
+
export declare class ContextTerminationEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
constructor();
|
5
|
+
SerializeCommandData(): string;
|
6
|
+
getCommandInfo(): string;
|
7
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { EventCommand } from './EventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class ContextTimeoutResetCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
constructor();
|
5
|
+
SerializeCommandData(): string;
|
6
|
+
getCommandInfo(): string;
|
7
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { DataviewCommand, DataViewCommandType } from "./DataviewCommand";
|
2
|
+
export declare class DataViewOutputCommand extends DataviewCommand {
|
3
|
+
Generation: number;
|
4
|
+
TaskVarNames: string;
|
5
|
+
DestinationDataSourceNumber: number;
|
6
|
+
DestinationDataSourceName: string;
|
7
|
+
DestinationColumns: string;
|
8
|
+
constructor(OutputCommandType: DataViewCommandType);
|
9
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { ClientOriginatedCommandTaskTag } from "../ClientOriginatedCommandTaskTag";
|
2
|
+
export declare enum DataViewCommandType {
|
3
|
+
Init = 0,
|
4
|
+
Clear = 1,
|
5
|
+
Prepare = 2,
|
6
|
+
FirstChunk = 3,
|
7
|
+
RecomputeUnit = 4,
|
8
|
+
ExecuteLocalUpdates = 5,
|
9
|
+
InitDataControlViews = 6,
|
10
|
+
OpenTransaction = 7,
|
11
|
+
CloseTransaction = 8,
|
12
|
+
SetTransactionState = 9,
|
13
|
+
AddUserRange = 10,
|
14
|
+
ResetUserRange = 11,
|
15
|
+
DbDisconnect = 12,
|
16
|
+
AddUserLocate = 13,
|
17
|
+
ResetUserLocate = 14,
|
18
|
+
AddUserSort = 15,
|
19
|
+
ResetUserSort = 16,
|
20
|
+
DataViewToDataSource = 17,
|
21
|
+
DbDelete = 18,
|
22
|
+
ControlItemsRefresh = 19,
|
23
|
+
SQLExecute = 20
|
24
|
+
}
|
25
|
+
export declare class DataviewCommand extends ClientOriginatedCommandTaskTag {
|
26
|
+
CommandType: DataViewCommandType;
|
27
|
+
TaskTag: string;
|
28
|
+
get CommandTypeAttribute(): string;
|
29
|
+
SerializeCommandData(): string;
|
30
|
+
get ShouldSerialize(): boolean;
|
31
|
+
constructor();
|
32
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { StorageAttribute } from '@magic-xpa/utils';
|
2
|
+
import { Task } from '../../tasks/Task';
|
3
|
+
import { ClientOriginatedCommandTaskTag } from '../ClientOriginatedCommandTaskTag';
|
4
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
5
|
+
export declare class EvaluateCommand extends ClientOriginatedCommandTaskTag implements IClientToServerCommandInfo {
|
6
|
+
TaskTag: string;
|
7
|
+
ExpIdx: number;
|
8
|
+
ExpType: StorageAttribute;
|
9
|
+
LengthExpVal: number;
|
10
|
+
MprgCreator: Task;
|
11
|
+
get CommandTypeAttribute(): string;
|
12
|
+
constructor();
|
13
|
+
SerializeCommandData(): string;
|
14
|
+
getCommandInfo(): string;
|
15
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { Task } from "../../tasks/Task";
|
2
|
+
import { ClientOriginatedCommandTaskTag } from "../ClientOriginatedCommandTaskTag";
|
3
|
+
import { IClientToServerCommandInfo } from "../IClientToServerCommandInfo";
|
4
|
+
export declare class EventCommand extends ClientOriginatedCommandTaskTag implements IClientToServerCommandInfo {
|
5
|
+
TaskTag: string;
|
6
|
+
MagicEvent: number;
|
7
|
+
ClientRecId: number;
|
8
|
+
get CommandTypeAttribute(): string;
|
9
|
+
get EventDescription(): string;
|
10
|
+
get Task(): Task;
|
11
|
+
get ShouldSerialize(): boolean;
|
12
|
+
constructor(magicEvent: number);
|
13
|
+
SerializeCommandData(): string;
|
14
|
+
getCommandInfo(): string;
|
15
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { ExecutionStack } from "../../rt/ExecutionStack";
|
2
|
+
import { Operation } from "../../rt/Operation";
|
3
|
+
import { Task } from "../../tasks/Task";
|
4
|
+
import { ClientOriginatedCommandTaskTag } from "../ClientOriginatedCommandTaskTag";
|
5
|
+
import { IClientToServerCommandInfo } from "../IClientToServerCommandInfo";
|
6
|
+
export declare class ExecOperCommand extends ClientOriginatedCommandTaskTag implements IClientToServerCommandInfo {
|
7
|
+
ExecutionStack: ExecutionStack;
|
8
|
+
TaskTag: string;
|
9
|
+
HandlerId: string;
|
10
|
+
OperIdx: number;
|
11
|
+
DitIdx: number;
|
12
|
+
Val: string;
|
13
|
+
MprgCreator: Task;
|
14
|
+
Operation: Operation;
|
15
|
+
CheckOnly: boolean;
|
16
|
+
get CommandTypeAttribute(): string;
|
17
|
+
constructor();
|
18
|
+
SerializeCommandData(): string;
|
19
|
+
SetExecutionStack(execStack: ExecutionStack): void;
|
20
|
+
SerializeDataAfterCommand(): string;
|
21
|
+
getCommandInfo(): string;
|
22
|
+
getTask(): Task;
|
23
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { EventCommand } from './EventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class FetchDataControlValuesEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
ControlName: string;
|
5
|
+
constructor();
|
6
|
+
SerializeCommandData(): string;
|
7
|
+
getCommandInfo(): string;
|
8
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { EventCommand } from './EventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class IndexChangeEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
KeyIndex: number;
|
5
|
+
constructor();
|
6
|
+
SerializeCommandData(): string;
|
7
|
+
getCommandInfo(): string;
|
8
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { ClientOriginatedCommand } from "./ClientOriginatedCommand";
|
2
|
+
import { IClientToServerCommandInfo } from "../IClientToServerCommandInfo";
|
3
|
+
export declare class IniputForceWriteCommand extends ClientOriginatedCommand implements IClientToServerCommandInfo {
|
4
|
+
Text: string;
|
5
|
+
get CommandTypeAttribute(): string;
|
6
|
+
get ShouldSerializeRecords(): boolean;
|
7
|
+
SerializeCommandData(): string;
|
8
|
+
constructor();
|
9
|
+
getCommandInfo(): string;
|
10
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { EventCommand } from './EventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class NonReversibleExitEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
CloseSubformOnly: boolean;
|
5
|
+
constructor();
|
6
|
+
SerializeCommandData(): string;
|
7
|
+
getCommandInfo(): string;
|
8
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { ClientOriginatedCommand } from "./ClientOriginatedCommand";
|
2
|
+
export declare abstract class QueryCommand extends ClientOriginatedCommand {
|
3
|
+
get CommandTypeAttribute(): string;
|
4
|
+
get ShouldSerializeRecords(): boolean;
|
5
|
+
SerializeCommandData(): string;
|
6
|
+
abstract SerializeQueryCommandData(): string;
|
7
|
+
constructor();
|
8
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { ClientOriginatedCommandTaskTag } from '../ClientOriginatedCommandTaskTag';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class RecomputeCommand extends ClientOriginatedCommandTaskTag implements IClientToServerCommandInfo {
|
4
|
+
TaskTag: string;
|
5
|
+
FldId: number;
|
6
|
+
IgnoreSubformRecompute: boolean;
|
7
|
+
get CommandTypeAttribute(): string;
|
8
|
+
SerializeCommandData(): string;
|
9
|
+
constructor();
|
10
|
+
getCommandInfo(): string;
|
11
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { ViewRefreshMode } from '@magic-xpa/utils';
|
2
|
+
import { EventCommand } from './EventCommand';
|
3
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
4
|
+
export declare class RefreshEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
5
|
+
RefreshMode: ViewRefreshMode;
|
6
|
+
KeepUserSort: boolean;
|
7
|
+
CurrentRecordRow: number;
|
8
|
+
IsInternalRefresh: boolean;
|
9
|
+
constructor(magicEvent: number);
|
10
|
+
SerializeCommandData(): string;
|
11
|
+
getCommandInfo(): string;
|
12
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { ViewRefreshMode } from '@magic-xpa/utils';
|
2
|
+
import { EventCommand } from './EventCommand';
|
3
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
4
|
+
export declare class RefreshScreenEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
5
|
+
TopRecIdx: number;
|
6
|
+
RefreshMode: ViewRefreshMode;
|
7
|
+
constructor();
|
8
|
+
SerializeCommandData(): string;
|
9
|
+
getCommandInfo(): string;
|
10
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { EventCommand } from './EventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare enum RollbackEventCommand_RollbackType {
|
4
|
+
NONE = " ",
|
5
|
+
CANCEL = "C",
|
6
|
+
ROLLBACK = "R"
|
7
|
+
}
|
8
|
+
export declare class RollbackEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
9
|
+
Rollback: RollbackEventCommand_RollbackType;
|
10
|
+
constructor();
|
11
|
+
SerializeCommandData(): string;
|
12
|
+
private getRollbackTypeString;
|
13
|
+
getCommandInfo(): string;
|
14
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { EventCommand } from './EventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class SubformOpenEventCommand extends EventCommand implements IClientToServerCommandInfo {
|
4
|
+
DitIdx: number;
|
5
|
+
constructor();
|
6
|
+
SerializeCommandData(): string;
|
7
|
+
getCommandInfo(): string;
|
8
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { RefreshEventCommand } from './RefreshEventCommand';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class SubformRefreshEventCommand extends RefreshEventCommand implements IClientToServerCommandInfo {
|
4
|
+
SubformTaskTag: string;
|
5
|
+
ExplicitSubformRefresh: boolean;
|
6
|
+
constructor();
|
7
|
+
SerializeCommandData(): string;
|
8
|
+
getCommandInfo(): string;
|
9
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { ClientOriginatedCommandTaskTag } from '../ClientOriginatedCommandTaskTag';
|
2
|
+
import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
|
3
|
+
export declare class TransactionCommand extends ClientOriginatedCommandTaskTag implements IClientToServerCommandInfo {
|
4
|
+
TaskTag: string;
|
5
|
+
Oper: string;
|
6
|
+
ReversibleExit: boolean;
|
7
|
+
Level: string;
|
8
|
+
get CommandTypeAttribute(): string;
|
9
|
+
SerializeCommandData(): string;
|
10
|
+
constructor();
|
11
|
+
getCommandInfo(): string;
|
12
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { ClientOriginatedCommand } from "./ClientOriginatedCommand";
|
2
|
+
import { IClientToServerCommandInfo } from "../IClientToServerCommandInfo";
|
3
|
+
export declare class UnloadCommand extends ClientOriginatedCommand implements IClientToServerCommandInfo {
|
4
|
+
get CommandTypeAttribute(): string;
|
5
|
+
constructor();
|
6
|
+
getCommandInfo(): string;
|
7
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { IClientCommand } from "./IClientCommand";
|
2
|
+
import { IResultValue } from "../rt/IResultValue";
|
3
|
+
export declare abstract class IClientTargetedCommand implements IClientCommand {
|
4
|
+
abstract get IsBlocking(): any;
|
5
|
+
Frame: number;
|
6
|
+
TaskTag: string;
|
7
|
+
Obj: string;
|
8
|
+
shouldExecute: boolean;
|
9
|
+
get ShouldExecute(): boolean;
|
10
|
+
Execute(res: IResultValue): Promise<void>;
|
11
|
+
abstract HandleAttribute(attribute: string, value: string): void;
|
12
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { ClientTargetedCommandBase } from "./ClientTargetedCommandBase";
|
2
|
+
import { IResultValue } from "../../rt/IResultValue";
|
3
|
+
export declare class AbortCommand extends ClientTargetedCommandBase {
|
4
|
+
private _transOwner;
|
5
|
+
constructor();
|
6
|
+
constructor(taskTag: string);
|
7
|
+
private constructor_0;
|
8
|
+
private constructor_1;
|
9
|
+
Execute(res: IResultValue): Promise<void>;
|
10
|
+
HandleAttribute(attribute: string, value: string): void;
|
11
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { ClientTargetedCommandBase } from "./ClientTargetedCommandBase";
|
2
|
+
import { IResultValue } from "../../rt/IResultValue";
|
3
|
+
import { UserRange } from "../../tasks/TaskBase";
|
4
|
+
export declare class AddRangeCommand extends ClientTargetedCommandBase {
|
5
|
+
UserRange: UserRange;
|
6
|
+
constructor();
|
7
|
+
get ShouldExecute(): boolean;
|
8
|
+
Execute(res: IResultValue): Promise<void>;
|
9
|
+
HandleAttribute(attribute: string, value: string): void;
|
10
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { ClientTargetedCommandBase } from "./ClientTargetedCommandBase";
|
2
|
+
import { Sort } from "../../tasks/sort/Sort";
|
3
|
+
import { IResultValue } from "../../rt/IResultValue";
|
4
|
+
export declare class AddSortCommand extends ClientTargetedCommandBase {
|
5
|
+
UserSort: Sort;
|
6
|
+
constructor();
|
7
|
+
Execute(res: IResultValue): Promise<void>;
|
8
|
+
HandleAttribute(attribute: string, value: string): void;
|
9
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { ClientTargetedCommandBase } from "./ClientTargetedCommandBase";
|
2
|
+
import { IResultValue } from "../../rt/IResultValue";
|
3
|
+
export declare class ClientRefreshCommand extends ClientTargetedCommandBase {
|
4
|
+
static ClientIsInRollbackCommand: boolean;
|
5
|
+
constructor();
|
6
|
+
Execute(res: IResultValue): Promise<void>;
|
7
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { IClientTargetedCommand } from "../IClientTargetedCommand";
|
2
|
+
import { IClientCommand } from "../IClientCommand";
|
3
|
+
import { IResultValue } from "../../rt/IResultValue";
|
4
|
+
export declare abstract class ClientTargetedCommandBase extends IClientTargetedCommand implements IClientCommand {
|
5
|
+
get IsBlocking(): boolean;
|
6
|
+
Frame: number;
|
7
|
+
TaskTag: string;
|
8
|
+
Obj: string;
|
9
|
+
get ShouldExecute(): boolean;
|
10
|
+
Execute(res: IResultValue): Promise<void>;
|
11
|
+
HandleAttribute(attribute: string, value: string): void;
|
12
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { RefParam } from "@magic-xpa/mscorelib";
|
2
|
+
import { VerifyCommand } from "./VerifyCommand";
|
3
|
+
import { Task } from "../../tasks/Task";
|
4
|
+
export declare class EnhancedVerifyCommand extends VerifyCommand {
|
5
|
+
private _buttonsID;
|
6
|
+
private _image;
|
7
|
+
private _returnValStr;
|
8
|
+
private _returnVal;
|
9
|
+
ProcessMessageBoxResponse(task: Task, returnValue: number): Promise<void>;
|
10
|
+
PrepareMessageBoxForDisplay(task: Task, mlsTransTitle: RefParam<string>, style: RefParam<number>): void;
|
11
|
+
HandleAttribute(attribute: string, value: string): void;
|
12
|
+
constructor();
|
13
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import { ClientTargetedCommandBase } from "./ClientTargetedCommandBase";
|
2
|
+
import { IResultValue } from "../../rt/IResultValue";
|
3
|
+
export declare class OpenURLCommand extends ClientTargetedCommandBase {
|
4
|
+
private _callingTaskTag;
|
5
|
+
private _pathParentTaskTag;
|
6
|
+
private _subformCtrlName;
|
7
|
+
private _ditIdx;
|
8
|
+
private _isModal;
|
9
|
+
private _transOwner;
|
10
|
+
private _newId;
|
11
|
+
private _forceModal;
|
12
|
+
private _key;
|
13
|
+
private _varList;
|
14
|
+
private _isRoute;
|
15
|
+
NewTaskXML: string;
|
16
|
+
static createNewCommandsTable: any;
|
17
|
+
constructor();
|
18
|
+
get IsBlocking(): boolean;
|
19
|
+
Execute(res: IResultValue): Promise<void>;
|
20
|
+
HandleAttribute(attribute: string, value: string): void;
|
21
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { ClientTargetedCommandBase } from './ClientTargetedCommandBase';
|
2
|
+
import { IResultValue } from '../../rt/IResultValue';
|
3
|
+
export declare class ResetLocateCommand extends ClientTargetedCommandBase {
|
4
|
+
constructor();
|
5
|
+
Execute(res: IResultValue): Promise<void>;
|
6
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { ClientTargetedCommandBase } from './ClientTargetedCommandBase';
|
2
|
+
import { IResultValue } from '../../rt/IResultValue';
|
3
|
+
export declare class ResetRangeCommand extends ClientTargetedCommandBase {
|
4
|
+
constructor();
|
5
|
+
Execute(res: IResultValue): Promise<void>;
|
6
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { ClientTargetedCommandBase } from './ClientTargetedCommandBase';
|
2
|
+
import { IResultValue } from '../../rt/IResultValue';
|
3
|
+
export declare class ResetSortCommand extends ClientTargetedCommandBase {
|
4
|
+
constructor();
|
5
|
+
Execute(res: IResultValue): Promise<void>;
|
6
|
+
}
|