@gitkraken/provider-apis 0.35.0 → 0.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/index.js +69 -56
- package/dist/index.provider-utils.js +1 -1
- package/dist/index.providers.js +66 -53
- package/dist/providers/github/github.d.ts +2 -1
- package/dist/providers/github/githubMutations.d.ts +1 -0
- package/dist/types/exportedTypes/gitProvider.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Account, AddInlineCommentInput, CreateCommitInput, CursorPageInput, DeleteInlineCommentInput, EnterpriseOptions, GetRepoErrorData, GetRepoInput, GitLabel, GitMergeStrategy, GitMilestone, GitPullRequest, GitPullRequestReviewComment, GitPullRequestReviewState, GitRepository, GitTreeItem, NumberedPageInput, Organization, SetAccountInput, SetLabelInput, SetMilestoneInput, SetPullRequestInput } from '../../types/exportedTypes/gitProvider';
|
|
1
|
+
import { Account, AddInlineCommentInput, CreateCommitInput, CursorPageInput, DeleteInlineCommentInput, EditInlineCommentInput, EnterpriseOptions, GetRepoErrorData, GetRepoInput, GitLabel, GitMergeStrategy, GitMilestone, GitPullRequest, GitPullRequestReviewComment, GitPullRequestReviewState, GitRepository, GitTreeItem, NumberedPageInput, Organization, SetAccountInput, SetLabelInput, SetMilestoneInput, SetPullRequestInput } from '../../types/exportedTypes/gitProvider';
|
|
2
2
|
import { FetchIssuesData, FetchPullRequestsData, GitHubIssueCloseReason } from '../../types/exportedTypes/github';
|
|
3
3
|
import { Issue, SetIssueInput } from '../../types/exportedTypes/issueProvider';
|
|
4
4
|
import { GitProvider } from '../gitProvider';
|
|
@@ -293,6 +293,7 @@ export declare class GitHub extends EnterpriseProvider implements GitProvider, I
|
|
|
293
293
|
}, options?: EnterpriseOptions): Promise<void>;
|
|
294
294
|
addInlineCommentToPullRequest(input: AddInlineCommentInput, options?: EnterpriseOptions): Promise<string | undefined>;
|
|
295
295
|
deleteInlineComment(input: DeleteInlineCommentInput, options?: EnterpriseOptions): Promise<void>;
|
|
296
|
+
editInlineComment(input: EditInlineCommentInput, options?: EnterpriseOptions): Promise<void>;
|
|
296
297
|
private addReplyToReviewThread;
|
|
297
298
|
private createReviewThread;
|
|
298
299
|
setPullRequestMilestone(input: {
|
|
@@ -5,3 +5,4 @@
|
|
|
5
5
|
* Mutations are organized alphabetically for easy reference.
|
|
6
6
|
*/
|
|
7
7
|
export declare const DELETE_PULL_REQUEST_REVIEW_COMMENT = "mutation DeletePullRequestReviewComment(\n $pullRequestReviewCommentId: ID!\n) {\n deletePullRequestReviewComment(input: {\n id: $pullRequestReviewCommentId\n }) {\n pullRequestReview {\n id\n }\n }\n}";
|
|
8
|
+
export declare const UPDATE_PULL_REQUEST_REVIEW_COMMENT = "mutation UpdatePullRequestReviewComment(\n $pullRequestReviewCommentId: ID!,\n $body: String!\n) {\n updatePullRequestReviewComment(input: {\n pullRequestReviewCommentId: $pullRequestReviewCommentId,\n body: $body\n }) {\n pullRequestReviewComment {\n id\n body\n }\n }\n}";
|
|
@@ -310,6 +310,10 @@ export interface AddInlineCommentInput {
|
|
|
310
310
|
export interface DeleteInlineCommentInput {
|
|
311
311
|
commentId: string;
|
|
312
312
|
}
|
|
313
|
+
export interface EditInlineCommentInput {
|
|
314
|
+
commentId: string;
|
|
315
|
+
body: string;
|
|
316
|
+
}
|
|
313
317
|
export interface CursorPageInput {
|
|
314
318
|
cursor?: string | null;
|
|
315
319
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitkraken/provider-apis",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.0",
|
|
4
4
|
"description": "An SDK around different third-party APIs that accepts and returns data in a common format.",
|
|
5
5
|
"author": "Axosoft, LLC dba GitKraken",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|