@forge/cli-shared 2.4.1-next.4 → 2.4.1-next.7
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/CHANGELOG.md +21 -0
- package/out/graphql/graphql-types.d.ts +25 -19
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.4.1-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [0920759f]
|
|
8
|
+
- @forge/manifest@3.6.0-next.7
|
|
9
|
+
|
|
10
|
+
## 2.4.1-next.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [2bd062d0]
|
|
15
|
+
- @forge/manifest@3.6.0-next.6
|
|
16
|
+
|
|
17
|
+
## 2.4.1-next.5
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [cb28bc0]
|
|
22
|
+
- @forge/manifest@3.6.0-next.5
|
|
23
|
+
|
|
3
24
|
## 2.4.1-next.4
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -970,6 +970,7 @@ export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
|
970
970
|
email?: Maybe<Scalars['String']>;
|
|
971
971
|
zoneinfo?: Maybe<Scalars['String']>;
|
|
972
972
|
locale?: Maybe<Scalars['String']>;
|
|
973
|
+
nickname?: Maybe<Scalars['String']>;
|
|
973
974
|
orgId?: Maybe<Scalars['ID']>;
|
|
974
975
|
extendedProfile?: Maybe<AtlassianAccountUserExtendedProfile>;
|
|
975
976
|
};
|
|
@@ -1281,6 +1282,7 @@ export declare type BoardScope = Node & {
|
|
|
1281
1282
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1282
1283
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1283
1284
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1285
|
+
globalCardCreateAdditionalFields?: Maybe<GlobalCardCreateAdditionalFields>;
|
|
1284
1286
|
name?: Maybe<Scalars['String']>;
|
|
1285
1287
|
admins?: Maybe<Array<Maybe<Admin>>>;
|
|
1286
1288
|
canAdministerBoard?: Maybe<Scalars['Boolean']>;
|
|
@@ -5949,6 +5951,12 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
5949
5951
|
statusCode?: Maybe<Scalars['Int']>;
|
|
5950
5952
|
errorType?: Maybe<Scalars['String']>;
|
|
5951
5953
|
};
|
|
5954
|
+
export declare type GlobalCardCreateAdditionalFields = {
|
|
5955
|
+
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
5956
|
+
sprintCustomFieldId?: Maybe<Scalars['String']>;
|
|
5957
|
+
rankCustomFieldId?: Maybe<Scalars['String']>;
|
|
5958
|
+
boardIssueListKey?: Maybe<Scalars['String']>;
|
|
5959
|
+
};
|
|
5952
5960
|
export declare enum GrantCheckProduct {
|
|
5953
5961
|
Jira = "JIRA",
|
|
5954
5962
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
@@ -5975,7 +5983,7 @@ export declare type HelpCenterCollection = {
|
|
|
5975
5983
|
__typename?: 'HelpCenterCollection';
|
|
5976
5984
|
collectionId: Scalars['ID'];
|
|
5977
5985
|
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5978
|
-
name
|
|
5986
|
+
name?: Maybe<Scalars['String']>;
|
|
5979
5987
|
description?: Maybe<Scalars['String']>;
|
|
5980
5988
|
properties?: Maybe<Scalars['JSON']>;
|
|
5981
5989
|
};
|
|
@@ -5992,6 +6000,7 @@ export declare type HelpCenterCollectionDeleteInput = {
|
|
|
5992
6000
|
export declare type HelpCenterCollectionItem = {
|
|
5993
6001
|
__typename?: 'HelpCenterCollectionItem';
|
|
5994
6002
|
ari: Scalars['ID'];
|
|
6003
|
+
data?: Maybe<HelpCenterHelpObject>;
|
|
5995
6004
|
};
|
|
5996
6005
|
export declare type HelpCenterCollectionItemConnection = {
|
|
5997
6006
|
__typename?: 'HelpCenterCollectionItemConnection';
|
|
@@ -6026,13 +6035,15 @@ export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
|
6026
6035
|
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
6027
6036
|
success: Scalars['Boolean'];
|
|
6028
6037
|
errors?: Maybe<Array<MutationError>>;
|
|
6038
|
+
collectionIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedCollectionIds>>;
|
|
6029
6039
|
};
|
|
6040
|
+
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | QueryError;
|
|
6030
6041
|
export declare type HelpCenterMutationApi = {
|
|
6031
6042
|
__typename?: 'HelpCenterMutationApi';
|
|
6032
|
-
createCollection
|
|
6033
|
-
updateCollection
|
|
6034
|
-
updateCollectionsOrder
|
|
6035
|
-
deleteCollection
|
|
6043
|
+
createCollection?: Maybe<HelpCenterCreateCollectionPayload>;
|
|
6044
|
+
updateCollection?: Maybe<HelpCenterDeleteUpdateCollectionPayload>;
|
|
6045
|
+
updateCollectionsOrder?: Maybe<HelpCenterUpdateCollectionsOrderPayload>;
|
|
6046
|
+
deleteCollection?: Maybe<HelpCenterDeleteUpdateCollectionPayload>;
|
|
6036
6047
|
};
|
|
6037
6048
|
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
6038
6049
|
input: HelpCenterBulkCreateCollectionsInput;
|
|
@@ -6048,8 +6059,8 @@ export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
|
6048
6059
|
};
|
|
6049
6060
|
export declare type HelpCenterQueryApi = {
|
|
6050
6061
|
__typename?: 'HelpCenterQueryApi';
|
|
6051
|
-
helpCenter
|
|
6052
|
-
helpCenterCollection
|
|
6062
|
+
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
6063
|
+
helpCenterCollection?: Maybe<HelpCenterCollectionResult>;
|
|
6053
6064
|
};
|
|
6054
6065
|
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
6055
6066
|
helpCenterId: Scalars['ID'];
|
|
@@ -6068,6 +6079,11 @@ export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
|
6068
6079
|
helpCenterId: Scalars['ID'];
|
|
6069
6080
|
collectionIds: Scalars['ID'];
|
|
6070
6081
|
};
|
|
6082
|
+
export declare type HelpCenterSuccessfullyDeletedUpdatedCollectionIds = {
|
|
6083
|
+
__typename?: 'HelpCenterSuccessfullyDeletedUpdatedCollectionIds';
|
|
6084
|
+
helpCenterId: Scalars['ID'];
|
|
6085
|
+
collectionIds: Scalars['ID'];
|
|
6086
|
+
};
|
|
6071
6087
|
export declare type HelpCenterUpdateCollectionInput = {
|
|
6072
6088
|
helpCenterId: Scalars['ID'];
|
|
6073
6089
|
collectionId: Scalars['ID'];
|
|
@@ -7105,10 +7121,6 @@ export declare type JiraComment = {
|
|
|
7105
7121
|
updated?: Maybe<Scalars['DateTime']>;
|
|
7106
7122
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
7107
7123
|
};
|
|
7108
|
-
export declare type JiraCommentByIdInput = {
|
|
7109
|
-
issueId: Scalars['ID'];
|
|
7110
|
-
id: Scalars['ID'];
|
|
7111
|
-
};
|
|
7112
7124
|
export declare type JiraCommentConnection = {
|
|
7113
7125
|
__typename?: 'JiraCommentConnection';
|
|
7114
7126
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -9887,8 +9899,6 @@ export declare type JiraQuery = {
|
|
|
9887
9899
|
issueByKey?: Maybe<JiraIssue>;
|
|
9888
9900
|
issueById?: Maybe<JiraIssue>;
|
|
9889
9901
|
issue?: Maybe<JiraIssue>;
|
|
9890
|
-
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
9891
|
-
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9892
9902
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9893
9903
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9894
9904
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9962,12 +9972,6 @@ export declare type JiraQueryIssueByIdArgs = {
|
|
|
9962
9972
|
export declare type JiraQueryIssueArgs = {
|
|
9963
9973
|
id?: Maybe<Scalars['ID']>;
|
|
9964
9974
|
};
|
|
9965
|
-
export declare type JiraQueryIssuesByIdArgs = {
|
|
9966
|
-
ids: Array<Scalars['ID']>;
|
|
9967
|
-
};
|
|
9968
|
-
export declare type JiraQueryCommentsByIdArgs = {
|
|
9969
|
-
input: Array<JiraCommentByIdInput>;
|
|
9970
|
-
};
|
|
9971
9975
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9972
9976
|
cloudId: Scalars['ID'];
|
|
9973
9977
|
};
|
|
@@ -14637,6 +14641,8 @@ export declare type RoadmapUserConfiguration = {
|
|
|
14637
14641
|
listWidth: Scalars['Long'];
|
|
14638
14642
|
timelineMode: RoadmapTimelineMode;
|
|
14639
14643
|
levelOneViewSettings: RoadmapViewSettings;
|
|
14644
|
+
isReleasesVisible: Scalars['Boolean'];
|
|
14645
|
+
highlightedVersions: Array<Scalars['ID']>;
|
|
14640
14646
|
};
|
|
14641
14647
|
export declare type RoadmapVersion = {
|
|
14642
14648
|
__typename?: 'RoadmapVersion';
|