@forge/cli-shared 0.0.0-experimental-490cfcf → 0.0.0-experimental-e1cefc4
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.
|
@@ -184,6 +184,12 @@ export declare type ActivityConnection = {
|
|
|
184
184
|
edges?: Maybe<Array<Maybe<ActivityItemEdge>>>;
|
|
185
185
|
pageInfo: ActivityPageInfo;
|
|
186
186
|
};
|
|
187
|
+
export declare type ActivityContributor = {
|
|
188
|
+
__typename?: 'ActivityContributor';
|
|
189
|
+
profile?: Maybe<User>;
|
|
190
|
+
lastAccessedDate: Scalars['DateTime'];
|
|
191
|
+
count?: Maybe<Scalars['Int']>;
|
|
192
|
+
};
|
|
187
193
|
export declare type ActivityEdge = {
|
|
188
194
|
__typename?: 'ActivityEdge';
|
|
189
195
|
cursor: Scalars['String'];
|
|
@@ -242,10 +248,10 @@ export declare type ActivityObject = {
|
|
|
242
248
|
type: Scalars['String'];
|
|
243
249
|
product: Scalars['String'];
|
|
244
250
|
subProduct?: Maybe<Scalars['String']>;
|
|
245
|
-
contributors?: Maybe<Array<
|
|
251
|
+
contributors?: Maybe<Array<ActivityContributor>>;
|
|
246
252
|
data?: Maybe<ActivityObjectData>;
|
|
247
253
|
};
|
|
248
|
-
export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
254
|
+
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
249
255
|
export declare enum ActivityObjectType {
|
|
250
256
|
Site = "SITE",
|
|
251
257
|
Project = "PROJECT",
|
|
@@ -311,7 +317,10 @@ export declare enum ApiGroup {
|
|
|
311
317
|
DevopsService = "DEVOPS_SERVICE",
|
|
312
318
|
DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
|
|
313
319
|
Teams = "TEAMS",
|
|
314
|
-
ContentPlatformApi = "CONTENT_PLATFORM_API"
|
|
320
|
+
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
321
|
+
Identity = "IDENTITY",
|
|
322
|
+
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
323
|
+
Help = "HELP"
|
|
315
324
|
}
|
|
316
325
|
export declare type App = {
|
|
317
326
|
__typename?: 'App';
|
|
@@ -495,7 +504,7 @@ export declare type AppInstallation = {
|
|
|
495
504
|
__typename?: 'AppInstallation';
|
|
496
505
|
id: Scalars['ID'];
|
|
497
506
|
installationContext: Scalars['ID'];
|
|
498
|
-
createdAt: Scalars['
|
|
507
|
+
createdAt: Scalars['DateTime'];
|
|
499
508
|
createdBy?: Maybe<User>;
|
|
500
509
|
version?: Maybe<AppVersion>;
|
|
501
510
|
app?: Maybe<App>;
|
|
@@ -796,6 +805,7 @@ export declare type AppUninstallationInput = {
|
|
|
796
805
|
environmentKey: Scalars['String'];
|
|
797
806
|
async?: Maybe<Scalars['Boolean']>;
|
|
798
807
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
808
|
+
sourceBillingType?: Maybe<SourceBillingType>;
|
|
799
809
|
};
|
|
800
810
|
export declare type AppUninstallationResponse = Payload & {
|
|
801
811
|
__typename?: 'AppUninstallationResponse';
|
|
@@ -852,6 +862,66 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
|
852
862
|
success: Scalars['Boolean'];
|
|
853
863
|
errors?: Maybe<Array<MutationError>>;
|
|
854
864
|
};
|
|
865
|
+
export declare type AriGraph = {
|
|
866
|
+
__typename?: 'AriGraph';
|
|
867
|
+
relationship?: Maybe<AriGraphRelationship>;
|
|
868
|
+
relationships?: Maybe<AriGraphRelationshipConnection>;
|
|
869
|
+
};
|
|
870
|
+
export declare type AriGraphRelationshipArgs = {
|
|
871
|
+
from: Scalars['ID'];
|
|
872
|
+
type: Scalars['ID'];
|
|
873
|
+
to: Scalars['ID'];
|
|
874
|
+
};
|
|
875
|
+
export declare type AriGraphRelationshipsArgs = {
|
|
876
|
+
filter: AriGraphRelationshipsFilter;
|
|
877
|
+
first?: Maybe<Scalars['Int']>;
|
|
878
|
+
after?: Maybe<Scalars['String']>;
|
|
879
|
+
};
|
|
880
|
+
export declare type AriGraphCreateRelationshipInput = {
|
|
881
|
+
from: Scalars['ID'];
|
|
882
|
+
to: Scalars['ID'];
|
|
883
|
+
type: Scalars['ID'];
|
|
884
|
+
};
|
|
885
|
+
export declare type AriGraphCreateRelationshipPayload = Payload & {
|
|
886
|
+
__typename?: 'AriGraphCreateRelationshipPayload';
|
|
887
|
+
success: Scalars['Boolean'];
|
|
888
|
+
errors?: Maybe<Array<MutationError>>;
|
|
889
|
+
};
|
|
890
|
+
export declare type AriGraphMutation = {
|
|
891
|
+
__typename?: 'AriGraphMutation';
|
|
892
|
+
createRelationship?: Maybe<AriGraphCreateRelationshipPayload>;
|
|
893
|
+
};
|
|
894
|
+
export declare type AriGraphMutationCreateRelationshipArgs = {
|
|
895
|
+
input: AriGraphCreateRelationshipInput;
|
|
896
|
+
};
|
|
897
|
+
export declare type AriGraphRelationship = {
|
|
898
|
+
__typename?: 'AriGraphRelationship';
|
|
899
|
+
from: AriGraphRelationshipNode;
|
|
900
|
+
type: Scalars['ID'];
|
|
901
|
+
to: AriGraphRelationshipNode;
|
|
902
|
+
lastUpdated: Scalars['DateTime'];
|
|
903
|
+
};
|
|
904
|
+
export declare type AriGraphRelationshipConnection = {
|
|
905
|
+
__typename?: 'AriGraphRelationshipConnection';
|
|
906
|
+
nodes?: Maybe<Array<Maybe<AriGraphRelationship>>>;
|
|
907
|
+
edges?: Maybe<Array<Maybe<AriGraphRelationshipEdge>>>;
|
|
908
|
+
pageInfo: PageInfo;
|
|
909
|
+
};
|
|
910
|
+
export declare type AriGraphRelationshipEdge = {
|
|
911
|
+
__typename?: 'AriGraphRelationshipEdge';
|
|
912
|
+
cursor: Scalars['String'];
|
|
913
|
+
node: AriGraphRelationship;
|
|
914
|
+
};
|
|
915
|
+
export declare type AriGraphRelationshipNode = {
|
|
916
|
+
__typename?: 'AriGraphRelationshipNode';
|
|
917
|
+
id: Scalars['ID'];
|
|
918
|
+
data?: Maybe<DeploymentSummary>;
|
|
919
|
+
};
|
|
920
|
+
export declare type AriGraphRelationshipsFilter = {
|
|
921
|
+
type: Scalars['ID'];
|
|
922
|
+
from?: Maybe<Scalars['ID']>;
|
|
923
|
+
to?: Maybe<Scalars['ID']>;
|
|
924
|
+
};
|
|
855
925
|
export declare type ArjConfiguration = {
|
|
856
926
|
__typename?: 'ArjConfiguration';
|
|
857
927
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -976,6 +1046,34 @@ export declare type AvatarInput = {
|
|
|
976
1046
|
webUrl?: Maybe<Scalars['String']>;
|
|
977
1047
|
description?: Maybe<Scalars['String']>;
|
|
978
1048
|
};
|
|
1049
|
+
export declare type Avocado = {
|
|
1050
|
+
__typename?: 'Avocado';
|
|
1051
|
+
questionsByAri?: Maybe<Array<Maybe<AvocadoQuestion>>>;
|
|
1052
|
+
answersByAri?: Maybe<Array<Maybe<AvocadoAnswer>>>;
|
|
1053
|
+
};
|
|
1054
|
+
export declare type AvocadoQuestionsByAriArgs = {
|
|
1055
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
1056
|
+
};
|
|
1057
|
+
export declare type AvocadoAnswersByAriArgs = {
|
|
1058
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
1059
|
+
};
|
|
1060
|
+
export declare type AvocadoAnswer = Node & {
|
|
1061
|
+
__typename?: 'AvocadoAnswer';
|
|
1062
|
+
id: Scalars['ID'];
|
|
1063
|
+
text: Scalars['String'];
|
|
1064
|
+
siteName: Scalars['String'];
|
|
1065
|
+
url: Scalars['String'];
|
|
1066
|
+
iconUrl: Scalars['String'];
|
|
1067
|
+
};
|
|
1068
|
+
export declare type AvocadoQuestion = Node & {
|
|
1069
|
+
__typename?: 'AvocadoQuestion';
|
|
1070
|
+
id: Scalars['ID'];
|
|
1071
|
+
text: Scalars['String'];
|
|
1072
|
+
siteName: Scalars['String'];
|
|
1073
|
+
url: Scalars['String'];
|
|
1074
|
+
iconUrl: Scalars['String'];
|
|
1075
|
+
isAnswered: Scalars['Boolean'];
|
|
1076
|
+
};
|
|
979
1077
|
export declare type Backlog = {
|
|
980
1078
|
__typename?: 'Backlog';
|
|
981
1079
|
boardIssueListKey?: Maybe<Scalars['String']>;
|
|
@@ -1004,6 +1102,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1004
1102
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1005
1103
|
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1006
1104
|
imageUri?: Maybe<Scalars['String']>;
|
|
1105
|
+
dependents?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1007
1106
|
};
|
|
1008
1107
|
export declare enum BitbucketPermission {
|
|
1009
1108
|
Admin = "ADMIN"
|
|
@@ -1139,8 +1238,9 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1139
1238
|
Disabled = "DISABLED"
|
|
1140
1239
|
}
|
|
1141
1240
|
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1142
|
-
export declare type BoardScope = {
|
|
1241
|
+
export declare type BoardScope = Node & {
|
|
1143
1242
|
__typename?: 'BoardScope';
|
|
1243
|
+
id: Scalars['ID'];
|
|
1144
1244
|
board?: Maybe<SoftwareBoard>;
|
|
1145
1245
|
userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
|
|
1146
1246
|
backlog?: Maybe<Backlog>;
|
|
@@ -1157,6 +1257,7 @@ export declare type BoardScope = {
|
|
|
1157
1257
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1158
1258
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1159
1259
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1260
|
+
name?: Maybe<Scalars['String']>;
|
|
1160
1261
|
};
|
|
1161
1262
|
export declare type BoardScopeSprintsArgs = {
|
|
1162
1263
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1175,6 +1276,16 @@ export declare type BoardScopeFilteredCardIdsArgs = {
|
|
|
1175
1276
|
issueIds: Array<Maybe<Scalars['ID']>>;
|
|
1176
1277
|
customFilterIds: Array<Maybe<Scalars['ID']>>;
|
|
1177
1278
|
};
|
|
1279
|
+
export declare type BoardScopeConnection = {
|
|
1280
|
+
__typename?: 'BoardScopeConnection';
|
|
1281
|
+
edges?: Maybe<Array<Maybe<BoardScopeEdge>>>;
|
|
1282
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1283
|
+
};
|
|
1284
|
+
export declare type BoardScopeEdge = {
|
|
1285
|
+
__typename?: 'BoardScopeEdge';
|
|
1286
|
+
node?: Maybe<BoardScope>;
|
|
1287
|
+
cursor?: Maybe<Scalars['String']>;
|
|
1288
|
+
};
|
|
1178
1289
|
export declare enum BuiltinPolarisIdeaField {
|
|
1179
1290
|
Assignee = "ASSIGNEE",
|
|
1180
1291
|
Created = "CREATED",
|
|
@@ -1346,6 +1457,7 @@ export declare type CardStatus = {
|
|
|
1346
1457
|
export declare type CardType = {
|
|
1347
1458
|
__typename?: 'CardType';
|
|
1348
1459
|
id?: Maybe<Scalars['ID']>;
|
|
1460
|
+
externalId?: Maybe<Scalars['ID']>;
|
|
1349
1461
|
name?: Maybe<Scalars['String']>;
|
|
1350
1462
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1351
1463
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
@@ -1573,6 +1685,9 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1573
1685
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1574
1686
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1575
1687
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1688
|
+
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1689
|
+
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
1690
|
+
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
1576
1691
|
};
|
|
1577
1692
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1578
1693
|
cloudId: Scalars['ID'];
|
|
@@ -1722,6 +1837,15 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
1722
1837
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1723
1838
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1724
1839
|
};
|
|
1840
|
+
export declare type CompassCatalogMutationApiCreateCustomFieldDefinitionArgs = {
|
|
1841
|
+
input: CompassCreateCustomFieldDefinitionInput;
|
|
1842
|
+
};
|
|
1843
|
+
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
1844
|
+
input: CompassUpdateCustomFieldDefinitionInput;
|
|
1845
|
+
};
|
|
1846
|
+
export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
1847
|
+
input: CompassDeleteCustomFieldDefinitionInput;
|
|
1848
|
+
};
|
|
1725
1849
|
export declare type CompassCatalogQueryApi = {
|
|
1726
1850
|
__typename?: 'CompassCatalogQueryApi';
|
|
1727
1851
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1736,6 +1860,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1736
1860
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1737
1861
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1738
1862
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1863
|
+
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
1739
1864
|
};
|
|
1740
1865
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1741
1866
|
id: Scalars['ID'];
|
|
@@ -1783,6 +1908,9 @@ export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
1783
1908
|
eventType: CompassEventType;
|
|
1784
1909
|
externalEventSourceId: Scalars['ID'];
|
|
1785
1910
|
};
|
|
1911
|
+
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
1912
|
+
query: CompassCustomFieldDefinitionsQuery;
|
|
1913
|
+
};
|
|
1786
1914
|
export declare type CompassChangeMetadata = {
|
|
1787
1915
|
__typename?: 'CompassChangeMetadata';
|
|
1788
1916
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1812,6 +1940,7 @@ export declare type CompassComponent = Node & {
|
|
|
1812
1940
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1813
1941
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1814
1942
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1943
|
+
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1815
1944
|
};
|
|
1816
1945
|
export declare type CompassComponentRelationshipsArgs = {
|
|
1817
1946
|
query?: Maybe<CompassRelationshipQuery>;
|
|
@@ -1888,6 +2017,12 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1888
2017
|
externalEventSourceId: Scalars['ID'];
|
|
1889
2018
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1890
2019
|
};
|
|
2020
|
+
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2021
|
+
cloudId: Scalars['ID'];
|
|
2022
|
+
name: Scalars['String'];
|
|
2023
|
+
description?: Maybe<Scalars['String']>;
|
|
2024
|
+
componentTypes: Array<CompassComponentType>;
|
|
2025
|
+
};
|
|
1891
2026
|
export declare type CompassCreateCustomEventInput = {
|
|
1892
2027
|
displayName: Scalars['String'];
|
|
1893
2028
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1897,6 +2032,29 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
1897
2032
|
externalEventSourceId: Scalars['ID'];
|
|
1898
2033
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1899
2034
|
};
|
|
2035
|
+
export declare type CompassCreateCustomFieldDefinitionInput = {
|
|
2036
|
+
booleanFieldDefinition?: Maybe<CompassCreateCustomBooleanFieldDefinitionInput>;
|
|
2037
|
+
textFieldDefinition?: Maybe<CompassCreateCustomTextFieldDefinitionInput>;
|
|
2038
|
+
numberFieldDefinition?: Maybe<CompassCreateCustomNumberFieldDefinitionInput>;
|
|
2039
|
+
};
|
|
2040
|
+
export declare type CompassCreateCustomFieldDefinitionPayload = Payload & {
|
|
2041
|
+
__typename?: 'CompassCreateCustomFieldDefinitionPayload';
|
|
2042
|
+
success: Scalars['Boolean'];
|
|
2043
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2044
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinition>;
|
|
2045
|
+
};
|
|
2046
|
+
export declare type CompassCreateCustomNumberFieldDefinitionInput = {
|
|
2047
|
+
cloudId: Scalars['ID'];
|
|
2048
|
+
name: Scalars['String'];
|
|
2049
|
+
description?: Maybe<Scalars['String']>;
|
|
2050
|
+
componentTypes: Array<CompassComponentType>;
|
|
2051
|
+
};
|
|
2052
|
+
export declare type CompassCreateCustomTextFieldDefinitionInput = {
|
|
2053
|
+
cloudId: Scalars['ID'];
|
|
2054
|
+
name: Scalars['String'];
|
|
2055
|
+
description?: Maybe<Scalars['String']>;
|
|
2056
|
+
componentTypes: Array<CompassComponentType>;
|
|
2057
|
+
};
|
|
1900
2058
|
export declare type CompassCreateDeploymentEventInput = {
|
|
1901
2059
|
updateSequenceNumber: Scalars['Long'];
|
|
1902
2060
|
displayName: Scalars['String'];
|
|
@@ -2006,6 +2164,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
2006
2164
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
2007
2165
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
2008
2166
|
}
|
|
2167
|
+
export declare type CompassCustomBooleanField = CompassCustomField & {
|
|
2168
|
+
__typename?: 'CompassCustomBooleanField';
|
|
2169
|
+
definition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2170
|
+
booleanValue?: Maybe<Scalars['Boolean']>;
|
|
2171
|
+
};
|
|
2172
|
+
export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2173
|
+
__typename?: 'CompassCustomBooleanFieldDefinition';
|
|
2174
|
+
id: Scalars['ID'];
|
|
2175
|
+
name?: Maybe<Scalars['String']>;
|
|
2176
|
+
description?: Maybe<Scalars['String']>;
|
|
2177
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2178
|
+
};
|
|
2179
|
+
export declare type CompassCustomBooleanFieldInput = {
|
|
2180
|
+
definitionId: Scalars['ID'];
|
|
2181
|
+
booleanValue: Scalars['Boolean'];
|
|
2182
|
+
};
|
|
2009
2183
|
export declare type CompassCustomEvent = CompassEvent & {
|
|
2010
2184
|
__typename?: 'CompassCustomEvent';
|
|
2011
2185
|
eventType: CompassEventType;
|
|
@@ -2030,6 +2204,68 @@ export declare type CompassCustomEventPropertiesInput = {
|
|
|
2030
2204
|
id: Scalars['ID'];
|
|
2031
2205
|
icon: CompassCustomEventIcon;
|
|
2032
2206
|
};
|
|
2207
|
+
export declare type CompassCustomField = {
|
|
2208
|
+
definition?: Maybe<CompassCustomFieldDefinition>;
|
|
2209
|
+
};
|
|
2210
|
+
export declare type CompassCustomFieldDefinition = {
|
|
2211
|
+
id: Scalars['ID'];
|
|
2212
|
+
name?: Maybe<Scalars['String']>;
|
|
2213
|
+
description?: Maybe<Scalars['String']>;
|
|
2214
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2215
|
+
};
|
|
2216
|
+
export declare type CompassCustomFieldDefinitionEdge = {
|
|
2217
|
+
__typename?: 'CompassCustomFieldDefinitionEdge';
|
|
2218
|
+
cursor: Scalars['String'];
|
|
2219
|
+
node?: Maybe<CompassCustomFieldDefinition>;
|
|
2220
|
+
};
|
|
2221
|
+
export declare type CompassCustomFieldDefinitionsConnection = {
|
|
2222
|
+
__typename?: 'CompassCustomFieldDefinitionsConnection';
|
|
2223
|
+
edges?: Maybe<Array<CompassCustomFieldDefinitionEdge>>;
|
|
2224
|
+
nodes?: Maybe<Array<CompassCustomFieldDefinition>>;
|
|
2225
|
+
pageInfo: PageInfo;
|
|
2226
|
+
};
|
|
2227
|
+
export declare type CompassCustomFieldDefinitionsQuery = {
|
|
2228
|
+
cloudId: Scalars['ID'];
|
|
2229
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2230
|
+
};
|
|
2231
|
+
export declare type CompassCustomFieldDefinitionsResult = CompassCustomFieldDefinitionsConnection | QueryError;
|
|
2232
|
+
export declare type CompassCustomFieldInput = {
|
|
2233
|
+
booleanField?: Maybe<CompassCustomBooleanFieldInput>;
|
|
2234
|
+
textField?: Maybe<CompassCustomTextFieldInput>;
|
|
2235
|
+
numberField?: Maybe<CompassCustomNumberFieldInput>;
|
|
2236
|
+
};
|
|
2237
|
+
export declare type CompassCustomNumberField = CompassCustomField & {
|
|
2238
|
+
__typename?: 'CompassCustomNumberField';
|
|
2239
|
+
definition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2240
|
+
numberValue?: Maybe<Scalars['Float']>;
|
|
2241
|
+
};
|
|
2242
|
+
export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2243
|
+
__typename?: 'CompassCustomNumberFieldDefinition';
|
|
2244
|
+
id: Scalars['ID'];
|
|
2245
|
+
name?: Maybe<Scalars['String']>;
|
|
2246
|
+
description?: Maybe<Scalars['String']>;
|
|
2247
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2248
|
+
};
|
|
2249
|
+
export declare type CompassCustomNumberFieldInput = {
|
|
2250
|
+
definitionId: Scalars['ID'];
|
|
2251
|
+
numberValue?: Maybe<Scalars['Float']>;
|
|
2252
|
+
};
|
|
2253
|
+
export declare type CompassCustomTextField = CompassCustomField & {
|
|
2254
|
+
__typename?: 'CompassCustomTextField';
|
|
2255
|
+
definition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
2256
|
+
textValue?: Maybe<Scalars['String']>;
|
|
2257
|
+
};
|
|
2258
|
+
export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2259
|
+
__typename?: 'CompassCustomTextFieldDefinition';
|
|
2260
|
+
id: Scalars['ID'];
|
|
2261
|
+
name?: Maybe<Scalars['String']>;
|
|
2262
|
+
description?: Maybe<Scalars['String']>;
|
|
2263
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2264
|
+
};
|
|
2265
|
+
export declare type CompassCustomTextFieldInput = {
|
|
2266
|
+
definitionId: Scalars['ID'];
|
|
2267
|
+
textValue?: Maybe<Scalars['String']>;
|
|
2268
|
+
};
|
|
2033
2269
|
export declare type CompassDeleteAnnouncementInput = {
|
|
2034
2270
|
cloudId: Scalars['ID'];
|
|
2035
2271
|
id: Scalars['ID'];
|
|
@@ -2040,6 +2276,15 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2040
2276
|
success: Scalars['Boolean'];
|
|
2041
2277
|
errors?: Maybe<Array<MutationError>>;
|
|
2042
2278
|
};
|
|
2279
|
+
export declare type CompassDeleteCustomFieldDefinitionInput = {
|
|
2280
|
+
id: Scalars['ID'];
|
|
2281
|
+
};
|
|
2282
|
+
export declare type CompassDeleteCustomFieldDefinitionPayload = Payload & {
|
|
2283
|
+
__typename?: 'CompassDeleteCustomFieldDefinitionPayload';
|
|
2284
|
+
success: Scalars['Boolean'];
|
|
2285
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2286
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
2287
|
+
};
|
|
2043
2288
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
2044
2289
|
id: Scalars['ID'];
|
|
2045
2290
|
};
|
|
@@ -2720,6 +2965,35 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
2720
2965
|
success: Scalars['Boolean'];
|
|
2721
2966
|
errors?: Maybe<Array<MutationError>>;
|
|
2722
2967
|
};
|
|
2968
|
+
export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
2969
|
+
id: Scalars['ID'];
|
|
2970
|
+
name?: Maybe<Scalars['String']>;
|
|
2971
|
+
description?: Maybe<Scalars['String']>;
|
|
2972
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2973
|
+
};
|
|
2974
|
+
export declare type CompassUpdateCustomFieldDefinitionInput = {
|
|
2975
|
+
booleanFieldDefinition?: Maybe<CompassUpdateCustomBooleanFieldDefinitionInput>;
|
|
2976
|
+
textFieldDefinition?: Maybe<CompassUpdateCustomTextFieldDefinitionInput>;
|
|
2977
|
+
numberFieldDefinition?: Maybe<CompassUpdateCustomNumberFieldDefinitionInput>;
|
|
2978
|
+
};
|
|
2979
|
+
export declare type CompassUpdateCustomFieldDefinitionPayload = Payload & {
|
|
2980
|
+
__typename?: 'CompassUpdateCustomFieldDefinitionPayload';
|
|
2981
|
+
success: Scalars['Boolean'];
|
|
2982
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2983
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinition>;
|
|
2984
|
+
};
|
|
2985
|
+
export declare type CompassUpdateCustomNumberFieldDefinitionInput = {
|
|
2986
|
+
id: Scalars['ID'];
|
|
2987
|
+
name?: Maybe<Scalars['String']>;
|
|
2988
|
+
description?: Maybe<Scalars['String']>;
|
|
2989
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2990
|
+
};
|
|
2991
|
+
export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
2992
|
+
id: Scalars['ID'];
|
|
2993
|
+
name?: Maybe<Scalars['String']>;
|
|
2994
|
+
description?: Maybe<Scalars['String']>;
|
|
2995
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2996
|
+
};
|
|
2723
2997
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
2724
2998
|
id: Scalars['ID'];
|
|
2725
2999
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3389,7 +3663,6 @@ export declare type ContainerEventObject = {
|
|
|
3389
3663
|
attributes: Scalars['JSON'];
|
|
3390
3664
|
};
|
|
3391
3665
|
export declare type ContentPlatformAnyContext = ContentPlatformContextProduct | ContentPlatformContextApp | ContentPlatformContextTheme;
|
|
3392
|
-
export declare type ContentPlatformAnyContextEntry = ContentPlatformContextProductEntry | ContentPlatformContextAppEntry | ContentPlatformContextThemeEntry;
|
|
3393
3666
|
export declare type ContentPlatformChunkBenefits = {
|
|
3394
3667
|
__typename?: 'ContentPlatformChunkBenefits';
|
|
3395
3668
|
title: Scalars['String'];
|
|
@@ -3430,16 +3703,6 @@ export declare type ContentPlatformContextApp = {
|
|
|
3430
3703
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3431
3704
|
url?: Maybe<Scalars['String']>;
|
|
3432
3705
|
};
|
|
3433
|
-
export declare type ContentPlatformContextAppEntry = {
|
|
3434
|
-
__typename?: 'ContentPlatformContextAppEntry';
|
|
3435
|
-
contextId: Scalars['String'];
|
|
3436
|
-
title: Scalars['String'];
|
|
3437
|
-
preventProdPublishing?: Maybe<Scalars['Boolean']>;
|
|
3438
|
-
appName: Scalars['String'];
|
|
3439
|
-
parentProductContext: Array<ContentPlatformContextProductEntry>;
|
|
3440
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3441
|
-
url: Scalars['String'];
|
|
3442
|
-
};
|
|
3443
3706
|
export declare type ContentPlatformContextProduct = {
|
|
3444
3707
|
__typename?: 'ContentPlatformContextProduct';
|
|
3445
3708
|
contextId: Scalars['String'];
|
|
@@ -3479,15 +3742,6 @@ export declare type ContentPlatformContextTheme = {
|
|
|
3479
3742
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3480
3743
|
url?: Maybe<Scalars['String']>;
|
|
3481
3744
|
};
|
|
3482
|
-
export declare type ContentPlatformContextThemeEntry = {
|
|
3483
|
-
__typename?: 'ContentPlatformContextThemeEntry';
|
|
3484
|
-
contextId: Scalars['String'];
|
|
3485
|
-
title: Scalars['String'];
|
|
3486
|
-
preventProdPublishing: Scalars['Boolean'];
|
|
3487
|
-
hubName: Scalars['String'];
|
|
3488
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3489
|
-
url: Scalars['String'];
|
|
3490
|
-
};
|
|
3491
3745
|
export declare type ContentPlatformImageAsset = {
|
|
3492
3746
|
__typename?: 'ContentPlatformImageAsset';
|
|
3493
3747
|
title: Scalars['String'];
|
|
@@ -3513,13 +3767,6 @@ export declare type ContentPlatformImageComponent = {
|
|
|
3513
3767
|
image: ContentPlatformImageAsset;
|
|
3514
3768
|
contextReference: Array<ContentPlatformAnyContext>;
|
|
3515
3769
|
};
|
|
3516
|
-
export declare type ContentPlatformImageComponentEntry = {
|
|
3517
|
-
__typename?: 'ContentPlatformImageComponentEntry';
|
|
3518
|
-
name: Scalars['String'];
|
|
3519
|
-
altTag: Scalars['String'];
|
|
3520
|
-
image: ContentPlatformImageAssetEntry;
|
|
3521
|
-
contextReference: Array<ContentPlatformAnyContextEntry>;
|
|
3522
|
-
};
|
|
3523
3770
|
export declare type ContentPlatformIntroToPractice = {
|
|
3524
3771
|
__typename?: 'ContentPlatformIntroToPractice';
|
|
3525
3772
|
title: Scalars['String'];
|
|
@@ -3578,35 +3825,6 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3578
3825
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3579
3826
|
getStarted?: Maybe<Scalars['JSON']>;
|
|
3580
3827
|
};
|
|
3581
|
-
export declare type ContentPlatformReleaseNoteEntry = {
|
|
3582
|
-
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
3583
|
-
releaseNoteId: Scalars['String'];
|
|
3584
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
3585
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
3586
|
-
title?: Maybe<Scalars['String']>;
|
|
3587
|
-
changeTargetSchedule?: Maybe<Scalars['String']>;
|
|
3588
|
-
announcementPlan?: Maybe<ContentPlatformTaxonomyAnnouncementPlanEntry>;
|
|
3589
|
-
changeType?: Maybe<ContentPlatformTypeOfChangeEntry>;
|
|
3590
|
-
changeStatus?: Maybe<ContentPlatformStatusOfChangeEntry>;
|
|
3591
|
-
relatedContexts?: Maybe<Array<ContentPlatformAnyContextEntry>>;
|
|
3592
|
-
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3593
|
-
usersNeedingInformed?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3594
|
-
description?: Maybe<Scalars['JSON']>;
|
|
3595
|
-
featuredImage?: Maybe<ContentPlatformImageComponentEntry>;
|
|
3596
|
-
keyChanges?: Maybe<Scalars['JSON']>;
|
|
3597
|
-
reasonForChange?: Maybe<Scalars['JSON']>;
|
|
3598
|
-
prepareForChange?: Maybe<Scalars['JSON']>;
|
|
3599
|
-
supportingVisuals?: Maybe<Array<ContentPlatformImageComponentEntry>>;
|
|
3600
|
-
relatedContentLinks?: Maybe<Array<Scalars['String']>>;
|
|
3601
|
-
featureRolloutDate?: Maybe<Scalars['String']>;
|
|
3602
|
-
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategoryEntry>;
|
|
3603
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
3604
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
3605
|
-
updatedAt: Scalars['String'];
|
|
3606
|
-
url: Scalars['String'];
|
|
3607
|
-
benefitsList: Scalars['JSON'];
|
|
3608
|
-
getStarted: Scalars['JSON'];
|
|
3609
|
-
};
|
|
3610
3828
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3611
3829
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
3612
3830
|
contextId?: Maybe<Scalars['String']>;
|
|
@@ -3635,11 +3853,6 @@ export declare type ContentPlatformStatusOfChange = {
|
|
|
3635
3853
|
label: Scalars['String'];
|
|
3636
3854
|
description: Scalars['String'];
|
|
3637
3855
|
};
|
|
3638
|
-
export declare type ContentPlatformStatusOfChangeEntry = {
|
|
3639
|
-
__typename?: 'ContentPlatformStatusOfChangeEntry';
|
|
3640
|
-
label: Scalars['String'];
|
|
3641
|
-
description: Scalars['String'];
|
|
3642
|
-
};
|
|
3643
3856
|
export declare type ContentPlatformTaxonomyAnnouncementPlan = {
|
|
3644
3857
|
__typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
|
|
3645
3858
|
title: Scalars['String'];
|
|
@@ -3655,31 +3868,16 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
3655
3868
|
title: Scalars['String'];
|
|
3656
3869
|
description: Scalars['String'];
|
|
3657
3870
|
};
|
|
3658
|
-
export declare type ContentPlatformTaxonomyChangeCategoryEntry = {
|
|
3659
|
-
__typename?: 'ContentPlatformTaxonomyChangeCategoryEntry';
|
|
3660
|
-
title: Scalars['String'];
|
|
3661
|
-
description: Scalars['String'];
|
|
3662
|
-
};
|
|
3663
3871
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
3664
3872
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
3665
3873
|
title: Scalars['String'];
|
|
3666
3874
|
description: Scalars['String'];
|
|
3667
3875
|
};
|
|
3668
|
-
export declare type ContentPlatformTaxonomyUserRoleEntry = {
|
|
3669
|
-
__typename?: 'ContentPlatformTaxonomyUserRoleEntry';
|
|
3670
|
-
title: Scalars['String'];
|
|
3671
|
-
description: Scalars['String'];
|
|
3672
|
-
};
|
|
3673
3876
|
export declare type ContentPlatformTypeOfChange = {
|
|
3674
3877
|
__typename?: 'ContentPlatformTypeOfChange';
|
|
3675
3878
|
label: Scalars['String'];
|
|
3676
3879
|
icon: ContentPlatformImageAsset;
|
|
3677
3880
|
};
|
|
3678
|
-
export declare type ContentPlatformTypeOfChangeEntry = {
|
|
3679
|
-
__typename?: 'ContentPlatformTypeOfChangeEntry';
|
|
3680
|
-
label?: Maybe<Scalars['String']>;
|
|
3681
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3682
|
-
};
|
|
3683
3881
|
export declare type ContentPlatformWhatPractice = {
|
|
3684
3882
|
__typename?: 'ContentPlatformWhatPractice';
|
|
3685
3883
|
title: Scalars['String'];
|
|
@@ -3778,6 +3976,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
3778
3976
|
type: CompassComponentType;
|
|
3779
3977
|
ownerId?: Maybe<Scalars['ID']>;
|
|
3780
3978
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
3979
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
3781
3980
|
};
|
|
3782
3981
|
export declare type CreateCompassComponentLinkInput = {
|
|
3783
3982
|
componentId: Scalars['ID'];
|
|
@@ -4426,6 +4625,7 @@ export declare type DeleteEventSourceInput = {
|
|
|
4426
4625
|
cloudId: Scalars['ID'];
|
|
4427
4626
|
externalEventSourceId: Scalars['ID'];
|
|
4428
4627
|
eventType: CompassEventType;
|
|
4628
|
+
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
4429
4629
|
};
|
|
4430
4630
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
4431
4631
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -4568,6 +4768,7 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4568
4768
|
export declare type DevOps = {
|
|
4569
4769
|
__typename?: 'DevOps';
|
|
4570
4770
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4771
|
+
ariGraph?: Maybe<AriGraph>;
|
|
4571
4772
|
};
|
|
4572
4773
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4573
4774
|
ids: Array<Scalars['ID']>;
|
|
@@ -4771,6 +4972,11 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
4771
4972
|
type: DevOpsMetricsRollupOption;
|
|
4772
4973
|
percentile?: Maybe<Scalars['Int']>;
|
|
4773
4974
|
};
|
|
4975
|
+
export declare type DevOpsMutation = {
|
|
4976
|
+
__typename?: 'DevOpsMutation';
|
|
4977
|
+
_empty?: Maybe<Scalars['String']>;
|
|
4978
|
+
ariGraph?: Maybe<AriGraphMutation>;
|
|
4979
|
+
};
|
|
4774
4980
|
export declare type DevOpsProvider = {
|
|
4775
4981
|
__typename?: 'DevOpsProvider';
|
|
4776
4982
|
name?: Maybe<Scalars['String']>;
|
|
@@ -5036,7 +5242,10 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5036
5242
|
__typename?: 'DevOpsSummarisedDeployments';
|
|
5037
5243
|
entityId: Scalars['ID'];
|
|
5038
5244
|
count?: Maybe<Scalars['Int']>;
|
|
5245
|
+
mostRelevantCount?: Maybe<Scalars['Int']>;
|
|
5039
5246
|
deploymentState?: Maybe<DeploymentState>;
|
|
5247
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5248
|
+
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5040
5249
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5041
5250
|
};
|
|
5042
5251
|
export declare type DevOpsThirdPartyRepository = {
|
|
@@ -5055,6 +5264,7 @@ export declare type DevOpsTool = Node & {
|
|
|
5055
5264
|
group: DevOpsToolGroup;
|
|
5056
5265
|
supportsContainers: Scalars['Boolean'];
|
|
5057
5266
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5267
|
+
integration?: Maybe<DevOpsToolIntegration>;
|
|
5058
5268
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5059
5269
|
};
|
|
5060
5270
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -5170,6 +5380,21 @@ export declare type DevOpsToolGroup = {
|
|
|
5170
5380
|
groupId: Scalars['String'];
|
|
5171
5381
|
groupName: Scalars['String'];
|
|
5172
5382
|
};
|
|
5383
|
+
export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
|
|
5384
|
+
export declare type DevOpsToolIntegrationApp = {
|
|
5385
|
+
__typename?: 'DevOpsToolIntegrationApp';
|
|
5386
|
+
appKey: Scalars['String'];
|
|
5387
|
+
appName: Scalars['String'];
|
|
5388
|
+
installed: Scalars['Boolean'];
|
|
5389
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
5390
|
+
};
|
|
5391
|
+
export declare type DevOpsToolIntegrationProduct = {
|
|
5392
|
+
__typename?: 'DevOpsToolIntegrationProduct';
|
|
5393
|
+
productKey: Scalars['String'];
|
|
5394
|
+
productName: Scalars['String'];
|
|
5395
|
+
available: Scalars['Boolean'];
|
|
5396
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
5397
|
+
};
|
|
5173
5398
|
export declare type DevOpsToolNamespace = Node & {
|
|
5174
5399
|
__typename?: 'DevOpsToolNamespace';
|
|
5175
5400
|
id: Scalars['ID'];
|
|
@@ -5241,6 +5466,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5241
5466
|
first?: Maybe<Scalars['Int']>;
|
|
5242
5467
|
after?: Maybe<Scalars['String']>;
|
|
5243
5468
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
5469
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5244
5470
|
categoryId?: Maybe<Scalars['String']>;
|
|
5245
5471
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5246
5472
|
};
|
|
@@ -5637,9 +5863,9 @@ export declare enum GrantCheckProduct {
|
|
|
5637
5863
|
Compass = "COMPASS",
|
|
5638
5864
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5639
5865
|
}
|
|
5640
|
-
export declare type HelpCenter = {
|
|
5866
|
+
export declare type HelpCenter = Node & {
|
|
5641
5867
|
__typename?: 'HelpCenter';
|
|
5642
|
-
|
|
5868
|
+
id: Scalars['ID'];
|
|
5643
5869
|
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5644
5870
|
};
|
|
5645
5871
|
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
@@ -5765,6 +5991,26 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
5765
5991
|
success: Scalars['Boolean'];
|
|
5766
5992
|
errors?: Maybe<Array<MutationError>>;
|
|
5767
5993
|
};
|
|
5994
|
+
export declare type HelpObjectStoreHelpObject = Node & {
|
|
5995
|
+
__typename?: 'HelpObjectStoreHelpObject';
|
|
5996
|
+
id: Scalars['ID'];
|
|
5997
|
+
title: Scalars['String'];
|
|
5998
|
+
description: Scalars['String'];
|
|
5999
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6000
|
+
displayLink: Scalars['URL'];
|
|
6001
|
+
};
|
|
6002
|
+
export declare type HelpObjectStoreHelpObjectResult = HelpObjectStoreHelpObject | QueryError;
|
|
6003
|
+
export declare type HelpObjectStoreIcon = {
|
|
6004
|
+
__typename?: 'HelpObjectStoreIcon';
|
|
6005
|
+
iconUrl: Scalars['URL'];
|
|
6006
|
+
};
|
|
6007
|
+
export declare type HelpObjectStoreQueryApi = {
|
|
6008
|
+
__typename?: 'HelpObjectStoreQueryApi';
|
|
6009
|
+
helpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpObjectResult>>>;
|
|
6010
|
+
};
|
|
6011
|
+
export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
|
|
6012
|
+
helpObjectARIs: Array<Scalars['ID']>;
|
|
6013
|
+
};
|
|
5768
6014
|
export declare type HostedResourcePreSignedUrl = {
|
|
5769
6015
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5770
6016
|
uploadUrl: Scalars['String'];
|
|
@@ -5905,6 +6151,7 @@ export declare enum IssueDevOpsCommitChangeType {
|
|
|
5905
6151
|
Copied = "COPIED",
|
|
5906
6152
|
Moved = "MOVED",
|
|
5907
6153
|
Modify = "MODIFY",
|
|
6154
|
+
Modified = "MODIFIED",
|
|
5908
6155
|
Unknown = "UNKNOWN"
|
|
5909
6156
|
}
|
|
5910
6157
|
export declare type IssueDevOpsCommitDetails = {
|
|
@@ -6083,7 +6330,8 @@ export declare type IssueDevOpsPullRequestReviewer = {
|
|
|
6083
6330
|
export declare enum IssueDevOpsPullRequestStatus {
|
|
6084
6331
|
Open = "OPEN",
|
|
6085
6332
|
Merged = "MERGED",
|
|
6086
|
-
Declined = "DECLINED"
|
|
6333
|
+
Declined = "DECLINED",
|
|
6334
|
+
Unknown = "UNKNOWN"
|
|
6087
6335
|
}
|
|
6088
6336
|
export declare type IssueDevOpsRemoteLink = {
|
|
6089
6337
|
__typename?: 'IssueDevOpsRemoteLink';
|
|
@@ -6175,6 +6423,7 @@ export declare type JiraAddIssuesToFixVersionInput = {
|
|
|
6175
6423
|
};
|
|
6176
6424
|
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6177
6425
|
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6426
|
+
version?: Maybe<JiraVersion>;
|
|
6178
6427
|
success: Scalars['Boolean'];
|
|
6179
6428
|
errors?: Maybe<Array<MutationError>>;
|
|
6180
6429
|
};
|
|
@@ -7084,6 +7333,7 @@ export declare type JiraForgeDatetimeField = Node & JiraIssueField & JiraIssueFi
|
|
|
7084
7333
|
dateTime?: Maybe<Scalars['DateTime']>;
|
|
7085
7334
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7086
7335
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7336
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7087
7337
|
};
|
|
7088
7338
|
export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7089
7339
|
__typename?: 'JiraForgeGroupField';
|
|
@@ -7098,6 +7348,7 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
7098
7348
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7099
7349
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7100
7350
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7351
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7101
7352
|
};
|
|
7102
7353
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
7103
7354
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7120,6 +7371,7 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7120
7371
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7121
7372
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7122
7373
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7374
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7123
7375
|
};
|
|
7124
7376
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
7125
7377
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7145,6 +7397,7 @@ export declare type JiraForgeNumberField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7145
7397
|
number?: Maybe<Scalars['Float']>;
|
|
7146
7398
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7147
7399
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7400
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7148
7401
|
};
|
|
7149
7402
|
export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7150
7403
|
__typename?: 'JiraForgeObjectField';
|
|
@@ -7157,6 +7410,7 @@ export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7157
7410
|
object?: Maybe<Scalars['String']>;
|
|
7158
7411
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7159
7412
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7413
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7160
7414
|
};
|
|
7161
7415
|
export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7162
7416
|
__typename?: 'JiraForgeStringField';
|
|
@@ -7169,6 +7423,7 @@ export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7169
7423
|
text?: Maybe<Scalars['String']>;
|
|
7170
7424
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7171
7425
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7426
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7172
7427
|
};
|
|
7173
7428
|
export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7174
7429
|
__typename?: 'JiraForgeStringsField';
|
|
@@ -7184,6 +7439,7 @@ export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFie
|
|
|
7184
7439
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7185
7440
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7186
7441
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7442
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7187
7443
|
};
|
|
7188
7444
|
export declare type JiraForgeStringsFieldSelectedLabelsConnectionArgs = {
|
|
7189
7445
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7212,6 +7468,7 @@ export declare type JiraForgeUserField = Node & JiraIssueField & JiraIssueFieldC
|
|
|
7212
7468
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7213
7469
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7214
7470
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7471
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7215
7472
|
};
|
|
7216
7473
|
export declare type JiraForgeUserFieldUsersArgs = {
|
|
7217
7474
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7235,6 +7492,7 @@ export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueField
|
|
|
7235
7492
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7236
7493
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7237
7494
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7495
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7238
7496
|
};
|
|
7239
7497
|
export declare type JiraForgeUsersFieldSelectedUsersConnectionArgs = {
|
|
7240
7498
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7303,6 +7561,11 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
7303
7561
|
id: Scalars['ID'];
|
|
7304
7562
|
group: JiraGroup;
|
|
7305
7563
|
};
|
|
7564
|
+
export declare type JiraHierarchyConfigError = {
|
|
7565
|
+
__typename?: 'JiraHierarchyConfigError';
|
|
7566
|
+
code?: Maybe<Scalars['String']>;
|
|
7567
|
+
message?: Maybe<Scalars['String']>;
|
|
7568
|
+
};
|
|
7306
7569
|
export declare type JiraInvalidJqlError = {
|
|
7307
7570
|
__typename?: 'JiraInvalidJqlError';
|
|
7308
7571
|
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -7332,6 +7595,11 @@ export declare type JiraIssue = Node & {
|
|
|
7332
7595
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7333
7596
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7334
7597
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7598
|
+
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7599
|
+
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7600
|
+
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7601
|
+
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7602
|
+
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
7335
7603
|
};
|
|
7336
7604
|
export declare type JiraIssueFieldsArgs = {
|
|
7337
7605
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7554,6 +7822,43 @@ export declare type JiraIssueFieldSetEdge = {
|
|
|
7554
7822
|
node?: Maybe<JiraIssueFieldSet>;
|
|
7555
7823
|
cursor: Scalars['String'];
|
|
7556
7824
|
};
|
|
7825
|
+
export declare type JiraIssueHierarchyConfigData = {
|
|
7826
|
+
__typename?: 'JiraIssueHierarchyConfigData';
|
|
7827
|
+
hierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7828
|
+
cmpIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
7829
|
+
};
|
|
7830
|
+
export declare type JiraIssueHierarchyConfigDataCmpIssueTypesArgs = {
|
|
7831
|
+
first?: Maybe<Scalars['Int']>;
|
|
7832
|
+
after?: Maybe<Scalars['String']>;
|
|
7833
|
+
last?: Maybe<Scalars['Int']>;
|
|
7834
|
+
before?: Maybe<Scalars['String']>;
|
|
7835
|
+
};
|
|
7836
|
+
export declare type JiraIssueHierarchyConfigInput = {
|
|
7837
|
+
level: Scalars['Int'];
|
|
7838
|
+
title: Scalars['String'];
|
|
7839
|
+
issueTypeIds: Array<Scalars['ID']>;
|
|
7840
|
+
};
|
|
7841
|
+
export declare type JiraIssueHierarchyConfigurationMutationInput = {
|
|
7842
|
+
dryRun: Scalars['Boolean'];
|
|
7843
|
+
issueHierarchyConfig: Array<JiraIssueHierarchyConfigInput>;
|
|
7844
|
+
};
|
|
7845
|
+
export declare type JiraIssueHierarchyConfigurationMutationResult = {
|
|
7846
|
+
__typename?: 'JiraIssueHierarchyConfigurationMutationResult';
|
|
7847
|
+
updateInitiated: Scalars['Boolean'];
|
|
7848
|
+
success: Scalars['Boolean'];
|
|
7849
|
+
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
7850
|
+
};
|
|
7851
|
+
export declare type JiraIssueHierarchyConfigurationQuery = {
|
|
7852
|
+
__typename?: 'JiraIssueHierarchyConfigurationQuery';
|
|
7853
|
+
data?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
7854
|
+
success: Scalars['Boolean'];
|
|
7855
|
+
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
7856
|
+
};
|
|
7857
|
+
export declare type JiraIssueHierarchyLimits = {
|
|
7858
|
+
__typename?: 'JiraIssueHierarchyLimits';
|
|
7859
|
+
maxLevels: Scalars['Int'];
|
|
7860
|
+
nameLength: Scalars['Int'];
|
|
7861
|
+
};
|
|
7557
7862
|
export declare type JiraIssueItemContainer = {
|
|
7558
7863
|
__typename?: 'JiraIssueItemContainer';
|
|
7559
7864
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -7938,6 +8243,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
7938
8243
|
export declare type JiraIssueType = Node & {
|
|
7939
8244
|
__typename?: 'JiraIssueType';
|
|
7940
8245
|
id: Scalars['ID'];
|
|
8246
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
7941
8247
|
name: Scalars['String'];
|
|
7942
8248
|
description?: Maybe<Scalars['String']>;
|
|
7943
8249
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -8597,22 +8903,14 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8597
8903
|
};
|
|
8598
8904
|
export declare type JiraMutation = {
|
|
8599
8905
|
__typename?: 'JiraMutation';
|
|
8600
|
-
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8601
|
-
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8602
|
-
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8603
8906
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8604
8907
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8605
8908
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8606
8909
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8607
8910
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8608
|
-
|
|
8609
|
-
|
|
8610
|
-
|
|
8611
|
-
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8612
|
-
};
|
|
8613
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8614
|
-
id: Scalars['ID'];
|
|
8615
|
-
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8911
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8912
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8913
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8616
8914
|
};
|
|
8617
8915
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8618
8916
|
cloudId: Scalars['ID'];
|
|
@@ -8630,6 +8928,14 @@ export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
|
8630
8928
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8631
8929
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8632
8930
|
};
|
|
8931
|
+
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
8932
|
+
id: Scalars['ID'];
|
|
8933
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8934
|
+
};
|
|
8935
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8936
|
+
id: Scalars['ID'];
|
|
8937
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8938
|
+
};
|
|
8633
8939
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8634
8940
|
__typename?: 'JiraNumberField';
|
|
8635
8941
|
id: Scalars['ID'];
|
|
@@ -9083,6 +9389,7 @@ export declare type JiraProject = Node & {
|
|
|
9083
9389
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
9084
9390
|
status?: Maybe<JiraProjectStatus>;
|
|
9085
9391
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9392
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9086
9393
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
9087
9394
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
9088
9395
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -9142,33 +9449,69 @@ export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
|
9142
9449
|
cursor: Scalars['String'];
|
|
9143
9450
|
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
9144
9451
|
};
|
|
9145
|
-
export declare type
|
|
9146
|
-
__typename?: '
|
|
9452
|
+
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
9453
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
9147
9454
|
id: Scalars['ID'];
|
|
9148
|
-
revision: Scalars['ID'];
|
|
9149
9455
|
jiraProject?: Maybe<JiraProject>;
|
|
9150
|
-
|
|
9151
|
-
opsgenieTeam?: Maybe<OpsgenieTeam>;
|
|
9456
|
+
devOpsTool?: Maybe<DevOpsTool>;
|
|
9152
9457
|
description?: Maybe<Scalars['String']>;
|
|
9458
|
+
revision: Scalars['ID'];
|
|
9153
9459
|
createdBy: Scalars['String'];
|
|
9154
9460
|
createdAt: Scalars['DateTime'];
|
|
9155
9461
|
lastUpdatedBy?: Maybe<Scalars['String']>;
|
|
9156
9462
|
lastUpdatedAt?: Maybe<Scalars['DateTime']>;
|
|
9157
9463
|
properties?: Maybe<Scalars['JSON']>;
|
|
9158
9464
|
};
|
|
9159
|
-
export declare type
|
|
9465
|
+
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
9160
9466
|
keys: Array<Scalars['String']>;
|
|
9161
9467
|
};
|
|
9162
|
-
export declare type
|
|
9163
|
-
|
|
9164
|
-
|
|
9165
|
-
|
|
9166
|
-
|
|
9468
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
9469
|
+
jiraProjectId: Scalars['ID'];
|
|
9470
|
+
devOpsToolId: Scalars['ID'];
|
|
9471
|
+
description?: Maybe<Scalars['String']>;
|
|
9472
|
+
properties?: Maybe<Array<DevOpsContainerRelationshipEntityPropertyInput>>;
|
|
9167
9473
|
};
|
|
9168
|
-
export declare type
|
|
9169
|
-
__typename?: '
|
|
9170
|
-
|
|
9171
|
-
|
|
9474
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload & {
|
|
9475
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipCreatePayload';
|
|
9476
|
+
success: Scalars['Boolean'];
|
|
9477
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9478
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9479
|
+
};
|
|
9480
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
9481
|
+
id: Scalars['ID'];
|
|
9482
|
+
};
|
|
9483
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
9484
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeletePayload';
|
|
9485
|
+
success: Scalars['Boolean'];
|
|
9486
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9487
|
+
};
|
|
9488
|
+
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9489
|
+
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9490
|
+
id: Scalars['ID'];
|
|
9491
|
+
revision: Scalars['ID'];
|
|
9492
|
+
jiraProject?: Maybe<JiraProject>;
|
|
9493
|
+
jiraProjectType?: Maybe<DevOpsJiraProjectType>;
|
|
9494
|
+
opsgenieTeam?: Maybe<OpsgenieTeam>;
|
|
9495
|
+
description?: Maybe<Scalars['String']>;
|
|
9496
|
+
createdBy: Scalars['String'];
|
|
9497
|
+
createdAt: Scalars['DateTime'];
|
|
9498
|
+
lastUpdatedBy?: Maybe<Scalars['String']>;
|
|
9499
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']>;
|
|
9500
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
9501
|
+
};
|
|
9502
|
+
export declare type JiraProjectAndOpsgenieTeamRelationshipPropertiesArgs = {
|
|
9503
|
+
keys: Array<Scalars['String']>;
|
|
9504
|
+
};
|
|
9505
|
+
export declare type JiraProjectAndOpsgenieTeamRelationshipConnection = {
|
|
9506
|
+
__typename?: 'JiraProjectAndOpsgenieTeamRelationshipConnection';
|
|
9507
|
+
edges?: Maybe<Array<Maybe<JiraProjectAndOpsgenieTeamRelationshipEdge>>>;
|
|
9508
|
+
nodes?: Maybe<Array<Maybe<JiraProjectAndOpsgenieTeamRelationship>>>;
|
|
9509
|
+
pageInfo: PageInfo;
|
|
9510
|
+
};
|
|
9511
|
+
export declare type JiraProjectAndOpsgenieTeamRelationshipEdge = {
|
|
9512
|
+
__typename?: 'JiraProjectAndOpsgenieTeamRelationshipEdge';
|
|
9513
|
+
cursor: Scalars['String'];
|
|
9514
|
+
node?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
9172
9515
|
};
|
|
9173
9516
|
export declare type JiraProjectAndRepositoryRelationship = Node & {
|
|
9174
9517
|
__typename?: 'JiraProjectAndRepositoryRelationship';
|
|
@@ -9334,15 +9677,12 @@ export declare type JiraQuery = {
|
|
|
9334
9677
|
jiraProject?: Maybe<JiraProject>;
|
|
9335
9678
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
9336
9679
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
9337
|
-
|
|
9680
|
+
filter?: Maybe<JiraFilter>;
|
|
9681
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9682
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9683
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9338
9684
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
9339
9685
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
9340
|
-
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9341
|
-
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9342
|
-
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9343
|
-
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9344
|
-
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9345
|
-
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9346
9686
|
issueByKey?: Maybe<JiraIssue>;
|
|
9347
9687
|
issueById?: Maybe<JiraIssue>;
|
|
9348
9688
|
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -9350,11 +9690,6 @@ export declare type JiraQuery = {
|
|
|
9350
9690
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9351
9691
|
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9352
9692
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9353
|
-
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9354
|
-
filter?: Maybe<JiraFilter>;
|
|
9355
|
-
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9356
|
-
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9357
|
-
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9358
9693
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9359
9694
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9360
9695
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9362,9 +9697,20 @@ export declare type JiraQuery = {
|
|
|
9362
9697
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
9363
9698
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
9364
9699
|
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
9700
|
+
issueHierarchyConfig: JiraIssueHierarchyConfigurationQuery;
|
|
9701
|
+
issueHierarchyLimits: JiraIssueHierarchyLimits;
|
|
9702
|
+
updateIssueHierarchyConfig: JiraIssueHierarchyConfigurationMutationResult;
|
|
9365
9703
|
version?: Maybe<JiraVersionResult>;
|
|
9366
9704
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9367
9705
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
9706
|
+
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9707
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9708
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9709
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9710
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9711
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9712
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9713
|
+
devOps?: Maybe<JiraDevOpsQuery>;
|
|
9368
9714
|
};
|
|
9369
9715
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9370
9716
|
id: Scalars['ID'];
|
|
@@ -9384,39 +9730,34 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
9384
9730
|
after?: Maybe<Scalars['String']>;
|
|
9385
9731
|
before?: Maybe<Scalars['String']>;
|
|
9386
9732
|
};
|
|
9387
|
-
export declare type
|
|
9388
|
-
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9389
|
-
};
|
|
9390
|
-
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9391
|
-
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9392
|
-
};
|
|
9393
|
-
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9394
|
-
cloudId: Scalars['ID'];
|
|
9395
|
-
jql: Scalars['String'];
|
|
9396
|
-
};
|
|
9397
|
-
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9398
|
-
id: Scalars['ID'];
|
|
9399
|
-
};
|
|
9400
|
-
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9401
|
-
ids: Array<Scalars['ID']>;
|
|
9402
|
-
};
|
|
9403
|
-
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9733
|
+
export declare type JiraQueryFilterArgs = {
|
|
9404
9734
|
id: Scalars['ID'];
|
|
9405
9735
|
};
|
|
9406
|
-
export declare type
|
|
9736
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9407
9737
|
cloudId: Scalars['ID'];
|
|
9408
|
-
|
|
9409
|
-
|
|
9738
|
+
first?: Maybe<Scalars['Int']>;
|
|
9739
|
+
after?: Maybe<Scalars['String']>;
|
|
9740
|
+
last?: Maybe<Scalars['Int']>;
|
|
9741
|
+
before?: Maybe<Scalars['String']>;
|
|
9410
9742
|
};
|
|
9411
|
-
export declare type
|
|
9743
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9412
9744
|
cloudId: Scalars['ID'];
|
|
9413
|
-
|
|
9414
|
-
options?: Maybe<JiraIssueSearchOptions>;
|
|
9745
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9415
9746
|
first?: Maybe<Scalars['Int']>;
|
|
9416
9747
|
after?: Maybe<Scalars['String']>;
|
|
9417
9748
|
last?: Maybe<Scalars['Int']>;
|
|
9418
9749
|
before?: Maybe<Scalars['String']>;
|
|
9419
9750
|
};
|
|
9751
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9752
|
+
cloudId: Scalars['ID'];
|
|
9753
|
+
keys: Array<Scalars['String']>;
|
|
9754
|
+
};
|
|
9755
|
+
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
9756
|
+
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9757
|
+
};
|
|
9758
|
+
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9759
|
+
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9760
|
+
};
|
|
9420
9761
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
9421
9762
|
key: Scalars['String'];
|
|
9422
9763
|
cloudId: Scalars['ID'];
|
|
@@ -9436,31 +9777,6 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
9436
9777
|
export declare type JiraQueryCommentsByIdArgs = {
|
|
9437
9778
|
input: Array<JiraCommentByIdInput>;
|
|
9438
9779
|
};
|
|
9439
|
-
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9440
|
-
cloudId: Scalars['ID'];
|
|
9441
|
-
keys: Array<Scalars['String']>;
|
|
9442
|
-
};
|
|
9443
|
-
export declare type JiraQueryFilterArgs = {
|
|
9444
|
-
id: Scalars['ID'];
|
|
9445
|
-
};
|
|
9446
|
-
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9447
|
-
cloudId: Scalars['ID'];
|
|
9448
|
-
first?: Maybe<Scalars['Int']>;
|
|
9449
|
-
after?: Maybe<Scalars['String']>;
|
|
9450
|
-
last?: Maybe<Scalars['Int']>;
|
|
9451
|
-
before?: Maybe<Scalars['String']>;
|
|
9452
|
-
};
|
|
9453
|
-
export declare type JiraQuerySystemFiltersArgs = {
|
|
9454
|
-
cloudId: Scalars['ID'];
|
|
9455
|
-
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9456
|
-
first?: Maybe<Scalars['Int']>;
|
|
9457
|
-
after?: Maybe<Scalars['String']>;
|
|
9458
|
-
last?: Maybe<Scalars['Int']>;
|
|
9459
|
-
before?: Maybe<Scalars['String']>;
|
|
9460
|
-
};
|
|
9461
|
-
export declare type JiraQueryJqlBuilderArgs = {
|
|
9462
|
-
cloudId: Scalars['ID'];
|
|
9463
|
-
};
|
|
9464
9780
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9465
9781
|
cloudId: Scalars['ID'];
|
|
9466
9782
|
};
|
|
@@ -9504,6 +9820,16 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
9504
9820
|
schemeId: Scalars['ID'];
|
|
9505
9821
|
permissionKey: Scalars['String'];
|
|
9506
9822
|
};
|
|
9823
|
+
export declare type JiraQueryIssueHierarchyConfigArgs = {
|
|
9824
|
+
cloudId: Scalars['ID'];
|
|
9825
|
+
};
|
|
9826
|
+
export declare type JiraQueryIssueHierarchyLimitsArgs = {
|
|
9827
|
+
cloudId: Scalars['ID'];
|
|
9828
|
+
};
|
|
9829
|
+
export declare type JiraQueryUpdateIssueHierarchyConfigArgs = {
|
|
9830
|
+
cloudId: Scalars['ID'];
|
|
9831
|
+
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
9832
|
+
};
|
|
9507
9833
|
export declare type JiraQueryVersionArgs = {
|
|
9508
9834
|
id: Scalars['ID'];
|
|
9509
9835
|
};
|
|
@@ -9518,6 +9844,36 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
9518
9844
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
9519
9845
|
versionId: Scalars['ID'];
|
|
9520
9846
|
};
|
|
9847
|
+
export declare type JiraQueryJqlBuilderArgs = {
|
|
9848
|
+
cloudId: Scalars['ID'];
|
|
9849
|
+
};
|
|
9850
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9851
|
+
cloudId: Scalars['ID'];
|
|
9852
|
+
jql: Scalars['String'];
|
|
9853
|
+
};
|
|
9854
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9855
|
+
id: Scalars['ID'];
|
|
9856
|
+
};
|
|
9857
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9858
|
+
ids: Array<Scalars['ID']>;
|
|
9859
|
+
};
|
|
9860
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9861
|
+
id: Scalars['ID'];
|
|
9862
|
+
};
|
|
9863
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
9864
|
+
cloudId: Scalars['ID'];
|
|
9865
|
+
namespace?: Maybe<Scalars['String']>;
|
|
9866
|
+
viewId?: Maybe<Scalars['String']>;
|
|
9867
|
+
};
|
|
9868
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9869
|
+
cloudId: Scalars['ID'];
|
|
9870
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
9871
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9872
|
+
first?: Maybe<Scalars['Int']>;
|
|
9873
|
+
after?: Maybe<Scalars['String']>;
|
|
9874
|
+
last?: Maybe<Scalars['Int']>;
|
|
9875
|
+
before?: Maybe<Scalars['String']>;
|
|
9876
|
+
};
|
|
9521
9877
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9522
9878
|
__typename?: 'JiraRadioSelectField';
|
|
9523
9879
|
id: Scalars['ID'];
|
|
@@ -10385,6 +10741,8 @@ export declare type JiraSprint = Node & {
|
|
|
10385
10741
|
boardName?: Maybe<Scalars['String']>;
|
|
10386
10742
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10387
10743
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
10744
|
+
completionDate?: Maybe<Scalars['DateTime']>;
|
|
10745
|
+
goal?: Maybe<Scalars['String']>;
|
|
10388
10746
|
};
|
|
10389
10747
|
export declare type JiraSprintConnection = {
|
|
10390
10748
|
__typename?: 'JiraSprintConnection';
|
|
@@ -11089,6 +11447,7 @@ export declare type MarketplacePartner = {
|
|
|
11089
11447
|
support?: Maybe<MarketplacePartnerSupport>;
|
|
11090
11448
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
11091
11449
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
11450
|
+
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
11092
11451
|
};
|
|
11093
11452
|
export declare type MarketplacePartnerAddress = {
|
|
11094
11453
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -11141,6 +11500,16 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
|
|
|
11141
11500
|
OneTime = "ONE_TIME",
|
|
11142
11501
|
Annual = "ANNUAL"
|
|
11143
11502
|
}
|
|
11503
|
+
export declare type MarketplacePartnerTier = {
|
|
11504
|
+
__typename?: 'MarketplacePartnerTier';
|
|
11505
|
+
type: MarketplacePartnerTierType;
|
|
11506
|
+
updatedDate: Scalars['String'];
|
|
11507
|
+
};
|
|
11508
|
+
export declare enum MarketplacePartnerTierType {
|
|
11509
|
+
Silver = "SILVER",
|
|
11510
|
+
Gold = "GOLD",
|
|
11511
|
+
Platinum = "PLATINUM"
|
|
11512
|
+
}
|
|
11144
11513
|
export declare enum MarketplacePartnerType {
|
|
11145
11514
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
11146
11515
|
}
|
|
@@ -11274,15 +11643,9 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
11274
11643
|
export declare type Mutation = {
|
|
11275
11644
|
__typename?: 'Mutation';
|
|
11276
11645
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11646
|
+
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11647
|
+
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11277
11648
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11278
|
-
createReleaseNote: ContentPlatformReleaseNote;
|
|
11279
|
-
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11280
|
-
updateReleaseNote: ContentPlatformReleaseNoteEntry;
|
|
11281
|
-
createApp?: Maybe<CreateAppResponse>;
|
|
11282
|
-
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11283
|
-
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11284
|
-
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11285
|
-
ecosystem?: Maybe<EcosystemMutation>;
|
|
11286
11649
|
jsw?: Maybe<JswMutation>;
|
|
11287
11650
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11288
11651
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -11310,7 +11673,16 @@ export declare type Mutation = {
|
|
|
11310
11673
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11311
11674
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11312
11675
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
11676
|
+
createApp?: Maybe<CreateAppResponse>;
|
|
11677
|
+
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11678
|
+
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11679
|
+
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11680
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
11681
|
+
createReleaseNote: ContentPlatformReleaseNote;
|
|
11682
|
+
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11683
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11313
11684
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11685
|
+
devOps?: Maybe<DevOpsMutation>;
|
|
11314
11686
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11315
11687
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11316
11688
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -11328,6 +11700,7 @@ export declare type Mutation = {
|
|
|
11328
11700
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11329
11701
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11330
11702
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
11703
|
+
jira?: Maybe<JiraMutation>;
|
|
11331
11704
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
11332
11705
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
11333
11706
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -11336,11 +11709,10 @@ export declare type Mutation = {
|
|
|
11336
11709
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
11337
11710
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
11338
11711
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
11339
|
-
jira?: Maybe<JiraMutation>;
|
|
11340
11712
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11341
11713
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11342
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11343
11714
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11715
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11344
11716
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11345
11717
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
11346
11718
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
@@ -11393,69 +11765,29 @@ export declare type Mutation = {
|
|
|
11393
11765
|
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
11394
11766
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
11395
11767
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11768
|
+
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11769
|
+
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11396
11770
|
installApp?: Maybe<AppInstallationResponse>;
|
|
11397
11771
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
11398
11772
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
11399
11773
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
11400
11774
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
11401
|
-
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11402
|
-
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11403
|
-
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11404
11775
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
11405
11776
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
11406
11777
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
11407
11778
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11408
11779
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11409
11780
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11781
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11410
11782
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11411
11783
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11412
11784
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11413
11785
|
};
|
|
11414
|
-
export declare type
|
|
11415
|
-
|
|
11416
|
-
title?: Maybe<Scalars['String']>;
|
|
11417
|
-
changeType?: Maybe<Scalars['String']>;
|
|
11418
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11419
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11420
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11421
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11422
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11423
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
11424
|
-
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11425
|
-
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11426
|
-
description: Scalars['JSON'];
|
|
11427
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
11428
|
-
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11786
|
+
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11787
|
+
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11429
11788
|
};
|
|
11430
|
-
export declare type
|
|
11431
|
-
|
|
11432
|
-
};
|
|
11433
|
-
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11434
|
-
id: Scalars['String'];
|
|
11435
|
-
changeStatus?: Maybe<Scalars['String']>;
|
|
11436
|
-
title?: Maybe<Scalars['String']>;
|
|
11437
|
-
changeType?: Maybe<Scalars['String']>;
|
|
11438
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11439
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11440
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11441
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11442
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11443
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
11444
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
11445
|
-
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11446
|
-
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11447
|
-
};
|
|
11448
|
-
export declare type MutationCreateAppArgs = {
|
|
11449
|
-
input: CreateAppInput;
|
|
11450
|
-
};
|
|
11451
|
-
export declare type MutationUpdateAppDetailsArgs = {
|
|
11452
|
-
input: UpdateAppDetailsInput;
|
|
11453
|
-
};
|
|
11454
|
-
export declare type MutationDeleteAppArgs = {
|
|
11455
|
-
input: DeleteAppInput;
|
|
11456
|
-
};
|
|
11457
|
-
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11458
|
-
input: UpdateAtlassianOAuthClientInput;
|
|
11789
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11790
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
11459
11791
|
};
|
|
11460
11792
|
export declare type MutationCreateColumnArgs = {
|
|
11461
11793
|
input?: Maybe<CreateColumnInput>;
|
|
@@ -11535,6 +11867,52 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
11535
11867
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11536
11868
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11537
11869
|
};
|
|
11870
|
+
export declare type MutationCreateAppArgs = {
|
|
11871
|
+
input: CreateAppInput;
|
|
11872
|
+
};
|
|
11873
|
+
export declare type MutationUpdateAppDetailsArgs = {
|
|
11874
|
+
input: UpdateAppDetailsInput;
|
|
11875
|
+
};
|
|
11876
|
+
export declare type MutationDeleteAppArgs = {
|
|
11877
|
+
input: DeleteAppInput;
|
|
11878
|
+
};
|
|
11879
|
+
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11880
|
+
input: UpdateAtlassianOAuthClientInput;
|
|
11881
|
+
};
|
|
11882
|
+
export declare type MutationCreateReleaseNoteArgs = {
|
|
11883
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11884
|
+
title?: Maybe<Scalars['String']>;
|
|
11885
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11886
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11887
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11888
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11889
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11890
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11891
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11892
|
+
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11893
|
+
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11894
|
+
description: Scalars['JSON'];
|
|
11895
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11896
|
+
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11897
|
+
};
|
|
11898
|
+
export declare type MutationPublishReleaseNoteArgs = {
|
|
11899
|
+
id: Scalars['String'];
|
|
11900
|
+
};
|
|
11901
|
+
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11902
|
+
id: Scalars['String'];
|
|
11903
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11904
|
+
title?: Maybe<Scalars['String']>;
|
|
11905
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11906
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11907
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11908
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11909
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11910
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11911
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11912
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11913
|
+
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11914
|
+
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11915
|
+
};
|
|
11538
11916
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
11539
11917
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
11540
11918
|
};
|
|
@@ -11781,6 +12159,12 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
11781
12159
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
11782
12160
|
id: Scalars['ID'];
|
|
11783
12161
|
};
|
|
12162
|
+
export declare type MutationWatchMarketplaceAppArgs = {
|
|
12163
|
+
id: Scalars['ID'];
|
|
12164
|
+
};
|
|
12165
|
+
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
12166
|
+
id: Scalars['ID'];
|
|
12167
|
+
};
|
|
11784
12168
|
export declare type MutationInstallAppArgs = {
|
|
11785
12169
|
input: AppInstallationInput;
|
|
11786
12170
|
};
|
|
@@ -11796,12 +12180,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
11796
12180
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
11797
12181
|
input: AppUnsubscribeInput;
|
|
11798
12182
|
};
|
|
11799
|
-
export declare type MutationWatchMarketplaceAppArgs = {
|
|
11800
|
-
id: Scalars['ID'];
|
|
11801
|
-
};
|
|
11802
|
-
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
11803
|
-
id: Scalars['ID'];
|
|
11804
|
-
};
|
|
11805
12183
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
11806
12184
|
input: CreateAppDeploymentUrlInput;
|
|
11807
12185
|
};
|
|
@@ -12656,6 +13034,7 @@ export declare type PolarisMatrixAxis = {
|
|
|
12656
13034
|
__typename?: 'PolarisMatrixAxis';
|
|
12657
13035
|
dimension: Scalars['String'];
|
|
12658
13036
|
field: PolarisIdeaField;
|
|
13037
|
+
fieldOptions?: Maybe<Array<PolarisGroupValue>>;
|
|
12659
13038
|
};
|
|
12660
13039
|
export declare type PolarisMatrixConfig = {
|
|
12661
13040
|
__typename?: 'PolarisMatrixConfig';
|
|
@@ -13060,33 +13439,36 @@ export declare type ProjectAvatars = {
|
|
|
13060
13439
|
};
|
|
13061
13440
|
export declare type Query = {
|
|
13062
13441
|
__typename?: 'Query';
|
|
13063
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13064
13442
|
echo?: Maybe<Scalars['String']>;
|
|
13065
13443
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
13066
13444
|
node?: Maybe<Node>;
|
|
13445
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13446
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13067
13447
|
activities?: Maybe<Activities>;
|
|
13068
13448
|
activity?: Maybe<Activity>;
|
|
13069
13449
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13070
|
-
bitbucket?: Maybe<BitbucketQuery>;
|
|
13071
13450
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13451
|
+
bitbucket?: Maybe<BitbucketQuery>;
|
|
13072
13452
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
13073
|
-
|
|
13074
|
-
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
13075
|
-
practicePages: ContentPlatformPracticePagesConnection;
|
|
13076
|
-
practicePage: ContentPlatformPracticePage;
|
|
13077
|
-
apps?: Maybe<AppConnection>;
|
|
13078
|
-
app?: Maybe<App>;
|
|
13079
|
-
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13453
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
13080
13454
|
jsw?: Maybe<JswQuery>;
|
|
13081
13455
|
boardScope?: Maybe<BoardScope>;
|
|
13082
13456
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13457
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13458
|
+
apps?: Maybe<AppConnection>;
|
|
13459
|
+
app?: Maybe<App>;
|
|
13460
|
+
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13461
|
+
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13462
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13463
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
13464
|
+
practicePage: ContentPlatformPracticePage;
|
|
13083
13465
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13084
13466
|
search?: Maybe<SearchQueryApi>;
|
|
13085
|
-
|
|
13467
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
13086
13468
|
me: AuthenticationContext;
|
|
13087
13469
|
user?: Maybe<User>;
|
|
13088
13470
|
users?: Maybe<Array<User>>;
|
|
13089
|
-
|
|
13471
|
+
devOps?: Maybe<DevOps>;
|
|
13090
13472
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13091
13473
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13092
13474
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
@@ -13103,26 +13485,27 @@ export declare type Query = {
|
|
|
13103
13485
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13104
13486
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13105
13487
|
codeInJira?: Maybe<CodeInJira>;
|
|
13488
|
+
jira?: Maybe<JiraQuery>;
|
|
13106
13489
|
devOpsService?: Maybe<DevOpsService>;
|
|
13107
13490
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13108
13491
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
13109
13492
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
13110
13493
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
13111
13494
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
13112
|
-
|
|
13495
|
+
avocado?: Maybe<Avocado>;
|
|
13113
13496
|
appLogs?: Maybe<AppLogConnection>;
|
|
13114
13497
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
13115
13498
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
13116
13499
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
13117
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13118
13500
|
team?: Maybe<TeamQuery>;
|
|
13501
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13119
13502
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
13120
13503
|
testing?: Maybe<Testing>;
|
|
13121
13504
|
movie?: Maybe<TestingMovie>;
|
|
13122
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13123
13505
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
13124
13506
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
13125
13507
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13508
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13126
13509
|
polarisProject?: Maybe<PolarisProject>;
|
|
13127
13510
|
polarisView?: Maybe<PolarisView>;
|
|
13128
13511
|
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
@@ -13139,20 +13522,20 @@ export declare type Query = {
|
|
|
13139
13522
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13140
13523
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13141
13524
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13142
|
-
dvcs?: Maybe<DvcsQuery>;
|
|
13143
13525
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13526
|
+
dvcs?: Maybe<DvcsQuery>;
|
|
13144
13527
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
13145
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13146
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
13147
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
13148
13528
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
13149
13529
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
13150
13530
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
13151
13531
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
13152
13532
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
13153
13533
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13154
|
-
|
|
13534
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
13535
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13536
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
13155
13537
|
appDeployment?: Maybe<AppDeployment>;
|
|
13538
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13156
13539
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13157
13540
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13158
13541
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
@@ -13162,23 +13545,17 @@ export declare type Query = {
|
|
|
13162
13545
|
export declare type QueryNodeArgs = {
|
|
13163
13546
|
id: Scalars['ID'];
|
|
13164
13547
|
};
|
|
13165
|
-
export declare type
|
|
13166
|
-
|
|
13167
|
-
first?: Maybe<Scalars['Int']>;
|
|
13168
|
-
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13169
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13170
|
-
orderBy?: Maybe<Scalars['String']>;
|
|
13548
|
+
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13549
|
+
id: Scalars['ID'];
|
|
13171
13550
|
};
|
|
13172
|
-
export declare type
|
|
13173
|
-
|
|
13174
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13551
|
+
export declare type QueryBoardScopeArgs = {
|
|
13552
|
+
boardId: Scalars['ID'];
|
|
13175
13553
|
};
|
|
13176
|
-
export declare type
|
|
13177
|
-
|
|
13178
|
-
first?: Maybe<Scalars['Int']>;
|
|
13554
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
13555
|
+
issueId: Scalars['ID'];
|
|
13179
13556
|
};
|
|
13180
|
-
export declare type
|
|
13181
|
-
|
|
13557
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13558
|
+
projectAri: Scalars['ID'];
|
|
13182
13559
|
};
|
|
13183
13560
|
export declare type QueryAppsArgs = {
|
|
13184
13561
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13193,11 +13570,23 @@ export declare type QueryAppArgs = {
|
|
|
13193
13570
|
export declare type QueryAppHostServicesArgs = {
|
|
13194
13571
|
filter?: Maybe<AppServicesFilter>;
|
|
13195
13572
|
};
|
|
13196
|
-
export declare type
|
|
13197
|
-
|
|
13573
|
+
export declare type QueryReleaseNotesArgs = {
|
|
13574
|
+
after?: Maybe<Scalars['String']>;
|
|
13575
|
+
first?: Maybe<Scalars['Int']>;
|
|
13576
|
+
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13577
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13578
|
+
orderBy?: Maybe<Scalars['String']>;
|
|
13198
13579
|
};
|
|
13199
|
-
export declare type
|
|
13200
|
-
|
|
13580
|
+
export declare type QueryReleaseNoteArgs = {
|
|
13581
|
+
id: Scalars['String'];
|
|
13582
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13583
|
+
};
|
|
13584
|
+
export declare type QueryPracticePagesArgs = {
|
|
13585
|
+
after?: Maybe<Scalars['String']>;
|
|
13586
|
+
first?: Maybe<Scalars['Int']>;
|
|
13587
|
+
};
|
|
13588
|
+
export declare type QueryPracticePageArgs = {
|
|
13589
|
+
id: Scalars['String'];
|
|
13201
13590
|
};
|
|
13202
13591
|
export declare type QueryUserArgs = {
|
|
13203
13592
|
accountId: Scalars['ID'];
|
|
@@ -13411,9 +13800,6 @@ export declare type QueryWebTriggerUrlsByAppContextArgs = {
|
|
|
13411
13800
|
envId: Scalars['ID'];
|
|
13412
13801
|
contextId: Scalars['ID'];
|
|
13413
13802
|
};
|
|
13414
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
13415
|
-
id: Scalars['ID'];
|
|
13416
|
-
};
|
|
13417
13803
|
export declare type QueryMarketplacePartnerArgs = {
|
|
13418
13804
|
id: Scalars['ID'];
|
|
13419
13805
|
};
|
|
@@ -13431,6 +13817,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
13431
13817
|
hostingType: AtlassianProductHostingType;
|
|
13432
13818
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
13433
13819
|
};
|
|
13820
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
13821
|
+
id: Scalars['ID'];
|
|
13822
|
+
};
|
|
13434
13823
|
export declare type QueryAppDeploymentArgs = {
|
|
13435
13824
|
appId: Scalars['ID'];
|
|
13436
13825
|
environmentKey: Scalars['String'];
|
|
@@ -13609,6 +13998,10 @@ export declare type RoadmapAddItemResponse = {
|
|
|
13609
13998
|
item?: Maybe<RoadmapItem>;
|
|
13610
13999
|
matchesSource: Scalars['Boolean'];
|
|
13611
14000
|
};
|
|
14001
|
+
export declare type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
14002
|
+
create?: Maybe<RoadmapCreateLevelOneIssueType>;
|
|
14003
|
+
promote?: Maybe<RoadmapPromoteLevelOneIssueType>;
|
|
14004
|
+
};
|
|
13612
14005
|
export declare type RoadmapBoardConfiguration = {
|
|
13613
14006
|
__typename?: 'RoadmapBoardConfiguration';
|
|
13614
14007
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -13630,6 +14023,7 @@ export declare type RoadmapConfiguration = {
|
|
|
13630
14023
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
13631
14024
|
externalConfiguration?: Maybe<RoadmapExternalConfiguration>;
|
|
13632
14025
|
projectConfigurations: Array<RoadmapProjectConfiguration>;
|
|
14026
|
+
projectConfiguration?: Maybe<RoadmapProjectConfiguration>;
|
|
13633
14027
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
13634
14028
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13635
14029
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
@@ -13639,6 +14033,10 @@ export declare type RoadmapContent = {
|
|
|
13639
14033
|
configuration: RoadmapConfiguration;
|
|
13640
14034
|
items: RoadmapItemConnection;
|
|
13641
14035
|
};
|
|
14036
|
+
export declare type RoadmapCreateLevelOneIssueType = {
|
|
14037
|
+
epicTypeName: Scalars['String'];
|
|
14038
|
+
epicTypeDescription: Scalars['String'];
|
|
14039
|
+
};
|
|
13642
14040
|
export declare type RoadmapCreationPreferences = {
|
|
13643
14041
|
__typename?: 'RoadmapCreationPreferences';
|
|
13644
14042
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13748,6 +14146,10 @@ export declare type RoadmapItemEdge = {
|
|
|
13748
14146
|
cursor: Scalars['String'];
|
|
13749
14147
|
node?: Maybe<RoadmapItem>;
|
|
13750
14148
|
};
|
|
14149
|
+
export declare type RoadmapItemRankInput = {
|
|
14150
|
+
id: Scalars['ID'];
|
|
14151
|
+
position: RoadmapRankPosition;
|
|
14152
|
+
};
|
|
13751
14153
|
export declare type RoadmapItemStatus = {
|
|
13752
14154
|
__typename?: 'RoadmapItemStatus';
|
|
13753
14155
|
id: Scalars['ID'];
|
|
@@ -13851,12 +14253,41 @@ export declare type RoadmapProjectValidation = {
|
|
|
13851
14253
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13852
14254
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13853
14255
|
};
|
|
14256
|
+
export declare type RoadmapPromoteLevelOneIssueType = {
|
|
14257
|
+
promoteItemTypeId: Scalars['ID'];
|
|
14258
|
+
};
|
|
13854
14259
|
export declare type RoadmapQuickFilter = {
|
|
13855
14260
|
__typename?: 'RoadmapQuickFilter';
|
|
13856
14261
|
id: Scalars['ID'];
|
|
13857
14262
|
name: Scalars['String'];
|
|
13858
14263
|
query: Scalars['String'];
|
|
13859
14264
|
};
|
|
14265
|
+
export declare enum RoadmapRankPosition {
|
|
14266
|
+
Before = "BEFORE",
|
|
14267
|
+
After = "AFTER"
|
|
14268
|
+
}
|
|
14269
|
+
export declare type RoadmapResolveHealthcheckInput = {
|
|
14270
|
+
actionId: Scalars['ID'];
|
|
14271
|
+
addLevelOneIssueType?: Maybe<RoadmapAddLevelOneIssueTypeHealthcheckResolution>;
|
|
14272
|
+
};
|
|
14273
|
+
export declare type RoadmapResolveHealthcheckPayload = Payload & {
|
|
14274
|
+
__typename?: 'RoadmapResolveHealthcheckPayload';
|
|
14275
|
+
success: Scalars['Boolean'];
|
|
14276
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14277
|
+
};
|
|
14278
|
+
export declare type RoadmapScheduleItemInput = {
|
|
14279
|
+
itemId: Scalars['ID'];
|
|
14280
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
14281
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
14282
|
+
};
|
|
14283
|
+
export declare type RoadmapScheduleItemsInput = {
|
|
14284
|
+
scheduleRequests: Array<Maybe<RoadmapScheduleItemInput>>;
|
|
14285
|
+
};
|
|
14286
|
+
export declare type RoadmapScheduleItemsPayload = Payload & {
|
|
14287
|
+
__typename?: 'RoadmapScheduleItemsPayload';
|
|
14288
|
+
success: Scalars['Boolean'];
|
|
14289
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14290
|
+
};
|
|
13860
14291
|
export declare type RoadmapSprint = {
|
|
13861
14292
|
__typename?: 'RoadmapSprint';
|
|
13862
14293
|
id: Scalars['ID'];
|
|
@@ -13903,7 +14334,7 @@ export declare type RoadmapUpdateItemInput = {
|
|
|
13903
14334
|
dueDate?: Maybe<Scalars['Date']>;
|
|
13904
14335
|
startDate?: Maybe<Scalars['Date']>;
|
|
13905
14336
|
color?: Maybe<RoadmapPaletteColor>;
|
|
13906
|
-
rank?: Maybe<
|
|
14337
|
+
rank?: Maybe<RoadmapItemRankInput>;
|
|
13907
14338
|
parentId?: Maybe<Scalars['ID']>;
|
|
13908
14339
|
sprintId?: Maybe<Scalars['ID']>;
|
|
13909
14340
|
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
@@ -13914,10 +14345,6 @@ export declare type RoadmapUpdateItemPayload = Payload & {
|
|
|
13914
14345
|
errors?: Maybe<Array<MutationError>>;
|
|
13915
14346
|
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13916
14347
|
};
|
|
13917
|
-
export declare type RoadmapUpdateItemRank = {
|
|
13918
|
-
beforeId?: Maybe<Scalars['ID']>;
|
|
13919
|
-
afterId?: Maybe<Scalars['ID']>;
|
|
13920
|
-
};
|
|
13921
14348
|
export declare type RoadmapUpdateItemResponse = {
|
|
13922
14349
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
13923
14350
|
item?: Maybe<RoadmapItem>;
|
|
@@ -13953,14 +14380,20 @@ export declare type RoadmapViewSettings = {
|
|
|
13953
14380
|
export declare type RoadmapsMutation = {
|
|
13954
14381
|
__typename?: 'RoadmapsMutation';
|
|
13955
14382
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
14383
|
+
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
13956
14384
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13957
14385
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14386
|
+
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
13958
14387
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13959
14388
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13960
14389
|
};
|
|
13961
14390
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13962
14391
|
input: RoadmapFeatureToggleInput;
|
|
13963
14392
|
};
|
|
14393
|
+
export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
14394
|
+
sourceARI: Scalars['ID'];
|
|
14395
|
+
input: RoadmapResolveHealthcheckInput;
|
|
14396
|
+
};
|
|
13964
14397
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13965
14398
|
sourceARI: Scalars['ID'];
|
|
13966
14399
|
input: RoadmapAddItemInput;
|
|
@@ -13969,6 +14402,10 @@ export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
|
13969
14402
|
sourceARI: Scalars['ID'];
|
|
13970
14403
|
input: RoadmapUpdateItemInput;
|
|
13971
14404
|
};
|
|
14405
|
+
export declare type RoadmapsMutationScheduleRoadmapItemsArgs = {
|
|
14406
|
+
sourceARI: Scalars['ID'];
|
|
14407
|
+
input: RoadmapScheduleItemsInput;
|
|
14408
|
+
};
|
|
13972
14409
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13973
14410
|
sourceARI: Scalars['ID'];
|
|
13974
14411
|
input: RoadmapToggleDependencyInput;
|
|
@@ -14008,6 +14445,7 @@ export declare enum Scope {
|
|
|
14008
14445
|
AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
|
|
14009
14446
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
14010
14447
|
ReadMe = "READ_ME",
|
|
14448
|
+
ReadAccount = "READ_ACCOUNT",
|
|
14011
14449
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
14012
14450
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
14013
14451
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -14380,13 +14818,14 @@ export declare type ShepherdCreateSubscriptionInput = {
|
|
|
14380
14818
|
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14381
14819
|
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14382
14820
|
errors?: Maybe<Array<MutationError>>;
|
|
14383
|
-
node?: Maybe<
|
|
14821
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14384
14822
|
success: Scalars['Boolean'];
|
|
14385
14823
|
};
|
|
14386
14824
|
export declare type ShepherdCreateWebhookInput = {
|
|
14387
14825
|
authToken?: Maybe<Scalars['String']>;
|
|
14388
14826
|
callbackURL: Scalars['URL'];
|
|
14389
14827
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14828
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14390
14829
|
};
|
|
14391
14830
|
export declare type ShepherdEmailConnection = {
|
|
14392
14831
|
__typename?: 'ShepherdEmailConnection';
|
|
@@ -14516,12 +14955,13 @@ export declare type ShepherdUpdateSubscriptionInput = {
|
|
|
14516
14955
|
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14517
14956
|
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14518
14957
|
errors?: Maybe<Array<MutationError>>;
|
|
14519
|
-
node?: Maybe<
|
|
14958
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14520
14959
|
success: Scalars['Boolean'];
|
|
14521
14960
|
};
|
|
14522
14961
|
export declare type ShepherdUpdateWebhookInput = {
|
|
14523
14962
|
callbackURL?: Maybe<Scalars['URL']>;
|
|
14524
14963
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14964
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14525
14965
|
};
|
|
14526
14966
|
export declare type ShepherdUser = {
|
|
14527
14967
|
__typename?: 'ShepherdUser';
|
|
@@ -14543,9 +14983,14 @@ export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
|
14543
14983
|
createdOn: Scalars['DateTime'];
|
|
14544
14984
|
id: Scalars['ID'];
|
|
14545
14985
|
status: ShepherdSubscriptionStatus;
|
|
14986
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14546
14987
|
updatedBy?: Maybe<Scalars['String']>;
|
|
14547
14988
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14548
14989
|
};
|
|
14990
|
+
export declare enum ShepherdWebhookType {
|
|
14991
|
+
Custom = "CUSTOM",
|
|
14992
|
+
Slack = "SLACK"
|
|
14993
|
+
}
|
|
14549
14994
|
export declare type SoftwareBoard = {
|
|
14550
14995
|
__typename?: 'SoftwareBoard';
|
|
14551
14996
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -14818,6 +15263,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
14818
15263
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14819
15264
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14820
15265
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
15266
|
+
updateSupportRequest?: Maybe<SupportRequest>;
|
|
14821
15267
|
};
|
|
14822
15268
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
14823
15269
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -14837,6 +15283,9 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
|
|
|
14837
15283
|
sen?: Maybe<Scalars['String']>;
|
|
14838
15284
|
operation: SupportRequestNamedContactOperation;
|
|
14839
15285
|
};
|
|
15286
|
+
export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
|
|
15287
|
+
input: SupportRequestUpdateInput;
|
|
15288
|
+
};
|
|
14840
15289
|
export declare type SupportRequestCatalogQueryApi = {
|
|
14841
15290
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
14842
15291
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -14876,11 +15325,19 @@ export declare type SupportRequestField = {
|
|
|
14876
15325
|
__typename?: 'SupportRequestField';
|
|
14877
15326
|
id: Scalars['String'];
|
|
14878
15327
|
label: Scalars['String'];
|
|
14879
|
-
value
|
|
15328
|
+
value?: Maybe<SupportRequestFieldValue>;
|
|
15329
|
+
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15330
|
+
editable?: Maybe<Scalars['Boolean']>;
|
|
14880
15331
|
};
|
|
15332
|
+
export declare enum SupportRequestFieldDataType {
|
|
15333
|
+
String = "STRING",
|
|
15334
|
+
Number = "NUMBER",
|
|
15335
|
+
Boolean = "BOOLEAN",
|
|
15336
|
+
Date = "DATE"
|
|
15337
|
+
}
|
|
14881
15338
|
export declare type SupportRequestFieldValue = {
|
|
14882
15339
|
__typename?: 'SupportRequestFieldValue';
|
|
14883
|
-
value
|
|
15340
|
+
value?: Maybe<Scalars['String']>;
|
|
14884
15341
|
};
|
|
14885
15342
|
export declare type SupportRequestHierarchyRequest = {
|
|
14886
15343
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
@@ -15009,6 +15466,14 @@ export declare type SupportRequestTransitions = {
|
|
|
15009
15466
|
lastPage: Scalars['Boolean'];
|
|
15010
15467
|
values: Array<SupportRequestTransition>;
|
|
15011
15468
|
};
|
|
15469
|
+
export declare type SupportRequestUpdateFieldInput = {
|
|
15470
|
+
id: Scalars['String'];
|
|
15471
|
+
value: Scalars['String'];
|
|
15472
|
+
};
|
|
15473
|
+
export declare type SupportRequestUpdateInput = {
|
|
15474
|
+
requestKey: Scalars['ID'];
|
|
15475
|
+
experienceFields?: Maybe<Array<SupportRequestUpdateFieldInput>>;
|
|
15476
|
+
};
|
|
15012
15477
|
export declare type SupportRequestUser = {
|
|
15013
15478
|
__typename?: 'SupportRequestUser';
|
|
15014
15479
|
user?: Maybe<User>;
|
|
@@ -15561,6 +16026,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
15561
16026
|
description?: Maybe<Scalars['String']>;
|
|
15562
16027
|
ownerId?: Maybe<Scalars['ID']>;
|
|
15563
16028
|
fields?: Maybe<Array<UpdateCompassFieldInput>>;
|
|
16029
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
15564
16030
|
};
|
|
15565
16031
|
export declare type UpdateCompassComponentLinkInput = {
|
|
15566
16032
|
componentId: Scalars['ID'];
|
|
@@ -15860,6 +16326,7 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
15860
16326
|
export declare type UpdatePolarisMatrixAxis = {
|
|
15861
16327
|
dimension: Scalars['String'];
|
|
15862
16328
|
field: Scalars['ID'];
|
|
16329
|
+
fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
|
|
15863
16330
|
};
|
|
15864
16331
|
export declare type UpdatePolarisMatrixConfig = {
|
|
15865
16332
|
axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
|
|
@@ -15994,7 +16461,7 @@ export declare type UserGrant = {
|
|
|
15994
16461
|
oauthClientId: Scalars['ID'];
|
|
15995
16462
|
appId?: Maybe<Scalars['ID']>;
|
|
15996
16463
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
15997
|
-
scopes
|
|
16464
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
15998
16465
|
};
|
|
15999
16466
|
export declare type UserGrantAppDetails = {
|
|
16000
16467
|
__typename?: 'UserGrantAppDetails';
|
|
@@ -16071,4 +16538,8 @@ export declare type _DirectiveArgument = {
|
|
|
16071
16538
|
name: Scalars['String'];
|
|
16072
16539
|
value: Scalars['String'];
|
|
16073
16540
|
};
|
|
16541
|
+
export declare enum SourceBillingType {
|
|
16542
|
+
Hams = "HAMS",
|
|
16543
|
+
Ccp = "CCP"
|
|
16544
|
+
}
|
|
16074
16545
|
//# sourceMappingURL=graphql-types.d.ts.map
|