@apiverve/titlecapitalization 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.
Files changed (2) hide show
  1. package/index.d.ts +7 -1
  2. package/package.json +4 -3
package/index.d.ts CHANGED
@@ -7,10 +7,16 @@ declare module '@apiverve/titlecapitalization' {
7
7
  export interface titlecapitalizationResponse {
8
8
  status: string;
9
9
  error: string | null;
10
- data: any;
10
+ data: TitleCaseConverterData;
11
11
  code?: number;
12
12
  }
13
13
 
14
+
15
+ interface TitleCaseConverterData {
16
+ style: string;
17
+ text: string;
18
+ }
19
+
14
20
  export default class titlecapitalizationWrapper {
15
21
  constructor(options: titlecapitalizationOptions);
16
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apiverve/titlecapitalization",
3
- "version": "1.1.10",
3
+ "version": "1.1.12",
4
4
  "description": "Title Capitalization is a simple tool for converting title text to various cases. It returns the text converted to your desired case.",
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/titlecapitalization-API.git"
13
+ "url": "git+https://github.com/apiverve/titlecapitalization-api.git",
14
+ "directory": "npm"
14
15
  },
15
16
  "keywords": [
16
17
  "title capitalization", "title capitalization api", "title capitalization tool", "title capitalization software", "title capitalization 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/titlecapitalization-API/issues"
22
+ "url": "https://github.com/apiverve/titlecapitalization-api/issues"
22
23
  },
23
24
  "homepage": "https://apiverve.com/marketplace/titlecapitalization?utm_source=npm",
24
25
  "devDependencies": {