@valiantys/atlassian-app-frontend 3.0.0-alpha-11 → 3.0.0-alpha-18
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 +22 -11
- package/atlassian/jira/shared/data-access-project/src/lib/jira-project-service/index.cjs.js +1 -0
- package/atlassian/jira/shared/data-access-project/src/lib/jira-project-service/index.es.js +72 -0
- package/atlassian/shared/data-access-atlassian-product-fetch-oauth/src/lib/atlassian-oauth-fetch/index.cjs.js +1 -1
- package/atlassian/shared/data-access-atlassian-product-fetch-oauth/src/lib/atlassian-oauth-fetch/index.es.js +50 -26
- package/atlassian-app-test/index.d.ts +1 -1
- package/data-access-assets/index.d.ts +1 -1
- package/data-access-atlassian-product-fetch-oauth/atlassian-app-frontend-data-access-atlassian-product-fetch-oauth.api.json +113 -0
- package/data-access-atlassian-product-fetch-oauth/atlassian-app-frontend.api.md +3 -0
- package/data-access-atlassian-product-fetch-oauth/index.cjs.js +1 -1
- package/data-access-atlassian-product-fetch-oauth/index.d.ts +3 -1
- package/data-access-atlassian-product-fetch-oauth/index.es.js +4 -3
- package/data-access-issue/atlassian-app-frontend-data-access-issue.api.json +110 -0
- package/data-access-issue/atlassian-app-frontend.api.md +5 -0
- package/data-access-issue/index.d.ts +13 -6
- package/data-access-jql/index.d.ts +1 -1
- package/data-access-project/atlassian-app-frontend-data-access-project.api.json +794 -0
- package/data-access-project/atlassian-app-frontend.api.md +39 -0
- package/data-access-project/index.cjs.js +1 -0
- package/data-access-project/index.d.ts +110 -0
- package/data-access-project/index.es.js +4 -0
- package/data-access-project/tsdoc-metadata.json +11 -0
- package/data-access-workspaces/index.d.ts +1 -1
- package/package.json +6 -1
- package/ui-atlassian-product-fetch/index.d.ts +1 -1
- package/util-atlassian-product-fetch/atlassian-app-frontend-util-atlassian-product-fetch.api.json +9 -18
- package/util-atlassian-product-fetch/atlassian-app-frontend.api.md +4 -4
- package/util-atlassian-product-fetch/index.d.ts +4 -4
- package/util-jira-v3-api/atlassian-app-frontend-util-jira-v3-api.api.json +300 -2
- package/util-jira-v3-api/atlassian-app-frontend.api.md +24 -5
- package/util-jira-v3-api/index.d.ts +13 -5
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
## API Report File for "@valiantys/atlassian-app-frontend"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
// @public (undocumented)
|
|
8
|
+
export class JiraProjectService {
|
|
9
|
+
// Warning: (ae-forgotten-export) The symbol "AtlassianProductFetchService" needs to be exported by the entry point data-access-project.d.ts
|
|
10
|
+
constructor(fetchSvc: AtlassianProductFetchService<'jira'>);
|
|
11
|
+
// (undocumented)
|
|
12
|
+
getAllProjects(): Promise<Project[]>;
|
|
13
|
+
// Warning: (ae-forgotten-export) The symbol "Project" needs to be exported by the entry point data-access-project.d.ts
|
|
14
|
+
//
|
|
15
|
+
// (undocumented)
|
|
16
|
+
getProject(projectIdOrKey: string): Promise<Project>;
|
|
17
|
+
// Warning: (ae-forgotten-export) The symbol "IssueTypeDetails" needs to be exported by the entry point data-access-project.d.ts
|
|
18
|
+
//
|
|
19
|
+
// (undocumented)
|
|
20
|
+
getProjectIssueTypes(projectId: string): Promise<IssueTypeDetails[]>;
|
|
21
|
+
// (undocumented)
|
|
22
|
+
getProjectProperty<T>(projectIdOrKey: string, propertyKey: string): Promise<T | undefined>;
|
|
23
|
+
// (undocumented)
|
|
24
|
+
getProjectStatuses(projectIdOrKey: string): Promise<unknown>;
|
|
25
|
+
// Warning: (ae-forgotten-export) The symbol "ProjectVersion" needs to be exported by the entry point data-access-project.d.ts
|
|
26
|
+
//
|
|
27
|
+
// (undocumented)
|
|
28
|
+
getVersions(projectIdOrKey: string): Promise<ProjectVersion[]>;
|
|
29
|
+
// (undocumented)
|
|
30
|
+
projectSearchByIds(projectIds: string[]): Promise<Project[]>;
|
|
31
|
+
// (undocumented)
|
|
32
|
+
static readonly projectUrl = "/rest/api/3/project";
|
|
33
|
+
// (undocumented)
|
|
34
|
+
setProjectProperty<T>(projectIdOrKey: string, propertyKey: string, value: T): Promise<T>;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// (No @packageDocumentation comment for this package)
|
|
38
|
+
|
|
39
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../atlassian/jira/shared/data-access-project/src/lib/jira-project-service/index.cjs.js");exports.JiraProjectService=e.JiraProjectService;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
declare type APIResponse = Pick<Response, 'json' | 'text' | 'ok' | 'status' | 'statusText' | 'headers'>;
|
|
2
|
+
|
|
3
|
+
declare interface AtlassianProductFetchService<P extends Product> {
|
|
4
|
+
productType: P;
|
|
5
|
+
fetch: FetchSignature;
|
|
6
|
+
route: (template: TemplateStringsArray, ...parameters: (string | number | URLSearchParams | FetchRoute)[]) => FetchRoute;
|
|
7
|
+
rawFetch: RequestProductMethod;
|
|
8
|
+
fullUrl: (path: string) => string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare interface AvatarUrls {
|
|
12
|
+
'48x48': string;
|
|
13
|
+
'24x24': string;
|
|
14
|
+
'16x16': string;
|
|
15
|
+
'32x32': string;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
declare type FetchMethod = 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH';
|
|
19
|
+
|
|
20
|
+
declare interface FetchRequest {
|
|
21
|
+
method: FetchMethod;
|
|
22
|
+
url: FetchRoute;
|
|
23
|
+
responseType?: 'json' | 'text';
|
|
24
|
+
allowExperimental?: boolean;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
declare type FetchRoute = {
|
|
28
|
+
readonly value: string;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
declare type FetchSignature = <T>(request: FetchRequest, body?: any) => Promise<T>;
|
|
32
|
+
|
|
33
|
+
declare interface IssueTypeDetails {
|
|
34
|
+
avatarId: number;
|
|
35
|
+
description: string;
|
|
36
|
+
hierarchyLevel: number;
|
|
37
|
+
iconUrl: string;
|
|
38
|
+
id: string;
|
|
39
|
+
name: string;
|
|
40
|
+
self: string;
|
|
41
|
+
subtask: boolean;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export declare class JiraProjectService {
|
|
45
|
+
private readonly fetchSvc;
|
|
46
|
+
static readonly projectUrl = "/rest/api/3/project";
|
|
47
|
+
constructor(fetchSvc: AtlassianProductFetchService<'jira'>);
|
|
48
|
+
getVersions(projectIdOrKey: string): Promise<ProjectVersion[]>;
|
|
49
|
+
getProject(projectIdOrKey: string): Promise<Project>;
|
|
50
|
+
getAllProjects(): Promise<Project[]>;
|
|
51
|
+
projectSearchByIds(projectIds: string[]): Promise<Project[]>;
|
|
52
|
+
getProjectIssueTypes(projectId: string): Promise<IssueTypeDetails[]>;
|
|
53
|
+
getProjectStatuses(projectIdOrKey: string): Promise<unknown>;
|
|
54
|
+
getProjectProperty<T>(projectIdOrKey: string, propertyKey: string): Promise<T | undefined>;
|
|
55
|
+
setProjectProperty<T>(projectIdOrKey: string, propertyKey: string, value: T): Promise<T>;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
declare type Product = 'jira' | 'bitbucket' | 'confluence' | 'connected-data';
|
|
59
|
+
|
|
60
|
+
declare interface Project {
|
|
61
|
+
self?: string;
|
|
62
|
+
id: string;
|
|
63
|
+
key?: string;
|
|
64
|
+
name?: string;
|
|
65
|
+
projectTypeKey?: string;
|
|
66
|
+
simplified?: boolean;
|
|
67
|
+
avatarUrls?: AvatarUrls;
|
|
68
|
+
archived?: boolean;
|
|
69
|
+
lead?: User;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
declare interface ProjectVersion {
|
|
73
|
+
archived: boolean;
|
|
74
|
+
description: string;
|
|
75
|
+
id: string;
|
|
76
|
+
name: string;
|
|
77
|
+
overdue?: boolean;
|
|
78
|
+
projectId?: number;
|
|
79
|
+
releaseDate?: number;
|
|
80
|
+
releaseDateSet?: boolean;
|
|
81
|
+
released: boolean;
|
|
82
|
+
self: string;
|
|
83
|
+
startDateSet?: boolean;
|
|
84
|
+
userReleaseDate?: string;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
declare type RequestProductMethod = (url: FetchRoute, init: RequestInit) => Promise<APIResponse>;
|
|
88
|
+
|
|
89
|
+
declare interface User {
|
|
90
|
+
accountId: string;
|
|
91
|
+
active: boolean;
|
|
92
|
+
displayName: string;
|
|
93
|
+
emailAddress?: string;
|
|
94
|
+
timeZone: string;
|
|
95
|
+
avatarUrls?: AvatarUrls;
|
|
96
|
+
accountType?: string;
|
|
97
|
+
self?: string;
|
|
98
|
+
groups?: {
|
|
99
|
+
items?: UserGroupName[];
|
|
100
|
+
size?: number;
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
declare interface UserGroupName {
|
|
105
|
+
groupId: string;
|
|
106
|
+
name: string;
|
|
107
|
+
self: string;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export { }
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.52.8"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
|
@@ -33,7 +33,7 @@ declare type FetchRoute = {
|
|
|
33
33
|
readonly value: string;
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
-
declare type FetchSignature = <T>(request: FetchRequest, body?:
|
|
36
|
+
declare type FetchSignature = <T>(request: FetchRequest, body?: any) => Promise<T>;
|
|
37
37
|
|
|
38
38
|
declare type Product = 'jira' | 'bitbucket' | 'confluence' | 'connected-data';
|
|
39
39
|
|
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-18",
|
|
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": {
|
|
@@ -143,6 +143,11 @@
|
|
|
143
143
|
"require": "./data-access-issue/index.cjs.js",
|
|
144
144
|
"types": "./data-access-issue/index.d.ts"
|
|
145
145
|
},
|
|
146
|
+
"./data-access-project": {
|
|
147
|
+
"import": "./data-access-project/index.es.js",
|
|
148
|
+
"require": "./data-access-project/index.cjs.js",
|
|
149
|
+
"types": "./data-access-project/index.d.ts"
|
|
150
|
+
},
|
|
146
151
|
"./data-access-jql": {
|
|
147
152
|
"import": "./data-access-jql/index.es.js",
|
|
148
153
|
"require": "./data-access-jql/index.cjs.js",
|
|
@@ -24,7 +24,7 @@ declare type FetchRoute = {
|
|
|
24
24
|
readonly value: string;
|
|
25
25
|
};
|
|
26
26
|
|
|
27
|
-
declare type FetchSignature = <T>(request: FetchRequest, body?:
|
|
27
|
+
declare type FetchSignature = <T>(request: FetchRequest, body?: any) => Promise<T>;
|
|
28
28
|
|
|
29
29
|
declare type Product = 'jira' | 'bitbucket' | 'confluence' | 'connected-data';
|
|
30
30
|
|
package/util-atlassian-product-fetch/atlassian-app-frontend-util-atlassian-product-fetch.api.json
CHANGED
|
@@ -847,11 +847,11 @@
|
|
|
847
847
|
},
|
|
848
848
|
{
|
|
849
849
|
"kind": "Content",
|
|
850
|
-
"text": ", statusCode
|
|
850
|
+
"text": ", statusCode: "
|
|
851
851
|
},
|
|
852
852
|
{
|
|
853
853
|
"kind": "Content",
|
|
854
|
-
"text": "number
|
|
854
|
+
"text": "number"
|
|
855
855
|
},
|
|
856
856
|
{
|
|
857
857
|
"kind": "Content",
|
|
@@ -884,7 +884,7 @@
|
|
|
884
884
|
"startIndex": 3,
|
|
885
885
|
"endIndex": 4
|
|
886
886
|
},
|
|
887
|
-
"isOptional":
|
|
887
|
+
"isOptional": false
|
|
888
888
|
},
|
|
889
889
|
{
|
|
890
890
|
"parameterName": "message",
|
|
@@ -903,11 +903,11 @@
|
|
|
903
903
|
"excerptTokens": [
|
|
904
904
|
{
|
|
905
905
|
"kind": "Content",
|
|
906
|
-
"text": "readonly statusCode
|
|
906
|
+
"text": "readonly statusCode: "
|
|
907
907
|
},
|
|
908
908
|
{
|
|
909
909
|
"kind": "Content",
|
|
910
|
-
"text": "number
|
|
910
|
+
"text": "number"
|
|
911
911
|
},
|
|
912
912
|
{
|
|
913
913
|
"kind": "Content",
|
|
@@ -915,7 +915,7 @@
|
|
|
915
915
|
}
|
|
916
916
|
],
|
|
917
917
|
"isReadonly": true,
|
|
918
|
-
"isOptional":
|
|
918
|
+
"isOptional": false,
|
|
919
919
|
"releaseTag": "Public",
|
|
920
920
|
"name": "statusCode",
|
|
921
921
|
"propertyTypeTokenRange": {
|
|
@@ -967,7 +967,7 @@
|
|
|
967
967
|
},
|
|
968
968
|
{
|
|
969
969
|
"kind": "Content",
|
|
970
|
-
"text": "{\n statusCode: number
|
|
970
|
+
"text": "{\n statusCode: number;\n statusText: string;\n }"
|
|
971
971
|
},
|
|
972
972
|
{
|
|
973
973
|
"kind": "Content",
|
|
@@ -1194,16 +1194,7 @@
|
|
|
1194
1194
|
},
|
|
1195
1195
|
{
|
|
1196
1196
|
"kind": "Content",
|
|
1197
|
-
"text": ", body?: "
|
|
1198
|
-
},
|
|
1199
|
-
{
|
|
1200
|
-
"kind": "Reference",
|
|
1201
|
-
"text": "Record",
|
|
1202
|
-
"canonicalReference": "!Record:type"
|
|
1203
|
-
},
|
|
1204
|
-
{
|
|
1205
|
-
"kind": "Content",
|
|
1206
|
-
"text": "<string, any>) => "
|
|
1197
|
+
"text": ", body?: any) => "
|
|
1207
1198
|
},
|
|
1208
1199
|
{
|
|
1209
1200
|
"kind": "Reference",
|
|
@@ -1224,7 +1215,7 @@
|
|
|
1224
1215
|
"name": "FetchSignature",
|
|
1225
1216
|
"typeTokenRange": {
|
|
1226
1217
|
"startIndex": 1,
|
|
1227
|
-
"endIndex":
|
|
1218
|
+
"endIndex": 6
|
|
1228
1219
|
}
|
|
1229
1220
|
},
|
|
1230
1221
|
{
|
|
@@ -42,14 +42,14 @@ export function bearerAuthFetchRaw(authToken: string, url: string, init: Request
|
|
|
42
42
|
|
|
43
43
|
// @public (undocumented)
|
|
44
44
|
export class FetchError extends Error {
|
|
45
|
-
constructor(statusText: string, statusCode
|
|
45
|
+
constructor(statusText: string, statusCode: number, message?: string);
|
|
46
46
|
// (undocumented)
|
|
47
|
-
readonly statusCode
|
|
47
|
+
readonly statusCode: number;
|
|
48
48
|
// (undocumented)
|
|
49
49
|
readonly statusText: string;
|
|
50
50
|
// (undocumented)
|
|
51
51
|
toJSON(): {
|
|
52
|
-
statusCode: number
|
|
52
|
+
statusCode: number;
|
|
53
53
|
statusText: string;
|
|
54
54
|
};
|
|
55
55
|
}
|
|
@@ -75,7 +75,7 @@ export type FetchRoute = {
|
|
|
75
75
|
};
|
|
76
76
|
|
|
77
77
|
// @public (undocumented)
|
|
78
|
-
export type FetchSignature = <T>(request: FetchRequest, body?:
|
|
78
|
+
export type FetchSignature = <T>(request: FetchRequest, body?: any) => Promise<T>;
|
|
79
79
|
|
|
80
80
|
// @public (undocumented)
|
|
81
81
|
export function jsonFetch<T, U = Record<string, unknown>>(url: string, method: FetchMethod, headers?: Record<string, string>, body?: U, responseType?: 'json' | 'text', includeCredentials?: RequestCredentials): Promise<T>;
|
|
@@ -23,10 +23,10 @@ export declare function bearerAuthFetchRaw(authToken: string, url: string, init:
|
|
|
23
23
|
|
|
24
24
|
export declare class FetchError extends Error {
|
|
25
25
|
readonly statusText: string;
|
|
26
|
-
readonly statusCode
|
|
27
|
-
constructor(statusText: string, statusCode
|
|
26
|
+
readonly statusCode: number;
|
|
27
|
+
constructor(statusText: string, statusCode: number, message?: string);
|
|
28
28
|
toJSON(): {
|
|
29
|
-
statusCode: number
|
|
29
|
+
statusCode: number;
|
|
30
30
|
statusText: string;
|
|
31
31
|
};
|
|
32
32
|
}
|
|
@@ -44,7 +44,7 @@ export declare type FetchRoute = {
|
|
|
44
44
|
readonly value: string;
|
|
45
45
|
};
|
|
46
46
|
|
|
47
|
-
export declare type FetchSignature = <T>(request: FetchRequest, body?:
|
|
47
|
+
export declare type FetchSignature = <T>(request: FetchRequest, body?: any) => Promise<T>;
|
|
48
48
|
|
|
49
49
|
export declare function jsonFetch<T, U = Record<string, unknown>>(url: string, method: FetchMethod, headers?: Record<string, string>, body?: U, responseType?: 'json' | 'text', includeCredentials?: RequestCredentials): Promise<T>;
|
|
50
50
|
|
|
@@ -1176,6 +1176,186 @@
|
|
|
1176
1176
|
"endIndex": 0
|
|
1177
1177
|
}
|
|
1178
1178
|
},
|
|
1179
|
+
{
|
|
1180
|
+
"kind": "Interface",
|
|
1181
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersion:interface",
|
|
1182
|
+
"docComment": "",
|
|
1183
|
+
"excerptTokens": [
|
|
1184
|
+
{
|
|
1185
|
+
"kind": "Content",
|
|
1186
|
+
"text": "export interface FixVersion "
|
|
1187
|
+
}
|
|
1188
|
+
],
|
|
1189
|
+
"fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/issue.d.ts",
|
|
1190
|
+
"releaseTag": "Public",
|
|
1191
|
+
"name": "FixVersion",
|
|
1192
|
+
"preserveMemberOrder": false,
|
|
1193
|
+
"members": [
|
|
1194
|
+
{
|
|
1195
|
+
"kind": "PropertySignature",
|
|
1196
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersion#description:member",
|
|
1197
|
+
"docComment": "",
|
|
1198
|
+
"excerptTokens": [
|
|
1199
|
+
{
|
|
1200
|
+
"kind": "Content",
|
|
1201
|
+
"text": "description?: "
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"kind": "Content",
|
|
1205
|
+
"text": "string"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"kind": "Content",
|
|
1209
|
+
"text": ";"
|
|
1210
|
+
}
|
|
1211
|
+
],
|
|
1212
|
+
"isReadonly": false,
|
|
1213
|
+
"isOptional": true,
|
|
1214
|
+
"releaseTag": "Public",
|
|
1215
|
+
"name": "description",
|
|
1216
|
+
"propertyTypeTokenRange": {
|
|
1217
|
+
"startIndex": 1,
|
|
1218
|
+
"endIndex": 2
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"kind": "PropertySignature",
|
|
1223
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersion#id:member",
|
|
1224
|
+
"docComment": "",
|
|
1225
|
+
"excerptTokens": [
|
|
1226
|
+
{
|
|
1227
|
+
"kind": "Content",
|
|
1228
|
+
"text": "id: "
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"kind": "Content",
|
|
1232
|
+
"text": "string"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"kind": "Content",
|
|
1236
|
+
"text": ";"
|
|
1237
|
+
}
|
|
1238
|
+
],
|
|
1239
|
+
"isReadonly": false,
|
|
1240
|
+
"isOptional": false,
|
|
1241
|
+
"releaseTag": "Public",
|
|
1242
|
+
"name": "id",
|
|
1243
|
+
"propertyTypeTokenRange": {
|
|
1244
|
+
"startIndex": 1,
|
|
1245
|
+
"endIndex": 2
|
|
1246
|
+
}
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
"kind": "PropertySignature",
|
|
1250
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersion#name:member",
|
|
1251
|
+
"docComment": "",
|
|
1252
|
+
"excerptTokens": [
|
|
1253
|
+
{
|
|
1254
|
+
"kind": "Content",
|
|
1255
|
+
"text": "name: "
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"kind": "Content",
|
|
1259
|
+
"text": "string"
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
"kind": "Content",
|
|
1263
|
+
"text": ";"
|
|
1264
|
+
}
|
|
1265
|
+
],
|
|
1266
|
+
"isReadonly": false,
|
|
1267
|
+
"isOptional": false,
|
|
1268
|
+
"releaseTag": "Public",
|
|
1269
|
+
"name": "name",
|
|
1270
|
+
"propertyTypeTokenRange": {
|
|
1271
|
+
"startIndex": 1,
|
|
1272
|
+
"endIndex": 2
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"kind": "PropertySignature",
|
|
1277
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersion#released:member",
|
|
1278
|
+
"docComment": "",
|
|
1279
|
+
"excerptTokens": [
|
|
1280
|
+
{
|
|
1281
|
+
"kind": "Content",
|
|
1282
|
+
"text": "released?: "
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"kind": "Content",
|
|
1286
|
+
"text": "boolean"
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"kind": "Content",
|
|
1290
|
+
"text": ";"
|
|
1291
|
+
}
|
|
1292
|
+
],
|
|
1293
|
+
"isReadonly": false,
|
|
1294
|
+
"isOptional": true,
|
|
1295
|
+
"releaseTag": "Public",
|
|
1296
|
+
"name": "released",
|
|
1297
|
+
"propertyTypeTokenRange": {
|
|
1298
|
+
"startIndex": 1,
|
|
1299
|
+
"endIndex": 2
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"kind": "PropertySignature",
|
|
1304
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersion#releaseDate:member",
|
|
1305
|
+
"docComment": "",
|
|
1306
|
+
"excerptTokens": [
|
|
1307
|
+
{
|
|
1308
|
+
"kind": "Content",
|
|
1309
|
+
"text": "releaseDate?: "
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"kind": "Content",
|
|
1313
|
+
"text": "string"
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"kind": "Content",
|
|
1317
|
+
"text": ";"
|
|
1318
|
+
}
|
|
1319
|
+
],
|
|
1320
|
+
"isReadonly": false,
|
|
1321
|
+
"isOptional": true,
|
|
1322
|
+
"releaseTag": "Public",
|
|
1323
|
+
"name": "releaseDate",
|
|
1324
|
+
"propertyTypeTokenRange": {
|
|
1325
|
+
"startIndex": 1,
|
|
1326
|
+
"endIndex": 2
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"kind": "PropertySignature",
|
|
1331
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersion#self:member",
|
|
1332
|
+
"docComment": "",
|
|
1333
|
+
"excerptTokens": [
|
|
1334
|
+
{
|
|
1335
|
+
"kind": "Content",
|
|
1336
|
+
"text": "self?: "
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"kind": "Content",
|
|
1340
|
+
"text": "string"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"kind": "Content",
|
|
1344
|
+
"text": ";"
|
|
1345
|
+
}
|
|
1346
|
+
],
|
|
1347
|
+
"isReadonly": false,
|
|
1348
|
+
"isOptional": true,
|
|
1349
|
+
"releaseTag": "Public",
|
|
1350
|
+
"name": "self",
|
|
1351
|
+
"propertyTypeTokenRange": {
|
|
1352
|
+
"startIndex": 1,
|
|
1353
|
+
"endIndex": 2
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1356
|
+
],
|
|
1357
|
+
"extendsTokenRanges": []
|
|
1358
|
+
},
|
|
1179
1359
|
{
|
|
1180
1360
|
"kind": "TypeAlias",
|
|
1181
1361
|
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersions:type",
|
|
@@ -1185,9 +1365,14 @@
|
|
|
1185
1365
|
"kind": "Content",
|
|
1186
1366
|
"text": "export type FixVersions = "
|
|
1187
1367
|
},
|
|
1368
|
+
{
|
|
1369
|
+
"kind": "Reference",
|
|
1370
|
+
"text": "FixVersion",
|
|
1371
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!FixVersion:interface"
|
|
1372
|
+
},
|
|
1188
1373
|
{
|
|
1189
1374
|
"kind": "Content",
|
|
1190
|
-
"text": "
|
|
1375
|
+
"text": "[]"
|
|
1191
1376
|
},
|
|
1192
1377
|
{
|
|
1193
1378
|
"kind": "Content",
|
|
@@ -1199,7 +1384,7 @@
|
|
|
1199
1384
|
"name": "FixVersions",
|
|
1200
1385
|
"typeTokenRange": {
|
|
1201
1386
|
"startIndex": 1,
|
|
1202
|
-
"endIndex":
|
|
1387
|
+
"endIndex": 3
|
|
1203
1388
|
}
|
|
1204
1389
|
},
|
|
1205
1390
|
{
|
|
@@ -3853,6 +4038,34 @@
|
|
|
3853
4038
|
"endIndex": 2
|
|
3854
4039
|
}
|
|
3855
4040
|
},
|
|
4041
|
+
{
|
|
4042
|
+
"kind": "PropertySignature",
|
|
4043
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!Project#lead:member",
|
|
4044
|
+
"docComment": "",
|
|
4045
|
+
"excerptTokens": [
|
|
4046
|
+
{
|
|
4047
|
+
"kind": "Content",
|
|
4048
|
+
"text": "lead?: "
|
|
4049
|
+
},
|
|
4050
|
+
{
|
|
4051
|
+
"kind": "Reference",
|
|
4052
|
+
"text": "User",
|
|
4053
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!User:interface"
|
|
4054
|
+
},
|
|
4055
|
+
{
|
|
4056
|
+
"kind": "Content",
|
|
4057
|
+
"text": ";"
|
|
4058
|
+
}
|
|
4059
|
+
],
|
|
4060
|
+
"isReadonly": false,
|
|
4061
|
+
"isOptional": true,
|
|
4062
|
+
"releaseTag": "Public",
|
|
4063
|
+
"name": "lead",
|
|
4064
|
+
"propertyTypeTokenRange": {
|
|
4065
|
+
"startIndex": 1,
|
|
4066
|
+
"endIndex": 2
|
|
4067
|
+
}
|
|
4068
|
+
},
|
|
3856
4069
|
{
|
|
3857
4070
|
"kind": "PropertySignature",
|
|
3858
4071
|
"canonicalReference": "@valiantys/atlassian-app-frontend!Project#name:member",
|
|
@@ -3964,6 +4177,91 @@
|
|
|
3964
4177
|
],
|
|
3965
4178
|
"extendsTokenRanges": []
|
|
3966
4179
|
},
|
|
4180
|
+
{
|
|
4181
|
+
"kind": "Interface",
|
|
4182
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!ProjectProperty:interface",
|
|
4183
|
+
"docComment": "",
|
|
4184
|
+
"excerptTokens": [
|
|
4185
|
+
{
|
|
4186
|
+
"kind": "Content",
|
|
4187
|
+
"text": "export interface ProjectProperty<T> "
|
|
4188
|
+
}
|
|
4189
|
+
],
|
|
4190
|
+
"fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/project.d.ts",
|
|
4191
|
+
"releaseTag": "Public",
|
|
4192
|
+
"typeParameters": [
|
|
4193
|
+
{
|
|
4194
|
+
"typeParameterName": "T",
|
|
4195
|
+
"constraintTokenRange": {
|
|
4196
|
+
"startIndex": 0,
|
|
4197
|
+
"endIndex": 0
|
|
4198
|
+
},
|
|
4199
|
+
"defaultTypeTokenRange": {
|
|
4200
|
+
"startIndex": 0,
|
|
4201
|
+
"endIndex": 0
|
|
4202
|
+
}
|
|
4203
|
+
}
|
|
4204
|
+
],
|
|
4205
|
+
"name": "ProjectProperty",
|
|
4206
|
+
"preserveMemberOrder": false,
|
|
4207
|
+
"members": [
|
|
4208
|
+
{
|
|
4209
|
+
"kind": "PropertySignature",
|
|
4210
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!ProjectProperty#key:member",
|
|
4211
|
+
"docComment": "",
|
|
4212
|
+
"excerptTokens": [
|
|
4213
|
+
{
|
|
4214
|
+
"kind": "Content",
|
|
4215
|
+
"text": "key: "
|
|
4216
|
+
},
|
|
4217
|
+
{
|
|
4218
|
+
"kind": "Content",
|
|
4219
|
+
"text": "string"
|
|
4220
|
+
},
|
|
4221
|
+
{
|
|
4222
|
+
"kind": "Content",
|
|
4223
|
+
"text": ";"
|
|
4224
|
+
}
|
|
4225
|
+
],
|
|
4226
|
+
"isReadonly": false,
|
|
4227
|
+
"isOptional": false,
|
|
4228
|
+
"releaseTag": "Public",
|
|
4229
|
+
"name": "key",
|
|
4230
|
+
"propertyTypeTokenRange": {
|
|
4231
|
+
"startIndex": 1,
|
|
4232
|
+
"endIndex": 2
|
|
4233
|
+
}
|
|
4234
|
+
},
|
|
4235
|
+
{
|
|
4236
|
+
"kind": "PropertySignature",
|
|
4237
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!ProjectProperty#value:member",
|
|
4238
|
+
"docComment": "",
|
|
4239
|
+
"excerptTokens": [
|
|
4240
|
+
{
|
|
4241
|
+
"kind": "Content",
|
|
4242
|
+
"text": "value: "
|
|
4243
|
+
},
|
|
4244
|
+
{
|
|
4245
|
+
"kind": "Content",
|
|
4246
|
+
"text": "T"
|
|
4247
|
+
},
|
|
4248
|
+
{
|
|
4249
|
+
"kind": "Content",
|
|
4250
|
+
"text": ";"
|
|
4251
|
+
}
|
|
4252
|
+
],
|
|
4253
|
+
"isReadonly": false,
|
|
4254
|
+
"isOptional": false,
|
|
4255
|
+
"releaseTag": "Public",
|
|
4256
|
+
"name": "value",
|
|
4257
|
+
"propertyTypeTokenRange": {
|
|
4258
|
+
"startIndex": 1,
|
|
4259
|
+
"endIndex": 2
|
|
4260
|
+
}
|
|
4261
|
+
}
|
|
4262
|
+
],
|
|
4263
|
+
"extendsTokenRanges": []
|
|
4264
|
+
},
|
|
3967
4265
|
{
|
|
3968
4266
|
"kind": "Interface",
|
|
3969
4267
|
"canonicalReference": "@valiantys/atlassian-app-frontend!ProjectVersion:interface",
|