@valiantys/atlassian-app-frontend 3.0.0-alpha-30 → 3.0.0-alpha-32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/atlassian/jira/shared/data-access-issue/src/lib/jira-issue-service/index.cjs.js +1 -1
- package/atlassian/jira/shared/data-access-issue/src/lib/jira-issue-service/index.es.js +18 -7
- package/atlassian/shared/frontend-ui-expand-panel/src/lib/panel/index.cjs.js +1 -1
- package/atlassian/shared/frontend-ui-expand-panel/src/lib/panel/index.es.js +19 -17
- package/data-access-issue/atlassian-app-frontend-data-access-issue.api.json +77 -6
- package/data-access-issue/atlassian-app-frontend.api.md +12 -4
- package/data-access-issue/index.d.ts +22 -24
- package/package.json +1 -1
- package/ui-expand-panel/index.d.ts +1 -0
- package/util-jira-v3-api/atlassian-app-frontend-util-jira-v3-api.api.json +180 -85
- package/util-jira-v3-api/atlassian-app-frontend.api.md +19 -24
- package/util-jira-v3-api/index.d.ts +15 -22
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=class a{constructor(e){this.fetchSvc=e}async updateProperty(e,t,s){return this.fetchSvc.fetch({method:"PUT",url:this.fetchSvc.route`/rest/api/3/issue/${e}/properties/${t}`},s)}async updateField(e,t,s){await this.updateFields(e,{[t]:s})}async updateFields(e,t){await this.updateIssue(e,{fields:t})}async getIssueField(e,t){var s;return(s=await this.getIssueFields(e,[t]))==null?void 0:s[t]}async getIssueFields(e,t){return(await this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issue/${e}?fields=${t.join(",")}`})).fields}async getIssue(e,t=["*all"],s=!1){return this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issue/${e}?fields=${t.join(",")}&expand=${s?"renderedFields":""}`})}async issueSearch(e,t,s=50){let c;const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=class a{constructor(e){this.fetchSvc=e}async updateProperty(e,t,s){return this.fetchSvc.fetch({method:"PUT",url:this.fetchSvc.route`/rest/api/3/issue/${e}/properties/${t}`},s)}async updateField(e,t,s){await this.updateFields(e,{[t]:s})}async updateFields(e,t){await this.updateIssue(e,{fields:t})}async getIssueField(e,t){var s;return(s=await this.getIssueFields(e,[t]))==null?void 0:s[t]}async getIssueFields(e,t){return(await this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issue/${e}?fields=${t.join(",")}`})).fields}async getIssue(e,t=["*all"],s=!1){return this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issue/${e}?fields=${t.join(",")}&expand=${s?"renderedFields":""}`})}async issueSearch(e,t,s=50){let c;const r=[];do{const h=await this.issueSearchByPage(e,t,c,s);r.push(...h.issues),c=h.nextPageToken}while(c!==void 0);return r}async issueSearchByPage(e,t,s,c=50){return this.fetchSvc.fetch({method:"POST",url:this.fetchSvc.route`/rest/api/3/search/jql`},{fields:t,jql:e,maxResults:c,nextPageToken:s})}async addWorklog(e,t){return this.fetchSvc.fetch({method:"POST",url:this.fetchSvc.route`/rest/api/3/issue/${e}/worklog`},t)}async queryForIssuesInProjects(e){const t=`project IN (${e.join(",")})`;return this.issueSearch(t,["key","project"],5e3)}async createIssue(e){return this.fetchSvc.fetch({method:"POST",url:this.fetchSvc.route`/rest/api/3/issue`},e)}async updateIssue(e,t){return this.fetchSvc.fetch({method:"PUT",url:this.fetchSvc.route`/rest/api/3/issue/${e}`},t)}async getIssueComments(e,t=0){const s=t?`?startAt=${t}`:"";return this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issue/${e}/comment${s}`})}async getIssueCommentById(e,t){return this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issue/${e}/comment/${t}`})}async addIssueComment(e,t){return this.fetchSvc.fetch({method:"POST",url:this.fetchSvc.route`/rest/api/3/issue/${e}/comment`},{body:t})}async transitionIssue(e,t){return this.fetchSvc.fetch({method:"POST",url:this.fetchSvc.route`/rest/api/3/issue/${e}/transitions`},t)}async createIssueLink(e){return this.fetchSvc.fetch({method:"POST",url:this.fetchSvc.route`/rest/api/3/issueLink`},e)}async getIssueTypes(){return this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issuetype`})}async getIssueTypeSchemes({maxResults:e,orderBy:t,startAt:s,expand:c,id:r,queryString:h}={}){const i=new URLSearchParams;return c&&i.append("expand",c),e&&i.append("maxResults",e.toString()),t&&i.append("orderBy",t),s&&i.append("startAt",s.toString()),r&&r.forEach(n=>i.append("id",n)),h&&i.append("queryString",h),this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issuetypescheme?${i}`})}async getIssueTypeSchemesForProject({maxResults:e,startAt:t,projectId:s}={}){const c=new URLSearchParams;return e&&c.append("maxResults",e.toString()),t&&c.append("startAt",t.toString()),s&&s.forEach(r=>c.append("projectId",r)),this.fetchSvc.fetch({method:"GET",url:this.fetchSvc.route`/rest/api/3/issuetypescheme/project?${c}`})}};a.issueUrl="/rest/api/3/issue";let u=a;exports.JiraIssueService=u;
|
|
@@ -35,12 +35,12 @@ const u = class u {
|
|
|
35
35
|
}
|
|
36
36
|
async issueSearch(e, t, s = 50) {
|
|
37
37
|
let c;
|
|
38
|
-
const
|
|
38
|
+
const r = [];
|
|
39
39
|
do {
|
|
40
40
|
const i = await this.issueSearchByPage(e, t, c, s);
|
|
41
|
-
|
|
41
|
+
r.push(...i.issues), c = i.nextPageToken;
|
|
42
42
|
} while (c !== void 0);
|
|
43
|
-
return
|
|
43
|
+
return r;
|
|
44
44
|
}
|
|
45
45
|
async issueSearchByPage(e, t, s, c = 50) {
|
|
46
46
|
return this.fetchSvc.fetch(
|
|
@@ -139,13 +139,24 @@ const u = class u {
|
|
|
139
139
|
orderBy: t,
|
|
140
140
|
startAt: s,
|
|
141
141
|
expand: c,
|
|
142
|
-
id:
|
|
142
|
+
id: r,
|
|
143
143
|
queryString: i
|
|
144
144
|
} = {}) {
|
|
145
|
-
const
|
|
146
|
-
return c &&
|
|
145
|
+
const h = new URLSearchParams();
|
|
146
|
+
return c && h.append("expand", c), e && h.append("maxResults", e.toString()), t && h.append("orderBy", t), s && h.append("startAt", s.toString()), r && r.forEach((n) => h.append("id", n)), i && h.append("queryString", i), this.fetchSvc.fetch({
|
|
147
147
|
method: "GET",
|
|
148
|
-
url: this.fetchSvc.route`/rest/api/3/issuetypescheme?${
|
|
148
|
+
url: this.fetchSvc.route`/rest/api/3/issuetypescheme?${h}`
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
async getIssueTypeSchemesForProject({
|
|
152
|
+
maxResults: e,
|
|
153
|
+
startAt: t,
|
|
154
|
+
projectId: s
|
|
155
|
+
} = {}) {
|
|
156
|
+
const c = new URLSearchParams();
|
|
157
|
+
return e && c.append("maxResults", e.toString()), t && c.append("startAt", t.toString()), s && s.forEach((r) => c.append("projectId", r)), this.fetchSvc.fetch({
|
|
158
|
+
method: "GET",
|
|
159
|
+
url: this.fetchSvc.route`/rest/api/3/issuetypescheme/project?${c}`
|
|
149
160
|
});
|
|
150
161
|
}
|
|
151
162
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const
|
|
1
|
+
"use strict";const u=require("react/jsx-runtime"),d=require("react"),l=require("../panel-stateless/index.cjs.js"),x=({isDefaultExpanded:n=!1,children:a,header:r,headingSize:c,onChange:e})=>{const[t,i]=d.useState(n),o=()=>{const s=!t;i(s),e&&e(s)};return u.jsx(l,{header:r,isExpanded:t,headingSize:c,onChange:o,children:a})};module.exports=x;
|
|
@@ -1,26 +1,28 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { useState as
|
|
3
|
-
import
|
|
4
|
-
const
|
|
5
|
-
isDefaultExpanded:
|
|
6
|
-
children:
|
|
7
|
-
header:
|
|
8
|
-
headingSize:
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { useState as f } from "react";
|
|
3
|
+
import i from "../panel-stateless/index.es.js";
|
|
4
|
+
const x = ({
|
|
5
|
+
isDefaultExpanded: n = !1,
|
|
6
|
+
children: s,
|
|
7
|
+
header: o,
|
|
8
|
+
headingSize: r,
|
|
9
|
+
onChange: e
|
|
9
10
|
}) => {
|
|
10
|
-
const [
|
|
11
|
-
return /* @__PURE__ */
|
|
12
|
-
|
|
11
|
+
const [t, d] = f(n);
|
|
12
|
+
return /* @__PURE__ */ l(
|
|
13
|
+
i,
|
|
13
14
|
{
|
|
14
|
-
header:
|
|
15
|
-
isExpanded:
|
|
16
|
-
headingSize:
|
|
15
|
+
header: o,
|
|
16
|
+
isExpanded: t,
|
|
17
|
+
headingSize: r,
|
|
17
18
|
onChange: () => {
|
|
18
|
-
|
|
19
|
+
const a = !t;
|
|
20
|
+
d(a), e && e(a);
|
|
19
21
|
},
|
|
20
|
-
children:
|
|
22
|
+
children: s
|
|
21
23
|
}
|
|
22
24
|
);
|
|
23
25
|
};
|
|
24
26
|
export {
|
|
25
|
-
|
|
27
|
+
x as default
|
|
26
28
|
};
|
|
@@ -962,7 +962,7 @@
|
|
|
962
962
|
"excerptTokens": [
|
|
963
963
|
{
|
|
964
964
|
"kind": "Content",
|
|
965
|
-
"text": "getIssueTypeSchemes({ maxResults, orderBy, startAt, expand, id, queryString }?: "
|
|
965
|
+
"text": "getIssueTypeSchemes({ maxResults, orderBy, startAt, expand, id, queryString, }?: "
|
|
966
966
|
},
|
|
967
967
|
{
|
|
968
968
|
"kind": "Content",
|
|
@@ -983,8 +983,8 @@
|
|
|
983
983
|
},
|
|
984
984
|
{
|
|
985
985
|
"kind": "Reference",
|
|
986
|
-
"text": "
|
|
987
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!~
|
|
986
|
+
"text": "PagedResponseWithNextLink",
|
|
987
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!~PagedResponseWithNextLink:interface"
|
|
988
988
|
},
|
|
989
989
|
{
|
|
990
990
|
"kind": "Content",
|
|
@@ -992,8 +992,8 @@
|
|
|
992
992
|
},
|
|
993
993
|
{
|
|
994
994
|
"kind": "Reference",
|
|
995
|
-
"text": "
|
|
996
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!~
|
|
995
|
+
"text": "IssueTypeSchemeExpanded",
|
|
996
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!~IssueTypeSchemeExpanded:interface"
|
|
997
997
|
},
|
|
998
998
|
{
|
|
999
999
|
"kind": "Content",
|
|
@@ -1014,7 +1014,7 @@
|
|
|
1014
1014
|
"overloadIndex": 1,
|
|
1015
1015
|
"parameters": [
|
|
1016
1016
|
{
|
|
1017
|
-
"parameterName": "{ maxResults, orderBy, startAt, expand, id, queryString }",
|
|
1017
|
+
"parameterName": "{ maxResults, orderBy, startAt, expand, id, queryString, }",
|
|
1018
1018
|
"parameterTypeTokenRange": {
|
|
1019
1019
|
"startIndex": 1,
|
|
1020
1020
|
"endIndex": 2
|
|
@@ -1026,6 +1026,77 @@
|
|
|
1026
1026
|
"isAbstract": false,
|
|
1027
1027
|
"name": "getIssueTypeSchemes"
|
|
1028
1028
|
},
|
|
1029
|
+
{
|
|
1030
|
+
"kind": "Method",
|
|
1031
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!JiraIssueService#getIssueTypeSchemesForProject:member(1)",
|
|
1032
|
+
"docComment": "",
|
|
1033
|
+
"excerptTokens": [
|
|
1034
|
+
{
|
|
1035
|
+
"kind": "Content",
|
|
1036
|
+
"text": "getIssueTypeSchemesForProject({ maxResults, startAt, projectId, }?: "
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"kind": "Content",
|
|
1040
|
+
"text": "{\n maxResults?: number;\n startAt?: number;\n projectId?: string[];\n }"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"kind": "Content",
|
|
1044
|
+
"text": "): "
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"kind": "Reference",
|
|
1048
|
+
"text": "Promise",
|
|
1049
|
+
"canonicalReference": "!Promise:interface"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"kind": "Content",
|
|
1053
|
+
"text": "<"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"kind": "Reference",
|
|
1057
|
+
"text": "PagedResponseWithNextLink",
|
|
1058
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!~PagedResponseWithNextLink:interface"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"kind": "Content",
|
|
1062
|
+
"text": "<"
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"kind": "Reference",
|
|
1066
|
+
"text": "IssueTypeSchemeForProjects",
|
|
1067
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!~IssueTypeSchemeForProjects:interface"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"kind": "Content",
|
|
1071
|
+
"text": ">>"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"kind": "Content",
|
|
1075
|
+
"text": ";"
|
|
1076
|
+
}
|
|
1077
|
+
],
|
|
1078
|
+
"isStatic": false,
|
|
1079
|
+
"returnTypeTokenRange": {
|
|
1080
|
+
"startIndex": 3,
|
|
1081
|
+
"endIndex": 9
|
|
1082
|
+
},
|
|
1083
|
+
"releaseTag": "Public",
|
|
1084
|
+
"isProtected": false,
|
|
1085
|
+
"overloadIndex": 1,
|
|
1086
|
+
"parameters": [
|
|
1087
|
+
{
|
|
1088
|
+
"parameterName": "{ maxResults, startAt, projectId, }",
|
|
1089
|
+
"parameterTypeTokenRange": {
|
|
1090
|
+
"startIndex": 1,
|
|
1091
|
+
"endIndex": 2
|
|
1092
|
+
},
|
|
1093
|
+
"isOptional": true
|
|
1094
|
+
}
|
|
1095
|
+
],
|
|
1096
|
+
"isOptional": false,
|
|
1097
|
+
"isAbstract": false,
|
|
1098
|
+
"name": "getIssueTypeSchemesForProject"
|
|
1099
|
+
},
|
|
1029
1100
|
{
|
|
1030
1101
|
"kind": "Method",
|
|
1031
1102
|
"canonicalReference": "@valiantys/atlassian-app-frontend!JiraIssueService#issueSearch:member(1)",
|
|
@@ -46,18 +46,26 @@ export class JiraIssueService {
|
|
|
46
46
|
//
|
|
47
47
|
// (undocumented)
|
|
48
48
|
getIssueTypes(): Promise<IssueTypeDetails[]>;
|
|
49
|
-
// Warning: (ae-forgotten-export) The symbol "
|
|
50
|
-
// Warning: (ae-forgotten-export) The symbol "
|
|
49
|
+
// Warning: (ae-forgotten-export) The symbol "PagedResponseWithNextLink" needs to be exported by the entry point data-access-issue.d.ts
|
|
50
|
+
// Warning: (ae-forgotten-export) The symbol "IssueTypeSchemeExpanded" needs to be exported by the entry point data-access-issue.d.ts
|
|
51
51
|
//
|
|
52
52
|
// (undocumented)
|
|
53
|
-
getIssueTypeSchemes({ maxResults, orderBy, startAt, expand, id, queryString }?: {
|
|
53
|
+
getIssueTypeSchemes({ maxResults, orderBy, startAt, expand, id, queryString, }?: {
|
|
54
54
|
maxResults?: number;
|
|
55
55
|
orderBy?: 'name' | '-name' | '+name' | 'id' | '-id' | '+id';
|
|
56
56
|
startAt?: number;
|
|
57
57
|
expand?: 'projects,issueTypes' | 'projects' | 'issueTypes';
|
|
58
58
|
id?: string[];
|
|
59
59
|
queryString?: string;
|
|
60
|
-
}): Promise<
|
|
60
|
+
}): Promise<PagedResponseWithNextLink<IssueTypeSchemeExpanded>>;
|
|
61
|
+
// Warning: (ae-forgotten-export) The symbol "IssueTypeSchemeForProjects" needs to be exported by the entry point data-access-issue.d.ts
|
|
62
|
+
//
|
|
63
|
+
// (undocumented)
|
|
64
|
+
getIssueTypeSchemesForProject({ maxResults, startAt, projectId, }?: {
|
|
65
|
+
maxResults?: number;
|
|
66
|
+
startAt?: number;
|
|
67
|
+
projectId?: string[];
|
|
68
|
+
}): Promise<PagedResponseWithNextLink<IssueTypeSchemeForProjects>>;
|
|
61
69
|
// Warning: (ae-forgotten-export) The symbol "AtlassianDocumentFormat" needs to be exported by the entry point data-access-issue.d.ts
|
|
62
70
|
//
|
|
63
71
|
// (undocumented)
|
|
@@ -195,30 +195,19 @@ declare interface IssueTypeDetails {
|
|
|
195
195
|
declare interface IssueTypeScheme {
|
|
196
196
|
id: string;
|
|
197
197
|
name: string;
|
|
198
|
-
description
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
isLast: boolean;
|
|
202
|
-
maxResults: number;
|
|
203
|
-
startAt: number;
|
|
204
|
-
total: number;
|
|
205
|
-
values: {
|
|
206
|
-
id: string;
|
|
207
|
-
key: string;
|
|
208
|
-
name: string;
|
|
209
|
-
projectTypeKey: string;
|
|
210
|
-
simplified: boolean;
|
|
211
|
-
avatarUrls: Record<string, string>;
|
|
212
|
-
}[];
|
|
213
|
-
};
|
|
198
|
+
description?: string;
|
|
199
|
+
defaultIssueTypeId?: string;
|
|
200
|
+
isDefault: boolean;
|
|
214
201
|
}
|
|
215
202
|
|
|
216
|
-
declare interface
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
203
|
+
declare interface IssueTypeSchemeExpanded extends IssueTypeScheme {
|
|
204
|
+
issueTypes?: PagedResponse<IssueTypeDetails>;
|
|
205
|
+
projects?: PagedResponse<Project>;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
declare interface IssueTypeSchemeForProjects {
|
|
209
|
+
issueTypeScheme: IssueTypeScheme;
|
|
210
|
+
projectIds: string[];
|
|
222
211
|
}
|
|
223
212
|
|
|
224
213
|
declare type JiraCommentResponse = {
|
|
@@ -253,14 +242,19 @@ export declare class JiraIssueService {
|
|
|
253
242
|
transitionIssue(issueIdOrKey: string, body: TransitionIssueRequest): Promise<void>;
|
|
254
243
|
createIssueLink(issueLinkRequest: IssueLinkRequest): Promise<void>;
|
|
255
244
|
getIssueTypes(): Promise<IssueTypeDetails[]>;
|
|
256
|
-
getIssueTypeSchemes({ maxResults, orderBy, startAt, expand, id, queryString }?: {
|
|
245
|
+
getIssueTypeSchemes({ maxResults, orderBy, startAt, expand, id, queryString, }?: {
|
|
257
246
|
maxResults?: number;
|
|
258
247
|
orderBy?: 'name' | '-name' | '+name' | 'id' | '-id' | '+id';
|
|
259
248
|
startAt?: number;
|
|
260
249
|
expand?: 'projects,issueTypes' | 'projects' | 'issueTypes';
|
|
261
250
|
id?: string[];
|
|
262
251
|
queryString?: string;
|
|
263
|
-
}): Promise<
|
|
252
|
+
}): Promise<PagedResponseWithNextLink<IssueTypeSchemeExpanded>>;
|
|
253
|
+
getIssueTypeSchemesForProject({ maxResults, startAt, projectId, }?: {
|
|
254
|
+
maxResults?: number;
|
|
255
|
+
startAt?: number;
|
|
256
|
+
projectId?: string[];
|
|
257
|
+
}): Promise<PagedResponseWithNextLink<IssueTypeSchemeForProjects>>;
|
|
264
258
|
}
|
|
265
259
|
|
|
266
260
|
export declare class JiraRemoteLinksService {
|
|
@@ -278,6 +272,10 @@ declare interface PagedResponse<T> {
|
|
|
278
272
|
values: T[];
|
|
279
273
|
}
|
|
280
274
|
|
|
275
|
+
declare interface PagedResponseWithNextLink<T> extends PagedResponse<T> {
|
|
276
|
+
nextPage?: string;
|
|
277
|
+
}
|
|
278
|
+
|
|
281
279
|
declare type Product = 'jira' | 'bitbucket' | 'confluence' | 'connected-data';
|
|
282
280
|
|
|
283
281
|
declare interface Project {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valiantys/atlassian-app-frontend",
|
|
3
|
-
"version": "3.0.0-alpha-
|
|
3
|
+
"version": "3.0.0-alpha-32",
|
|
4
4
|
"description": "This library provides an Atlassian Forge Custom UI wrapper component that handles all the setup necessary to support an app that can run deployed or in standalone mode",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./atlassian-app": {
|
|
@@ -3171,12 +3171,12 @@
|
|
|
3171
3171
|
"members": [
|
|
3172
3172
|
{
|
|
3173
3173
|
"kind": "PropertySignature",
|
|
3174
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#
|
|
3174
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#defaultIssueTypeId:member",
|
|
3175
3175
|
"docComment": "",
|
|
3176
3176
|
"excerptTokens": [
|
|
3177
3177
|
{
|
|
3178
3178
|
"kind": "Content",
|
|
3179
|
-
"text": "
|
|
3179
|
+
"text": "defaultIssueTypeId?: "
|
|
3180
3180
|
},
|
|
3181
3181
|
{
|
|
3182
3182
|
"kind": "Content",
|
|
@@ -3188,9 +3188,9 @@
|
|
|
3188
3188
|
}
|
|
3189
3189
|
],
|
|
3190
3190
|
"isReadonly": false,
|
|
3191
|
-
"isOptional":
|
|
3191
|
+
"isOptional": true,
|
|
3192
3192
|
"releaseTag": "Public",
|
|
3193
|
-
"name": "
|
|
3193
|
+
"name": "defaultIssueTypeId",
|
|
3194
3194
|
"propertyTypeTokenRange": {
|
|
3195
3195
|
"startIndex": 1,
|
|
3196
3196
|
"endIndex": 2
|
|
@@ -3198,12 +3198,12 @@
|
|
|
3198
3198
|
},
|
|
3199
3199
|
{
|
|
3200
3200
|
"kind": "PropertySignature",
|
|
3201
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#
|
|
3201
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#description:member",
|
|
3202
3202
|
"docComment": "",
|
|
3203
3203
|
"excerptTokens": [
|
|
3204
3204
|
{
|
|
3205
3205
|
"kind": "Content",
|
|
3206
|
-
"text": "
|
|
3206
|
+
"text": "description?: "
|
|
3207
3207
|
},
|
|
3208
3208
|
{
|
|
3209
3209
|
"kind": "Content",
|
|
@@ -3215,9 +3215,9 @@
|
|
|
3215
3215
|
}
|
|
3216
3216
|
],
|
|
3217
3217
|
"isReadonly": false,
|
|
3218
|
-
"isOptional":
|
|
3218
|
+
"isOptional": true,
|
|
3219
3219
|
"releaseTag": "Public",
|
|
3220
|
-
"name": "
|
|
3220
|
+
"name": "description",
|
|
3221
3221
|
"propertyTypeTokenRange": {
|
|
3222
3222
|
"startIndex": 1,
|
|
3223
3223
|
"endIndex": 2
|
|
@@ -3225,17 +3225,16 @@
|
|
|
3225
3225
|
},
|
|
3226
3226
|
{
|
|
3227
3227
|
"kind": "PropertySignature",
|
|
3228
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#
|
|
3228
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#id:member",
|
|
3229
3229
|
"docComment": "",
|
|
3230
3230
|
"excerptTokens": [
|
|
3231
3231
|
{
|
|
3232
3232
|
"kind": "Content",
|
|
3233
|
-
"text": "
|
|
3233
|
+
"text": "id: "
|
|
3234
3234
|
},
|
|
3235
3235
|
{
|
|
3236
|
-
"kind": "
|
|
3237
|
-
"text": "
|
|
3238
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeSchemeIssueTypesPage:interface"
|
|
3236
|
+
"kind": "Content",
|
|
3237
|
+
"text": "string"
|
|
3239
3238
|
},
|
|
3240
3239
|
{
|
|
3241
3240
|
"kind": "Content",
|
|
@@ -3245,7 +3244,7 @@
|
|
|
3245
3244
|
"isReadonly": false,
|
|
3246
3245
|
"isOptional": false,
|
|
3247
3246
|
"releaseTag": "Public",
|
|
3248
|
-
"name": "
|
|
3247
|
+
"name": "id",
|
|
3249
3248
|
"propertyTypeTokenRange": {
|
|
3250
3249
|
"startIndex": 1,
|
|
3251
3250
|
"endIndex": 2
|
|
@@ -3253,16 +3252,16 @@
|
|
|
3253
3252
|
},
|
|
3254
3253
|
{
|
|
3255
3254
|
"kind": "PropertySignature",
|
|
3256
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#
|
|
3255
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#isDefault:member",
|
|
3257
3256
|
"docComment": "",
|
|
3258
3257
|
"excerptTokens": [
|
|
3259
3258
|
{
|
|
3260
3259
|
"kind": "Content",
|
|
3261
|
-
"text": "
|
|
3260
|
+
"text": "isDefault: "
|
|
3262
3261
|
},
|
|
3263
3262
|
{
|
|
3264
3263
|
"kind": "Content",
|
|
3265
|
-
"text": "
|
|
3264
|
+
"text": "boolean"
|
|
3266
3265
|
},
|
|
3267
3266
|
{
|
|
3268
3267
|
"kind": "Content",
|
|
@@ -3272,7 +3271,7 @@
|
|
|
3272
3271
|
"isReadonly": false,
|
|
3273
3272
|
"isOptional": false,
|
|
3274
3273
|
"releaseTag": "Public",
|
|
3275
|
-
"name": "
|
|
3274
|
+
"name": "isDefault",
|
|
3276
3275
|
"propertyTypeTokenRange": {
|
|
3277
3276
|
"startIndex": 1,
|
|
3278
3277
|
"endIndex": 2
|
|
@@ -3280,25 +3279,16 @@
|
|
|
3280
3279
|
},
|
|
3281
3280
|
{
|
|
3282
3281
|
"kind": "PropertySignature",
|
|
3283
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#
|
|
3282
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme#name:member",
|
|
3284
3283
|
"docComment": "",
|
|
3285
3284
|
"excerptTokens": [
|
|
3286
3285
|
{
|
|
3287
3286
|
"kind": "Content",
|
|
3288
|
-
"text": "
|
|
3289
|
-
},
|
|
3290
|
-
{
|
|
3291
|
-
"kind": "Content",
|
|
3292
|
-
"text": "{\n isLast: boolean;\n maxResults: number;\n startAt: number;\n total: number;\n values: {\n id: string;\n key: string;\n name: string;\n projectTypeKey: string;\n simplified: boolean;\n avatarUrls: "
|
|
3293
|
-
},
|
|
3294
|
-
{
|
|
3295
|
-
"kind": "Reference",
|
|
3296
|
-
"text": "Record",
|
|
3297
|
-
"canonicalReference": "!Record:type"
|
|
3287
|
+
"text": "name: "
|
|
3298
3288
|
},
|
|
3299
3289
|
{
|
|
3300
3290
|
"kind": "Content",
|
|
3301
|
-
"text": "
|
|
3291
|
+
"text": "string"
|
|
3302
3292
|
},
|
|
3303
3293
|
{
|
|
3304
3294
|
"kind": "Content",
|
|
@@ -3306,12 +3296,12 @@
|
|
|
3306
3296
|
}
|
|
3307
3297
|
],
|
|
3308
3298
|
"isReadonly": false,
|
|
3309
|
-
"isOptional":
|
|
3299
|
+
"isOptional": false,
|
|
3310
3300
|
"releaseTag": "Public",
|
|
3311
|
-
"name": "
|
|
3301
|
+
"name": "name",
|
|
3312
3302
|
"propertyTypeTokenRange": {
|
|
3313
3303
|
"startIndex": 1,
|
|
3314
|
-
"endIndex":
|
|
3304
|
+
"endIndex": 2
|
|
3315
3305
|
}
|
|
3316
3306
|
}
|
|
3317
3307
|
],
|
|
@@ -3319,58 +3309,54 @@
|
|
|
3319
3309
|
},
|
|
3320
3310
|
{
|
|
3321
3311
|
"kind": "Interface",
|
|
3322
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!
|
|
3312
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeSchemeExpanded:interface",
|
|
3323
3313
|
"docComment": "",
|
|
3324
3314
|
"excerptTokens": [
|
|
3325
3315
|
{
|
|
3326
3316
|
"kind": "Content",
|
|
3327
|
-
"text": "export interface
|
|
3317
|
+
"text": "export interface IssueTypeSchemeExpanded extends "
|
|
3318
|
+
},
|
|
3319
|
+
{
|
|
3320
|
+
"kind": "Reference",
|
|
3321
|
+
"text": "IssueTypeScheme",
|
|
3322
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme:interface"
|
|
3323
|
+
},
|
|
3324
|
+
{
|
|
3325
|
+
"kind": "Content",
|
|
3326
|
+
"text": " "
|
|
3328
3327
|
}
|
|
3329
3328
|
],
|
|
3330
3329
|
"fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/issue-type-scheme.d.ts",
|
|
3331
3330
|
"releaseTag": "Public",
|
|
3332
|
-
"name": "
|
|
3331
|
+
"name": "IssueTypeSchemeExpanded",
|
|
3333
3332
|
"preserveMemberOrder": false,
|
|
3334
3333
|
"members": [
|
|
3335
3334
|
{
|
|
3336
3335
|
"kind": "PropertySignature",
|
|
3337
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!
|
|
3336
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeSchemeExpanded#issueTypes:member",
|
|
3338
3337
|
"docComment": "",
|
|
3339
3338
|
"excerptTokens": [
|
|
3340
3339
|
{
|
|
3341
3340
|
"kind": "Content",
|
|
3342
|
-
"text": "
|
|
3341
|
+
"text": "issueTypes?: "
|
|
3343
3342
|
},
|
|
3344
3343
|
{
|
|
3345
|
-
"kind": "
|
|
3346
|
-
"text": "
|
|
3344
|
+
"kind": "Reference",
|
|
3345
|
+
"text": "PagedResponse",
|
|
3346
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse:interface"
|
|
3347
3347
|
},
|
|
3348
3348
|
{
|
|
3349
3349
|
"kind": "Content",
|
|
3350
|
-
"text": "
|
|
3351
|
-
}
|
|
3352
|
-
],
|
|
3353
|
-
"isReadonly": false,
|
|
3354
|
-
"isOptional": false,
|
|
3355
|
-
"releaseTag": "Public",
|
|
3356
|
-
"name": "isLast",
|
|
3357
|
-
"propertyTypeTokenRange": {
|
|
3358
|
-
"startIndex": 1,
|
|
3359
|
-
"endIndex": 2
|
|
3360
|
-
}
|
|
3361
|
-
},
|
|
3362
|
-
{
|
|
3363
|
-
"kind": "PropertySignature",
|
|
3364
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeSchemeIssueTypesPage#maxResults:member",
|
|
3365
|
-
"docComment": "",
|
|
3366
|
-
"excerptTokens": [
|
|
3350
|
+
"text": "<"
|
|
3351
|
+
},
|
|
3367
3352
|
{
|
|
3368
|
-
"kind": "
|
|
3369
|
-
"text": "
|
|
3353
|
+
"kind": "Reference",
|
|
3354
|
+
"text": "IssueTypeDetails",
|
|
3355
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeDetails:interface"
|
|
3370
3356
|
},
|
|
3371
3357
|
{
|
|
3372
3358
|
"kind": "Content",
|
|
3373
|
-
"text": "
|
|
3359
|
+
"text": ">"
|
|
3374
3360
|
},
|
|
3375
3361
|
{
|
|
3376
3362
|
"kind": "Content",
|
|
@@ -3378,26 +3364,40 @@
|
|
|
3378
3364
|
}
|
|
3379
3365
|
],
|
|
3380
3366
|
"isReadonly": false,
|
|
3381
|
-
"isOptional":
|
|
3367
|
+
"isOptional": true,
|
|
3382
3368
|
"releaseTag": "Public",
|
|
3383
|
-
"name": "
|
|
3369
|
+
"name": "issueTypes",
|
|
3384
3370
|
"propertyTypeTokenRange": {
|
|
3385
3371
|
"startIndex": 1,
|
|
3386
|
-
"endIndex":
|
|
3372
|
+
"endIndex": 5
|
|
3387
3373
|
}
|
|
3388
3374
|
},
|
|
3389
3375
|
{
|
|
3390
3376
|
"kind": "PropertySignature",
|
|
3391
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!
|
|
3377
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeSchemeExpanded#projects:member",
|
|
3392
3378
|
"docComment": "",
|
|
3393
3379
|
"excerptTokens": [
|
|
3394
3380
|
{
|
|
3395
3381
|
"kind": "Content",
|
|
3396
|
-
"text": "
|
|
3382
|
+
"text": "projects?: "
|
|
3383
|
+
},
|
|
3384
|
+
{
|
|
3385
|
+
"kind": "Reference",
|
|
3386
|
+
"text": "PagedResponse",
|
|
3387
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse:interface"
|
|
3397
3388
|
},
|
|
3398
3389
|
{
|
|
3399
3390
|
"kind": "Content",
|
|
3400
|
-
"text": "
|
|
3391
|
+
"text": "<"
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"kind": "Reference",
|
|
3395
|
+
"text": "Project",
|
|
3396
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!Project:interface"
|
|
3397
|
+
},
|
|
3398
|
+
{
|
|
3399
|
+
"kind": "Content",
|
|
3400
|
+
"text": ">"
|
|
3401
3401
|
},
|
|
3402
3402
|
{
|
|
3403
3403
|
"kind": "Content",
|
|
@@ -3405,26 +3405,50 @@
|
|
|
3405
3405
|
}
|
|
3406
3406
|
],
|
|
3407
3407
|
"isReadonly": false,
|
|
3408
|
-
"isOptional":
|
|
3408
|
+
"isOptional": true,
|
|
3409
3409
|
"releaseTag": "Public",
|
|
3410
|
-
"name": "
|
|
3410
|
+
"name": "projects",
|
|
3411
3411
|
"propertyTypeTokenRange": {
|
|
3412
3412
|
"startIndex": 1,
|
|
3413
|
-
"endIndex":
|
|
3413
|
+
"endIndex": 5
|
|
3414
3414
|
}
|
|
3415
|
-
}
|
|
3415
|
+
}
|
|
3416
|
+
],
|
|
3417
|
+
"extendsTokenRanges": [
|
|
3418
|
+
{
|
|
3419
|
+
"startIndex": 1,
|
|
3420
|
+
"endIndex": 2
|
|
3421
|
+
}
|
|
3422
|
+
]
|
|
3423
|
+
},
|
|
3424
|
+
{
|
|
3425
|
+
"kind": "Interface",
|
|
3426
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeSchemeForProjects:interface",
|
|
3427
|
+
"docComment": "",
|
|
3428
|
+
"excerptTokens": [
|
|
3429
|
+
{
|
|
3430
|
+
"kind": "Content",
|
|
3431
|
+
"text": "export interface IssueTypeSchemeForProjects "
|
|
3432
|
+
}
|
|
3433
|
+
],
|
|
3434
|
+
"fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/issue-type-scheme.d.ts",
|
|
3435
|
+
"releaseTag": "Public",
|
|
3436
|
+
"name": "IssueTypeSchemeForProjects",
|
|
3437
|
+
"preserveMemberOrder": false,
|
|
3438
|
+
"members": [
|
|
3416
3439
|
{
|
|
3417
3440
|
"kind": "PropertySignature",
|
|
3418
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!
|
|
3441
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeSchemeForProjects#issueTypeScheme:member",
|
|
3419
3442
|
"docComment": "",
|
|
3420
3443
|
"excerptTokens": [
|
|
3421
3444
|
{
|
|
3422
3445
|
"kind": "Content",
|
|
3423
|
-
"text": "
|
|
3446
|
+
"text": "issueTypeScheme: "
|
|
3424
3447
|
},
|
|
3425
3448
|
{
|
|
3426
|
-
"kind": "
|
|
3427
|
-
"text": "
|
|
3449
|
+
"kind": "Reference",
|
|
3450
|
+
"text": "IssueTypeScheme",
|
|
3451
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeScheme:interface"
|
|
3428
3452
|
},
|
|
3429
3453
|
{
|
|
3430
3454
|
"kind": "Content",
|
|
@@ -3434,7 +3458,7 @@
|
|
|
3434
3458
|
"isReadonly": false,
|
|
3435
3459
|
"isOptional": false,
|
|
3436
3460
|
"releaseTag": "Public",
|
|
3437
|
-
"name": "
|
|
3461
|
+
"name": "issueTypeScheme",
|
|
3438
3462
|
"propertyTypeTokenRange": {
|
|
3439
3463
|
"startIndex": 1,
|
|
3440
3464
|
"endIndex": 2
|
|
@@ -3442,21 +3466,16 @@
|
|
|
3442
3466
|
},
|
|
3443
3467
|
{
|
|
3444
3468
|
"kind": "PropertySignature",
|
|
3445
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!
|
|
3469
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeSchemeForProjects#projectIds:member",
|
|
3446
3470
|
"docComment": "",
|
|
3447
3471
|
"excerptTokens": [
|
|
3448
3472
|
{
|
|
3449
3473
|
"kind": "Content",
|
|
3450
|
-
"text": "
|
|
3451
|
-
},
|
|
3452
|
-
{
|
|
3453
|
-
"kind": "Reference",
|
|
3454
|
-
"text": "IssueTypeDetails",
|
|
3455
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!IssueTypeDetails:interface"
|
|
3474
|
+
"text": "projectIds: "
|
|
3456
3475
|
},
|
|
3457
3476
|
{
|
|
3458
3477
|
"kind": "Content",
|
|
3459
|
-
"text": "[]"
|
|
3478
|
+
"text": "string[]"
|
|
3460
3479
|
},
|
|
3461
3480
|
{
|
|
3462
3481
|
"kind": "Content",
|
|
@@ -3466,10 +3485,10 @@
|
|
|
3466
3485
|
"isReadonly": false,
|
|
3467
3486
|
"isOptional": false,
|
|
3468
3487
|
"releaseTag": "Public",
|
|
3469
|
-
"name": "
|
|
3488
|
+
"name": "projectIds",
|
|
3470
3489
|
"propertyTypeTokenRange": {
|
|
3471
3490
|
"startIndex": 1,
|
|
3472
|
-
"endIndex":
|
|
3491
|
+
"endIndex": 2
|
|
3473
3492
|
}
|
|
3474
3493
|
}
|
|
3475
3494
|
],
|
|
@@ -4077,6 +4096,82 @@
|
|
|
4077
4096
|
],
|
|
4078
4097
|
"extendsTokenRanges": []
|
|
4079
4098
|
},
|
|
4099
|
+
{
|
|
4100
|
+
"kind": "Interface",
|
|
4101
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponseWithNextLink:interface",
|
|
4102
|
+
"docComment": "",
|
|
4103
|
+
"excerptTokens": [
|
|
4104
|
+
{
|
|
4105
|
+
"kind": "Content",
|
|
4106
|
+
"text": "export interface PagedResponseWithNextLink<T> extends "
|
|
4107
|
+
},
|
|
4108
|
+
{
|
|
4109
|
+
"kind": "Reference",
|
|
4110
|
+
"text": "PagedResponse",
|
|
4111
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse:interface"
|
|
4112
|
+
},
|
|
4113
|
+
{
|
|
4114
|
+
"kind": "Content",
|
|
4115
|
+
"text": "<T>"
|
|
4116
|
+
},
|
|
4117
|
+
{
|
|
4118
|
+
"kind": "Content",
|
|
4119
|
+
"text": " "
|
|
4120
|
+
}
|
|
4121
|
+
],
|
|
4122
|
+
"fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/paged-response.d.ts",
|
|
4123
|
+
"releaseTag": "Public",
|
|
4124
|
+
"typeParameters": [
|
|
4125
|
+
{
|
|
4126
|
+
"typeParameterName": "T",
|
|
4127
|
+
"constraintTokenRange": {
|
|
4128
|
+
"startIndex": 0,
|
|
4129
|
+
"endIndex": 0
|
|
4130
|
+
},
|
|
4131
|
+
"defaultTypeTokenRange": {
|
|
4132
|
+
"startIndex": 0,
|
|
4133
|
+
"endIndex": 0
|
|
4134
|
+
}
|
|
4135
|
+
}
|
|
4136
|
+
],
|
|
4137
|
+
"name": "PagedResponseWithNextLink",
|
|
4138
|
+
"preserveMemberOrder": false,
|
|
4139
|
+
"members": [
|
|
4140
|
+
{
|
|
4141
|
+
"kind": "PropertySignature",
|
|
4142
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponseWithNextLink#nextPage:member",
|
|
4143
|
+
"docComment": "",
|
|
4144
|
+
"excerptTokens": [
|
|
4145
|
+
{
|
|
4146
|
+
"kind": "Content",
|
|
4147
|
+
"text": "nextPage?: "
|
|
4148
|
+
},
|
|
4149
|
+
{
|
|
4150
|
+
"kind": "Content",
|
|
4151
|
+
"text": "string"
|
|
4152
|
+
},
|
|
4153
|
+
{
|
|
4154
|
+
"kind": "Content",
|
|
4155
|
+
"text": ";"
|
|
4156
|
+
}
|
|
4157
|
+
],
|
|
4158
|
+
"isReadonly": false,
|
|
4159
|
+
"isOptional": true,
|
|
4160
|
+
"releaseTag": "Public",
|
|
4161
|
+
"name": "nextPage",
|
|
4162
|
+
"propertyTypeTokenRange": {
|
|
4163
|
+
"startIndex": 1,
|
|
4164
|
+
"endIndex": 2
|
|
4165
|
+
}
|
|
4166
|
+
}
|
|
4167
|
+
],
|
|
4168
|
+
"extendsTokenRanges": [
|
|
4169
|
+
{
|
|
4170
|
+
"startIndex": 1,
|
|
4171
|
+
"endIndex": 3
|
|
4172
|
+
}
|
|
4173
|
+
]
|
|
4174
|
+
},
|
|
4080
4175
|
{
|
|
4081
4176
|
"kind": "TypeAlias",
|
|
4082
4177
|
"canonicalReference": "@valiantys/atlassian-app-frontend!PagedUsers:type",
|
|
@@ -305,42 +305,31 @@ export interface IssueTypeDetails {
|
|
|
305
305
|
// @public (undocumented)
|
|
306
306
|
export interface IssueTypeScheme {
|
|
307
307
|
// (undocumented)
|
|
308
|
-
|
|
308
|
+
defaultIssueTypeId?: string;
|
|
309
|
+
// (undocumented)
|
|
310
|
+
description?: string;
|
|
309
311
|
// (undocumented)
|
|
310
312
|
id: string;
|
|
311
313
|
// (undocumented)
|
|
312
|
-
|
|
314
|
+
isDefault: boolean;
|
|
313
315
|
// (undocumented)
|
|
314
316
|
name: string;
|
|
315
|
-
// (undocumented)
|
|
316
|
-
projects?: {
|
|
317
|
-
isLast: boolean;
|
|
318
|
-
maxResults: number;
|
|
319
|
-
startAt: number;
|
|
320
|
-
total: number;
|
|
321
|
-
values: {
|
|
322
|
-
id: string;
|
|
323
|
-
key: string;
|
|
324
|
-
name: string;
|
|
325
|
-
projectTypeKey: string;
|
|
326
|
-
simplified: boolean;
|
|
327
|
-
avatarUrls: Record<string, string>;
|
|
328
|
-
}[];
|
|
329
|
-
};
|
|
330
317
|
}
|
|
331
318
|
|
|
332
319
|
// @public (undocumented)
|
|
333
|
-
export interface
|
|
334
|
-
// (undocumented)
|
|
335
|
-
isLast: boolean;
|
|
320
|
+
export interface IssueTypeSchemeExpanded extends IssueTypeScheme {
|
|
336
321
|
// (undocumented)
|
|
337
|
-
|
|
322
|
+
issueTypes?: PagedResponse<IssueTypeDetails>;
|
|
338
323
|
// (undocumented)
|
|
339
|
-
|
|
324
|
+
projects?: PagedResponse<Project>;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
// @public (undocumented)
|
|
328
|
+
export interface IssueTypeSchemeForProjects {
|
|
340
329
|
// (undocumented)
|
|
341
|
-
|
|
330
|
+
issueTypeScheme: IssueTypeScheme;
|
|
342
331
|
// (undocumented)
|
|
343
|
-
|
|
332
|
+
projectIds: string[];
|
|
344
333
|
}
|
|
345
334
|
|
|
346
335
|
// @public (undocumented)
|
|
@@ -397,6 +386,12 @@ export interface PagedResponse<T> {
|
|
|
397
386
|
values: T[];
|
|
398
387
|
}
|
|
399
388
|
|
|
389
|
+
// @public (undocumented)
|
|
390
|
+
export interface PagedResponseWithNextLink<T> extends PagedResponse<T> {
|
|
391
|
+
// (undocumented)
|
|
392
|
+
nextPage?: string;
|
|
393
|
+
}
|
|
394
|
+
|
|
400
395
|
// @public (undocumented)
|
|
401
396
|
export type PagedUsers = PagedResponse<User | null>;
|
|
402
397
|
|
|
@@ -192,30 +192,19 @@ export declare interface IssueTypeDetails {
|
|
|
192
192
|
export declare interface IssueTypeScheme {
|
|
193
193
|
id: string;
|
|
194
194
|
name: string;
|
|
195
|
-
description
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
isLast: boolean;
|
|
199
|
-
maxResults: number;
|
|
200
|
-
startAt: number;
|
|
201
|
-
total: number;
|
|
202
|
-
values: {
|
|
203
|
-
id: string;
|
|
204
|
-
key: string;
|
|
205
|
-
name: string;
|
|
206
|
-
projectTypeKey: string;
|
|
207
|
-
simplified: boolean;
|
|
208
|
-
avatarUrls: Record<string, string>;
|
|
209
|
-
}[];
|
|
210
|
-
};
|
|
195
|
+
description?: string;
|
|
196
|
+
defaultIssueTypeId?: string;
|
|
197
|
+
isDefault: boolean;
|
|
211
198
|
}
|
|
212
199
|
|
|
213
|
-
export declare interface
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
200
|
+
export declare interface IssueTypeSchemeExpanded extends IssueTypeScheme {
|
|
201
|
+
issueTypes?: PagedResponse<IssueTypeDetails>;
|
|
202
|
+
projects?: PagedResponse<Project>;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
export declare interface IssueTypeSchemeForProjects {
|
|
206
|
+
issueTypeScheme: IssueTypeScheme;
|
|
207
|
+
projectIds: string[];
|
|
219
208
|
}
|
|
220
209
|
|
|
221
210
|
export declare type JiraCommentResponse = {
|
|
@@ -250,6 +239,10 @@ export declare interface PagedResponse<T> {
|
|
|
250
239
|
values: T[];
|
|
251
240
|
}
|
|
252
241
|
|
|
242
|
+
export declare interface PagedResponseWithNextLink<T> extends PagedResponse<T> {
|
|
243
|
+
nextPage?: string;
|
|
244
|
+
}
|
|
245
|
+
|
|
253
246
|
export declare type PagedUsers = PagedResponse<User | null>;
|
|
254
247
|
|
|
255
248
|
export declare type Precomputation = {
|