@headwindsimulations/api-client 1.3.1 → 1.3.3
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/dist/apis/BeyondAtc.d.ts +2 -11
- package/dist/index.esm.js +12 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/apis/BeyondAtc.spec.d.ts +0 -0
- package/dist/apis/Hoppie.spec.d.ts +0 -0
- package/dist/apis/SayIntentions.spec.d.ts +0 -0
package/dist/apis/BeyondAtc.d.ts
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
export declare
|
|
2
|
-
Logon: string;
|
|
3
|
-
From: string;
|
|
4
|
-
To: string;
|
|
5
|
-
Type: string;
|
|
6
|
-
Packet: string | null;
|
|
7
|
-
}
|
|
8
|
-
export declare class Response {
|
|
9
|
-
response: string;
|
|
10
|
-
}
|
|
1
|
+
export declare type Response = string;
|
|
11
2
|
export declare class BeyondATC {
|
|
12
|
-
static sendRequest(message:
|
|
3
|
+
static sendRequest(message: any): Promise<Response>;
|
|
13
4
|
}
|
package/dist/index.esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import axios from 'axios';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
/******************************************************************************
|
|
4
4
|
Copyright (c) Microsoft Corporation.
|
|
5
5
|
|
|
6
6
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -24,6 +24,11 @@ var __assign = function() {
|
|
|
24
24
|
return t;
|
|
25
25
|
};
|
|
26
26
|
return __assign.apply(this, arguments);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
30
|
+
var e = new Error(message);
|
|
31
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
27
32
|
};
|
|
28
33
|
|
|
29
34
|
function get(url, headers) {
|
|
@@ -65,12 +70,12 @@ var BeyondATC = /** @class */ (function () {
|
|
|
65
70
|
BeyondATC.sendRequest = function (message) {
|
|
66
71
|
var url = new URL('/connect.html', 'http://localhost:57698');
|
|
67
72
|
// Query-Parameter setzen (URLSearchParams kümmert sich ums Escaping)
|
|
68
|
-
url.searchParams.set('logon', message.
|
|
69
|
-
url.searchParams.set('from', message.
|
|
70
|
-
url.searchParams.set('to', message.
|
|
71
|
-
url.searchParams.set('type', message.
|
|
72
|
-
if (message.
|
|
73
|
-
url.searchParams.set('packet', message.
|
|
73
|
+
url.searchParams.set('logon', message.logon);
|
|
74
|
+
url.searchParams.set('from', message.from);
|
|
75
|
+
url.searchParams.set('to', message.to);
|
|
76
|
+
url.searchParams.set('type', message.type);
|
|
77
|
+
if (message.packet) {
|
|
78
|
+
url.searchParams.set('packet', message.packet);
|
|
74
79
|
}
|
|
75
80
|
return get(url);
|
|
76
81
|
};
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
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
|
|
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 type Response = string;\n\nexport class BeyondATC {\n public static sendRequest(message: any): 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<string>(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;;;ICrBD;KAgBC;IAfe,qBAAW,GAAzB,UAA0B,OAAY;QAClC,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,CAAS,GAAG,CAAC,CAAC;KAC3B;IACH,gBAAC;AAAD,CAAC;;;ICpBD;KAEC;IADiB,SAAG,GAAG,IAAI,GAAG,CAAC,6BAA6B,CAAC,CAAC;IAC/D,YAAC;CAFD;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
8
8
|
|
|
9
9
|
var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios);
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
/******************************************************************************
|
|
12
12
|
Copyright (c) Microsoft Corporation.
|
|
13
13
|
|
|
14
14
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -32,6 +32,11 @@ var __assign = function() {
|
|
|
32
32
|
return t;
|
|
33
33
|
};
|
|
34
34
|
return __assign.apply(this, arguments);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
38
|
+
var e = new Error(message);
|
|
39
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
35
40
|
};
|
|
36
41
|
|
|
37
42
|
function get(url, headers) {
|
|
@@ -73,12 +78,12 @@ var BeyondATC = /** @class */ (function () {
|
|
|
73
78
|
BeyondATC.sendRequest = function (message) {
|
|
74
79
|
var url = new URL('/connect.html', 'http://localhost:57698');
|
|
75
80
|
// Query-Parameter setzen (URLSearchParams kümmert sich ums Escaping)
|
|
76
|
-
url.searchParams.set('logon', message.
|
|
77
|
-
url.searchParams.set('from', message.
|
|
78
|
-
url.searchParams.set('to', message.
|
|
79
|
-
url.searchParams.set('type', message.
|
|
80
|
-
if (message.
|
|
81
|
-
url.searchParams.set('packet', message.
|
|
81
|
+
url.searchParams.set('logon', message.logon);
|
|
82
|
+
url.searchParams.set('from', message.from);
|
|
83
|
+
url.searchParams.set('to', message.to);
|
|
84
|
+
url.searchParams.set('type', message.type);
|
|
85
|
+
if (message.packet) {
|
|
86
|
+
url.searchParams.set('packet', message.packet);
|
|
82
87
|
}
|
|
83
88
|
return get(url);
|
|
84
89
|
};
|
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/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
|
|
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 type Response = string;\n\nexport class BeyondATC {\n public static sendRequest(message: any): 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<string>(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;;;ICrBD;KAgBC;IAfe,qBAAW,GAAzB,UAA0B,OAAY;QAClC,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,CAAS,GAAG,CAAC,CAAC;KAC3B;IACH,gBAAC;AAAD,CAAC;;;ICpBD;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.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "Client library for the Headwind Simulations API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"eslint": "^7.32.0",
|
|
45
45
|
"eslint-plugin-jest": "^24.4.2",
|
|
46
46
|
"rollup": "^2.57.0",
|
|
47
|
-
"rollup-plugin-typescript2": "^0.
|
|
47
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
48
48
|
"ts-jest": "^27.0.5",
|
|
49
49
|
"typescript": "^4.0.5"
|
|
50
50
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|