@forge/cli-shared 2.4.0-next.6 → 2.4.0
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 +37 -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 +499 -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';
|
|
@@ -1460,7 +1467,7 @@ export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
1460
1467
|
cloudId: Scalars['ID'];
|
|
1461
1468
|
userId: Scalars['ID'];
|
|
1462
1469
|
oauthClientId: Scalars['ID'];
|
|
1463
|
-
scopes
|
|
1470
|
+
scopes: Array<Scalars['String']>;
|
|
1464
1471
|
};
|
|
1465
1472
|
export declare type ChildCardsMetadata = {
|
|
1466
1473
|
__typename?: 'ChildCardsMetadata';
|
|
@@ -1678,6 +1685,9 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1678
1685
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1679
1686
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1680
1687
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1688
|
+
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1689
|
+
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
1690
|
+
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
1681
1691
|
};
|
|
1682
1692
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1683
1693
|
cloudId: Scalars['ID'];
|
|
@@ -1827,6 +1837,15 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
1827
1837
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1828
1838
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1829
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
|
+
};
|
|
1830
1849
|
export declare type CompassCatalogQueryApi = {
|
|
1831
1850
|
__typename?: 'CompassCatalogQueryApi';
|
|
1832
1851
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1841,6 +1860,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1841
1860
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1842
1861
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1843
1862
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1863
|
+
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
1844
1864
|
};
|
|
1845
1865
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1846
1866
|
id: Scalars['ID'];
|
|
@@ -1888,6 +1908,9 @@ export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
1888
1908
|
eventType: CompassEventType;
|
|
1889
1909
|
externalEventSourceId: Scalars['ID'];
|
|
1890
1910
|
};
|
|
1911
|
+
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
1912
|
+
query: CompassCustomFieldDefinitionsQuery;
|
|
1913
|
+
};
|
|
1891
1914
|
export declare type CompassChangeMetadata = {
|
|
1892
1915
|
__typename?: 'CompassChangeMetadata';
|
|
1893
1916
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1917,6 +1940,7 @@ export declare type CompassComponent = Node & {
|
|
|
1917
1940
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1918
1941
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1919
1942
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1943
|
+
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1920
1944
|
};
|
|
1921
1945
|
export declare type CompassComponentRelationshipsArgs = {
|
|
1922
1946
|
query?: Maybe<CompassRelationshipQuery>;
|
|
@@ -1993,6 +2017,12 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1993
2017
|
externalEventSourceId: Scalars['ID'];
|
|
1994
2018
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1995
2019
|
};
|
|
2020
|
+
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2021
|
+
cloudId: Scalars['ID'];
|
|
2022
|
+
name: Scalars['String'];
|
|
2023
|
+
description?: Maybe<Scalars['String']>;
|
|
2024
|
+
componentTypes: Array<CompassComponentType>;
|
|
2025
|
+
};
|
|
1996
2026
|
export declare type CompassCreateCustomEventInput = {
|
|
1997
2027
|
displayName: Scalars['String'];
|
|
1998
2028
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2002,6 +2032,29 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
2002
2032
|
externalEventSourceId: Scalars['ID'];
|
|
2003
2033
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
2004
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
|
+
};
|
|
2005
2058
|
export declare type CompassCreateDeploymentEventInput = {
|
|
2006
2059
|
updateSequenceNumber: Scalars['Long'];
|
|
2007
2060
|
displayName: Scalars['String'];
|
|
@@ -2111,6 +2164,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
2111
2164
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
2112
2165
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
2113
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
|
+
};
|
|
2114
2183
|
export declare type CompassCustomEvent = CompassEvent & {
|
|
2115
2184
|
__typename?: 'CompassCustomEvent';
|
|
2116
2185
|
eventType: CompassEventType;
|
|
@@ -2135,6 +2204,68 @@ export declare type CompassCustomEventPropertiesInput = {
|
|
|
2135
2204
|
id: Scalars['ID'];
|
|
2136
2205
|
icon: CompassCustomEventIcon;
|
|
2137
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
|
+
};
|
|
2138
2269
|
export declare type CompassDeleteAnnouncementInput = {
|
|
2139
2270
|
cloudId: Scalars['ID'];
|
|
2140
2271
|
id: Scalars['ID'];
|
|
@@ -2145,6 +2276,15 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2145
2276
|
success: Scalars['Boolean'];
|
|
2146
2277
|
errors?: Maybe<Array<MutationError>>;
|
|
2147
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
|
+
};
|
|
2148
2288
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
2149
2289
|
id: Scalars['ID'];
|
|
2150
2290
|
};
|
|
@@ -2825,6 +2965,35 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
2825
2965
|
success: Scalars['Boolean'];
|
|
2826
2966
|
errors?: Maybe<Array<MutationError>>;
|
|
2827
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
|
+
};
|
|
2828
2997
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
2829
2998
|
id: Scalars['ID'];
|
|
2830
2999
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3807,6 +3976,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
3807
3976
|
type: CompassComponentType;
|
|
3808
3977
|
ownerId?: Maybe<Scalars['ID']>;
|
|
3809
3978
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
3979
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
3810
3980
|
};
|
|
3811
3981
|
export declare type CreateCompassComponentLinkInput = {
|
|
3812
3982
|
componentId: Scalars['ID'];
|
|
@@ -5691,11 +5861,12 @@ export declare enum GrantCheckProduct {
|
|
|
5691
5861
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
5692
5862
|
Confluence = "CONFLUENCE",
|
|
5693
5863
|
Compass = "COMPASS",
|
|
5864
|
+
Avocado = "AVOCADO",
|
|
5694
5865
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5695
5866
|
}
|
|
5696
|
-
export declare type HelpCenter = {
|
|
5867
|
+
export declare type HelpCenter = Node & {
|
|
5697
5868
|
__typename?: 'HelpCenter';
|
|
5698
|
-
|
|
5869
|
+
id: Scalars['ID'];
|
|
5699
5870
|
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5700
5871
|
};
|
|
5701
5872
|
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
@@ -5821,6 +5992,54 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
5821
5992
|
success: Scalars['Boolean'];
|
|
5822
5993
|
errors?: Maybe<Array<MutationError>>;
|
|
5823
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;
|
|
5824
6043
|
export declare type HostedResourcePreSignedUrl = {
|
|
5825
6044
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5826
6045
|
uploadUrl: Scalars['String'];
|
|
@@ -6233,6 +6452,7 @@ export declare type JiraAddIssuesToFixVersionInput = {
|
|
|
6233
6452
|
};
|
|
6234
6453
|
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6235
6454
|
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6455
|
+
version?: Maybe<JiraVersion>;
|
|
6236
6456
|
success: Scalars['Boolean'];
|
|
6237
6457
|
errors?: Maybe<Array<MutationError>>;
|
|
6238
6458
|
};
|
|
@@ -7370,6 +7590,11 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
7370
7590
|
id: Scalars['ID'];
|
|
7371
7591
|
group: JiraGroup;
|
|
7372
7592
|
};
|
|
7593
|
+
export declare type JiraHierarchyConfigError = {
|
|
7594
|
+
__typename?: 'JiraHierarchyConfigError';
|
|
7595
|
+
code?: Maybe<Scalars['String']>;
|
|
7596
|
+
message?: Maybe<Scalars['String']>;
|
|
7597
|
+
};
|
|
7373
7598
|
export declare type JiraInvalidJqlError = {
|
|
7374
7599
|
__typename?: 'JiraInvalidJqlError';
|
|
7375
7600
|
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -7399,6 +7624,11 @@ export declare type JiraIssue = Node & {
|
|
|
7399
7624
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7400
7625
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7401
7626
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7627
|
+
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7628
|
+
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7629
|
+
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7630
|
+
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7631
|
+
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
7402
7632
|
};
|
|
7403
7633
|
export declare type JiraIssueFieldsArgs = {
|
|
7404
7634
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7621,6 +7851,43 @@ export declare type JiraIssueFieldSetEdge = {
|
|
|
7621
7851
|
node?: Maybe<JiraIssueFieldSet>;
|
|
7622
7852
|
cursor: Scalars['String'];
|
|
7623
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
|
+
};
|
|
7624
7891
|
export declare type JiraIssueItemContainer = {
|
|
7625
7892
|
__typename?: 'JiraIssueItemContainer';
|
|
7626
7893
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -7931,6 +8198,7 @@ export declare type JiraIssueSearchFieldConfigSet = {
|
|
|
7931
8198
|
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
7932
8199
|
displayName?: Maybe<Scalars['String']>;
|
|
7933
8200
|
fieldType?: Maybe<Scalars['String']>;
|
|
8201
|
+
jqlTerm?: Maybe<Scalars['String']>;
|
|
7934
8202
|
isSortable?: Maybe<Scalars['Boolean']>;
|
|
7935
8203
|
isSelected?: Maybe<Scalars['Boolean']>;
|
|
7936
8204
|
};
|
|
@@ -8665,22 +8933,14 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8665
8933
|
};
|
|
8666
8934
|
export declare type JiraMutation = {
|
|
8667
8935
|
__typename?: 'JiraMutation';
|
|
8668
|
-
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8669
|
-
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8670
|
-
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8671
8936
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8672
8937
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8673
8938
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8939
|
+
updateIssueHierarchyConfig: JiraIssueHierarchyConfigurationMutationResult;
|
|
8674
8940
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8675
8941
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
id: Scalars['ID'];
|
|
8679
|
-
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8680
|
-
};
|
|
8681
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8682
|
-
id: Scalars['ID'];
|
|
8683
|
-
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8942
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8943
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8684
8944
|
};
|
|
8685
8945
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8686
8946
|
cloudId: Scalars['ID'];
|
|
@@ -8692,12 +8952,20 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8692
8952
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8693
8953
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8694
8954
|
};
|
|
8955
|
+
export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
8956
|
+
cloudId: Scalars['ID'];
|
|
8957
|
+
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
8958
|
+
};
|
|
8695
8959
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8696
8960
|
input: JiraAddIssuesToFixVersionInput;
|
|
8697
8961
|
};
|
|
8698
8962
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8699
8963
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8700
8964
|
};
|
|
8965
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8966
|
+
id: Scalars['ID'];
|
|
8967
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8968
|
+
};
|
|
8701
8969
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8702
8970
|
__typename?: 'JiraNumberField';
|
|
8703
8971
|
id: Scalars['ID'];
|
|
@@ -9239,6 +9507,14 @@ export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload
|
|
|
9239
9507
|
errors?: Maybe<Array<MutationError>>;
|
|
9240
9508
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9241
9509
|
};
|
|
9510
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
9511
|
+
id: Scalars['ID'];
|
|
9512
|
+
};
|
|
9513
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
9514
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeletePayload';
|
|
9515
|
+
success: Scalars['Boolean'];
|
|
9516
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9517
|
+
};
|
|
9242
9518
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9243
9519
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9244
9520
|
id: Scalars['ID'];
|
|
@@ -9431,15 +9707,12 @@ export declare type JiraQuery = {
|
|
|
9431
9707
|
jiraProject?: Maybe<JiraProject>;
|
|
9432
9708
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
9433
9709
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
9434
|
-
|
|
9710
|
+
filter?: Maybe<JiraFilter>;
|
|
9711
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9712
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9713
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9435
9714
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
9436
9715
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
9437
|
-
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9438
|
-
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9439
|
-
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9440
|
-
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9441
|
-
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9442
|
-
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9443
9716
|
issueByKey?: Maybe<JiraIssue>;
|
|
9444
9717
|
issueById?: Maybe<JiraIssue>;
|
|
9445
9718
|
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -9447,11 +9720,6 @@ export declare type JiraQuery = {
|
|
|
9447
9720
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9448
9721
|
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9449
9722
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9450
|
-
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9451
|
-
filter?: Maybe<JiraFilter>;
|
|
9452
|
-
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9453
|
-
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9454
|
-
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9455
9723
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9456
9724
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9457
9725
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9459,9 +9727,20 @@ export declare type JiraQuery = {
|
|
|
9459
9727
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
9460
9728
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
9461
9729
|
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
9730
|
+
issueHierarchyConfig: JiraIssueHierarchyConfigurationQuery;
|
|
9731
|
+
issueHierarchyLimits: JiraIssueHierarchyLimits;
|
|
9732
|
+
lockedIssueTypeIds: Array<Scalars['ID']>;
|
|
9462
9733
|
version?: Maybe<JiraVersionResult>;
|
|
9463
9734
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9464
9735
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
9736
|
+
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9737
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9738
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9739
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9740
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9741
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9742
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9743
|
+
devOps?: Maybe<JiraDevOpsQuery>;
|
|
9465
9744
|
};
|
|
9466
9745
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9467
9746
|
id: Scalars['ID'];
|
|
@@ -9481,39 +9760,34 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
9481
9760
|
after?: Maybe<Scalars['String']>;
|
|
9482
9761
|
before?: Maybe<Scalars['String']>;
|
|
9483
9762
|
};
|
|
9484
|
-
export declare type
|
|
9485
|
-
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9486
|
-
};
|
|
9487
|
-
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9488
|
-
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9489
|
-
};
|
|
9490
|
-
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9491
|
-
cloudId: Scalars['ID'];
|
|
9492
|
-
jql: Scalars['String'];
|
|
9493
|
-
};
|
|
9494
|
-
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9495
|
-
id: Scalars['ID'];
|
|
9496
|
-
};
|
|
9497
|
-
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9498
|
-
ids: Array<Scalars['ID']>;
|
|
9499
|
-
};
|
|
9500
|
-
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9763
|
+
export declare type JiraQueryFilterArgs = {
|
|
9501
9764
|
id: Scalars['ID'];
|
|
9502
9765
|
};
|
|
9503
|
-
export declare type
|
|
9766
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9504
9767
|
cloudId: Scalars['ID'];
|
|
9505
|
-
|
|
9506
|
-
|
|
9768
|
+
first?: Maybe<Scalars['Int']>;
|
|
9769
|
+
after?: Maybe<Scalars['String']>;
|
|
9770
|
+
last?: Maybe<Scalars['Int']>;
|
|
9771
|
+
before?: Maybe<Scalars['String']>;
|
|
9507
9772
|
};
|
|
9508
|
-
export declare type
|
|
9773
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9509
9774
|
cloudId: Scalars['ID'];
|
|
9510
|
-
|
|
9511
|
-
options?: Maybe<JiraIssueSearchOptions>;
|
|
9775
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9512
9776
|
first?: Maybe<Scalars['Int']>;
|
|
9513
9777
|
after?: Maybe<Scalars['String']>;
|
|
9514
9778
|
last?: Maybe<Scalars['Int']>;
|
|
9515
9779
|
before?: Maybe<Scalars['String']>;
|
|
9516
9780
|
};
|
|
9781
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9782
|
+
cloudId: Scalars['ID'];
|
|
9783
|
+
keys: Array<Scalars['String']>;
|
|
9784
|
+
};
|
|
9785
|
+
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
9786
|
+
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9787
|
+
};
|
|
9788
|
+
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9789
|
+
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9790
|
+
};
|
|
9517
9791
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
9518
9792
|
key: Scalars['String'];
|
|
9519
9793
|
cloudId: Scalars['ID'];
|
|
@@ -9533,31 +9807,6 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
9533
9807
|
export declare type JiraQueryCommentsByIdArgs = {
|
|
9534
9808
|
input: Array<JiraCommentByIdInput>;
|
|
9535
9809
|
};
|
|
9536
|
-
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9537
|
-
cloudId: Scalars['ID'];
|
|
9538
|
-
keys: Array<Scalars['String']>;
|
|
9539
|
-
};
|
|
9540
|
-
export declare type JiraQueryFilterArgs = {
|
|
9541
|
-
id: Scalars['ID'];
|
|
9542
|
-
};
|
|
9543
|
-
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9544
|
-
cloudId: Scalars['ID'];
|
|
9545
|
-
first?: Maybe<Scalars['Int']>;
|
|
9546
|
-
after?: Maybe<Scalars['String']>;
|
|
9547
|
-
last?: Maybe<Scalars['Int']>;
|
|
9548
|
-
before?: Maybe<Scalars['String']>;
|
|
9549
|
-
};
|
|
9550
|
-
export declare type JiraQuerySystemFiltersArgs = {
|
|
9551
|
-
cloudId: Scalars['ID'];
|
|
9552
|
-
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9553
|
-
first?: Maybe<Scalars['Int']>;
|
|
9554
|
-
after?: Maybe<Scalars['String']>;
|
|
9555
|
-
last?: Maybe<Scalars['Int']>;
|
|
9556
|
-
before?: Maybe<Scalars['String']>;
|
|
9557
|
-
};
|
|
9558
|
-
export declare type JiraQueryJqlBuilderArgs = {
|
|
9559
|
-
cloudId: Scalars['ID'];
|
|
9560
|
-
};
|
|
9561
9810
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9562
9811
|
cloudId: Scalars['ID'];
|
|
9563
9812
|
};
|
|
@@ -9601,6 +9850,15 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
9601
9850
|
schemeId: Scalars['ID'];
|
|
9602
9851
|
permissionKey: Scalars['String'];
|
|
9603
9852
|
};
|
|
9853
|
+
export declare type JiraQueryIssueHierarchyConfigArgs = {
|
|
9854
|
+
cloudId: Scalars['ID'];
|
|
9855
|
+
};
|
|
9856
|
+
export declare type JiraQueryIssueHierarchyLimitsArgs = {
|
|
9857
|
+
cloudId: Scalars['ID'];
|
|
9858
|
+
};
|
|
9859
|
+
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
9860
|
+
cloudId: Scalars['ID'];
|
|
9861
|
+
};
|
|
9604
9862
|
export declare type JiraQueryVersionArgs = {
|
|
9605
9863
|
id: Scalars['ID'];
|
|
9606
9864
|
};
|
|
@@ -9615,6 +9873,36 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
9615
9873
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
9616
9874
|
versionId: Scalars['ID'];
|
|
9617
9875
|
};
|
|
9876
|
+
export declare type JiraQueryJqlBuilderArgs = {
|
|
9877
|
+
cloudId: Scalars['ID'];
|
|
9878
|
+
};
|
|
9879
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9880
|
+
cloudId: Scalars['ID'];
|
|
9881
|
+
jql: Scalars['String'];
|
|
9882
|
+
};
|
|
9883
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9884
|
+
id: Scalars['ID'];
|
|
9885
|
+
};
|
|
9886
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9887
|
+
ids: Array<Scalars['ID']>;
|
|
9888
|
+
};
|
|
9889
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9890
|
+
id: Scalars['ID'];
|
|
9891
|
+
};
|
|
9892
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
9893
|
+
cloudId: Scalars['ID'];
|
|
9894
|
+
namespace?: Maybe<Scalars['String']>;
|
|
9895
|
+
viewId?: Maybe<Scalars['String']>;
|
|
9896
|
+
};
|
|
9897
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9898
|
+
cloudId: Scalars['ID'];
|
|
9899
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
9900
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9901
|
+
first?: Maybe<Scalars['Int']>;
|
|
9902
|
+
after?: Maybe<Scalars['String']>;
|
|
9903
|
+
last?: Maybe<Scalars['Int']>;
|
|
9904
|
+
before?: Maybe<Scalars['String']>;
|
|
9905
|
+
};
|
|
9618
9906
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9619
9907
|
__typename?: 'JiraRadioSelectField';
|
|
9620
9908
|
id: Scalars['ID'];
|
|
@@ -9766,7 +10054,7 @@ export declare type JiraResolution = Node & {
|
|
|
9766
10054
|
export declare type JiraResolutionConnection = {
|
|
9767
10055
|
__typename?: 'JiraResolutionConnection';
|
|
9768
10056
|
totalCount?: Maybe<Scalars['Int']>;
|
|
9769
|
-
pageInfo
|
|
10057
|
+
pageInfo: PageInfo;
|
|
9770
10058
|
edges?: Maybe<Array<Maybe<JiraResolutionEdge>>>;
|
|
9771
10059
|
};
|
|
9772
10060
|
export declare type JiraResolutionEdge = {
|
|
@@ -10482,6 +10770,8 @@ export declare type JiraSprint = Node & {
|
|
|
10482
10770
|
boardName?: Maybe<Scalars['String']>;
|
|
10483
10771
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10484
10772
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
10773
|
+
completionDate?: Maybe<Scalars['DateTime']>;
|
|
10774
|
+
goal?: Maybe<Scalars['String']>;
|
|
10485
10775
|
};
|
|
10486
10776
|
export declare type JiraSprintConnection = {
|
|
10487
10777
|
__typename?: 'JiraSprintConnection';
|
|
@@ -11383,15 +11673,8 @@ export declare type Mutation = {
|
|
|
11383
11673
|
__typename?: 'Mutation';
|
|
11384
11674
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11385
11675
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11676
|
+
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11386
11677
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11387
|
-
createReleaseNote: ContentPlatformReleaseNote;
|
|
11388
|
-
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11389
|
-
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11390
|
-
createApp?: Maybe<CreateAppResponse>;
|
|
11391
|
-
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11392
|
-
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11393
|
-
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11394
|
-
ecosystem?: Maybe<EcosystemMutation>;
|
|
11395
11678
|
jsw?: Maybe<JswMutation>;
|
|
11396
11679
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11397
11680
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -11419,6 +11702,14 @@ export declare type Mutation = {
|
|
|
11419
11702
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11420
11703
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11421
11704
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
11705
|
+
createApp?: Maybe<CreateAppResponse>;
|
|
11706
|
+
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11707
|
+
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11708
|
+
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11709
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
11710
|
+
createReleaseNote: ContentPlatformReleaseNote;
|
|
11711
|
+
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11712
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11422
11713
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11423
11714
|
devOps?: Maybe<DevOpsMutation>;
|
|
11424
11715
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -11438,6 +11729,7 @@ export declare type Mutation = {
|
|
|
11438
11729
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11439
11730
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11440
11731
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
11732
|
+
jira?: Maybe<JiraMutation>;
|
|
11441
11733
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
11442
11734
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
11443
11735
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -11446,11 +11738,10 @@ export declare type Mutation = {
|
|
|
11446
11738
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
11447
11739
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
11448
11740
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
11449
|
-
jira?: Maybe<JiraMutation>;
|
|
11450
11741
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11451
11742
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11452
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11453
11743
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11744
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11454
11745
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11455
11746
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
11456
11747
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
@@ -11503,20 +11794,20 @@ export declare type Mutation = {
|
|
|
11503
11794
|
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
11504
11795
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
11505
11796
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11797
|
+
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11798
|
+
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11506
11799
|
installApp?: Maybe<AppInstallationResponse>;
|
|
11507
11800
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
11508
11801
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
11509
11802
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
11510
11803
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
11511
|
-
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11512
|
-
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11513
|
-
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11514
11804
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
11515
11805
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
11516
11806
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
11517
11807
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11518
11808
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11519
11809
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11810
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11520
11811
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11521
11812
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11522
11813
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
@@ -11524,51 +11815,8 @@ export declare type Mutation = {
|
|
|
11524
11815
|
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11525
11816
|
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11526
11817
|
};
|
|
11527
|
-
export declare type
|
|
11528
|
-
|
|
11529
|
-
title?: Maybe<Scalars['String']>;
|
|
11530
|
-
changeType?: Maybe<Scalars['String']>;
|
|
11531
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11532
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11533
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11534
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11535
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11536
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
11537
|
-
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11538
|
-
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11539
|
-
description: Scalars['JSON'];
|
|
11540
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
11541
|
-
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11542
|
-
};
|
|
11543
|
-
export declare type MutationPublishReleaseNoteArgs = {
|
|
11544
|
-
id: Scalars['String'];
|
|
11545
|
-
};
|
|
11546
|
-
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11547
|
-
id: Scalars['String'];
|
|
11548
|
-
changeStatus?: Maybe<Scalars['String']>;
|
|
11549
|
-
title?: Maybe<Scalars['String']>;
|
|
11550
|
-
changeType?: Maybe<Scalars['String']>;
|
|
11551
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11552
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11553
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11554
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11555
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11556
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
11557
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
11558
|
-
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11559
|
-
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11560
|
-
};
|
|
11561
|
-
export declare type MutationCreateAppArgs = {
|
|
11562
|
-
input: CreateAppInput;
|
|
11563
|
-
};
|
|
11564
|
-
export declare type MutationUpdateAppDetailsArgs = {
|
|
11565
|
-
input: UpdateAppDetailsInput;
|
|
11566
|
-
};
|
|
11567
|
-
export declare type MutationDeleteAppArgs = {
|
|
11568
|
-
input: DeleteAppInput;
|
|
11569
|
-
};
|
|
11570
|
-
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11571
|
-
input: UpdateAtlassianOAuthClientInput;
|
|
11818
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11819
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
11572
11820
|
};
|
|
11573
11821
|
export declare type MutationCreateColumnArgs = {
|
|
11574
11822
|
input?: Maybe<CreateColumnInput>;
|
|
@@ -11648,6 +11896,52 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
11648
11896
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11649
11897
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11650
11898
|
};
|
|
11899
|
+
export declare type MutationCreateAppArgs = {
|
|
11900
|
+
input: CreateAppInput;
|
|
11901
|
+
};
|
|
11902
|
+
export declare type MutationUpdateAppDetailsArgs = {
|
|
11903
|
+
input: UpdateAppDetailsInput;
|
|
11904
|
+
};
|
|
11905
|
+
export declare type MutationDeleteAppArgs = {
|
|
11906
|
+
input: DeleteAppInput;
|
|
11907
|
+
};
|
|
11908
|
+
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11909
|
+
input: UpdateAtlassianOAuthClientInput;
|
|
11910
|
+
};
|
|
11911
|
+
export declare type MutationCreateReleaseNoteArgs = {
|
|
11912
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11913
|
+
title?: Maybe<Scalars['String']>;
|
|
11914
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11915
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11916
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11917
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11918
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11919
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11920
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11921
|
+
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11922
|
+
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11923
|
+
description: Scalars['JSON'];
|
|
11924
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11925
|
+
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11926
|
+
};
|
|
11927
|
+
export declare type MutationPublishReleaseNoteArgs = {
|
|
11928
|
+
id: Scalars['String'];
|
|
11929
|
+
};
|
|
11930
|
+
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11931
|
+
id: Scalars['String'];
|
|
11932
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11933
|
+
title?: Maybe<Scalars['String']>;
|
|
11934
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11935
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11936
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11937
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11938
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11939
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11940
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11941
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11942
|
+
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11943
|
+
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11944
|
+
};
|
|
11651
11945
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
11652
11946
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
11653
11947
|
};
|
|
@@ -11894,6 +12188,12 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
11894
12188
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
11895
12189
|
id: Scalars['ID'];
|
|
11896
12190
|
};
|
|
12191
|
+
export declare type MutationWatchMarketplaceAppArgs = {
|
|
12192
|
+
id: Scalars['ID'];
|
|
12193
|
+
};
|
|
12194
|
+
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
12195
|
+
id: Scalars['ID'];
|
|
12196
|
+
};
|
|
11897
12197
|
export declare type MutationInstallAppArgs = {
|
|
11898
12198
|
input: AppInstallationInput;
|
|
11899
12199
|
};
|
|
@@ -11909,12 +12209,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
11909
12209
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
11910
12210
|
input: AppUnsubscribeInput;
|
|
11911
12211
|
};
|
|
11912
|
-
export declare type MutationWatchMarketplaceAppArgs = {
|
|
11913
|
-
id: Scalars['ID'];
|
|
11914
|
-
};
|
|
11915
|
-
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
11916
|
-
id: Scalars['ID'];
|
|
11917
|
-
};
|
|
11918
12212
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
11919
12213
|
input: CreateAppDeploymentUrlInput;
|
|
11920
12214
|
};
|
|
@@ -13051,6 +13345,7 @@ export declare type PolarisValueRuleInput = {
|
|
|
13051
13345
|
export declare type PolarisView = {
|
|
13052
13346
|
__typename?: 'PolarisView';
|
|
13053
13347
|
id: Scalars['ID'];
|
|
13348
|
+
xid?: Maybe<Scalars['Int']>;
|
|
13054
13349
|
name: Scalars['String'];
|
|
13055
13350
|
emoji?: Maybe<Scalars['String']>;
|
|
13056
13351
|
description?: Maybe<Scalars['JSON']>;
|
|
@@ -13174,35 +13469,36 @@ export declare type ProjectAvatars = {
|
|
|
13174
13469
|
};
|
|
13175
13470
|
export declare type Query = {
|
|
13176
13471
|
__typename?: 'Query';
|
|
13177
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13178
13472
|
echo?: Maybe<Scalars['String']>;
|
|
13179
13473
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
13180
13474
|
node?: Maybe<Node>;
|
|
13475
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13476
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13181
13477
|
activities?: Maybe<Activities>;
|
|
13182
13478
|
activity?: Maybe<Activity>;
|
|
13183
|
-
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13184
13479
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13185
|
-
bitbucket?: Maybe<BitbucketQuery>;
|
|
13186
13480
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13481
|
+
bitbucket?: Maybe<BitbucketQuery>;
|
|
13187
13482
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
13188
|
-
|
|
13189
|
-
releaseNote: ContentPlatformReleaseNote;
|
|
13190
|
-
practicePages: ContentPlatformPracticePagesConnection;
|
|
13191
|
-
practicePage: ContentPlatformPracticePage;
|
|
13192
|
-
apps?: Maybe<AppConnection>;
|
|
13193
|
-
app?: Maybe<App>;
|
|
13194
|
-
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13483
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
13195
13484
|
jsw?: Maybe<JswQuery>;
|
|
13196
13485
|
boardScope?: Maybe<BoardScope>;
|
|
13197
13486
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13198
13487
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13488
|
+
apps?: Maybe<AppConnection>;
|
|
13489
|
+
app?: Maybe<App>;
|
|
13490
|
+
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13491
|
+
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13492
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13493
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
13494
|
+
practicePage: ContentPlatformPracticePage;
|
|
13199
13495
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13200
13496
|
search?: Maybe<SearchQueryApi>;
|
|
13201
|
-
|
|
13497
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
13202
13498
|
me: AuthenticationContext;
|
|
13203
13499
|
user?: Maybe<User>;
|
|
13204
13500
|
users?: Maybe<Array<User>>;
|
|
13205
|
-
|
|
13501
|
+
devOps?: Maybe<DevOps>;
|
|
13206
13502
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13207
13503
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13208
13504
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
@@ -13219,27 +13515,27 @@ export declare type Query = {
|
|
|
13219
13515
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13220
13516
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13221
13517
|
codeInJira?: Maybe<CodeInJira>;
|
|
13222
|
-
|
|
13518
|
+
jira?: Maybe<JiraQuery>;
|
|
13223
13519
|
devOpsService?: Maybe<DevOpsService>;
|
|
13224
13520
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13225
13521
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
13226
13522
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
13227
13523
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
13228
13524
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
13229
|
-
|
|
13525
|
+
avocado?: Maybe<Avocado>;
|
|
13230
13526
|
appLogs?: Maybe<AppLogConnection>;
|
|
13231
13527
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
13232
13528
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
13233
13529
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
13234
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13235
13530
|
team?: Maybe<TeamQuery>;
|
|
13531
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13236
13532
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
13237
13533
|
testing?: Maybe<Testing>;
|
|
13238
13534
|
movie?: Maybe<TestingMovie>;
|
|
13239
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13240
13535
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
13241
13536
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
13242
13537
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13538
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13243
13539
|
polarisProject?: Maybe<PolarisProject>;
|
|
13244
13540
|
polarisView?: Maybe<PolarisView>;
|
|
13245
13541
|
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
@@ -13256,20 +13552,20 @@ export declare type Query = {
|
|
|
13256
13552
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13257
13553
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13258
13554
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13259
|
-
dvcs?: Maybe<DvcsQuery>;
|
|
13260
13555
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13556
|
+
dvcs?: Maybe<DvcsQuery>;
|
|
13261
13557
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
13262
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13263
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
13264
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
13265
13558
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
13266
13559
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
13267
13560
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
13268
13561
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
13269
13562
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
13270
13563
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13271
|
-
|
|
13564
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
13565
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13566
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
13272
13567
|
appDeployment?: Maybe<AppDeployment>;
|
|
13568
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13273
13569
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13274
13570
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13275
13571
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
@@ -13282,23 +13578,14 @@ export declare type QueryNodeArgs = {
|
|
|
13282
13578
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13283
13579
|
id: Scalars['ID'];
|
|
13284
13580
|
};
|
|
13285
|
-
export declare type
|
|
13286
|
-
|
|
13287
|
-
first?: Maybe<Scalars['Int']>;
|
|
13288
|
-
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13289
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13290
|
-
orderBy?: Maybe<Scalars['String']>;
|
|
13291
|
-
};
|
|
13292
|
-
export declare type QueryReleaseNoteArgs = {
|
|
13293
|
-
id: Scalars['String'];
|
|
13294
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13581
|
+
export declare type QueryBoardScopeArgs = {
|
|
13582
|
+
boardId: Scalars['ID'];
|
|
13295
13583
|
};
|
|
13296
|
-
export declare type
|
|
13297
|
-
|
|
13298
|
-
first?: Maybe<Scalars['Int']>;
|
|
13584
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
13585
|
+
issueId: Scalars['ID'];
|
|
13299
13586
|
};
|
|
13300
|
-
export declare type
|
|
13301
|
-
|
|
13587
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13588
|
+
projectAri: Scalars['ID'];
|
|
13302
13589
|
};
|
|
13303
13590
|
export declare type QueryAppsArgs = {
|
|
13304
13591
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13313,14 +13600,23 @@ export declare type QueryAppArgs = {
|
|
|
13313
13600
|
export declare type QueryAppHostServicesArgs = {
|
|
13314
13601
|
filter?: Maybe<AppServicesFilter>;
|
|
13315
13602
|
};
|
|
13316
|
-
export declare type
|
|
13317
|
-
|
|
13603
|
+
export declare type QueryReleaseNotesArgs = {
|
|
13604
|
+
after?: Maybe<Scalars['String']>;
|
|
13605
|
+
first?: Maybe<Scalars['Int']>;
|
|
13606
|
+
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13607
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13608
|
+
orderBy?: Maybe<Scalars['String']>;
|
|
13318
13609
|
};
|
|
13319
|
-
export declare type
|
|
13320
|
-
|
|
13610
|
+
export declare type QueryReleaseNoteArgs = {
|
|
13611
|
+
id: Scalars['String'];
|
|
13612
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13321
13613
|
};
|
|
13322
|
-
export declare type
|
|
13323
|
-
|
|
13614
|
+
export declare type QueryPracticePagesArgs = {
|
|
13615
|
+
after?: Maybe<Scalars['String']>;
|
|
13616
|
+
first?: Maybe<Scalars['Int']>;
|
|
13617
|
+
};
|
|
13618
|
+
export declare type QueryPracticePageArgs = {
|
|
13619
|
+
id: Scalars['String'];
|
|
13324
13620
|
};
|
|
13325
13621
|
export declare type QueryUserArgs = {
|
|
13326
13622
|
accountId: Scalars['ID'];
|
|
@@ -13534,9 +13830,6 @@ export declare type QueryWebTriggerUrlsByAppContextArgs = {
|
|
|
13534
13830
|
envId: Scalars['ID'];
|
|
13535
13831
|
contextId: Scalars['ID'];
|
|
13536
13832
|
};
|
|
13537
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
13538
|
-
id: Scalars['ID'];
|
|
13539
|
-
};
|
|
13540
13833
|
export declare type QueryMarketplacePartnerArgs = {
|
|
13541
13834
|
id: Scalars['ID'];
|
|
13542
13835
|
};
|
|
@@ -13554,6 +13847,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
13554
13847
|
hostingType: AtlassianProductHostingType;
|
|
13555
13848
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
13556
13849
|
};
|
|
13850
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
13851
|
+
id: Scalars['ID'];
|
|
13852
|
+
};
|
|
13557
13853
|
export declare type QueryAppDeploymentArgs = {
|
|
13558
13854
|
appId: Scalars['ID'];
|
|
13559
13855
|
environmentKey: Scalars['String'];
|
|
@@ -14258,7 +14554,8 @@ export declare enum Scope {
|
|
|
14258
14554
|
AdminContainer = "ADMIN_CONTAINER",
|
|
14259
14555
|
ReadContainer = "READ_CONTAINER",
|
|
14260
14556
|
WriteContainer = "WRITE_CONTAINER",
|
|
14261
|
-
MigrateConfluence = "MIGRATE_CONFLUENCE"
|
|
14557
|
+
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
14558
|
+
ReadAvocadoEntity = "READ_AVOCADO_ENTITY"
|
|
14262
14559
|
}
|
|
14263
14560
|
export declare type ScopeSprintIssue = {
|
|
14264
14561
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -14484,12 +14781,18 @@ export declare type ShepherdAlert = {
|
|
|
14484
14781
|
assignee?: Maybe<ShepherdUser>;
|
|
14485
14782
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14486
14783
|
createdOn: Scalars['DateTime'];
|
|
14784
|
+
description?: Maybe<Array<Maybe<ShepherdDescriptionSection>>>;
|
|
14487
14785
|
id: Scalars['ID'];
|
|
14488
14786
|
orgId: Scalars['ID'];
|
|
14489
14787
|
status: ShepherdAlertStatus;
|
|
14490
14788
|
title: Scalars['String'];
|
|
14491
14789
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14492
14790
|
};
|
|
14791
|
+
export declare enum ShepherdAlertDescriptionType {
|
|
14792
|
+
AlertInfo = "ALERT_INFO",
|
|
14793
|
+
Investigate = "INVESTIGATE",
|
|
14794
|
+
Remediate = "REMEDIATE"
|
|
14795
|
+
}
|
|
14493
14796
|
export declare type ShepherdAlertEdge = {
|
|
14494
14797
|
__typename?: 'ShepherdAlertEdge';
|
|
14495
14798
|
node?: Maybe<ShepherdAlert>;
|
|
@@ -14561,6 +14864,11 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
14561
14864
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14562
14865
|
type?: Maybe<ShepherdWebhookType>;
|
|
14563
14866
|
};
|
|
14867
|
+
export declare type ShepherdDescriptionSection = {
|
|
14868
|
+
__typename?: 'ShepherdDescriptionSection';
|
|
14869
|
+
text?: Maybe<Scalars['JSON']>;
|
|
14870
|
+
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
14871
|
+
};
|
|
14564
14872
|
export declare type ShepherdEmailConnection = {
|
|
14565
14873
|
__typename?: 'ShepherdEmailConnection';
|
|
14566
14874
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -15059,7 +15367,7 @@ export declare type SupportRequestField = {
|
|
|
15059
15367
|
__typename?: 'SupportRequestField';
|
|
15060
15368
|
id: Scalars['String'];
|
|
15061
15369
|
label: Scalars['String'];
|
|
15062
|
-
value
|
|
15370
|
+
value?: Maybe<SupportRequestFieldValue>;
|
|
15063
15371
|
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15064
15372
|
editable?: Maybe<Scalars['Boolean']>;
|
|
15065
15373
|
};
|
|
@@ -15071,7 +15379,7 @@ export declare enum SupportRequestFieldDataType {
|
|
|
15071
15379
|
}
|
|
15072
15380
|
export declare type SupportRequestFieldValue = {
|
|
15073
15381
|
__typename?: 'SupportRequestFieldValue';
|
|
15074
|
-
value
|
|
15382
|
+
value?: Maybe<Scalars['String']>;
|
|
15075
15383
|
};
|
|
15076
15384
|
export declare type SupportRequestHierarchyRequest = {
|
|
15077
15385
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
@@ -15760,6 +16068,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
15760
16068
|
description?: Maybe<Scalars['String']>;
|
|
15761
16069
|
ownerId?: Maybe<Scalars['ID']>;
|
|
15762
16070
|
fields?: Maybe<Array<UpdateCompassFieldInput>>;
|
|
16071
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
15763
16072
|
};
|
|
15764
16073
|
export declare type UpdateCompassComponentLinkInput = {
|
|
15765
16074
|
componentId: Scalars['ID'];
|
|
@@ -16194,7 +16503,7 @@ export declare type UserGrant = {
|
|
|
16194
16503
|
oauthClientId: Scalars['ID'];
|
|
16195
16504
|
appId?: Maybe<Scalars['ID']>;
|
|
16196
16505
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
16197
|
-
scopes
|
|
16506
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
16198
16507
|
};
|
|
16199
16508
|
export declare type UserGrantAppDetails = {
|
|
16200
16509
|
__typename?: 'UserGrantAppDetails';
|