@gitbeaker/core
Advanced tools
Comparing version 23.2.0 to 23.3.0
@@ -0,1 +1,13 @@ | ||
# v23.3.0 (Sat Jul 11 2020) | ||
#### 🐛 Bug Fix | ||
- Fixing type definitions for optional arguments [#956](https://github.com/jdalrymple/gitbeaker/pull/956) ([@jdalrymple](https://github.com/jdalrymple)) | ||
#### Authors: 1 | ||
- Justin Dalrymple ([@jdalrymple](https://github.com/jdalrymple)) | ||
--- | ||
# v23.2.0 (Wed Jul 08 2020) | ||
@@ -2,0 +14,0 @@ |
@@ -5,3 +5,3 @@ import { ResourceNotes } from '../templates'; | ||
export interface EpicNotes extends ResourceNotes { | ||
all(groupId: string | number, epicId: string | number, options: PaginatedRequestOptions): Promise<GetResponse>; | ||
all(groupId: string | number, epicId: string | number, options?: PaginatedRequestOptions): Promise<GetResponse>; | ||
create(groupId: string | number, epicId: string | number, body: string, options?: BaseRequestOptions): Promise<object>; | ||
@@ -8,0 +8,0 @@ edit(groupId: string | number, epicId: string | number, noteId: number, body: string, options?: BaseRequestOptions): Promise<object>; |
@@ -5,3 +5,3 @@ import { ResourceNotes } from '../templates'; | ||
export interface IssueNotes extends ResourceNotes { | ||
all(projectId: string | number, issueId: string | number, options: PaginatedRequestOptions): Promise<GetResponse>; | ||
all(projectId: string | number, issueId: string | number, options?: PaginatedRequestOptions): Promise<GetResponse>; | ||
create(projectId: string | number, issueId: string | number, body: string, options?: BaseRequestOptions): Promise<object>; | ||
@@ -8,0 +8,0 @@ edit(projectId: string | number, issueId: string | number, noteId: number, body: string, options?: BaseRequestOptions): Promise<object>; |
@@ -5,3 +5,3 @@ import { ResourceNotes } from '../templates'; | ||
export interface MergeRequestNotes extends ResourceNotes { | ||
all(projectId: string | number, mergerequestIid: string | number, options: PaginatedRequestOptions): Promise<GetResponse>; | ||
all(projectId: string | number, mergerequestIid: string | number, options?: PaginatedRequestOptions): Promise<GetResponse>; | ||
create(projectId: string | number, mergerequestIid: string | number, body: string, options?: BaseRequestOptions): Promise<object>; | ||
@@ -8,0 +8,0 @@ edit(projectId: string | number, mergerequestIid: string | number, noteId: number, body: string, options?: BaseRequestOptions): Promise<object>; |
@@ -5,3 +5,3 @@ import { ResourceNotes } from '../templates'; | ||
export interface ProjectSnippetNotes extends ResourceNotes { | ||
all(projectId: string | number, snippetId: string | number, options: PaginatedRequestOptions): Promise<GetResponse>; | ||
all(projectId: string | number, snippetId: string | number, options?: PaginatedRequestOptions): Promise<GetResponse>; | ||
create(projectId: string | number, snippetId: string | number, body: string, options?: BaseRequestOptions): Promise<object>; | ||
@@ -8,0 +8,0 @@ edit(projectId: string | number, snippetId: string | number, noteId: number, body: string, options?: BaseRequestOptions): Promise<object>; |
{ | ||
"name": "@gitbeaker/core", | ||
"description": "Core API implementation of the GitLab API. Supports Promises, Async/Await.", | ||
"version": "23.2.0", | ||
"version": "23.3.0", | ||
"author": { | ||
@@ -12,3 +12,3 @@ "name": "Justin Dalrymple" | ||
"dependencies": { | ||
"@gitbeaker/requester-utils": "^23.2.0", | ||
"@gitbeaker/requester-utils": "^23.3.0", | ||
"form-data": "^3.0.0", | ||
@@ -57,3 +57,3 @@ "li": "^1.3.0", | ||
}, | ||
"gitHead": "110cd95176c807f4fb875d4e1783ae33f6afbf12" | ||
"gitHead": "e135a55279375ef9cab6c4225aaca2bb884bf5c1" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
327508