@forge/cli-shared 6.4.0 → 6.4.1-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
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.4.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [df04fc6]
|
|
8
|
+
- Updated dependencies [08e248c]
|
|
9
|
+
- Updated dependencies [94c1eda]
|
|
10
|
+
- Updated dependencies [c01ab1f]
|
|
11
|
+
- @forge/manifest@8.2.0-next.0
|
|
12
|
+
|
|
3
13
|
## 6.4.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -3581,6 +3581,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3581
3581
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3582
3582
|
updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
|
|
3583
3583
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
3584
|
+
updateJqlMetricSourceUser?: Maybe<CompassUpdateJqlMetricSourceUserPayload>;
|
|
3584
3585
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
3585
3586
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
3586
3587
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
@@ -3824,6 +3825,9 @@ export declare type CompassCatalogMutationApiUpdateCustomPermissionConfigsArgs =
|
|
|
3824
3825
|
export declare type CompassCatalogMutationApiUpdateDocumentArgs = {
|
|
3825
3826
|
input: CompassUpdateDocumentInput;
|
|
3826
3827
|
};
|
|
3828
|
+
export declare type CompassCatalogMutationApiUpdateJqlMetricSourceUserArgs = {
|
|
3829
|
+
input: CompassUpdateJqlMetricSourceUserInput;
|
|
3830
|
+
};
|
|
3827
3831
|
export declare type CompassCatalogMutationApiUpdateMetricDefinitionArgs = {
|
|
3828
3832
|
input: CompassUpdateMetricDefinitionInput;
|
|
3829
3833
|
};
|
|
@@ -7054,6 +7058,15 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
7054
7058
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
7055
7059
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
7056
7060
|
};
|
|
7061
|
+
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
7062
|
+
metricSourceId: Scalars['ID']['input'];
|
|
7063
|
+
};
|
|
7064
|
+
export declare type CompassUpdateJqlMetricSourceUserPayload = Payload & {
|
|
7065
|
+
__typename?: 'CompassUpdateJQLMetricSourceUserPayload';
|
|
7066
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7067
|
+
success: Scalars['Boolean']['output'];
|
|
7068
|
+
updatedMetricSource?: Maybe<CompassMetricSource>;
|
|
7069
|
+
};
|
|
7057
7070
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
7058
7071
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
7059
7072
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -49738,6 +49751,7 @@ export declare type JiraProject = Node & {
|
|
|
49738
49751
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
49739
49752
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
49740
49753
|
avatar?: Maybe<JiraAvatar>;
|
|
49754
|
+
background?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
49741
49755
|
boards?: Maybe<JiraBoardConnection>;
|
|
49742
49756
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']['output']>;
|
|
49743
49757
|
category?: Maybe<JiraProjectCategory>;
|