Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@avst-api/jira7-server

Package Overview
Dependencies
Maintainers
4
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@avst-api/jira7-server - npm Package Compare versions

Comparing version 0.1.10 to 0.1.11

18

definitions/objs_issue.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc