@forge/cli-shared 2.2.2-next.0 → 2.2.2-next.1
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
|
@@ -1453,9 +1453,16 @@ export declare type CompassAlertEvent = CompassEvent & {
|
|
|
1453
1453
|
displayName: Scalars['String'];
|
|
1454
1454
|
lastUpdated: Scalars['DateTime'];
|
|
1455
1455
|
updateSequenceNumber: Scalars['Long'];
|
|
1456
|
-
alertId: Scalars['ID'];
|
|
1457
1456
|
description?: Maybe<Scalars['String']>;
|
|
1458
1457
|
url?: Maybe<Scalars['URL']>;
|
|
1458
|
+
alertProperties: CompassAlertEventProperties;
|
|
1459
|
+
};
|
|
1460
|
+
export declare type CompassAlertEventProperties = {
|
|
1461
|
+
__typename?: 'CompassAlertEventProperties';
|
|
1462
|
+
id: Scalars['ID'];
|
|
1463
|
+
};
|
|
1464
|
+
export declare type CompassAlertEventPropertiesInput = {
|
|
1465
|
+
id: Scalars['ID'];
|
|
1459
1466
|
};
|
|
1460
1467
|
export declare type CompassAnnouncement = {
|
|
1461
1468
|
__typename?: 'CompassAnnouncement';
|
|
@@ -1803,11 +1810,11 @@ export declare enum CompassComponentType {
|
|
|
1803
1810
|
export declare type CompassCreateAlertEventInput = {
|
|
1804
1811
|
displayName: Scalars['String'];
|
|
1805
1812
|
lastUpdated: Scalars['DateTime'];
|
|
1806
|
-
alertId: Scalars['ID'];
|
|
1807
1813
|
updateSequenceNumber: Scalars['Long'];
|
|
1808
1814
|
description?: Maybe<Scalars['String']>;
|
|
1809
1815
|
url?: Maybe<Scalars['URL']>;
|
|
1810
1816
|
externalEventSourceId: Scalars['ID'];
|
|
1817
|
+
alertProperties: CompassAlertEventPropertiesInput;
|
|
1811
1818
|
};
|
|
1812
1819
|
export declare type CompassCreateAnnouncementInput = {
|
|
1813
1820
|
componentId: Scalars['ID'];
|
|
@@ -1824,24 +1831,26 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1824
1831
|
export declare type CompassCreateCustomEventInput = {
|
|
1825
1832
|
displayName: Scalars['String'];
|
|
1826
1833
|
lastUpdated: Scalars['DateTime'];
|
|
1827
|
-
customEventId: Scalars['ID'];
|
|
1828
1834
|
updateSequenceNumber: Scalars['Long'];
|
|
1829
1835
|
description?: Maybe<Scalars['String']>;
|
|
1830
1836
|
url?: Maybe<Scalars['URL']>;
|
|
1831
|
-
icon: CompassCustomEventIcon;
|
|
1832
1837
|
externalEventSourceId: Scalars['ID'];
|
|
1838
|
+
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1833
1839
|
};
|
|
1834
1840
|
export declare type CompassCreateDeploymentEventInput = {
|
|
1835
|
-
deploymentSequenceNumber: Scalars['Long'];
|
|
1836
1841
|
updateSequenceNumber: Scalars['Long'];
|
|
1837
1842
|
displayName: Scalars['String'];
|
|
1838
1843
|
url: Scalars['URL'];
|
|
1839
1844
|
description: Scalars['String'];
|
|
1840
|
-
state: CompassDeploymentEventState;
|
|
1841
1845
|
lastUpdated: Scalars['DateTime'];
|
|
1846
|
+
externalEventSourceId: Scalars['ID'];
|
|
1847
|
+
deploymentProperties: CompassCreateDeploymentEventPropertiesInput;
|
|
1848
|
+
};
|
|
1849
|
+
export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
1850
|
+
sequenceNumber: Scalars['Long'];
|
|
1851
|
+
state: CompassDeploymentEventState;
|
|
1842
1852
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
1843
1853
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
1844
|
-
externalEventSourceId: Scalars['ID'];
|
|
1845
1854
|
};
|
|
1846
1855
|
export declare type CompassCreateEventInput = {
|
|
1847
1856
|
cloudId: Scalars['ID'];
|
|
@@ -1855,32 +1864,37 @@ export declare type CompassCreateEventsPayload = Payload & {
|
|
|
1855
1864
|
export declare type CompassCreateFlagEventInput = {
|
|
1856
1865
|
displayName: Scalars['String'];
|
|
1857
1866
|
lastUpdated: Scalars['DateTime'];
|
|
1858
|
-
flagId: Scalars['ID'];
|
|
1859
1867
|
updateSequenceNumber: Scalars['Long'];
|
|
1860
1868
|
description?: Maybe<Scalars['String']>;
|
|
1861
1869
|
url?: Maybe<Scalars['URL']>;
|
|
1862
|
-
status?: Maybe<Scalars['String']>;
|
|
1863
1870
|
externalEventSourceId: Scalars['ID'];
|
|
1871
|
+
flagProperties: CompassCreateFlagEventPropertiesInput;
|
|
1872
|
+
};
|
|
1873
|
+
export declare type CompassCreateFlagEventPropertiesInput = {
|
|
1874
|
+
id: Scalars['ID'];
|
|
1875
|
+
status?: Maybe<Scalars['String']>;
|
|
1864
1876
|
};
|
|
1865
1877
|
export declare type CompassCreateIncidentEventInput = {
|
|
1866
1878
|
displayName: Scalars['String'];
|
|
1867
1879
|
lastUpdated: Scalars['DateTime'];
|
|
1868
|
-
incidentId: Scalars['ID'];
|
|
1869
1880
|
updateSequenceNumber: Scalars['Long'];
|
|
1870
1881
|
description?: Maybe<Scalars['String']>;
|
|
1871
1882
|
url?: Maybe<Scalars['URL']>;
|
|
1872
|
-
state: CompassIncidentEventState;
|
|
1873
1883
|
externalEventSourceId: Scalars['ID'];
|
|
1884
|
+
incidentProperties: CompassCreateIncidentEventPropertiesInput;
|
|
1885
|
+
};
|
|
1886
|
+
export declare type CompassCreateIncidentEventPropertiesInput = {
|
|
1887
|
+
id: Scalars['ID'];
|
|
1888
|
+
state: CompassIncidentEventState;
|
|
1874
1889
|
};
|
|
1875
1890
|
export declare type CompassCreateLifecycleEventInput = {
|
|
1876
1891
|
displayName: Scalars['String'];
|
|
1877
1892
|
lastUpdated: Scalars['DateTime'];
|
|
1878
|
-
lifecycleId: Scalars['ID'];
|
|
1879
1893
|
updateSequenceNumber: Scalars['Long'];
|
|
1880
1894
|
description?: Maybe<Scalars['String']>;
|
|
1881
1895
|
url?: Maybe<Scalars['URL']>;
|
|
1882
|
-
stage: CompassLifecycleEventStage;
|
|
1883
1896
|
externalEventSourceId: Scalars['ID'];
|
|
1897
|
+
lifecycleProperties: CompassLifecycleEventInputProperties;
|
|
1884
1898
|
};
|
|
1885
1899
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
1886
1900
|
cloudId: Scalars['ID'];
|
|
@@ -1938,16 +1952,24 @@ export declare type CompassCustomEvent = CompassEvent & {
|
|
|
1938
1952
|
displayName: Scalars['String'];
|
|
1939
1953
|
lastUpdated: Scalars['DateTime'];
|
|
1940
1954
|
updateSequenceNumber: Scalars['Long'];
|
|
1941
|
-
customEventId: Scalars['ID'];
|
|
1942
1955
|
description?: Maybe<Scalars['String']>;
|
|
1943
1956
|
url?: Maybe<Scalars['URL']>;
|
|
1944
|
-
|
|
1957
|
+
customEventProperties: CompassCustomEventProperties;
|
|
1945
1958
|
};
|
|
1946
1959
|
export declare enum CompassCustomEventIcon {
|
|
1947
1960
|
Info = "INFO",
|
|
1948
1961
|
Warning = "WARNING",
|
|
1949
1962
|
Checkpoint = "CHECKPOINT"
|
|
1950
1963
|
}
|
|
1964
|
+
export declare type CompassCustomEventProperties = {
|
|
1965
|
+
__typename?: 'CompassCustomEventProperties';
|
|
1966
|
+
id: Scalars['ID'];
|
|
1967
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
1968
|
+
};
|
|
1969
|
+
export declare type CompassCustomEventPropertiesInput = {
|
|
1970
|
+
id: Scalars['ID'];
|
|
1971
|
+
icon: CompassCustomEventIcon;
|
|
1972
|
+
};
|
|
1951
1973
|
export declare type CompassDeleteAnnouncementInput = {
|
|
1952
1974
|
cloudId: Scalars['ID'];
|
|
1953
1975
|
id: Scalars['ID'];
|
|
@@ -2001,6 +2023,7 @@ export declare type CompassDeploymentEvent = CompassEvent & {
|
|
|
2001
2023
|
state?: Maybe<CompassDeploymentEventState>;
|
|
2002
2024
|
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2003
2025
|
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2026
|
+
deploymentProperties: CompassDeploymentEventProperties;
|
|
2004
2027
|
};
|
|
2005
2028
|
export declare type CompassDeploymentEventEnvironment = {
|
|
2006
2029
|
__typename?: 'CompassDeploymentEventEnvironment';
|
|
@@ -2031,6 +2054,13 @@ export declare type CompassDeploymentEventPipelineInput = {
|
|
|
2031
2054
|
url: Scalars['String'];
|
|
2032
2055
|
displayName: Scalars['String'];
|
|
2033
2056
|
};
|
|
2057
|
+
export declare type CompassDeploymentEventProperties = {
|
|
2058
|
+
__typename?: 'CompassDeploymentEventProperties';
|
|
2059
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
2060
|
+
state?: Maybe<CompassDeploymentEventState>;
|
|
2061
|
+
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2062
|
+
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2063
|
+
};
|
|
2034
2064
|
export declare enum CompassDeploymentEventState {
|
|
2035
2065
|
Pending = "PENDING",
|
|
2036
2066
|
InProgress = "IN_PROGRESS",
|
|
@@ -2146,9 +2176,13 @@ export declare type CompassFlagEvent = CompassEvent & {
|
|
|
2146
2176
|
displayName: Scalars['String'];
|
|
2147
2177
|
lastUpdated: Scalars['DateTime'];
|
|
2148
2178
|
updateSequenceNumber: Scalars['Long'];
|
|
2149
|
-
flagId: Scalars['ID'];
|
|
2150
2179
|
description?: Maybe<Scalars['String']>;
|
|
2151
2180
|
url?: Maybe<Scalars['URL']>;
|
|
2181
|
+
flagProperties: CompassFlagEventProperties;
|
|
2182
|
+
};
|
|
2183
|
+
export declare type CompassFlagEventProperties = {
|
|
2184
|
+
__typename?: 'CompassFlagEventProperties';
|
|
2185
|
+
id: Scalars['ID'];
|
|
2152
2186
|
status?: Maybe<Scalars['String']>;
|
|
2153
2187
|
};
|
|
2154
2188
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
@@ -2208,9 +2242,13 @@ export declare type CompassIncidentEvent = CompassEvent & {
|
|
|
2208
2242
|
displayName: Scalars['String'];
|
|
2209
2243
|
lastUpdated: Scalars['DateTime'];
|
|
2210
2244
|
updateSequenceNumber: Scalars['Long'];
|
|
2211
|
-
incidentId: Scalars['ID'];
|
|
2212
2245
|
description?: Maybe<Scalars['String']>;
|
|
2213
2246
|
url?: Maybe<Scalars['URL']>;
|
|
2247
|
+
incidentProperties: CompassIncidentEventProperties;
|
|
2248
|
+
};
|
|
2249
|
+
export declare type CompassIncidentEventProperties = {
|
|
2250
|
+
__typename?: 'CompassIncidentEventProperties';
|
|
2251
|
+
id: Scalars['ID'];
|
|
2214
2252
|
state?: Maybe<CompassIncidentEventState>;
|
|
2215
2253
|
};
|
|
2216
2254
|
export declare enum CompassIncidentEventState {
|
|
@@ -2235,10 +2273,18 @@ export declare type CompassLifecycleEvent = CompassEvent & {
|
|
|
2235
2273
|
displayName: Scalars['String'];
|
|
2236
2274
|
lastUpdated: Scalars['DateTime'];
|
|
2237
2275
|
updateSequenceNumber: Scalars['Long'];
|
|
2238
|
-
lifecycleId: Scalars['ID'];
|
|
2239
|
-
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2240
2276
|
description?: Maybe<Scalars['String']>;
|
|
2241
2277
|
url?: Maybe<Scalars['URL']>;
|
|
2278
|
+
lifecycleProperties: CompassLifecycleEventProperties;
|
|
2279
|
+
};
|
|
2280
|
+
export declare type CompassLifecycleEventInputProperties = {
|
|
2281
|
+
id: Scalars['ID'];
|
|
2282
|
+
stage: CompassLifecycleEventStage;
|
|
2283
|
+
};
|
|
2284
|
+
export declare type CompassLifecycleEventProperties = {
|
|
2285
|
+
__typename?: 'CompassLifecycleEventProperties';
|
|
2286
|
+
id: Scalars['ID'];
|
|
2287
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2242
2288
|
};
|
|
2243
2289
|
export declare enum CompassLifecycleEventStage {
|
|
2244
2290
|
PreRelease = "PRE_RELEASE",
|
|
@@ -3785,6 +3831,7 @@ export declare type CreateDevOpsServiceRelationshipPayload = Payload & {
|
|
|
3785
3831
|
serviceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
3786
3832
|
};
|
|
3787
3833
|
export declare type CreateEventSourceInput = {
|
|
3834
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
3788
3835
|
externalEventSourceId: Scalars['ID'];
|
|
3789
3836
|
eventType: CompassEventType;
|
|
3790
3837
|
};
|
|
@@ -4240,6 +4287,7 @@ export declare type DeleteDevOpsServiceRelationshipPayload = Payload & {
|
|
|
4240
4287
|
errors?: Maybe<Array<MutationError>>;
|
|
4241
4288
|
};
|
|
4242
4289
|
export declare type DeleteEventSourceInput = {
|
|
4290
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
4243
4291
|
externalEventSourceId: Scalars['ID'];
|
|
4244
4292
|
eventType: CompassEventType;
|
|
4245
4293
|
};
|
|
@@ -5389,7 +5437,8 @@ export declare enum GrantCheckProduct {
|
|
|
5389
5437
|
Jira = "JIRA",
|
|
5390
5438
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
5391
5439
|
Confluence = "CONFLUENCE",
|
|
5392
|
-
Compass = "COMPASS"
|
|
5440
|
+
Compass = "COMPASS",
|
|
5441
|
+
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5393
5442
|
}
|
|
5394
5443
|
export declare type HostedResourcePreSignedUrl = {
|
|
5395
5444
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
@@ -6008,6 +6057,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
6008
6057
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6009
6058
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
6010
6059
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
6060
|
+
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
6011
6061
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
6012
6062
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6013
6063
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -10079,6 +10129,7 @@ export declare enum JiraVersionStatus {
|
|
|
10079
10129
|
}
|
|
10080
10130
|
export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
10081
10131
|
isOpenPullRequestEnabled?: Maybe<Scalars['Boolean']>;
|
|
10132
|
+
isOpenReviewEnabled?: Maybe<Scalars['Boolean']>;
|
|
10082
10133
|
isUnreviewedCodeEnabled?: Maybe<Scalars['Boolean']>;
|
|
10083
10134
|
isFailingBuildEnabled?: Maybe<Scalars['Boolean']>;
|
|
10084
10135
|
};
|
|
@@ -11217,6 +11268,10 @@ export declare type MyActivityFilter = {
|
|
|
11217
11268
|
type?: Maybe<ActivitiesFilterType>;
|
|
11218
11269
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
11219
11270
|
};
|
|
11271
|
+
export declare type NadelBatchObjectIdentifiedBy = {
|
|
11272
|
+
sourceId: Scalars['String'];
|
|
11273
|
+
resultId: Scalars['String'];
|
|
11274
|
+
};
|
|
11220
11275
|
export declare type NadelHydrationArgument = {
|
|
11221
11276
|
name: Scalars['String'];
|
|
11222
11277
|
value: Scalars['String'];
|
|
@@ -12087,25 +12142,25 @@ export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
|
12087
12142
|
};
|
|
12088
12143
|
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12089
12144
|
listId: Scalars['ID'];
|
|
12090
|
-
|
|
12145
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12091
12146
|
};
|
|
12092
12147
|
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12093
12148
|
listId: Scalars['ID'];
|
|
12094
|
-
|
|
12149
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12095
12150
|
};
|
|
12096
12151
|
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12097
12152
|
listId: Scalars['ID'];
|
|
12098
12153
|
refId: Scalars['ID'];
|
|
12099
|
-
|
|
12154
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12100
12155
|
};
|
|
12101
12156
|
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12102
12157
|
listId: Scalars['ID'];
|
|
12103
12158
|
refId: Scalars['ID'];
|
|
12104
|
-
|
|
12159
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12105
12160
|
};
|
|
12106
12161
|
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12107
12162
|
listId: Scalars['ID'];
|
|
12108
|
-
|
|
12163
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12109
12164
|
};
|
|
12110
12165
|
export declare type PolarisRankingQueryNamespace = {
|
|
12111
12166
|
__typename?: 'PolarisRankingQueryNamespace';
|
|
@@ -12292,6 +12347,7 @@ export declare type PolarisView = {
|
|
|
12292
12347
|
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
12293
12348
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
12294
12349
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
12350
|
+
sortMode: PolarisViewSortMode;
|
|
12295
12351
|
};
|
|
12296
12352
|
export declare type PolarisViewJqlArgs = {
|
|
12297
12353
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -12358,6 +12414,11 @@ export declare enum PolarisViewSetType {
|
|
|
12358
12414
|
Single = "SINGLE",
|
|
12359
12415
|
Section = "SECTION"
|
|
12360
12416
|
}
|
|
12417
|
+
export declare enum PolarisViewSortMode {
|
|
12418
|
+
ProjectRank = "PROJECT_RANK",
|
|
12419
|
+
ViewRank = "VIEW_RANK",
|
|
12420
|
+
FieldsSort = "FIELDS_SORT"
|
|
12421
|
+
}
|
|
12361
12422
|
export declare type PolarisViewTableColumnSize = {
|
|
12362
12423
|
__typename?: 'PolarisViewTableColumnSize';
|
|
12363
12424
|
field: PolarisIdeaField;
|
|
@@ -12896,6 +12957,37 @@ export declare type ResolvedPolarisObjectExternalAuth = {
|
|
|
12896
12957
|
displayName: Scalars['String'];
|
|
12897
12958
|
url: Scalars['String'];
|
|
12898
12959
|
};
|
|
12960
|
+
export declare type RoadmapAddItemInput = {
|
|
12961
|
+
projectId: Scalars['ID'];
|
|
12962
|
+
itemTypeId: Scalars['ID'];
|
|
12963
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
12964
|
+
summary: Scalars['String'];
|
|
12965
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
12966
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
12967
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
12968
|
+
rank?: Maybe<RoadmapAddItemRank>;
|
|
12969
|
+
jql?: Maybe<Scalars['String']>;
|
|
12970
|
+
assignee?: Maybe<Scalars['String']>;
|
|
12971
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
12972
|
+
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
12973
|
+
versionIds?: Maybe<Array<Scalars['ID']>>;
|
|
12974
|
+
};
|
|
12975
|
+
export declare type RoadmapAddItemPayload = Payload & {
|
|
12976
|
+
__typename?: 'RoadmapAddItemPayload';
|
|
12977
|
+
success: Scalars['Boolean'];
|
|
12978
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12979
|
+
output?: Maybe<RoadmapAddItemResponse>;
|
|
12980
|
+
};
|
|
12981
|
+
export declare type RoadmapAddItemRank = {
|
|
12982
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
12983
|
+
};
|
|
12984
|
+
export declare type RoadmapAddItemResponse = {
|
|
12985
|
+
__typename?: 'RoadmapAddItemResponse';
|
|
12986
|
+
id: Scalars['ID'];
|
|
12987
|
+
key: Scalars['String'];
|
|
12988
|
+
item?: Maybe<RoadmapItem>;
|
|
12989
|
+
matchesSource: Scalars['Boolean'];
|
|
12990
|
+
};
|
|
12899
12991
|
export declare type RoadmapBoardConfiguration = {
|
|
12900
12992
|
__typename?: 'RoadmapBoardConfiguration';
|
|
12901
12993
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -13163,10 +13255,15 @@ export declare type RoadmapViewSettings = {
|
|
|
13163
13255
|
export declare type RoadmapsMutation = {
|
|
13164
13256
|
__typename?: 'RoadmapsMutation';
|
|
13165
13257
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13258
|
+
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13166
13259
|
};
|
|
13167
13260
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13168
13261
|
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
13169
13262
|
};
|
|
13263
|
+
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13264
|
+
input?: Maybe<RoadmapAddItemInput>;
|
|
13265
|
+
sourceARI?: Maybe<Scalars['ID']>;
|
|
13266
|
+
};
|
|
13170
13267
|
export declare type RoadmapsQuery = {
|
|
13171
13268
|
__typename?: 'RoadmapsQuery';
|
|
13172
13269
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -14917,6 +15014,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
14917
15014
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
14918
15015
|
timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
|
|
14919
15016
|
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
15017
|
+
sortMode?: Maybe<PolarisViewSortMode>;
|
|
14920
15018
|
};
|
|
14921
15019
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
14922
15020
|
__typename?: 'UpdatePolarisViewPayload';
|