Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

r-gitlab-api

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

r-gitlab-api

A Typescipt project to which provides services for accessing api

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

r-gitlab-api

An javascript api for accessing gitlab api's into your project. Build on Typescript. Gives access to basic gitlab operations you need to do by simply setting private token. Internally uses Frisbee api.. thanks to Frisbee team..

Install

npm install r-gitlab-api --save
How to Use
Before Calling the api
import { setAccessToken } from 'r-gitlab-api'

setAccessToken('ACCESS_TOKEN')
Projects
import { Visibility } from 'r-gitlab-api'
import { Projects, Project } from 'r-gitlab-api'

const projects: Project[] = await Projects.getAll(Visibility.PRIVATE)
Issues
import { Issues, Issue } from 'r-gitlab-api'

let issues: Issue[] = await Issues.getAllOfProject(project.id)

API

Projects

getAll(visibity?: Visibility, owned?: boolean, membership?: boolean, sort?: SortOrder, orderby?: Orderby, search?: string): Promise<Project[]>

getOne(id: string): Promise<Project>

Issues

getAll(state?: State, scope?: Scope, labels?: string[], milestoneTitle?: string, orderBy?: (Orderby.CREATED_AT | Orderby.UPDATED_AT), sort?: SortOrder, search?: string, milestoneIds?: string[], authoredBy?: string, assignedTo?: string): Promise<Issue[]>

getAllOfProject(projectId: string, state?: State, scope?: Scope, labels?: string[], milestoneTitle?: string, sort?: SortOrder, search?: string, milestoneIds?: string[], authoredBy?: string, assignedTo?: string): Promise<Issue[]>

getOneOfProject(projectId: string, issueId: string): Promise<Issue[]>

create(projectId: string, title: string, description?: string, confidential?: boolean, assigneeIds?: string[], milestoneId?: string, labels?: string[], dueDate?: Date): Promise<Issue>

edit(projectId: string, issueId: string, title?: string, description?: string, confidential?: boolean, assigneeIds?: string[], milestoneId?: string, labels?: string[], dueDate?: Date, event?: 'reopen' | 'close'): Promise<Issue>

deleteOne(projectId: string, issueId: string): Promise<Issue>

Labels

getAll(projectId: string): Promise<Label[]>

create(projectId: string, name: string, color: string, description?: string): Promise<Label>

Project Milestones

getAll(projectId: string, state?: State, search?: string, milestoneIds?: string[]): Promise<Milestone[]>

getOne(projectId: string, milestoneId: string): Promise<Milestone[]>

create(projectId: string, title: string, description?: string, dueDate?: Date, startDate?: Date): Promise<Milestone>

edit(projectId: string, milestoneId: string, title?: string, description?: string, dueDate?: Date, startDate?: Date, stateEvent?: string): Promise<Milestone>

getIssues(projectId: string, milestoneId: string): Promise<Issue[]>

Keywords

FAQs

Package last updated on 02 Dec 2017

Did you know?

Socket

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.

Install

Related posts

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