mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
import type { BaseResourceOptions } from '@gitbeaker/requester-utils';
|
|
import { ResourceDiscussions } from '../templates';
|
|
import type { DiscussionNoteSchema, DiscussionSchema } from '../templates/ResourceDiscussions';
|
|
import type {
|
|
GitlabAPIResponse,
|
|
PaginationRequestOptions,
|
|
PaginationTypes,
|
|
ShowExpanded,
|
|
Sudo,
|
|
} from '../infrastructure';
|
|
|
|
export interface IssueDiscussions<C extends boolean = false> extends ResourceDiscussions<C> {
|
|
addNote<E extends boolean = false>(
|
|
projectId: string | number,
|
|
issueIId: number,
|
|
discussionId: string,
|
|
body: string,
|
|
options?: { createdAt?: string } & Sudo & ShowExpanded<E>,
|
|
): Promise<GitlabAPIResponse<DiscussionNoteSchema, C, E, void>>;
|
|
|
|
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
|
|
projectId: string | number,
|
|
issueIId: number,
|
|
options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>,
|
|
): Promise<GitlabAPIResponse<DiscussionSchema[], C, E, P>>;
|
|
|
|
create<E extends boolean = false>(
|
|
projectId: string | number,
|
|
issueIId: number,
|
|
body: string,
|
|
options?: { createdAt?: string } & Sudo & ShowExpanded<E>,
|
|
): Promise<GitlabAPIResponse<DiscussionSchema, C, E, void>>;
|
|
|
|
editNote<E extends boolean = false>(
|
|
projectId: string | number,
|
|
issueIId: number,
|
|
discussionId: string,
|
|
noteId: number,
|
|
options: Sudo & ShowExpanded<E> & { body: string },
|
|
): Promise<GitlabAPIResponse<DiscussionNoteSchema, C, E, void>>;
|
|
|
|
removeNote<E extends boolean = false>(
|
|
projectId: string | number,
|
|
issueIId: number,
|
|
discussionId: string,
|
|
noteId: number,
|
|
options?: Sudo & ShowExpanded<E>,
|
|
): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
|
|
show<E extends boolean = false>(
|
|
projectId: string | number,
|
|
issueIId: number,
|
|
discussionId: string,
|
|
options?: Sudo & ShowExpanded<E>,
|
|
): Promise<GitlabAPIResponse<DiscussionSchema, C, E, void>>;
|
|
}
|
|
|
|
export class IssueDiscussions<C extends boolean = false> extends ResourceDiscussions<C> {
|
|
constructor(options: BaseResourceOptions<C>) {
|
|
/* istanbul ignore next */
|
|
super('projects', 'issues', options);
|
|
}
|
|
}
|