@forge/cli-shared 2.3.2-next.2 → 2.4.0-next.3
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
|
@@ -13979,6 +13979,19 @@ export declare type RoadmapResolveHealthcheckPayload = Payload & {
|
|
|
13979
13979
|
success: Scalars['Boolean'];
|
|
13980
13980
|
errors?: Maybe<Array<MutationError>>;
|
|
13981
13981
|
};
|
|
13982
|
+
export declare type RoadmapScheduleItemInput = {
|
|
13983
|
+
itemId: Scalars['ID'];
|
|
13984
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13985
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13986
|
+
};
|
|
13987
|
+
export declare type RoadmapScheduleItemsInput = {
|
|
13988
|
+
scheduleRequests: Array<Maybe<RoadmapScheduleItemInput>>;
|
|
13989
|
+
};
|
|
13990
|
+
export declare type RoadmapScheduleItemsPayload = Payload & {
|
|
13991
|
+
__typename?: 'RoadmapScheduleItemsPayload';
|
|
13992
|
+
success: Scalars['Boolean'];
|
|
13993
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13994
|
+
};
|
|
13982
13995
|
export declare type RoadmapSprint = {
|
|
13983
13996
|
__typename?: 'RoadmapSprint';
|
|
13984
13997
|
id: Scalars['ID'];
|
|
@@ -14074,6 +14087,7 @@ export declare type RoadmapsMutation = {
|
|
|
14074
14087
|
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
14075
14088
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
14076
14089
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14090
|
+
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
14077
14091
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
14078
14092
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
14079
14093
|
};
|
|
@@ -14092,6 +14106,10 @@ export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
|
14092
14106
|
sourceARI: Scalars['ID'];
|
|
14093
14107
|
input: RoadmapUpdateItemInput;
|
|
14094
14108
|
};
|
|
14109
|
+
export declare type RoadmapsMutationScheduleRoadmapItemsArgs = {
|
|
14110
|
+
sourceARI: Scalars['ID'];
|
|
14111
|
+
input: RoadmapScheduleItemsInput;
|
|
14112
|
+
};
|
|
14095
14113
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
14096
14114
|
sourceARI: Scalars['ID'];
|
|
14097
14115
|
input: RoadmapToggleDependencyInput;
|