@sharpapi/sharpapi-node-hospitality-categories 1.0.0 → 1.0.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sharpapi/sharpapi-node-hospitality-categories",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "SharpAPI.com Node.js SDK for generating hospitality product categories",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"author": "Dawid Makowski <contact@sharpapi.com>",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@sharpapi/sharpapi-node-core": "
|
|
30
|
+
"@sharpapi/sharpapi-node-core": "^1.0.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"jest": "^29.7.0"
|
|
@@ -4,6 +4,15 @@ const { SharpApiCoreService, SharpApiJobTypeEnum } = require('@sharpapi/sharpapi
|
|
|
4
4
|
* Service for generating hospitality product categories using SharpAPI.com
|
|
5
5
|
*/
|
|
6
6
|
class SharpApiHospitalityCategoriesService extends SharpApiCoreService {
|
|
7
|
+
/**
|
|
8
|
+
* Creates a new SharpApiHospitalityCategoriesService instance
|
|
9
|
+
* @param {string} apiKey - Your SharpAPI API key
|
|
10
|
+
* @param {string} [apiBaseUrl='https://sharpapi.com/api/v1'] - API base URL
|
|
11
|
+
*/
|
|
12
|
+
constructor(apiKey, apiBaseUrl = 'https://sharpapi.com/api/v1') {
|
|
13
|
+
super(apiKey, apiBaseUrl, '@sharpapi/sharpapi-node-hospitality-categories/1.0.1');
|
|
14
|
+
}
|
|
15
|
+
|
|
7
16
|
/**
|
|
8
17
|
* Generates a list of suitable categories for the Hospitality type product
|
|
9
18
|
* with relevance weights as float value (1.0-10.0) where 10 equals 100%, the highest relevance score.
|