@magic-xpa/engine 4.1300.0-dev4130.177 → 4.1300.0-dev4130.180
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.180",
|
|
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.180",
|
|
8
|
+
"@magic-xpa/utils": "4.1300.0-dev4130.180",
|
|
9
|
+
"@magic-xpa/gui": "4.1300.0-dev4130.180",
|
|
10
10
|
"@angular/common": "^21.1.4",
|
|
11
11
|
"socket.io": "^4.8.3",
|
|
12
12
|
"socket.io-client": "^4.8.3",
|
|
@@ -2734,6 +2734,7 @@ declare class ConstInterface {
|
|
|
2734
2734
|
static MG_TAG_LAST_ROUTE: string;
|
|
2735
2735
|
static RC_TOKEN_CACHED_FILE: string;
|
|
2736
2736
|
static MG_TAG_PUBSUB_SERVER_URI: string;
|
|
2737
|
+
static WC_TOKEN_PUBSUB_SUBSCRIBE: string;
|
|
2737
2738
|
}
|
|
2738
2739
|
|
|
2739
2740
|
declare let CurrentClientVersion: string;
|
|
@@ -4279,6 +4280,7 @@ declare class RemoteCommandsProcessor extends CommandsProcessorBase {
|
|
|
4279
4280
|
PrepareRequest(serializeTasks: boolean): Promise<string>;
|
|
4280
4281
|
ProcessResponse(response: string, currMgdID: number, openingTaskDetails: OpeningTaskDetails, res: IResultValue): Promise<void>;
|
|
4281
4282
|
ProcessRecovery(): Promise<void>;
|
|
4283
|
+
GetSubscriptionTokenFromServer(topics: string[]): Promise<string>;
|
|
4282
4284
|
}
|
|
4283
4285
|
|
|
4284
4286
|
declare class RemoteControlItemsRefreshCommand extends RemoteDataViewCommandBase {
|
|
@@ -4644,7 +4646,7 @@ declare class SubscriberClient {
|
|
|
4644
4646
|
* Subscribe to multiple topics at once
|
|
4645
4647
|
* @param topics Array of topics to subscribe to
|
|
4646
4648
|
*/
|
|
4647
|
-
subscribe(topics: string[]): void;
|
|
4649
|
+
subscribe(topics: string[], token: string): void;
|
|
4648
4650
|
/**
|
|
4649
4651
|
* Unsubscribe from multiple topics at once
|
|
4650
4652
|
* @param topics Array of topics to unsubscribe from
|