@@ -8,18 +8,18 @@ export class IssueAdjustmentsApps {
8
8
constructor ( private client : Client ) { }
9
9
10
10
/**
11
- * Gets issue adjustments. Issue adjustments can only be retrieved by Forge apps.
11
+ * @deprecated Gets issue adjustments. Issue adjustments can only be retrieved by Forge apps.
12
12
*
13
- * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None.
13
+ * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None.
14
14
*/
15
15
async getIssueAdjustments < T = Models . PageIssueAdjustmentDetails > (
16
16
parameters : Parameters . GetIssueAdjustments | undefined ,
17
17
callback : Callback < T >
18
18
) : Promise < void > ;
19
19
/**
20
- * Gets issue adjustments. Issue adjustments can only be retrieved by Forge apps.
20
+ * @deprecated Gets issue adjustments. Issue adjustments can only be retrieved by Forge apps.
21
21
*
22
- * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None.
22
+ * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None.
23
23
*/
24
24
async getIssueAdjustments < T = Models . PageIssueAdjustmentDetails > (
25
25
parameters ?: Parameters . GetIssueAdjustments ,
@@ -43,30 +43,30 @@ export class IssueAdjustmentsApps {
43
43
}
44
44
45
45
/**
46
- * Creates an issue adjustment. Issue adjustment can only be created by Forge apps.
46
+ * @deprecated Creates an issue adjustment. Issue adjustment can only be created by Forge apps.
47
47
*
48
- * Each app can define up to 100 issue adjustments. Each issue adjustment can define up to 1000 contexts.
48
+ * Each app can define up to 100 issue adjustments. Each issue adjustment can define up to 1000 contexts.
49
49
*
50
- * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
50
+ * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
51
51
*
52
- * - _None_ if the issue adjustment is created without contexts.
53
- * - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, if the
54
- * issue adjustment is created with contexts.
52
+ * - _None_ if the issue adjustment is created without contexts.
53
+ * - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, if the
54
+ * issue adjustment is created with contexts.
55
55
*/
56
56
async createIssueAdjustment < T = Models . IssueAdjustmentIdentifiers > (
57
57
parameters : Parameters . CreateIssueAdjustment | undefined ,
58
58
callback : Callback < T >
59
59
) : Promise < void > ;
60
60
/**
61
- * Creates an issue adjustment. Issue adjustment can only be created by Forge apps.
61
+ * @deprecated Creates an issue adjustment. Issue adjustment can only be created by Forge apps.
62
62
*
63
- * Each app can define up to 100 issue adjustments. Each issue adjustment can define up to 1000 contexts.
63
+ * Each app can define up to 100 issue adjustments. Each issue adjustment can define up to 1000 contexts.
64
64
*
65
- * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
65
+ * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
66
66
*
67
- * - _None_ if the issue adjustment is created without contexts.
68
- * - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, if the
69
- * issue adjustment is created with contexts.
67
+ * - _None_ if the issue adjustment is created without contexts.
68
+ * - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, if the
69
+ * issue adjustment is created with contexts.
70
70
*/
71
71
async createIssueAdjustment < T = Models . IssueAdjustmentIdentifiers > (
72
72
parameters ?: Parameters . CreateIssueAdjustment ,
@@ -91,30 +91,30 @@ export class IssueAdjustmentsApps {
91
91
}
92
92
93
93
/**
94
- * Updates an issue adjustment. Issue adjustment can only be updated by Forge apps.
94
+ * @deprecated Updates an issue adjustment. Issue adjustment can only be updated by Forge apps.
95
95
*
96
- * Each issue adjustment can define up to 1000 contexts.
96
+ * Each issue adjustment can define up to 1000 contexts.
97
97
*
98
- * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
98
+ * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
99
99
*
100
- * - _None_ if the issue adjustment is created without contexts.
101
- * - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, if the
102
- * issue adjustment is created with contexts.
100
+ * - _None_ if the issue adjustment is created without contexts.
101
+ * - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, if the
102
+ * issue adjustment is created with contexts.
103
103
*/
104
104
async updateIssueAdjustment < T = void > (
105
105
parameters : Parameters . UpdateIssueAdjustment ,
106
106
callback : Callback < T >
107
107
) : Promise < void > ;
108
108
/**
109
- * Updates an issue adjustment. Issue adjustment can only be updated by Forge apps.
109
+ * @deprecated Updates an issue adjustment. Issue adjustment can only be updated by Forge apps.
110
110
*
111
- * Each issue adjustment can define up to 1000 contexts.
111
+ * Each issue adjustment can define up to 1000 contexts.
112
112
*
113
- * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
113
+ * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:**
114
114
*
115
- * - _None_ if the issue adjustment is created without contexts.
116
- * - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, if the
117
- * issue adjustment is created with contexts.
115
+ * - _None_ if the issue adjustment is created without contexts.
116
+ * - _Browse projects_ [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, if the
117
+ * issue adjustment is created with contexts.
118
118
*/
119
119
async updateIssueAdjustment < T = void > ( parameters : Parameters . UpdateIssueAdjustment , callback ?: never ) : Promise < T > ;
120
120
async updateIssueAdjustment < T = void > (
@@ -136,20 +136,20 @@ export class IssueAdjustmentsApps {
136
136
}
137
137
138
138
/**
139
- * Deletes an issue adjustment. All the contexts that belong to the issue adjustment are deleted too. Issue adjustment
140
- * can only be deleted by Forge apps.
139
+ * @deprecated Deletes an issue adjustment. All the contexts that belong to the issue adjustment are deleted too.
140
+ * Issue adjustment can only be deleted by Forge apps.
141
141
*
142
- * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None.
142
+ * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None.
143
143
*/
144
144
async deleteIssueAdjustment < T = void > (
145
145
parameters : Parameters . DeleteIssueAdjustment ,
146
146
callback : Callback < T >
147
147
) : Promise < void > ;
148
148
/**
149
- * Deletes an issue adjustment. All the contexts that belong to the issue adjustment are deleted too. Issue adjustment
150
- * can only be deleted by Forge apps.
149
+ * @deprecated Deletes an issue adjustment. All the contexts that belong to the issue adjustment are deleted too.
150
+ * Issue adjustment can only be deleted by Forge apps.
151
151
*
152
- * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None.
152
+ * **[Permissions](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#permissions) required:** None.
153
153
*/
154
154
async deleteIssueAdjustment < T = void > ( parameters : Parameters . DeleteIssueAdjustment , callback ?: never ) : Promise < T > ;
155
155
async deleteIssueAdjustment < T = void > (
0 commit comments