@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
|
@@ -112,14 +112,23 @@ export interface EntityProperty {
|
|
|
112
112
|
export const FIX_VERSIONS_FIELD = "fixVersions";
|
|
113
113
|
|
|
114
114
|
// @public (undocumented)
|
|
115
|
-
export
|
|
116
|
-
|
|
115
|
+
export interface FixVersion {
|
|
116
|
+
// (undocumented)
|
|
117
|
+
description?: string;
|
|
118
|
+
// (undocumented)
|
|
117
119
|
id: string;
|
|
120
|
+
// (undocumented)
|
|
118
121
|
name: string;
|
|
122
|
+
// (undocumented)
|
|
123
|
+
released?: boolean;
|
|
124
|
+
// (undocumented)
|
|
119
125
|
releaseDate?: string;
|
|
120
|
-
|
|
121
|
-
self
|
|
122
|
-
}
|
|
126
|
+
// (undocumented)
|
|
127
|
+
self?: string;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// @public (undocumented)
|
|
131
|
+
export type FixVersions = FixVersion[];
|
|
123
132
|
|
|
124
133
|
// @public (undocumented)
|
|
125
134
|
export interface HealthCheckResult {
|
|
@@ -404,6 +413,8 @@ export interface Project {
|
|
|
404
413
|
// (undocumented)
|
|
405
414
|
key?: string;
|
|
406
415
|
// (undocumented)
|
|
416
|
+
lead?: User;
|
|
417
|
+
// (undocumented)
|
|
407
418
|
name?: string;
|
|
408
419
|
// (undocumented)
|
|
409
420
|
projectTypeKey?: string;
|
|
@@ -413,6 +424,14 @@ export interface Project {
|
|
|
413
424
|
simplified?: boolean;
|
|
414
425
|
}
|
|
415
426
|
|
|
427
|
+
// @public (undocumented)
|
|
428
|
+
export interface ProjectProperty<T> {
|
|
429
|
+
// (undocumented)
|
|
430
|
+
key: string;
|
|
431
|
+
// (undocumented)
|
|
432
|
+
value: T;
|
|
433
|
+
}
|
|
434
|
+
|
|
416
435
|
// @public (undocumented)
|
|
417
436
|
export interface ProjectVersion {
|
|
418
437
|
// (undocumented)
|
|
@@ -68,14 +68,16 @@ export declare interface EntityProperty {
|
|
|
68
68
|
|
|
69
69
|
export declare const FIX_VERSIONS_FIELD = "fixVersions";
|
|
70
70
|
|
|
71
|
-
export declare
|
|
72
|
-
description
|
|
71
|
+
export declare interface FixVersion {
|
|
72
|
+
description?: string;
|
|
73
73
|
id: string;
|
|
74
74
|
name: string;
|
|
75
75
|
releaseDate?: string;
|
|
76
|
-
released
|
|
77
|
-
self
|
|
78
|
-
}
|
|
76
|
+
released?: boolean;
|
|
77
|
+
self?: string;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export declare type FixVersions = FixVersion[];
|
|
79
81
|
|
|
80
82
|
export declare interface HealthCheckResult {
|
|
81
83
|
description: string;
|
|
@@ -269,6 +271,12 @@ export declare interface Project {
|
|
|
269
271
|
simplified?: boolean;
|
|
270
272
|
avatarUrls?: AvatarUrls;
|
|
271
273
|
archived?: boolean;
|
|
274
|
+
lead?: User;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export declare interface ProjectProperty<T> {
|
|
278
|
+
key: string;
|
|
279
|
+
value: T;
|
|
272
280
|
}
|
|
273
281
|
|
|
274
282
|
export declare interface ProjectVersion {
|