@forge/cli-shared 0.0.0-experimental-7c72fec → 0.0.0-experimental-c3d0263
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 +226 -3
- package/out/apps/template.d.ts +4 -2
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +33 -21
- package/out/graphql/graphql-types.d.ts +838 -91
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +56 -1
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/shared/index.d.ts +1 -1
- package/out/shared/index.d.ts.map +1 -1
- package/out/ui/text.d.ts +4 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -1
- package/package.json +4 -4
|
@@ -4,6 +4,12 @@ export declare type Exact<T extends {
|
|
|
4
4
|
}> = {
|
|
5
5
|
[K in keyof T]: T[K];
|
|
6
6
|
};
|
|
7
|
+
export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
8
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
9
|
+
};
|
|
10
|
+
export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
12
|
+
};
|
|
7
13
|
export declare type Scalars = {
|
|
8
14
|
ID: string;
|
|
9
15
|
String: string;
|
|
@@ -186,8 +192,8 @@ export declare type ActivityEdge = {
|
|
|
186
192
|
export declare type ActivityEvent = {
|
|
187
193
|
__typename?: 'ActivityEvent';
|
|
188
194
|
id: Scalars['ID'];
|
|
189
|
-
timestamp
|
|
190
|
-
eventType
|
|
195
|
+
timestamp: Scalars['DateTime'];
|
|
196
|
+
eventType: Scalars['String'];
|
|
191
197
|
actor?: Maybe<User>;
|
|
192
198
|
extension?: Maybe<ActivitiesEventExtension>;
|
|
193
199
|
};
|
|
@@ -205,11 +211,11 @@ export declare enum ActivityEventType {
|
|
|
205
211
|
}
|
|
206
212
|
export declare type ActivityFilter = {
|
|
207
213
|
actors?: Maybe<Array<Scalars['ID']>>;
|
|
214
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
208
215
|
type?: Maybe<ActivitiesFilterType>;
|
|
209
216
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
210
217
|
};
|
|
211
218
|
export declare type ActivityFilterArgs = {
|
|
212
|
-
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
213
219
|
products?: Maybe<Array<Scalars['String']>>;
|
|
214
220
|
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
215
221
|
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
@@ -226,15 +232,15 @@ export declare type ActivityItemEdge = {
|
|
|
226
232
|
export declare type ActivityNode = Node & {
|
|
227
233
|
__typename?: 'ActivityNode';
|
|
228
234
|
id: Scalars['ID'];
|
|
229
|
-
object
|
|
230
|
-
event
|
|
235
|
+
object: ActivityObject;
|
|
236
|
+
event: ActivityEvent;
|
|
231
237
|
};
|
|
232
238
|
export declare type ActivityObject = {
|
|
233
239
|
__typename?: 'ActivityObject';
|
|
234
240
|
id: Scalars['ID'];
|
|
235
|
-
rootContainerId
|
|
236
|
-
type
|
|
237
|
-
product
|
|
241
|
+
rootContainerId: Scalars['ID'];
|
|
242
|
+
type: Scalars['String'];
|
|
243
|
+
product: Scalars['String'];
|
|
238
244
|
subProduct?: Maybe<Scalars['String']>;
|
|
239
245
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
240
246
|
data?: Maybe<ActivityObjectData>;
|
|
@@ -957,6 +963,7 @@ export declare type AuxEffectsInvocationPayload = {
|
|
|
957
963
|
export declare type AuxEffectsResult = {
|
|
958
964
|
__typename?: 'AuxEffectsResult';
|
|
959
965
|
effects: Array<Scalars['JSON']>;
|
|
966
|
+
contextToken?: Maybe<ForgeContextToken>;
|
|
960
967
|
};
|
|
961
968
|
export declare type AvailableEstimations = {
|
|
962
969
|
__typename?: 'AvailableEstimations';
|
|
@@ -1447,9 +1454,16 @@ export declare type CompassAlertEvent = CompassEvent & {
|
|
|
1447
1454
|
displayName: Scalars['String'];
|
|
1448
1455
|
lastUpdated: Scalars['DateTime'];
|
|
1449
1456
|
updateSequenceNumber: Scalars['Long'];
|
|
1450
|
-
alertId: Scalars['ID'];
|
|
1451
1457
|
description?: Maybe<Scalars['String']>;
|
|
1452
1458
|
url?: Maybe<Scalars['URL']>;
|
|
1459
|
+
alertProperties: CompassAlertEventProperties;
|
|
1460
|
+
};
|
|
1461
|
+
export declare type CompassAlertEventProperties = {
|
|
1462
|
+
__typename?: 'CompassAlertEventProperties';
|
|
1463
|
+
id: Scalars['ID'];
|
|
1464
|
+
};
|
|
1465
|
+
export declare type CompassAlertEventPropertiesInput = {
|
|
1466
|
+
id: Scalars['ID'];
|
|
1453
1467
|
};
|
|
1454
1468
|
export declare type CompassAnnouncement = {
|
|
1455
1469
|
__typename?: 'CompassAnnouncement';
|
|
@@ -1465,6 +1479,49 @@ export declare type CompassAnnouncementAcknowledgement = {
|
|
|
1465
1479
|
component?: Maybe<CompassComponent>;
|
|
1466
1480
|
hasAcknowledged?: Maybe<Scalars['Boolean']>;
|
|
1467
1481
|
};
|
|
1482
|
+
export declare type CompassBuildEvent = CompassEvent & {
|
|
1483
|
+
__typename?: 'CompassBuildEvent';
|
|
1484
|
+
eventType: CompassEventType;
|
|
1485
|
+
lastUpdated: Scalars['DateTime'];
|
|
1486
|
+
displayName: Scalars['String'];
|
|
1487
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1488
|
+
url?: Maybe<Scalars['URL']>;
|
|
1489
|
+
description?: Maybe<Scalars['String']>;
|
|
1490
|
+
buildProperties: CompassBuildEventProperties;
|
|
1491
|
+
};
|
|
1492
|
+
export declare type CompassBuildEventPipeline = {
|
|
1493
|
+
__typename?: 'CompassBuildEventPipeline';
|
|
1494
|
+
pipelineId: Scalars['String'];
|
|
1495
|
+
url: Scalars['String'];
|
|
1496
|
+
displayName: Scalars['String'];
|
|
1497
|
+
};
|
|
1498
|
+
export declare type CompassBuildEventPipelineInput = {
|
|
1499
|
+
pipelineId: Scalars['String'];
|
|
1500
|
+
url: Scalars['String'];
|
|
1501
|
+
displayName: Scalars['String'];
|
|
1502
|
+
};
|
|
1503
|
+
export declare type CompassBuildEventProperties = {
|
|
1504
|
+
__typename?: 'CompassBuildEventProperties';
|
|
1505
|
+
state: CompassBuildEventState;
|
|
1506
|
+
pipeline?: Maybe<CompassBuildEventPipeline>;
|
|
1507
|
+
startedAt: Scalars['DateTime'];
|
|
1508
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
1509
|
+
};
|
|
1510
|
+
export declare type CompassBuildEventPropertiesInput = {
|
|
1511
|
+
state: CompassBuildEventState;
|
|
1512
|
+
pipeline: CompassBuildEventPipelineInput;
|
|
1513
|
+
startedAt: Scalars['DateTime'];
|
|
1514
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
1515
|
+
};
|
|
1516
|
+
export declare enum CompassBuildEventState {
|
|
1517
|
+
InProgress = "IN_PROGRESS",
|
|
1518
|
+
Successful = "SUCCESSFUL",
|
|
1519
|
+
Cancelled = "CANCELLED",
|
|
1520
|
+
Failed = "FAILED",
|
|
1521
|
+
Error = "ERROR",
|
|
1522
|
+
TimedOut = "TIMED_OUT",
|
|
1523
|
+
Unknown = "UNKNOWN"
|
|
1524
|
+
}
|
|
1468
1525
|
export declare type CompassCatalogMutationApi = {
|
|
1469
1526
|
__typename?: 'CompassCatalogMutationApi';
|
|
1470
1527
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
@@ -1512,6 +1569,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1512
1569
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1513
1570
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1514
1571
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1572
|
+
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1515
1573
|
};
|
|
1516
1574
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1517
1575
|
cloudId: Scalars['ID'];
|
|
@@ -1658,6 +1716,9 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1658
1716
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1659
1717
|
input: CompassInsertMetricValueInput;
|
|
1660
1718
|
};
|
|
1719
|
+
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1720
|
+
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1721
|
+
};
|
|
1661
1722
|
export declare type CompassCatalogQueryApi = {
|
|
1662
1723
|
__typename?: 'CompassCatalogQueryApi';
|
|
1663
1724
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1797,11 +1858,11 @@ export declare enum CompassComponentType {
|
|
|
1797
1858
|
export declare type CompassCreateAlertEventInput = {
|
|
1798
1859
|
displayName: Scalars['String'];
|
|
1799
1860
|
lastUpdated: Scalars['DateTime'];
|
|
1800
|
-
alertId: Scalars['ID'];
|
|
1801
1861
|
updateSequenceNumber: Scalars['Long'];
|
|
1802
|
-
description
|
|
1803
|
-
url
|
|
1862
|
+
description: Scalars['String'];
|
|
1863
|
+
url: Scalars['URL'];
|
|
1804
1864
|
externalEventSourceId: Scalars['ID'];
|
|
1865
|
+
alertProperties: CompassAlertEventPropertiesInput;
|
|
1805
1866
|
};
|
|
1806
1867
|
export declare type CompassCreateAnnouncementInput = {
|
|
1807
1868
|
componentId: Scalars['ID'];
|
|
@@ -1815,27 +1876,38 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1815
1876
|
success: Scalars['Boolean'];
|
|
1816
1877
|
errors?: Maybe<Array<MutationError>>;
|
|
1817
1878
|
};
|
|
1879
|
+
export declare type CompassCreateBuildEventInput = {
|
|
1880
|
+
displayName: Scalars['String'];
|
|
1881
|
+
lastUpdated: Scalars['DateTime'];
|
|
1882
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1883
|
+
description: Scalars['String'];
|
|
1884
|
+
url: Scalars['URL'];
|
|
1885
|
+
externalEventSourceId: Scalars['ID'];
|
|
1886
|
+
buildProperties: CompassBuildEventPropertiesInput;
|
|
1887
|
+
};
|
|
1818
1888
|
export declare type CompassCreateCustomEventInput = {
|
|
1819
1889
|
displayName: Scalars['String'];
|
|
1820
1890
|
lastUpdated: Scalars['DateTime'];
|
|
1821
|
-
customEventId: Scalars['ID'];
|
|
1822
1891
|
updateSequenceNumber: Scalars['Long'];
|
|
1823
|
-
description
|
|
1824
|
-
url
|
|
1825
|
-
icon: CompassCustomEventIcon;
|
|
1892
|
+
description: Scalars['String'];
|
|
1893
|
+
url: Scalars['URL'];
|
|
1826
1894
|
externalEventSourceId: Scalars['ID'];
|
|
1895
|
+
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1827
1896
|
};
|
|
1828
1897
|
export declare type CompassCreateDeploymentEventInput = {
|
|
1829
|
-
deploymentSequenceNumber: Scalars['Long'];
|
|
1830
1898
|
updateSequenceNumber: Scalars['Long'];
|
|
1831
1899
|
displayName: Scalars['String'];
|
|
1832
1900
|
url: Scalars['URL'];
|
|
1833
1901
|
description: Scalars['String'];
|
|
1834
|
-
state: CompassDeploymentEventState;
|
|
1835
1902
|
lastUpdated: Scalars['DateTime'];
|
|
1903
|
+
externalEventSourceId: Scalars['ID'];
|
|
1904
|
+
deploymentProperties: CompassCreateDeploymentEventPropertiesInput;
|
|
1905
|
+
};
|
|
1906
|
+
export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
1907
|
+
sequenceNumber: Scalars['Long'];
|
|
1908
|
+
state: CompassDeploymentEventState;
|
|
1836
1909
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
1837
1910
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
1838
|
-
externalEventSourceId: Scalars['ID'];
|
|
1839
1911
|
};
|
|
1840
1912
|
export declare type CompassCreateEventInput = {
|
|
1841
1913
|
cloudId: Scalars['ID'];
|
|
@@ -1849,32 +1921,37 @@ export declare type CompassCreateEventsPayload = Payload & {
|
|
|
1849
1921
|
export declare type CompassCreateFlagEventInput = {
|
|
1850
1922
|
displayName: Scalars['String'];
|
|
1851
1923
|
lastUpdated: Scalars['DateTime'];
|
|
1852
|
-
flagId: Scalars['ID'];
|
|
1853
1924
|
updateSequenceNumber: Scalars['Long'];
|
|
1854
|
-
description
|
|
1855
|
-
url
|
|
1856
|
-
status?: Maybe<Scalars['String']>;
|
|
1925
|
+
description: Scalars['String'];
|
|
1926
|
+
url: Scalars['URL'];
|
|
1857
1927
|
externalEventSourceId: Scalars['ID'];
|
|
1928
|
+
flagProperties: CompassCreateFlagEventPropertiesInput;
|
|
1929
|
+
};
|
|
1930
|
+
export declare type CompassCreateFlagEventPropertiesInput = {
|
|
1931
|
+
id: Scalars['ID'];
|
|
1932
|
+
status?: Maybe<Scalars['String']>;
|
|
1858
1933
|
};
|
|
1859
1934
|
export declare type CompassCreateIncidentEventInput = {
|
|
1860
1935
|
displayName: Scalars['String'];
|
|
1861
1936
|
lastUpdated: Scalars['DateTime'];
|
|
1862
|
-
incidentId: Scalars['ID'];
|
|
1863
1937
|
updateSequenceNumber: Scalars['Long'];
|
|
1864
|
-
description
|
|
1865
|
-
url
|
|
1866
|
-
state: CompassIncidentEventState;
|
|
1938
|
+
description: Scalars['String'];
|
|
1939
|
+
url: Scalars['URL'];
|
|
1867
1940
|
externalEventSourceId: Scalars['ID'];
|
|
1941
|
+
incidentProperties: CompassCreateIncidentEventPropertiesInput;
|
|
1942
|
+
};
|
|
1943
|
+
export declare type CompassCreateIncidentEventPropertiesInput = {
|
|
1944
|
+
id: Scalars['ID'];
|
|
1945
|
+
state: CompassIncidentEventState;
|
|
1868
1946
|
};
|
|
1869
1947
|
export declare type CompassCreateLifecycleEventInput = {
|
|
1870
1948
|
displayName: Scalars['String'];
|
|
1871
1949
|
lastUpdated: Scalars['DateTime'];
|
|
1872
|
-
lifecycleId: Scalars['ID'];
|
|
1873
1950
|
updateSequenceNumber: Scalars['Long'];
|
|
1874
|
-
description
|
|
1875
|
-
url
|
|
1876
|
-
stage: CompassLifecycleEventStage;
|
|
1951
|
+
description: Scalars['String'];
|
|
1952
|
+
url: Scalars['URL'];
|
|
1877
1953
|
externalEventSourceId: Scalars['ID'];
|
|
1954
|
+
lifecycleProperties: CompassLifecycleEventInputProperties;
|
|
1878
1955
|
};
|
|
1879
1956
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
1880
1957
|
cloudId: Scalars['ID'];
|
|
@@ -1932,16 +2009,24 @@ export declare type CompassCustomEvent = CompassEvent & {
|
|
|
1932
2009
|
displayName: Scalars['String'];
|
|
1933
2010
|
lastUpdated: Scalars['DateTime'];
|
|
1934
2011
|
updateSequenceNumber: Scalars['Long'];
|
|
1935
|
-
customEventId: Scalars['ID'];
|
|
1936
2012
|
description?: Maybe<Scalars['String']>;
|
|
1937
2013
|
url?: Maybe<Scalars['URL']>;
|
|
1938
|
-
|
|
2014
|
+
customEventProperties: CompassCustomEventProperties;
|
|
1939
2015
|
};
|
|
1940
2016
|
export declare enum CompassCustomEventIcon {
|
|
1941
2017
|
Info = "INFO",
|
|
1942
2018
|
Warning = "WARNING",
|
|
1943
2019
|
Checkpoint = "CHECKPOINT"
|
|
1944
2020
|
}
|
|
2021
|
+
export declare type CompassCustomEventProperties = {
|
|
2022
|
+
__typename?: 'CompassCustomEventProperties';
|
|
2023
|
+
id: Scalars['ID'];
|
|
2024
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
2025
|
+
};
|
|
2026
|
+
export declare type CompassCustomEventPropertiesInput = {
|
|
2027
|
+
id: Scalars['ID'];
|
|
2028
|
+
icon: CompassCustomEventIcon;
|
|
2029
|
+
};
|
|
1945
2030
|
export declare type CompassDeleteAnnouncementInput = {
|
|
1946
2031
|
cloudId: Scalars['ID'];
|
|
1947
2032
|
id: Scalars['ID'];
|
|
@@ -1995,6 +2080,7 @@ export declare type CompassDeploymentEvent = CompassEvent & {
|
|
|
1995
2080
|
state?: Maybe<CompassDeploymentEventState>;
|
|
1996
2081
|
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
1997
2082
|
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2083
|
+
deploymentProperties: CompassDeploymentEventProperties;
|
|
1998
2084
|
};
|
|
1999
2085
|
export declare type CompassDeploymentEventEnvironment = {
|
|
2000
2086
|
__typename?: 'CompassDeploymentEventEnvironment';
|
|
@@ -2025,6 +2111,13 @@ export declare type CompassDeploymentEventPipelineInput = {
|
|
|
2025
2111
|
url: Scalars['String'];
|
|
2026
2112
|
displayName: Scalars['String'];
|
|
2027
2113
|
};
|
|
2114
|
+
export declare type CompassDeploymentEventProperties = {
|
|
2115
|
+
__typename?: 'CompassDeploymentEventProperties';
|
|
2116
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
2117
|
+
state?: Maybe<CompassDeploymentEventState>;
|
|
2118
|
+
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2119
|
+
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2120
|
+
};
|
|
2028
2121
|
export declare enum CompassDeploymentEventState {
|
|
2029
2122
|
Pending = "PENDING",
|
|
2030
2123
|
InProgress = "IN_PROGRESS",
|
|
@@ -2068,6 +2161,7 @@ export declare type CompassEventEdge = {
|
|
|
2068
2161
|
};
|
|
2069
2162
|
export declare type CompassEventInput = {
|
|
2070
2163
|
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2164
|
+
build?: Maybe<CompassCreateBuildEventInput>;
|
|
2071
2165
|
incident?: Maybe<CompassCreateIncidentEventInput>;
|
|
2072
2166
|
flag?: Maybe<CompassCreateFlagEventInput>;
|
|
2073
2167
|
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
@@ -2081,6 +2175,7 @@ export declare type CompassEventTimeParameters = {
|
|
|
2081
2175
|
};
|
|
2082
2176
|
export declare enum CompassEventType {
|
|
2083
2177
|
Deployment = "DEPLOYMENT",
|
|
2178
|
+
Build = "BUILD",
|
|
2084
2179
|
Incident = "INCIDENT",
|
|
2085
2180
|
Flag = "FLAG",
|
|
2086
2181
|
Alert = "ALERT",
|
|
@@ -2140,9 +2235,13 @@ export declare type CompassFlagEvent = CompassEvent & {
|
|
|
2140
2235
|
displayName: Scalars['String'];
|
|
2141
2236
|
lastUpdated: Scalars['DateTime'];
|
|
2142
2237
|
updateSequenceNumber: Scalars['Long'];
|
|
2143
|
-
flagId: Scalars['ID'];
|
|
2144
2238
|
description?: Maybe<Scalars['String']>;
|
|
2145
2239
|
url?: Maybe<Scalars['URL']>;
|
|
2240
|
+
flagProperties: CompassFlagEventProperties;
|
|
2241
|
+
};
|
|
2242
|
+
export declare type CompassFlagEventProperties = {
|
|
2243
|
+
__typename?: 'CompassFlagEventProperties';
|
|
2244
|
+
id: Scalars['ID'];
|
|
2146
2245
|
status?: Maybe<Scalars['String']>;
|
|
2147
2246
|
};
|
|
2148
2247
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
@@ -2202,9 +2301,13 @@ export declare type CompassIncidentEvent = CompassEvent & {
|
|
|
2202
2301
|
displayName: Scalars['String'];
|
|
2203
2302
|
lastUpdated: Scalars['DateTime'];
|
|
2204
2303
|
updateSequenceNumber: Scalars['Long'];
|
|
2205
|
-
incidentId: Scalars['ID'];
|
|
2206
2304
|
description?: Maybe<Scalars['String']>;
|
|
2207
2305
|
url?: Maybe<Scalars['URL']>;
|
|
2306
|
+
incidentProperties: CompassIncidentEventProperties;
|
|
2307
|
+
};
|
|
2308
|
+
export declare type CompassIncidentEventProperties = {
|
|
2309
|
+
__typename?: 'CompassIncidentEventProperties';
|
|
2310
|
+
id: Scalars['ID'];
|
|
2208
2311
|
state?: Maybe<CompassIncidentEventState>;
|
|
2209
2312
|
};
|
|
2210
2313
|
export declare enum CompassIncidentEventState {
|
|
@@ -2229,10 +2332,18 @@ export declare type CompassLifecycleEvent = CompassEvent & {
|
|
|
2229
2332
|
displayName: Scalars['String'];
|
|
2230
2333
|
lastUpdated: Scalars['DateTime'];
|
|
2231
2334
|
updateSequenceNumber: Scalars['Long'];
|
|
2232
|
-
lifecycleId: Scalars['ID'];
|
|
2233
|
-
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2234
2335
|
description?: Maybe<Scalars['String']>;
|
|
2235
2336
|
url?: Maybe<Scalars['URL']>;
|
|
2337
|
+
lifecycleProperties: CompassLifecycleEventProperties;
|
|
2338
|
+
};
|
|
2339
|
+
export declare type CompassLifecycleEventInputProperties = {
|
|
2340
|
+
id: Scalars['ID'];
|
|
2341
|
+
stage: CompassLifecycleEventStage;
|
|
2342
|
+
};
|
|
2343
|
+
export declare type CompassLifecycleEventProperties = {
|
|
2344
|
+
__typename?: 'CompassLifecycleEventProperties';
|
|
2345
|
+
id: Scalars['ID'];
|
|
2346
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2236
2347
|
};
|
|
2237
2348
|
export declare enum CompassLifecycleEventStage {
|
|
2238
2349
|
PreRelease = "PRE_RELEASE",
|
|
@@ -2554,6 +2665,15 @@ export declare type CompassStarredComponentQuery = {
|
|
|
2554
2665
|
after?: Maybe<Scalars['String']>;
|
|
2555
2666
|
};
|
|
2556
2667
|
export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
|
|
2668
|
+
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
2669
|
+
cloudId: Scalars['ID'];
|
|
2670
|
+
forgeAppId: Scalars['ID'];
|
|
2671
|
+
};
|
|
2672
|
+
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
2673
|
+
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
2674
|
+
success: Scalars['Boolean'];
|
|
2675
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2676
|
+
};
|
|
2557
2677
|
export declare type CompassTeamCheckin = {
|
|
2558
2678
|
__typename?: 'CompassTeamCheckin';
|
|
2559
2679
|
teamId?: Maybe<Scalars['ID']>;
|
|
@@ -2699,7 +2819,7 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2699
2819
|
node?: Maybe<Scalars['Int']>;
|
|
2700
2820
|
};
|
|
2701
2821
|
export declare type ConfluenceAbstractPage = {
|
|
2702
|
-
id
|
|
2822
|
+
id: Scalars['ID'];
|
|
2703
2823
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2704
2824
|
space?: Maybe<ConfluenceSpace>;
|
|
2705
2825
|
status?: Maybe<ConfluenceContentStatus>;
|
|
@@ -2709,7 +2829,7 @@ export declare type ConfluenceAbstractPage = {
|
|
|
2709
2829
|
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
2710
2830
|
__typename?: 'ConfluenceBlogPost';
|
|
2711
2831
|
blogPostId: Scalars['ID'];
|
|
2712
|
-
id
|
|
2832
|
+
id: Scalars['ID'];
|
|
2713
2833
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2714
2834
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2715
2835
|
space?: Maybe<ConfluenceSpace>;
|
|
@@ -2727,7 +2847,7 @@ export declare type ConfluenceComment = {
|
|
|
2727
2847
|
author?: Maybe<ConfluenceUserInfo>;
|
|
2728
2848
|
commentId?: Maybe<Scalars['ID']>;
|
|
2729
2849
|
container?: Maybe<ConfluenceAbstractPage>;
|
|
2730
|
-
id
|
|
2850
|
+
id: Scalars['ID'];
|
|
2731
2851
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
2732
2852
|
name?: Maybe<Scalars['String']>;
|
|
2733
2853
|
};
|
|
@@ -2822,6 +2942,17 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2822
2942
|
errors?: Maybe<Array<MutationError>>;
|
|
2823
2943
|
success: Scalars['Boolean'];
|
|
2824
2944
|
};
|
|
2945
|
+
export declare type ConfluenceCreateUserPropertyInput = {
|
|
2946
|
+
key: Scalars['String'];
|
|
2947
|
+
userId: Scalars['String'];
|
|
2948
|
+
value: Scalars['String'];
|
|
2949
|
+
};
|
|
2950
|
+
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
2951
|
+
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
2952
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
2953
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2954
|
+
success: Scalars['Boolean'];
|
|
2955
|
+
};
|
|
2825
2956
|
export declare type ConfluenceDeleteBlogPostInput = {
|
|
2826
2957
|
id: Scalars['ID'];
|
|
2827
2958
|
status: ConfluenceMutationContentStatus;
|
|
@@ -2840,6 +2971,14 @@ export declare type ConfluenceDeletePagePayload = Payload & {
|
|
|
2840
2971
|
errors?: Maybe<Array<MutationError>>;
|
|
2841
2972
|
success: Scalars['Boolean'];
|
|
2842
2973
|
};
|
|
2974
|
+
export declare type ConfluenceDeleteUserPropertyInput = {
|
|
2975
|
+
id: Scalars['ID'];
|
|
2976
|
+
};
|
|
2977
|
+
export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
2978
|
+
__typename?: 'ConfluenceDeleteUserPropertyPayload';
|
|
2979
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2980
|
+
success: Scalars['Boolean'];
|
|
2981
|
+
};
|
|
2843
2982
|
export declare type ConfluenceInlineTask = {
|
|
2844
2983
|
__typename?: 'ConfluenceInlineTask';
|
|
2845
2984
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2850,7 +2989,7 @@ export declare type ConfluenceInlineTask = {
|
|
|
2850
2989
|
createdOn?: Maybe<Scalars['String']>;
|
|
2851
2990
|
dueOn?: Maybe<Scalars['String']>;
|
|
2852
2991
|
globalId?: Maybe<Scalars['ID']>;
|
|
2853
|
-
id
|
|
2992
|
+
id: Scalars['ID'];
|
|
2854
2993
|
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
2855
2994
|
taskId?: Maybe<Scalars['ID']>;
|
|
2856
2995
|
updatedOn?: Maybe<Scalars['String']>;
|
|
@@ -2882,50 +3021,76 @@ export declare type ConfluenceMutationApi = {
|
|
|
2882
3021
|
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
2883
3022
|
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2884
3023
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3024
|
+
confluenceCreateUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3025
|
+
confluenceUpdateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3026
|
+
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
2885
3027
|
};
|
|
2886
3028
|
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2887
3029
|
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
3030
|
+
cloudId: Scalars['ID'];
|
|
2888
3031
|
};
|
|
2889
3032
|
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
2890
3033
|
cloudId: Scalars['ID'];
|
|
2891
3034
|
pageInput: ConfluenceCreatePageInput;
|
|
2892
3035
|
};
|
|
2893
3036
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
3037
|
+
cloudId: Scalars['ID'];
|
|
2894
3038
|
input: ConfluenceCreateSpaceInput;
|
|
2895
3039
|
};
|
|
2896
3040
|
export declare type ConfluenceMutationApiConfluenceDeleteBlogPostArgs = {
|
|
3041
|
+
cloudId: Scalars['ID'];
|
|
2897
3042
|
deletBlogPostInput: ConfluenceDeleteBlogPostInput;
|
|
2898
3043
|
};
|
|
2899
3044
|
export declare type ConfluenceMutationApiConfluenceDeletePageArgs = {
|
|
3045
|
+
cloudId: Scalars['ID'];
|
|
2900
3046
|
deletPageInput: ConfluenceDeletePageInput;
|
|
2901
3047
|
};
|
|
2902
3048
|
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
3049
|
+
cloudId: Scalars['ID'];
|
|
2903
3050
|
publishBlogPostInput: ConfluencePublishBlogPostInput;
|
|
2904
3051
|
};
|
|
2905
3052
|
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
3053
|
+
cloudId: Scalars['ID'];
|
|
2906
3054
|
publishPageInput: ConfluencePublishPageInput;
|
|
2907
3055
|
};
|
|
2908
3056
|
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
3057
|
+
cloudId: Scalars['ID'];
|
|
2909
3058
|
purgeBlogPostInput: ConfluencePurgeBlogPostInput;
|
|
2910
3059
|
};
|
|
2911
3060
|
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
3061
|
+
cloudId: Scalars['ID'];
|
|
2912
3062
|
purgePageInput: ConfluencePurgePageInput;
|
|
2913
3063
|
};
|
|
2914
3064
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
3065
|
+
cloudId: Scalars['ID'];
|
|
2915
3066
|
updateBlogPostInput: ConfluenceUpdateCurrentBlogPostInput;
|
|
2916
3067
|
};
|
|
2917
3068
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
3069
|
+
cloudId: Scalars['ID'];
|
|
2918
3070
|
updatePageInput: ConfluenceUpdateCurrentPageInput;
|
|
2919
3071
|
};
|
|
2920
3072
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
3073
|
+
cloudId: Scalars['ID'];
|
|
2921
3074
|
updateBlogPostInput: ConfluenceUpdateDraftBlogPostInput;
|
|
2922
3075
|
};
|
|
2923
3076
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
3077
|
+
cloudId: Scalars['ID'];
|
|
2924
3078
|
updatePageInput: ConfluenceUpdateDraftPageInput;
|
|
2925
3079
|
};
|
|
2926
3080
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
3081
|
+
cloudId: Scalars['ID'];
|
|
2927
3082
|
input: ConfluenceUpdateSpaceInput;
|
|
2928
3083
|
};
|
|
3084
|
+
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
3085
|
+
cloudId: Scalars['String'];
|
|
3086
|
+
input: ConfluenceCreateUserPropertyInput;
|
|
3087
|
+
};
|
|
3088
|
+
export declare type ConfluenceMutationApiConfluenceUpdateValueUserPropertyArgs = {
|
|
3089
|
+
input: ConfluenceUpdateValueUserPropertyInput;
|
|
3090
|
+
};
|
|
3091
|
+
export declare type ConfluenceMutationApiConfluenceDeleteUserPropertyArgs = {
|
|
3092
|
+
input: ConfluenceDeleteUserPropertyInput;
|
|
3093
|
+
};
|
|
2929
3094
|
export declare enum ConfluenceMutationContentStatus {
|
|
2930
3095
|
Current = "CURRENT",
|
|
2931
3096
|
Draft = "DRAFT"
|
|
@@ -2963,7 +3128,7 @@ export declare enum ConfluenceOperationTarget {
|
|
|
2963
3128
|
}
|
|
2964
3129
|
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2965
3130
|
__typename?: 'ConfluencePage';
|
|
2966
|
-
id
|
|
3131
|
+
id: Scalars['ID'];
|
|
2967
3132
|
links?: Maybe<ConfluencePageLinks>;
|
|
2968
3133
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2969
3134
|
pageId: Scalars['ID'];
|
|
@@ -3016,33 +3181,23 @@ export declare type ConfluencePurgePagePayload = Payload & {
|
|
|
3016
3181
|
export declare type ConfluenceQueryApi = {
|
|
3017
3182
|
__typename?: 'ConfluenceQueryApi';
|
|
3018
3183
|
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3019
|
-
confluenceBlogPostWithFilters?: Maybe<ConfluenceBlogPost>;
|
|
3020
3184
|
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3021
|
-
confluenceBlogPostsWithFilters?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3022
3185
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
3023
3186
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3024
3187
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
3025
3188
|
confluencePage?: Maybe<ConfluencePage>;
|
|
3026
|
-
confluencePageWithFilters?: Maybe<ConfluencePage>;
|
|
3027
3189
|
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3028
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3029
3190
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
3030
3191
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3192
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3193
|
+
confluenceUserProperties: Array<Maybe<ConfluenceUserProperty>>;
|
|
3031
3194
|
};
|
|
3032
3195
|
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3033
3196
|
id: Scalars['ID'];
|
|
3034
3197
|
};
|
|
3035
|
-
export declare type ConfluenceQueryApiConfluenceBlogPostWithFiltersArgs = {
|
|
3036
|
-
id: Scalars['ID'];
|
|
3037
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3038
|
-
};
|
|
3039
3198
|
export declare type ConfluenceQueryApiConfluenceBlogPostsArgs = {
|
|
3040
3199
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3041
3200
|
};
|
|
3042
|
-
export declare type ConfluenceQueryApiConfluenceBlogPostsWithFiltersArgs = {
|
|
3043
|
-
ids: Array<Maybe<Scalars['ID']>>;
|
|
3044
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3045
|
-
};
|
|
3046
3201
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
3047
3202
|
id: Scalars['ID'];
|
|
3048
3203
|
};
|
|
@@ -3055,36 +3210,34 @@ export declare type ConfluenceQueryApiConfluenceInlineTaskArgs = {
|
|
|
3055
3210
|
export declare type ConfluenceQueryApiConfluencePageArgs = {
|
|
3056
3211
|
id: Scalars['ID'];
|
|
3057
3212
|
};
|
|
3058
|
-
export declare type ConfluenceQueryApiConfluencePageWithFiltersArgs = {
|
|
3059
|
-
id: Scalars['ID'];
|
|
3060
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3061
|
-
};
|
|
3062
3213
|
export declare type ConfluenceQueryApiConfluencePagesArgs = {
|
|
3063
3214
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3064
3215
|
};
|
|
3065
|
-
export declare type ConfluenceQueryApiConfluencePagesWithFiltersArgs = {
|
|
3066
|
-
ids: Array<Maybe<Scalars['ID']>>;
|
|
3067
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3068
|
-
};
|
|
3069
3216
|
export declare type ConfluenceQueryApiConfluenceSpaceArgs = {
|
|
3070
3217
|
id: Scalars['ID'];
|
|
3071
3218
|
};
|
|
3072
3219
|
export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
3073
3220
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3074
3221
|
};
|
|
3222
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertyArgs = {
|
|
3223
|
+
id: Scalars['ID'];
|
|
3224
|
+
};
|
|
3225
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertiesArgs = {
|
|
3226
|
+
ids: Array<Scalars['ID']>;
|
|
3227
|
+
};
|
|
3075
3228
|
export declare type ConfluenceSpace = {
|
|
3076
3229
|
__typename?: 'ConfluenceSpace';
|
|
3077
3230
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
3078
3231
|
history?: Maybe<ConfluenceSpaceHistory>;
|
|
3079
3232
|
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
3080
3233
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
3081
|
-
id
|
|
3234
|
+
id: Scalars['ID'];
|
|
3082
3235
|
key?: Maybe<Scalars['String']>;
|
|
3083
3236
|
links?: Maybe<ConfluenceSpaceLinks>;
|
|
3084
3237
|
metadata?: Maybe<ConfluenceSpaceMetadata>;
|
|
3085
3238
|
name?: Maybe<Scalars['String']>;
|
|
3086
3239
|
operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
|
|
3087
|
-
spaceId
|
|
3240
|
+
spaceId: Scalars['ID'];
|
|
3088
3241
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
3089
3242
|
type?: Maybe<ConfluenceSpaceType>;
|
|
3090
3243
|
};
|
|
@@ -3181,11 +3334,30 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
3181
3334
|
errors?: Maybe<Array<MutationError>>;
|
|
3182
3335
|
success: Scalars['Boolean'];
|
|
3183
3336
|
};
|
|
3337
|
+
export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
3338
|
+
id: Scalars['ID'];
|
|
3339
|
+
value: Scalars['String'];
|
|
3340
|
+
};
|
|
3341
|
+
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3342
|
+
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3343
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3344
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3345
|
+
success: Scalars['Boolean'];
|
|
3346
|
+
};
|
|
3184
3347
|
export declare type ConfluenceUserInfo = {
|
|
3185
3348
|
__typename?: 'ConfluenceUserInfo';
|
|
3186
3349
|
user?: Maybe<User>;
|
|
3187
3350
|
personalSpace?: Maybe<ConfluenceSpace>;
|
|
3188
3351
|
};
|
|
3352
|
+
export declare type ConfluenceUserProperty = {
|
|
3353
|
+
__typename?: 'ConfluenceUserProperty';
|
|
3354
|
+
createdDate: Scalars['String'];
|
|
3355
|
+
id: Scalars['ID'];
|
|
3356
|
+
key: Scalars['String'];
|
|
3357
|
+
lastModifiedDate: Scalars['String'];
|
|
3358
|
+
propertyId: Scalars['ID'];
|
|
3359
|
+
value: Scalars['String'];
|
|
3360
|
+
};
|
|
3189
3361
|
export declare type ConnectAppScope = {
|
|
3190
3362
|
__typename?: 'ConnectAppScope';
|
|
3191
3363
|
scopeId: Scalars['ID'];
|
|
@@ -3779,6 +3951,7 @@ export declare type CreateDevOpsServiceRelationshipPayload = Payload & {
|
|
|
3779
3951
|
serviceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
3780
3952
|
};
|
|
3781
3953
|
export declare type CreateEventSourceInput = {
|
|
3954
|
+
cloudId: Scalars['ID'];
|
|
3782
3955
|
externalEventSourceId: Scalars['ID'];
|
|
3783
3956
|
eventType: CompassEventType;
|
|
3784
3957
|
};
|
|
@@ -4234,6 +4407,7 @@ export declare type DeleteDevOpsServiceRelationshipPayload = Payload & {
|
|
|
4234
4407
|
errors?: Maybe<Array<MutationError>>;
|
|
4235
4408
|
};
|
|
4236
4409
|
export declare type DeleteEventSourceInput = {
|
|
4410
|
+
cloudId: Scalars['ID'];
|
|
4237
4411
|
externalEventSourceId: Scalars['ID'];
|
|
4238
4412
|
eventType: CompassEventType;
|
|
4239
4413
|
};
|
|
@@ -4861,7 +5035,16 @@ export declare type DevOpsTool = {
|
|
|
4861
5035
|
name: Scalars['String'];
|
|
4862
5036
|
productKey: Scalars['String'];
|
|
4863
5037
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5038
|
+
group: DevOpsToolGroup;
|
|
5039
|
+
supportsContainers: Scalars['Boolean'];
|
|
5040
|
+
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
4864
5041
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5042
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5043
|
+
};
|
|
5044
|
+
export declare type DevOpsToolNamespacesArgs = {
|
|
5045
|
+
query?: Maybe<Scalars['String']>;
|
|
5046
|
+
first?: Maybe<Scalars['Int']>;
|
|
5047
|
+
after?: Maybe<Scalars['String']>;
|
|
4865
5048
|
};
|
|
4866
5049
|
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
4867
5050
|
__typename?: 'DevOpsToolAvailable';
|
|
@@ -4869,6 +5052,9 @@ export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
|
4869
5052
|
name: Scalars['String'];
|
|
4870
5053
|
productKey: Scalars['String'];
|
|
4871
5054
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5055
|
+
group: DevOpsToolGroup;
|
|
5056
|
+
supportsContainers: Scalars['Boolean'];
|
|
5057
|
+
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
4872
5058
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4873
5059
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
4874
5060
|
};
|
|
@@ -4881,11 +5067,25 @@ export declare type DevOpsToolAvatar = {
|
|
|
4881
5067
|
__typename?: 'DevOpsToolAvatar';
|
|
4882
5068
|
url: Scalars['URL'];
|
|
4883
5069
|
};
|
|
5070
|
+
export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpecification & {
|
|
5071
|
+
__typename?: 'DevOpsToolBitbucketCreate';
|
|
5072
|
+
requestId: Scalars['String'];
|
|
5073
|
+
workspace: Scalars['String'];
|
|
5074
|
+
slug?: Maybe<Scalars['String']>;
|
|
5075
|
+
name: Scalars['String'];
|
|
5076
|
+
};
|
|
5077
|
+
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
4884
5078
|
export declare enum DevOpsToolCategory {
|
|
4885
5079
|
Development = "DEVELOPMENT",
|
|
4886
5080
|
Documentation = "DOCUMENTATION",
|
|
4887
5081
|
Operations = "OPERATIONS"
|
|
4888
5082
|
}
|
|
5083
|
+
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5084
|
+
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5085
|
+
requestId: Scalars['String'];
|
|
5086
|
+
key: Scalars['String'];
|
|
5087
|
+
name: Scalars['String'];
|
|
5088
|
+
};
|
|
4889
5089
|
export declare type DevOpsToolConnection = {
|
|
4890
5090
|
__typename?: 'DevOpsToolConnection';
|
|
4891
5091
|
edges?: Maybe<Array<Maybe<DevOpsToolEdge>>>;
|
|
@@ -4907,17 +5107,53 @@ export declare type DevOpsToolContainer = Node & {
|
|
|
4907
5107
|
url: Scalars['String'];
|
|
4908
5108
|
underlyingId: Scalars['String'];
|
|
4909
5109
|
};
|
|
5110
|
+
export declare type DevOpsToolContainerCanBeCreated = {
|
|
5111
|
+
__typename?: 'DevOpsToolContainerCanBeCreated';
|
|
5112
|
+
containerCreationSpecification?: Maybe<DevOpsToolContainerCreationSpecification>;
|
|
5113
|
+
};
|
|
4910
5114
|
export declare type DevOpsToolContainerConnection = {
|
|
4911
5115
|
__typename?: 'DevOpsToolContainerConnection';
|
|
4912
5116
|
edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
|
|
4913
5117
|
nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
|
|
4914
5118
|
pageInfo: PageInfo;
|
|
4915
5119
|
};
|
|
5120
|
+
export declare type DevOpsToolContainerCreationSpecification = {
|
|
5121
|
+
requestId: Scalars['String'];
|
|
5122
|
+
};
|
|
4916
5123
|
export declare type DevOpsToolContainerEdge = {
|
|
4917
5124
|
__typename?: 'DevOpsToolContainerEdge';
|
|
4918
5125
|
cursor: Scalars['String'];
|
|
4919
5126
|
node?: Maybe<DevOpsToolContainer>;
|
|
4920
5127
|
};
|
|
5128
|
+
export declare type DevOpsToolContainerIntegration = {
|
|
5129
|
+
containerType: Scalars['String'];
|
|
5130
|
+
};
|
|
5131
|
+
export declare type DevOpsToolContainerIntegrationApp = DevOpsToolContainerIntegration & {
|
|
5132
|
+
__typename?: 'DevOpsToolContainerIntegrationApp';
|
|
5133
|
+
containerType: Scalars['String'];
|
|
5134
|
+
appKey: Scalars['String'];
|
|
5135
|
+
installed: Scalars['Boolean'];
|
|
5136
|
+
oauthUrl?: Maybe<Scalars['String']>;
|
|
5137
|
+
};
|
|
5138
|
+
export declare type DevOpsToolContainerIntegrationProduct = DevOpsToolContainerIntegration & {
|
|
5139
|
+
__typename?: 'DevOpsToolContainerIntegrationProduct';
|
|
5140
|
+
containerType: Scalars['String'];
|
|
5141
|
+
productKey: Scalars['String'];
|
|
5142
|
+
available: Scalars['Boolean'];
|
|
5143
|
+
};
|
|
5144
|
+
export declare type DevOpsToolContainerKeyCannotBeGenerated = {
|
|
5145
|
+
__typename?: 'DevOpsToolContainerKeyCannotBeGenerated';
|
|
5146
|
+
name?: Maybe<Scalars['String']>;
|
|
5147
|
+
};
|
|
5148
|
+
export declare type DevOpsToolContainerKeyConflict = {
|
|
5149
|
+
__typename?: 'DevOpsToolContainerKeyConflict';
|
|
5150
|
+
name?: Maybe<Scalars['String']>;
|
|
5151
|
+
key?: Maybe<Scalars['String']>;
|
|
5152
|
+
};
|
|
5153
|
+
export declare type DevOpsToolContainerNameConflict = {
|
|
5154
|
+
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5155
|
+
name?: Maybe<Scalars['String']>;
|
|
5156
|
+
};
|
|
4921
5157
|
export declare enum DevOpsToolContainerType {
|
|
4922
5158
|
Repository = "REPOSITORY",
|
|
4923
5159
|
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
@@ -4928,6 +5164,23 @@ export declare type DevOpsToolEdge = {
|
|
|
4928
5164
|
cursor: Scalars['String'];
|
|
4929
5165
|
node?: Maybe<DevOpsTool>;
|
|
4930
5166
|
};
|
|
5167
|
+
export declare type DevOpsToolGitHubCreate = DevOpsToolContainerCreationSpecification & {
|
|
5168
|
+
__typename?: 'DevOpsToolGitHubCreate';
|
|
5169
|
+
requestId: Scalars['String'];
|
|
5170
|
+
organizationName: Scalars['String'];
|
|
5171
|
+
repositoryName: Scalars['String'];
|
|
5172
|
+
};
|
|
5173
|
+
export declare type DevOpsToolGitLabCreate = DevOpsToolContainerCreationSpecification & {
|
|
5174
|
+
__typename?: 'DevOpsToolGitLabCreate';
|
|
5175
|
+
requestId: Scalars['String'];
|
|
5176
|
+
organizationName: Scalars['String'];
|
|
5177
|
+
repositoryName: Scalars['String'];
|
|
5178
|
+
};
|
|
5179
|
+
export declare type DevOpsToolGroup = {
|
|
5180
|
+
__typename?: 'DevOpsToolGroup';
|
|
5181
|
+
groupId: Scalars['String'];
|
|
5182
|
+
groupName: Scalars['String'];
|
|
5183
|
+
};
|
|
4931
5184
|
export declare type DevOpsToolInstallationInfo = {
|
|
4932
5185
|
__typename?: 'DevOpsToolInstallationInfo';
|
|
4933
5186
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
@@ -4969,6 +5222,11 @@ export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
|
4969
5222
|
OncallTab = "ONCALL_TAB",
|
|
4970
5223
|
PagesTab = "PAGES_TAB"
|
|
4971
5224
|
}
|
|
5225
|
+
export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecification & {
|
|
5226
|
+
__typename?: 'DevOpsToolOpsgenieCreate';
|
|
5227
|
+
requestId: Scalars['String'];
|
|
5228
|
+
name: Scalars['String'];
|
|
5229
|
+
};
|
|
4972
5230
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4973
5231
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
4974
5232
|
category: DevOpsToolCategory;
|
|
@@ -4980,8 +5238,21 @@ export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
|
4980
5238
|
name: Scalars['String'];
|
|
4981
5239
|
productKey: Scalars['String'];
|
|
4982
5240
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5241
|
+
group: DevOpsToolGroup;
|
|
5242
|
+
supportsContainers: Scalars['Boolean'];
|
|
5243
|
+
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
4983
5244
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4984
5245
|
install: DevOpsToolInstallationInfo;
|
|
5246
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5247
|
+
};
|
|
5248
|
+
export declare type DevOpsToolUnavailableNamespacesArgs = {
|
|
5249
|
+
query?: Maybe<Scalars['String']>;
|
|
5250
|
+
first?: Maybe<Scalars['Int']>;
|
|
5251
|
+
after?: Maybe<Scalars['String']>;
|
|
5252
|
+
};
|
|
5253
|
+
export declare type DevOpsToolUnknownTool = {
|
|
5254
|
+
__typename?: 'DevOpsToolUnknownTool';
|
|
5255
|
+
toolId?: Maybe<Scalars['String']>;
|
|
4985
5256
|
};
|
|
4986
5257
|
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenInput = {
|
|
4987
5258
|
cloudId: Scalars['ID'];
|
|
@@ -5001,6 +5272,7 @@ export declare type DevOpsTools = {
|
|
|
5001
5272
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
5002
5273
|
container?: Maybe<DevOpsToolContainer>;
|
|
5003
5274
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
5275
|
+
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
5004
5276
|
};
|
|
5005
5277
|
export declare type DevOpsToolsToolsArgs = {
|
|
5006
5278
|
cloudId: Scalars['ID'];
|
|
@@ -5020,6 +5292,12 @@ export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
|
5020
5292
|
cloudId: Scalars['ID'];
|
|
5021
5293
|
projectId: Scalars['ID'];
|
|
5022
5294
|
};
|
|
5295
|
+
export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
5296
|
+
cloudId: Scalars['ID'];
|
|
5297
|
+
toolId: Scalars['String'];
|
|
5298
|
+
namespaceId: Scalars['String'];
|
|
5299
|
+
containerName: Scalars['String'];
|
|
5300
|
+
};
|
|
5023
5301
|
export declare type DevStatus = {
|
|
5024
5302
|
__typename?: 'DevStatus';
|
|
5025
5303
|
activity: DevStatusActivity;
|
|
@@ -5214,6 +5492,11 @@ export declare type FilterQuery = {
|
|
|
5214
5492
|
sanitisedJql: Scalars['String'];
|
|
5215
5493
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5216
5494
|
};
|
|
5495
|
+
export declare type ForgeContextToken = {
|
|
5496
|
+
__typename?: 'ForgeContextToken';
|
|
5497
|
+
jwt: Scalars['String'];
|
|
5498
|
+
expiresAt: Scalars['String'];
|
|
5499
|
+
};
|
|
5217
5500
|
export declare type ForgeMetricsData = {
|
|
5218
5501
|
name: Scalars['String'];
|
|
5219
5502
|
type: ForgeMetricsDataType;
|
|
@@ -5297,6 +5580,7 @@ export declare type ForgeMetricsQueryErrorsArgs = {
|
|
|
5297
5580
|
};
|
|
5298
5581
|
export declare type ForgeMetricsQueryFilters = {
|
|
5299
5582
|
environment?: Maybe<Scalars['ID']>;
|
|
5583
|
+
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
5300
5584
|
interval: ForgeMetricsIntervalInput;
|
|
5301
5585
|
};
|
|
5302
5586
|
export declare type ForgeMetricsQueryInput = {
|
|
@@ -5383,7 +5667,8 @@ export declare enum GrantCheckProduct {
|
|
|
5383
5667
|
Jira = "JIRA",
|
|
5384
5668
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
5385
5669
|
Confluence = "CONFLUENCE",
|
|
5386
|
-
Compass = "COMPASS"
|
|
5670
|
+
Compass = "COMPASS",
|
|
5671
|
+
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5387
5672
|
}
|
|
5388
5673
|
export declare type HostedResourcePreSignedUrl = {
|
|
5389
5674
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
@@ -5454,6 +5739,7 @@ export declare type InvokeExtensionResponse = Payload & {
|
|
|
5454
5739
|
errors?: Maybe<Array<MutationError>>;
|
|
5455
5740
|
response?: Maybe<InvocationResponsePayload>;
|
|
5456
5741
|
externalAuth?: Maybe<Array<Maybe<ExternalAuthProvider>>>;
|
|
5742
|
+
contextToken?: Maybe<ForgeContextToken>;
|
|
5457
5743
|
};
|
|
5458
5744
|
export declare type InvokePolarisObjectInput = {
|
|
5459
5745
|
project: Scalars['ID'];
|
|
@@ -6002,6 +6288,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
6002
6288
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6003
6289
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
6004
6290
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
6291
|
+
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
6005
6292
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
6006
6293
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6007
6294
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -6461,6 +6748,16 @@ export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFiel
|
|
|
6461
6748
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6462
6749
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6463
6750
|
};
|
|
6751
|
+
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
6752
|
+
__typename?: 'JiraCustomFilter';
|
|
6753
|
+
id: Scalars['ID'];
|
|
6754
|
+
filterId: Scalars['String'];
|
|
6755
|
+
jql: Scalars['String'];
|
|
6756
|
+
owner?: Maybe<User>;
|
|
6757
|
+
name: Scalars['String'];
|
|
6758
|
+
description?: Maybe<Scalars['String']>;
|
|
6759
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
6760
|
+
};
|
|
6464
6761
|
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6465
6762
|
__typename?: 'JiraDatePickerField';
|
|
6466
6763
|
id: Scalars['ID'];
|
|
@@ -6490,6 +6787,27 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
6490
6787
|
id: Scalars['ID'];
|
|
6491
6788
|
name: Scalars['String'];
|
|
6492
6789
|
};
|
|
6790
|
+
export declare type JiraDevOpsBranchDetails = {
|
|
6791
|
+
__typename?: 'JiraDevOpsBranchDetails';
|
|
6792
|
+
providerBranchId?: Maybe<Scalars['String']>;
|
|
6793
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6794
|
+
name?: Maybe<Scalars['String']>;
|
|
6795
|
+
repositoryName?: Maybe<Scalars['String']>;
|
|
6796
|
+
};
|
|
6797
|
+
export declare type JiraDevOpsCommitDetails = {
|
|
6798
|
+
__typename?: 'JiraDevOpsCommitDetails';
|
|
6799
|
+
providerCommitId?: Maybe<Scalars['String']>;
|
|
6800
|
+
displayCommitId?: Maybe<Scalars['String']>;
|
|
6801
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6802
|
+
name?: Maybe<Scalars['String']>;
|
|
6803
|
+
created?: Maybe<Scalars['DateTime']>;
|
|
6804
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6805
|
+
};
|
|
6806
|
+
export declare type JiraDevOpsEntityAuthor = {
|
|
6807
|
+
__typename?: 'JiraDevOpsEntityAuthor';
|
|
6808
|
+
avatar?: Maybe<JiraAvatar>;
|
|
6809
|
+
name?: Maybe<Scalars['String']>;
|
|
6810
|
+
};
|
|
6493
6811
|
export declare type JiraDevOpsIssuePanel = {
|
|
6494
6812
|
__typename?: 'JiraDevOpsIssuePanel';
|
|
6495
6813
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
@@ -6516,6 +6834,17 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
6516
6834
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
6517
6835
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
6518
6836
|
};
|
|
6837
|
+
export declare type JiraDevOpsPullRequestDetails = {
|
|
6838
|
+
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
6839
|
+
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
6840
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6841
|
+
name?: Maybe<Scalars['String']>;
|
|
6842
|
+
branchName?: Maybe<Scalars['String']>;
|
|
6843
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6844
|
+
status?: Maybe<JiraPullRequestState>;
|
|
6845
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6846
|
+
reviewers?: Maybe<Array<JiraPullRequestReviewer>>;
|
|
6847
|
+
};
|
|
6519
6848
|
export declare type JiraDevOpsQuery = {
|
|
6520
6849
|
__typename?: 'JiraDevOpsQuery';
|
|
6521
6850
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
@@ -6599,14 +6928,24 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
6599
6928
|
__typename?: 'JiraFieldNonEditableReason';
|
|
6600
6929
|
message?: Maybe<Scalars['String']>;
|
|
6601
6930
|
};
|
|
6602
|
-
export declare type JiraFilter =
|
|
6603
|
-
__typename?: 'JiraFilter';
|
|
6931
|
+
export declare type JiraFilter = {
|
|
6604
6932
|
id: Scalars['ID'];
|
|
6605
6933
|
filterId: Scalars['String'];
|
|
6606
6934
|
jql: Scalars['String'];
|
|
6607
6935
|
name: Scalars['String'];
|
|
6936
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
6937
|
+
};
|
|
6938
|
+
export declare type JiraFilterConnection = {
|
|
6939
|
+
__typename?: 'JiraFilterConnection';
|
|
6940
|
+
pageInfo: PageInfo;
|
|
6941
|
+
edges?: Maybe<Array<Maybe<JiraFilterEdge>>>;
|
|
6608
6942
|
};
|
|
6609
|
-
export declare type
|
|
6943
|
+
export declare type JiraFilterEdge = {
|
|
6944
|
+
__typename?: 'JiraFilterEdge';
|
|
6945
|
+
node?: Maybe<JiraFilter>;
|
|
6946
|
+
cursor: Scalars['String'];
|
|
6947
|
+
};
|
|
6948
|
+
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
6610
6949
|
export declare type JiraFlag = {
|
|
6611
6950
|
__typename?: 'JiraFlag';
|
|
6612
6951
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -6853,6 +7192,17 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
6853
7192
|
id: Scalars['ID'];
|
|
6854
7193
|
group: JiraGroup;
|
|
6855
7194
|
};
|
|
7195
|
+
export declare type JiraInvalidJqlError = {
|
|
7196
|
+
__typename?: 'JiraInvalidJqlError';
|
|
7197
|
+
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
7198
|
+
};
|
|
7199
|
+
export declare type JiraInvalidSyntaxError = {
|
|
7200
|
+
__typename?: 'JiraInvalidSyntaxError';
|
|
7201
|
+
message?: Maybe<Scalars['String']>;
|
|
7202
|
+
errorType?: Maybe<JiraJqlSyntaxError>;
|
|
7203
|
+
line?: Maybe<Scalars['Int']>;
|
|
7204
|
+
column?: Maybe<Scalars['Int']>;
|
|
7205
|
+
};
|
|
6856
7206
|
export declare type JiraIssue = Node & {
|
|
6857
7207
|
__typename?: 'JiraIssue';
|
|
6858
7208
|
id: Scalars['ID'];
|
|
@@ -6865,9 +7215,12 @@ export declare type JiraIssue = Node & {
|
|
|
6865
7215
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
6866
7216
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
6867
7217
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7218
|
+
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7219
|
+
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
6868
7220
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6869
7221
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6870
7222
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7223
|
+
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
6871
7224
|
};
|
|
6872
7225
|
export declare type JiraIssueFieldsArgs = {
|
|
6873
7226
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6906,6 +7259,20 @@ export declare type JiraIssueFieldSetsArgs = {
|
|
|
6906
7259
|
last?: Maybe<Scalars['Int']>;
|
|
6907
7260
|
before?: Maybe<Scalars['String']>;
|
|
6908
7261
|
};
|
|
7262
|
+
export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
7263
|
+
namespace?: Maybe<Scalars['String']>;
|
|
7264
|
+
viewId?: Maybe<Scalars['String']>;
|
|
7265
|
+
first?: Maybe<Scalars['Int']>;
|
|
7266
|
+
after?: Maybe<Scalars['String']>;
|
|
7267
|
+
last?: Maybe<Scalars['Int']>;
|
|
7268
|
+
before?: Maybe<Scalars['String']>;
|
|
7269
|
+
};
|
|
7270
|
+
export declare type JiraIssueIssueLinksArgs = {
|
|
7271
|
+
first?: Maybe<Scalars['Int']>;
|
|
7272
|
+
after?: Maybe<Scalars['String']>;
|
|
7273
|
+
last?: Maybe<Scalars['Int']>;
|
|
7274
|
+
before?: Maybe<Scalars['String']>;
|
|
7275
|
+
};
|
|
6909
7276
|
export declare type JiraIssueBranchDevSummary = {
|
|
6910
7277
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
6911
7278
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6916,6 +7283,10 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
6916
7283
|
overall?: Maybe<JiraIssueBranchDevSummary>;
|
|
6917
7284
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6918
7285
|
};
|
|
7286
|
+
export declare type JiraIssueBranches = {
|
|
7287
|
+
__typename?: 'JiraIssueBranches';
|
|
7288
|
+
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
7289
|
+
};
|
|
6919
7290
|
export declare type JiraIssueBuildDevSummary = {
|
|
6920
7291
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
6921
7292
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6939,12 +7310,24 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
6939
7310
|
overall?: Maybe<JiraIssueCommitDevSummary>;
|
|
6940
7311
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6941
7312
|
};
|
|
7313
|
+
export declare type JiraIssueCommits = {
|
|
7314
|
+
__typename?: 'JiraIssueCommits';
|
|
7315
|
+
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
7316
|
+
};
|
|
6942
7317
|
export declare type JiraIssueConnection = {
|
|
6943
7318
|
__typename?: 'JiraIssueConnection';
|
|
6944
7319
|
totalCount?: Maybe<Scalars['Int']>;
|
|
6945
7320
|
pageInfo: PageInfo;
|
|
6946
7321
|
jql?: Maybe<Scalars['String']>;
|
|
6947
7322
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
7323
|
+
issueSearchError?: Maybe<JiraIssueSearchError>;
|
|
7324
|
+
totalIssueSearchResultCount?: Maybe<Scalars['Int']>;
|
|
7325
|
+
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']>;
|
|
7326
|
+
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
7327
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
7328
|
+
};
|
|
7329
|
+
export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
7330
|
+
maxCursors: Scalars['Int'];
|
|
6948
7331
|
};
|
|
6949
7332
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
6950
7333
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
@@ -6966,6 +7349,12 @@ export declare enum JiraIssueDeploymentEnvironmentState {
|
|
|
6966
7349
|
NotDeployed = "NOT_DEPLOYED",
|
|
6967
7350
|
Deployed = "DEPLOYED"
|
|
6968
7351
|
}
|
|
7352
|
+
export declare type JiraIssueDevInfoDetails = {
|
|
7353
|
+
__typename?: 'JiraIssueDevInfoDetails';
|
|
7354
|
+
pullRequests?: Maybe<JiraIssuePullRequests>;
|
|
7355
|
+
branches?: Maybe<JiraIssueBranches>;
|
|
7356
|
+
commits?: Maybe<JiraIssueCommits>;
|
|
7357
|
+
};
|
|
6969
7358
|
export declare type JiraIssueDevSummary = {
|
|
6970
7359
|
__typename?: 'JiraIssueDevSummary';
|
|
6971
7360
|
branch?: Maybe<JiraIssueBranchDevSummaryContainer>;
|
|
@@ -7233,6 +7622,13 @@ export declare type JiraIssueLinkTypeRelationEdge = {
|
|
|
7233
7622
|
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
7234
7623
|
cursor: Scalars['String'];
|
|
7235
7624
|
};
|
|
7625
|
+
export declare type JiraIssueNavigatorPageInfo = {
|
|
7626
|
+
__typename?: 'JiraIssueNavigatorPageInfo';
|
|
7627
|
+
firstIssuePosition?: Maybe<Scalars['Int']>;
|
|
7628
|
+
lastIssuePosition?: Maybe<Scalars['Int']>;
|
|
7629
|
+
firstIssueKeyFromNextPage?: Maybe<Scalars['String']>;
|
|
7630
|
+
lastIssueKeyFromPreviousPage?: Maybe<Scalars['String']>;
|
|
7631
|
+
};
|
|
7236
7632
|
export declare type JiraIssuePullRequestDevSummary = {
|
|
7237
7633
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
7238
7634
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7246,6 +7642,10 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
7246
7642
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
7247
7643
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7248
7644
|
};
|
|
7645
|
+
export declare type JiraIssuePullRequests = {
|
|
7646
|
+
__typename?: 'JiraIssuePullRequests';
|
|
7647
|
+
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
7648
|
+
};
|
|
7249
7649
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7250
7650
|
__typename?: 'JiraIssueRestrictionField';
|
|
7251
7651
|
id: Scalars['ID'];
|
|
@@ -7290,7 +7690,7 @@ export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
|
7290
7690
|
__typename?: 'JiraIssueSearchByFilter';
|
|
7291
7691
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7292
7692
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
7293
|
-
filter?: Maybe<
|
|
7693
|
+
filter?: Maybe<JiraFilter>;
|
|
7294
7694
|
};
|
|
7295
7695
|
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
7296
7696
|
namespace?: Maybe<Scalars['String']>;
|
|
@@ -7347,6 +7747,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
7347
7747
|
before?: Maybe<Scalars['String']>;
|
|
7348
7748
|
after?: Maybe<Scalars['String']>;
|
|
7349
7749
|
};
|
|
7750
|
+
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError;
|
|
7350
7751
|
export declare type JiraIssueSearchFieldConfigSet = {
|
|
7351
7752
|
__typename?: 'JiraIssueSearchFieldConfigSet';
|
|
7352
7753
|
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
@@ -7360,6 +7761,7 @@ export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
|
7360
7761
|
totalCount?: Maybe<Scalars['Int']>;
|
|
7361
7762
|
pageInfo: PageInfo;
|
|
7362
7763
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
7764
|
+
isWithholdingUnsupportedSelectedFields?: Maybe<Scalars['Boolean']>;
|
|
7363
7765
|
};
|
|
7364
7766
|
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
7365
7767
|
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
@@ -7375,6 +7777,13 @@ export declare type JiraIssueSearchFieldConfigSetsFilter = {
|
|
|
7375
7777
|
searchString?: Maybe<Scalars['String']>;
|
|
7376
7778
|
fieldConfigSetSelectedState?: Maybe<JiraIssueSearchFieldConfigSetSelectedState>;
|
|
7377
7779
|
};
|
|
7780
|
+
export declare type JiraIssueSearchInput = {
|
|
7781
|
+
jql?: Maybe<Scalars['String']>;
|
|
7782
|
+
filterId?: Maybe<Scalars['String']>;
|
|
7783
|
+
};
|
|
7784
|
+
export declare type JiraIssueSearchOptions = {
|
|
7785
|
+
issueKey?: Maybe<Scalars['String']>;
|
|
7786
|
+
};
|
|
7378
7787
|
export declare type JiraIssueSearchResult = {
|
|
7379
7788
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7380
7789
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
@@ -7822,6 +8231,29 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
|
|
|
7822
8231
|
displayName: Scalars['String'];
|
|
7823
8232
|
statusCategory: JiraStatusCategory;
|
|
7824
8233
|
};
|
|
8234
|
+
export declare enum JiraJqlSyntaxError {
|
|
8235
|
+
ReservedWord = "RESERVED_WORD",
|
|
8236
|
+
IllegalEscape = "ILLEGAL_ESCAPE",
|
|
8237
|
+
UnfinishedString = "UNFINISHED_STRING",
|
|
8238
|
+
IllegalCharacter = "ILLEGAL_CHARACTER",
|
|
8239
|
+
ReservedCharacter = "RESERVED_CHARACTER",
|
|
8240
|
+
Unknown = "UNKNOWN",
|
|
8241
|
+
IllegalNumber = "ILLEGAL_NUMBER",
|
|
8242
|
+
EmptyField = "EMPTY_FIELD",
|
|
8243
|
+
EmptyFunction = "EMPTY_FUNCTION",
|
|
8244
|
+
MissingFieldName = "MISSING_FIELD_NAME",
|
|
8245
|
+
NoOrder = "NO_ORDER",
|
|
8246
|
+
UnexpectedText = "UNEXPECTED_TEXT",
|
|
8247
|
+
NoOperator = "NO_OPERATOR",
|
|
8248
|
+
BadFieldId = "BAD_FIELD_ID",
|
|
8249
|
+
BadPropertyId = "BAD_PROPERTY_ID",
|
|
8250
|
+
BadFunctionArgument = "BAD_FUNCTION_ARGUMENT",
|
|
8251
|
+
EmptyFunctionArgument = "EMPTY_FUNCTION_ARGUMENT",
|
|
8252
|
+
MissingLogicalOperator = "MISSING_LOGICAL_OPERATOR",
|
|
8253
|
+
BadOperator = "BAD_OPERATOR",
|
|
8254
|
+
PredicateUnsupported = "PREDICATE_UNSUPPORTED",
|
|
8255
|
+
OperandUnsupported = "OPERAND_UNSUPPORTED"
|
|
8256
|
+
}
|
|
7825
8257
|
export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
7826
8258
|
__typename?: 'JiraJqlUserFieldValue';
|
|
7827
8259
|
jqlTerm: Scalars['String'];
|
|
@@ -8056,6 +8488,7 @@ export declare type JiraMutation = {
|
|
|
8056
8488
|
__typename?: 'JiraMutation';
|
|
8057
8489
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8058
8490
|
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8491
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8059
8492
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8060
8493
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8061
8494
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -8065,6 +8498,10 @@ export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
|
8065
8498
|
id: Scalars['ID'];
|
|
8066
8499
|
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8067
8500
|
};
|
|
8501
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8502
|
+
id: Scalars['ID'];
|
|
8503
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8504
|
+
};
|
|
8068
8505
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8069
8506
|
cloudId: Scalars['ID'];
|
|
8070
8507
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -8258,6 +8695,19 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
8258
8695
|
export declare type JiraOrderDirection = {
|
|
8259
8696
|
id?: Maybe<Scalars['ID']>;
|
|
8260
8697
|
};
|
|
8698
|
+
export declare type JiraPageCursor = {
|
|
8699
|
+
__typename?: 'JiraPageCursor';
|
|
8700
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8701
|
+
pageNumber?: Maybe<Scalars['Int']>;
|
|
8702
|
+
isCurrent?: Maybe<Scalars['Boolean']>;
|
|
8703
|
+
};
|
|
8704
|
+
export declare type JiraPageCursors = {
|
|
8705
|
+
__typename?: 'JiraPageCursors';
|
|
8706
|
+
first?: Maybe<JiraPageCursor>;
|
|
8707
|
+
around?: Maybe<Array<Maybe<JiraPageCursor>>>;
|
|
8708
|
+
last?: Maybe<JiraPageCursor>;
|
|
8709
|
+
previous?: Maybe<JiraPageCursor>;
|
|
8710
|
+
};
|
|
8261
8711
|
export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8262
8712
|
__typename?: 'JiraParentIssueField';
|
|
8263
8713
|
id: Scalars['ID'];
|
|
@@ -8516,6 +8966,7 @@ export declare type JiraProject = Node & {
|
|
|
8516
8966
|
projectType?: Maybe<JiraProjectType>;
|
|
8517
8967
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
8518
8968
|
status?: Maybe<JiraProjectStatus>;
|
|
8969
|
+
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
8519
8970
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
8520
8971
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
8521
8972
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -8751,6 +9202,12 @@ export declare enum JiraProjectType {
|
|
|
8751
9202
|
Business = "BUSINESS",
|
|
8752
9203
|
Software = "SOFTWARE"
|
|
8753
9204
|
}
|
|
9205
|
+
export declare type JiraPullRequestReviewer = {
|
|
9206
|
+
__typename?: 'JiraPullRequestReviewer';
|
|
9207
|
+
avatar?: Maybe<JiraAvatar>;
|
|
9208
|
+
name?: Maybe<Scalars['String']>;
|
|
9209
|
+
hasApproved?: Maybe<Scalars['Boolean']>;
|
|
9210
|
+
};
|
|
8754
9211
|
export declare enum JiraPullRequestState {
|
|
8755
9212
|
Open = "OPEN",
|
|
8756
9213
|
Declined = "DECLINED",
|
|
@@ -8768,12 +9225,17 @@ export declare type JiraQuery = {
|
|
|
8768
9225
|
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
8769
9226
|
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
8770
9227
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9228
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9229
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
8771
9230
|
issueByKey?: Maybe<JiraIssue>;
|
|
8772
9231
|
issueById?: Maybe<JiraIssue>;
|
|
8773
9232
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8774
9233
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8775
9234
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8776
9235
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9236
|
+
filter?: Maybe<JiraFilter>;
|
|
9237
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9238
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
8777
9239
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8778
9240
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
8779
9241
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
@@ -8823,6 +9285,20 @@ export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
|
8823
9285
|
export declare type JiraQueryIssueSearchViewArgs = {
|
|
8824
9286
|
id: Scalars['ID'];
|
|
8825
9287
|
};
|
|
9288
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
9289
|
+
cloudId: Scalars['ID'];
|
|
9290
|
+
namespace?: Maybe<Scalars['String']>;
|
|
9291
|
+
viewId?: Maybe<Scalars['String']>;
|
|
9292
|
+
};
|
|
9293
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9294
|
+
cloudId: Scalars['ID'];
|
|
9295
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
9296
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9297
|
+
first?: Maybe<Scalars['Int']>;
|
|
9298
|
+
after?: Maybe<Scalars['String']>;
|
|
9299
|
+
last?: Maybe<Scalars['Int']>;
|
|
9300
|
+
before?: Maybe<Scalars['String']>;
|
|
9301
|
+
};
|
|
8826
9302
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
8827
9303
|
key: Scalars['String'];
|
|
8828
9304
|
cloudId: Scalars['ID'];
|
|
@@ -8840,6 +9316,24 @@ export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
|
8840
9316
|
cloudId: Scalars['ID'];
|
|
8841
9317
|
keys: Array<Scalars['String']>;
|
|
8842
9318
|
};
|
|
9319
|
+
export declare type JiraQueryFilterArgs = {
|
|
9320
|
+
id: Scalars['ID'];
|
|
9321
|
+
};
|
|
9322
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9323
|
+
cloudId: Scalars['ID'];
|
|
9324
|
+
first?: Maybe<Scalars['Int']>;
|
|
9325
|
+
after?: Maybe<Scalars['String']>;
|
|
9326
|
+
last?: Maybe<Scalars['Int']>;
|
|
9327
|
+
before?: Maybe<Scalars['String']>;
|
|
9328
|
+
};
|
|
9329
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9330
|
+
cloudId: Scalars['ID'];
|
|
9331
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9332
|
+
first?: Maybe<Scalars['Int']>;
|
|
9333
|
+
after?: Maybe<Scalars['String']>;
|
|
9334
|
+
last?: Maybe<Scalars['Int']>;
|
|
9335
|
+
before?: Maybe<Scalars['String']>;
|
|
9336
|
+
};
|
|
8843
9337
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
8844
9338
|
cloudId: Scalars['ID'];
|
|
8845
9339
|
};
|
|
@@ -9035,6 +9529,12 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
9035
9529
|
after: Scalars['DateTime'];
|
|
9036
9530
|
before: Scalars['DateTime'];
|
|
9037
9531
|
};
|
|
9532
|
+
export declare type JiraReplaceIssueSearchViewFieldConfigSetsInput = {
|
|
9533
|
+
before?: Maybe<Scalars['String']>;
|
|
9534
|
+
after?: Maybe<Scalars['String']>;
|
|
9535
|
+
nodes: Array<Scalars['String']>;
|
|
9536
|
+
inclusive?: Maybe<Scalars['Boolean']>;
|
|
9537
|
+
};
|
|
9038
9538
|
export declare type JiraResolution = Node & {
|
|
9039
9539
|
__typename?: 'JiraResolution';
|
|
9040
9540
|
id: Scalars['ID'];
|
|
@@ -9546,7 +10046,7 @@ export declare type JiraServiceManagementRequestLanguageField = Node & JiraIssue
|
|
|
9546
10046
|
export declare type JiraServiceManagementRequestType = Node & {
|
|
9547
10047
|
__typename?: 'JiraServiceManagementRequestType';
|
|
9548
10048
|
id: Scalars['ID'];
|
|
9549
|
-
requestTypeId: Scalars['
|
|
10049
|
+
requestTypeId: Scalars['String'];
|
|
9550
10050
|
name?: Maybe<Scalars['String']>;
|
|
9551
10051
|
key?: Maybe<Scalars['String']>;
|
|
9552
10052
|
description?: Maybe<Scalars['String']>;
|
|
@@ -9645,6 +10145,10 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
9645
10145
|
key: Scalars['String'];
|
|
9646
10146
|
value: Scalars['String'];
|
|
9647
10147
|
};
|
|
10148
|
+
export declare type JiraSimilarIssues = {
|
|
10149
|
+
__typename?: 'JiraSimilarIssues';
|
|
10150
|
+
featureEnabled: Scalars['Boolean'];
|
|
10151
|
+
};
|
|
9648
10152
|
export declare type JiraSingleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9649
10153
|
__typename?: 'JiraSingleGroupPickerField';
|
|
9650
10154
|
id: Scalars['ID'];
|
|
@@ -9862,6 +10366,24 @@ export declare type JiraSubtasksFieldSubtasksArgs = {
|
|
|
9862
10366
|
last?: Maybe<Scalars['Int']>;
|
|
9863
10367
|
before?: Maybe<Scalars['String']>;
|
|
9864
10368
|
};
|
|
10369
|
+
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
10370
|
+
__typename?: 'JiraSystemFilter';
|
|
10371
|
+
id: Scalars['ID'];
|
|
10372
|
+
filterId: Scalars['String'];
|
|
10373
|
+
jql: Scalars['String'];
|
|
10374
|
+
name: Scalars['String'];
|
|
10375
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
10376
|
+
};
|
|
10377
|
+
export declare type JiraSystemFilterConnection = {
|
|
10378
|
+
__typename?: 'JiraSystemFilterConnection';
|
|
10379
|
+
pageInfo: PageInfo;
|
|
10380
|
+
edges?: Maybe<Array<Maybe<JiraSystemFilterEdge>>>;
|
|
10381
|
+
};
|
|
10382
|
+
export declare type JiraSystemFilterEdge = {
|
|
10383
|
+
__typename?: 'JiraSystemFilterEdge';
|
|
10384
|
+
node?: Maybe<JiraSystemFilter>;
|
|
10385
|
+
cursor: Scalars['String'];
|
|
10386
|
+
};
|
|
9865
10387
|
export declare type JiraTeam = Node & {
|
|
9866
10388
|
__typename?: 'JiraTeam';
|
|
9867
10389
|
id: Scalars['ID'];
|
|
@@ -9905,7 +10427,8 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9905
10427
|
};
|
|
9906
10428
|
export declare type JiraTeamView = {
|
|
9907
10429
|
__typename?: 'JiraTeamView';
|
|
9908
|
-
jiraSuppliedId
|
|
10430
|
+
jiraSuppliedId: Scalars['ID'];
|
|
10431
|
+
jiraSuppliedTeamId: Scalars['String'];
|
|
9909
10432
|
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
9910
10433
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
9911
10434
|
fullTeam?: Maybe<Team>;
|
|
@@ -10013,6 +10536,7 @@ export declare type JiraVersion = Node & {
|
|
|
10013
10536
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10014
10537
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
10015
10538
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
10539
|
+
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
10016
10540
|
issues?: Maybe<JiraIssueConnection>;
|
|
10017
10541
|
};
|
|
10018
10542
|
export declare type JiraVersionIssuesArgs = {
|
|
@@ -10022,6 +10546,14 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
10022
10546
|
before?: Maybe<Scalars['String']>;
|
|
10023
10547
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
10024
10548
|
};
|
|
10549
|
+
export declare type JiraVersionConnectAddonIframeData = {
|
|
10550
|
+
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
10551
|
+
appKey?: Maybe<Scalars['String']>;
|
|
10552
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
10553
|
+
appName?: Maybe<Scalars['String']>;
|
|
10554
|
+
location?: Maybe<Scalars['String']>;
|
|
10555
|
+
options?: Maybe<Scalars['JSON']>;
|
|
10556
|
+
};
|
|
10025
10557
|
export declare type JiraVersionConnection = {
|
|
10026
10558
|
__typename?: 'JiraVersionConnection';
|
|
10027
10559
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -10073,6 +10605,7 @@ export declare enum JiraVersionStatus {
|
|
|
10073
10605
|
}
|
|
10074
10606
|
export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
10075
10607
|
isOpenPullRequestEnabled?: Maybe<Scalars['Boolean']>;
|
|
10608
|
+
isOpenReviewEnabled?: Maybe<Scalars['Boolean']>;
|
|
10076
10609
|
isUnreviewedCodeEnabled?: Maybe<Scalars['Boolean']>;
|
|
10077
10610
|
isFailingBuildEnabled?: Maybe<Scalars['Boolean']>;
|
|
10078
10611
|
};
|
|
@@ -10611,7 +11144,6 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
10611
11144
|
export declare type Mutation = {
|
|
10612
11145
|
__typename?: 'Mutation';
|
|
10613
11146
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
10614
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10615
11147
|
shepherd?: Maybe<ShepherdMutation>;
|
|
10616
11148
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
10617
11149
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -10646,6 +11178,8 @@ export declare type Mutation = {
|
|
|
10646
11178
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
10647
11179
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
10648
11180
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11181
|
+
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11182
|
+
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
10649
11183
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
10650
11184
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
10651
11185
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -10675,6 +11209,7 @@ export declare type Mutation = {
|
|
|
10675
11209
|
jira?: Maybe<JiraMutation>;
|
|
10676
11210
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10677
11211
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11212
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10678
11213
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10679
11214
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10680
11215
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -10863,6 +11398,12 @@ export declare type MutationRankCardParentArgs = {
|
|
|
10863
11398
|
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
10864
11399
|
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
10865
11400
|
};
|
|
11401
|
+
export declare type MutationToggleBoardFeatureArgs = {
|
|
11402
|
+
input?: Maybe<ToggleBoardFeatureInput>;
|
|
11403
|
+
};
|
|
11404
|
+
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11405
|
+
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11406
|
+
};
|
|
10866
11407
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
10867
11408
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
10868
11409
|
};
|
|
@@ -11208,9 +11749,14 @@ export declare type MyActivityViewedArgs = {
|
|
|
11208
11749
|
after?: Maybe<Scalars['String']>;
|
|
11209
11750
|
};
|
|
11210
11751
|
export declare type MyActivityFilter = {
|
|
11752
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
11211
11753
|
type?: Maybe<ActivitiesFilterType>;
|
|
11212
11754
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
11213
11755
|
};
|
|
11756
|
+
export declare type NadelBatchObjectIdentifiedBy = {
|
|
11757
|
+
sourceId: Scalars['String'];
|
|
11758
|
+
resultId: Scalars['String'];
|
|
11759
|
+
};
|
|
11214
11760
|
export declare type NadelHydrationArgument = {
|
|
11215
11761
|
name: Scalars['String'];
|
|
11216
11762
|
value: Scalars['String'];
|
|
@@ -12081,25 +12627,25 @@ export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
|
12081
12627
|
};
|
|
12082
12628
|
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12083
12629
|
listId: Scalars['ID'];
|
|
12084
|
-
|
|
12630
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12085
12631
|
};
|
|
12086
12632
|
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12087
12633
|
listId: Scalars['ID'];
|
|
12088
|
-
|
|
12634
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12089
12635
|
};
|
|
12090
12636
|
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12091
12637
|
listId: Scalars['ID'];
|
|
12092
12638
|
refId: Scalars['ID'];
|
|
12093
|
-
|
|
12639
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12094
12640
|
};
|
|
12095
12641
|
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12096
12642
|
listId: Scalars['ID'];
|
|
12097
12643
|
refId: Scalars['ID'];
|
|
12098
|
-
|
|
12644
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12099
12645
|
};
|
|
12100
12646
|
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12101
12647
|
listId: Scalars['ID'];
|
|
12102
|
-
|
|
12648
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12103
12649
|
};
|
|
12104
12650
|
export declare type PolarisRankingQueryNamespace = {
|
|
12105
12651
|
__typename?: 'PolarisRankingQueryNamespace';
|
|
@@ -12286,6 +12832,7 @@ export declare type PolarisView = {
|
|
|
12286
12832
|
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
12287
12833
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
12288
12834
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
12835
|
+
sortMode: PolarisViewSortMode;
|
|
12289
12836
|
};
|
|
12290
12837
|
export declare type PolarisViewJqlArgs = {
|
|
12291
12838
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -12352,6 +12899,11 @@ export declare enum PolarisViewSetType {
|
|
|
12352
12899
|
Single = "SINGLE",
|
|
12353
12900
|
Section = "SECTION"
|
|
12354
12901
|
}
|
|
12902
|
+
export declare enum PolarisViewSortMode {
|
|
12903
|
+
ProjectRank = "PROJECT_RANK",
|
|
12904
|
+
ViewRank = "VIEW_RANK",
|
|
12905
|
+
FieldsSort = "FIELDS_SORT"
|
|
12906
|
+
}
|
|
12355
12907
|
export declare type PolarisViewTableColumnSize = {
|
|
12356
12908
|
__typename?: 'PolarisViewTableColumnSize';
|
|
12357
12909
|
field: PolarisIdeaField;
|
|
@@ -12381,7 +12933,6 @@ export declare type Query = {
|
|
|
12381
12933
|
echo?: Maybe<Scalars['String']>;
|
|
12382
12934
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
12383
12935
|
node?: Maybe<Node>;
|
|
12384
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12385
12936
|
activities?: Maybe<Activities>;
|
|
12386
12937
|
activity?: Maybe<Activity>;
|
|
12387
12938
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -12437,6 +12988,7 @@ export declare type Query = {
|
|
|
12437
12988
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
12438
12989
|
testing?: Maybe<Testing>;
|
|
12439
12990
|
movie?: Maybe<TestingMovie>;
|
|
12991
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12440
12992
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
12441
12993
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
12442
12994
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
@@ -12890,6 +13442,37 @@ export declare type ResolvedPolarisObjectExternalAuth = {
|
|
|
12890
13442
|
displayName: Scalars['String'];
|
|
12891
13443
|
url: Scalars['String'];
|
|
12892
13444
|
};
|
|
13445
|
+
export declare type RoadmapAddItemInput = {
|
|
13446
|
+
projectId: Scalars['ID'];
|
|
13447
|
+
itemTypeId: Scalars['ID'];
|
|
13448
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
13449
|
+
summary: Scalars['String'];
|
|
13450
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13451
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13452
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
13453
|
+
rank?: Maybe<RoadmapAddItemRank>;
|
|
13454
|
+
jql?: Maybe<Scalars['String']>;
|
|
13455
|
+
assignee?: Maybe<Scalars['String']>;
|
|
13456
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
13457
|
+
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
13458
|
+
versionIds?: Maybe<Array<Scalars['ID']>>;
|
|
13459
|
+
};
|
|
13460
|
+
export declare type RoadmapAddItemPayload = Payload & {
|
|
13461
|
+
__typename?: 'RoadmapAddItemPayload';
|
|
13462
|
+
success: Scalars['Boolean'];
|
|
13463
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13464
|
+
output?: Maybe<RoadmapAddItemResponse>;
|
|
13465
|
+
};
|
|
13466
|
+
export declare type RoadmapAddItemRank = {
|
|
13467
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
13468
|
+
};
|
|
13469
|
+
export declare type RoadmapAddItemResponse = {
|
|
13470
|
+
__typename?: 'RoadmapAddItemResponse';
|
|
13471
|
+
id: Scalars['ID'];
|
|
13472
|
+
key: Scalars['String'];
|
|
13473
|
+
item?: Maybe<RoadmapItem>;
|
|
13474
|
+
matchesSource: Scalars['Boolean'];
|
|
13475
|
+
};
|
|
12893
13476
|
export declare type RoadmapBoardConfiguration = {
|
|
12894
13477
|
__typename?: 'RoadmapBoardConfiguration';
|
|
12895
13478
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -12963,6 +13546,10 @@ export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
|
12963
13546
|
errors?: Maybe<Array<MutationError>>;
|
|
12964
13547
|
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
12965
13548
|
};
|
|
13549
|
+
export declare type RoadmapFilterConfiguration = {
|
|
13550
|
+
__typename?: 'RoadmapFilterConfiguration';
|
|
13551
|
+
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13552
|
+
};
|
|
12966
13553
|
export declare type RoadmapItem = {
|
|
12967
13554
|
__typename?: 'RoadmapItem';
|
|
12968
13555
|
id: Scalars['ID'];
|
|
@@ -13102,6 +13689,12 @@ export declare type RoadmapProjectValidation = {
|
|
|
13102
13689
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13103
13690
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13104
13691
|
};
|
|
13692
|
+
export declare type RoadmapQuickFilter = {
|
|
13693
|
+
__typename?: 'RoadmapQuickFilter';
|
|
13694
|
+
id: Scalars['ID'];
|
|
13695
|
+
name: Scalars['String'];
|
|
13696
|
+
query: Scalars['String'];
|
|
13697
|
+
};
|
|
13105
13698
|
export declare type RoadmapSprint = {
|
|
13106
13699
|
__typename?: 'RoadmapSprint';
|
|
13107
13700
|
id: Scalars['ID'];
|
|
@@ -13126,6 +13719,47 @@ export declare enum RoadmapTimelineMode {
|
|
|
13126
13719
|
Months = "MONTHS",
|
|
13127
13720
|
Quarters = "QUARTERS"
|
|
13128
13721
|
}
|
|
13722
|
+
export declare type RoadmapToggleDependencyInput = {
|
|
13723
|
+
dependee: Scalars['ID'];
|
|
13724
|
+
dependency: Scalars['ID'];
|
|
13725
|
+
};
|
|
13726
|
+
export declare type RoadmapToggleDependencyPayload = Payload & {
|
|
13727
|
+
__typename?: 'RoadmapToggleDependencyPayload';
|
|
13728
|
+
success: Scalars['Boolean'];
|
|
13729
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13730
|
+
output?: Maybe<RoadmapToggleDependencyResponse>;
|
|
13731
|
+
};
|
|
13732
|
+
export declare type RoadmapToggleDependencyResponse = {
|
|
13733
|
+
__typename?: 'RoadmapToggleDependencyResponse';
|
|
13734
|
+
dependee: Scalars['ID'];
|
|
13735
|
+
dependency: Scalars['ID'];
|
|
13736
|
+
};
|
|
13737
|
+
export declare type RoadmapUpdateItemInput = {
|
|
13738
|
+
itemId: Scalars['ID'];
|
|
13739
|
+
projectId: Scalars['ID'];
|
|
13740
|
+
summary?: Maybe<Scalars['String']>;
|
|
13741
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13742
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13743
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
13744
|
+
rank?: Maybe<RoadmapUpdateItemRank>;
|
|
13745
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
13746
|
+
sprintId?: Maybe<Scalars['ID']>;
|
|
13747
|
+
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
13748
|
+
};
|
|
13749
|
+
export declare type RoadmapUpdateItemPayload = Payload & {
|
|
13750
|
+
__typename?: 'RoadmapUpdateItemPayload';
|
|
13751
|
+
success: Scalars['Boolean'];
|
|
13752
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13753
|
+
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13754
|
+
};
|
|
13755
|
+
export declare type RoadmapUpdateItemRank = {
|
|
13756
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
13757
|
+
afterId?: Maybe<Scalars['ID']>;
|
|
13758
|
+
};
|
|
13759
|
+
export declare type RoadmapUpdateItemResponse = {
|
|
13760
|
+
__typename?: 'RoadmapUpdateItemResponse';
|
|
13761
|
+
item?: Maybe<RoadmapItem>;
|
|
13762
|
+
};
|
|
13129
13763
|
export declare type RoadmapUserConfiguration = {
|
|
13130
13764
|
__typename?: 'RoadmapUserConfiguration';
|
|
13131
13765
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -13157,14 +13791,36 @@ export declare type RoadmapViewSettings = {
|
|
|
13157
13791
|
export declare type RoadmapsMutation = {
|
|
13158
13792
|
__typename?: 'RoadmapsMutation';
|
|
13159
13793
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13794
|
+
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13795
|
+
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
13796
|
+
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13797
|
+
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13160
13798
|
};
|
|
13161
13799
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13162
|
-
input
|
|
13800
|
+
input: RoadmapFeatureToggleInput;
|
|
13801
|
+
};
|
|
13802
|
+
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13803
|
+
sourceARI: Scalars['ID'];
|
|
13804
|
+
input: RoadmapAddItemInput;
|
|
13805
|
+
};
|
|
13806
|
+
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13807
|
+
sourceARI: Scalars['ID'];
|
|
13808
|
+
input: RoadmapUpdateItemInput;
|
|
13809
|
+
};
|
|
13810
|
+
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13811
|
+
sourceARI: Scalars['ID'];
|
|
13812
|
+
input: RoadmapToggleDependencyInput;
|
|
13813
|
+
};
|
|
13814
|
+
export declare type RoadmapsMutationRemoveRoadmapDependencyArgs = {
|
|
13815
|
+
sourceARI: Scalars['ID'];
|
|
13816
|
+
input: RoadmapToggleDependencyInput;
|
|
13163
13817
|
};
|
|
13164
13818
|
export declare type RoadmapsQuery = {
|
|
13165
13819
|
__typename?: 'RoadmapsQuery';
|
|
13166
13820
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
13167
13821
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
13822
|
+
roadmapFilterItems: Array<Scalars['ID']>;
|
|
13823
|
+
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
13168
13824
|
};
|
|
13169
13825
|
export declare type RoadmapsQueryRoadmapForSourceArgs = {
|
|
13170
13826
|
sourceARI: Scalars['ID'];
|
|
@@ -13174,6 +13830,13 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
|
13174
13830
|
sourceARI: Scalars['ID'];
|
|
13175
13831
|
ids: Array<Scalars['ID']>;
|
|
13176
13832
|
};
|
|
13833
|
+
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
13834
|
+
sourceARI: Scalars['ID'];
|
|
13835
|
+
quickFilterIds: Array<Scalars['ID']>;
|
|
13836
|
+
};
|
|
13837
|
+
export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
13838
|
+
sourceARI: Scalars['ID'];
|
|
13839
|
+
};
|
|
13177
13840
|
export declare type ScanPolarisProjectInput = {
|
|
13178
13841
|
project: Scalars['ID'];
|
|
13179
13842
|
refresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -13386,6 +14049,10 @@ export declare type SetAppStoredEntityPayload = Payload & {
|
|
|
13386
14049
|
success: Scalars['Boolean'];
|
|
13387
14050
|
errors?: Maybe<Array<MutationError>>;
|
|
13388
14051
|
};
|
|
14052
|
+
export declare type SetBoardEstimationTypeInput = {
|
|
14053
|
+
featureId: Scalars['String'];
|
|
14054
|
+
estimationType: Scalars['String'];
|
|
14055
|
+
};
|
|
13389
14056
|
export declare type SetColumnLimitInput = {
|
|
13390
14057
|
boardId: Scalars['ID'];
|
|
13391
14058
|
columnId: Scalars['ID'];
|
|
@@ -13835,7 +14502,7 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
13835
14502
|
projectType?: JiraProjectType;
|
|
13836
14503
|
filter?: JiraProjectFilterInput;
|
|
13837
14504
|
};
|
|
13838
|
-
export declare type SupportRequest =
|
|
14505
|
+
export declare type SupportRequest = {
|
|
13839
14506
|
__typename?: 'SupportRequest';
|
|
13840
14507
|
id: Scalars['ID'];
|
|
13841
14508
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -13847,12 +14514,16 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13847
14514
|
reporter: SupportRequestUser;
|
|
13848
14515
|
participants: Array<SupportRequestUser>;
|
|
13849
14516
|
fields: Array<SupportRequestField>;
|
|
14517
|
+
defaultFields: Array<SupportRequestField>;
|
|
14518
|
+
experienceFields?: Maybe<Array<SupportRequestField>>;
|
|
13850
14519
|
comments?: Maybe<SupportRequestComments>;
|
|
13851
14520
|
statuses: SupportRequestStatuses;
|
|
13852
14521
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13853
14522
|
targetScreen: Scalars['String'];
|
|
14523
|
+
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
13854
14524
|
lastComment: SupportRequestComments;
|
|
13855
14525
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
14526
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
13856
14527
|
};
|
|
13857
14528
|
export declare type SupportRequestCommentsArgs = {
|
|
13858
14529
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -13924,16 +14595,6 @@ export declare type SupportRequestComments = {
|
|
|
13924
14595
|
lastPage: Scalars['Boolean'];
|
|
13925
14596
|
values: Array<SupportRequestComment>;
|
|
13926
14597
|
};
|
|
13927
|
-
export declare type SupportRequestCommonRequest = {
|
|
13928
|
-
id: Scalars['ID'];
|
|
13929
|
-
summary?: Maybe<Scalars['String']>;
|
|
13930
|
-
description: Scalars['String'];
|
|
13931
|
-
requestTypeName: Scalars['String'];
|
|
13932
|
-
createdDate: SupportRequestDisplayableDateTime;
|
|
13933
|
-
status: SupportRequestStatus;
|
|
13934
|
-
reporter: SupportRequestUser;
|
|
13935
|
-
participants: Array<SupportRequestUser>;
|
|
13936
|
-
};
|
|
13937
14598
|
export declare type SupportRequestContactRelation = {
|
|
13938
14599
|
__typename?: 'SupportRequestContactRelation';
|
|
13939
14600
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
@@ -13955,7 +14616,7 @@ export declare type SupportRequestFieldValue = {
|
|
|
13955
14616
|
__typename?: 'SupportRequestFieldValue';
|
|
13956
14617
|
value: Scalars['String'];
|
|
13957
14618
|
};
|
|
13958
|
-
export declare type SupportRequestHierarchyRequest =
|
|
14619
|
+
export declare type SupportRequestHierarchyRequest = {
|
|
13959
14620
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
13960
14621
|
id: Scalars['ID'];
|
|
13961
14622
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -14184,15 +14845,67 @@ export declare type Testing = {
|
|
|
14184
14845
|
__typename?: 'Testing';
|
|
14185
14846
|
echo?: Maybe<Scalars['String']>;
|
|
14186
14847
|
uuid?: Maybe<Scalars['String']>;
|
|
14848
|
+
error?: Maybe<Scalars['String']>;
|
|
14849
|
+
throwException?: Maybe<Scalars['String']>;
|
|
14187
14850
|
movie?: Maybe<TestingMovie>;
|
|
14188
14851
|
movies?: Maybe<Array<Maybe<TestingMovie>>>;
|
|
14852
|
+
performance?: Maybe<TestingPerformance>;
|
|
14189
14853
|
};
|
|
14190
14854
|
export declare type TestingEchoArgs = {
|
|
14191
14855
|
message?: Maybe<Scalars['String']>;
|
|
14192
14856
|
};
|
|
14857
|
+
export declare type TestingErrorArgs = {
|
|
14858
|
+
message?: Maybe<Scalars['String']>;
|
|
14859
|
+
};
|
|
14860
|
+
export declare type TestingThrowExceptionArgs = {
|
|
14861
|
+
message?: Maybe<Scalars['String']>;
|
|
14862
|
+
};
|
|
14193
14863
|
export declare type TestingMovieArgs = {
|
|
14194
14864
|
id: Scalars['ID'];
|
|
14195
14865
|
};
|
|
14866
|
+
export declare type TestingActivityConnection = {
|
|
14867
|
+
__typename?: 'TestingActivityConnection';
|
|
14868
|
+
nodes: Array<Maybe<TestingActivityItem>>;
|
|
14869
|
+
};
|
|
14870
|
+
export declare type TestingActivityContributor = {
|
|
14871
|
+
__typename?: 'TestingActivityContributor';
|
|
14872
|
+
profile?: Maybe<TestingActivityUser>;
|
|
14873
|
+
};
|
|
14874
|
+
export declare enum TestingActivityEventType {
|
|
14875
|
+
Assigned = "ASSIGNED",
|
|
14876
|
+
Unassigned = "UNASSIGNED",
|
|
14877
|
+
Viewed = "VIEWED",
|
|
14878
|
+
Commented = "COMMENTED",
|
|
14879
|
+
Updated = "UPDATED",
|
|
14880
|
+
Created = "CREATED",
|
|
14881
|
+
Liked = "LIKED",
|
|
14882
|
+
Transitioned = "TRANSITIONED",
|
|
14883
|
+
Published = "PUBLISHED",
|
|
14884
|
+
Edited = "EDITED"
|
|
14885
|
+
}
|
|
14886
|
+
export declare type TestingActivityItem = Node & {
|
|
14887
|
+
__typename?: 'TestingActivityItem';
|
|
14888
|
+
id: Scalars['ID'];
|
|
14889
|
+
timestamp?: Maybe<Scalars['String']>;
|
|
14890
|
+
eventType?: Maybe<TestingActivityEventType>;
|
|
14891
|
+
object?: Maybe<TestingActivityObject>;
|
|
14892
|
+
containers?: Maybe<Array<Maybe<TestingActivityObject>>>;
|
|
14893
|
+
contributors?: Maybe<Array<Maybe<TestingActivityContributor>>>;
|
|
14894
|
+
};
|
|
14895
|
+
export declare type TestingActivityObject = Node & {
|
|
14896
|
+
__typename?: 'TestingActivityObject';
|
|
14897
|
+
id: Scalars['ID'];
|
|
14898
|
+
name?: Maybe<Scalars['String']>;
|
|
14899
|
+
cloudID?: Maybe<Scalars['String']>;
|
|
14900
|
+
url?: Maybe<Scalars['String']>;
|
|
14901
|
+
iconURL?: Maybe<Scalars['String']>;
|
|
14902
|
+
};
|
|
14903
|
+
export declare type TestingActivityUser = {
|
|
14904
|
+
__typename?: 'TestingActivityUser';
|
|
14905
|
+
accountId: Scalars['ID'];
|
|
14906
|
+
name?: Maybe<Scalars['String']>;
|
|
14907
|
+
picture?: Maybe<Scalars['String']>;
|
|
14908
|
+
};
|
|
14196
14909
|
export declare type TestingCharacter = {
|
|
14197
14910
|
__typename?: 'TestingCharacter';
|
|
14198
14911
|
id: Scalars['ID'];
|
|
@@ -14204,6 +14917,27 @@ export declare type TestingMovie = {
|
|
|
14204
14917
|
renamedName?: Maybe<Scalars['String']>;
|
|
14205
14918
|
characters?: Maybe<Array<Maybe<TestingCharacter>>>;
|
|
14206
14919
|
};
|
|
14920
|
+
export declare type TestingMyActivity = {
|
|
14921
|
+
__typename?: 'TestingMyActivity';
|
|
14922
|
+
workedOn: TestingActivityConnection;
|
|
14923
|
+
viewed: TestingActivityConnection;
|
|
14924
|
+
};
|
|
14925
|
+
export declare type TestingMyActivityWorkedOnArgs = {
|
|
14926
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
14927
|
+
howManyContainers?: Maybe<Scalars['Int']>;
|
|
14928
|
+
howManyContributors?: Maybe<Scalars['Int']>;
|
|
14929
|
+
inducedDelay?: Maybe<Scalars['Int']>;
|
|
14930
|
+
};
|
|
14931
|
+
export declare type TestingMyActivityViewedArgs = {
|
|
14932
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
14933
|
+
howManyContainers?: Maybe<Scalars['Int']>;
|
|
14934
|
+
howManyContributors?: Maybe<Scalars['Int']>;
|
|
14935
|
+
inducedDelay?: Maybe<Scalars['Int']>;
|
|
14936
|
+
};
|
|
14937
|
+
export declare type TestingPerformance = {
|
|
14938
|
+
__typename?: 'TestingPerformance';
|
|
14939
|
+
myActivities: TestingMyActivity;
|
|
14940
|
+
};
|
|
14207
14941
|
export declare type ThirdPartyRepositoryInput = {
|
|
14208
14942
|
id: Scalars['ID'];
|
|
14209
14943
|
webUrl?: Maybe<Scalars['String']>;
|
|
@@ -14216,6 +14950,18 @@ export declare type TimeSeriesPoint = {
|
|
|
14216
14950
|
x: Scalars['DateTime'];
|
|
14217
14951
|
y: Scalars['Int'];
|
|
14218
14952
|
};
|
|
14953
|
+
export declare type ToggleBoardFeatureInput = {
|
|
14954
|
+
featureId: Scalars['String'];
|
|
14955
|
+
enabled: Scalars['Boolean'];
|
|
14956
|
+
};
|
|
14957
|
+
export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
14958
|
+
__typename?: 'ToggleBoardFeatureOutput';
|
|
14959
|
+
featureGroups: BoardFeatureGroupConnection;
|
|
14960
|
+
statusCode: Scalars['Int'];
|
|
14961
|
+
success: Scalars['Boolean'];
|
|
14962
|
+
message: Scalars['String'];
|
|
14963
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
14964
|
+
};
|
|
14219
14965
|
export declare type TownsquareComment = Node & {
|
|
14220
14966
|
__typename?: 'TownsquareComment';
|
|
14221
14967
|
creator?: Maybe<User>;
|
|
@@ -14911,6 +15657,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
14911
15657
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
14912
15658
|
timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
|
|
14913
15659
|
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
15660
|
+
sortMode?: Maybe<PolarisViewSortMode>;
|
|
14914
15661
|
};
|
|
14915
15662
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
14916
15663
|
__typename?: 'UpdatePolarisViewPayload';
|