@apiverve/airlinelookup 1.1.13 → 1.2.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.
package/README.md CHANGED
@@ -7,7 +7,7 @@ Airline Lookup is a simple tool for getting information on airlines. It returns
7
7
  ![Prod Ready](https://img.shields.io/badge/production-ready-blue)
8
8
  [![npm version](https://img.shields.io/npm/v/@apiverve/airlinelookup.svg)](https://www.npmjs.com/package/@apiverve/airlinelookup)
9
9
 
10
- This is a Javascript Wrapper for the [Airline Lookup API](https://apiverve.com/marketplace/airlinelookup?utm_source=npm&utm_medium=readme)
10
+ This is a Javascript Wrapper for the [Airline Lookup API](https://airlinelookup.apiverve.com?utm_source=npm&utm_medium=readme)
11
11
 
12
12
  ---
13
13
 
@@ -123,12 +123,15 @@ async function makeRequest() {
123
123
  "error": null,
124
124
  "data": [
125
125
  {
126
- "Name": "American Airlines",
127
- "Alias": "",
128
- "IATA": "AA",
129
- "ICAO": "AAL",
130
- "Callsign": "AMERICAN",
131
- "Country": "United States"
126
+ "name": "American Airlines",
127
+ "alias": null,
128
+ "iata": "AA",
129
+ "icao": "AAL",
130
+ "callsign": "AMERICAN",
131
+ "country": "United States",
132
+ "id": "AA",
133
+ "islowcost": false,
134
+ "logourl": "https://storage.googleapis.com/apiverve/APIResources/arlinelookup/logos/AA.png?X-Goog-Algorithm=..."
132
135
  }
133
136
  ]
134
137
  }
package/index.d.ts CHANGED
@@ -4,21 +4,36 @@ declare module '@apiverve/airlinelookup' {
4
4
  secure?: boolean;
5
5
  }
6
6
 
7
+ /**
8
+ * Describes fields the current plan does not unlock. Locked fields arrive as null
9
+ * in `data`; `locked_fields` names them, using dot paths for nested fields.
10
+ * Absent when the plan unlocks everything.
11
+ */
12
+ export interface PremiumInfo {
13
+ message: string;
14
+ upgrade_url: string;
15
+ locked_fields: string[];
16
+ }
17
+
7
18
  export interface airlinelookupResponse {
8
19
  status: string;
9
20
  error: string | null;
10
21
  data: AirlineLookupData;
11
22
  code?: number;
23
+ premium?: PremiumInfo;
12
24
  }
13
25
 
14
26
 
15
27
  interface AirlineLookupData {
16
- name: string;
17
- alias: string;
18
- iata: string;
19
- icao: string;
20
- callsign: string;
21
- country: string;
28
+ name: null | string;
29
+ alias: null;
30
+ iata: null | string;
31
+ icao: null | string;
32
+ callsign: null | string;
33
+ country: null | string;
34
+ id: null | string;
35
+ islowcost: boolean | null;
36
+ logourl: null | string;
22
37
  }
23
38
 
24
39
  export default class airlinelookupWrapper {
package/index.js CHANGED
@@ -13,16 +13,10 @@ class airlinelookupWrapper {
13
13
  throw new Error('API key must be provided as a non-empty string. Get your API key at: https://apiverve.com');
14
14
  }
15
15
 
16
- // Validate API key format (GUID or alphanumeric with hyphens)
17
- const apiKeyPattern = /^[a-zA-Z0-9-]+$/;
16
+ // Validate API key format (GUID, prefixed keys like apv_xxx, or alphanumeric)
17
+ const apiKeyPattern = /^[a-zA-Z0-9_-]+$/;
18
18
  if (!apiKeyPattern.test(api_key)) {
19
- throw new Error('Invalid API key format. API key must be alphanumeric and may contain hyphens. Get your API key at: https://apiverve.com');
20
- }
21
-
22
- // Check minimum length (GUIDs are typically 36 chars with hyphens, or 32 without)
23
- const trimmedKey = api_key.replace(/-/g, '');
24
- if (trimmedKey.length < 32) {
25
- throw new Error('Invalid API key. API key appears to be too short. Get your API key at: https://apiverve.com');
19
+ throw new Error('Invalid API key format. API key must be alphanumeric and may contain hyphens and underscores. Get your API key at: https://apiverve.com');
26
20
  }
27
21
 
28
22
  if (typeof secure !== 'boolean') {
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@apiverve/airlinelookup",
3
- "version": "1.1.13",
3
+ "version": "1.2.0",
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",
7
7
  "sideEffects": false,
8
8
  "engines": {
9
- "node": ">=14.0.0"
9
+ "node": ">=18.0.0"
10
10
  },
11
11
  "files": [
12
12
  "index.js",
@@ -34,15 +34,14 @@
34
34
  "bugs": {
35
35
  "url": "https://github.com/apiverve/airlinelookup-api/issues"
36
36
  },
37
- "homepage": "https://apiverve.com/marketplace/airlinelookup?utm_source=npm&utm_medium=homepage",
37
+ "homepage": "https://airlinelookup.apiverve.com?utm_source=npm&utm_medium=homepage",
38
38
  "devDependencies": {
39
39
  "mocha": "^11.0.1",
40
40
  "chai": "^5.1.2",
41
41
  "dotenv": "^16.4.7"
42
42
  },
43
43
  "dependencies": {
44
- "node-fetch": "^3.3.2",
45
- "promise": "^8.3.0",
46
- "axios": "1.13.2"
44
+ "axios": "1.13.2",
45
+ "form-data": "^4.0.1"
47
46
  }
48
47
  }