@forge/cli-shared 2.3.1-next.3 → 2.3.1-next.4
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
|
@@ -1004,6 +1004,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1004
1004
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1005
1005
|
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1006
1006
|
imageUri?: Maybe<Scalars['String']>;
|
|
1007
|
+
dependents?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1007
1008
|
};
|
|
1008
1009
|
export declare enum BitbucketPermission {
|
|
1009
1010
|
Admin = "ADMIN"
|
|
@@ -5183,6 +5184,7 @@ export declare type DevOpsToolNamespaceContainersArgs = {
|
|
|
5183
5184
|
query?: Maybe<Scalars['String']>;
|
|
5184
5185
|
first?: Maybe<Scalars['Int']>;
|
|
5185
5186
|
after?: Maybe<Scalars['String']>;
|
|
5187
|
+
projectAri?: Maybe<Scalars['String']>;
|
|
5186
5188
|
};
|
|
5187
5189
|
export declare type DevOpsToolNamespaceConnection = {
|
|
5188
5190
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -5410,6 +5412,7 @@ export declare type Extension = {
|
|
|
5410
5412
|
appOwner?: Maybe<User>;
|
|
5411
5413
|
appVersion?: Maybe<Scalars['String']>;
|
|
5412
5414
|
properties: Scalars['JSON'];
|
|
5415
|
+
migrationKey?: Maybe<Scalars['String']>;
|
|
5413
5416
|
license?: Maybe<AppInstallationLicense>;
|
|
5414
5417
|
egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
|
|
5415
5418
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
@@ -6167,6 +6170,15 @@ export declare type JiraAdf = {
|
|
|
6167
6170
|
__typename?: 'JiraADF';
|
|
6168
6171
|
json?: Maybe<Scalars['JSON']>;
|
|
6169
6172
|
};
|
|
6173
|
+
export declare type JiraAddIssuesToFixVersionInput = {
|
|
6174
|
+
issueIds: Array<Scalars['ID']>;
|
|
6175
|
+
versionId: Scalars['ID'];
|
|
6176
|
+
};
|
|
6177
|
+
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6178
|
+
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6179
|
+
success: Scalars['Boolean'];
|
|
6180
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6181
|
+
};
|
|
6170
6182
|
export declare type JiraAffectedService = {
|
|
6171
6183
|
__typename?: 'JiraAffectedService';
|
|
6172
6184
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -6890,7 +6902,7 @@ export declare type JiraDevOpsBranchDetails = {
|
|
|
6890
6902
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
6891
6903
|
entityUrl?: Maybe<Scalars['URL']>;
|
|
6892
6904
|
name?: Maybe<Scalars['String']>;
|
|
6893
|
-
|
|
6905
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6894
6906
|
};
|
|
6895
6907
|
export declare type JiraDevOpsCommitDetails = {
|
|
6896
6908
|
__typename?: 'JiraDevOpsCommitDetails';
|
|
@@ -8592,6 +8604,7 @@ export declare type JiraMutation = {
|
|
|
8592
8604
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8593
8605
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8594
8606
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8607
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8595
8608
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8596
8609
|
};
|
|
8597
8610
|
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
@@ -8612,6 +8625,9 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8612
8625
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8613
8626
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8614
8627
|
};
|
|
8628
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8629
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
8630
|
+
};
|
|
8615
8631
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8616
8632
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8617
8633
|
};
|
|
@@ -13619,6 +13635,11 @@ export declare type RoadmapConfiguration = {
|
|
|
13619
13635
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13620
13636
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
13621
13637
|
};
|
|
13638
|
+
export declare type RoadmapContent = {
|
|
13639
|
+
__typename?: 'RoadmapContent';
|
|
13640
|
+
configuration: RoadmapConfiguration;
|
|
13641
|
+
items: RoadmapItemConnection;
|
|
13642
|
+
};
|
|
13622
13643
|
export declare type RoadmapCreationPreferences = {
|
|
13623
13644
|
__typename?: 'RoadmapCreationPreferences';
|
|
13624
13645
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13635,6 +13656,9 @@ export declare type RoadmapDetails = {
|
|
|
13635
13656
|
roadmapConfiguration?: Maybe<RoadmapConfiguration>;
|
|
13636
13657
|
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
13637
13658
|
metadata?: Maybe<RoadmapMetadata>;
|
|
13659
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13660
|
+
healthcheck?: Maybe<RoadmapHealthCheck>;
|
|
13661
|
+
content?: Maybe<RoadmapContent>;
|
|
13638
13662
|
};
|
|
13639
13663
|
export declare enum RoadmapEpicView {
|
|
13640
13664
|
All = "ALL",
|
|
@@ -13671,6 +13695,24 @@ export declare type RoadmapFilterConfiguration = {
|
|
|
13671
13695
|
__typename?: 'RoadmapFilterConfiguration';
|
|
13672
13696
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13673
13697
|
};
|
|
13698
|
+
export declare type RoadmapHealthCheck = {
|
|
13699
|
+
__typename?: 'RoadmapHealthCheck';
|
|
13700
|
+
title: Scalars['String'];
|
|
13701
|
+
explanation: Scalars['String'];
|
|
13702
|
+
learnMore: RoadmapHealthCheckLink;
|
|
13703
|
+
resolution?: Maybe<RoadmapHealthCheckResolution>;
|
|
13704
|
+
};
|
|
13705
|
+
export declare type RoadmapHealthCheckLink = {
|
|
13706
|
+
__typename?: 'RoadmapHealthCheckLink';
|
|
13707
|
+
text: Scalars['String'];
|
|
13708
|
+
url: Scalars['String'];
|
|
13709
|
+
};
|
|
13710
|
+
export declare type RoadmapHealthCheckResolution = {
|
|
13711
|
+
__typename?: 'RoadmapHealthCheckResolution';
|
|
13712
|
+
label: Scalars['String'];
|
|
13713
|
+
actionId: Scalars['ID'];
|
|
13714
|
+
fallbackMessage: Scalars['String'];
|
|
13715
|
+
};
|
|
13674
13716
|
export declare type RoadmapItem = {
|
|
13675
13717
|
__typename?: 'RoadmapItem';
|
|
13676
13718
|
id: Scalars['ID'];
|