@avst-api/jira7-server
Advanced tools
Comparing version 0.1.10 to 0.1.11
@@ -16,7 +16,5 @@ import { IdProperty, NameProperty } from '../raw-api/common'; | ||
import { Worklog } from './objs_worklog'; | ||
export interface Fields { | ||
project?: IdProperty; | ||
issuetype?: IdProperty; | ||
interface CommonFields { | ||
components?: IdProperty[]; | ||
summary?: string; | ||
reporter?: NameProperty; | ||
description?: string; | ||
@@ -40,2 +38,13 @@ assignee?: NameProperty; | ||
} | ||
export interface FieldsCreateIssue extends CommonFields { | ||
project: IdProperty; | ||
issuetype: IdProperty; | ||
summary: string; | ||
} | ||
export interface FieldsEditIssue extends CommonFields { | ||
project?: IdProperty; | ||
issuetype?: IdProperty; | ||
summary?: string; | ||
resolution?: IdProperty; | ||
} | ||
export interface IssueResponse { | ||
@@ -231,2 +240,3 @@ expand?: string; | ||
} | ||
export {}; | ||
//# sourceMappingURL=objs_issue.d.ts.map |
{ | ||
"name": "@avst-api/jira7-server", | ||
"version": "0.1.10", | ||
"version": "0.1.11", | ||
"description": "Adaptavist Managed API for Jira Server 7.13.9", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -0,1 +1,5 @@ | ||
# 0.1.11 | ||
- Added `reporter` property for creating or editing issue requests. | ||
# 0.1.10 | ||
@@ -2,0 +6,0 @@ |
@@ -18,3 +18,3 @@ import { ErrorStrategyOption, AssistedErrorStrategyOption } from '../handled-api/common'; | ||
import { EntityProperty, IdProperty, NameProperty, KeyProperty } from '../raw-api/common'; | ||
import { Fields, IssueResponse } from '../definitions/objs_issue'; | ||
import { FieldsEditIssue, FieldsCreateIssue, IssueResponse } from '../definitions/objs_issue'; | ||
export declare namespace Issue { | ||
@@ -26,3 +26,3 @@ namespace CreateIssue { | ||
transition?: IdProperty; | ||
fields?: Fields; | ||
fields: FieldsCreateIssue; | ||
update?: Record<string, { | ||
@@ -128,5 +128,3 @@ set?: any; | ||
transition?: IdProperty; | ||
fields?: Fields & { | ||
resolution: IdProperty; | ||
}; | ||
fields?: FieldsEditIssue; | ||
update?: Record<string, { | ||
@@ -843,5 +841,3 @@ set?: any; | ||
transition?: IdProperty; | ||
fields?: Fields & { | ||
resolution?: IdProperty; | ||
}; | ||
fields?: FieldsEditIssue; | ||
update?: Record<string, { | ||
@@ -848,0 +844,0 @@ set?: any; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
821056
12368
28