Socket
Socket
Sign inDemoInstall

@evidenceai/gitlab

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evidenceai/gitlab - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

package.json
{
"name": "@evidenceai/gitlab",
"version": "1.0.2",
"version": "1.0.3",
"description": "A package to manipulate Gitlab API",

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

@@ -1,2 +0,2 @@

# Empty EAI package
# Gitlab API

@@ -11,2 +11,30 @@ This package enables creating new issues in the selected Gitlab instance. The following environment variables are required to be set in the environment:

## Installing this package
```shell
yarn add @evidenceai/gitlab
```
## Using this package
The following will create a new issue in the project specified by `GITLAB_CR_PROJECT_ID` on `GITLAB_HOST`:
```typescript
import {
isGitlabIntegrationConfigured,
submitContactRequest
} from "@evidenceai/gitlab";
if (!(await isGitlabIntegrationConfigured())) {
throw new Error("Gitlab integration is not configured");
}
await submitContactRequest({
email: "sample@email.com",
message: "tagrr signup request",
name: "customer name",
questionnaireData: "this can be anything"
});
```
## Bumping up version

@@ -13,0 +41,0 @@

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