
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
gitlab-swagger-client
Advanced tools
A fetch-based GitLab API client, auto-generated using Swagger codegen.
A GitLab API client using WHATWG Fetch. It's autogenerated from a Swagger/OpenAPI specification. For more information, see the home page.
npm install gitlab-swagger-client -S
If you are targetting a JavaScript environment which doesn't include ES6 promises, you should install es6-promise
or similar.
import { MergeRequestsApi } from 'gitlab-swagger-client';
const gitlabAuth = { privateToken: 'my-private-token' };
// Or use an OAuth2 bearer token (excluding "Bearer ")
// const gitlabAuth = { bearerToken: 'my-oauth2-token' };
const fetchImplementation = window.fetch // optional, uses isomorphic-fetch by default.
const basePath = 'https://gitlab.my-company.com/api/v3' // optional, defaults to 'https://gitlab.com/api/v3'
const mergeRequestsApi = new MergeRequestsApi(gitlabAuth, fetchImplementation, basePath);
mergeRequestsApi.listMergeRequests({ id: 'my-group%2fmy-project' }).then(mergeRequests => {
mergeRequests.forEach(m => console.log(m.title));
});
See https://gitlab.com/janslow/gitlab-swagger-client for information on changing this package.
0.1.1
authorizeFetch
method in the wrapped API classes. (#2)FAQs
A fetch-based GitLab API client, auto-generated using Swagger codegen.
We found that gitlab-swagger-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.