New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gitlab-sdk-nodejs

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitlab-sdk-nodejs - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

examples/commit.js

6

gitlab/index.js

@@ -103,3 +103,9 @@ "use strict";

}
fetchCommits(req) {
return this.request(`/projects/${this.productId}/repository/commits`, req);
}
fetchCommit(sha) {
return this.request(`/projects/${this.productId}/repository/commits/${sha}`);
}
}
module.exports = Client;

2

package.json
{
"name": "gitlab-sdk-nodejs",
"version": "1.0.1",
"version": "1.0.2",
"description": "Gitlab API NODEJS SDK",

@@ -5,0 +5,0 @@ "main": "gitlab/index.js",

@@ -127,4 +127,12 @@ // import fetch from "node-fetch";

}
fetchCommits(req: any) {
return this.request(`/projects/${this.productId}/repository/commits`, req)
}
fetchCommit(sha: string) {
return this.request(`/projects/${this.productId}/repository/commits/${sha}`)
}
}
module.exports = Client
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc