forked from MrRefactoring/jira.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissueLinkTypes.ts
208 lines (195 loc) · 8.02 KB
/
issueLinkTypes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import * as Models from './models';
import * as Parameters from './parameters';
import { Callback } from '../callback';
import { Client } from '../clients';
import { RequestConfig } from '../requestConfig';
export class IssueLinkTypes {
constructor(private client: Client) {}
/**
* Returns a list of all issue link types.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** _Browse
* projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for a project in the site.
*/
async getIssueLinkTypes<T = Models.IssueLinkTypes>(callback: Callback<T>): Promise<void>;
/**
* Returns a list of all issue link types.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** _Browse
* projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for a project in the site.
*/
async getIssueLinkTypes<T = Models.IssueLinkTypes>(callback?: never): Promise<T>;
async getIssueLinkTypes<T = Models.IssueLinkTypes>(callback?: Callback<T>): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/issueLinkType',
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* Creates an issue link type. Use this operation to create descriptions of the reasons why issues are linked. The
* issue link type consists of a name and descriptions for a link's inward and outward relationships.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async createIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.CreateIssueLinkType,
callback: Callback<T>,
): Promise<void>;
/**
* Creates an issue link type. Use this operation to create descriptions of the reasons why issues are linked. The
* issue link type consists of a name and descriptions for a link's inward and outward relationships.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async createIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.CreateIssueLinkType,
callback?: never,
): Promise<T>;
async createIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.CreateIssueLinkType,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: '/rest/api/2/issueLinkType',
method: 'POST',
data: {
id: parameters.id,
inward: parameters.inward,
name: parameters.name,
outward: parameters.outward,
self: parameters.self,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Returns an issue link type.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** _Browse
* projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for a project in the site.
*/
async getIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.GetIssueLinkType | string,
callback: Callback<T>,
): Promise<void>;
/**
* Returns an issue link type.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* This operation can be accessed anonymously.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** _Browse
* projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for a project in the site.
*/
async getIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.GetIssueLinkType | string,
callback?: never,
): Promise<T>;
async getIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.GetIssueLinkType | string,
callback?: Callback<T>,
): Promise<void | T> {
const issueLinkTypeId = typeof parameters === 'string' ? parameters : parameters.issueLinkTypeId;
const config: RequestConfig = {
url: `/rest/api/2/issueLinkType/${issueLinkTypeId}`,
method: 'GET',
};
return this.client.sendRequest(config, callback);
}
/**
* Updates an issue link type.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async updateIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.UpdateIssueLinkType,
callback: Callback<T>,
): Promise<void>;
/**
* Updates an issue link type.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async updateIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.UpdateIssueLinkType,
callback?: never,
): Promise<T>;
async updateIssueLinkType<T = Models.IssueLinkType>(
parameters: Parameters.UpdateIssueLinkType,
callback?: Callback<T>,
): Promise<void | T> {
const config: RequestConfig = {
url: `/rest/api/2/issueLinkType/${parameters.issueLinkTypeId}`,
method: 'PUT',
data: {
id: parameters.id,
inward: parameters.inward,
name: parameters.name,
outward: parameters.outward,
self: parameters.self,
},
};
return this.client.sendRequest(config, callback);
}
/**
* Deletes an issue link type.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async deleteIssueLinkType<T = void>(
parameters: Parameters.DeleteIssueLinkType | string,
callback: Callback<T>,
): Promise<void>;
/**
* Deletes an issue link type.
*
* To use this operation, the site must have [issue linking](https://confluence.atlassian.com/x/yoXKM) enabled.
*
* **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
* _Administer Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg).
*/
async deleteIssueLinkType<T = void>(
parameters: Parameters.DeleteIssueLinkType | string,
callback?: never,
): Promise<T>;
async deleteIssueLinkType<T = void>(
parameters: Parameters.DeleteIssueLinkType | string,
callback?: Callback<T>,
): Promise<void | T> {
const issueLinkTypeId = typeof parameters === 'string' ? parameters : parameters.issueLinkTypeId;
const config: RequestConfig = {
url: `/rest/api/2/issueLinkType/${issueLinkTypeId}`,
method: 'DELETE',
};
return this.client.sendRequest(config, callback);
}
}