@forge/cli-shared 2.4.0-next.4 → 2.4.0-next.7
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.
|
@@ -313,7 +313,8 @@ export declare enum ApiGroup {
|
|
|
313
313
|
Teams = "TEAMS",
|
|
314
314
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
315
315
|
Identity = "IDENTITY",
|
|
316
|
-
DevopsAriGraph = "DEVOPS_ARI_GRAPH"
|
|
316
|
+
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
317
|
+
Help = "HELP"
|
|
317
318
|
}
|
|
318
319
|
export declare type App = {
|
|
319
320
|
__typename?: 'App';
|
|
@@ -1450,6 +1451,7 @@ export declare type CardStatus = {
|
|
|
1450
1451
|
export declare type CardType = {
|
|
1451
1452
|
__typename?: 'CardType';
|
|
1452
1453
|
id?: Maybe<Scalars['ID']>;
|
|
1454
|
+
externalId?: Maybe<Scalars['ID']>;
|
|
1453
1455
|
name?: Maybe<Scalars['String']>;
|
|
1454
1456
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1455
1457
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
@@ -1459,7 +1461,7 @@ export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
1459
1461
|
cloudId: Scalars['ID'];
|
|
1460
1462
|
userId: Scalars['ID'];
|
|
1461
1463
|
oauthClientId: Scalars['ID'];
|
|
1462
|
-
scopes
|
|
1464
|
+
scopes: Array<Scalars['String']>;
|
|
1463
1465
|
};
|
|
1464
1466
|
export declare type ChildCardsMetadata = {
|
|
1465
1467
|
__typename?: 'ChildCardsMetadata';
|
|
@@ -1677,6 +1679,9 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1677
1679
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1678
1680
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1679
1681
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1682
|
+
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1683
|
+
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
1684
|
+
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
1680
1685
|
};
|
|
1681
1686
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1682
1687
|
cloudId: Scalars['ID'];
|
|
@@ -1826,6 +1831,15 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
1826
1831
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1827
1832
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1828
1833
|
};
|
|
1834
|
+
export declare type CompassCatalogMutationApiCreateCustomFieldDefinitionArgs = {
|
|
1835
|
+
input: CompassCreateCustomFieldDefinitionInput;
|
|
1836
|
+
};
|
|
1837
|
+
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
1838
|
+
input: CompassUpdateCustomFieldDefinitionInput;
|
|
1839
|
+
};
|
|
1840
|
+
export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
1841
|
+
input: CompassDeleteCustomFieldDefinitionInput;
|
|
1842
|
+
};
|
|
1829
1843
|
export declare type CompassCatalogQueryApi = {
|
|
1830
1844
|
__typename?: 'CompassCatalogQueryApi';
|
|
1831
1845
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1840,6 +1854,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1840
1854
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1841
1855
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1842
1856
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1857
|
+
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
1843
1858
|
};
|
|
1844
1859
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1845
1860
|
id: Scalars['ID'];
|
|
@@ -1887,6 +1902,9 @@ export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
1887
1902
|
eventType: CompassEventType;
|
|
1888
1903
|
externalEventSourceId: Scalars['ID'];
|
|
1889
1904
|
};
|
|
1905
|
+
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
1906
|
+
query: CompassCustomFieldDefinitionsQuery;
|
|
1907
|
+
};
|
|
1890
1908
|
export declare type CompassChangeMetadata = {
|
|
1891
1909
|
__typename?: 'CompassChangeMetadata';
|
|
1892
1910
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1916,6 +1934,7 @@ export declare type CompassComponent = Node & {
|
|
|
1916
1934
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1917
1935
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1918
1936
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1937
|
+
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1919
1938
|
};
|
|
1920
1939
|
export declare type CompassComponentRelationshipsArgs = {
|
|
1921
1940
|
query?: Maybe<CompassRelationshipQuery>;
|
|
@@ -1992,6 +2011,12 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1992
2011
|
externalEventSourceId: Scalars['ID'];
|
|
1993
2012
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1994
2013
|
};
|
|
2014
|
+
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2015
|
+
cloudId: Scalars['ID'];
|
|
2016
|
+
name: Scalars['String'];
|
|
2017
|
+
description?: Maybe<Scalars['String']>;
|
|
2018
|
+
componentTypes: Array<CompassComponentType>;
|
|
2019
|
+
};
|
|
1995
2020
|
export declare type CompassCreateCustomEventInput = {
|
|
1996
2021
|
displayName: Scalars['String'];
|
|
1997
2022
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2001,6 +2026,29 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
2001
2026
|
externalEventSourceId: Scalars['ID'];
|
|
2002
2027
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
2003
2028
|
};
|
|
2029
|
+
export declare type CompassCreateCustomFieldDefinitionInput = {
|
|
2030
|
+
booleanFieldDefinition?: Maybe<CompassCreateCustomBooleanFieldDefinitionInput>;
|
|
2031
|
+
textFieldDefinition?: Maybe<CompassCreateCustomTextFieldDefinitionInput>;
|
|
2032
|
+
numberFieldDefinition?: Maybe<CompassCreateCustomNumberFieldDefinitionInput>;
|
|
2033
|
+
};
|
|
2034
|
+
export declare type CompassCreateCustomFieldDefinitionPayload = Payload & {
|
|
2035
|
+
__typename?: 'CompassCreateCustomFieldDefinitionPayload';
|
|
2036
|
+
success: Scalars['Boolean'];
|
|
2037
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2038
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinition>;
|
|
2039
|
+
};
|
|
2040
|
+
export declare type CompassCreateCustomNumberFieldDefinitionInput = {
|
|
2041
|
+
cloudId: Scalars['ID'];
|
|
2042
|
+
name: Scalars['String'];
|
|
2043
|
+
description?: Maybe<Scalars['String']>;
|
|
2044
|
+
componentTypes: Array<CompassComponentType>;
|
|
2045
|
+
};
|
|
2046
|
+
export declare type CompassCreateCustomTextFieldDefinitionInput = {
|
|
2047
|
+
cloudId: Scalars['ID'];
|
|
2048
|
+
name: Scalars['String'];
|
|
2049
|
+
description?: Maybe<Scalars['String']>;
|
|
2050
|
+
componentTypes: Array<CompassComponentType>;
|
|
2051
|
+
};
|
|
2004
2052
|
export declare type CompassCreateDeploymentEventInput = {
|
|
2005
2053
|
updateSequenceNumber: Scalars['Long'];
|
|
2006
2054
|
displayName: Scalars['String'];
|
|
@@ -2110,6 +2158,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
2110
2158
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
2111
2159
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
2112
2160
|
}
|
|
2161
|
+
export declare type CompassCustomBooleanField = CompassCustomField & {
|
|
2162
|
+
__typename?: 'CompassCustomBooleanField';
|
|
2163
|
+
definition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2164
|
+
booleanValue?: Maybe<Scalars['Boolean']>;
|
|
2165
|
+
};
|
|
2166
|
+
export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2167
|
+
__typename?: 'CompassCustomBooleanFieldDefinition';
|
|
2168
|
+
id: Scalars['ID'];
|
|
2169
|
+
name?: Maybe<Scalars['String']>;
|
|
2170
|
+
description?: Maybe<Scalars['String']>;
|
|
2171
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2172
|
+
};
|
|
2173
|
+
export declare type CompassCustomBooleanFieldInput = {
|
|
2174
|
+
definitionId: Scalars['ID'];
|
|
2175
|
+
booleanValue: Scalars['Boolean'];
|
|
2176
|
+
};
|
|
2113
2177
|
export declare type CompassCustomEvent = CompassEvent & {
|
|
2114
2178
|
__typename?: 'CompassCustomEvent';
|
|
2115
2179
|
eventType: CompassEventType;
|
|
@@ -2134,6 +2198,68 @@ export declare type CompassCustomEventPropertiesInput = {
|
|
|
2134
2198
|
id: Scalars['ID'];
|
|
2135
2199
|
icon: CompassCustomEventIcon;
|
|
2136
2200
|
};
|
|
2201
|
+
export declare type CompassCustomField = {
|
|
2202
|
+
definition?: Maybe<CompassCustomFieldDefinition>;
|
|
2203
|
+
};
|
|
2204
|
+
export declare type CompassCustomFieldDefinition = {
|
|
2205
|
+
id: Scalars['ID'];
|
|
2206
|
+
name?: Maybe<Scalars['String']>;
|
|
2207
|
+
description?: Maybe<Scalars['String']>;
|
|
2208
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2209
|
+
};
|
|
2210
|
+
export declare type CompassCustomFieldDefinitionEdge = {
|
|
2211
|
+
__typename?: 'CompassCustomFieldDefinitionEdge';
|
|
2212
|
+
cursor: Scalars['String'];
|
|
2213
|
+
node?: Maybe<CompassCustomFieldDefinition>;
|
|
2214
|
+
};
|
|
2215
|
+
export declare type CompassCustomFieldDefinitionsConnection = {
|
|
2216
|
+
__typename?: 'CompassCustomFieldDefinitionsConnection';
|
|
2217
|
+
edges?: Maybe<Array<CompassCustomFieldDefinitionEdge>>;
|
|
2218
|
+
nodes?: Maybe<Array<CompassCustomFieldDefinition>>;
|
|
2219
|
+
pageInfo: PageInfo;
|
|
2220
|
+
};
|
|
2221
|
+
export declare type CompassCustomFieldDefinitionsQuery = {
|
|
2222
|
+
cloudId: Scalars['ID'];
|
|
2223
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2224
|
+
};
|
|
2225
|
+
export declare type CompassCustomFieldDefinitionsResult = CompassCustomFieldDefinitionsConnection | QueryError;
|
|
2226
|
+
export declare type CompassCustomFieldInput = {
|
|
2227
|
+
booleanField?: Maybe<CompassCustomBooleanFieldInput>;
|
|
2228
|
+
textField?: Maybe<CompassCustomTextFieldInput>;
|
|
2229
|
+
numberField?: Maybe<CompassCustomNumberFieldInput>;
|
|
2230
|
+
};
|
|
2231
|
+
export declare type CompassCustomNumberField = CompassCustomField & {
|
|
2232
|
+
__typename?: 'CompassCustomNumberField';
|
|
2233
|
+
definition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2234
|
+
numberValue?: Maybe<Scalars['Float']>;
|
|
2235
|
+
};
|
|
2236
|
+
export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2237
|
+
__typename?: 'CompassCustomNumberFieldDefinition';
|
|
2238
|
+
id: Scalars['ID'];
|
|
2239
|
+
name?: Maybe<Scalars['String']>;
|
|
2240
|
+
description?: Maybe<Scalars['String']>;
|
|
2241
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2242
|
+
};
|
|
2243
|
+
export declare type CompassCustomNumberFieldInput = {
|
|
2244
|
+
definitionId: Scalars['ID'];
|
|
2245
|
+
numberValue?: Maybe<Scalars['Float']>;
|
|
2246
|
+
};
|
|
2247
|
+
export declare type CompassCustomTextField = CompassCustomField & {
|
|
2248
|
+
__typename?: 'CompassCustomTextField';
|
|
2249
|
+
definition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
2250
|
+
textValue?: Maybe<Scalars['String']>;
|
|
2251
|
+
};
|
|
2252
|
+
export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2253
|
+
__typename?: 'CompassCustomTextFieldDefinition';
|
|
2254
|
+
id: Scalars['ID'];
|
|
2255
|
+
name?: Maybe<Scalars['String']>;
|
|
2256
|
+
description?: Maybe<Scalars['String']>;
|
|
2257
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2258
|
+
};
|
|
2259
|
+
export declare type CompassCustomTextFieldInput = {
|
|
2260
|
+
definitionId: Scalars['ID'];
|
|
2261
|
+
textValue?: Maybe<Scalars['String']>;
|
|
2262
|
+
};
|
|
2137
2263
|
export declare type CompassDeleteAnnouncementInput = {
|
|
2138
2264
|
cloudId: Scalars['ID'];
|
|
2139
2265
|
id: Scalars['ID'];
|
|
@@ -2144,6 +2270,15 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2144
2270
|
success: Scalars['Boolean'];
|
|
2145
2271
|
errors?: Maybe<Array<MutationError>>;
|
|
2146
2272
|
};
|
|
2273
|
+
export declare type CompassDeleteCustomFieldDefinitionInput = {
|
|
2274
|
+
id: Scalars['ID'];
|
|
2275
|
+
};
|
|
2276
|
+
export declare type CompassDeleteCustomFieldDefinitionPayload = Payload & {
|
|
2277
|
+
__typename?: 'CompassDeleteCustomFieldDefinitionPayload';
|
|
2278
|
+
success: Scalars['Boolean'];
|
|
2279
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2280
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
2281
|
+
};
|
|
2147
2282
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
2148
2283
|
id: Scalars['ID'];
|
|
2149
2284
|
};
|
|
@@ -2824,6 +2959,35 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
2824
2959
|
success: Scalars['Boolean'];
|
|
2825
2960
|
errors?: Maybe<Array<MutationError>>;
|
|
2826
2961
|
};
|
|
2962
|
+
export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
2963
|
+
id: Scalars['ID'];
|
|
2964
|
+
name?: Maybe<Scalars['String']>;
|
|
2965
|
+
description?: Maybe<Scalars['String']>;
|
|
2966
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2967
|
+
};
|
|
2968
|
+
export declare type CompassUpdateCustomFieldDefinitionInput = {
|
|
2969
|
+
booleanFieldDefinition?: Maybe<CompassUpdateCustomBooleanFieldDefinitionInput>;
|
|
2970
|
+
textFieldDefinition?: Maybe<CompassUpdateCustomTextFieldDefinitionInput>;
|
|
2971
|
+
numberFieldDefinition?: Maybe<CompassUpdateCustomNumberFieldDefinitionInput>;
|
|
2972
|
+
};
|
|
2973
|
+
export declare type CompassUpdateCustomFieldDefinitionPayload = Payload & {
|
|
2974
|
+
__typename?: 'CompassUpdateCustomFieldDefinitionPayload';
|
|
2975
|
+
success: Scalars['Boolean'];
|
|
2976
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2977
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinition>;
|
|
2978
|
+
};
|
|
2979
|
+
export declare type CompassUpdateCustomNumberFieldDefinitionInput = {
|
|
2980
|
+
id: Scalars['ID'];
|
|
2981
|
+
name?: Maybe<Scalars['String']>;
|
|
2982
|
+
description?: Maybe<Scalars['String']>;
|
|
2983
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2984
|
+
};
|
|
2985
|
+
export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
2986
|
+
id: Scalars['ID'];
|
|
2987
|
+
name?: Maybe<Scalars['String']>;
|
|
2988
|
+
description?: Maybe<Scalars['String']>;
|
|
2989
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2990
|
+
};
|
|
2827
2991
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
2828
2992
|
id: Scalars['ID'];
|
|
2829
2993
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3806,6 +3970,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
3806
3970
|
type: CompassComponentType;
|
|
3807
3971
|
ownerId?: Maybe<Scalars['ID']>;
|
|
3808
3972
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
3973
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
3809
3974
|
};
|
|
3810
3975
|
export declare type CreateCompassComponentLinkInput = {
|
|
3811
3976
|
componentId: Scalars['ID'];
|
|
@@ -5692,9 +5857,9 @@ export declare enum GrantCheckProduct {
|
|
|
5692
5857
|
Compass = "COMPASS",
|
|
5693
5858
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5694
5859
|
}
|
|
5695
|
-
export declare type HelpCenter = {
|
|
5860
|
+
export declare type HelpCenter = Node & {
|
|
5696
5861
|
__typename?: 'HelpCenter';
|
|
5697
|
-
|
|
5862
|
+
id: Scalars['ID'];
|
|
5698
5863
|
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5699
5864
|
};
|
|
5700
5865
|
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
@@ -5820,6 +5985,26 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
5820
5985
|
success: Scalars['Boolean'];
|
|
5821
5986
|
errors?: Maybe<Array<MutationError>>;
|
|
5822
5987
|
};
|
|
5988
|
+
export declare type HelpObjectStoreHelpObject = Node & {
|
|
5989
|
+
__typename?: 'HelpObjectStoreHelpObject';
|
|
5990
|
+
id: Scalars['ID'];
|
|
5991
|
+
title: Scalars['String'];
|
|
5992
|
+
description: Scalars['String'];
|
|
5993
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
5994
|
+
displayLink: Scalars['URL'];
|
|
5995
|
+
};
|
|
5996
|
+
export declare type HelpObjectStoreHelpObjectResult = HelpObjectStoreHelpObject | QueryError;
|
|
5997
|
+
export declare type HelpObjectStoreIcon = {
|
|
5998
|
+
__typename?: 'HelpObjectStoreIcon';
|
|
5999
|
+
iconUrl: Scalars['URL'];
|
|
6000
|
+
};
|
|
6001
|
+
export declare type HelpObjectStoreQueryApi = {
|
|
6002
|
+
__typename?: 'HelpObjectStoreQueryApi';
|
|
6003
|
+
helpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpObjectResult>>>;
|
|
6004
|
+
};
|
|
6005
|
+
export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
|
|
6006
|
+
helpObjectARIs: Array<Scalars['ID']>;
|
|
6007
|
+
};
|
|
5823
6008
|
export declare type HostedResourcePreSignedUrl = {
|
|
5824
6009
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5825
6010
|
uploadUrl: Scalars['String'];
|
|
@@ -6232,6 +6417,7 @@ export declare type JiraAddIssuesToFixVersionInput = {
|
|
|
6232
6417
|
};
|
|
6233
6418
|
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6234
6419
|
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6420
|
+
version?: Maybe<JiraVersion>;
|
|
6235
6421
|
success: Scalars['Boolean'];
|
|
6236
6422
|
errors?: Maybe<Array<MutationError>>;
|
|
6237
6423
|
};
|
|
@@ -8664,22 +8850,14 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8664
8850
|
};
|
|
8665
8851
|
export declare type JiraMutation = {
|
|
8666
8852
|
__typename?: 'JiraMutation';
|
|
8667
|
-
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8668
|
-
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8669
|
-
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8670
8853
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8671
8854
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8672
8855
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8673
8856
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8674
8857
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8679
|
-
};
|
|
8680
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8681
|
-
id: Scalars['ID'];
|
|
8682
|
-
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8858
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8859
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8860
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8683
8861
|
};
|
|
8684
8862
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8685
8863
|
cloudId: Scalars['ID'];
|
|
@@ -8697,6 +8875,14 @@ export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
|
8697
8875
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8698
8876
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8699
8877
|
};
|
|
8878
|
+
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
8879
|
+
id: Scalars['ID'];
|
|
8880
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8881
|
+
};
|
|
8882
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8883
|
+
id: Scalars['ID'];
|
|
8884
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8885
|
+
};
|
|
8700
8886
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8701
8887
|
__typename?: 'JiraNumberField';
|
|
8702
8888
|
id: Scalars['ID'];
|
|
@@ -9238,6 +9424,14 @@ export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload
|
|
|
9238
9424
|
errors?: Maybe<Array<MutationError>>;
|
|
9239
9425
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9240
9426
|
};
|
|
9427
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
9428
|
+
id: Scalars['ID'];
|
|
9429
|
+
};
|
|
9430
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
9431
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeletePayload';
|
|
9432
|
+
success: Scalars['Boolean'];
|
|
9433
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9434
|
+
};
|
|
9241
9435
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9242
9436
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9243
9437
|
id: Scalars['ID'];
|
|
@@ -9430,15 +9624,12 @@ export declare type JiraQuery = {
|
|
|
9430
9624
|
jiraProject?: Maybe<JiraProject>;
|
|
9431
9625
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
9432
9626
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
9433
|
-
|
|
9627
|
+
filter?: Maybe<JiraFilter>;
|
|
9628
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9629
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9630
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9434
9631
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
9435
9632
|
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
9633
|
issueByKey?: Maybe<JiraIssue>;
|
|
9443
9634
|
issueById?: Maybe<JiraIssue>;
|
|
9444
9635
|
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -9446,11 +9637,6 @@ export declare type JiraQuery = {
|
|
|
9446
9637
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9447
9638
|
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9448
9639
|
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
9640
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9455
9641
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9456
9642
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9461,6 +9647,14 @@ export declare type JiraQuery = {
|
|
|
9461
9647
|
version?: Maybe<JiraVersionResult>;
|
|
9462
9648
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9463
9649
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
9650
|
+
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9651
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9652
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9653
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9654
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9655
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9656
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9657
|
+
devOps?: Maybe<JiraDevOpsQuery>;
|
|
9464
9658
|
};
|
|
9465
9659
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9466
9660
|
id: Scalars['ID'];
|
|
@@ -9480,39 +9674,34 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
9480
9674
|
after?: Maybe<Scalars['String']>;
|
|
9481
9675
|
before?: Maybe<Scalars['String']>;
|
|
9482
9676
|
};
|
|
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 = {
|
|
9677
|
+
export declare type JiraQueryFilterArgs = {
|
|
9500
9678
|
id: Scalars['ID'];
|
|
9501
9679
|
};
|
|
9502
|
-
export declare type
|
|
9680
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9503
9681
|
cloudId: Scalars['ID'];
|
|
9504
|
-
|
|
9505
|
-
|
|
9682
|
+
first?: Maybe<Scalars['Int']>;
|
|
9683
|
+
after?: Maybe<Scalars['String']>;
|
|
9684
|
+
last?: Maybe<Scalars['Int']>;
|
|
9685
|
+
before?: Maybe<Scalars['String']>;
|
|
9506
9686
|
};
|
|
9507
|
-
export declare type
|
|
9687
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9508
9688
|
cloudId: Scalars['ID'];
|
|
9509
|
-
|
|
9510
|
-
options?: Maybe<JiraIssueSearchOptions>;
|
|
9689
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9511
9690
|
first?: Maybe<Scalars['Int']>;
|
|
9512
9691
|
after?: Maybe<Scalars['String']>;
|
|
9513
9692
|
last?: Maybe<Scalars['Int']>;
|
|
9514
9693
|
before?: Maybe<Scalars['String']>;
|
|
9515
9694
|
};
|
|
9695
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9696
|
+
cloudId: Scalars['ID'];
|
|
9697
|
+
keys: Array<Scalars['String']>;
|
|
9698
|
+
};
|
|
9699
|
+
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
9700
|
+
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9701
|
+
};
|
|
9702
|
+
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9703
|
+
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9704
|
+
};
|
|
9516
9705
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
9517
9706
|
key: Scalars['String'];
|
|
9518
9707
|
cloudId: Scalars['ID'];
|
|
@@ -9532,31 +9721,6 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
9532
9721
|
export declare type JiraQueryCommentsByIdArgs = {
|
|
9533
9722
|
input: Array<JiraCommentByIdInput>;
|
|
9534
9723
|
};
|
|
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
9724
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9561
9725
|
cloudId: Scalars['ID'];
|
|
9562
9726
|
};
|
|
@@ -9614,6 +9778,36 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
9614
9778
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
9615
9779
|
versionId: Scalars['ID'];
|
|
9616
9780
|
};
|
|
9781
|
+
export declare type JiraQueryJqlBuilderArgs = {
|
|
9782
|
+
cloudId: Scalars['ID'];
|
|
9783
|
+
};
|
|
9784
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9785
|
+
cloudId: Scalars['ID'];
|
|
9786
|
+
jql: Scalars['String'];
|
|
9787
|
+
};
|
|
9788
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9789
|
+
id: Scalars['ID'];
|
|
9790
|
+
};
|
|
9791
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9792
|
+
ids: Array<Scalars['ID']>;
|
|
9793
|
+
};
|
|
9794
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9795
|
+
id: Scalars['ID'];
|
|
9796
|
+
};
|
|
9797
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
9798
|
+
cloudId: Scalars['ID'];
|
|
9799
|
+
namespace?: Maybe<Scalars['String']>;
|
|
9800
|
+
viewId?: Maybe<Scalars['String']>;
|
|
9801
|
+
};
|
|
9802
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9803
|
+
cloudId: Scalars['ID'];
|
|
9804
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
9805
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9806
|
+
first?: Maybe<Scalars['Int']>;
|
|
9807
|
+
after?: Maybe<Scalars['String']>;
|
|
9808
|
+
last?: Maybe<Scalars['Int']>;
|
|
9809
|
+
before?: Maybe<Scalars['String']>;
|
|
9810
|
+
};
|
|
9617
9811
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9618
9812
|
__typename?: 'JiraRadioSelectField';
|
|
9619
9813
|
id: Scalars['ID'];
|
|
@@ -10481,6 +10675,8 @@ export declare type JiraSprint = Node & {
|
|
|
10481
10675
|
boardName?: Maybe<Scalars['String']>;
|
|
10482
10676
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10483
10677
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
10678
|
+
completionDate?: Maybe<Scalars['DateTime']>;
|
|
10679
|
+
goal?: Maybe<Scalars['String']>;
|
|
10484
10680
|
};
|
|
10485
10681
|
export declare type JiraSprintConnection = {
|
|
10486
10682
|
__typename?: 'JiraSprintConnection';
|
|
@@ -11382,15 +11578,8 @@ export declare type Mutation = {
|
|
|
11382
11578
|
__typename?: 'Mutation';
|
|
11383
11579
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11384
11580
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11581
|
+
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11385
11582
|
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
11583
|
jsw?: Maybe<JswMutation>;
|
|
11395
11584
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11396
11585
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -11418,6 +11607,14 @@ export declare type Mutation = {
|
|
|
11418
11607
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11419
11608
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11420
11609
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
11610
|
+
createApp?: Maybe<CreateAppResponse>;
|
|
11611
|
+
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11612
|
+
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11613
|
+
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11614
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
11615
|
+
createReleaseNote: ContentPlatformReleaseNote;
|
|
11616
|
+
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11617
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11421
11618
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11422
11619
|
devOps?: Maybe<DevOpsMutation>;
|
|
11423
11620
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -11437,6 +11634,7 @@ export declare type Mutation = {
|
|
|
11437
11634
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11438
11635
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11439
11636
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
11637
|
+
jira?: Maybe<JiraMutation>;
|
|
11440
11638
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
11441
11639
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
11442
11640
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -11445,11 +11643,10 @@ export declare type Mutation = {
|
|
|
11445
11643
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
11446
11644
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
11447
11645
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
11448
|
-
jira?: Maybe<JiraMutation>;
|
|
11449
11646
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11450
11647
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11451
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11452
11648
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11649
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11453
11650
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11454
11651
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
11455
11652
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
@@ -11502,20 +11699,20 @@ export declare type Mutation = {
|
|
|
11502
11699
|
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
11503
11700
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
11504
11701
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11702
|
+
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11703
|
+
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11505
11704
|
installApp?: Maybe<AppInstallationResponse>;
|
|
11506
11705
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
11507
11706
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
11508
11707
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
11509
11708
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
11510
|
-
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11511
|
-
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11512
|
-
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11513
11709
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
11514
11710
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
11515
11711
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
11516
11712
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11517
11713
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11518
11714
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11715
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11519
11716
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11520
11717
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11521
11718
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
@@ -11523,51 +11720,8 @@ export declare type Mutation = {
|
|
|
11523
11720
|
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11524
11721
|
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11525
11722
|
};
|
|
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;
|
|
11723
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11724
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
11571
11725
|
};
|
|
11572
11726
|
export declare type MutationCreateColumnArgs = {
|
|
11573
11727
|
input?: Maybe<CreateColumnInput>;
|
|
@@ -11647,6 +11801,52 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
11647
11801
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11648
11802
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11649
11803
|
};
|
|
11804
|
+
export declare type MutationCreateAppArgs = {
|
|
11805
|
+
input: CreateAppInput;
|
|
11806
|
+
};
|
|
11807
|
+
export declare type MutationUpdateAppDetailsArgs = {
|
|
11808
|
+
input: UpdateAppDetailsInput;
|
|
11809
|
+
};
|
|
11810
|
+
export declare type MutationDeleteAppArgs = {
|
|
11811
|
+
input: DeleteAppInput;
|
|
11812
|
+
};
|
|
11813
|
+
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11814
|
+
input: UpdateAtlassianOAuthClientInput;
|
|
11815
|
+
};
|
|
11816
|
+
export declare type MutationCreateReleaseNoteArgs = {
|
|
11817
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11818
|
+
title?: Maybe<Scalars['String']>;
|
|
11819
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11820
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11821
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11822
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11823
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11824
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11825
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11826
|
+
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11827
|
+
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11828
|
+
description: Scalars['JSON'];
|
|
11829
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11830
|
+
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11831
|
+
};
|
|
11832
|
+
export declare type MutationPublishReleaseNoteArgs = {
|
|
11833
|
+
id: Scalars['String'];
|
|
11834
|
+
};
|
|
11835
|
+
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11836
|
+
id: Scalars['String'];
|
|
11837
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11838
|
+
title?: Maybe<Scalars['String']>;
|
|
11839
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11840
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11841
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11842
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11843
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11844
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11845
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11846
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11847
|
+
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11848
|
+
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11849
|
+
};
|
|
11650
11850
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
11651
11851
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
11652
11852
|
};
|
|
@@ -11893,6 +12093,12 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
11893
12093
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
11894
12094
|
id: Scalars['ID'];
|
|
11895
12095
|
};
|
|
12096
|
+
export declare type MutationWatchMarketplaceAppArgs = {
|
|
12097
|
+
id: Scalars['ID'];
|
|
12098
|
+
};
|
|
12099
|
+
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
12100
|
+
id: Scalars['ID'];
|
|
12101
|
+
};
|
|
11896
12102
|
export declare type MutationInstallAppArgs = {
|
|
11897
12103
|
input: AppInstallationInput;
|
|
11898
12104
|
};
|
|
@@ -11908,12 +12114,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
11908
12114
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
11909
12115
|
input: AppUnsubscribeInput;
|
|
11910
12116
|
};
|
|
11911
|
-
export declare type MutationWatchMarketplaceAppArgs = {
|
|
11912
|
-
id: Scalars['ID'];
|
|
11913
|
-
};
|
|
11914
|
-
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
11915
|
-
id: Scalars['ID'];
|
|
11916
|
-
};
|
|
11917
12117
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
11918
12118
|
input: CreateAppDeploymentUrlInput;
|
|
11919
12119
|
};
|
|
@@ -13173,35 +13373,36 @@ export declare type ProjectAvatars = {
|
|
|
13173
13373
|
};
|
|
13174
13374
|
export declare type Query = {
|
|
13175
13375
|
__typename?: 'Query';
|
|
13176
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13177
13376
|
echo?: Maybe<Scalars['String']>;
|
|
13178
13377
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
13179
13378
|
node?: Maybe<Node>;
|
|
13379
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13380
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13180
13381
|
activities?: Maybe<Activities>;
|
|
13181
13382
|
activity?: Maybe<Activity>;
|
|
13182
|
-
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13183
13383
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13184
|
-
bitbucket?: Maybe<BitbucketQuery>;
|
|
13185
13384
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13385
|
+
bitbucket?: Maybe<BitbucketQuery>;
|
|
13186
13386
|
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>>;
|
|
13387
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
13194
13388
|
jsw?: Maybe<JswQuery>;
|
|
13195
13389
|
boardScope?: Maybe<BoardScope>;
|
|
13196
13390
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13197
13391
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13392
|
+
apps?: Maybe<AppConnection>;
|
|
13393
|
+
app?: Maybe<App>;
|
|
13394
|
+
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13395
|
+
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13396
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13397
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
13398
|
+
practicePage: ContentPlatformPracticePage;
|
|
13198
13399
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13199
13400
|
search?: Maybe<SearchQueryApi>;
|
|
13200
|
-
|
|
13401
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
13201
13402
|
me: AuthenticationContext;
|
|
13202
13403
|
user?: Maybe<User>;
|
|
13203
13404
|
users?: Maybe<Array<User>>;
|
|
13204
|
-
|
|
13405
|
+
devOps?: Maybe<DevOps>;
|
|
13205
13406
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13206
13407
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13207
13408
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
@@ -13218,27 +13419,27 @@ export declare type Query = {
|
|
|
13218
13419
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13219
13420
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13220
13421
|
codeInJira?: Maybe<CodeInJira>;
|
|
13221
|
-
|
|
13422
|
+
jira?: Maybe<JiraQuery>;
|
|
13222
13423
|
devOpsService?: Maybe<DevOpsService>;
|
|
13223
13424
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13224
13425
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
13225
13426
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
13226
13427
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
13227
13428
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
13228
|
-
|
|
13429
|
+
avocado?: Maybe<Avocado>;
|
|
13229
13430
|
appLogs?: Maybe<AppLogConnection>;
|
|
13230
13431
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
13231
13432
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
13232
13433
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
13233
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13234
13434
|
team?: Maybe<TeamQuery>;
|
|
13435
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13235
13436
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
13236
13437
|
testing?: Maybe<Testing>;
|
|
13237
13438
|
movie?: Maybe<TestingMovie>;
|
|
13238
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13239
13439
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
13240
13440
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
13241
13441
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13442
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13242
13443
|
polarisProject?: Maybe<PolarisProject>;
|
|
13243
13444
|
polarisView?: Maybe<PolarisView>;
|
|
13244
13445
|
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
@@ -13255,20 +13456,20 @@ export declare type Query = {
|
|
|
13255
13456
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13256
13457
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13257
13458
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13258
|
-
dvcs?: Maybe<DvcsQuery>;
|
|
13259
13459
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13460
|
+
dvcs?: Maybe<DvcsQuery>;
|
|
13260
13461
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
13261
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13262
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
13263
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
13264
13462
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
13265
13463
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
13266
13464
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
13267
13465
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
13268
13466
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
13269
13467
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13270
|
-
|
|
13468
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
13469
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13470
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
13271
13471
|
appDeployment?: Maybe<AppDeployment>;
|
|
13472
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13272
13473
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13273
13474
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13274
13475
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
@@ -13281,23 +13482,14 @@ export declare type QueryNodeArgs = {
|
|
|
13281
13482
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13282
13483
|
id: Scalars['ID'];
|
|
13283
13484
|
};
|
|
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']>;
|
|
13485
|
+
export declare type QueryBoardScopeArgs = {
|
|
13486
|
+
boardId: Scalars['ID'];
|
|
13294
13487
|
};
|
|
13295
|
-
export declare type
|
|
13296
|
-
|
|
13297
|
-
first?: Maybe<Scalars['Int']>;
|
|
13488
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
13489
|
+
issueId: Scalars['ID'];
|
|
13298
13490
|
};
|
|
13299
|
-
export declare type
|
|
13300
|
-
|
|
13491
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13492
|
+
projectAri: Scalars['ID'];
|
|
13301
13493
|
};
|
|
13302
13494
|
export declare type QueryAppsArgs = {
|
|
13303
13495
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13312,14 +13504,23 @@ export declare type QueryAppArgs = {
|
|
|
13312
13504
|
export declare type QueryAppHostServicesArgs = {
|
|
13313
13505
|
filter?: Maybe<AppServicesFilter>;
|
|
13314
13506
|
};
|
|
13315
|
-
export declare type
|
|
13316
|
-
|
|
13507
|
+
export declare type QueryReleaseNotesArgs = {
|
|
13508
|
+
after?: Maybe<Scalars['String']>;
|
|
13509
|
+
first?: Maybe<Scalars['Int']>;
|
|
13510
|
+
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13511
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13512
|
+
orderBy?: Maybe<Scalars['String']>;
|
|
13317
13513
|
};
|
|
13318
|
-
export declare type
|
|
13319
|
-
|
|
13514
|
+
export declare type QueryReleaseNoteArgs = {
|
|
13515
|
+
id: Scalars['String'];
|
|
13516
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13320
13517
|
};
|
|
13321
|
-
export declare type
|
|
13322
|
-
|
|
13518
|
+
export declare type QueryPracticePagesArgs = {
|
|
13519
|
+
after?: Maybe<Scalars['String']>;
|
|
13520
|
+
first?: Maybe<Scalars['Int']>;
|
|
13521
|
+
};
|
|
13522
|
+
export declare type QueryPracticePageArgs = {
|
|
13523
|
+
id: Scalars['String'];
|
|
13323
13524
|
};
|
|
13324
13525
|
export declare type QueryUserArgs = {
|
|
13325
13526
|
accountId: Scalars['ID'];
|
|
@@ -13533,9 +13734,6 @@ export declare type QueryWebTriggerUrlsByAppContextArgs = {
|
|
|
13533
13734
|
envId: Scalars['ID'];
|
|
13534
13735
|
contextId: Scalars['ID'];
|
|
13535
13736
|
};
|
|
13536
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
13537
|
-
id: Scalars['ID'];
|
|
13538
|
-
};
|
|
13539
13737
|
export declare type QueryMarketplacePartnerArgs = {
|
|
13540
13738
|
id: Scalars['ID'];
|
|
13541
13739
|
};
|
|
@@ -13553,6 +13751,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
13553
13751
|
hostingType: AtlassianProductHostingType;
|
|
13554
13752
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
13555
13753
|
};
|
|
13754
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
13755
|
+
id: Scalars['ID'];
|
|
13756
|
+
};
|
|
13556
13757
|
export declare type QueryAppDeploymentArgs = {
|
|
13557
13758
|
appId: Scalars['ID'];
|
|
13558
13759
|
environmentKey: Scalars['String'];
|
|
@@ -14996,6 +15197,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
14996
15197
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14997
15198
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14998
15199
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
15200
|
+
updateSupportRequest?: Maybe<SupportRequest>;
|
|
14999
15201
|
};
|
|
15000
15202
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
15001
15203
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -15015,6 +15217,9 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
|
|
|
15015
15217
|
sen?: Maybe<Scalars['String']>;
|
|
15016
15218
|
operation: SupportRequestNamedContactOperation;
|
|
15017
15219
|
};
|
|
15220
|
+
export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
|
|
15221
|
+
input: SupportRequestUpdateInput;
|
|
15222
|
+
};
|
|
15018
15223
|
export declare type SupportRequestCatalogQueryApi = {
|
|
15019
15224
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
15020
15225
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -15054,7 +15259,7 @@ export declare type SupportRequestField = {
|
|
|
15054
15259
|
__typename?: 'SupportRequestField';
|
|
15055
15260
|
id: Scalars['String'];
|
|
15056
15261
|
label: Scalars['String'];
|
|
15057
|
-
value
|
|
15262
|
+
value?: Maybe<SupportRequestFieldValue>;
|
|
15058
15263
|
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15059
15264
|
editable?: Maybe<Scalars['Boolean']>;
|
|
15060
15265
|
};
|
|
@@ -15066,7 +15271,7 @@ export declare enum SupportRequestFieldDataType {
|
|
|
15066
15271
|
}
|
|
15067
15272
|
export declare type SupportRequestFieldValue = {
|
|
15068
15273
|
__typename?: 'SupportRequestFieldValue';
|
|
15069
|
-
value
|
|
15274
|
+
value?: Maybe<Scalars['String']>;
|
|
15070
15275
|
};
|
|
15071
15276
|
export declare type SupportRequestHierarchyRequest = {
|
|
15072
15277
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
@@ -15195,6 +15400,14 @@ export declare type SupportRequestTransitions = {
|
|
|
15195
15400
|
lastPage: Scalars['Boolean'];
|
|
15196
15401
|
values: Array<SupportRequestTransition>;
|
|
15197
15402
|
};
|
|
15403
|
+
export declare type SupportRequestUpdateFieldInput = {
|
|
15404
|
+
id: Scalars['String'];
|
|
15405
|
+
value: Scalars['String'];
|
|
15406
|
+
};
|
|
15407
|
+
export declare type SupportRequestUpdateInput = {
|
|
15408
|
+
requestKey: Scalars['ID'];
|
|
15409
|
+
experienceFields?: Maybe<Array<SupportRequestUpdateFieldInput>>;
|
|
15410
|
+
};
|
|
15198
15411
|
export declare type SupportRequestUser = {
|
|
15199
15412
|
__typename?: 'SupportRequestUser';
|
|
15200
15413
|
user?: Maybe<User>;
|
|
@@ -15747,6 +15960,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
15747
15960
|
description?: Maybe<Scalars['String']>;
|
|
15748
15961
|
ownerId?: Maybe<Scalars['ID']>;
|
|
15749
15962
|
fields?: Maybe<Array<UpdateCompassFieldInput>>;
|
|
15963
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
15750
15964
|
};
|
|
15751
15965
|
export declare type UpdateCompassComponentLinkInput = {
|
|
15752
15966
|
componentId: Scalars['ID'];
|
|
@@ -16181,7 +16395,7 @@ export declare type UserGrant = {
|
|
|
16181
16395
|
oauthClientId: Scalars['ID'];
|
|
16182
16396
|
appId?: Maybe<Scalars['ID']>;
|
|
16183
16397
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
16184
|
-
scopes
|
|
16398
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
16185
16399
|
};
|
|
16186
16400
|
export declare type UserGrantAppDetails = {
|
|
16187
16401
|
__typename?: 'UserGrantAppDetails';
|