@forge/cli-shared 2.4.1-next.3 → 2.4.1-next.6
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
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.4.1-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [2bd062d0]
|
|
8
|
+
- @forge/manifest@3.6.0-next.6
|
|
9
|
+
|
|
10
|
+
## 2.4.1-next.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [cb28bc0]
|
|
15
|
+
- @forge/manifest@3.6.0-next.5
|
|
16
|
+
|
|
17
|
+
## 2.4.1-next.4
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [e314dd0]
|
|
22
|
+
- @forge/manifest@3.6.0-next.4
|
|
23
|
+
|
|
3
24
|
## 2.4.1-next.3
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -970,6 +970,16 @@ 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']>;
|
|
974
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
975
|
+
extendedProfile?: Maybe<AtlassianAccountUserExtendedProfile>;
|
|
976
|
+
};
|
|
977
|
+
export declare type AtlassianAccountUserExtendedProfile = {
|
|
978
|
+
__typename?: 'AtlassianAccountUserExtendedProfile';
|
|
979
|
+
jobTitle?: Maybe<Scalars['String']>;
|
|
980
|
+
organization?: Maybe<Scalars['String']>;
|
|
981
|
+
department?: Maybe<Scalars['String']>;
|
|
982
|
+
location?: Maybe<Scalars['String']>;
|
|
973
983
|
};
|
|
974
984
|
export declare type AtlassianOAuthClient = {
|
|
975
985
|
__typename?: 'AtlassianOAuthClient';
|
|
@@ -1272,6 +1282,7 @@ export declare type BoardScope = Node & {
|
|
|
1272
1282
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1273
1283
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1274
1284
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1285
|
+
globalCardCreateAdditionalFields?: Maybe<GlobalCardCreateAdditionalFields>;
|
|
1275
1286
|
name?: Maybe<Scalars['String']>;
|
|
1276
1287
|
admins?: Maybe<Array<Maybe<Admin>>>;
|
|
1277
1288
|
canAdministerBoard?: Maybe<Scalars['Boolean']>;
|
|
@@ -5435,6 +5446,13 @@ export declare type DevOpsToolIntegrationProduct = {
|
|
|
5435
5446
|
available: Scalars['Boolean'];
|
|
5436
5447
|
iconUrl?: Maybe<Scalars['String']>;
|
|
5437
5448
|
};
|
|
5449
|
+
export declare enum DevOpsToolIntegrationType {
|
|
5450
|
+
Any = "ANY",
|
|
5451
|
+
Exists = "EXISTS",
|
|
5452
|
+
App = "APP",
|
|
5453
|
+
Product = "PRODUCT",
|
|
5454
|
+
None = "NONE"
|
|
5455
|
+
}
|
|
5438
5456
|
export declare type DevOpsToolNamespace = Node & {
|
|
5439
5457
|
__typename?: 'DevOpsToolNamespace';
|
|
5440
5458
|
id: Scalars['ID'];
|
|
@@ -5515,6 +5533,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5515
5533
|
groupId?: Maybe<Scalars['String']>;
|
|
5516
5534
|
categoryId?: Maybe<Scalars['String']>;
|
|
5517
5535
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5536
|
+
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
5518
5537
|
};
|
|
5519
5538
|
export declare type DevOpsToolsToolArgs = {
|
|
5520
5539
|
id: Scalars['ID'];
|
|
@@ -5932,6 +5951,12 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
5932
5951
|
statusCode?: Maybe<Scalars['Int']>;
|
|
5933
5952
|
errorType?: Maybe<Scalars['String']>;
|
|
5934
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
|
+
};
|
|
5935
5960
|
export declare enum GrantCheckProduct {
|
|
5936
5961
|
Jira = "JIRA",
|
|
5937
5962
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
@@ -5958,7 +5983,7 @@ export declare type HelpCenterCollection = {
|
|
|
5958
5983
|
__typename?: 'HelpCenterCollection';
|
|
5959
5984
|
collectionId: Scalars['ID'];
|
|
5960
5985
|
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5961
|
-
name
|
|
5986
|
+
name?: Maybe<Scalars['String']>;
|
|
5962
5987
|
description?: Maybe<Scalars['String']>;
|
|
5963
5988
|
properties?: Maybe<Scalars['JSON']>;
|
|
5964
5989
|
};
|
|
@@ -5975,6 +6000,7 @@ export declare type HelpCenterCollectionDeleteInput = {
|
|
|
5975
6000
|
export declare type HelpCenterCollectionItem = {
|
|
5976
6001
|
__typename?: 'HelpCenterCollectionItem';
|
|
5977
6002
|
ari: Scalars['ID'];
|
|
6003
|
+
data?: Maybe<HelpCenterHelpObject>;
|
|
5978
6004
|
};
|
|
5979
6005
|
export declare type HelpCenterCollectionItemConnection = {
|
|
5980
6006
|
__typename?: 'HelpCenterCollectionItemConnection';
|
|
@@ -6009,13 +6035,15 @@ export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
|
6009
6035
|
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
6010
6036
|
success: Scalars['Boolean'];
|
|
6011
6037
|
errors?: Maybe<Array<MutationError>>;
|
|
6038
|
+
collectionIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedCollectionIds>>;
|
|
6012
6039
|
};
|
|
6040
|
+
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | QueryError;
|
|
6013
6041
|
export declare type HelpCenterMutationApi = {
|
|
6014
6042
|
__typename?: 'HelpCenterMutationApi';
|
|
6015
|
-
createCollection
|
|
6016
|
-
updateCollection
|
|
6017
|
-
updateCollectionsOrder
|
|
6018
|
-
deleteCollection
|
|
6043
|
+
createCollection?: Maybe<HelpCenterCreateCollectionPayload>;
|
|
6044
|
+
updateCollection?: Maybe<HelpCenterDeleteUpdateCollectionPayload>;
|
|
6045
|
+
updateCollectionsOrder?: Maybe<HelpCenterUpdateCollectionsOrderPayload>;
|
|
6046
|
+
deleteCollection?: Maybe<HelpCenterDeleteUpdateCollectionPayload>;
|
|
6019
6047
|
};
|
|
6020
6048
|
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
6021
6049
|
input: HelpCenterBulkCreateCollectionsInput;
|
|
@@ -6031,8 +6059,8 @@ export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
|
6031
6059
|
};
|
|
6032
6060
|
export declare type HelpCenterQueryApi = {
|
|
6033
6061
|
__typename?: 'HelpCenterQueryApi';
|
|
6034
|
-
helpCenter
|
|
6035
|
-
helpCenterCollection
|
|
6062
|
+
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
6063
|
+
helpCenterCollection?: Maybe<HelpCenterCollectionResult>;
|
|
6036
6064
|
};
|
|
6037
6065
|
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
6038
6066
|
helpCenterId: Scalars['ID'];
|
|
@@ -6051,6 +6079,11 @@ export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
|
6051
6079
|
helpCenterId: Scalars['ID'];
|
|
6052
6080
|
collectionIds: Scalars['ID'];
|
|
6053
6081
|
};
|
|
6082
|
+
export declare type HelpCenterSuccessfullyDeletedUpdatedCollectionIds = {
|
|
6083
|
+
__typename?: 'HelpCenterSuccessfullyDeletedUpdatedCollectionIds';
|
|
6084
|
+
helpCenterId: Scalars['ID'];
|
|
6085
|
+
collectionIds: Scalars['ID'];
|
|
6086
|
+
};
|
|
6054
6087
|
export declare type HelpCenterUpdateCollectionInput = {
|
|
6055
6088
|
helpCenterId: Scalars['ID'];
|
|
6056
6089
|
collectionId: Scalars['ID'];
|
|
@@ -6235,6 +6268,7 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
6235
6268
|
};
|
|
6236
6269
|
export declare type IssueAndProject = {
|
|
6237
6270
|
__typename?: 'IssueAndProject';
|
|
6271
|
+
issueId: Scalars['ID'];
|
|
6238
6272
|
};
|
|
6239
6273
|
export declare type IssueDevOpsBranchDetails = {
|
|
6240
6274
|
__typename?: 'IssueDevOpsBranchDetails';
|
|
@@ -7087,10 +7121,6 @@ export declare type JiraComment = {
|
|
|
7087
7121
|
updated?: Maybe<Scalars['DateTime']>;
|
|
7088
7122
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
7089
7123
|
};
|
|
7090
|
-
export declare type JiraCommentByIdInput = {
|
|
7091
|
-
issueId: Scalars['ID'];
|
|
7092
|
-
id: Scalars['ID'];
|
|
7093
|
-
};
|
|
7094
7124
|
export declare type JiraCommentConnection = {
|
|
7095
7125
|
__typename?: 'JiraCommentConnection';
|
|
7096
7126
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -9869,8 +9899,6 @@ export declare type JiraQuery = {
|
|
|
9869
9899
|
issueByKey?: Maybe<JiraIssue>;
|
|
9870
9900
|
issueById?: Maybe<JiraIssue>;
|
|
9871
9901
|
issue?: Maybe<JiraIssue>;
|
|
9872
|
-
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
9873
|
-
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9874
9902
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9875
9903
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9876
9904
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9944,12 +9972,6 @@ export declare type JiraQueryIssueByIdArgs = {
|
|
|
9944
9972
|
export declare type JiraQueryIssueArgs = {
|
|
9945
9973
|
id?: Maybe<Scalars['ID']>;
|
|
9946
9974
|
};
|
|
9947
|
-
export declare type JiraQueryIssuesByIdArgs = {
|
|
9948
|
-
ids: Array<Scalars['ID']>;
|
|
9949
|
-
};
|
|
9950
|
-
export declare type JiraQueryCommentsByIdArgs = {
|
|
9951
|
-
input: Array<JiraCommentByIdInput>;
|
|
9952
|
-
};
|
|
9953
9975
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9954
9976
|
cloudId: Scalars['ID'];
|
|
9955
9977
|
};
|
|
@@ -14619,6 +14641,8 @@ export declare type RoadmapUserConfiguration = {
|
|
|
14619
14641
|
listWidth: Scalars['Long'];
|
|
14620
14642
|
timelineMode: RoadmapTimelineMode;
|
|
14621
14643
|
levelOneViewSettings: RoadmapViewSettings;
|
|
14644
|
+
isReleasesVisible: Scalars['Boolean'];
|
|
14645
|
+
highlightedVersions: Array<Scalars['ID']>;
|
|
14622
14646
|
};
|
|
14623
14647
|
export declare type RoadmapVersion = {
|
|
14624
14648
|
__typename?: 'RoadmapVersion';
|