@headwindsimulations/api-client 1.3.0 → 1.3.1

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.
@@ -5,9 +5,9 @@ export declare class CpdlcMessage {
5
5
  Type: string;
6
6
  Packet: string | null;
7
7
  }
8
- export declare class BeyondAtcResponse {
8
+ export declare class Response {
9
9
  response: string;
10
10
  }
11
- export declare class BeyondAtc {
12
- static sendRequest(message: CpdlcMessage): Promise<BeyondAtcResponse>;
11
+ export declare class BeyondATC {
12
+ static sendRequest(message: CpdlcMessage): Promise<Response>;
13
13
  }
@@ -1,2 +1,3 @@
1
1
  export * from './Hoppie';
2
2
  export * from './SayIntentions';
3
+ export * from './BeyondAtc';
package/dist/index.esm.js CHANGED
@@ -59,6 +59,24 @@ var SayIntentions = /** @class */ (function () {
59
59
  return SayIntentions;
60
60
  }());
61
61
 
62
+ var BeyondATC = /** @class */ (function () {
63
+ function BeyondATC() {
64
+ }
65
+ BeyondATC.sendRequest = function (message) {
66
+ var url = new URL('/connect.html', 'http://localhost:57698');
67
+ // Query-Parameter setzen (URLSearchParams kümmert sich ums Escaping)
68
+ url.searchParams.set('logon', message.Logon);
69
+ url.searchParams.set('from', message.From);
70
+ url.searchParams.set('to', message.To);
71
+ url.searchParams.set('type', message.Type);
72
+ if (message.Packet) {
73
+ url.searchParams.set('packet', message.Packet);
74
+ }
75
+ return get(url);
76
+ };
77
+ return BeyondATC;
78
+ }());
79
+
62
80
  var NXApi = /** @class */ (function () {
63
81
  function NXApi() {
64
82
  }
@@ -66,5 +84,5 @@ var NXApi = /** @class */ (function () {
66
84
  return NXApi;
67
85
  }());
68
86
 
69
- export { Hoppie, NXApi, SayIntentions };
87
+ export { BeyondATC, Hoppie, NXApi, SayIntentions };
70
88
  //# sourceMappingURL=index.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":["../src/utils/index.ts","../src/apis/Hoppie.ts","../src/apis/SayIntentions.ts","../src/index.ts"],"sourcesContent":["import axios from 'axios';\n\nexport function get<T>(url: URL, headers?: any): Promise<T> {\n return axios.get<T>(url.href, { headers })\n .then((res) => res.data);\n}\n\nexport function del(url: URL, headers?: any): Promise<void> {\n return axios.delete(url.href, { headers })\n .then((res) => res.data);\n}\n\nexport function post<T>(url: URL, body: any, headers?: any): Promise<T> {\n const headersToSend = {\n 'Content-Type': 'application/json',\n ...headers,\n };\n\n return axios.post<T>(url.href, body, { headers: headersToSend })\n .then((res) => res.data);\n}\n\nexport function put<T>(url: URL, body: any, headers?: any): Promise<T> {\n const headersToSend = {\n 'Content-Type': 'application/json',\n ...headers,\n };\n\n return axios.put<T>(url.href, body, { headers: headersToSend })\n .then((res) => res.data);\n}\n","import { NXApi } from '../index';\nimport { post } from '../utils';\n\nexport declare class HoppieResponse {\n response: string;\n}\n\nexport class Hoppie {\n public static sendRequest(body: any): Promise<HoppieResponse> {\n return post<HoppieResponse>(new URL('/api/v1/hoppie', NXApi.url), body);\n }\n}\n","import { NXApi } from \"../index\";\nimport { post, get } from \"../utils\";\n\nexport declare class SayIntentionsResponse {\n response: string;\n}\n\nexport declare class SayIntentionsValidateResponse {\n isValid: boolean;\n flightId: string;\n}\n\nexport class SayIntentions {\n public static sendRequest(body: any): Promise<SayIntentionsResponse> {\n return post<SayIntentionsResponse>(new URL('/api/v1/sayintentions', NXApi.url), body);\n }\n\n public static validateKey(\n key: string\n ): Promise<SayIntentionsValidateResponse> {\n const url = new URL(\"/api/v1/sayintentions/_validate\", NXApi.url);\n url.searchParams.set(\"key\", key);\n \n return get<SayIntentionsValidateResponse>(url);\n }\n}\n\n","export class NXApi {\n public static url = new URL('https://api.headwindsim.net');\n}\n\nexport * from './apis';\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;SAEgB,GAAG,CAAI,GAAQ,EAAE,OAAa;IAC1C,OAAO,KAAK,CAAC,GAAG,CAAI,GAAG,CAAC,IAAI,EAAE,EAAE,OAAO,SAAA,EAAE,CAAC;SACrC,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,GAAA,CAAC,CAAC;AACjC,CAAC;SAOe,IAAI,CAAI,GAAQ,EAAE,IAAS,EAAE,OAAa;IACtD,IAAM,aAAa,cACf,cAAc,EAAE,kBAAkB,IAC/B,OAAO,CACb,CAAC;IAEF,OAAO,KAAK,CAAC,IAAI,CAAI,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,CAAC;SAC3D,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,GAAA,CAAC,CAAC;AACjC;;;ICbA;KAIC;IAHiB,kBAAW,GAAzB,UAA0B,IAAS;QAC/B,OAAO,IAAI,CAAiB,IAAI,GAAG,CAAC,gBAAgB,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;KAC3E;IACL,aAAC;AAAD,CAAC;;;ICCD;KAaC;IAZe,yBAAW,GAAzB,UAA0B,IAAS;QAC/B,OAAO,IAAI,CAAwB,IAAI,GAAG,CAAC,uBAAuB,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;KACzF;IAEa,yBAAW,GAAzB,UACI,GAAW;QAEX,IAAM,GAAG,GAAG,IAAI,GAAG,CAAC,iCAAiC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;QAClE,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QAEjC,OAAO,GAAG,CAAgC,GAAG,CAAC,CAAC;KAChD;IACL,oBAAC;AAAD,CAAC;;;ICzBD;KAEC;IADiB,SAAG,GAAG,IAAI,GAAG,CAAC,6BAA6B,CAAC,CAAC;IAC/D,YAAC;CAFD;;;;"}
1
+ {"version":3,"file":"index.esm.js","sources":["../src/utils/index.ts","../src/apis/Hoppie.ts","../src/apis/SayIntentions.ts","../src/apis/BeyondAtc.ts","../src/index.ts"],"sourcesContent":["import axios from 'axios';\n\nexport function get<T>(url: URL, headers?: any): Promise<T> {\n return axios.get<T>(url.href, { headers })\n .then((res) => res.data);\n}\n\nexport function del(url: URL, headers?: any): Promise<void> {\n return axios.delete(url.href, { headers })\n .then((res) => res.data);\n}\n\nexport function post<T>(url: URL, body: any, headers?: any): Promise<T> {\n const headersToSend = {\n 'Content-Type': 'application/json',\n ...headers,\n };\n\n return axios.post<T>(url.href, body, { headers: headersToSend })\n .then((res) => res.data);\n}\n\nexport function put<T>(url: URL, body: any, headers?: any): Promise<T> {\n const headersToSend = {\n 'Content-Type': 'application/json',\n ...headers,\n };\n\n return axios.put<T>(url.href, body, { headers: headersToSend })\n .then((res) => res.data);\n}\n","import { NXApi } from '../index';\nimport { post } from '../utils';\n\nexport declare class HoppieResponse {\n response: string;\n}\n\nexport class Hoppie {\n public static sendRequest(body: any): Promise<HoppieResponse> {\n return post<HoppieResponse>(new URL('/api/v1/hoppie', NXApi.url), body);\n }\n}\n","import { NXApi } from \"../index\";\nimport { post, get } from \"../utils\";\n\nexport declare class SayIntentionsResponse {\n response: string;\n}\n\nexport declare class SayIntentionsValidateResponse {\n isValid: boolean;\n flightId: string;\n}\n\nexport class SayIntentions {\n public static sendRequest(body: any): Promise<SayIntentionsResponse> {\n return post<SayIntentionsResponse>(new URL('/api/v1/sayintentions', NXApi.url), body);\n }\n\n public static validateKey(\n key: string\n ): Promise<SayIntentionsValidateResponse> {\n const url = new URL(\"/api/v1/sayintentions/_validate\", NXApi.url);\n url.searchParams.set(\"key\", key);\n \n return get<SayIntentionsValidateResponse>(url);\n }\n}\n\n","import { get } from \"../utils\";\n\nexport declare class CpdlcMessage {\n Logon: string;\n From: string;\n To: string;\n Type: string;\n Packet: string | null;\n}\n\nexport declare class Response {\n response: string;\n}\n\nexport class BeyondATC {\n public static sendRequest(message: CpdlcMessage): Promise<Response> {\n const url = new URL('/connect.html', 'http://localhost:57698');\n\n // Query-Parameter setzen (URLSearchParams kümmert sich ums Escaping)\n url.searchParams.set('logon', message.Logon);\n url.searchParams.set('from', message.From);\n url.searchParams.set('to', message.To);\n url.searchParams.set('type', message.Type);\n\n if (message.Packet) {\n url.searchParams.set('packet', message.Packet);\n }\n\n return get<Response>(url);\n }\n}\n\n","export class NXApi {\n public static url = new URL('https://api.headwindsim.net');\n}\n\nexport * from './apis';\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;SAEgB,GAAG,CAAI,GAAQ,EAAE,OAAa;IAC1C,OAAO,KAAK,CAAC,GAAG,CAAI,GAAG,CAAC,IAAI,EAAE,EAAE,OAAO,SAAA,EAAE,CAAC;SACrC,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,GAAA,CAAC,CAAC;AACjC,CAAC;SAOe,IAAI,CAAI,GAAQ,EAAE,IAAS,EAAE,OAAa;IACtD,IAAM,aAAa,cACf,cAAc,EAAE,kBAAkB,IAC/B,OAAO,CACb,CAAC;IAEF,OAAO,KAAK,CAAC,IAAI,CAAI,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,CAAC;SAC3D,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,GAAA,CAAC,CAAC;AACjC;;;ICbA;KAIC;IAHiB,kBAAW,GAAzB,UAA0B,IAAS;QAC/B,OAAO,IAAI,CAAiB,IAAI,GAAG,CAAC,gBAAgB,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;KAC3E;IACL,aAAC;AAAD,CAAC;;;ICCD;KAaC;IAZe,yBAAW,GAAzB,UAA0B,IAAS;QAC/B,OAAO,IAAI,CAAwB,IAAI,GAAG,CAAC,uBAAuB,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;KACzF;IAEa,yBAAW,GAAzB,UACI,GAAW;QAEX,IAAM,GAAG,GAAG,IAAI,GAAG,CAAC,iCAAiC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;QAClE,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QAEjC,OAAO,GAAG,CAAgC,GAAG,CAAC,CAAC;KAChD;IACL,oBAAC;AAAD,CAAC;;;ICXD;KAgBC;IAfe,qBAAW,GAAzB,UAA0B,OAAqB;QAC3C,IAAM,GAAG,GAAG,IAAI,GAAG,CAAC,eAAe,EAAE,wBAAwB,CAAC,CAAC;;QAG/D,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;QAC7C,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;QAC3C,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,CAAC,CAAC;QACvC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;QAE3C,IAAI,OAAO,CAAC,MAAM,EAAE;YAClB,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,QAAQ,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;SAChD;QAED,OAAO,GAAG,CAAW,GAAG,CAAC,CAAC;KAC7B;IACH,gBAAC;AAAD,CAAC;;;IC9BD;KAEC;IADiB,SAAG,GAAG,IAAI,GAAG,CAAC,6BAA6B,CAAC,CAAC;IAC/D,YAAC;CAFD;;;;"}
package/dist/index.js CHANGED
@@ -67,6 +67,24 @@ var SayIntentions = /** @class */ (function () {
67
67
  return SayIntentions;
68
68
  }());
69
69
 
70
+ var BeyondATC = /** @class */ (function () {
71
+ function BeyondATC() {
72
+ }
73
+ BeyondATC.sendRequest = function (message) {
74
+ var url = new URL('/connect.html', 'http://localhost:57698');
75
+ // Query-Parameter setzen (URLSearchParams kümmert sich ums Escaping)
76
+ url.searchParams.set('logon', message.Logon);
77
+ url.searchParams.set('from', message.From);
78
+ url.searchParams.set('to', message.To);
79
+ url.searchParams.set('type', message.Type);
80
+ if (message.Packet) {
81
+ url.searchParams.set('packet', message.Packet);
82
+ }
83
+ return get(url);
84
+ };
85
+ return BeyondATC;
86
+ }());
87
+
70
88
  var NXApi = /** @class */ (function () {
71
89
  function NXApi() {
72
90
  }
@@ -74,6 +92,7 @@ var NXApi = /** @class */ (function () {
74
92
  return NXApi;
75
93
  }());
76
94
 
95
+ exports.BeyondATC = BeyondATC;
77
96
  exports.Hoppie = Hoppie;
78
97
  exports.NXApi = NXApi;
79
98
  exports.SayIntentions = SayIntentions;
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/utils/index.ts","../src/apis/Hoppie.ts","../src/apis/SayIntentions.ts","../src/index.ts"],"sourcesContent":["import axios from 'axios';\n\nexport function get<T>(url: URL, headers?: any): Promise<T> {\n return axios.get<T>(url.href, { headers })\n .then((res) => res.data);\n}\n\nexport function del(url: URL, headers?: any): Promise<void> {\n return axios.delete(url.href, { headers })\n .then((res) => res.data);\n}\n\nexport function post<T>(url: URL, body: any, headers?: any): Promise<T> {\n const headersToSend = {\n 'Content-Type': 'application/json',\n ...headers,\n };\n\n return axios.post<T>(url.href, body, { headers: headersToSend })\n .then((res) => res.data);\n}\n\nexport function put<T>(url: URL, body: any, headers?: any): Promise<T> {\n const headersToSend = {\n 'Content-Type': 'application/json',\n ...headers,\n };\n\n return axios.put<T>(url.href, body, { headers: headersToSend })\n .then((res) => res.data);\n}\n","import { NXApi } from '../index';\nimport { post } from '../utils';\n\nexport declare class HoppieResponse {\n response: string;\n}\n\nexport class Hoppie {\n public static sendRequest(body: any): Promise<HoppieResponse> {\n return post<HoppieResponse>(new URL('/api/v1/hoppie', NXApi.url), body);\n }\n}\n","import { NXApi } from \"../index\";\nimport { post, get } from \"../utils\";\n\nexport declare class SayIntentionsResponse {\n response: string;\n}\n\nexport declare class SayIntentionsValidateResponse {\n isValid: boolean;\n flightId: string;\n}\n\nexport class SayIntentions {\n public static sendRequest(body: any): Promise<SayIntentionsResponse> {\n return post<SayIntentionsResponse>(new URL('/api/v1/sayintentions', NXApi.url), body);\n }\n\n public static validateKey(\n key: string\n ): Promise<SayIntentionsValidateResponse> {\n const url = new URL(\"/api/v1/sayintentions/_validate\", NXApi.url);\n url.searchParams.set(\"key\", key);\n \n return get<SayIntentionsValidateResponse>(url);\n }\n}\n\n","export class NXApi {\n public static url = new URL('https://api.headwindsim.net');\n}\n\nexport * from './apis';\n"],"names":["axios"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAEgB,GAAG,CAAI,GAAQ,EAAE,OAAa;IAC1C,OAAOA,yBAAK,CAAC,GAAG,CAAI,GAAG,CAAC,IAAI,EAAE,EAAE,OAAO,SAAA,EAAE,CAAC;SACrC,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,GAAA,CAAC,CAAC;AACjC,CAAC;SAOe,IAAI,CAAI,GAAQ,EAAE,IAAS,EAAE,OAAa;IACtD,IAAM,aAAa,cACf,cAAc,EAAE,kBAAkB,IAC/B,OAAO,CACb,CAAC;IAEF,OAAOA,yBAAK,CAAC,IAAI,CAAI,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,CAAC;SAC3D,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,GAAA,CAAC,CAAC;AACjC;;;ICbA;KAIC;IAHiB,kBAAW,GAAzB,UAA0B,IAAS;QAC/B,OAAO,IAAI,CAAiB,IAAI,GAAG,CAAC,gBAAgB,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;KAC3E;IACL,aAAC;AAAD,CAAC;;;ICCD;KAaC;IAZe,yBAAW,GAAzB,UAA0B,IAAS;QAC/B,OAAO,IAAI,CAAwB,IAAI,GAAG,CAAC,uBAAuB,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;KACzF;IAEa,yBAAW,GAAzB,UACI,GAAW;QAEX,IAAM,GAAG,GAAG,IAAI,GAAG,CAAC,iCAAiC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;QAClE,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QAEjC,OAAO,GAAG,CAAgC,GAAG,CAAC,CAAC;KAChD;IACL,oBAAC;AAAD,CAAC;;;ICzBD;KAEC;IADiB,SAAG,GAAG,IAAI,GAAG,CAAC,6BAA6B,CAAC,CAAC;IAC/D,YAAC;CAFD;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../src/utils/index.ts","../src/apis/Hoppie.ts","../src/apis/SayIntentions.ts","../src/apis/BeyondAtc.ts","../src/index.ts"],"sourcesContent":["import axios from 'axios';\n\nexport function get<T>(url: URL, headers?: any): Promise<T> {\n return axios.get<T>(url.href, { headers })\n .then((res) => res.data);\n}\n\nexport function del(url: URL, headers?: any): Promise<void> {\n return axios.delete(url.href, { headers })\n .then((res) => res.data);\n}\n\nexport function post<T>(url: URL, body: any, headers?: any): Promise<T> {\n const headersToSend = {\n 'Content-Type': 'application/json',\n ...headers,\n };\n\n return axios.post<T>(url.href, body, { headers: headersToSend })\n .then((res) => res.data);\n}\n\nexport function put<T>(url: URL, body: any, headers?: any): Promise<T> {\n const headersToSend = {\n 'Content-Type': 'application/json',\n ...headers,\n };\n\n return axios.put<T>(url.href, body, { headers: headersToSend })\n .then((res) => res.data);\n}\n","import { NXApi } from '../index';\nimport { post } from '../utils';\n\nexport declare class HoppieResponse {\n response: string;\n}\n\nexport class Hoppie {\n public static sendRequest(body: any): Promise<HoppieResponse> {\n return post<HoppieResponse>(new URL('/api/v1/hoppie', NXApi.url), body);\n }\n}\n","import { NXApi } from \"../index\";\nimport { post, get } from \"../utils\";\n\nexport declare class SayIntentionsResponse {\n response: string;\n}\n\nexport declare class SayIntentionsValidateResponse {\n isValid: boolean;\n flightId: string;\n}\n\nexport class SayIntentions {\n public static sendRequest(body: any): Promise<SayIntentionsResponse> {\n return post<SayIntentionsResponse>(new URL('/api/v1/sayintentions', NXApi.url), body);\n }\n\n public static validateKey(\n key: string\n ): Promise<SayIntentionsValidateResponse> {\n const url = new URL(\"/api/v1/sayintentions/_validate\", NXApi.url);\n url.searchParams.set(\"key\", key);\n \n return get<SayIntentionsValidateResponse>(url);\n }\n}\n\n","import { get } from \"../utils\";\n\nexport declare class CpdlcMessage {\n Logon: string;\n From: string;\n To: string;\n Type: string;\n Packet: string | null;\n}\n\nexport declare class Response {\n response: string;\n}\n\nexport class BeyondATC {\n public static sendRequest(message: CpdlcMessage): Promise<Response> {\n const url = new URL('/connect.html', 'http://localhost:57698');\n\n // Query-Parameter setzen (URLSearchParams kümmert sich ums Escaping)\n url.searchParams.set('logon', message.Logon);\n url.searchParams.set('from', message.From);\n url.searchParams.set('to', message.To);\n url.searchParams.set('type', message.Type);\n\n if (message.Packet) {\n url.searchParams.set('packet', message.Packet);\n }\n\n return get<Response>(url);\n }\n}\n\n","export class NXApi {\n public static url = new URL('https://api.headwindsim.net');\n}\n\nexport * from './apis';\n"],"names":["axios"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAEgB,GAAG,CAAI,GAAQ,EAAE,OAAa;IAC1C,OAAOA,yBAAK,CAAC,GAAG,CAAI,GAAG,CAAC,IAAI,EAAE,EAAE,OAAO,SAAA,EAAE,CAAC;SACrC,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,GAAA,CAAC,CAAC;AACjC,CAAC;SAOe,IAAI,CAAI,GAAQ,EAAE,IAAS,EAAE,OAAa;IACtD,IAAM,aAAa,cACf,cAAc,EAAE,kBAAkB,IAC/B,OAAO,CACb,CAAC;IAEF,OAAOA,yBAAK,CAAC,IAAI,CAAI,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,CAAC;SAC3D,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,IAAI,GAAA,CAAC,CAAC;AACjC;;;ICbA;KAIC;IAHiB,kBAAW,GAAzB,UAA0B,IAAS;QAC/B,OAAO,IAAI,CAAiB,IAAI,GAAG,CAAC,gBAAgB,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;KAC3E;IACL,aAAC;AAAD,CAAC;;;ICCD;KAaC;IAZe,yBAAW,GAAzB,UAA0B,IAAS;QAC/B,OAAO,IAAI,CAAwB,IAAI,GAAG,CAAC,uBAAuB,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;KACzF;IAEa,yBAAW,GAAzB,UACI,GAAW;QAEX,IAAM,GAAG,GAAG,IAAI,GAAG,CAAC,iCAAiC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;QAClE,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QAEjC,OAAO,GAAG,CAAgC,GAAG,CAAC,CAAC;KAChD;IACL,oBAAC;AAAD,CAAC;;;ICXD;KAgBC;IAfe,qBAAW,GAAzB,UAA0B,OAAqB;QAC3C,IAAM,GAAG,GAAG,IAAI,GAAG,CAAC,eAAe,EAAE,wBAAwB,CAAC,CAAC;;QAG/D,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;QAC7C,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;QAC3C,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,CAAC,CAAC;QACvC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;QAE3C,IAAI,OAAO,CAAC,MAAM,EAAE;YAClB,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,QAAQ,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;SAChD;QAED,OAAO,GAAG,CAAW,GAAG,CAAC,CAAC;KAC7B;IACH,gBAAC;AAAD,CAAC;;;IC9BD;KAEC;IADiB,SAAG,GAAG,IAAI,GAAG,CAAC,6BAA6B,CAAC,CAAC;IAC/D,YAAC;CAFD;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@headwindsimulations/api-client",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Client library for the Headwind Simulations API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",