@types/jira-client
Advanced tools
Comparing version 7.1.3 to 7.1.4
@@ -10,4 +10,4 @@ // Type definitions for jira-client 7.1 | ||
import { CoreOptions, RequestResponse } from "request"; | ||
import { ReadStream } from "fs"; | ||
import { CoreOptions, RequestResponse } from 'request'; | ||
import { ReadStream } from 'fs'; | ||
@@ -41,3 +41,3 @@ declare class JiraApi { | ||
properties?: string, | ||
fieldsByKeys?: boolean | ||
fieldsByKeys?: boolean, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -103,3 +103,3 @@ | ||
*/ | ||
getSprint(sprintId: string): Promise<JiraApi.JsonResponse>; | ||
getSprint(sprintId: string): Promise<JiraApi.JsonResponse>; | ||
@@ -180,3 +180,3 @@ /** | ||
moveFixIssuesToId: string, | ||
moveAffectedIssuesToId: string | ||
moveAffectedIssuesToId: string, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -290,3 +290,7 @@ | ||
*/ | ||
updateIssue(issueId: string, issueUpdate: JiraApi.IssueObject, query?: JiraApi.Query): Promise<JiraApi.JsonResponse>; | ||
updateIssue( | ||
issueId: string, | ||
issueUpdate: JiraApi.IssueObject, | ||
query?: JiraApi.Query, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -369,3 +373,4 @@ /** | ||
optionId: string, | ||
option: JiraApi.FieldOptionObject): Promise<JiraApi.JsonResponse>; | ||
option: JiraApi.FieldOptionObject, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -463,3 +468,8 @@ /** | ||
*/ | ||
updateComment(issueId: string, commentId: string, comment: string, options?: JiraApi.CommentOptions): Promise<JiraApi.JsonResponse>; | ||
updateComment( | ||
issueId: string, | ||
commentId: string, | ||
comment: string, | ||
options?: JiraApi.CommentOptions, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -501,3 +511,3 @@ /** | ||
newEstimate?: JiraApi.EstimateObject, | ||
options?: JiraApi.WorklogOptions | ||
options?: JiraApi.WorklogOptions, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -659,3 +669,3 @@ | ||
name?: string, | ||
projectKeyOrId?: string | ||
projectKeyOrId?: string, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -701,3 +711,3 @@ | ||
validateQuery?: boolean, | ||
fields?: string | ||
fields?: string, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -729,3 +739,3 @@ | ||
validateQuery?: boolean, | ||
fields?: string | ||
fields?: string, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -746,3 +756,3 @@ | ||
maxResults?: number, | ||
done?: "true" | "false" | ||
done?: 'true' | 'false', | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -770,3 +780,3 @@ | ||
validateQuery?: boolean, | ||
fields?: string | ||
fields?: string, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -854,3 +864,3 @@ | ||
maxResults?: number, | ||
state?: "future" | "active" | "closed" | ||
state?: 'future' | 'active' | 'closed', | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -869,2 +879,3 @@ | ||
* @param [fields] - The list of fields to return for each issue. | ||
* @param [expand] - A comma-separated list of the parameters to expand. | ||
*/ | ||
@@ -878,3 +889,4 @@ getBoardIssuesForSprint( | ||
validateQuery?: boolean, | ||
fields?: string | ||
fields?: string, | ||
expand?: string, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -896,3 +908,3 @@ | ||
maxResults?: number, | ||
released?: "true" | "false" | ||
released?: 'true' | 'false', | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -934,3 +946,10 @@ | ||
*/ | ||
getIssuesForEpic(epicId: string, startAt?: number, maxResults?: number, jql?: string, validateQuery?: boolean, fields?: string): Promise<JiraApi.JsonResponse>; | ||
getIssuesForEpic( | ||
epicId: string, | ||
startAt?: number, | ||
maxResults?: number, | ||
jql?: string, | ||
validateQuery?: boolean, | ||
fields?: string, | ||
): Promise<JiraApi.JsonResponse>; | ||
@@ -979,3 +998,3 @@ /** | ||
*/ | ||
genericAgileGet(endpoint: string): Promise<JiraApi.JsonResponse>; | ||
genericAgileGet(endpoint: string): Promise<JiraApi.JsonResponse>; | ||
@@ -982,0 +1001,0 @@ private makeRequestHeader(uri: string, options?: JiraApi.UriOptions); |
{ | ||
"name": "@types/jira-client", | ||
"version": "7.1.3", | ||
"version": "7.1.4", | ||
"description": "TypeScript definitions for jira-client", | ||
@@ -31,4 +31,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jira-client", | ||
}, | ||
"typesPublisherContentHash": "f4f44d28a53a4a8481ab5a623de0c445d30558e959a2e84745ec68abc397df9e", | ||
"typesPublisherContentHash": "df23f2509c42dca31ae4ef442e0512715c1281a3840590cc7785359dde6d3d12", | ||
"typeScriptVersion": "3.8" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 11 Jan 2022 22:31:39 GMT | ||
* Last updated: Sun, 16 Jan 2022 14:31:25 GMT | ||
* Dependencies: [@types/request](https://npmjs.com/package/@types/request), [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ * Global values: none |
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
48592
1019