@magic-xpa/engine 4.1300.0-dev4130.182 → 4.1300.0-dev4130.184
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
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/engine",
|
|
3
|
-
"version": "4.1300.0-dev4130.
|
|
3
|
+
"version": "4.1300.0-dev4130.184",
|
|
4
4
|
"description": "magic engine package",
|
|
5
5
|
"license": "SEE LICENSE IN EULA.pdf",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@magic-xpa/mscorelib": "4.1300.0-dev4130.
|
|
8
|
-
"@magic-xpa/utils": "4.1300.0-dev4130.
|
|
9
|
-
"@magic-xpa/gui": "4.1300.0-dev4130.
|
|
7
|
+
"@magic-xpa/mscorelib": "4.1300.0-dev4130.184",
|
|
8
|
+
"@magic-xpa/utils": "4.1300.0-dev4130.184",
|
|
9
|
+
"@magic-xpa/gui": "4.1300.0-dev4130.184",
|
|
10
10
|
"@angular/common": "^21.1.4",
|
|
11
11
|
"socket.io": "^4.8.3",
|
|
12
12
|
"socket.io-client": "^4.8.3",
|
|
@@ -4,6 +4,7 @@ import { StorageAttribute, XmlParser, CallOperationMode, MgControlType, TableBeh
|
|
|
4
4
|
import { Subject } from 'rxjs/internal/Subject';
|
|
5
5
|
import { HttpClient, HttpHeaders, HttpResponse } from '@angular/common/http';
|
|
6
6
|
import { Subject as Subject$1 } from 'rxjs';
|
|
7
|
+
import { Socket } from 'socket.io-client';
|
|
7
8
|
|
|
8
9
|
declare enum EventSubType {
|
|
9
10
|
Normal = 0,
|
|
@@ -4281,6 +4282,7 @@ declare class RemoteCommandsProcessor extends CommandsProcessorBase {
|
|
|
4281
4282
|
ProcessResponse(response: string, currMgdID: number, openingTaskDetails: OpeningTaskDetails, res: IResultValue): Promise<void>;
|
|
4282
4283
|
ProcessRecovery(): Promise<void>;
|
|
4283
4284
|
GetSubscriptionTokenFromServer(topics: string[]): Promise<string>;
|
|
4285
|
+
SubscribeTopics(topics: Set<string>, socket: Socket): Promise<void>;
|
|
4284
4286
|
}
|
|
4285
4287
|
|
|
4286
4288
|
declare class RemoteControlItemsRefreshCommand extends RemoteDataViewCommandBase {
|
|
@@ -4637,6 +4639,7 @@ declare class SubscriberClient {
|
|
|
4637
4639
|
private static instance;
|
|
4638
4640
|
private socket;
|
|
4639
4641
|
private subscribedTopics;
|
|
4642
|
+
static SubscribeTopics_Event: (topics: Set<string>, socket: Socket) => Promise<void>;
|
|
4640
4643
|
private constructor();
|
|
4641
4644
|
/**
|
|
4642
4645
|
* Get the singleton instance of SubscriberClient
|
|
@@ -4662,6 +4665,7 @@ declare class SubscriberClient {
|
|
|
4662
4665
|
* TODO: To be called when client explicitly disconnects from the server.
|
|
4663
4666
|
*/
|
|
4664
4667
|
disconnect(): void;
|
|
4668
|
+
static SubscribeTopics(topics: Set<string>, socket: Socket): Promise<void>;
|
|
4665
4669
|
}
|
|
4666
4670
|
|
|
4667
4671
|
declare class UniqueIDUtils {
|