@forge/cli-shared 2.4.0-next.5 → 2.4.0-next.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/out/cache/cached-conf.d.ts +14 -0
- package/out/cache/cached-conf.d.ts.map +1 -1
- package/out/cache/cached-conf.js +30 -4
- package/out/graphql/graphql-types.d.ts +507 -190
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +15 -1
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/ui/text.d.ts +0 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -4
- package/package.json +2 -2
|
@@ -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,7 +248,7 @@ 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
254
|
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
@@ -313,7 +319,8 @@ export declare enum ApiGroup {
|
|
|
313
319
|
Teams = "TEAMS",
|
|
314
320
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
315
321
|
Identity = "IDENTITY",
|
|
316
|
-
DevopsAriGraph = "DEVOPS_ARI_GRAPH"
|
|
322
|
+
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
323
|
+
Help = "HELP"
|
|
317
324
|
}
|
|
318
325
|
export declare type App = {
|
|
319
326
|
__typename?: 'App';
|
|
@@ -1450,6 +1457,7 @@ export declare type CardStatus = {
|
|
|
1450
1457
|
export declare type CardType = {
|
|
1451
1458
|
__typename?: 'CardType';
|
|
1452
1459
|
id?: Maybe<Scalars['ID']>;
|
|
1460
|
+
externalId?: Maybe<Scalars['ID']>;
|
|
1453
1461
|
name?: Maybe<Scalars['String']>;
|
|
1454
1462
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1455
1463
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
@@ -1459,7 +1467,7 @@ export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
1459
1467
|
cloudId: Scalars['ID'];
|
|
1460
1468
|
userId: Scalars['ID'];
|
|
1461
1469
|
oauthClientId: Scalars['ID'];
|
|
1462
|
-
scopes
|
|
1470
|
+
scopes: Array<Scalars['String']>;
|
|
1463
1471
|
};
|
|
1464
1472
|
export declare type ChildCardsMetadata = {
|
|
1465
1473
|
__typename?: 'ChildCardsMetadata';
|
|
@@ -1677,6 +1685,9 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1677
1685
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1678
1686
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1679
1687
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1688
|
+
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1689
|
+
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
1690
|
+
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
1680
1691
|
};
|
|
1681
1692
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1682
1693
|
cloudId: Scalars['ID'];
|
|
@@ -1826,6 +1837,15 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
1826
1837
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1827
1838
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1828
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
|
+
};
|
|
1829
1849
|
export declare type CompassCatalogQueryApi = {
|
|
1830
1850
|
__typename?: 'CompassCatalogQueryApi';
|
|
1831
1851
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1840,6 +1860,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1840
1860
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1841
1861
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1842
1862
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1863
|
+
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
1843
1864
|
};
|
|
1844
1865
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1845
1866
|
id: Scalars['ID'];
|
|
@@ -1887,6 +1908,9 @@ export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
1887
1908
|
eventType: CompassEventType;
|
|
1888
1909
|
externalEventSourceId: Scalars['ID'];
|
|
1889
1910
|
};
|
|
1911
|
+
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
1912
|
+
query: CompassCustomFieldDefinitionsQuery;
|
|
1913
|
+
};
|
|
1890
1914
|
export declare type CompassChangeMetadata = {
|
|
1891
1915
|
__typename?: 'CompassChangeMetadata';
|
|
1892
1916
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1916,6 +1940,7 @@ export declare type CompassComponent = Node & {
|
|
|
1916
1940
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1917
1941
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1918
1942
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1943
|
+
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1919
1944
|
};
|
|
1920
1945
|
export declare type CompassComponentRelationshipsArgs = {
|
|
1921
1946
|
query?: Maybe<CompassRelationshipQuery>;
|
|
@@ -1992,6 +2017,12 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1992
2017
|
externalEventSourceId: Scalars['ID'];
|
|
1993
2018
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1994
2019
|
};
|
|
2020
|
+
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2021
|
+
cloudId: Scalars['ID'];
|
|
2022
|
+
name: Scalars['String'];
|
|
2023
|
+
description?: Maybe<Scalars['String']>;
|
|
2024
|
+
componentTypes: Array<CompassComponentType>;
|
|
2025
|
+
};
|
|
1995
2026
|
export declare type CompassCreateCustomEventInput = {
|
|
1996
2027
|
displayName: Scalars['String'];
|
|
1997
2028
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2001,6 +2032,29 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
2001
2032
|
externalEventSourceId: Scalars['ID'];
|
|
2002
2033
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
2003
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
|
+
};
|
|
2004
2058
|
export declare type CompassCreateDeploymentEventInput = {
|
|
2005
2059
|
updateSequenceNumber: Scalars['Long'];
|
|
2006
2060
|
displayName: Scalars['String'];
|
|
@@ -2110,6 +2164,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
2110
2164
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
2111
2165
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
2112
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
|
+
};
|
|
2113
2183
|
export declare type CompassCustomEvent = CompassEvent & {
|
|
2114
2184
|
__typename?: 'CompassCustomEvent';
|
|
2115
2185
|
eventType: CompassEventType;
|
|
@@ -2134,6 +2204,68 @@ export declare type CompassCustomEventPropertiesInput = {
|
|
|
2134
2204
|
id: Scalars['ID'];
|
|
2135
2205
|
icon: CompassCustomEventIcon;
|
|
2136
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
|
+
};
|
|
2137
2269
|
export declare type CompassDeleteAnnouncementInput = {
|
|
2138
2270
|
cloudId: Scalars['ID'];
|
|
2139
2271
|
id: Scalars['ID'];
|
|
@@ -2144,6 +2276,15 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2144
2276
|
success: Scalars['Boolean'];
|
|
2145
2277
|
errors?: Maybe<Array<MutationError>>;
|
|
2146
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
|
+
};
|
|
2147
2288
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
2148
2289
|
id: Scalars['ID'];
|
|
2149
2290
|
};
|
|
@@ -2824,6 +2965,35 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
2824
2965
|
success: Scalars['Boolean'];
|
|
2825
2966
|
errors?: Maybe<Array<MutationError>>;
|
|
2826
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
|
+
};
|
|
2827
2997
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
2828
2998
|
id: Scalars['ID'];
|
|
2829
2999
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3806,6 +3976,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
3806
3976
|
type: CompassComponentType;
|
|
3807
3977
|
ownerId?: Maybe<Scalars['ID']>;
|
|
3808
3978
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
3979
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
3809
3980
|
};
|
|
3810
3981
|
export declare type CreateCompassComponentLinkInput = {
|
|
3811
3982
|
componentId: Scalars['ID'];
|
|
@@ -5690,11 +5861,12 @@ export declare enum GrantCheckProduct {
|
|
|
5690
5861
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
5691
5862
|
Confluence = "CONFLUENCE",
|
|
5692
5863
|
Compass = "COMPASS",
|
|
5864
|
+
Avocado = "AVOCADO",
|
|
5693
5865
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5694
5866
|
}
|
|
5695
|
-
export declare type HelpCenter = {
|
|
5867
|
+
export declare type HelpCenter = Node & {
|
|
5696
5868
|
__typename?: 'HelpCenter';
|
|
5697
|
-
|
|
5869
|
+
id: Scalars['ID'];
|
|
5698
5870
|
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5699
5871
|
};
|
|
5700
5872
|
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
@@ -5820,6 +5992,54 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
5820
5992
|
success: Scalars['Boolean'];
|
|
5821
5993
|
errors?: Maybe<Array<MutationError>>;
|
|
5822
5994
|
};
|
|
5995
|
+
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
5996
|
+
__typename?: 'HelpObjectStoreArticle';
|
|
5997
|
+
id: Scalars['ID'];
|
|
5998
|
+
title: Scalars['String'];
|
|
5999
|
+
description: Scalars['String'];
|
|
6000
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6001
|
+
displayLink: Scalars['URL'];
|
|
6002
|
+
entityId?: Maybe<Scalars['String']>;
|
|
6003
|
+
entityProjectId?: Maybe<Scalars['String']>;
|
|
6004
|
+
};
|
|
6005
|
+
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | QueryError;
|
|
6006
|
+
export declare type HelpObjectStoreHelpObject = {
|
|
6007
|
+
id: Scalars['ID'];
|
|
6008
|
+
title: Scalars['String'];
|
|
6009
|
+
description: Scalars['String'];
|
|
6010
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6011
|
+
displayLink: Scalars['URL'];
|
|
6012
|
+
};
|
|
6013
|
+
export declare enum HelpObjectStoreHelpObjectType {
|
|
6014
|
+
RequestForm = "REQUEST_FORM",
|
|
6015
|
+
Article = "ARTICLE"
|
|
6016
|
+
}
|
|
6017
|
+
export declare type HelpObjectStoreIcon = {
|
|
6018
|
+
__typename?: 'HelpObjectStoreIcon';
|
|
6019
|
+
iconUrl: Scalars['URL'];
|
|
6020
|
+
};
|
|
6021
|
+
export declare type HelpObjectStoreQueryApi = {
|
|
6022
|
+
__typename?: 'HelpObjectStoreQueryApi';
|
|
6023
|
+
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
6024
|
+
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
6025
|
+
};
|
|
6026
|
+
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
6027
|
+
ids: Array<Scalars['ID']>;
|
|
6028
|
+
};
|
|
6029
|
+
export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
6030
|
+
ids: Array<Scalars['ID']>;
|
|
6031
|
+
};
|
|
6032
|
+
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6033
|
+
__typename?: 'HelpObjectStoreRequestForm';
|
|
6034
|
+
id: Scalars['ID'];
|
|
6035
|
+
title: Scalars['String'];
|
|
6036
|
+
description: Scalars['String'];
|
|
6037
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6038
|
+
displayLink: Scalars['URL'];
|
|
6039
|
+
entityId?: Maybe<Scalars['String']>;
|
|
6040
|
+
entityProjectId?: Maybe<Scalars['String']>;
|
|
6041
|
+
};
|
|
6042
|
+
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | QueryError;
|
|
5823
6043
|
export declare type HostedResourcePreSignedUrl = {
|
|
5824
6044
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5825
6045
|
uploadUrl: Scalars['String'];
|
|
@@ -6232,6 +6452,7 @@ export declare type JiraAddIssuesToFixVersionInput = {
|
|
|
6232
6452
|
};
|
|
6233
6453
|
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6234
6454
|
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6455
|
+
version?: Maybe<JiraVersion>;
|
|
6235
6456
|
success: Scalars['Boolean'];
|
|
6236
6457
|
errors?: Maybe<Array<MutationError>>;
|
|
6237
6458
|
};
|
|
@@ -7369,6 +7590,11 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
7369
7590
|
id: Scalars['ID'];
|
|
7370
7591
|
group: JiraGroup;
|
|
7371
7592
|
};
|
|
7593
|
+
export declare type JiraHierarchyConfigError = {
|
|
7594
|
+
__typename?: 'JiraHierarchyConfigError';
|
|
7595
|
+
code?: Maybe<Scalars['String']>;
|
|
7596
|
+
message?: Maybe<Scalars['String']>;
|
|
7597
|
+
};
|
|
7372
7598
|
export declare type JiraInvalidJqlError = {
|
|
7373
7599
|
__typename?: 'JiraInvalidJqlError';
|
|
7374
7600
|
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -7398,6 +7624,11 @@ export declare type JiraIssue = Node & {
|
|
|
7398
7624
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7399
7625
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7400
7626
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7627
|
+
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7628
|
+
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7629
|
+
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7630
|
+
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7631
|
+
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
7401
7632
|
};
|
|
7402
7633
|
export declare type JiraIssueFieldsArgs = {
|
|
7403
7634
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7620,6 +7851,43 @@ export declare type JiraIssueFieldSetEdge = {
|
|
|
7620
7851
|
node?: Maybe<JiraIssueFieldSet>;
|
|
7621
7852
|
cursor: Scalars['String'];
|
|
7622
7853
|
};
|
|
7854
|
+
export declare type JiraIssueHierarchyConfigData = {
|
|
7855
|
+
__typename?: 'JiraIssueHierarchyConfigData';
|
|
7856
|
+
hierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7857
|
+
cmpIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
7858
|
+
};
|
|
7859
|
+
export declare type JiraIssueHierarchyConfigDataCmpIssueTypesArgs = {
|
|
7860
|
+
first?: Maybe<Scalars['Int']>;
|
|
7861
|
+
after?: Maybe<Scalars['String']>;
|
|
7862
|
+
last?: Maybe<Scalars['Int']>;
|
|
7863
|
+
before?: Maybe<Scalars['String']>;
|
|
7864
|
+
};
|
|
7865
|
+
export declare type JiraIssueHierarchyConfigInput = {
|
|
7866
|
+
level: Scalars['Int'];
|
|
7867
|
+
title: Scalars['String'];
|
|
7868
|
+
issueTypeIds: Array<Scalars['ID']>;
|
|
7869
|
+
};
|
|
7870
|
+
export declare type JiraIssueHierarchyConfigurationMutationInput = {
|
|
7871
|
+
dryRun: Scalars['Boolean'];
|
|
7872
|
+
issueHierarchyConfig: Array<JiraIssueHierarchyConfigInput>;
|
|
7873
|
+
};
|
|
7874
|
+
export declare type JiraIssueHierarchyConfigurationMutationResult = {
|
|
7875
|
+
__typename?: 'JiraIssueHierarchyConfigurationMutationResult';
|
|
7876
|
+
updateInitiated: Scalars['Boolean'];
|
|
7877
|
+
success: Scalars['Boolean'];
|
|
7878
|
+
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
7879
|
+
};
|
|
7880
|
+
export declare type JiraIssueHierarchyConfigurationQuery = {
|
|
7881
|
+
__typename?: 'JiraIssueHierarchyConfigurationQuery';
|
|
7882
|
+
data?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
7883
|
+
success: Scalars['Boolean'];
|
|
7884
|
+
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
7885
|
+
};
|
|
7886
|
+
export declare type JiraIssueHierarchyLimits = {
|
|
7887
|
+
__typename?: 'JiraIssueHierarchyLimits';
|
|
7888
|
+
maxLevels: Scalars['Int'];
|
|
7889
|
+
nameLength: Scalars['Int'];
|
|
7890
|
+
};
|
|
7623
7891
|
export declare type JiraIssueItemContainer = {
|
|
7624
7892
|
__typename?: 'JiraIssueItemContainer';
|
|
7625
7893
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -8664,22 +8932,14 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8664
8932
|
};
|
|
8665
8933
|
export declare type JiraMutation = {
|
|
8666
8934
|
__typename?: 'JiraMutation';
|
|
8667
|
-
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8668
|
-
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8669
|
-
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8670
8935
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8671
8936
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8672
8937
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8938
|
+
updateIssueHierarchyConfig: JiraIssueHierarchyConfigurationMutationResult;
|
|
8673
8939
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8674
8940
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
id: Scalars['ID'];
|
|
8678
|
-
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8679
|
-
};
|
|
8680
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8681
|
-
id: Scalars['ID'];
|
|
8682
|
-
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8941
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8942
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8683
8943
|
};
|
|
8684
8944
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8685
8945
|
cloudId: Scalars['ID'];
|
|
@@ -8691,12 +8951,20 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8691
8951
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8692
8952
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8693
8953
|
};
|
|
8954
|
+
export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
8955
|
+
cloudId: Scalars['ID'];
|
|
8956
|
+
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
8957
|
+
};
|
|
8694
8958
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8695
8959
|
input: JiraAddIssuesToFixVersionInput;
|
|
8696
8960
|
};
|
|
8697
8961
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8698
8962
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8699
8963
|
};
|
|
8964
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8965
|
+
id: Scalars['ID'];
|
|
8966
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8967
|
+
};
|
|
8700
8968
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8701
8969
|
__typename?: 'JiraNumberField';
|
|
8702
8970
|
id: Scalars['ID'];
|
|
@@ -9238,6 +9506,14 @@ export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload
|
|
|
9238
9506
|
errors?: Maybe<Array<MutationError>>;
|
|
9239
9507
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9240
9508
|
};
|
|
9509
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
9510
|
+
id: Scalars['ID'];
|
|
9511
|
+
};
|
|
9512
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
9513
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeletePayload';
|
|
9514
|
+
success: Scalars['Boolean'];
|
|
9515
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9516
|
+
};
|
|
9241
9517
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9242
9518
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9243
9519
|
id: Scalars['ID'];
|
|
@@ -9430,15 +9706,12 @@ export declare type JiraQuery = {
|
|
|
9430
9706
|
jiraProject?: Maybe<JiraProject>;
|
|
9431
9707
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
9432
9708
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
9433
|
-
|
|
9709
|
+
filter?: Maybe<JiraFilter>;
|
|
9710
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9711
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9712
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9434
9713
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
9435
9714
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
9436
|
-
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9437
|
-
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9438
|
-
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9439
|
-
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9440
|
-
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9441
|
-
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9442
9715
|
issueByKey?: Maybe<JiraIssue>;
|
|
9443
9716
|
issueById?: Maybe<JiraIssue>;
|
|
9444
9717
|
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -9446,11 +9719,6 @@ export declare type JiraQuery = {
|
|
|
9446
9719
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9447
9720
|
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9448
9721
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9449
|
-
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9450
|
-
filter?: Maybe<JiraFilter>;
|
|
9451
|
-
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9452
|
-
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9453
|
-
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9454
9722
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9455
9723
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9456
9724
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9458,9 +9726,19 @@ export declare type JiraQuery = {
|
|
|
9458
9726
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
9459
9727
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
9460
9728
|
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
9729
|
+
issueHierarchyConfig: JiraIssueHierarchyConfigurationQuery;
|
|
9730
|
+
issueHierarchyLimits: JiraIssueHierarchyLimits;
|
|
9461
9731
|
version?: Maybe<JiraVersionResult>;
|
|
9462
9732
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9463
9733
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
9734
|
+
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9735
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9736
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9737
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9738
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9739
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9740
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9741
|
+
devOps?: Maybe<JiraDevOpsQuery>;
|
|
9464
9742
|
};
|
|
9465
9743
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9466
9744
|
id: Scalars['ID'];
|
|
@@ -9480,39 +9758,34 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
9480
9758
|
after?: Maybe<Scalars['String']>;
|
|
9481
9759
|
before?: Maybe<Scalars['String']>;
|
|
9482
9760
|
};
|
|
9483
|
-
export declare type
|
|
9484
|
-
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9485
|
-
};
|
|
9486
|
-
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9487
|
-
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9488
|
-
};
|
|
9489
|
-
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9490
|
-
cloudId: Scalars['ID'];
|
|
9491
|
-
jql: Scalars['String'];
|
|
9492
|
-
};
|
|
9493
|
-
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9494
|
-
id: Scalars['ID'];
|
|
9495
|
-
};
|
|
9496
|
-
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9497
|
-
ids: Array<Scalars['ID']>;
|
|
9498
|
-
};
|
|
9499
|
-
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9761
|
+
export declare type JiraQueryFilterArgs = {
|
|
9500
9762
|
id: Scalars['ID'];
|
|
9501
9763
|
};
|
|
9502
|
-
export declare type
|
|
9764
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9503
9765
|
cloudId: Scalars['ID'];
|
|
9504
|
-
|
|
9505
|
-
|
|
9766
|
+
first?: Maybe<Scalars['Int']>;
|
|
9767
|
+
after?: Maybe<Scalars['String']>;
|
|
9768
|
+
last?: Maybe<Scalars['Int']>;
|
|
9769
|
+
before?: Maybe<Scalars['String']>;
|
|
9506
9770
|
};
|
|
9507
|
-
export declare type
|
|
9771
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9508
9772
|
cloudId: Scalars['ID'];
|
|
9509
|
-
|
|
9510
|
-
options?: Maybe<JiraIssueSearchOptions>;
|
|
9773
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9511
9774
|
first?: Maybe<Scalars['Int']>;
|
|
9512
9775
|
after?: Maybe<Scalars['String']>;
|
|
9513
9776
|
last?: Maybe<Scalars['Int']>;
|
|
9514
9777
|
before?: Maybe<Scalars['String']>;
|
|
9515
9778
|
};
|
|
9779
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9780
|
+
cloudId: Scalars['ID'];
|
|
9781
|
+
keys: Array<Scalars['String']>;
|
|
9782
|
+
};
|
|
9783
|
+
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
9784
|
+
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9785
|
+
};
|
|
9786
|
+
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9787
|
+
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9788
|
+
};
|
|
9516
9789
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
9517
9790
|
key: Scalars['String'];
|
|
9518
9791
|
cloudId: Scalars['ID'];
|
|
@@ -9532,31 +9805,6 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
9532
9805
|
export declare type JiraQueryCommentsByIdArgs = {
|
|
9533
9806
|
input: Array<JiraCommentByIdInput>;
|
|
9534
9807
|
};
|
|
9535
|
-
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9536
|
-
cloudId: Scalars['ID'];
|
|
9537
|
-
keys: Array<Scalars['String']>;
|
|
9538
|
-
};
|
|
9539
|
-
export declare type JiraQueryFilterArgs = {
|
|
9540
|
-
id: Scalars['ID'];
|
|
9541
|
-
};
|
|
9542
|
-
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9543
|
-
cloudId: Scalars['ID'];
|
|
9544
|
-
first?: Maybe<Scalars['Int']>;
|
|
9545
|
-
after?: Maybe<Scalars['String']>;
|
|
9546
|
-
last?: Maybe<Scalars['Int']>;
|
|
9547
|
-
before?: Maybe<Scalars['String']>;
|
|
9548
|
-
};
|
|
9549
|
-
export declare type JiraQuerySystemFiltersArgs = {
|
|
9550
|
-
cloudId: Scalars['ID'];
|
|
9551
|
-
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9552
|
-
first?: Maybe<Scalars['Int']>;
|
|
9553
|
-
after?: Maybe<Scalars['String']>;
|
|
9554
|
-
last?: Maybe<Scalars['Int']>;
|
|
9555
|
-
before?: Maybe<Scalars['String']>;
|
|
9556
|
-
};
|
|
9557
|
-
export declare type JiraQueryJqlBuilderArgs = {
|
|
9558
|
-
cloudId: Scalars['ID'];
|
|
9559
|
-
};
|
|
9560
9808
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9561
9809
|
cloudId: Scalars['ID'];
|
|
9562
9810
|
};
|
|
@@ -9600,6 +9848,12 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
9600
9848
|
schemeId: Scalars['ID'];
|
|
9601
9849
|
permissionKey: Scalars['String'];
|
|
9602
9850
|
};
|
|
9851
|
+
export declare type JiraQueryIssueHierarchyConfigArgs = {
|
|
9852
|
+
cloudId: Scalars['ID'];
|
|
9853
|
+
};
|
|
9854
|
+
export declare type JiraQueryIssueHierarchyLimitsArgs = {
|
|
9855
|
+
cloudId: Scalars['ID'];
|
|
9856
|
+
};
|
|
9603
9857
|
export declare type JiraQueryVersionArgs = {
|
|
9604
9858
|
id: Scalars['ID'];
|
|
9605
9859
|
};
|
|
@@ -9614,6 +9868,36 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
9614
9868
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
9615
9869
|
versionId: Scalars['ID'];
|
|
9616
9870
|
};
|
|
9871
|
+
export declare type JiraQueryJqlBuilderArgs = {
|
|
9872
|
+
cloudId: Scalars['ID'];
|
|
9873
|
+
};
|
|
9874
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9875
|
+
cloudId: Scalars['ID'];
|
|
9876
|
+
jql: Scalars['String'];
|
|
9877
|
+
};
|
|
9878
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9879
|
+
id: Scalars['ID'];
|
|
9880
|
+
};
|
|
9881
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9882
|
+
ids: Array<Scalars['ID']>;
|
|
9883
|
+
};
|
|
9884
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9885
|
+
id: Scalars['ID'];
|
|
9886
|
+
};
|
|
9887
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
9888
|
+
cloudId: Scalars['ID'];
|
|
9889
|
+
namespace?: Maybe<Scalars['String']>;
|
|
9890
|
+
viewId?: Maybe<Scalars['String']>;
|
|
9891
|
+
};
|
|
9892
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9893
|
+
cloudId: Scalars['ID'];
|
|
9894
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
9895
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9896
|
+
first?: Maybe<Scalars['Int']>;
|
|
9897
|
+
after?: Maybe<Scalars['String']>;
|
|
9898
|
+
last?: Maybe<Scalars['Int']>;
|
|
9899
|
+
before?: Maybe<Scalars['String']>;
|
|
9900
|
+
};
|
|
9617
9901
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9618
9902
|
__typename?: 'JiraRadioSelectField';
|
|
9619
9903
|
id: Scalars['ID'];
|
|
@@ -9765,7 +10049,7 @@ export declare type JiraResolution = Node & {
|
|
|
9765
10049
|
export declare type JiraResolutionConnection = {
|
|
9766
10050
|
__typename?: 'JiraResolutionConnection';
|
|
9767
10051
|
totalCount?: Maybe<Scalars['Int']>;
|
|
9768
|
-
pageInfo
|
|
10052
|
+
pageInfo: PageInfo;
|
|
9769
10053
|
edges?: Maybe<Array<Maybe<JiraResolutionEdge>>>;
|
|
9770
10054
|
};
|
|
9771
10055
|
export declare type JiraResolutionEdge = {
|
|
@@ -10481,6 +10765,8 @@ export declare type JiraSprint = Node & {
|
|
|
10481
10765
|
boardName?: Maybe<Scalars['String']>;
|
|
10482
10766
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10483
10767
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
10768
|
+
completionDate?: Maybe<Scalars['DateTime']>;
|
|
10769
|
+
goal?: Maybe<Scalars['String']>;
|
|
10484
10770
|
};
|
|
10485
10771
|
export declare type JiraSprintConnection = {
|
|
10486
10772
|
__typename?: 'JiraSprintConnection';
|
|
@@ -11382,15 +11668,8 @@ export declare type Mutation = {
|
|
|
11382
11668
|
__typename?: 'Mutation';
|
|
11383
11669
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11384
11670
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11671
|
+
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11385
11672
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11386
|
-
createReleaseNote: ContentPlatformReleaseNote;
|
|
11387
|
-
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11388
|
-
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11389
|
-
createApp?: Maybe<CreateAppResponse>;
|
|
11390
|
-
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11391
|
-
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11392
|
-
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11393
|
-
ecosystem?: Maybe<EcosystemMutation>;
|
|
11394
11673
|
jsw?: Maybe<JswMutation>;
|
|
11395
11674
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11396
11675
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -11418,6 +11697,14 @@ export declare type Mutation = {
|
|
|
11418
11697
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11419
11698
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11420
11699
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
11700
|
+
createApp?: Maybe<CreateAppResponse>;
|
|
11701
|
+
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11702
|
+
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11703
|
+
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11704
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
11705
|
+
createReleaseNote: ContentPlatformReleaseNote;
|
|
11706
|
+
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11707
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11421
11708
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11422
11709
|
devOps?: Maybe<DevOpsMutation>;
|
|
11423
11710
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -11437,6 +11724,7 @@ export declare type Mutation = {
|
|
|
11437
11724
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11438
11725
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11439
11726
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
11727
|
+
jira?: Maybe<JiraMutation>;
|
|
11440
11728
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
11441
11729
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
11442
11730
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -11445,11 +11733,10 @@ export declare type Mutation = {
|
|
|
11445
11733
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
11446
11734
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
11447
11735
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
11448
|
-
jira?: Maybe<JiraMutation>;
|
|
11449
11736
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11450
11737
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11451
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11452
11738
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11739
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11453
11740
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11454
11741
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
11455
11742
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
@@ -11502,20 +11789,20 @@ export declare type Mutation = {
|
|
|
11502
11789
|
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
11503
11790
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
11504
11791
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11792
|
+
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11793
|
+
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11505
11794
|
installApp?: Maybe<AppInstallationResponse>;
|
|
11506
11795
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
11507
11796
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
11508
11797
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
11509
11798
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
11510
|
-
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11511
|
-
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11512
|
-
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11513
11799
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
11514
11800
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
11515
11801
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
11516
11802
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11517
11803
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11518
11804
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11805
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11519
11806
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11520
11807
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11521
11808
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
@@ -11523,51 +11810,8 @@ export declare type Mutation = {
|
|
|
11523
11810
|
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11524
11811
|
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11525
11812
|
};
|
|
11526
|
-
export declare type
|
|
11527
|
-
|
|
11528
|
-
title?: Maybe<Scalars['String']>;
|
|
11529
|
-
changeType?: Maybe<Scalars['String']>;
|
|
11530
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11531
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11532
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11533
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11534
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11535
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
11536
|
-
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11537
|
-
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11538
|
-
description: Scalars['JSON'];
|
|
11539
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
11540
|
-
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11541
|
-
};
|
|
11542
|
-
export declare type MutationPublishReleaseNoteArgs = {
|
|
11543
|
-
id: Scalars['String'];
|
|
11544
|
-
};
|
|
11545
|
-
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11546
|
-
id: Scalars['String'];
|
|
11547
|
-
changeStatus?: Maybe<Scalars['String']>;
|
|
11548
|
-
title?: Maybe<Scalars['String']>;
|
|
11549
|
-
changeType?: Maybe<Scalars['String']>;
|
|
11550
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11551
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11552
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11553
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11554
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11555
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
11556
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
11557
|
-
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11558
|
-
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11559
|
-
};
|
|
11560
|
-
export declare type MutationCreateAppArgs = {
|
|
11561
|
-
input: CreateAppInput;
|
|
11562
|
-
};
|
|
11563
|
-
export declare type MutationUpdateAppDetailsArgs = {
|
|
11564
|
-
input: UpdateAppDetailsInput;
|
|
11565
|
-
};
|
|
11566
|
-
export declare type MutationDeleteAppArgs = {
|
|
11567
|
-
input: DeleteAppInput;
|
|
11568
|
-
};
|
|
11569
|
-
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11570
|
-
input: UpdateAtlassianOAuthClientInput;
|
|
11813
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11814
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
11571
11815
|
};
|
|
11572
11816
|
export declare type MutationCreateColumnArgs = {
|
|
11573
11817
|
input?: Maybe<CreateColumnInput>;
|
|
@@ -11647,6 +11891,52 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
11647
11891
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11648
11892
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11649
11893
|
};
|
|
11894
|
+
export declare type MutationCreateAppArgs = {
|
|
11895
|
+
input: CreateAppInput;
|
|
11896
|
+
};
|
|
11897
|
+
export declare type MutationUpdateAppDetailsArgs = {
|
|
11898
|
+
input: UpdateAppDetailsInput;
|
|
11899
|
+
};
|
|
11900
|
+
export declare type MutationDeleteAppArgs = {
|
|
11901
|
+
input: DeleteAppInput;
|
|
11902
|
+
};
|
|
11903
|
+
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11904
|
+
input: UpdateAtlassianOAuthClientInput;
|
|
11905
|
+
};
|
|
11906
|
+
export declare type MutationCreateReleaseNoteArgs = {
|
|
11907
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11908
|
+
title?: Maybe<Scalars['String']>;
|
|
11909
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11910
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11911
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11912
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11913
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11914
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11915
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11916
|
+
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11917
|
+
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11918
|
+
description: Scalars['JSON'];
|
|
11919
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11920
|
+
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11921
|
+
};
|
|
11922
|
+
export declare type MutationPublishReleaseNoteArgs = {
|
|
11923
|
+
id: Scalars['String'];
|
|
11924
|
+
};
|
|
11925
|
+
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11926
|
+
id: Scalars['String'];
|
|
11927
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11928
|
+
title?: Maybe<Scalars['String']>;
|
|
11929
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11930
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11931
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11932
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11933
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11934
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11935
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11936
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11937
|
+
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11938
|
+
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11939
|
+
};
|
|
11650
11940
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
11651
11941
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
11652
11942
|
};
|
|
@@ -11893,6 +12183,12 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
11893
12183
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
11894
12184
|
id: Scalars['ID'];
|
|
11895
12185
|
};
|
|
12186
|
+
export declare type MutationWatchMarketplaceAppArgs = {
|
|
12187
|
+
id: Scalars['ID'];
|
|
12188
|
+
};
|
|
12189
|
+
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
12190
|
+
id: Scalars['ID'];
|
|
12191
|
+
};
|
|
11896
12192
|
export declare type MutationInstallAppArgs = {
|
|
11897
12193
|
input: AppInstallationInput;
|
|
11898
12194
|
};
|
|
@@ -11908,12 +12204,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
11908
12204
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
11909
12205
|
input: AppUnsubscribeInput;
|
|
11910
12206
|
};
|
|
11911
|
-
export declare type MutationWatchMarketplaceAppArgs = {
|
|
11912
|
-
id: Scalars['ID'];
|
|
11913
|
-
};
|
|
11914
|
-
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
11915
|
-
id: Scalars['ID'];
|
|
11916
|
-
};
|
|
11917
12207
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
11918
12208
|
input: CreateAppDeploymentUrlInput;
|
|
11919
12209
|
};
|
|
@@ -13050,6 +13340,7 @@ export declare type PolarisValueRuleInput = {
|
|
|
13050
13340
|
export declare type PolarisView = {
|
|
13051
13341
|
__typename?: 'PolarisView';
|
|
13052
13342
|
id: Scalars['ID'];
|
|
13343
|
+
xid?: Maybe<Scalars['Int']>;
|
|
13053
13344
|
name: Scalars['String'];
|
|
13054
13345
|
emoji?: Maybe<Scalars['String']>;
|
|
13055
13346
|
description?: Maybe<Scalars['JSON']>;
|
|
@@ -13173,35 +13464,36 @@ export declare type ProjectAvatars = {
|
|
|
13173
13464
|
};
|
|
13174
13465
|
export declare type Query = {
|
|
13175
13466
|
__typename?: 'Query';
|
|
13176
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13177
13467
|
echo?: Maybe<Scalars['String']>;
|
|
13178
13468
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
13179
13469
|
node?: Maybe<Node>;
|
|
13470
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13471
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13180
13472
|
activities?: Maybe<Activities>;
|
|
13181
13473
|
activity?: Maybe<Activity>;
|
|
13182
|
-
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13183
13474
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13184
|
-
bitbucket?: Maybe<BitbucketQuery>;
|
|
13185
13475
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13476
|
+
bitbucket?: Maybe<BitbucketQuery>;
|
|
13186
13477
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
13187
|
-
|
|
13188
|
-
releaseNote: ContentPlatformReleaseNote;
|
|
13189
|
-
practicePages: ContentPlatformPracticePagesConnection;
|
|
13190
|
-
practicePage: ContentPlatformPracticePage;
|
|
13191
|
-
apps?: Maybe<AppConnection>;
|
|
13192
|
-
app?: Maybe<App>;
|
|
13193
|
-
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13478
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
13194
13479
|
jsw?: Maybe<JswQuery>;
|
|
13195
13480
|
boardScope?: Maybe<BoardScope>;
|
|
13196
13481
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13197
13482
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13483
|
+
apps?: Maybe<AppConnection>;
|
|
13484
|
+
app?: Maybe<App>;
|
|
13485
|
+
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13486
|
+
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13487
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13488
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
13489
|
+
practicePage: ContentPlatformPracticePage;
|
|
13198
13490
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13199
13491
|
search?: Maybe<SearchQueryApi>;
|
|
13200
|
-
|
|
13492
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
13201
13493
|
me: AuthenticationContext;
|
|
13202
13494
|
user?: Maybe<User>;
|
|
13203
13495
|
users?: Maybe<Array<User>>;
|
|
13204
|
-
|
|
13496
|
+
devOps?: Maybe<DevOps>;
|
|
13205
13497
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13206
13498
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13207
13499
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
@@ -13218,27 +13510,27 @@ export declare type Query = {
|
|
|
13218
13510
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13219
13511
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13220
13512
|
codeInJira?: Maybe<CodeInJira>;
|
|
13221
|
-
|
|
13513
|
+
jira?: Maybe<JiraQuery>;
|
|
13222
13514
|
devOpsService?: Maybe<DevOpsService>;
|
|
13223
13515
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13224
13516
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
13225
13517
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
13226
13518
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
13227
13519
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
13228
|
-
|
|
13520
|
+
avocado?: Maybe<Avocado>;
|
|
13229
13521
|
appLogs?: Maybe<AppLogConnection>;
|
|
13230
13522
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
13231
13523
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
13232
13524
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
13233
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13234
13525
|
team?: Maybe<TeamQuery>;
|
|
13526
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13235
13527
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
13236
13528
|
testing?: Maybe<Testing>;
|
|
13237
13529
|
movie?: Maybe<TestingMovie>;
|
|
13238
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13239
13530
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
13240
13531
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
13241
13532
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13533
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13242
13534
|
polarisProject?: Maybe<PolarisProject>;
|
|
13243
13535
|
polarisView?: Maybe<PolarisView>;
|
|
13244
13536
|
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
@@ -13255,20 +13547,20 @@ export declare type Query = {
|
|
|
13255
13547
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13256
13548
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13257
13549
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13258
|
-
dvcs?: Maybe<DvcsQuery>;
|
|
13259
13550
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13551
|
+
dvcs?: Maybe<DvcsQuery>;
|
|
13260
13552
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
13261
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13262
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
13263
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
13264
13553
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
13265
13554
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
13266
13555
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
13267
13556
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
13268
13557
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
13269
13558
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13270
|
-
|
|
13559
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
13560
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13561
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
13271
13562
|
appDeployment?: Maybe<AppDeployment>;
|
|
13563
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13272
13564
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13273
13565
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13274
13566
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
@@ -13281,23 +13573,14 @@ export declare type QueryNodeArgs = {
|
|
|
13281
13573
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13282
13574
|
id: Scalars['ID'];
|
|
13283
13575
|
};
|
|
13284
|
-
export declare type
|
|
13285
|
-
|
|
13286
|
-
first?: Maybe<Scalars['Int']>;
|
|
13287
|
-
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13288
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13289
|
-
orderBy?: Maybe<Scalars['String']>;
|
|
13290
|
-
};
|
|
13291
|
-
export declare type QueryReleaseNoteArgs = {
|
|
13292
|
-
id: Scalars['String'];
|
|
13293
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13576
|
+
export declare type QueryBoardScopeArgs = {
|
|
13577
|
+
boardId: Scalars['ID'];
|
|
13294
13578
|
};
|
|
13295
|
-
export declare type
|
|
13296
|
-
|
|
13297
|
-
first?: Maybe<Scalars['Int']>;
|
|
13579
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
13580
|
+
issueId: Scalars['ID'];
|
|
13298
13581
|
};
|
|
13299
|
-
export declare type
|
|
13300
|
-
|
|
13582
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13583
|
+
projectAri: Scalars['ID'];
|
|
13301
13584
|
};
|
|
13302
13585
|
export declare type QueryAppsArgs = {
|
|
13303
13586
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13312,14 +13595,23 @@ export declare type QueryAppArgs = {
|
|
|
13312
13595
|
export declare type QueryAppHostServicesArgs = {
|
|
13313
13596
|
filter?: Maybe<AppServicesFilter>;
|
|
13314
13597
|
};
|
|
13315
|
-
export declare type
|
|
13316
|
-
|
|
13598
|
+
export declare type QueryReleaseNotesArgs = {
|
|
13599
|
+
after?: Maybe<Scalars['String']>;
|
|
13600
|
+
first?: Maybe<Scalars['Int']>;
|
|
13601
|
+
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13602
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13603
|
+
orderBy?: Maybe<Scalars['String']>;
|
|
13317
13604
|
};
|
|
13318
|
-
export declare type
|
|
13319
|
-
|
|
13605
|
+
export declare type QueryReleaseNoteArgs = {
|
|
13606
|
+
id: Scalars['String'];
|
|
13607
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13320
13608
|
};
|
|
13321
|
-
export declare type
|
|
13322
|
-
|
|
13609
|
+
export declare type QueryPracticePagesArgs = {
|
|
13610
|
+
after?: Maybe<Scalars['String']>;
|
|
13611
|
+
first?: Maybe<Scalars['Int']>;
|
|
13612
|
+
};
|
|
13613
|
+
export declare type QueryPracticePageArgs = {
|
|
13614
|
+
id: Scalars['String'];
|
|
13323
13615
|
};
|
|
13324
13616
|
export declare type QueryUserArgs = {
|
|
13325
13617
|
accountId: Scalars['ID'];
|
|
@@ -13533,9 +13825,6 @@ export declare type QueryWebTriggerUrlsByAppContextArgs = {
|
|
|
13533
13825
|
envId: Scalars['ID'];
|
|
13534
13826
|
contextId: Scalars['ID'];
|
|
13535
13827
|
};
|
|
13536
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
13537
|
-
id: Scalars['ID'];
|
|
13538
|
-
};
|
|
13539
13828
|
export declare type QueryMarketplacePartnerArgs = {
|
|
13540
13829
|
id: Scalars['ID'];
|
|
13541
13830
|
};
|
|
@@ -13553,6 +13842,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
13553
13842
|
hostingType: AtlassianProductHostingType;
|
|
13554
13843
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
13555
13844
|
};
|
|
13845
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
13846
|
+
id: Scalars['ID'];
|
|
13847
|
+
};
|
|
13556
13848
|
export declare type QueryAppDeploymentArgs = {
|
|
13557
13849
|
appId: Scalars['ID'];
|
|
13558
13850
|
environmentKey: Scalars['String'];
|
|
@@ -14257,7 +14549,8 @@ export declare enum Scope {
|
|
|
14257
14549
|
AdminContainer = "ADMIN_CONTAINER",
|
|
14258
14550
|
ReadContainer = "READ_CONTAINER",
|
|
14259
14551
|
WriteContainer = "WRITE_CONTAINER",
|
|
14260
|
-
MigrateConfluence = "MIGRATE_CONFLUENCE"
|
|
14552
|
+
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
14553
|
+
ReadAvocadoEntity = "READ_AVOCADO_ENTITY"
|
|
14261
14554
|
}
|
|
14262
14555
|
export declare type ScopeSprintIssue = {
|
|
14263
14556
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -14483,12 +14776,18 @@ export declare type ShepherdAlert = {
|
|
|
14483
14776
|
assignee?: Maybe<ShepherdUser>;
|
|
14484
14777
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14485
14778
|
createdOn: Scalars['DateTime'];
|
|
14779
|
+
description?: Maybe<Array<Maybe<ShepherdDescriptionSection>>>;
|
|
14486
14780
|
id: Scalars['ID'];
|
|
14487
14781
|
orgId: Scalars['ID'];
|
|
14488
14782
|
status: ShepherdAlertStatus;
|
|
14489
14783
|
title: Scalars['String'];
|
|
14490
14784
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14491
14785
|
};
|
|
14786
|
+
export declare enum ShepherdAlertDescriptionType {
|
|
14787
|
+
AlertInfo = "ALERT_INFO",
|
|
14788
|
+
Investigate = "INVESTIGATE",
|
|
14789
|
+
Remediate = "REMEDIATE"
|
|
14790
|
+
}
|
|
14492
14791
|
export declare type ShepherdAlertEdge = {
|
|
14493
14792
|
__typename?: 'ShepherdAlertEdge';
|
|
14494
14793
|
node?: Maybe<ShepherdAlert>;
|
|
@@ -14560,6 +14859,11 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
14560
14859
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14561
14860
|
type?: Maybe<ShepherdWebhookType>;
|
|
14562
14861
|
};
|
|
14862
|
+
export declare type ShepherdDescriptionSection = {
|
|
14863
|
+
__typename?: 'ShepherdDescriptionSection';
|
|
14864
|
+
text?: Maybe<Scalars['JSON']>;
|
|
14865
|
+
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
14866
|
+
};
|
|
14563
14867
|
export declare type ShepherdEmailConnection = {
|
|
14564
14868
|
__typename?: 'ShepherdEmailConnection';
|
|
14565
14869
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -14996,6 +15300,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
14996
15300
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14997
15301
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14998
15302
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
15303
|
+
updateSupportRequest?: Maybe<SupportRequest>;
|
|
14999
15304
|
};
|
|
15000
15305
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
15001
15306
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -15015,6 +15320,9 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
|
|
|
15015
15320
|
sen?: Maybe<Scalars['String']>;
|
|
15016
15321
|
operation: SupportRequestNamedContactOperation;
|
|
15017
15322
|
};
|
|
15323
|
+
export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
|
|
15324
|
+
input: SupportRequestUpdateInput;
|
|
15325
|
+
};
|
|
15018
15326
|
export declare type SupportRequestCatalogQueryApi = {
|
|
15019
15327
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
15020
15328
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -15054,7 +15362,7 @@ export declare type SupportRequestField = {
|
|
|
15054
15362
|
__typename?: 'SupportRequestField';
|
|
15055
15363
|
id: Scalars['String'];
|
|
15056
15364
|
label: Scalars['String'];
|
|
15057
|
-
value
|
|
15365
|
+
value?: Maybe<SupportRequestFieldValue>;
|
|
15058
15366
|
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15059
15367
|
editable?: Maybe<Scalars['Boolean']>;
|
|
15060
15368
|
};
|
|
@@ -15066,7 +15374,7 @@ export declare enum SupportRequestFieldDataType {
|
|
|
15066
15374
|
}
|
|
15067
15375
|
export declare type SupportRequestFieldValue = {
|
|
15068
15376
|
__typename?: 'SupportRequestFieldValue';
|
|
15069
|
-
value
|
|
15377
|
+
value?: Maybe<Scalars['String']>;
|
|
15070
15378
|
};
|
|
15071
15379
|
export declare type SupportRequestHierarchyRequest = {
|
|
15072
15380
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
@@ -15195,6 +15503,14 @@ export declare type SupportRequestTransitions = {
|
|
|
15195
15503
|
lastPage: Scalars['Boolean'];
|
|
15196
15504
|
values: Array<SupportRequestTransition>;
|
|
15197
15505
|
};
|
|
15506
|
+
export declare type SupportRequestUpdateFieldInput = {
|
|
15507
|
+
id: Scalars['String'];
|
|
15508
|
+
value: Scalars['String'];
|
|
15509
|
+
};
|
|
15510
|
+
export declare type SupportRequestUpdateInput = {
|
|
15511
|
+
requestKey: Scalars['ID'];
|
|
15512
|
+
experienceFields?: Maybe<Array<SupportRequestUpdateFieldInput>>;
|
|
15513
|
+
};
|
|
15198
15514
|
export declare type SupportRequestUser = {
|
|
15199
15515
|
__typename?: 'SupportRequestUser';
|
|
15200
15516
|
user?: Maybe<User>;
|
|
@@ -15747,6 +16063,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
15747
16063
|
description?: Maybe<Scalars['String']>;
|
|
15748
16064
|
ownerId?: Maybe<Scalars['ID']>;
|
|
15749
16065
|
fields?: Maybe<Array<UpdateCompassFieldInput>>;
|
|
16066
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
15750
16067
|
};
|
|
15751
16068
|
export declare type UpdateCompassComponentLinkInput = {
|
|
15752
16069
|
componentId: Scalars['ID'];
|
|
@@ -16181,7 +16498,7 @@ export declare type UserGrant = {
|
|
|
16181
16498
|
oauthClientId: Scalars['ID'];
|
|
16182
16499
|
appId?: Maybe<Scalars['ID']>;
|
|
16183
16500
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
16184
|
-
scopes
|
|
16501
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
16185
16502
|
};
|
|
16186
16503
|
export declare type UserGrantAppDetails = {
|
|
16187
16504
|
__typename?: 'UserGrantAppDetails';
|