@forge/cli-shared 0.0.0-experimental-490cfcf → 0.0.0-experimental-edeb51b
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']>;
|
|
@@ -7332,6 +7590,11 @@ export declare type JiraIssue = Node & {
|
|
|
7332
7590
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7333
7591
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7334
7592
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7593
|
+
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7594
|
+
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7595
|
+
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7596
|
+
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7597
|
+
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
7335
7598
|
};
|
|
7336
7599
|
export declare type JiraIssueFieldsArgs = {
|
|
7337
7600
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7938,6 +8201,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
7938
8201
|
export declare type JiraIssueType = Node & {
|
|
7939
8202
|
__typename?: 'JiraIssueType';
|
|
7940
8203
|
id: Scalars['ID'];
|
|
8204
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
7941
8205
|
name: Scalars['String'];
|
|
7942
8206
|
description?: Maybe<Scalars['String']>;
|
|
7943
8207
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -8597,22 +8861,14 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8597
8861
|
};
|
|
8598
8862
|
export declare type JiraMutation = {
|
|
8599
8863
|
__typename?: 'JiraMutation';
|
|
8600
|
-
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8601
|
-
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8602
|
-
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8603
8864
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8604
8865
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8605
8866
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8606
8867
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8607
8868
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8608
|
-
|
|
8609
|
-
|
|
8610
|
-
|
|
8611
|
-
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8612
|
-
};
|
|
8613
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8614
|
-
id: Scalars['ID'];
|
|
8615
|
-
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8869
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8870
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8871
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8616
8872
|
};
|
|
8617
8873
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8618
8874
|
cloudId: Scalars['ID'];
|
|
@@ -8630,6 +8886,14 @@ export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
|
8630
8886
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8631
8887
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8632
8888
|
};
|
|
8889
|
+
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
8890
|
+
id: Scalars['ID'];
|
|
8891
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8892
|
+
};
|
|
8893
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8894
|
+
id: Scalars['ID'];
|
|
8895
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8896
|
+
};
|
|
8633
8897
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8634
8898
|
__typename?: 'JiraNumberField';
|
|
8635
8899
|
id: Scalars['ID'];
|
|
@@ -9083,6 +9347,7 @@ export declare type JiraProject = Node & {
|
|
|
9083
9347
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
9084
9348
|
status?: Maybe<JiraProjectStatus>;
|
|
9085
9349
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9350
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9086
9351
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
9087
9352
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
9088
9353
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -9142,6 +9407,42 @@ export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
|
9142
9407
|
cursor: Scalars['String'];
|
|
9143
9408
|
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
9144
9409
|
};
|
|
9410
|
+
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
9411
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
9412
|
+
id: Scalars['ID'];
|
|
9413
|
+
jiraProject?: Maybe<JiraProject>;
|
|
9414
|
+
devOpsTool?: Maybe<DevOpsTool>;
|
|
9415
|
+
description?: Maybe<Scalars['String']>;
|
|
9416
|
+
revision: Scalars['ID'];
|
|
9417
|
+
createdBy: Scalars['String'];
|
|
9418
|
+
createdAt: Scalars['DateTime'];
|
|
9419
|
+
lastUpdatedBy?: Maybe<Scalars['String']>;
|
|
9420
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']>;
|
|
9421
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
9422
|
+
};
|
|
9423
|
+
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
9424
|
+
keys: Array<Scalars['String']>;
|
|
9425
|
+
};
|
|
9426
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
9427
|
+
jiraProjectId: Scalars['ID'];
|
|
9428
|
+
devOpsToolId: Scalars['ID'];
|
|
9429
|
+
description?: Maybe<Scalars['String']>;
|
|
9430
|
+
properties?: Maybe<Array<DevOpsContainerRelationshipEntityPropertyInput>>;
|
|
9431
|
+
};
|
|
9432
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload & {
|
|
9433
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipCreatePayload';
|
|
9434
|
+
success: Scalars['Boolean'];
|
|
9435
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9436
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9437
|
+
};
|
|
9438
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
9439
|
+
id: Scalars['ID'];
|
|
9440
|
+
};
|
|
9441
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
9442
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeletePayload';
|
|
9443
|
+
success: Scalars['Boolean'];
|
|
9444
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9445
|
+
};
|
|
9145
9446
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9146
9447
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9147
9448
|
id: Scalars['ID'];
|
|
@@ -9334,15 +9635,12 @@ export declare type JiraQuery = {
|
|
|
9334
9635
|
jiraProject?: Maybe<JiraProject>;
|
|
9335
9636
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
9336
9637
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
9337
|
-
|
|
9638
|
+
filter?: Maybe<JiraFilter>;
|
|
9639
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9640
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9641
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9338
9642
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
9339
9643
|
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
9644
|
issueByKey?: Maybe<JiraIssue>;
|
|
9347
9645
|
issueById?: Maybe<JiraIssue>;
|
|
9348
9646
|
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -9350,11 +9648,6 @@ export declare type JiraQuery = {
|
|
|
9350
9648
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9351
9649
|
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9352
9650
|
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
9651
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9359
9652
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9360
9653
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9365,6 +9658,14 @@ export declare type JiraQuery = {
|
|
|
9365
9658
|
version?: Maybe<JiraVersionResult>;
|
|
9366
9659
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9367
9660
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
9661
|
+
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9662
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9663
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9664
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9665
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9666
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9667
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9668
|
+
devOps?: Maybe<JiraDevOpsQuery>;
|
|
9368
9669
|
};
|
|
9369
9670
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9370
9671
|
id: Scalars['ID'];
|
|
@@ -9384,39 +9685,34 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
9384
9685
|
after?: Maybe<Scalars['String']>;
|
|
9385
9686
|
before?: Maybe<Scalars['String']>;
|
|
9386
9687
|
};
|
|
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 = {
|
|
9688
|
+
export declare type JiraQueryFilterArgs = {
|
|
9404
9689
|
id: Scalars['ID'];
|
|
9405
9690
|
};
|
|
9406
|
-
export declare type
|
|
9691
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9407
9692
|
cloudId: Scalars['ID'];
|
|
9408
|
-
|
|
9409
|
-
|
|
9693
|
+
first?: Maybe<Scalars['Int']>;
|
|
9694
|
+
after?: Maybe<Scalars['String']>;
|
|
9695
|
+
last?: Maybe<Scalars['Int']>;
|
|
9696
|
+
before?: Maybe<Scalars['String']>;
|
|
9410
9697
|
};
|
|
9411
|
-
export declare type
|
|
9698
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9412
9699
|
cloudId: Scalars['ID'];
|
|
9413
|
-
|
|
9414
|
-
options?: Maybe<JiraIssueSearchOptions>;
|
|
9700
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9415
9701
|
first?: Maybe<Scalars['Int']>;
|
|
9416
9702
|
after?: Maybe<Scalars['String']>;
|
|
9417
9703
|
last?: Maybe<Scalars['Int']>;
|
|
9418
9704
|
before?: Maybe<Scalars['String']>;
|
|
9419
9705
|
};
|
|
9706
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9707
|
+
cloudId: Scalars['ID'];
|
|
9708
|
+
keys: Array<Scalars['String']>;
|
|
9709
|
+
};
|
|
9710
|
+
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
9711
|
+
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9712
|
+
};
|
|
9713
|
+
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9714
|
+
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9715
|
+
};
|
|
9420
9716
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
9421
9717
|
key: Scalars['String'];
|
|
9422
9718
|
cloudId: Scalars['ID'];
|
|
@@ -9436,31 +9732,6 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
9436
9732
|
export declare type JiraQueryCommentsByIdArgs = {
|
|
9437
9733
|
input: Array<JiraCommentByIdInput>;
|
|
9438
9734
|
};
|
|
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
9735
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9465
9736
|
cloudId: Scalars['ID'];
|
|
9466
9737
|
};
|
|
@@ -9518,6 +9789,36 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
9518
9789
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
9519
9790
|
versionId: Scalars['ID'];
|
|
9520
9791
|
};
|
|
9792
|
+
export declare type JiraQueryJqlBuilderArgs = {
|
|
9793
|
+
cloudId: Scalars['ID'];
|
|
9794
|
+
};
|
|
9795
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9796
|
+
cloudId: Scalars['ID'];
|
|
9797
|
+
jql: Scalars['String'];
|
|
9798
|
+
};
|
|
9799
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9800
|
+
id: Scalars['ID'];
|
|
9801
|
+
};
|
|
9802
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9803
|
+
ids: Array<Scalars['ID']>;
|
|
9804
|
+
};
|
|
9805
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9806
|
+
id: Scalars['ID'];
|
|
9807
|
+
};
|
|
9808
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
9809
|
+
cloudId: Scalars['ID'];
|
|
9810
|
+
namespace?: Maybe<Scalars['String']>;
|
|
9811
|
+
viewId?: Maybe<Scalars['String']>;
|
|
9812
|
+
};
|
|
9813
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9814
|
+
cloudId: Scalars['ID'];
|
|
9815
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
9816
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9817
|
+
first?: Maybe<Scalars['Int']>;
|
|
9818
|
+
after?: Maybe<Scalars['String']>;
|
|
9819
|
+
last?: Maybe<Scalars['Int']>;
|
|
9820
|
+
before?: Maybe<Scalars['String']>;
|
|
9821
|
+
};
|
|
9521
9822
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9522
9823
|
__typename?: 'JiraRadioSelectField';
|
|
9523
9824
|
id: Scalars['ID'];
|
|
@@ -10385,6 +10686,8 @@ export declare type JiraSprint = Node & {
|
|
|
10385
10686
|
boardName?: Maybe<Scalars['String']>;
|
|
10386
10687
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10387
10688
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
10689
|
+
completionDate?: Maybe<Scalars['DateTime']>;
|
|
10690
|
+
goal?: Maybe<Scalars['String']>;
|
|
10388
10691
|
};
|
|
10389
10692
|
export declare type JiraSprintConnection = {
|
|
10390
10693
|
__typename?: 'JiraSprintConnection';
|
|
@@ -11089,6 +11392,7 @@ export declare type MarketplacePartner = {
|
|
|
11089
11392
|
support?: Maybe<MarketplacePartnerSupport>;
|
|
11090
11393
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
11091
11394
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
11395
|
+
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
11092
11396
|
};
|
|
11093
11397
|
export declare type MarketplacePartnerAddress = {
|
|
11094
11398
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -11141,6 +11445,16 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
|
|
|
11141
11445
|
OneTime = "ONE_TIME",
|
|
11142
11446
|
Annual = "ANNUAL"
|
|
11143
11447
|
}
|
|
11448
|
+
export declare type MarketplacePartnerTier = {
|
|
11449
|
+
__typename?: 'MarketplacePartnerTier';
|
|
11450
|
+
type: MarketplacePartnerTierType;
|
|
11451
|
+
updatedDate: Scalars['String'];
|
|
11452
|
+
};
|
|
11453
|
+
export declare enum MarketplacePartnerTierType {
|
|
11454
|
+
Silver = "SILVER",
|
|
11455
|
+
Gold = "GOLD",
|
|
11456
|
+
Platinum = "PLATINUM"
|
|
11457
|
+
}
|
|
11144
11458
|
export declare enum MarketplacePartnerType {
|
|
11145
11459
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
11146
11460
|
}
|
|
@@ -11274,15 +11588,9 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
11274
11588
|
export declare type Mutation = {
|
|
11275
11589
|
__typename?: 'Mutation';
|
|
11276
11590
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11591
|
+
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11592
|
+
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11277
11593
|
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
11594
|
jsw?: Maybe<JswMutation>;
|
|
11287
11595
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11288
11596
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -11310,7 +11618,16 @@ export declare type Mutation = {
|
|
|
11310
11618
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11311
11619
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11312
11620
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
11621
|
+
createApp?: Maybe<CreateAppResponse>;
|
|
11622
|
+
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11623
|
+
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11624
|
+
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11625
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
11626
|
+
createReleaseNote: ContentPlatformReleaseNote;
|
|
11627
|
+
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11628
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11313
11629
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11630
|
+
devOps?: Maybe<DevOpsMutation>;
|
|
11314
11631
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11315
11632
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11316
11633
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -11328,6 +11645,7 @@ export declare type Mutation = {
|
|
|
11328
11645
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11329
11646
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11330
11647
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
11648
|
+
jira?: Maybe<JiraMutation>;
|
|
11331
11649
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
11332
11650
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
11333
11651
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -11336,11 +11654,10 @@ export declare type Mutation = {
|
|
|
11336
11654
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
11337
11655
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
11338
11656
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
11339
|
-
jira?: Maybe<JiraMutation>;
|
|
11340
11657
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11341
11658
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11342
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11343
11659
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11660
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11344
11661
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11345
11662
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
11346
11663
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
@@ -11393,69 +11710,29 @@ export declare type Mutation = {
|
|
|
11393
11710
|
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
11394
11711
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
11395
11712
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11713
|
+
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11714
|
+
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11396
11715
|
installApp?: Maybe<AppInstallationResponse>;
|
|
11397
11716
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
11398
11717
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
11399
11718
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
11400
11719
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
11401
|
-
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11402
|
-
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11403
|
-
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11404
11720
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
11405
11721
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
11406
11722
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
11407
11723
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11408
11724
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11409
11725
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11726
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11410
11727
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11411
11728
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11412
11729
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11413
11730
|
};
|
|
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']>;
|
|
11429
|
-
};
|
|
11430
|
-
export declare type MutationPublishReleaseNoteArgs = {
|
|
11431
|
-
id: Scalars['String'];
|
|
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;
|
|
11731
|
+
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11732
|
+
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11450
11733
|
};
|
|
11451
|
-
export declare type
|
|
11452
|
-
input:
|
|
11453
|
-
};
|
|
11454
|
-
export declare type MutationDeleteAppArgs = {
|
|
11455
|
-
input: DeleteAppInput;
|
|
11456
|
-
};
|
|
11457
|
-
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11458
|
-
input: UpdateAtlassianOAuthClientInput;
|
|
11734
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11735
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
11459
11736
|
};
|
|
11460
11737
|
export declare type MutationCreateColumnArgs = {
|
|
11461
11738
|
input?: Maybe<CreateColumnInput>;
|
|
@@ -11535,6 +11812,52 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
11535
11812
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11536
11813
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11537
11814
|
};
|
|
11815
|
+
export declare type MutationCreateAppArgs = {
|
|
11816
|
+
input: CreateAppInput;
|
|
11817
|
+
};
|
|
11818
|
+
export declare type MutationUpdateAppDetailsArgs = {
|
|
11819
|
+
input: UpdateAppDetailsInput;
|
|
11820
|
+
};
|
|
11821
|
+
export declare type MutationDeleteAppArgs = {
|
|
11822
|
+
input: DeleteAppInput;
|
|
11823
|
+
};
|
|
11824
|
+
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11825
|
+
input: UpdateAtlassianOAuthClientInput;
|
|
11826
|
+
};
|
|
11827
|
+
export declare type MutationCreateReleaseNoteArgs = {
|
|
11828
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11829
|
+
title?: Maybe<Scalars['String']>;
|
|
11830
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11831
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11832
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11833
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11834
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11835
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11836
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11837
|
+
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11838
|
+
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11839
|
+
description: Scalars['JSON'];
|
|
11840
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11841
|
+
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11842
|
+
};
|
|
11843
|
+
export declare type MutationPublishReleaseNoteArgs = {
|
|
11844
|
+
id: Scalars['String'];
|
|
11845
|
+
};
|
|
11846
|
+
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11847
|
+
id: Scalars['String'];
|
|
11848
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11849
|
+
title?: Maybe<Scalars['String']>;
|
|
11850
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11851
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11852
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11853
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11854
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11855
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11856
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11857
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11858
|
+
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11859
|
+
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11860
|
+
};
|
|
11538
11861
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
11539
11862
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
11540
11863
|
};
|
|
@@ -11781,6 +12104,12 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
11781
12104
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
11782
12105
|
id: Scalars['ID'];
|
|
11783
12106
|
};
|
|
12107
|
+
export declare type MutationWatchMarketplaceAppArgs = {
|
|
12108
|
+
id: Scalars['ID'];
|
|
12109
|
+
};
|
|
12110
|
+
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
12111
|
+
id: Scalars['ID'];
|
|
12112
|
+
};
|
|
11784
12113
|
export declare type MutationInstallAppArgs = {
|
|
11785
12114
|
input: AppInstallationInput;
|
|
11786
12115
|
};
|
|
@@ -11796,12 +12125,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
11796
12125
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
11797
12126
|
input: AppUnsubscribeInput;
|
|
11798
12127
|
};
|
|
11799
|
-
export declare type MutationWatchMarketplaceAppArgs = {
|
|
11800
|
-
id: Scalars['ID'];
|
|
11801
|
-
};
|
|
11802
|
-
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
11803
|
-
id: Scalars['ID'];
|
|
11804
|
-
};
|
|
11805
12128
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
11806
12129
|
input: CreateAppDeploymentUrlInput;
|
|
11807
12130
|
};
|
|
@@ -12656,6 +12979,7 @@ export declare type PolarisMatrixAxis = {
|
|
|
12656
12979
|
__typename?: 'PolarisMatrixAxis';
|
|
12657
12980
|
dimension: Scalars['String'];
|
|
12658
12981
|
field: PolarisIdeaField;
|
|
12982
|
+
fieldOptions?: Maybe<Array<PolarisGroupValue>>;
|
|
12659
12983
|
};
|
|
12660
12984
|
export declare type PolarisMatrixConfig = {
|
|
12661
12985
|
__typename?: 'PolarisMatrixConfig';
|
|
@@ -13060,33 +13384,36 @@ export declare type ProjectAvatars = {
|
|
|
13060
13384
|
};
|
|
13061
13385
|
export declare type Query = {
|
|
13062
13386
|
__typename?: 'Query';
|
|
13063
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13064
13387
|
echo?: Maybe<Scalars['String']>;
|
|
13065
13388
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
13066
13389
|
node?: Maybe<Node>;
|
|
13390
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13391
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13067
13392
|
activities?: Maybe<Activities>;
|
|
13068
13393
|
activity?: Maybe<Activity>;
|
|
13069
13394
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13070
|
-
bitbucket?: Maybe<BitbucketQuery>;
|
|
13071
13395
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13396
|
+
bitbucket?: Maybe<BitbucketQuery>;
|
|
13072
13397
|
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>>;
|
|
13398
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
13080
13399
|
jsw?: Maybe<JswQuery>;
|
|
13081
13400
|
boardScope?: Maybe<BoardScope>;
|
|
13082
13401
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13402
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13403
|
+
apps?: Maybe<AppConnection>;
|
|
13404
|
+
app?: Maybe<App>;
|
|
13405
|
+
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13406
|
+
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13407
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13408
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
13409
|
+
practicePage: ContentPlatformPracticePage;
|
|
13083
13410
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13084
13411
|
search?: Maybe<SearchQueryApi>;
|
|
13085
|
-
|
|
13412
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
13086
13413
|
me: AuthenticationContext;
|
|
13087
13414
|
user?: Maybe<User>;
|
|
13088
13415
|
users?: Maybe<Array<User>>;
|
|
13089
|
-
|
|
13416
|
+
devOps?: Maybe<DevOps>;
|
|
13090
13417
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13091
13418
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13092
13419
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
@@ -13103,26 +13430,27 @@ export declare type Query = {
|
|
|
13103
13430
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13104
13431
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13105
13432
|
codeInJira?: Maybe<CodeInJira>;
|
|
13433
|
+
jira?: Maybe<JiraQuery>;
|
|
13106
13434
|
devOpsService?: Maybe<DevOpsService>;
|
|
13107
13435
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13108
13436
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
13109
13437
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
13110
13438
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
13111
13439
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
13112
|
-
|
|
13440
|
+
avocado?: Maybe<Avocado>;
|
|
13113
13441
|
appLogs?: Maybe<AppLogConnection>;
|
|
13114
13442
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
13115
13443
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
13116
13444
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
13117
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13118
13445
|
team?: Maybe<TeamQuery>;
|
|
13446
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13119
13447
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
13120
13448
|
testing?: Maybe<Testing>;
|
|
13121
13449
|
movie?: Maybe<TestingMovie>;
|
|
13122
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13123
13450
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
13124
13451
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
13125
13452
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13453
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13126
13454
|
polarisProject?: Maybe<PolarisProject>;
|
|
13127
13455
|
polarisView?: Maybe<PolarisView>;
|
|
13128
13456
|
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
@@ -13139,20 +13467,20 @@ export declare type Query = {
|
|
|
13139
13467
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13140
13468
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13141
13469
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13142
|
-
dvcs?: Maybe<DvcsQuery>;
|
|
13143
13470
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13471
|
+
dvcs?: Maybe<DvcsQuery>;
|
|
13144
13472
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
13145
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13146
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
13147
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
13148
13473
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
13149
13474
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
13150
13475
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
13151
13476
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
13152
13477
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
13153
13478
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13154
|
-
|
|
13479
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
13480
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13481
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
13155
13482
|
appDeployment?: Maybe<AppDeployment>;
|
|
13483
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13156
13484
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13157
13485
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13158
13486
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
@@ -13162,23 +13490,17 @@ export declare type Query = {
|
|
|
13162
13490
|
export declare type QueryNodeArgs = {
|
|
13163
13491
|
id: Scalars['ID'];
|
|
13164
13492
|
};
|
|
13165
|
-
export declare type
|
|
13166
|
-
|
|
13167
|
-
first?: Maybe<Scalars['Int']>;
|
|
13168
|
-
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13169
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13170
|
-
orderBy?: Maybe<Scalars['String']>;
|
|
13493
|
+
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13494
|
+
id: Scalars['ID'];
|
|
13171
13495
|
};
|
|
13172
|
-
export declare type
|
|
13173
|
-
|
|
13174
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13496
|
+
export declare type QueryBoardScopeArgs = {
|
|
13497
|
+
boardId: Scalars['ID'];
|
|
13175
13498
|
};
|
|
13176
|
-
export declare type
|
|
13177
|
-
|
|
13178
|
-
first?: Maybe<Scalars['Int']>;
|
|
13499
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
13500
|
+
issueId: Scalars['ID'];
|
|
13179
13501
|
};
|
|
13180
|
-
export declare type
|
|
13181
|
-
|
|
13502
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13503
|
+
projectAri: Scalars['ID'];
|
|
13182
13504
|
};
|
|
13183
13505
|
export declare type QueryAppsArgs = {
|
|
13184
13506
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13193,11 +13515,23 @@ export declare type QueryAppArgs = {
|
|
|
13193
13515
|
export declare type QueryAppHostServicesArgs = {
|
|
13194
13516
|
filter?: Maybe<AppServicesFilter>;
|
|
13195
13517
|
};
|
|
13196
|
-
export declare type
|
|
13197
|
-
|
|
13518
|
+
export declare type QueryReleaseNotesArgs = {
|
|
13519
|
+
after?: Maybe<Scalars['String']>;
|
|
13520
|
+
first?: Maybe<Scalars['Int']>;
|
|
13521
|
+
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13522
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13523
|
+
orderBy?: Maybe<Scalars['String']>;
|
|
13198
13524
|
};
|
|
13199
|
-
export declare type
|
|
13200
|
-
|
|
13525
|
+
export declare type QueryReleaseNoteArgs = {
|
|
13526
|
+
id: Scalars['String'];
|
|
13527
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13528
|
+
};
|
|
13529
|
+
export declare type QueryPracticePagesArgs = {
|
|
13530
|
+
after?: Maybe<Scalars['String']>;
|
|
13531
|
+
first?: Maybe<Scalars['Int']>;
|
|
13532
|
+
};
|
|
13533
|
+
export declare type QueryPracticePageArgs = {
|
|
13534
|
+
id: Scalars['String'];
|
|
13201
13535
|
};
|
|
13202
13536
|
export declare type QueryUserArgs = {
|
|
13203
13537
|
accountId: Scalars['ID'];
|
|
@@ -13411,9 +13745,6 @@ export declare type QueryWebTriggerUrlsByAppContextArgs = {
|
|
|
13411
13745
|
envId: Scalars['ID'];
|
|
13412
13746
|
contextId: Scalars['ID'];
|
|
13413
13747
|
};
|
|
13414
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
13415
|
-
id: Scalars['ID'];
|
|
13416
|
-
};
|
|
13417
13748
|
export declare type QueryMarketplacePartnerArgs = {
|
|
13418
13749
|
id: Scalars['ID'];
|
|
13419
13750
|
};
|
|
@@ -13431,6 +13762,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
13431
13762
|
hostingType: AtlassianProductHostingType;
|
|
13432
13763
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
13433
13764
|
};
|
|
13765
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
13766
|
+
id: Scalars['ID'];
|
|
13767
|
+
};
|
|
13434
13768
|
export declare type QueryAppDeploymentArgs = {
|
|
13435
13769
|
appId: Scalars['ID'];
|
|
13436
13770
|
environmentKey: Scalars['String'];
|
|
@@ -13609,6 +13943,10 @@ export declare type RoadmapAddItemResponse = {
|
|
|
13609
13943
|
item?: Maybe<RoadmapItem>;
|
|
13610
13944
|
matchesSource: Scalars['Boolean'];
|
|
13611
13945
|
};
|
|
13946
|
+
export declare type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
13947
|
+
create?: Maybe<RoadmapCreateLevelOneIssueType>;
|
|
13948
|
+
promote?: Maybe<RoadmapPromoteLevelOneIssueType>;
|
|
13949
|
+
};
|
|
13612
13950
|
export declare type RoadmapBoardConfiguration = {
|
|
13613
13951
|
__typename?: 'RoadmapBoardConfiguration';
|
|
13614
13952
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -13630,6 +13968,7 @@ export declare type RoadmapConfiguration = {
|
|
|
13630
13968
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
13631
13969
|
externalConfiguration?: Maybe<RoadmapExternalConfiguration>;
|
|
13632
13970
|
projectConfigurations: Array<RoadmapProjectConfiguration>;
|
|
13971
|
+
projectConfiguration?: Maybe<RoadmapProjectConfiguration>;
|
|
13633
13972
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
13634
13973
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13635
13974
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
@@ -13639,6 +13978,10 @@ export declare type RoadmapContent = {
|
|
|
13639
13978
|
configuration: RoadmapConfiguration;
|
|
13640
13979
|
items: RoadmapItemConnection;
|
|
13641
13980
|
};
|
|
13981
|
+
export declare type RoadmapCreateLevelOneIssueType = {
|
|
13982
|
+
epicTypeName: Scalars['String'];
|
|
13983
|
+
epicTypeDescription: Scalars['String'];
|
|
13984
|
+
};
|
|
13642
13985
|
export declare type RoadmapCreationPreferences = {
|
|
13643
13986
|
__typename?: 'RoadmapCreationPreferences';
|
|
13644
13987
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13748,6 +14091,10 @@ export declare type RoadmapItemEdge = {
|
|
|
13748
14091
|
cursor: Scalars['String'];
|
|
13749
14092
|
node?: Maybe<RoadmapItem>;
|
|
13750
14093
|
};
|
|
14094
|
+
export declare type RoadmapItemRankInput = {
|
|
14095
|
+
id: Scalars['ID'];
|
|
14096
|
+
position: RoadmapRankPosition;
|
|
14097
|
+
};
|
|
13751
14098
|
export declare type RoadmapItemStatus = {
|
|
13752
14099
|
__typename?: 'RoadmapItemStatus';
|
|
13753
14100
|
id: Scalars['ID'];
|
|
@@ -13851,12 +14198,41 @@ export declare type RoadmapProjectValidation = {
|
|
|
13851
14198
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13852
14199
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13853
14200
|
};
|
|
14201
|
+
export declare type RoadmapPromoteLevelOneIssueType = {
|
|
14202
|
+
promoteItemTypeId: Scalars['ID'];
|
|
14203
|
+
};
|
|
13854
14204
|
export declare type RoadmapQuickFilter = {
|
|
13855
14205
|
__typename?: 'RoadmapQuickFilter';
|
|
13856
14206
|
id: Scalars['ID'];
|
|
13857
14207
|
name: Scalars['String'];
|
|
13858
14208
|
query: Scalars['String'];
|
|
13859
14209
|
};
|
|
14210
|
+
export declare enum RoadmapRankPosition {
|
|
14211
|
+
Before = "BEFORE",
|
|
14212
|
+
After = "AFTER"
|
|
14213
|
+
}
|
|
14214
|
+
export declare type RoadmapResolveHealthcheckInput = {
|
|
14215
|
+
actionId: Scalars['ID'];
|
|
14216
|
+
addLevelOneIssueType?: Maybe<RoadmapAddLevelOneIssueTypeHealthcheckResolution>;
|
|
14217
|
+
};
|
|
14218
|
+
export declare type RoadmapResolveHealthcheckPayload = Payload & {
|
|
14219
|
+
__typename?: 'RoadmapResolveHealthcheckPayload';
|
|
14220
|
+
success: Scalars['Boolean'];
|
|
14221
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14222
|
+
};
|
|
14223
|
+
export declare type RoadmapScheduleItemInput = {
|
|
14224
|
+
itemId: Scalars['ID'];
|
|
14225
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
14226
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
14227
|
+
};
|
|
14228
|
+
export declare type RoadmapScheduleItemsInput = {
|
|
14229
|
+
scheduleRequests: Array<Maybe<RoadmapScheduleItemInput>>;
|
|
14230
|
+
};
|
|
14231
|
+
export declare type RoadmapScheduleItemsPayload = Payload & {
|
|
14232
|
+
__typename?: 'RoadmapScheduleItemsPayload';
|
|
14233
|
+
success: Scalars['Boolean'];
|
|
14234
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14235
|
+
};
|
|
13860
14236
|
export declare type RoadmapSprint = {
|
|
13861
14237
|
__typename?: 'RoadmapSprint';
|
|
13862
14238
|
id: Scalars['ID'];
|
|
@@ -13903,7 +14279,7 @@ export declare type RoadmapUpdateItemInput = {
|
|
|
13903
14279
|
dueDate?: Maybe<Scalars['Date']>;
|
|
13904
14280
|
startDate?: Maybe<Scalars['Date']>;
|
|
13905
14281
|
color?: Maybe<RoadmapPaletteColor>;
|
|
13906
|
-
rank?: Maybe<
|
|
14282
|
+
rank?: Maybe<RoadmapItemRankInput>;
|
|
13907
14283
|
parentId?: Maybe<Scalars['ID']>;
|
|
13908
14284
|
sprintId?: Maybe<Scalars['ID']>;
|
|
13909
14285
|
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
@@ -13914,10 +14290,6 @@ export declare type RoadmapUpdateItemPayload = Payload & {
|
|
|
13914
14290
|
errors?: Maybe<Array<MutationError>>;
|
|
13915
14291
|
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13916
14292
|
};
|
|
13917
|
-
export declare type RoadmapUpdateItemRank = {
|
|
13918
|
-
beforeId?: Maybe<Scalars['ID']>;
|
|
13919
|
-
afterId?: Maybe<Scalars['ID']>;
|
|
13920
|
-
};
|
|
13921
14293
|
export declare type RoadmapUpdateItemResponse = {
|
|
13922
14294
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
13923
14295
|
item?: Maybe<RoadmapItem>;
|
|
@@ -13953,14 +14325,20 @@ export declare type RoadmapViewSettings = {
|
|
|
13953
14325
|
export declare type RoadmapsMutation = {
|
|
13954
14326
|
__typename?: 'RoadmapsMutation';
|
|
13955
14327
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
14328
|
+
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
13956
14329
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13957
14330
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14331
|
+
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
13958
14332
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13959
14333
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13960
14334
|
};
|
|
13961
14335
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13962
14336
|
input: RoadmapFeatureToggleInput;
|
|
13963
14337
|
};
|
|
14338
|
+
export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
14339
|
+
sourceARI: Scalars['ID'];
|
|
14340
|
+
input: RoadmapResolveHealthcheckInput;
|
|
14341
|
+
};
|
|
13964
14342
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13965
14343
|
sourceARI: Scalars['ID'];
|
|
13966
14344
|
input: RoadmapAddItemInput;
|
|
@@ -13969,6 +14347,10 @@ export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
|
13969
14347
|
sourceARI: Scalars['ID'];
|
|
13970
14348
|
input: RoadmapUpdateItemInput;
|
|
13971
14349
|
};
|
|
14350
|
+
export declare type RoadmapsMutationScheduleRoadmapItemsArgs = {
|
|
14351
|
+
sourceARI: Scalars['ID'];
|
|
14352
|
+
input: RoadmapScheduleItemsInput;
|
|
14353
|
+
};
|
|
13972
14354
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13973
14355
|
sourceARI: Scalars['ID'];
|
|
13974
14356
|
input: RoadmapToggleDependencyInput;
|
|
@@ -14008,6 +14390,7 @@ export declare enum Scope {
|
|
|
14008
14390
|
AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
|
|
14009
14391
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
14010
14392
|
ReadMe = "READ_ME",
|
|
14393
|
+
ReadAccount = "READ_ACCOUNT",
|
|
14011
14394
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
14012
14395
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
14013
14396
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -14380,13 +14763,14 @@ export declare type ShepherdCreateSubscriptionInput = {
|
|
|
14380
14763
|
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14381
14764
|
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14382
14765
|
errors?: Maybe<Array<MutationError>>;
|
|
14383
|
-
node?: Maybe<
|
|
14766
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14384
14767
|
success: Scalars['Boolean'];
|
|
14385
14768
|
};
|
|
14386
14769
|
export declare type ShepherdCreateWebhookInput = {
|
|
14387
14770
|
authToken?: Maybe<Scalars['String']>;
|
|
14388
14771
|
callbackURL: Scalars['URL'];
|
|
14389
14772
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14773
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14390
14774
|
};
|
|
14391
14775
|
export declare type ShepherdEmailConnection = {
|
|
14392
14776
|
__typename?: 'ShepherdEmailConnection';
|
|
@@ -14516,12 +14900,13 @@ export declare type ShepherdUpdateSubscriptionInput = {
|
|
|
14516
14900
|
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14517
14901
|
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14518
14902
|
errors?: Maybe<Array<MutationError>>;
|
|
14519
|
-
node?: Maybe<
|
|
14903
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14520
14904
|
success: Scalars['Boolean'];
|
|
14521
14905
|
};
|
|
14522
14906
|
export declare type ShepherdUpdateWebhookInput = {
|
|
14523
14907
|
callbackURL?: Maybe<Scalars['URL']>;
|
|
14524
14908
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14909
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14525
14910
|
};
|
|
14526
14911
|
export declare type ShepherdUser = {
|
|
14527
14912
|
__typename?: 'ShepherdUser';
|
|
@@ -14543,9 +14928,14 @@ export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
|
14543
14928
|
createdOn: Scalars['DateTime'];
|
|
14544
14929
|
id: Scalars['ID'];
|
|
14545
14930
|
status: ShepherdSubscriptionStatus;
|
|
14931
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14546
14932
|
updatedBy?: Maybe<Scalars['String']>;
|
|
14547
14933
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14548
14934
|
};
|
|
14935
|
+
export declare enum ShepherdWebhookType {
|
|
14936
|
+
Custom = "CUSTOM",
|
|
14937
|
+
Slack = "SLACK"
|
|
14938
|
+
}
|
|
14549
14939
|
export declare type SoftwareBoard = {
|
|
14550
14940
|
__typename?: 'SoftwareBoard';
|
|
14551
14941
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -14818,6 +15208,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
14818
15208
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14819
15209
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14820
15210
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
15211
|
+
updateSupportRequest?: Maybe<SupportRequest>;
|
|
14821
15212
|
};
|
|
14822
15213
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
14823
15214
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -14837,6 +15228,9 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
|
|
|
14837
15228
|
sen?: Maybe<Scalars['String']>;
|
|
14838
15229
|
operation: SupportRequestNamedContactOperation;
|
|
14839
15230
|
};
|
|
15231
|
+
export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
|
|
15232
|
+
input: SupportRequestUpdateInput;
|
|
15233
|
+
};
|
|
14840
15234
|
export declare type SupportRequestCatalogQueryApi = {
|
|
14841
15235
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
14842
15236
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -14876,11 +15270,19 @@ export declare type SupportRequestField = {
|
|
|
14876
15270
|
__typename?: 'SupportRequestField';
|
|
14877
15271
|
id: Scalars['String'];
|
|
14878
15272
|
label: Scalars['String'];
|
|
14879
|
-
value
|
|
15273
|
+
value?: Maybe<SupportRequestFieldValue>;
|
|
15274
|
+
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15275
|
+
editable?: Maybe<Scalars['Boolean']>;
|
|
14880
15276
|
};
|
|
15277
|
+
export declare enum SupportRequestFieldDataType {
|
|
15278
|
+
String = "STRING",
|
|
15279
|
+
Number = "NUMBER",
|
|
15280
|
+
Boolean = "BOOLEAN",
|
|
15281
|
+
Date = "DATE"
|
|
15282
|
+
}
|
|
14881
15283
|
export declare type SupportRequestFieldValue = {
|
|
14882
15284
|
__typename?: 'SupportRequestFieldValue';
|
|
14883
|
-
value
|
|
15285
|
+
value?: Maybe<Scalars['String']>;
|
|
14884
15286
|
};
|
|
14885
15287
|
export declare type SupportRequestHierarchyRequest = {
|
|
14886
15288
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
@@ -15009,6 +15411,14 @@ export declare type SupportRequestTransitions = {
|
|
|
15009
15411
|
lastPage: Scalars['Boolean'];
|
|
15010
15412
|
values: Array<SupportRequestTransition>;
|
|
15011
15413
|
};
|
|
15414
|
+
export declare type SupportRequestUpdateFieldInput = {
|
|
15415
|
+
id: Scalars['String'];
|
|
15416
|
+
value: Scalars['String'];
|
|
15417
|
+
};
|
|
15418
|
+
export declare type SupportRequestUpdateInput = {
|
|
15419
|
+
requestKey: Scalars['ID'];
|
|
15420
|
+
experienceFields?: Maybe<Array<SupportRequestUpdateFieldInput>>;
|
|
15421
|
+
};
|
|
15012
15422
|
export declare type SupportRequestUser = {
|
|
15013
15423
|
__typename?: 'SupportRequestUser';
|
|
15014
15424
|
user?: Maybe<User>;
|
|
@@ -15561,6 +15971,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
15561
15971
|
description?: Maybe<Scalars['String']>;
|
|
15562
15972
|
ownerId?: Maybe<Scalars['ID']>;
|
|
15563
15973
|
fields?: Maybe<Array<UpdateCompassFieldInput>>;
|
|
15974
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
15564
15975
|
};
|
|
15565
15976
|
export declare type UpdateCompassComponentLinkInput = {
|
|
15566
15977
|
componentId: Scalars['ID'];
|
|
@@ -15860,6 +16271,7 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
15860
16271
|
export declare type UpdatePolarisMatrixAxis = {
|
|
15861
16272
|
dimension: Scalars['String'];
|
|
15862
16273
|
field: Scalars['ID'];
|
|
16274
|
+
fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
|
|
15863
16275
|
};
|
|
15864
16276
|
export declare type UpdatePolarisMatrixConfig = {
|
|
15865
16277
|
axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
|
|
@@ -15994,7 +16406,7 @@ export declare type UserGrant = {
|
|
|
15994
16406
|
oauthClientId: Scalars['ID'];
|
|
15995
16407
|
appId?: Maybe<Scalars['ID']>;
|
|
15996
16408
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
15997
|
-
scopes
|
|
16409
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
15998
16410
|
};
|
|
15999
16411
|
export declare type UserGrantAppDetails = {
|
|
16000
16412
|
__typename?: 'UserGrantAppDetails';
|
|
@@ -16071,4 +16483,8 @@ export declare type _DirectiveArgument = {
|
|
|
16071
16483
|
name: Scalars['String'];
|
|
16072
16484
|
value: Scalars['String'];
|
|
16073
16485
|
};
|
|
16486
|
+
export declare enum SourceBillingType {
|
|
16487
|
+
Hams = "HAMS",
|
|
16488
|
+
Ccp = "CCP"
|
|
16489
|
+
}
|
|
16074
16490
|
//# sourceMappingURL=graphql-types.d.ts.map
|