@headwindsimulations/api-client 1.2.2 → 1.3.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.
@@ -0,0 +1,13 @@
1
+ export declare class CpdlcMessage {
2
+ Logon: string;
3
+ From: string;
4
+ To: string;
5
+ Type: string;
6
+ Packet: string | null;
7
+ }
8
+ export declare class BeyondAtcResponse {
9
+ response: string;
10
+ }
11
+ export declare class BeyondAtc {
12
+ static sendRequest(message: CpdlcMessage): Promise<BeyondAtcResponse>;
13
+ }
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@headwindsimulations/api-client",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "Client library for the Headwind Simulations API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",