@qandq/cloud-gcs-core 1.2.46 → 1.2.47

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.
@@ -45,7 +45,7 @@ export interface IAircraftApi {
45
45
  */
46
46
  sendPluginCommandWithResponse(identifier: AircraftIdentifier, input: PluginData): Promise<PluginCommandResponseData | null>;
47
47
  /**
48
- * Sends a command to a loaded plugin in the mission controller without waiting for any response.
48
+ * @deprecate(This method will be deprecated on January 1, 2025. Please use sendPluginCommandWithResponse in your plugins instead of this method.)
49
49
  */
50
50
  sendPluginCommand(identifier: AircraftIdentifier, command: string, data: any): void;
51
51
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qandq/cloud-gcs-core",
3
- "version": "1.2.46",
3
+ "version": "1.2.47",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -55,7 +55,7 @@ export interface IAircraftApi {
55
55
  sendPluginCommandWithResponse(identifier: AircraftIdentifier, input: PluginData): Promise<PluginCommandResponseData | null>;
56
56
 
57
57
  /**
58
- * Sends a command to a loaded plugin in the mission controller without waiting for any response.
58
+ * @deprecate(This method will be deprecated on January 1, 2025. Please use sendPluginCommandWithResponse in your plugins instead of this method.)
59
59
  */
60
60
  sendPluginCommand(identifier: AircraftIdentifier, command: string, data: any): void;
61
61