@forge/cli-shared 0.0.0-experimental-64caa5a → 0.0.0-experimental-7c72fec
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 +81 -10
- package/out/graphql/graphql-types.d.ts +990 -87
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +127 -16
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/shared/product.d.ts +1 -3
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +5 -9
- package/package.json +2 -2
|
@@ -157,11 +157,40 @@ export declare type ActivitiesUser = {
|
|
|
157
157
|
__typename?: 'ActivitiesUser';
|
|
158
158
|
profile?: Maybe<User>;
|
|
159
159
|
};
|
|
160
|
+
export declare type Activity = {
|
|
161
|
+
__typename?: 'Activity';
|
|
162
|
+
all: ActivityConnection;
|
|
163
|
+
workedOn: ActivityConnection;
|
|
164
|
+
myActivity?: Maybe<MyActivity>;
|
|
165
|
+
};
|
|
166
|
+
export declare type ActivityAllArgs = {
|
|
167
|
+
filter?: Maybe<ActivityFilter>;
|
|
168
|
+
first?: Maybe<Scalars['Int']>;
|
|
169
|
+
after?: Maybe<Scalars['String']>;
|
|
170
|
+
};
|
|
171
|
+
export declare type ActivityWorkedOnArgs = {
|
|
172
|
+
filter?: Maybe<ActivityFilter>;
|
|
173
|
+
first?: Maybe<Scalars['Int']>;
|
|
174
|
+
after?: Maybe<Scalars['String']>;
|
|
175
|
+
};
|
|
176
|
+
export declare type ActivityConnection = {
|
|
177
|
+
__typename?: 'ActivityConnection';
|
|
178
|
+
edges?: Maybe<Array<Maybe<ActivityItemEdge>>>;
|
|
179
|
+
pageInfo: ActivityPageInfo;
|
|
180
|
+
};
|
|
160
181
|
export declare type ActivityEdge = {
|
|
161
182
|
__typename?: 'ActivityEdge';
|
|
162
183
|
cursor: Scalars['String'];
|
|
163
184
|
node?: Maybe<ActivitiesItem>;
|
|
164
185
|
};
|
|
186
|
+
export declare type ActivityEvent = {
|
|
187
|
+
__typename?: 'ActivityEvent';
|
|
188
|
+
id: Scalars['ID'];
|
|
189
|
+
timestamp?: Maybe<Scalars['DateTime']>;
|
|
190
|
+
eventType?: Maybe<Scalars['String']>;
|
|
191
|
+
actor?: Maybe<User>;
|
|
192
|
+
extension?: Maybe<ActivitiesEventExtension>;
|
|
193
|
+
};
|
|
165
194
|
export declare enum ActivityEventType {
|
|
166
195
|
Assigned = "ASSIGNED",
|
|
167
196
|
Unassigned = "UNASSIGNED",
|
|
@@ -174,6 +203,43 @@ export declare enum ActivityEventType {
|
|
|
174
203
|
Published = "PUBLISHED",
|
|
175
204
|
Edited = "EDITED"
|
|
176
205
|
}
|
|
206
|
+
export declare type ActivityFilter = {
|
|
207
|
+
actors?: Maybe<Array<Scalars['ID']>>;
|
|
208
|
+
type?: Maybe<ActivitiesFilterType>;
|
|
209
|
+
arguments?: Maybe<ActivityFilterArgs>;
|
|
210
|
+
};
|
|
211
|
+
export declare type ActivityFilterArgs = {
|
|
212
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
213
|
+
products?: Maybe<Array<Scalars['String']>>;
|
|
214
|
+
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
215
|
+
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
216
|
+
transitions?: Maybe<Array<TransitionFilter>>;
|
|
217
|
+
containerIds?: Maybe<Array<Scalars['ID']>>;
|
|
218
|
+
earliestStart?: Maybe<Scalars['DateTime']>;
|
|
219
|
+
latestStart?: Maybe<Scalars['DateTime']>;
|
|
220
|
+
};
|
|
221
|
+
export declare type ActivityItemEdge = {
|
|
222
|
+
__typename?: 'ActivityItemEdge';
|
|
223
|
+
cursor: Scalars['String'];
|
|
224
|
+
node?: Maybe<ActivityNode>;
|
|
225
|
+
};
|
|
226
|
+
export declare type ActivityNode = Node & {
|
|
227
|
+
__typename?: 'ActivityNode';
|
|
228
|
+
id: Scalars['ID'];
|
|
229
|
+
object?: Maybe<ActivityObject>;
|
|
230
|
+
event?: Maybe<ActivityEvent>;
|
|
231
|
+
};
|
|
232
|
+
export declare type ActivityObject = {
|
|
233
|
+
__typename?: 'ActivityObject';
|
|
234
|
+
id: Scalars['ID'];
|
|
235
|
+
rootContainerId?: Maybe<Scalars['ID']>;
|
|
236
|
+
type?: Maybe<Scalars['String']>;
|
|
237
|
+
product?: Maybe<Scalars['String']>;
|
|
238
|
+
subProduct?: Maybe<Scalars['String']>;
|
|
239
|
+
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
240
|
+
data?: Maybe<ActivityObjectData>;
|
|
241
|
+
};
|
|
242
|
+
export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
177
243
|
export declare enum ActivityObjectType {
|
|
178
244
|
Site = "SITE",
|
|
179
245
|
Project = "PROJECT",
|
|
@@ -230,6 +296,7 @@ export declare enum ApiContext {
|
|
|
230
296
|
}
|
|
231
297
|
export declare enum ApiGroup {
|
|
232
298
|
Compass = "COMPASS",
|
|
299
|
+
Confluence = "CONFLUENCE",
|
|
233
300
|
Jira = "JIRA",
|
|
234
301
|
Forge = "FORGE",
|
|
235
302
|
Polaris = "POLARIS",
|
|
@@ -390,6 +457,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
390
457
|
requiresLicense: Scalars['Boolean'];
|
|
391
458
|
permissions: Array<AppPermission>;
|
|
392
459
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
460
|
+
storage: Storage;
|
|
393
461
|
};
|
|
394
462
|
export declare type AppEnvironmentVersionConnection = {
|
|
395
463
|
__typename?: 'AppEnvironmentVersionConnection';
|
|
@@ -743,6 +811,7 @@ export declare type AppUnsubscribePayload = Payload & {
|
|
|
743
811
|
export declare type AppUser = User & {
|
|
744
812
|
__typename?: 'AppUser';
|
|
745
813
|
accountId: Scalars['ID'];
|
|
814
|
+
canonicalAccountId: Scalars['ID'];
|
|
746
815
|
accountStatus: AccountStatus;
|
|
747
816
|
name: Scalars['String'];
|
|
748
817
|
picture: Scalars['URL'];
|
|
@@ -802,6 +871,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
|
|
|
802
871
|
export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
803
872
|
__typename?: 'AtlassianAccountUser';
|
|
804
873
|
accountId: Scalars['ID'];
|
|
874
|
+
canonicalAccountId: Scalars['ID'];
|
|
805
875
|
accountStatus: AccountStatus;
|
|
806
876
|
name: Scalars['String'];
|
|
807
877
|
picture: Scalars['URL'];
|
|
@@ -1282,6 +1352,11 @@ export declare type ChildCardsMetadata = {
|
|
|
1282
1352
|
complete?: Maybe<Scalars['Int']>;
|
|
1283
1353
|
total?: Maybe<Scalars['Int']>;
|
|
1284
1354
|
};
|
|
1355
|
+
export declare enum Classification {
|
|
1356
|
+
Ugc = "ugc",
|
|
1357
|
+
Pii = "pii",
|
|
1358
|
+
Other = "other"
|
|
1359
|
+
}
|
|
1285
1360
|
export declare type CloudAppScope = {
|
|
1286
1361
|
__typename?: 'CloudAppScope';
|
|
1287
1362
|
id: Scalars['ID'];
|
|
@@ -1366,6 +1441,16 @@ export declare type CompassAcknowledgeAnnouncementPayload = Payload & {
|
|
|
1366
1441
|
success: Scalars['Boolean'];
|
|
1367
1442
|
errors?: Maybe<Array<MutationError>>;
|
|
1368
1443
|
};
|
|
1444
|
+
export declare type CompassAlertEvent = CompassEvent & {
|
|
1445
|
+
__typename?: 'CompassAlertEvent';
|
|
1446
|
+
eventType: CompassEventType;
|
|
1447
|
+
displayName: Scalars['String'];
|
|
1448
|
+
lastUpdated: Scalars['DateTime'];
|
|
1449
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1450
|
+
alertId: Scalars['ID'];
|
|
1451
|
+
description?: Maybe<Scalars['String']>;
|
|
1452
|
+
url?: Maybe<Scalars['URL']>;
|
|
1453
|
+
};
|
|
1369
1454
|
export declare type CompassAnnouncement = {
|
|
1370
1455
|
__typename?: 'CompassAnnouncement';
|
|
1371
1456
|
id: Scalars['ID'];
|
|
@@ -1413,6 +1498,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1413
1498
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
1414
1499
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
1415
1500
|
createDeploymentEvent?: Maybe<CreateDeploymentEventsPayload>;
|
|
1501
|
+
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
1416
1502
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
1417
1503
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
1418
1504
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
@@ -1528,6 +1614,9 @@ export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
|
1528
1614
|
export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
1529
1615
|
input: CreateDeploymentEventInput;
|
|
1530
1616
|
};
|
|
1617
|
+
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1618
|
+
input: CompassCreateEventInput;
|
|
1619
|
+
};
|
|
1531
1620
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
1532
1621
|
input: AttachEventSourceInput;
|
|
1533
1622
|
};
|
|
@@ -1582,6 +1671,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1582
1671
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1583
1672
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1584
1673
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1674
|
+
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1585
1675
|
};
|
|
1586
1676
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1587
1677
|
id: Scalars['ID'];
|
|
@@ -1624,6 +1714,11 @@ export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
|
1624
1714
|
cloudId: Scalars['ID'];
|
|
1625
1715
|
metricDefinitionId: Scalars['ID'];
|
|
1626
1716
|
};
|
|
1717
|
+
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
1718
|
+
cloudId: Scalars['ID'];
|
|
1719
|
+
eventType: CompassEventType;
|
|
1720
|
+
externalEventSourceId: Scalars['ID'];
|
|
1721
|
+
};
|
|
1627
1722
|
export declare type CompassChangeMetadata = {
|
|
1628
1723
|
__typename?: 'CompassChangeMetadata';
|
|
1629
1724
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1699,6 +1794,15 @@ export declare enum CompassComponentType {
|
|
|
1699
1794
|
Service = "SERVICE",
|
|
1700
1795
|
Other = "OTHER"
|
|
1701
1796
|
}
|
|
1797
|
+
export declare type CompassCreateAlertEventInput = {
|
|
1798
|
+
displayName: Scalars['String'];
|
|
1799
|
+
lastUpdated: Scalars['DateTime'];
|
|
1800
|
+
alertId: Scalars['ID'];
|
|
1801
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1802
|
+
description?: Maybe<Scalars['String']>;
|
|
1803
|
+
url?: Maybe<Scalars['URL']>;
|
|
1804
|
+
externalEventSourceId: Scalars['ID'];
|
|
1805
|
+
};
|
|
1702
1806
|
export declare type CompassCreateAnnouncementInput = {
|
|
1703
1807
|
componentId: Scalars['ID'];
|
|
1704
1808
|
title: Scalars['String'];
|
|
@@ -1711,6 +1815,67 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1711
1815
|
success: Scalars['Boolean'];
|
|
1712
1816
|
errors?: Maybe<Array<MutationError>>;
|
|
1713
1817
|
};
|
|
1818
|
+
export declare type CompassCreateCustomEventInput = {
|
|
1819
|
+
displayName: Scalars['String'];
|
|
1820
|
+
lastUpdated: Scalars['DateTime'];
|
|
1821
|
+
customEventId: Scalars['ID'];
|
|
1822
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1823
|
+
description?: Maybe<Scalars['String']>;
|
|
1824
|
+
url?: Maybe<Scalars['URL']>;
|
|
1825
|
+
icon: CompassCustomEventIcon;
|
|
1826
|
+
externalEventSourceId: Scalars['ID'];
|
|
1827
|
+
};
|
|
1828
|
+
export declare type CompassCreateDeploymentEventInput = {
|
|
1829
|
+
deploymentSequenceNumber: Scalars['Long'];
|
|
1830
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1831
|
+
displayName: Scalars['String'];
|
|
1832
|
+
url: Scalars['URL'];
|
|
1833
|
+
description: Scalars['String'];
|
|
1834
|
+
state: CompassDeploymentEventState;
|
|
1835
|
+
lastUpdated: Scalars['DateTime'];
|
|
1836
|
+
pipeline: CompassDeploymentEventPipelineInput;
|
|
1837
|
+
environment: CompassDeploymentEventEnvironmentInput;
|
|
1838
|
+
externalEventSourceId: Scalars['ID'];
|
|
1839
|
+
};
|
|
1840
|
+
export declare type CompassCreateEventInput = {
|
|
1841
|
+
cloudId: Scalars['ID'];
|
|
1842
|
+
event: CompassEventInput;
|
|
1843
|
+
};
|
|
1844
|
+
export declare type CompassCreateEventsPayload = Payload & {
|
|
1845
|
+
__typename?: 'CompassCreateEventsPayload';
|
|
1846
|
+
success: Scalars['Boolean'];
|
|
1847
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1848
|
+
};
|
|
1849
|
+
export declare type CompassCreateFlagEventInput = {
|
|
1850
|
+
displayName: Scalars['String'];
|
|
1851
|
+
lastUpdated: Scalars['DateTime'];
|
|
1852
|
+
flagId: Scalars['ID'];
|
|
1853
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1854
|
+
description?: Maybe<Scalars['String']>;
|
|
1855
|
+
url?: Maybe<Scalars['URL']>;
|
|
1856
|
+
status?: Maybe<Scalars['String']>;
|
|
1857
|
+
externalEventSourceId: Scalars['ID'];
|
|
1858
|
+
};
|
|
1859
|
+
export declare type CompassCreateIncidentEventInput = {
|
|
1860
|
+
displayName: Scalars['String'];
|
|
1861
|
+
lastUpdated: Scalars['DateTime'];
|
|
1862
|
+
incidentId: Scalars['ID'];
|
|
1863
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1864
|
+
description?: Maybe<Scalars['String']>;
|
|
1865
|
+
url?: Maybe<Scalars['URL']>;
|
|
1866
|
+
state: CompassIncidentEventState;
|
|
1867
|
+
externalEventSourceId: Scalars['ID'];
|
|
1868
|
+
};
|
|
1869
|
+
export declare type CompassCreateLifecycleEventInput = {
|
|
1870
|
+
displayName: Scalars['String'];
|
|
1871
|
+
lastUpdated: Scalars['DateTime'];
|
|
1872
|
+
lifecycleId: Scalars['ID'];
|
|
1873
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1874
|
+
description?: Maybe<Scalars['String']>;
|
|
1875
|
+
url?: Maybe<Scalars['URL']>;
|
|
1876
|
+
stage: CompassLifecycleEventStage;
|
|
1877
|
+
externalEventSourceId: Scalars['ID'];
|
|
1878
|
+
};
|
|
1714
1879
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
1715
1880
|
cloudId: Scalars['ID'];
|
|
1716
1881
|
name: Scalars['String'];
|
|
@@ -1761,6 +1926,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
1761
1926
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
1762
1927
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
1763
1928
|
}
|
|
1929
|
+
export declare type CompassCustomEvent = CompassEvent & {
|
|
1930
|
+
__typename?: 'CompassCustomEvent';
|
|
1931
|
+
eventType: CompassEventType;
|
|
1932
|
+
displayName: Scalars['String'];
|
|
1933
|
+
lastUpdated: Scalars['DateTime'];
|
|
1934
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1935
|
+
customEventId: Scalars['ID'];
|
|
1936
|
+
description?: Maybe<Scalars['String']>;
|
|
1937
|
+
url?: Maybe<Scalars['URL']>;
|
|
1938
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
1939
|
+
};
|
|
1940
|
+
export declare enum CompassCustomEventIcon {
|
|
1941
|
+
Info = "INFO",
|
|
1942
|
+
Warning = "WARNING",
|
|
1943
|
+
Checkpoint = "CHECKPOINT"
|
|
1944
|
+
}
|
|
1764
1945
|
export declare type CompassDeleteAnnouncementInput = {
|
|
1765
1946
|
cloudId: Scalars['ID'];
|
|
1766
1947
|
id: Scalars['ID'];
|
|
@@ -1808,7 +1989,7 @@ export declare type CompassDeploymentEvent = CompassEvent & {
|
|
|
1808
1989
|
lastUpdated: Scalars['DateTime'];
|
|
1809
1990
|
displayName: Scalars['String'];
|
|
1810
1991
|
deploymentSequenceNumber?: Maybe<Scalars['Long']>;
|
|
1811
|
-
updateSequenceNumber
|
|
1992
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1812
1993
|
url?: Maybe<Scalars['URL']>;
|
|
1813
1994
|
description?: Maybe<Scalars['String']>;
|
|
1814
1995
|
state?: Maybe<CompassDeploymentEventState>;
|
|
@@ -1870,6 +2051,7 @@ export declare type CompassEvent = {
|
|
|
1870
2051
|
eventType: CompassEventType;
|
|
1871
2052
|
displayName: Scalars['String'];
|
|
1872
2053
|
lastUpdated: Scalars['DateTime'];
|
|
2054
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1873
2055
|
description?: Maybe<Scalars['String']>;
|
|
1874
2056
|
url?: Maybe<Scalars['URL']>;
|
|
1875
2057
|
};
|
|
@@ -1884,13 +2066,32 @@ export declare type CompassEventEdge = {
|
|
|
1884
2066
|
cursor: Scalars['String'];
|
|
1885
2067
|
node?: Maybe<CompassEvent>;
|
|
1886
2068
|
};
|
|
2069
|
+
export declare type CompassEventInput = {
|
|
2070
|
+
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2071
|
+
incident?: Maybe<CompassCreateIncidentEventInput>;
|
|
2072
|
+
flag?: Maybe<CompassCreateFlagEventInput>;
|
|
2073
|
+
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
2074
|
+
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2075
|
+
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2076
|
+
};
|
|
2077
|
+
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
1887
2078
|
export declare type CompassEventTimeParameters = {
|
|
1888
2079
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
1889
2080
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
1890
2081
|
};
|
|
1891
2082
|
export declare enum CompassEventType {
|
|
1892
|
-
Deployment = "DEPLOYMENT"
|
|
2083
|
+
Deployment = "DEPLOYMENT",
|
|
2084
|
+
Incident = "INCIDENT",
|
|
2085
|
+
Flag = "FLAG",
|
|
2086
|
+
Alert = "ALERT",
|
|
2087
|
+
Lifecycle = "LIFECYCLE",
|
|
2088
|
+
Custom = "CUSTOM"
|
|
1893
2089
|
}
|
|
2090
|
+
export declare type CompassEventsInEventSourceQuery = {
|
|
2091
|
+
first?: Maybe<Scalars['Int']>;
|
|
2092
|
+
after?: Maybe<Scalars['String']>;
|
|
2093
|
+
timeParameters?: Maybe<CompassEventTimeParameters>;
|
|
2094
|
+
};
|
|
1894
2095
|
export declare type CompassEventsQuery = {
|
|
1895
2096
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
1896
2097
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -1933,6 +2134,17 @@ export declare enum CompassFieldType {
|
|
|
1933
2134
|
export declare type CompassFieldValueInput = {
|
|
1934
2135
|
enum?: Maybe<CompassEnumFieldValueInput>;
|
|
1935
2136
|
};
|
|
2137
|
+
export declare type CompassFlagEvent = CompassEvent & {
|
|
2138
|
+
__typename?: 'CompassFlagEvent';
|
|
2139
|
+
eventType: CompassEventType;
|
|
2140
|
+
displayName: Scalars['String'];
|
|
2141
|
+
lastUpdated: Scalars['DateTime'];
|
|
2142
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2143
|
+
flagId: Scalars['ID'];
|
|
2144
|
+
description?: Maybe<Scalars['String']>;
|
|
2145
|
+
url?: Maybe<Scalars['URL']>;
|
|
2146
|
+
status?: Maybe<Scalars['String']>;
|
|
2147
|
+
};
|
|
1936
2148
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
1937
2149
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
1938
2150
|
id: Scalars['ID'];
|
|
@@ -1984,6 +2196,23 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
1984
2196
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
1985
2197
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
1986
2198
|
};
|
|
2199
|
+
export declare type CompassIncidentEvent = CompassEvent & {
|
|
2200
|
+
__typename?: 'CompassIncidentEvent';
|
|
2201
|
+
eventType: CompassEventType;
|
|
2202
|
+
displayName: Scalars['String'];
|
|
2203
|
+
lastUpdated: Scalars['DateTime'];
|
|
2204
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2205
|
+
incidentId: Scalars['ID'];
|
|
2206
|
+
description?: Maybe<Scalars['String']>;
|
|
2207
|
+
url?: Maybe<Scalars['URL']>;
|
|
2208
|
+
state?: Maybe<CompassIncidentEventState>;
|
|
2209
|
+
};
|
|
2210
|
+
export declare enum CompassIncidentEventState {
|
|
2211
|
+
Open = "OPEN",
|
|
2212
|
+
Resolved = "RESOLVED",
|
|
2213
|
+
Closed = "CLOSED",
|
|
2214
|
+
Deleted = "DELETED"
|
|
2215
|
+
}
|
|
1987
2216
|
export declare type CompassInsertMetricValueInput = {
|
|
1988
2217
|
metricSourceId: Scalars['ID'];
|
|
1989
2218
|
value: CompassMetricValueInput;
|
|
@@ -1994,6 +2223,23 @@ export declare type CompassInsertMetricValuePayload = Payload & {
|
|
|
1994
2223
|
errors?: Maybe<Array<MutationError>>;
|
|
1995
2224
|
metricSource?: Maybe<CompassMetricSource>;
|
|
1996
2225
|
};
|
|
2226
|
+
export declare type CompassLifecycleEvent = CompassEvent & {
|
|
2227
|
+
__typename?: 'CompassLifecycleEvent';
|
|
2228
|
+
eventType: CompassEventType;
|
|
2229
|
+
displayName: Scalars['String'];
|
|
2230
|
+
lastUpdated: Scalars['DateTime'];
|
|
2231
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2232
|
+
lifecycleId: Scalars['ID'];
|
|
2233
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2234
|
+
description?: Maybe<Scalars['String']>;
|
|
2235
|
+
url?: Maybe<Scalars['URL']>;
|
|
2236
|
+
};
|
|
2237
|
+
export declare enum CompassLifecycleEventStage {
|
|
2238
|
+
PreRelease = "PRE_RELEASE",
|
|
2239
|
+
Production = "PRODUCTION",
|
|
2240
|
+
Deprecation = "DEPRECATION",
|
|
2241
|
+
EndOfLife = "END_OF_LIFE"
|
|
2242
|
+
}
|
|
1997
2243
|
export declare type CompassLink = {
|
|
1998
2244
|
__typename?: 'CompassLink';
|
|
1999
2245
|
id: Scalars['ID'];
|
|
@@ -2173,6 +2419,7 @@ export declare type CompassScorecard = Node & {
|
|
|
2173
2419
|
importance: CompassScorecardImportance;
|
|
2174
2420
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
2175
2421
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
2422
|
+
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
2176
2423
|
changeMetadata: CompassChangeMetadata;
|
|
2177
2424
|
};
|
|
2178
2425
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
@@ -2499,11 +2746,27 @@ export declare type ConfluenceContentBody = {
|
|
|
2499
2746
|
styledView?: Maybe<Scalars['String']>;
|
|
2500
2747
|
view?: Maybe<Scalars['String']>;
|
|
2501
2748
|
};
|
|
2749
|
+
export declare type ConfluenceContentBodyInput = {
|
|
2750
|
+
representation: ConfluenceContentRepresentation;
|
|
2751
|
+
value: Scalars['String'];
|
|
2752
|
+
};
|
|
2502
2753
|
export declare type ConfluenceContentMetadata = {
|
|
2503
2754
|
__typename?: 'ConfluenceContentMetadata';
|
|
2504
2755
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2505
2756
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2506
2757
|
};
|
|
2758
|
+
export declare enum ConfluenceContentRepresentation {
|
|
2759
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
2760
|
+
Editor = "EDITOR",
|
|
2761
|
+
Editor2 = "EDITOR2",
|
|
2762
|
+
ExportView = "EXPORT_VIEW",
|
|
2763
|
+
Plain = "PLAIN",
|
|
2764
|
+
Raw = "RAW",
|
|
2765
|
+
Storage = "STORAGE",
|
|
2766
|
+
StyledView = "STYLED_VIEW",
|
|
2767
|
+
View = "VIEW",
|
|
2768
|
+
Wiki = "WIKI"
|
|
2769
|
+
}
|
|
2507
2770
|
export declare enum ConfluenceContentStatus {
|
|
2508
2771
|
Archived = "ARCHIVED",
|
|
2509
2772
|
Current = "CURRENT",
|
|
@@ -2524,6 +2787,30 @@ export declare enum ConfluenceContentType {
|
|
|
2524
2787
|
Comment = "COMMENT",
|
|
2525
2788
|
Page = "PAGE"
|
|
2526
2789
|
}
|
|
2790
|
+
export declare type ConfluenceCreateBlogPostInput = {
|
|
2791
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2792
|
+
spaceKey: Scalars['String'];
|
|
2793
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2794
|
+
title?: Maybe<Scalars['String']>;
|
|
2795
|
+
};
|
|
2796
|
+
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
2797
|
+
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
2798
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2799
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2800
|
+
success: Scalars['Boolean'];
|
|
2801
|
+
};
|
|
2802
|
+
export declare type ConfluenceCreatePageInput = {
|
|
2803
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2804
|
+
spaceKey: Scalars['String'];
|
|
2805
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2806
|
+
title?: Maybe<Scalars['String']>;
|
|
2807
|
+
};
|
|
2808
|
+
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
2809
|
+
__typename?: 'ConfluenceCreatePagePayload';
|
|
2810
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
2811
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2812
|
+
success: Scalars['Boolean'];
|
|
2813
|
+
};
|
|
2527
2814
|
export declare type ConfluenceCreateSpaceInput = {
|
|
2528
2815
|
key: Scalars['String'];
|
|
2529
2816
|
name: Scalars['String'];
|
|
@@ -2535,6 +2822,24 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2535
2822
|
errors?: Maybe<Array<MutationError>>;
|
|
2536
2823
|
success: Scalars['Boolean'];
|
|
2537
2824
|
};
|
|
2825
|
+
export declare type ConfluenceDeleteBlogPostInput = {
|
|
2826
|
+
id: Scalars['ID'];
|
|
2827
|
+
status: ConfluenceMutationContentStatus;
|
|
2828
|
+
};
|
|
2829
|
+
export declare type ConfluenceDeleteBlogPostPayload = Payload & {
|
|
2830
|
+
__typename?: 'ConfluenceDeleteBlogPostPayload';
|
|
2831
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2832
|
+
success: Scalars['Boolean'];
|
|
2833
|
+
};
|
|
2834
|
+
export declare type ConfluenceDeletePageInput = {
|
|
2835
|
+
id: Scalars['ID'];
|
|
2836
|
+
status: ConfluenceMutationContentStatus;
|
|
2837
|
+
};
|
|
2838
|
+
export declare type ConfluenceDeletePagePayload = Payload & {
|
|
2839
|
+
__typename?: 'ConfluenceDeletePagePayload';
|
|
2840
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2841
|
+
success: Scalars['Boolean'];
|
|
2842
|
+
};
|
|
2538
2843
|
export declare type ConfluenceInlineTask = {
|
|
2539
2844
|
__typename?: 'ConfluenceInlineTask';
|
|
2540
2845
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2563,15 +2868,68 @@ export declare type ConfluenceLabel = {
|
|
|
2563
2868
|
};
|
|
2564
2869
|
export declare type ConfluenceMutationApi = {
|
|
2565
2870
|
__typename?: 'ConfluenceMutationApi';
|
|
2871
|
+
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
2872
|
+
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
2566
2873
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2874
|
+
confluenceDeleteBlogPost?: Maybe<ConfluenceDeleteBlogPostPayload>;
|
|
2875
|
+
confluenceDeletePage?: Maybe<ConfluenceDeletePagePayload>;
|
|
2876
|
+
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
2877
|
+
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
2878
|
+
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
2879
|
+
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
2880
|
+
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
2881
|
+
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
2882
|
+
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
2883
|
+
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2567
2884
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2568
2885
|
};
|
|
2886
|
+
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2887
|
+
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
2888
|
+
};
|
|
2889
|
+
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
2890
|
+
cloudId: Scalars['ID'];
|
|
2891
|
+
pageInput: ConfluenceCreatePageInput;
|
|
2892
|
+
};
|
|
2569
2893
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2570
2894
|
input: ConfluenceCreateSpaceInput;
|
|
2571
2895
|
};
|
|
2896
|
+
export declare type ConfluenceMutationApiConfluenceDeleteBlogPostArgs = {
|
|
2897
|
+
deletBlogPostInput: ConfluenceDeleteBlogPostInput;
|
|
2898
|
+
};
|
|
2899
|
+
export declare type ConfluenceMutationApiConfluenceDeletePageArgs = {
|
|
2900
|
+
deletPageInput: ConfluenceDeletePageInput;
|
|
2901
|
+
};
|
|
2902
|
+
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
2903
|
+
publishBlogPostInput: ConfluencePublishBlogPostInput;
|
|
2904
|
+
};
|
|
2905
|
+
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
2906
|
+
publishPageInput: ConfluencePublishPageInput;
|
|
2907
|
+
};
|
|
2908
|
+
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
2909
|
+
purgeBlogPostInput: ConfluencePurgeBlogPostInput;
|
|
2910
|
+
};
|
|
2911
|
+
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
2912
|
+
purgePageInput: ConfluencePurgePageInput;
|
|
2913
|
+
};
|
|
2914
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
2915
|
+
updateBlogPostInput: ConfluenceUpdateCurrentBlogPostInput;
|
|
2916
|
+
};
|
|
2917
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
2918
|
+
updatePageInput: ConfluenceUpdateCurrentPageInput;
|
|
2919
|
+
};
|
|
2920
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
2921
|
+
updateBlogPostInput: ConfluenceUpdateDraftBlogPostInput;
|
|
2922
|
+
};
|
|
2923
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
2924
|
+
updatePageInput: ConfluenceUpdateDraftPageInput;
|
|
2925
|
+
};
|
|
2572
2926
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2573
2927
|
input: ConfluenceUpdateSpaceInput;
|
|
2574
2928
|
};
|
|
2929
|
+
export declare enum ConfluenceMutationContentStatus {
|
|
2930
|
+
Current = "CURRENT",
|
|
2931
|
+
Draft = "DRAFT"
|
|
2932
|
+
}
|
|
2575
2933
|
export declare type ConfluenceOperationCheck = {
|
|
2576
2934
|
__typename?: 'ConfluenceOperationCheck';
|
|
2577
2935
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -2619,18 +2977,72 @@ export declare type ConfluencePageLinks = {
|
|
|
2619
2977
|
base?: Maybe<Scalars['String']>;
|
|
2620
2978
|
webUi?: Maybe<Scalars['String']>;
|
|
2621
2979
|
};
|
|
2980
|
+
export declare type ConfluencePublishBlogPostInput = {
|
|
2981
|
+
id: Scalars['String'];
|
|
2982
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
2983
|
+
};
|
|
2984
|
+
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
2985
|
+
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
2986
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2987
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2988
|
+
success: Scalars['Boolean'];
|
|
2989
|
+
};
|
|
2990
|
+
export declare type ConfluencePublishPageInput = {
|
|
2991
|
+
id: Scalars['String'];
|
|
2992
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
2993
|
+
};
|
|
2994
|
+
export declare type ConfluencePublishPagePayload = Payload & {
|
|
2995
|
+
__typename?: 'ConfluencePublishPagePayload';
|
|
2996
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
2997
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2998
|
+
success: Scalars['Boolean'];
|
|
2999
|
+
};
|
|
3000
|
+
export declare type ConfluencePurgeBlogPostInput = {
|
|
3001
|
+
id: Scalars['ID'];
|
|
3002
|
+
};
|
|
3003
|
+
export declare type ConfluencePurgeBlogPostPayload = Payload & {
|
|
3004
|
+
__typename?: 'ConfluencePurgeBlogPostPayload';
|
|
3005
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3006
|
+
success: Scalars['Boolean'];
|
|
3007
|
+
};
|
|
3008
|
+
export declare type ConfluencePurgePageInput = {
|
|
3009
|
+
id: Scalars['ID'];
|
|
3010
|
+
};
|
|
3011
|
+
export declare type ConfluencePurgePagePayload = Payload & {
|
|
3012
|
+
__typename?: 'ConfluencePurgePagePayload';
|
|
3013
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3014
|
+
success: Scalars['Boolean'];
|
|
3015
|
+
};
|
|
2622
3016
|
export declare type ConfluenceQueryApi = {
|
|
2623
3017
|
__typename?: 'ConfluenceQueryApi';
|
|
3018
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3019
|
+
confluenceBlogPostWithFilters?: Maybe<ConfluenceBlogPost>;
|
|
3020
|
+
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3021
|
+
confluenceBlogPostsWithFilters?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
2624
3022
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2625
3023
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2626
3024
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2627
|
-
confluencePage?: Maybe<
|
|
2628
|
-
confluencePageWithFilters?: Maybe<
|
|
2629
|
-
confluencePages?: Maybe<Array<Maybe<
|
|
2630
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<
|
|
3025
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3026
|
+
confluencePageWithFilters?: Maybe<ConfluencePage>;
|
|
3027
|
+
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3028
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
2631
3029
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2632
3030
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2633
3031
|
};
|
|
3032
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3033
|
+
id: Scalars['ID'];
|
|
3034
|
+
};
|
|
3035
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostWithFiltersArgs = {
|
|
3036
|
+
id: Scalars['ID'];
|
|
3037
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3038
|
+
};
|
|
3039
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsArgs = {
|
|
3040
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
3041
|
+
};
|
|
3042
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsWithFiltersArgs = {
|
|
3043
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
3044
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3045
|
+
};
|
|
2634
3046
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2635
3047
|
id: Scalars['ID'];
|
|
2636
3048
|
};
|
|
@@ -2715,6 +3127,50 @@ export declare enum ConfluenceSpaceType {
|
|
|
2715
3127
|
Global = "GLOBAL",
|
|
2716
3128
|
Personal = "PERSONAL"
|
|
2717
3129
|
}
|
|
3130
|
+
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3131
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3132
|
+
id: Scalars['ID'];
|
|
3133
|
+
title?: Maybe<Scalars['String']>;
|
|
3134
|
+
};
|
|
3135
|
+
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3136
|
+
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3137
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3138
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3139
|
+
success: Scalars['Boolean'];
|
|
3140
|
+
};
|
|
3141
|
+
export declare type ConfluenceUpdateCurrentPageInput = {
|
|
3142
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3143
|
+
id: Scalars['ID'];
|
|
3144
|
+
title?: Maybe<Scalars['String']>;
|
|
3145
|
+
};
|
|
3146
|
+
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3147
|
+
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3148
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3149
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3150
|
+
success: Scalars['Boolean'];
|
|
3151
|
+
};
|
|
3152
|
+
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
3153
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3154
|
+
id: Scalars['ID'];
|
|
3155
|
+
title?: Maybe<Scalars['String']>;
|
|
3156
|
+
};
|
|
3157
|
+
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3158
|
+
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3159
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3160
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3161
|
+
success: Scalars['Boolean'];
|
|
3162
|
+
};
|
|
3163
|
+
export declare type ConfluenceUpdateDraftPageInput = {
|
|
3164
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3165
|
+
id: Scalars['ID'];
|
|
3166
|
+
title?: Maybe<Scalars['String']>;
|
|
3167
|
+
};
|
|
3168
|
+
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3169
|
+
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3170
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3171
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3172
|
+
success: Scalars['Boolean'];
|
|
3173
|
+
};
|
|
2718
3174
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
2719
3175
|
id: Scalars['ID'];
|
|
2720
3176
|
name?: Maybe<Scalars['String']>;
|
|
@@ -2885,7 +3341,7 @@ export declare type ContentPlatformPracticePage = {
|
|
|
2885
3341
|
__typename?: 'ContentPlatformPracticePage';
|
|
2886
3342
|
name: Scalars['String'];
|
|
2887
3343
|
tagline: Scalars['String'];
|
|
2888
|
-
|
|
3344
|
+
introToPractice: ContentPlatformIntroToPractice;
|
|
2889
3345
|
whatIs: ContentPlatformChunkWhatIs;
|
|
2890
3346
|
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
2891
3347
|
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
@@ -2894,6 +3350,16 @@ export declare type ContentPlatformPracticePage = {
|
|
|
2894
3350
|
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
2895
3351
|
practice: ContentPlatformWhatPractice;
|
|
2896
3352
|
};
|
|
3353
|
+
export declare type ContentPlatformPracticePagesConnection = {
|
|
3354
|
+
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
3355
|
+
pageInfo: PageInfo;
|
|
3356
|
+
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
3357
|
+
};
|
|
3358
|
+
export declare type ContentPlatformPracticePagesEdge = {
|
|
3359
|
+
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
3360
|
+
node: ContentPlatformPracticePage;
|
|
3361
|
+
cursor: Scalars['String'];
|
|
3362
|
+
};
|
|
2897
3363
|
export declare type ContentPlatformReleaseNote = {
|
|
2898
3364
|
__typename?: 'ContentPlatformReleaseNote';
|
|
2899
3365
|
releaseNoteId: Scalars['String'];
|
|
@@ -2922,6 +3388,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
2922
3388
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
2923
3389
|
publishStatus?: Maybe<Scalars['String']>;
|
|
2924
3390
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3391
|
+
getStarted?: Maybe<Scalars['JSON']>;
|
|
2925
3392
|
};
|
|
2926
3393
|
export declare type ContentPlatformReleaseNoteEntry = {
|
|
2927
3394
|
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
@@ -2950,6 +3417,7 @@ export declare type ContentPlatformReleaseNoteEntry = {
|
|
|
2950
3417
|
updatedAt: Scalars['String'];
|
|
2951
3418
|
url: Scalars['String'];
|
|
2952
3419
|
benefitsList: Scalars['JSON'];
|
|
3420
|
+
getStarted: Scalars['JSON'];
|
|
2953
3421
|
};
|
|
2954
3422
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
2955
3423
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
@@ -3100,7 +3568,7 @@ export declare type CreateColumnInput = {
|
|
|
3100
3568
|
export declare type CreateColumnOutput = MutationResponse & {
|
|
3101
3569
|
__typename?: 'CreateColumnOutput';
|
|
3102
3570
|
newColumn?: Maybe<Column>;
|
|
3103
|
-
columns?: Maybe<Array<Column
|
|
3571
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3104
3572
|
statusCode: Scalars['Int'];
|
|
3105
3573
|
success: Scalars['Boolean'];
|
|
3106
3574
|
message: Scalars['String'];
|
|
@@ -3203,6 +3671,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
3203
3671
|
componentType: CompassComponentType;
|
|
3204
3672
|
importance: CompassScorecardImportance;
|
|
3205
3673
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
3674
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
3206
3675
|
};
|
|
3207
3676
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
3208
3677
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -3487,6 +3956,10 @@ export declare type CreatePolarisViewSetPayload = Payload & {
|
|
|
3487
3956
|
errors?: Maybe<Array<MutationError>>;
|
|
3488
3957
|
node?: Maybe<PolarisViewSet>;
|
|
3489
3958
|
};
|
|
3959
|
+
export declare type CreateRankingListInput = {
|
|
3960
|
+
listId: Scalars['ID'];
|
|
3961
|
+
items?: Maybe<Array<Scalars['String']>>;
|
|
3962
|
+
};
|
|
3490
3963
|
export declare type CreateSprintInput = {
|
|
3491
3964
|
boardId: Scalars['ID'];
|
|
3492
3965
|
};
|
|
@@ -3566,6 +4039,7 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
3566
4039
|
export declare type CustomerUser = User & LocalizationContext & {
|
|
3567
4040
|
__typename?: 'CustomerUser';
|
|
3568
4041
|
accountId: Scalars['ID'];
|
|
4042
|
+
canonicalAccountId: Scalars['ID'];
|
|
3569
4043
|
accountStatus: AccountStatus;
|
|
3570
4044
|
name: Scalars['String'];
|
|
3571
4045
|
picture: Scalars['URL'];
|
|
@@ -3624,7 +4098,7 @@ export declare type DeleteColumnInput = {
|
|
|
3624
4098
|
};
|
|
3625
4099
|
export declare type DeleteColumnOutput = MutationResponse & {
|
|
3626
4100
|
__typename?: 'DeleteColumnOutput';
|
|
3627
|
-
columns?: Maybe<Array<Column
|
|
4101
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3628
4102
|
statusCode: Scalars['Int'];
|
|
3629
4103
|
success: Scalars['Boolean'];
|
|
3630
4104
|
message: Scalars['String'];
|
|
@@ -3901,6 +4375,13 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
3901
4375
|
success: Scalars['Boolean'];
|
|
3902
4376
|
errors?: Maybe<Array<MutationError>>;
|
|
3903
4377
|
};
|
|
4378
|
+
export declare type DevOps = {
|
|
4379
|
+
__typename?: 'DevOps';
|
|
4380
|
+
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4381
|
+
};
|
|
4382
|
+
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4383
|
+
ids: Array<Scalars['ID']>;
|
|
4384
|
+
};
|
|
3904
4385
|
export declare type DevOpsAvatar = {
|
|
3905
4386
|
__typename?: 'DevOpsAvatar';
|
|
3906
4387
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -4361,6 +4842,13 @@ export declare type DevOpsServicesFilterInput = {
|
|
|
4361
4842
|
nameContains?: Maybe<Scalars['String']>;
|
|
4362
4843
|
tierLevelIn?: Maybe<Array<Scalars['Int']>>;
|
|
4363
4844
|
};
|
|
4845
|
+
export declare type DevOpsSummarisedDeployments = {
|
|
4846
|
+
__typename?: 'DevOpsSummarisedDeployments';
|
|
4847
|
+
entityId: Scalars['ID'];
|
|
4848
|
+
count?: Maybe<Scalars['Int']>;
|
|
4849
|
+
deploymentState?: Maybe<DeploymentState>;
|
|
4850
|
+
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
4851
|
+
};
|
|
4364
4852
|
export declare type DevOpsThirdPartyRepository = {
|
|
4365
4853
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
4366
4854
|
id: Scalars['ID'];
|
|
@@ -4417,6 +4905,7 @@ export declare type DevOpsToolContainer = Node & {
|
|
|
4417
4905
|
displayName: Scalars['String'];
|
|
4418
4906
|
productKey: Scalars['String'];
|
|
4419
4907
|
url: Scalars['String'];
|
|
4908
|
+
underlyingId: Scalars['String'];
|
|
4420
4909
|
};
|
|
4421
4910
|
export declare type DevOpsToolContainerConnection = {
|
|
4422
4911
|
__typename?: 'DevOpsToolContainerConnection';
|
|
@@ -4450,6 +4939,7 @@ export declare type DevOpsToolNamespace = Node & {
|
|
|
4450
4939
|
displayName: Scalars['String'];
|
|
4451
4940
|
productKey: Scalars['String'];
|
|
4452
4941
|
canCreateContainer: Scalars['Boolean'];
|
|
4942
|
+
underlyingId: Scalars['String'];
|
|
4453
4943
|
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
4454
4944
|
};
|
|
4455
4945
|
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
@@ -4475,9 +4965,9 @@ export declare type DevOpsToolNavbarConnectionState = {
|
|
|
4475
4965
|
pagesTab: DevOpsToolConnectionState;
|
|
4476
4966
|
};
|
|
4477
4967
|
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4478
|
-
CodeTab = "
|
|
4479
|
-
OncallTab = "
|
|
4480
|
-
PagesTab = "
|
|
4968
|
+
CodeTab = "CODE_TAB",
|
|
4969
|
+
OncallTab = "ONCALL_TAB",
|
|
4970
|
+
PagesTab = "PAGES_TAB"
|
|
4481
4971
|
}
|
|
4482
4972
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4483
4973
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
@@ -4502,7 +4992,7 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
4502
4992
|
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
4503
4993
|
success: Scalars['Boolean'];
|
|
4504
4994
|
errors?: Maybe<Array<MutationError>>;
|
|
4505
|
-
updatedNavbarConnectionState
|
|
4995
|
+
updatedNavbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
4506
4996
|
};
|
|
4507
4997
|
export declare type DevOpsTools = {
|
|
4508
4998
|
__typename?: 'DevOpsTools';
|
|
@@ -4571,6 +5061,7 @@ export declare type EcosystemMutation = {
|
|
|
4571
5061
|
__typename?: 'EcosystemMutation';
|
|
4572
5062
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
4573
5063
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
5064
|
+
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
4574
5065
|
};
|
|
4575
5066
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
4576
5067
|
input: UpdateAppHostServiceScopesInput;
|
|
@@ -4578,10 +5069,14 @@ export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
|
4578
5069
|
export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
4579
5070
|
input: DeleteUserGrantInput;
|
|
4580
5071
|
};
|
|
5072
|
+
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
5073
|
+
input: UpdateUserInstallationRulesInput;
|
|
5074
|
+
};
|
|
4581
5075
|
export declare type EcosystemQuery = {
|
|
4582
5076
|
__typename?: 'EcosystemQuery';
|
|
4583
5077
|
userGrants?: Maybe<UserGrantConnection>;
|
|
4584
5078
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
5079
|
+
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
4585
5080
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
4586
5081
|
};
|
|
4587
5082
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -4593,6 +5088,9 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
4593
5088
|
export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
4594
5089
|
input: CheckConsentPermissionByOAuthClientIdInput;
|
|
4595
5090
|
};
|
|
5091
|
+
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
5092
|
+
cloudId: Scalars['ID'];
|
|
5093
|
+
};
|
|
4596
5094
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
4597
5095
|
appId: Scalars['ID'];
|
|
4598
5096
|
};
|
|
@@ -4620,8 +5118,10 @@ export declare type EstimationBoardFeatureView = Node & {
|
|
|
4620
5118
|
id: Scalars['ID'];
|
|
4621
5119
|
title?: Maybe<Scalars['String']>;
|
|
4622
5120
|
description?: Maybe<Scalars['String']>;
|
|
4623
|
-
|
|
5121
|
+
status?: Maybe<Scalars['String']>;
|
|
4624
5122
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
5123
|
+
learnMoreLink?: Maybe<Scalars['String']>;
|
|
5124
|
+
imageUri?: Maybe<Scalars['String']>;
|
|
4625
5125
|
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
4626
5126
|
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
4627
5127
|
};
|
|
@@ -4636,9 +5136,12 @@ export declare enum EventKnownAvIs {
|
|
|
4636
5136
|
AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED"
|
|
4637
5137
|
}
|
|
4638
5138
|
export declare enum EventMatchingStrategies {
|
|
5139
|
+
JiraByCloud = "JIRA_BY_CLOUD",
|
|
4639
5140
|
JiraByProject = "JIRA_BY_PROJECT",
|
|
4640
5141
|
JiraByIssue = "JIRA_BY_ISSUE",
|
|
4641
|
-
BitbucketByRepo = "BITBUCKET_BY_REPO"
|
|
5142
|
+
BitbucketByRepo = "BITBUCKET_BY_REPO",
|
|
5143
|
+
ByAccount = "BY_ACCOUNT",
|
|
5144
|
+
JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT"
|
|
4642
5145
|
}
|
|
4643
5146
|
export declare type EventSource = {
|
|
4644
5147
|
__typename?: 'EventSource';
|
|
@@ -4646,6 +5149,10 @@ export declare type EventSource = {
|
|
|
4646
5149
|
externalEventSourceId: Scalars['ID'];
|
|
4647
5150
|
eventType: CompassEventType;
|
|
4648
5151
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
5152
|
+
events?: Maybe<CompassEventsQueryResult>;
|
|
5153
|
+
};
|
|
5154
|
+
export declare type EventSourceEventsArgs = {
|
|
5155
|
+
query?: Maybe<CompassEventsInEventSourceQuery>;
|
|
4649
5156
|
};
|
|
4650
5157
|
export declare type Extension = {
|
|
4651
5158
|
__typename?: 'Extension';
|
|
@@ -4711,6 +5218,7 @@ export declare type ForgeMetricsData = {
|
|
|
4711
5218
|
name: Scalars['String'];
|
|
4712
5219
|
type: ForgeMetricsDataType;
|
|
4713
5220
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
5221
|
+
resolution: ForgeMetricsResolution;
|
|
4714
5222
|
};
|
|
4715
5223
|
export declare enum ForgeMetricsDataType {
|
|
4716
5224
|
DateTime = "DATE_TIME",
|
|
@@ -4722,6 +5230,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
|
|
|
4722
5230
|
name: Scalars['String'];
|
|
4723
5231
|
type: ForgeMetricsDataType;
|
|
4724
5232
|
series: Array<ForgeMetricsErrorsSeries>;
|
|
5233
|
+
resolution: ForgeMetricsResolution;
|
|
4725
5234
|
};
|
|
4726
5235
|
export declare type ForgeMetricsErrorsDataPoint = {
|
|
4727
5236
|
__typename?: 'ForgeMetricsErrorsDataPoint';
|
|
@@ -4748,6 +5257,7 @@ export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
|
|
|
4748
5257
|
name: Scalars['String'];
|
|
4749
5258
|
type: ForgeMetricsDataType;
|
|
4750
5259
|
series: Array<ForgeMetricsInvocationSeries>;
|
|
5260
|
+
resolution: ForgeMetricsResolution;
|
|
4751
5261
|
};
|
|
4752
5262
|
export declare type ForgeMetricsInvocationDataPoint = {
|
|
4753
5263
|
__typename?: 'ForgeMetricsInvocationDataPoint';
|
|
@@ -4793,6 +5303,15 @@ export declare type ForgeMetricsQueryInput = {
|
|
|
4793
5303
|
filters: ForgeMetricsQueryFilters;
|
|
4794
5304
|
groupBy?: Maybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
4795
5305
|
};
|
|
5306
|
+
export declare type ForgeMetricsResolution = {
|
|
5307
|
+
__typename?: 'ForgeMetricsResolution';
|
|
5308
|
+
size: Scalars['Int'];
|
|
5309
|
+
units: ForgeMetricsResolutionUnit;
|
|
5310
|
+
};
|
|
5311
|
+
export declare enum ForgeMetricsResolutionUnit {
|
|
5312
|
+
Hours = "HOURS",
|
|
5313
|
+
Minutes = "MINUTES"
|
|
5314
|
+
}
|
|
4796
5315
|
export declare type ForgeMetricsSeries = {
|
|
4797
5316
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
4798
5317
|
};
|
|
@@ -4801,6 +5320,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
|
4801
5320
|
name: Scalars['String'];
|
|
4802
5321
|
type: ForgeMetricsDataType;
|
|
4803
5322
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5323
|
+
resolution: ForgeMetricsResolution;
|
|
4804
5324
|
};
|
|
4805
5325
|
export declare type ForgeMetricsSuccessRateDataPoint = {
|
|
4806
5326
|
__typename?: 'ForgeMetricsSuccessRateDataPoint';
|
|
@@ -4818,6 +5338,7 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
4818
5338
|
name: Scalars['String'];
|
|
4819
5339
|
type: ForgeMetricsDataType;
|
|
4820
5340
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5341
|
+
resolution: ForgeMetricsResolution;
|
|
4821
5342
|
};
|
|
4822
5343
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
4823
5344
|
export declare type FunctionDescription = {
|
|
@@ -4869,6 +5390,11 @@ export declare type HostedResourcePreSignedUrl = {
|
|
|
4869
5390
|
uploadUrl: Scalars['String'];
|
|
4870
5391
|
uploadFormData: Scalars['JSON'];
|
|
4871
5392
|
};
|
|
5393
|
+
export declare type HostedStorage = {
|
|
5394
|
+
__typename?: 'HostedStorage';
|
|
5395
|
+
classifications?: Maybe<Array<Classification>>;
|
|
5396
|
+
locations?: Maybe<Array<Scalars['String']>>;
|
|
5397
|
+
};
|
|
4872
5398
|
export declare type Icon = {
|
|
4873
5399
|
__typename?: 'Icon';
|
|
4874
5400
|
url?: Maybe<Scalars['String']>;
|
|
@@ -4898,11 +5424,8 @@ export declare type InvokeAuxEffectsInput = {
|
|
|
4898
5424
|
entryPoint?: Maybe<Scalars['String']>;
|
|
4899
5425
|
payload: AuxEffectsInvocationPayload;
|
|
4900
5426
|
};
|
|
4901
|
-
export declare type InvokeAuxEffectsResponse =
|
|
5427
|
+
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
4902
5428
|
__typename?: 'InvokeAuxEffectsResponse';
|
|
4903
|
-
statusCode: Scalars['Int'];
|
|
4904
|
-
message: Scalars['String'];
|
|
4905
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
4906
5429
|
success: Scalars['Boolean'];
|
|
4907
5430
|
errors?: Maybe<Array<MutationError>>;
|
|
4908
5431
|
result?: Maybe<AuxEffectsResult>;
|
|
@@ -4925,11 +5448,8 @@ export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
|
4925
5448
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
4926
5449
|
authInfoUrl?: Maybe<Scalars['String']>;
|
|
4927
5450
|
};
|
|
4928
|
-
export declare type InvokeExtensionResponse =
|
|
5451
|
+
export declare type InvokeExtensionResponse = Payload & {
|
|
4929
5452
|
__typename?: 'InvokeExtensionResponse';
|
|
4930
|
-
statusCode: Scalars['Int'];
|
|
4931
|
-
message: Scalars['String'];
|
|
4932
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
4933
5453
|
success: Scalars['Boolean'];
|
|
4934
5454
|
errors?: Maybe<Array<MutationError>>;
|
|
4935
5455
|
response?: Maybe<InvocationResponsePayload>;
|
|
@@ -4950,6 +5470,11 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
4950
5470
|
errors?: Maybe<Array<MutationError>>;
|
|
4951
5471
|
response?: Maybe<ResolvedPolarisObject>;
|
|
4952
5472
|
};
|
|
5473
|
+
export declare type IssueAndProject = {
|
|
5474
|
+
__typename?: 'IssueAndProject';
|
|
5475
|
+
issueId: Scalars['ID'];
|
|
5476
|
+
projectId: Scalars['ID'];
|
|
5477
|
+
};
|
|
4953
5478
|
export declare type IssueDevOpsBranchDetails = {
|
|
4954
5479
|
__typename?: 'IssueDevOpsBranchDetails';
|
|
4955
5480
|
name: Scalars['String'];
|
|
@@ -6342,6 +6867,7 @@ export declare type JiraIssue = Node & {
|
|
|
6342
6867
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6343
6868
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6344
6869
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6870
|
+
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
6345
6871
|
};
|
|
6346
6872
|
export declare type JiraIssueFieldsArgs = {
|
|
6347
6873
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6930,8 +7456,8 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
6930
7456
|
};
|
|
6931
7457
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
6932
7458
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
6933
|
-
level
|
|
6934
|
-
name
|
|
7459
|
+
level?: Maybe<Scalars['Int']>;
|
|
7460
|
+
name?: Maybe<Scalars['String']>;
|
|
6935
7461
|
};
|
|
6936
7462
|
export declare enum JiraJqlAutocompleteType {
|
|
6937
7463
|
None = "NONE",
|
|
@@ -8212,6 +8738,7 @@ export declare type JiraProjectSortInput = {
|
|
|
8212
8738
|
order?: Maybe<SortDirection>;
|
|
8213
8739
|
};
|
|
8214
8740
|
export declare enum JiraProjectStatus {
|
|
8741
|
+
Active = "ACTIVE",
|
|
8215
8742
|
Archived = "ARCHIVED",
|
|
8216
8743
|
Deleted = "DELETED"
|
|
8217
8744
|
}
|
|
@@ -8243,6 +8770,9 @@ export declare type JiraQuery = {
|
|
|
8243
8770
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
8244
8771
|
issueByKey?: Maybe<JiraIssue>;
|
|
8245
8772
|
issueById?: Maybe<JiraIssue>;
|
|
8773
|
+
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8774
|
+
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8775
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8246
8776
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8247
8777
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8248
8778
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -8300,6 +8830,12 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
8300
8830
|
export declare type JiraQueryIssueByIdArgs = {
|
|
8301
8831
|
id: Scalars['ID'];
|
|
8302
8832
|
};
|
|
8833
|
+
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
8834
|
+
issueId: Scalars['ID'];
|
|
8835
|
+
};
|
|
8836
|
+
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
8837
|
+
issueKey: Scalars['String'];
|
|
8838
|
+
};
|
|
8303
8839
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
8304
8840
|
cloudId: Scalars['ID'];
|
|
8305
8841
|
keys: Array<Scalars['String']>;
|
|
@@ -8550,8 +9086,8 @@ export declare enum JiraReviewState {
|
|
|
8550
9086
|
}
|
|
8551
9087
|
export declare type JiraRichText = {
|
|
8552
9088
|
__typename?: 'JiraRichText';
|
|
8553
|
-
plainText?: Maybe<Scalars['String']>;
|
|
8554
9089
|
adfValue?: Maybe<JiraAdf>;
|
|
9090
|
+
plainText?: Maybe<Scalars['String']>;
|
|
8555
9091
|
wikiValue?: Maybe<Scalars['String']>;
|
|
8556
9092
|
};
|
|
8557
9093
|
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
@@ -8639,6 +9175,30 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
8639
9175
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
8640
9176
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
8641
9177
|
};
|
|
9178
|
+
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
9179
|
+
first?: Maybe<Scalars['Int']>;
|
|
9180
|
+
after?: Maybe<Scalars['String']>;
|
|
9181
|
+
last?: Maybe<Scalars['Int']>;
|
|
9182
|
+
before?: Maybe<Scalars['String']>;
|
|
9183
|
+
};
|
|
9184
|
+
export declare type JiraServiceManagementActiveApprovalExcludedApproversArgs = {
|
|
9185
|
+
first?: Maybe<Scalars['Int']>;
|
|
9186
|
+
after?: Maybe<Scalars['String']>;
|
|
9187
|
+
last?: Maybe<Scalars['Int']>;
|
|
9188
|
+
before?: Maybe<Scalars['String']>;
|
|
9189
|
+
};
|
|
9190
|
+
export declare type JiraServiceManagementActiveApprovalDecisionsArgs = {
|
|
9191
|
+
first?: Maybe<Scalars['Int']>;
|
|
9192
|
+
after?: Maybe<Scalars['String']>;
|
|
9193
|
+
last?: Maybe<Scalars['Int']>;
|
|
9194
|
+
before?: Maybe<Scalars['String']>;
|
|
9195
|
+
};
|
|
9196
|
+
export declare type JiraServiceManagementActiveApprovalApproverPrincipalsArgs = {
|
|
9197
|
+
first?: Maybe<Scalars['Int']>;
|
|
9198
|
+
after?: Maybe<Scalars['String']>;
|
|
9199
|
+
last?: Maybe<Scalars['Int']>;
|
|
9200
|
+
before?: Maybe<Scalars['String']>;
|
|
9201
|
+
};
|
|
8642
9202
|
export declare type JiraServiceManagementApprovalCondition = {
|
|
8643
9203
|
__typename?: 'JiraServiceManagementApprovalCondition';
|
|
8644
9204
|
type?: Maybe<Scalars['String']>;
|
|
@@ -8696,7 +9256,7 @@ export declare type JiraServiceManagementApproverEdge = {
|
|
|
8696
9256
|
node?: Maybe<JiraServiceManagementApprover>;
|
|
8697
9257
|
cursor: Scalars['String'];
|
|
8698
9258
|
};
|
|
8699
|
-
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal |
|
|
9259
|
+
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementGroupApproverPrincipal;
|
|
8700
9260
|
export declare type JiraServiceManagementApproverPrincipalConnection = {
|
|
8701
9261
|
__typename?: 'JiraServiceManagementApproverPrincipalConnection';
|
|
8702
9262
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -8756,6 +9316,12 @@ export declare type JiraServiceManagementCompletedApproval = Node & {
|
|
|
8756
9316
|
completedDate?: Maybe<Scalars['DateTime']>;
|
|
8757
9317
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
8758
9318
|
};
|
|
9319
|
+
export declare type JiraServiceManagementCompletedApprovalApproversArgs = {
|
|
9320
|
+
first?: Maybe<Scalars['Int']>;
|
|
9321
|
+
after?: Maybe<Scalars['String']>;
|
|
9322
|
+
last?: Maybe<Scalars['Int']>;
|
|
9323
|
+
before?: Maybe<Scalars['String']>;
|
|
9324
|
+
};
|
|
8759
9325
|
export declare type JiraServiceManagementCompletedApprovalConnection = {
|
|
8760
9326
|
__typename?: 'JiraServiceManagementCompletedApprovalConnection';
|
|
8761
9327
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -8806,17 +9372,6 @@ export declare type JiraServiceManagementGroupApproverPrincipal = {
|
|
|
8806
9372
|
memberCount?: Maybe<Scalars['Int']>;
|
|
8807
9373
|
approvedCount?: Maybe<Scalars['Int']>;
|
|
8808
9374
|
};
|
|
8809
|
-
export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
|
|
8810
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
|
|
8811
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
8812
|
-
pageInfo: PageInfo;
|
|
8813
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
|
|
8814
|
-
};
|
|
8815
|
-
export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
|
|
8816
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
|
|
8817
|
-
node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
|
|
8818
|
-
cursor: Scalars['String'];
|
|
8819
|
-
};
|
|
8820
9375
|
export declare type JiraServiceManagementIncident = {
|
|
8821
9376
|
__typename?: 'JiraServiceManagementIncident';
|
|
8822
9377
|
hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
|
|
@@ -9076,17 +9631,6 @@ export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
|
9076
9631
|
user?: Maybe<User>;
|
|
9077
9632
|
jiraRest?: Maybe<Scalars['URL']>;
|
|
9078
9633
|
};
|
|
9079
|
-
export declare type JiraServiceManagementUserApproverPrincipalConnection = {
|
|
9080
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalConnection';
|
|
9081
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9082
|
-
pageInfo: PageInfo;
|
|
9083
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementUserApproverPrincipalEdge>>>;
|
|
9084
|
-
};
|
|
9085
|
-
export declare type JiraServiceManagementUserApproverPrincipalEdge = {
|
|
9086
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalEdge';
|
|
9087
|
-
node?: Maybe<JiraServiceManagementUserApproverPrincipal>;
|
|
9088
|
-
cursor: Scalars['String'];
|
|
9089
|
-
};
|
|
9090
9634
|
export declare type JiraServiceManagementUserResponder = {
|
|
9091
9635
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
9092
9636
|
user?: Maybe<User>;
|
|
@@ -9277,6 +9821,18 @@ export declare enum JiraStatusCategoryColor {
|
|
|
9277
9821
|
WarmRed = "WARM_RED",
|
|
9278
9822
|
BlueGray = "BLUE_GRAY"
|
|
9279
9823
|
}
|
|
9824
|
+
export declare type JiraStatusCategoryField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9825
|
+
__typename?: 'JiraStatusCategoryField';
|
|
9826
|
+
id: Scalars['ID'];
|
|
9827
|
+
fieldId: Scalars['String'];
|
|
9828
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9829
|
+
type: Scalars['String'];
|
|
9830
|
+
name: Scalars['String'];
|
|
9831
|
+
description?: Maybe<Scalars['String']>;
|
|
9832
|
+
statusCategory: JiraStatusCategory;
|
|
9833
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9834
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9835
|
+
};
|
|
9280
9836
|
export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9281
9837
|
__typename?: 'JiraStatusField';
|
|
9282
9838
|
id: Scalars['ID'];
|
|
@@ -9347,6 +9903,26 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9347
9903
|
last?: Maybe<Scalars['Int']>;
|
|
9348
9904
|
before?: Maybe<Scalars['String']>;
|
|
9349
9905
|
};
|
|
9906
|
+
export declare type JiraTeamView = {
|
|
9907
|
+
__typename?: 'JiraTeamView';
|
|
9908
|
+
jiraSuppliedId?: Maybe<Scalars['String']>;
|
|
9909
|
+
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
9910
|
+
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
9911
|
+
fullTeam?: Maybe<Team>;
|
|
9912
|
+
};
|
|
9913
|
+
export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9914
|
+
__typename?: 'JiraTeamViewField';
|
|
9915
|
+
id: Scalars['ID'];
|
|
9916
|
+
fieldId: Scalars['String'];
|
|
9917
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9918
|
+
type: Scalars['String'];
|
|
9919
|
+
name: Scalars['String'];
|
|
9920
|
+
description?: Maybe<Scalars['String']>;
|
|
9921
|
+
selectedTeam?: Maybe<JiraTeamView>;
|
|
9922
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
9923
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9924
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9925
|
+
};
|
|
9350
9926
|
export declare enum JiraTimeFormat {
|
|
9351
9927
|
Pretty = "PRETTY",
|
|
9352
9928
|
Days = "DAYS",
|
|
@@ -9485,6 +10061,7 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
9485
10061
|
InProgress = "IN_PROGRESS",
|
|
9486
10062
|
Done = "DONE",
|
|
9487
10063
|
UnreviewedCode = "UNREVIEWED_CODE",
|
|
10064
|
+
OpenReview = "OPEN_REVIEW",
|
|
9488
10065
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
9489
10066
|
FailingBuild = "FAILING_BUILD"
|
|
9490
10067
|
}
|
|
@@ -9502,6 +10079,7 @@ export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
|
9502
10079
|
export declare type JiraVersionWarningConfig = {
|
|
9503
10080
|
__typename?: 'JiraVersionWarningConfig';
|
|
9504
10081
|
openPullRequest?: Maybe<JiraVersionWarningConfigState>;
|
|
10082
|
+
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
9505
10083
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
9506
10084
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
9507
10085
|
};
|
|
@@ -10096,8 +10674,10 @@ export declare type Mutation = {
|
|
|
10096
10674
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
10097
10675
|
jira?: Maybe<JiraMutation>;
|
|
10098
10676
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10677
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
10099
10678
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10100
10679
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10680
|
+
polaris?: Maybe<PolarisMutationNamespace>;
|
|
10101
10681
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
10102
10682
|
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
10103
10683
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
@@ -10606,6 +11186,31 @@ export declare type MyActivitiesViewedArgs = {
|
|
|
10606
11186
|
first?: Maybe<Scalars['Int']>;
|
|
10607
11187
|
after?: Maybe<Scalars['String']>;
|
|
10608
11188
|
};
|
|
11189
|
+
export declare type MyActivity = {
|
|
11190
|
+
__typename?: 'MyActivity';
|
|
11191
|
+
all: ActivityConnection;
|
|
11192
|
+
workedOn: ActivityConnection;
|
|
11193
|
+
viewed: ActivityConnection;
|
|
11194
|
+
};
|
|
11195
|
+
export declare type MyActivityAllArgs = {
|
|
11196
|
+
filter?: Maybe<MyActivityFilter>;
|
|
11197
|
+
first?: Maybe<Scalars['Int']>;
|
|
11198
|
+
after?: Maybe<Scalars['String']>;
|
|
11199
|
+
};
|
|
11200
|
+
export declare type MyActivityWorkedOnArgs = {
|
|
11201
|
+
filter?: Maybe<MyActivityFilter>;
|
|
11202
|
+
first?: Maybe<Scalars['Int']>;
|
|
11203
|
+
after?: Maybe<Scalars['String']>;
|
|
11204
|
+
};
|
|
11205
|
+
export declare type MyActivityViewedArgs = {
|
|
11206
|
+
filter?: Maybe<MyActivityFilter>;
|
|
11207
|
+
first?: Maybe<Scalars['Int']>;
|
|
11208
|
+
after?: Maybe<Scalars['String']>;
|
|
11209
|
+
};
|
|
11210
|
+
export declare type MyActivityFilter = {
|
|
11211
|
+
type?: Maybe<ActivitiesFilterType>;
|
|
11212
|
+
arguments?: Maybe<ActivityFilterArgs>;
|
|
11213
|
+
};
|
|
10609
11214
|
export declare type NadelHydrationArgument = {
|
|
10610
11215
|
name: Scalars['String'];
|
|
10611
11216
|
value: Scalars['String'];
|
|
@@ -10625,6 +11230,7 @@ export declare type NewCardParent = {
|
|
|
10625
11230
|
export declare type Node = {
|
|
10626
11231
|
id: Scalars['ID'];
|
|
10627
11232
|
};
|
|
11233
|
+
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | IssueAndProject;
|
|
10628
11234
|
export declare type OpsgenieAlertCountByPriority = {
|
|
10629
11235
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
10630
11236
|
priority?: Maybe<Scalars['String']>;
|
|
@@ -11378,6 +11984,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
11378
11984
|
__typename?: 'PolarisMatrixConfig';
|
|
11379
11985
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
11380
11986
|
};
|
|
11987
|
+
export declare type PolarisMutationNamespace = {
|
|
11988
|
+
__typename?: 'PolarisMutationNamespace';
|
|
11989
|
+
ranking?: Maybe<PolarisRankingMutationNamespace>;
|
|
11990
|
+
};
|
|
11381
11991
|
export declare type PolarisPlay = {
|
|
11382
11992
|
__typename?: 'PolarisPlay';
|
|
11383
11993
|
id: Scalars['ID'];
|
|
@@ -11449,6 +12059,55 @@ export declare type PolarisProjectTemplate = {
|
|
|
11449
12059
|
__typename?: 'PolarisProjectTemplate';
|
|
11450
12060
|
ideas?: Maybe<Scalars['JSON']>;
|
|
11451
12061
|
};
|
|
12062
|
+
export declare type PolarisQueryNamespace = {
|
|
12063
|
+
__typename?: 'PolarisQueryNamespace';
|
|
12064
|
+
ranking?: Maybe<PolarisRankingQueryNamespace>;
|
|
12065
|
+
};
|
|
12066
|
+
export declare type PolarisRankingMutationNamespace = {
|
|
12067
|
+
__typename?: 'PolarisRankingMutationNamespace';
|
|
12068
|
+
createList?: Maybe<RankingDiffPayload>;
|
|
12069
|
+
deleteList?: Maybe<RankingDiffPayload>;
|
|
12070
|
+
makeFirst?: Maybe<RankingDiffPayload>;
|
|
12071
|
+
makeLast?: Maybe<RankingDiffPayload>;
|
|
12072
|
+
makeBefore?: Maybe<RankingDiffPayload>;
|
|
12073
|
+
makeAfter?: Maybe<RankingDiffPayload>;
|
|
12074
|
+
makeUnranked?: Maybe<RankingDiffPayload>;
|
|
12075
|
+
};
|
|
12076
|
+
export declare type PolarisRankingMutationNamespaceCreateListArgs = {
|
|
12077
|
+
input: CreateRankingListInput;
|
|
12078
|
+
};
|
|
12079
|
+
export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
12080
|
+
listId: Scalars['ID'];
|
|
12081
|
+
};
|
|
12082
|
+
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12083
|
+
listId: Scalars['ID'];
|
|
12084
|
+
id: Scalars['ID'];
|
|
12085
|
+
};
|
|
12086
|
+
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12087
|
+
listId: Scalars['ID'];
|
|
12088
|
+
id: Scalars['ID'];
|
|
12089
|
+
};
|
|
12090
|
+
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12091
|
+
listId: Scalars['ID'];
|
|
12092
|
+
refId: Scalars['ID'];
|
|
12093
|
+
id: Scalars['ID'];
|
|
12094
|
+
};
|
|
12095
|
+
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12096
|
+
listId: Scalars['ID'];
|
|
12097
|
+
refId: Scalars['ID'];
|
|
12098
|
+
id: Scalars['ID'];
|
|
12099
|
+
};
|
|
12100
|
+
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12101
|
+
listId: Scalars['ID'];
|
|
12102
|
+
id: Scalars['ID'];
|
|
12103
|
+
};
|
|
12104
|
+
export declare type PolarisRankingQueryNamespace = {
|
|
12105
|
+
__typename?: 'PolarisRankingQueryNamespace';
|
|
12106
|
+
list?: Maybe<Array<Maybe<RankItem>>>;
|
|
12107
|
+
};
|
|
12108
|
+
export declare type PolarisRankingQueryNamespaceListArgs = {
|
|
12109
|
+
listId: Scalars['ID'];
|
|
12110
|
+
};
|
|
11452
12111
|
export declare enum PolarisRefreshError {
|
|
11453
12112
|
NeedAuth = "NEED_AUTH",
|
|
11454
12113
|
InvalidSnippet = "INVALID_SNIPPET",
|
|
@@ -11724,16 +12383,14 @@ export declare type Query = {
|
|
|
11724
12383
|
node?: Maybe<Node>;
|
|
11725
12384
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
11726
12385
|
activities?: Maybe<Activities>;
|
|
12386
|
+
activity?: Maybe<Activity>;
|
|
11727
12387
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
11728
|
-
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
11729
|
-
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
11730
|
-
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
11731
12388
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
11732
12389
|
shepherd?: Maybe<ShepherdQuery>;
|
|
11733
12390
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
11734
12391
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
11735
12392
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
11736
|
-
practicePages:
|
|
12393
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
11737
12394
|
practicePage: ContentPlatformPracticePage;
|
|
11738
12395
|
apps?: Maybe<AppConnection>;
|
|
11739
12396
|
app?: Maybe<App>;
|
|
@@ -11743,10 +12400,14 @@ export declare type Query = {
|
|
|
11743
12400
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
11744
12401
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
11745
12402
|
search?: Maybe<SearchQueryApi>;
|
|
12403
|
+
devOps?: Maybe<DevOps>;
|
|
11746
12404
|
me: AuthenticationContext;
|
|
11747
12405
|
user?: Maybe<User>;
|
|
11748
12406
|
users?: Maybe<Array<User>>;
|
|
11749
12407
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
12408
|
+
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12409
|
+
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12410
|
+
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
11750
12411
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
11751
12412
|
devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
|
|
11752
12413
|
devOpsServiceAndOpsgenieTeamRelationship?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
@@ -11794,6 +12455,7 @@ export declare type Query = {
|
|
|
11794
12455
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
11795
12456
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
11796
12457
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
12458
|
+
polaris?: Maybe<PolarisQueryNamespace>;
|
|
11797
12459
|
dvcs?: Maybe<DvcsQuery>;
|
|
11798
12460
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
11799
12461
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -11816,24 +12478,6 @@ export declare type Query = {
|
|
|
11816
12478
|
export declare type QueryNodeArgs = {
|
|
11817
12479
|
id: Scalars['ID'];
|
|
11818
12480
|
};
|
|
11819
|
-
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
11820
|
-
id: Scalars['ID'];
|
|
11821
|
-
cloudId: Scalars['ID'];
|
|
11822
|
-
first?: Maybe<Scalars['Int']>;
|
|
11823
|
-
after?: Maybe<Scalars['String']>;
|
|
11824
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
11825
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
11826
|
-
};
|
|
11827
|
-
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
11828
|
-
id: Scalars['ID'];
|
|
11829
|
-
first?: Maybe<Scalars['Int']>;
|
|
11830
|
-
after?: Maybe<Scalars['String']>;
|
|
11831
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
11832
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
11833
|
-
};
|
|
11834
|
-
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
11835
|
-
id: Scalars['ID'];
|
|
11836
|
-
};
|
|
11837
12481
|
export declare type QueryReleaseNotesArgs = {
|
|
11838
12482
|
after?: Maybe<Scalars['String']>;
|
|
11839
12483
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -11845,6 +12489,10 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
11845
12489
|
id: Scalars['String'];
|
|
11846
12490
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
11847
12491
|
};
|
|
12492
|
+
export declare type QueryPracticePagesArgs = {
|
|
12493
|
+
after?: Maybe<Scalars['String']>;
|
|
12494
|
+
first?: Maybe<Scalars['Int']>;
|
|
12495
|
+
};
|
|
11848
12496
|
export declare type QueryPracticePageArgs = {
|
|
11849
12497
|
id: Scalars['String'];
|
|
11850
12498
|
};
|
|
@@ -11873,6 +12521,24 @@ export declare type QueryUserArgs = {
|
|
|
11873
12521
|
export declare type QueryUsersArgs = {
|
|
11874
12522
|
accountIds: Array<Scalars['ID']>;
|
|
11875
12523
|
};
|
|
12524
|
+
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
12525
|
+
id: Scalars['ID'];
|
|
12526
|
+
cloudId: Scalars['ID'];
|
|
12527
|
+
first?: Maybe<Scalars['Int']>;
|
|
12528
|
+
after?: Maybe<Scalars['String']>;
|
|
12529
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12530
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12531
|
+
};
|
|
12532
|
+
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
12533
|
+
id: Scalars['ID'];
|
|
12534
|
+
first?: Maybe<Scalars['Int']>;
|
|
12535
|
+
after?: Maybe<Scalars['String']>;
|
|
12536
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12537
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12538
|
+
};
|
|
12539
|
+
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
12540
|
+
id: Scalars['ID'];
|
|
12541
|
+
};
|
|
11876
12542
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
11877
12543
|
id: Scalars['ID'];
|
|
11878
12544
|
};
|
|
@@ -12114,11 +12780,22 @@ export declare type RankColumnInput = {
|
|
|
12114
12780
|
};
|
|
12115
12781
|
export declare type RankColumnOutput = MutationResponse & {
|
|
12116
12782
|
__typename?: 'RankColumnOutput';
|
|
12117
|
-
columns?: Maybe<Array<Column
|
|
12783
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12118
12784
|
statusCode: Scalars['Int'];
|
|
12119
12785
|
success: Scalars['Boolean'];
|
|
12120
12786
|
message: Scalars['String'];
|
|
12121
12787
|
};
|
|
12788
|
+
export declare type RankItem = {
|
|
12789
|
+
__typename?: 'RankItem';
|
|
12790
|
+
id: Scalars['ID'];
|
|
12791
|
+
rank: Scalars['Float'];
|
|
12792
|
+
};
|
|
12793
|
+
export declare type RankingDiffPayload = {
|
|
12794
|
+
__typename?: 'RankingDiffPayload';
|
|
12795
|
+
added?: Maybe<Array<RankItem>>;
|
|
12796
|
+
changed?: Maybe<Array<RankItem>>;
|
|
12797
|
+
deleted?: Maybe<Array<RankItem>>;
|
|
12798
|
+
};
|
|
12122
12799
|
export declare enum RateLimitingCurrency {
|
|
12123
12800
|
TestingService = "TESTING_SERVICE",
|
|
12124
12801
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
@@ -12151,6 +12828,13 @@ export declare type RefreshToken = {
|
|
|
12151
12828
|
export declare type RefreshTokenInput = {
|
|
12152
12829
|
refreshTokenRotation: Scalars['Boolean'];
|
|
12153
12830
|
};
|
|
12831
|
+
export declare type Remote = {
|
|
12832
|
+
__typename?: 'Remote';
|
|
12833
|
+
key: Scalars['String'];
|
|
12834
|
+
baseUrl: Scalars['String'];
|
|
12835
|
+
classifications?: Maybe<Array<Classification>>;
|
|
12836
|
+
locations?: Maybe<Array<Scalars['String']>>;
|
|
12837
|
+
};
|
|
12154
12838
|
export declare type RemoveCompassComponentLabelsInput = {
|
|
12155
12839
|
componentId: Scalars['ID'];
|
|
12156
12840
|
labelNames: Array<Scalars['String']>;
|
|
@@ -12264,6 +12948,21 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
12264
12948
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
12265
12949
|
sprintField?: Maybe<Scalars['ID']>;
|
|
12266
12950
|
};
|
|
12951
|
+
export declare type RoadmapFeatureToggleInput = {
|
|
12952
|
+
sourceARI: Scalars['ID'];
|
|
12953
|
+
enabled: Scalars['Boolean'];
|
|
12954
|
+
};
|
|
12955
|
+
export declare type RoadmapFeatureToggleOutput = {
|
|
12956
|
+
__typename?: 'RoadmapFeatureToggleOutput';
|
|
12957
|
+
enabled: Scalars['Boolean'];
|
|
12958
|
+
isCrossProject: Scalars['Boolean'];
|
|
12959
|
+
};
|
|
12960
|
+
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
12961
|
+
__typename?: 'RoadmapFeatureTogglePayload';
|
|
12962
|
+
success: Scalars['Boolean'];
|
|
12963
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12964
|
+
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
12965
|
+
};
|
|
12267
12966
|
export declare type RoadmapItem = {
|
|
12268
12967
|
__typename?: 'RoadmapItem';
|
|
12269
12968
|
id: Scalars['ID'];
|
|
@@ -12336,6 +13035,11 @@ export declare type RoadmapMetadata = {
|
|
|
12336
13035
|
hasExceededIssueLimit: Scalars['Boolean'];
|
|
12337
13036
|
corruptedIssueCount: Scalars['Int'];
|
|
12338
13037
|
};
|
|
13038
|
+
export declare type RoadmapMutationErrorExtension = MutationErrorExtension & {
|
|
13039
|
+
__typename?: 'RoadmapMutationErrorExtension';
|
|
13040
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
13041
|
+
errorType?: Maybe<Scalars['String']>;
|
|
13042
|
+
};
|
|
12339
13043
|
export declare enum RoadmapPaletteColor {
|
|
12340
13044
|
Purple = "PURPLE",
|
|
12341
13045
|
Blue = "BLUE",
|
|
@@ -12432,6 +13136,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
12432
13136
|
timelineMode: RoadmapTimelineMode;
|
|
12433
13137
|
epicView: RoadmapEpicView;
|
|
12434
13138
|
levelOneView: RoadmapLevelOneView;
|
|
13139
|
+
levelOneViewSettings: RoadmapViewSettings;
|
|
12435
13140
|
};
|
|
12436
13141
|
export declare type RoadmapVersion = {
|
|
12437
13142
|
__typename?: 'RoadmapVersion';
|
|
@@ -12444,6 +13149,18 @@ export declare enum RoadmapVersionStatus {
|
|
|
12444
13149
|
Unreleased = "UNRELEASED",
|
|
12445
13150
|
Archived = "ARCHIVED"
|
|
12446
13151
|
}
|
|
13152
|
+
export declare type RoadmapViewSettings = {
|
|
13153
|
+
__typename?: 'RoadmapViewSettings';
|
|
13154
|
+
period: Scalars['Int'];
|
|
13155
|
+
showCompleted: Scalars['Boolean'];
|
|
13156
|
+
};
|
|
13157
|
+
export declare type RoadmapsMutation = {
|
|
13158
|
+
__typename?: 'RoadmapsMutation';
|
|
13159
|
+
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13160
|
+
};
|
|
13161
|
+
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13162
|
+
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
13163
|
+
};
|
|
12447
13164
|
export declare type RoadmapsQuery = {
|
|
12448
13165
|
__typename?: 'RoadmapsQuery';
|
|
12449
13166
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -12474,21 +13191,57 @@ export declare enum Scope {
|
|
|
12474
13191
|
WriteCompassScorecard = "WRITE_COMPASS_SCORECARD",
|
|
12475
13192
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
12476
13193
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
13194
|
+
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13195
|
+
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
12477
13196
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
12478
|
-
|
|
12479
|
-
|
|
12480
|
-
|
|
12481
|
-
|
|
13197
|
+
ReadConfluenceContentAnalytics = "READ_CONFLUENCE_CONTENT_ANALYTICS",
|
|
13198
|
+
ReadConfluenceAuditLog = "READ_CONFLUENCE_AUDIT_LOG",
|
|
13199
|
+
WriteConfluenceAuditLog = "WRITE_CONFLUENCE_AUDIT_LOG",
|
|
13200
|
+
ReadConfluenceConfiguration = "READ_CONFLUENCE_CONFIGURATION",
|
|
13201
|
+
WriteConfluenceConfiguration = "WRITE_CONFLUENCE_CONFIGURATION",
|
|
13202
|
+
ReadConfluencePage = "READ_CONFLUENCE_PAGE",
|
|
13203
|
+
WriteConfluencePage = "WRITE_CONFLUENCE_PAGE",
|
|
13204
|
+
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
13205
|
+
ReadConfluenceBlogpost = "READ_CONFLUENCE_BLOGPOST",
|
|
13206
|
+
WriteConfluenceBlogpost = "WRITE_CONFLUENCE_BLOGPOST",
|
|
13207
|
+
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
13208
|
+
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
13209
|
+
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13210
|
+
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13211
|
+
ReadConfluenceAttachment = "READ_CONFLUENCE_ATTACHMENT",
|
|
13212
|
+
WriteConfluenceAttachment = "WRITE_CONFLUENCE_ATTACHMENT",
|
|
13213
|
+
DeleteConfluenceAttachment = "DELETE_CONFLUENCE_ATTACHMENT",
|
|
13214
|
+
ReadConfluenceComment = "READ_CONFLUENCE_COMMENT",
|
|
13215
|
+
WriteConfluenceComment = "WRITE_CONFLUENCE_COMMENT",
|
|
13216
|
+
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
13217
|
+
ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
|
|
13218
|
+
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
13219
|
+
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
13220
|
+
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
13221
|
+
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13222
|
+
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
13223
|
+
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
13224
|
+
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13225
|
+
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13226
|
+
ReadConfluenceContentMetadata = "READ_CONFLUENCE_CONTENT_METADATA",
|
|
13227
|
+
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
13228
|
+
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
13229
|
+
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
13230
|
+
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
13231
|
+
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
13232
|
+
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
13233
|
+
ReadConfluenceRelation = "READ_CONFLUENCE_RELATION",
|
|
13234
|
+
WriteConfluenceRelation = "WRITE_CONFLUENCE_RELATION",
|
|
13235
|
+
ReadConfluenceSpace = "READ_CONFLUENCE_SPACE",
|
|
12482
13236
|
WriteConfluenceSpace = "WRITE_CONFLUENCE_SPACE",
|
|
12483
|
-
|
|
12484
|
-
|
|
12485
|
-
|
|
12486
|
-
|
|
12487
|
-
|
|
12488
|
-
|
|
12489
|
-
|
|
13237
|
+
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
13238
|
+
ReadConfluenceSpacePermission = "READ_CONFLUENCE_SPACE_PERMISSION",
|
|
13239
|
+
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13240
|
+
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13241
|
+
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
13242
|
+
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13243
|
+
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
12490
13244
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
12491
|
-
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
12492
13245
|
ManageApp = "MANAGE_APP",
|
|
12493
13246
|
StorageApp = "STORAGE_APP",
|
|
12494
13247
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -12640,7 +13393,7 @@ export declare type SetColumnLimitInput = {
|
|
|
12640
13393
|
};
|
|
12641
13394
|
export declare type SetColumnLimitOutput = MutationResponse & {
|
|
12642
13395
|
__typename?: 'SetColumnLimitOutput';
|
|
12643
|
-
columns?: Maybe<Array<Column
|
|
13396
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12644
13397
|
statusCode: Scalars['Int'];
|
|
12645
13398
|
success: Scalars['Boolean'];
|
|
12646
13399
|
message: Scalars['String'];
|
|
@@ -13067,6 +13820,21 @@ export declare type StartSprintInput = {
|
|
|
13067
13820
|
startDate: Scalars['String'];
|
|
13068
13821
|
endDate: Scalars['String'];
|
|
13069
13822
|
};
|
|
13823
|
+
export declare type Storage = {
|
|
13824
|
+
__typename?: 'Storage';
|
|
13825
|
+
hosted?: Maybe<HostedStorage>;
|
|
13826
|
+
remotes?: Maybe<Array<Remote>>;
|
|
13827
|
+
};
|
|
13828
|
+
export declare type Subscription = {
|
|
13829
|
+
__typename?: 'Subscription';
|
|
13830
|
+
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
13831
|
+
};
|
|
13832
|
+
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
13833
|
+
cloudId: Scalars['ID'];
|
|
13834
|
+
accountId: Scalars['ID'];
|
|
13835
|
+
projectType?: JiraProjectType;
|
|
13836
|
+
filter?: JiraProjectFilterInput;
|
|
13837
|
+
};
|
|
13070
13838
|
export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
13071
13839
|
__typename?: 'SupportRequest';
|
|
13072
13840
|
id: Scalars['ID'];
|
|
@@ -13084,6 +13852,7 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13084
13852
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13085
13853
|
targetScreen: Scalars['String'];
|
|
13086
13854
|
lastComment: SupportRequestComments;
|
|
13855
|
+
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
13087
13856
|
};
|
|
13088
13857
|
export declare type SupportRequestCommentsArgs = {
|
|
13089
13858
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -13110,7 +13879,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
13110
13879
|
addComment?: Maybe<SupportRequestComment>;
|
|
13111
13880
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
13112
13881
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13113
|
-
|
|
13882
|
+
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13883
|
+
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
13114
13884
|
};
|
|
13115
13885
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
13116
13886
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -13119,7 +13889,10 @@ export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
|
13119
13889
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
13120
13890
|
};
|
|
13121
13891
|
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
13122
|
-
input
|
|
13892
|
+
input: SupportRequestParticipantsInput;
|
|
13893
|
+
};
|
|
13894
|
+
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
13895
|
+
input: SupportRequestParticipantsInput;
|
|
13123
13896
|
};
|
|
13124
13897
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
13125
13898
|
emails: Array<Scalars['String']>;
|
|
@@ -13131,6 +13904,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
13131
13904
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
13132
13905
|
me?: Maybe<SupportRequestPage>;
|
|
13133
13906
|
supportRequest?: Maybe<SupportRequest>;
|
|
13907
|
+
users?: Maybe<SupportRequestUsers>;
|
|
13134
13908
|
};
|
|
13135
13909
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
13136
13910
|
key: Scalars['ID'];
|
|
@@ -13314,6 +14088,22 @@ export declare type SupportRequestUser = {
|
|
|
13314
14088
|
username?: Maybe<Scalars['String']>;
|
|
13315
14089
|
email?: Maybe<Scalars['String']>;
|
|
13316
14090
|
displayName?: Maybe<Scalars['String']>;
|
|
14091
|
+
userType?: Maybe<SupportRequestUserType>;
|
|
14092
|
+
};
|
|
14093
|
+
export declare enum SupportRequestUserType {
|
|
14094
|
+
Customer = "CUSTOMER",
|
|
14095
|
+
Partner = "PARTNER"
|
|
14096
|
+
}
|
|
14097
|
+
export declare type SupportRequestUsers = {
|
|
14098
|
+
__typename?: 'SupportRequestUsers';
|
|
14099
|
+
searchUsers: Array<SupportRequestUser>;
|
|
14100
|
+
};
|
|
14101
|
+
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
14102
|
+
query?: Maybe<Scalars['String']>;
|
|
14103
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
14104
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
14105
|
+
includeActive?: Maybe<Scalars['Boolean']>;
|
|
14106
|
+
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
13317
14107
|
};
|
|
13318
14108
|
export declare type SupportRequests = {
|
|
13319
14109
|
__typename?: 'SupportRequests';
|
|
@@ -13496,6 +14286,53 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
13496
14286
|
WatchingAsc = "WATCHING_ASC",
|
|
13497
14287
|
WatchingDesc = "WATCHING_DESC"
|
|
13498
14288
|
}
|
|
14289
|
+
export declare type TownsquareHelpPointer = Node & {
|
|
14290
|
+
__typename?: 'TownsquareHelpPointer';
|
|
14291
|
+
cloudId?: Maybe<Scalars['String']>;
|
|
14292
|
+
creationDate?: Maybe<Scalars['DateTime']>;
|
|
14293
|
+
creatorAaid?: Maybe<Scalars['String']>;
|
|
14294
|
+
description?: Maybe<Scalars['String']>;
|
|
14295
|
+
id: Scalars['ID'];
|
|
14296
|
+
link?: Maybe<Scalars['String']>;
|
|
14297
|
+
name?: Maybe<Scalars['String']>;
|
|
14298
|
+
owner?: Maybe<TownsquareHelpPointerOwner>;
|
|
14299
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
14300
|
+
teamId?: Maybe<Scalars['String']>;
|
|
14301
|
+
type?: Maybe<TownsquareHelpPointerType>;
|
|
14302
|
+
iconData?: Maybe<Scalars['String']>;
|
|
14303
|
+
};
|
|
14304
|
+
export declare type TownsquareHelpPointerTagsArgs = {
|
|
14305
|
+
after?: Maybe<Scalars['String']>;
|
|
14306
|
+
first?: Maybe<Scalars['Int']>;
|
|
14307
|
+
};
|
|
14308
|
+
export declare type TownsquareHelpPointerConnection = {
|
|
14309
|
+
__typename?: 'TownsquareHelpPointerConnection';
|
|
14310
|
+
count: Scalars['Int'];
|
|
14311
|
+
edges?: Maybe<Array<Maybe<TownsquareHelpPointerEdge>>>;
|
|
14312
|
+
pageInfo: PageInfo;
|
|
14313
|
+
};
|
|
14314
|
+
export declare type TownsquareHelpPointerEdge = {
|
|
14315
|
+
__typename?: 'TownsquareHelpPointerEdge';
|
|
14316
|
+
cursor: Scalars['String'];
|
|
14317
|
+
node?: Maybe<TownsquareHelpPointer>;
|
|
14318
|
+
};
|
|
14319
|
+
export declare type TownsquareHelpPointerOwner = {
|
|
14320
|
+
__typename?: 'TownsquareHelpPointerOwner';
|
|
14321
|
+
displayName?: Maybe<Scalars['String']>;
|
|
14322
|
+
id?: Maybe<Scalars['String']>;
|
|
14323
|
+
largeAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
14324
|
+
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
14325
|
+
};
|
|
14326
|
+
export declare type TownsquareHelpPointerSearchResponse = {
|
|
14327
|
+
__typename?: 'TownsquareHelpPointerSearchResponse';
|
|
14328
|
+
results?: Maybe<TownsquareHelpPointerConnection>;
|
|
14329
|
+
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
14330
|
+
teams?: Maybe<Array<Maybe<TownsquareTeam>>>;
|
|
14331
|
+
};
|
|
14332
|
+
export declare enum TownsquareHelpPointerType {
|
|
14333
|
+
Action = "ACTION",
|
|
14334
|
+
Information = "INFORMATION"
|
|
14335
|
+
}
|
|
13499
14336
|
export declare type TownsquareProject = Node & {
|
|
13500
14337
|
__typename?: 'TownsquareProject';
|
|
13501
14338
|
archived: Scalars['Boolean'];
|
|
@@ -13557,6 +14394,9 @@ export declare type TownsquareQueryApi = {
|
|
|
13557
14394
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
13558
14395
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
13559
14396
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
14397
|
+
helpPointerSearch?: Maybe<TownsquareHelpPointerSearchResponse>;
|
|
14398
|
+
helpPointersByCloudIds?: Maybe<TownsquareHelpPointerConnection>;
|
|
14399
|
+
helpPointersByTeam?: Maybe<TownsquareHelpPointerConnection>;
|
|
13560
14400
|
};
|
|
13561
14401
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
13562
14402
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -13582,6 +14422,49 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
13582
14422
|
q?: Maybe<Scalars['String']>;
|
|
13583
14423
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
13584
14424
|
};
|
|
14425
|
+
export declare type TownsquareQueryApiHelpPointerSearchArgs = {
|
|
14426
|
+
after?: Maybe<Scalars['String']>;
|
|
14427
|
+
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14428
|
+
first?: Maybe<Scalars['Int']>;
|
|
14429
|
+
q?: Maybe<Scalars['String']>;
|
|
14430
|
+
};
|
|
14431
|
+
export declare type TownsquareQueryApiHelpPointersByCloudIdsArgs = {
|
|
14432
|
+
after?: Maybe<Scalars['String']>;
|
|
14433
|
+
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14434
|
+
first?: Maybe<Scalars['Int']>;
|
|
14435
|
+
};
|
|
14436
|
+
export declare type TownsquareQueryApiHelpPointersByTeamArgs = {
|
|
14437
|
+
after?: Maybe<Scalars['String']>;
|
|
14438
|
+
first?: Maybe<Scalars['Int']>;
|
|
14439
|
+
teamUuid: Scalars['String'];
|
|
14440
|
+
};
|
|
14441
|
+
export declare type TownsquareTag = Node & {
|
|
14442
|
+
__typename?: 'TownsquareTag';
|
|
14443
|
+
description?: Maybe<Scalars['String']>;
|
|
14444
|
+
id: Scalars['ID'];
|
|
14445
|
+
name?: Maybe<Scalars['String']>;
|
|
14446
|
+
};
|
|
14447
|
+
export declare type TownsquareTagConnection = {
|
|
14448
|
+
__typename?: 'TownsquareTagConnection';
|
|
14449
|
+
count: Scalars['Int'];
|
|
14450
|
+
edges?: Maybe<Array<Maybe<TownsquareTagEdge>>>;
|
|
14451
|
+
pageInfo: PageInfo;
|
|
14452
|
+
};
|
|
14453
|
+
export declare type TownsquareTagEdge = {
|
|
14454
|
+
__typename?: 'TownsquareTagEdge';
|
|
14455
|
+
cursor: Scalars['String'];
|
|
14456
|
+
node?: Maybe<TownsquareTag>;
|
|
14457
|
+
};
|
|
14458
|
+
export declare type TownsquareTeam = Node & {
|
|
14459
|
+
__typename?: 'TownsquareTeam';
|
|
14460
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
14461
|
+
id: Scalars['ID'];
|
|
14462
|
+
name?: Maybe<Scalars['String']>;
|
|
14463
|
+
};
|
|
14464
|
+
export declare type TransitionFilter = {
|
|
14465
|
+
from: Scalars['String'];
|
|
14466
|
+
to: Scalars['String'];
|
|
14467
|
+
};
|
|
13585
14468
|
export declare type TunnelDefinitionsInput = {
|
|
13586
14469
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
13587
14470
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|
|
@@ -13744,6 +14627,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
13744
14627
|
ownerId?: Maybe<Scalars['ID']>;
|
|
13745
14628
|
componentType?: Maybe<CompassComponentType>;
|
|
13746
14629
|
importance?: Maybe<CompassScorecardImportance>;
|
|
14630
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
13747
14631
|
};
|
|
13748
14632
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
13749
14633
|
__typename?: 'UpdateCompassScorecardPayload';
|
|
@@ -14059,8 +14943,13 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
|
14059
14943
|
success: Scalars['Boolean'];
|
|
14060
14944
|
errors?: Maybe<Array<MutationError>>;
|
|
14061
14945
|
};
|
|
14946
|
+
export declare type UpdateUserInstallationRulesInput = {
|
|
14947
|
+
cloudId: Scalars['ID'];
|
|
14948
|
+
rule: UserInstallationRuleValue;
|
|
14949
|
+
};
|
|
14062
14950
|
export declare type User = {
|
|
14063
14951
|
accountId: Scalars['ID'];
|
|
14952
|
+
canonicalAccountId: Scalars['ID'];
|
|
14064
14953
|
accountStatus: AccountStatus;
|
|
14065
14954
|
name: Scalars['String'];
|
|
14066
14955
|
picture: Scalars['URL'];
|
|
@@ -14125,6 +15014,20 @@ export declare type UserGrantPageInfo = {
|
|
|
14125
15014
|
startCursor?: Maybe<Scalars['String']>;
|
|
14126
15015
|
endCursor?: Maybe<Scalars['String']>;
|
|
14127
15016
|
};
|
|
15017
|
+
export declare enum UserInstallationRuleValue {
|
|
15018
|
+
Allow = "allow",
|
|
15019
|
+
Deny = "deny"
|
|
15020
|
+
}
|
|
15021
|
+
export declare type UserInstallationRules = {
|
|
15022
|
+
__typename?: 'UserInstallationRules';
|
|
15023
|
+
rule: UserInstallationRuleValue;
|
|
15024
|
+
};
|
|
15025
|
+
export declare type UserInstallationRulesPayload = Payload & {
|
|
15026
|
+
__typename?: 'UserInstallationRulesPayload';
|
|
15027
|
+
rule?: Maybe<UserInstallationRuleValue>;
|
|
15028
|
+
success: Scalars['Boolean'];
|
|
15029
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15030
|
+
};
|
|
14128
15031
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
14129
15032
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
14130
15033
|
success: Scalars['Boolean'];
|