@forge/cli-shared 2.5.1-next.0 → 2.6.0-next.0
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 +22 -0
- package/out/graphql/graphql-types.d.ts +46 -8
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +6 -1
- package/out/shared/error-handling.d.ts +2 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +12 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.6.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 69f42bdc: Added a utility function to wrap potentially unknown errors in an error, or return the original error"
|
|
8
|
+
|
|
9
|
+
## 2.5.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [a85953d8]
|
|
14
|
+
- Updated dependencies [2c42df96]
|
|
15
|
+
- Updated dependencies [c52209fd]
|
|
16
|
+
- @forge/manifest@3.8.1
|
|
17
|
+
|
|
18
|
+
## 2.5.1-next.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [a85953d8]
|
|
23
|
+
- @forge/manifest@3.8.1-next.1
|
|
24
|
+
|
|
3
25
|
## 2.5.1-next.0
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -5716,6 +5716,15 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5716
5716
|
requestId: Scalars['String'];
|
|
5717
5717
|
name: Scalars['String'];
|
|
5718
5718
|
};
|
|
5719
|
+
export declare type DevOpsToolSort = {
|
|
5720
|
+
name?: Maybe<DevOpsToolSortOrder>;
|
|
5721
|
+
supportsContainers?: Maybe<DevOpsToolSortOrder>;
|
|
5722
|
+
integration?: Maybe<DevOpsToolSortOrder>;
|
|
5723
|
+
};
|
|
5724
|
+
export declare enum DevOpsToolSortOrder {
|
|
5725
|
+
Asc = "ASC",
|
|
5726
|
+
Desc = "DESC"
|
|
5727
|
+
}
|
|
5719
5728
|
export declare type DevOpsToolUnknownTool = {
|
|
5720
5729
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5721
5730
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -5734,6 +5743,7 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
5734
5743
|
export declare type DevOpsTools = {
|
|
5735
5744
|
__typename?: 'DevOpsTools';
|
|
5736
5745
|
tools?: Maybe<DevOpsToolConnection>;
|
|
5746
|
+
toolsThatAreInstalledOrSupportContainers?: Maybe<DevOpsToolConnection>;
|
|
5737
5747
|
tool?: Maybe<DevOpsTool>;
|
|
5738
5748
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
5739
5749
|
container?: Maybe<DevOpsToolContainer>;
|
|
@@ -5751,6 +5761,14 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5751
5761
|
installed?: Maybe<Scalars['Boolean']>;
|
|
5752
5762
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5753
5763
|
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
5764
|
+
sort?: Maybe<Array<Maybe<DevOpsToolSort>>>;
|
|
5765
|
+
};
|
|
5766
|
+
export declare type DevOpsToolsToolsThatAreInstalledOrSupportContainersArgs = {
|
|
5767
|
+
cloudId: Scalars['ID'];
|
|
5768
|
+
first?: Maybe<Scalars['Int']>;
|
|
5769
|
+
after?: Maybe<Scalars['String']>;
|
|
5770
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5771
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
5754
5772
|
};
|
|
5755
5773
|
export declare type DevOpsToolsToolArgs = {
|
|
5756
5774
|
id: Scalars['ID'];
|
|
@@ -9407,7 +9425,7 @@ export declare type JiraMutation = {
|
|
|
9407
9425
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
9408
9426
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
9409
9427
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
9410
|
-
updateIssueHierarchyConfig
|
|
9428
|
+
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
9411
9429
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
9412
9430
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
9413
9431
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
@@ -10233,24 +10251,24 @@ export declare type JiraQuery = {
|
|
|
10233
10251
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
10234
10252
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
10235
10253
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
10236
|
-
issueContainersByType
|
|
10237
|
-
issueContainersByTypeByKey
|
|
10254
|
+
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10255
|
+
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
10238
10256
|
issueByKey?: Maybe<JiraIssue>;
|
|
10239
10257
|
issueById?: Maybe<JiraIssue>;
|
|
10240
10258
|
issue?: Maybe<JiraIssue>;
|
|
10241
10259
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
10242
10260
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
10243
10261
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
10244
|
-
allGrantTypeKeys
|
|
10262
|
+
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
10245
10263
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
10246
10264
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
10247
10265
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
10248
10266
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
10249
10267
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
10250
|
-
getPermissionSchemeGrantsHierarchy
|
|
10251
|
-
issueHierarchyConfig
|
|
10252
|
-
issueHierarchyLimits
|
|
10253
|
-
lockedIssueTypeIds
|
|
10268
|
+
getPermissionSchemeGrantsHierarchy?: Maybe<Array<JiraPermissionGrants>>;
|
|
10269
|
+
issueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationQuery>;
|
|
10270
|
+
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
10271
|
+
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
10254
10272
|
version?: Maybe<JiraVersionResult>;
|
|
10255
10273
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
10256
10274
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
@@ -15130,6 +15148,21 @@ export declare type RoadmapUpdateItemResponse = {
|
|
|
15130
15148
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
15131
15149
|
item?: Maybe<RoadmapItem>;
|
|
15132
15150
|
};
|
|
15151
|
+
export declare type RoadmapUpdateSettingsInput = {
|
|
15152
|
+
roadmapEnabled?: Maybe<Scalars['Boolean']>;
|
|
15153
|
+
childIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
15154
|
+
};
|
|
15155
|
+
export declare type RoadmapUpdateSettingsOutput = {
|
|
15156
|
+
__typename?: 'RoadmapUpdateSettingsOutput';
|
|
15157
|
+
roadmapEnabled?: Maybe<Scalars['Boolean']>;
|
|
15158
|
+
childIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
15159
|
+
};
|
|
15160
|
+
export declare type RoadmapUpdateSettingsPayload = Payload & {
|
|
15161
|
+
__typename?: 'RoadmapUpdateSettingsPayload';
|
|
15162
|
+
success: Scalars['Boolean'];
|
|
15163
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15164
|
+
output?: Maybe<RoadmapUpdateSettingsOutput>;
|
|
15165
|
+
};
|
|
15133
15166
|
export declare type RoadmapUserConfiguration = {
|
|
15134
15167
|
__typename?: 'RoadmapUserConfiguration';
|
|
15135
15168
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -15165,6 +15198,7 @@ export declare type RoadmapsMutation = {
|
|
|
15165
15198
|
__typename?: 'RoadmapsMutation';
|
|
15166
15199
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
15167
15200
|
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
15201
|
+
updateRoadmapSettings?: Maybe<RoadmapUpdateSettingsPayload>;
|
|
15168
15202
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
15169
15203
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
15170
15204
|
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
@@ -15178,6 +15212,10 @@ export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
|
15178
15212
|
sourceARI: Scalars['ID'];
|
|
15179
15213
|
input: RoadmapResolveHealthcheckInput;
|
|
15180
15214
|
};
|
|
15215
|
+
export declare type RoadmapsMutationUpdateRoadmapSettingsArgs = {
|
|
15216
|
+
sourceARI: Scalars['ID'];
|
|
15217
|
+
input: RoadmapUpdateSettingsInput;
|
|
15218
|
+
};
|
|
15181
15219
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
15182
15220
|
sourceARI: Scalars['ID'];
|
|
15183
15221
|
input: RoadmapAddItemInput;
|