@forge/cli-shared 2.2.1-next.5 → 2.2.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
|
@@ -2424,6 +2424,7 @@ export declare type CompassScorecard = Node & {
|
|
|
2424
2424
|
importance: CompassScorecardImportance;
|
|
2425
2425
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
2426
2426
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
2427
|
+
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
2427
2428
|
changeMetadata: CompassChangeMetadata;
|
|
2428
2429
|
};
|
|
2429
2430
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
@@ -3675,6 +3676,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
3675
3676
|
componentType: CompassComponentType;
|
|
3676
3677
|
importance: CompassScorecardImportance;
|
|
3677
3678
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
3679
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
3678
3680
|
};
|
|
3679
3681
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
3680
3682
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -8773,6 +8775,7 @@ export declare type JiraQuery = {
|
|
|
8773
8775
|
issueById?: Maybe<JiraIssue>;
|
|
8774
8776
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8775
8777
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8778
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8776
8779
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8777
8780
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8778
8781
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -14013,8 +14016,12 @@ export declare type SupportRequestUser = {
|
|
|
14013
14016
|
username?: Maybe<Scalars['String']>;
|
|
14014
14017
|
email?: Maybe<Scalars['String']>;
|
|
14015
14018
|
displayName?: Maybe<Scalars['String']>;
|
|
14016
|
-
userType?: Maybe<
|
|
14019
|
+
userType?: Maybe<SupportRequestUserType>;
|
|
14017
14020
|
};
|
|
14021
|
+
export declare enum SupportRequestUserType {
|
|
14022
|
+
Customer = "CUSTOMER",
|
|
14023
|
+
Partner = "PARTNER"
|
|
14024
|
+
}
|
|
14018
14025
|
export declare type SupportRequestUsers = {
|
|
14019
14026
|
__typename?: 'SupportRequestUsers';
|
|
14020
14027
|
searchUsers: Array<SupportRequestUser>;
|
|
@@ -14459,6 +14466,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
14459
14466
|
ownerId?: Maybe<Scalars['ID']>;
|
|
14460
14467
|
componentType?: Maybe<CompassComponentType>;
|
|
14461
14468
|
importance?: Maybe<CompassScorecardImportance>;
|
|
14469
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
14462
14470
|
};
|
|
14463
14471
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
14464
14472
|
__typename?: 'UpdateCompassScorecardPayload';
|