New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@sharpapi/sharpapi-node-job-description

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sharpapi/sharpapi-node-job-description - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+2
-2
package.json
{
"name": "@sharpapi/sharpapi-node-job-description",
"version": "1.0.0",
"version": "1.0.1",
"description": "SharpAPI.com Node.js SDK for generating job descriptions",

@@ -28,3 +28,3 @@ "main": "src/index.js",

"dependencies": {
"@sharpapi/sharpapi-node-core": "file:../sharpapi-node-core"
"@sharpapi/sharpapi-node-core": "^1.0.0"
},

@@ -31,0 +31,0 @@ "devDependencies": {

@@ -9,2 +9,11 @@ const { SharpApiCoreService, SharpApiJobTypeEnum } = require('@sharpapi/sharpapi-node-core');

/**
* Creates a new SharpApiJobDescriptionService instance
* @param {string} apiKey - Your SharpAPI API key
* @param {string} [apiBaseUrl='https://sharpapi.com/api/v1'] - API base URL
*/
constructor(apiKey, apiBaseUrl = 'https://sharpapi.com/api/v1') {
super(apiKey, apiBaseUrl, '@sharpapi/sharpapi-node-job-description/1.0.1');
}
/**
* Generates a job description based on a set of parameters

@@ -11,0 +20,0 @@ * provided via JobDescriptionParameters DTO object.