@forge/cli-shared 2.3.0-next.3 → 2.3.0-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
|
@@ -13455,6 +13455,10 @@ export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
|
13455
13455
|
errors?: Maybe<Array<MutationError>>;
|
|
13456
13456
|
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
13457
13457
|
};
|
|
13458
|
+
export declare type RoadmapFilterConfiguration = {
|
|
13459
|
+
__typename?: 'RoadmapFilterConfiguration';
|
|
13460
|
+
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13461
|
+
};
|
|
13458
13462
|
export declare type RoadmapItem = {
|
|
13459
13463
|
__typename?: 'RoadmapItem';
|
|
13460
13464
|
id: Scalars['ID'];
|
|
@@ -13594,6 +13598,12 @@ export declare type RoadmapProjectValidation = {
|
|
|
13594
13598
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13595
13599
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13596
13600
|
};
|
|
13601
|
+
export declare type RoadmapQuickFilter = {
|
|
13602
|
+
__typename?: 'RoadmapQuickFilter';
|
|
13603
|
+
id: Scalars['ID'];
|
|
13604
|
+
name: Scalars['String'];
|
|
13605
|
+
query: Scalars['String'];
|
|
13606
|
+
};
|
|
13597
13607
|
export declare type RoadmapSprint = {
|
|
13598
13608
|
__typename?: 'RoadmapSprint';
|
|
13599
13609
|
id: Scalars['ID'];
|
|
@@ -13718,6 +13728,8 @@ export declare type RoadmapsQuery = {
|
|
|
13718
13728
|
__typename?: 'RoadmapsQuery';
|
|
13719
13729
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
13720
13730
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
13731
|
+
roadmapFilterItems: Array<Scalars['ID']>;
|
|
13732
|
+
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
13721
13733
|
};
|
|
13722
13734
|
export declare type RoadmapsQueryRoadmapForSourceArgs = {
|
|
13723
13735
|
sourceARI: Scalars['ID'];
|
|
@@ -13727,6 +13739,13 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
|
13727
13739
|
sourceARI: Scalars['ID'];
|
|
13728
13740
|
ids: Array<Scalars['ID']>;
|
|
13729
13741
|
};
|
|
13742
|
+
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
13743
|
+
sourceARI: Scalars['ID'];
|
|
13744
|
+
quickFilterIds: Array<Scalars['ID']>;
|
|
13745
|
+
};
|
|
13746
|
+
export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
13747
|
+
sourceARI: Scalars['ID'];
|
|
13748
|
+
};
|
|
13730
13749
|
export declare type ScanPolarisProjectInput = {
|
|
13731
13750
|
project: Scalars['ID'];
|
|
13732
13751
|
refresh?: Maybe<Scalars['Boolean']>;
|