@apiverve/acronymgenerator 1.1.14 → 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
@@ -1,6 +1,6 @@
1
1
  # Acronym Generator API
2
2
 
3
- Acronym Generator is an AI-powered tool for creating creative acronyms from text. It returns 3 unique acronym suggestions for any given phrase.
3
+ Acronym Generator creates acronyms from phrases by extracting the first letter of each word. Input 'Application Programming Interface' and get 'API'.
4
4
 
5
5
  ![Build Status](https://img.shields.io/badge/build-passing-green)
6
6
  ![Code Climate](https://img.shields.io/badge/maintainability-B-purple)
@@ -125,8 +125,8 @@ async function makeRequest() {
125
125
  "text": "Application Programming Interface",
126
126
  "acronyms": [
127
127
  "API",
128
- "Application's Programming Interface",
129
- "Awesome Programming Interface"
128
+ "APP IN",
129
+ "Accessing Program's Interface"
130
130
  ]
131
131
  }
132
132
  }
package/index.d.ts CHANGED
@@ -4,17 +4,29 @@ declare module '@apiverve/acronymgenerator' {
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 acronymgeneratorResponse {
8
19
  status: string;
9
20
  error: string | null;
10
21
  data: AcronymGeneratorData;
11
22
  code?: number;
23
+ premium?: PremiumInfo;
12
24
  }
13
25
 
14
26
 
15
27
  interface AcronymGeneratorData {
16
- text: string;
17
- acronyms: string[];
28
+ text: null | string;
29
+ acronyms: (null | string)[];
18
30
  }
19
31
 
20
32
  export default class acronymgeneratorWrapper {
package/index.js CHANGED
@@ -30,7 +30,7 @@ class acronymgeneratorWrapper {
30
30
  this.baseURL = 'https://api.apiverve.com/v1/acronymgenerator';
31
31
 
32
32
  // Validation rules for parameters (generated from schema)
33
- this.validationRules = {"text":{"type":"string","required":true,"maxLength":200}};
33
+ this.validationRules = {"text":{"type":"string","required":true}};
34
34
  }
35
35
 
36
36
  /**
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@apiverve/acronymgenerator",
3
- "version": "1.1.14",
4
- "description": "Acronym Generator is an AI-powered tool for creating creative acronyms from text. It returns 3 unique acronym suggestions for any given phrase.",
3
+ "version": "1.2.0",
4
+ "description": "Acronym Generator creates acronyms from phrases by extracting the first letter of each word. Input 'Application Programming Interface' and get 'API'.",
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",
@@ -41,8 +41,7 @@
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
  }