@apiverve/airlinelookup 1.1.10 → 1.1.12
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/LICENSE +1 -1
- package/README.md +1 -1
- package/index.d.ts +11 -1
- package/package.json +5 -4
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2025 APIVerve, and EvlarSoft LLC
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -156,7 +156,7 @@ All usage of the APIVerve website, API, and services is subject to the [APIVerve
|
|
|
156
156
|
## License
|
|
157
157
|
Licensed under the The MIT License (MIT)
|
|
158
158
|
|
|
159
|
-
Copyright (©) 2025 APIVerve, and
|
|
159
|
+
Copyright (©) 2025 APIVerve, and EvlarSoft LLC
|
|
160
160
|
|
|
161
161
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
162
162
|
|
package/index.d.ts
CHANGED
|
@@ -7,10 +7,20 @@ declare module '@apiverve/airlinelookup' {
|
|
|
7
7
|
export interface airlinelookupResponse {
|
|
8
8
|
status: string;
|
|
9
9
|
error: string | null;
|
|
10
|
-
data:
|
|
10
|
+
data: AirlineLookupData;
|
|
11
11
|
code?: number;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
|
|
15
|
+
interface AirlineLookupData {
|
|
16
|
+
name: string;
|
|
17
|
+
alias: string;
|
|
18
|
+
iata: string;
|
|
19
|
+
icao: string;
|
|
20
|
+
callsign: string;
|
|
21
|
+
country: string;
|
|
22
|
+
}
|
|
23
|
+
|
|
14
24
|
export default class airlinelookupWrapper {
|
|
15
25
|
constructor(options: airlinelookupOptions);
|
|
16
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apiverve/airlinelookup",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.12",
|
|
4
4
|
"description": "Airline Lookup is a simple tool for getting information on airlines. It returns information on various airlines.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/apiverve/airlinelookup-
|
|
13
|
+
"url": "git+https://github.com/apiverve/airlinelookup-api.git",
|
|
14
|
+
"directory": "npm"
|
|
14
15
|
},
|
|
15
16
|
"keywords": [
|
|
16
17
|
"airline lookup", "airline lookup api", "airline lookup tool", "airline lookup software", "airline lookup service"
|
|
@@ -18,7 +19,7 @@
|
|
|
18
19
|
"author": "APIVerve <hello@apiverve.com> (http://apiverve.com/)",
|
|
19
20
|
"license": "MIT",
|
|
20
21
|
"bugs": {
|
|
21
|
-
"url": "https://github.com/apiverve/airlinelookup-
|
|
22
|
+
"url": "https://github.com/apiverve/airlinelookup-api/issues"
|
|
22
23
|
},
|
|
23
24
|
"homepage": "https://apiverve.com/marketplace/airlinelookup?utm_source=npm",
|
|
24
25
|
"devDependencies": {
|
|
@@ -29,6 +30,6 @@
|
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"node-fetch": "^3.3.2",
|
|
31
32
|
"promise": "^8.3.0",
|
|
32
|
-
"axios": "1.
|
|
33
|
+
"axios": "1.13.2"
|
|
33
34
|
}
|
|
34
35
|
}
|