@forge/cli-shared 2.4.0-next.6 → 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';
|
|
@@ -1460,7 +1461,7 @@ export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
1460
1461
|
cloudId: Scalars['ID'];
|
|
1461
1462
|
userId: Scalars['ID'];
|
|
1462
1463
|
oauthClientId: Scalars['ID'];
|
|
1463
|
-
scopes
|
|
1464
|
+
scopes: Array<Scalars['String']>;
|
|
1464
1465
|
};
|
|
1465
1466
|
export declare type ChildCardsMetadata = {
|
|
1466
1467
|
__typename?: 'ChildCardsMetadata';
|
|
@@ -1678,6 +1679,9 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1678
1679
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1679
1680
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1680
1681
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1682
|
+
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1683
|
+
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
1684
|
+
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
1681
1685
|
};
|
|
1682
1686
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1683
1687
|
cloudId: Scalars['ID'];
|
|
@@ -1827,6 +1831,15 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
1827
1831
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1828
1832
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1829
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
|
+
};
|
|
1830
1843
|
export declare type CompassCatalogQueryApi = {
|
|
1831
1844
|
__typename?: 'CompassCatalogQueryApi';
|
|
1832
1845
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1841,6 +1854,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1841
1854
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1842
1855
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1843
1856
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1857
|
+
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
1844
1858
|
};
|
|
1845
1859
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1846
1860
|
id: Scalars['ID'];
|
|
@@ -1888,6 +1902,9 @@ export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
1888
1902
|
eventType: CompassEventType;
|
|
1889
1903
|
externalEventSourceId: Scalars['ID'];
|
|
1890
1904
|
};
|
|
1905
|
+
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
1906
|
+
query: CompassCustomFieldDefinitionsQuery;
|
|
1907
|
+
};
|
|
1891
1908
|
export declare type CompassChangeMetadata = {
|
|
1892
1909
|
__typename?: 'CompassChangeMetadata';
|
|
1893
1910
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1917,6 +1934,7 @@ export declare type CompassComponent = Node & {
|
|
|
1917
1934
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1918
1935
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1919
1936
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1937
|
+
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1920
1938
|
};
|
|
1921
1939
|
export declare type CompassComponentRelationshipsArgs = {
|
|
1922
1940
|
query?: Maybe<CompassRelationshipQuery>;
|
|
@@ -1993,6 +2011,12 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1993
2011
|
externalEventSourceId: Scalars['ID'];
|
|
1994
2012
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1995
2013
|
};
|
|
2014
|
+
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2015
|
+
cloudId: Scalars['ID'];
|
|
2016
|
+
name: Scalars['String'];
|
|
2017
|
+
description?: Maybe<Scalars['String']>;
|
|
2018
|
+
componentTypes: Array<CompassComponentType>;
|
|
2019
|
+
};
|
|
1996
2020
|
export declare type CompassCreateCustomEventInput = {
|
|
1997
2021
|
displayName: Scalars['String'];
|
|
1998
2022
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2002,6 +2026,29 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
2002
2026
|
externalEventSourceId: Scalars['ID'];
|
|
2003
2027
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
2004
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
|
+
};
|
|
2005
2052
|
export declare type CompassCreateDeploymentEventInput = {
|
|
2006
2053
|
updateSequenceNumber: Scalars['Long'];
|
|
2007
2054
|
displayName: Scalars['String'];
|
|
@@ -2111,6 +2158,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
2111
2158
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
2112
2159
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
2113
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
|
+
};
|
|
2114
2177
|
export declare type CompassCustomEvent = CompassEvent & {
|
|
2115
2178
|
__typename?: 'CompassCustomEvent';
|
|
2116
2179
|
eventType: CompassEventType;
|
|
@@ -2135,6 +2198,68 @@ export declare type CompassCustomEventPropertiesInput = {
|
|
|
2135
2198
|
id: Scalars['ID'];
|
|
2136
2199
|
icon: CompassCustomEventIcon;
|
|
2137
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
|
+
};
|
|
2138
2263
|
export declare type CompassDeleteAnnouncementInput = {
|
|
2139
2264
|
cloudId: Scalars['ID'];
|
|
2140
2265
|
id: Scalars['ID'];
|
|
@@ -2145,6 +2270,15 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2145
2270
|
success: Scalars['Boolean'];
|
|
2146
2271
|
errors?: Maybe<Array<MutationError>>;
|
|
2147
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
|
+
};
|
|
2148
2282
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
2149
2283
|
id: Scalars['ID'];
|
|
2150
2284
|
};
|
|
@@ -2825,6 +2959,35 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
2825
2959
|
success: Scalars['Boolean'];
|
|
2826
2960
|
errors?: Maybe<Array<MutationError>>;
|
|
2827
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
|
+
};
|
|
2828
2991
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
2829
2992
|
id: Scalars['ID'];
|
|
2830
2993
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3807,6 +3970,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
3807
3970
|
type: CompassComponentType;
|
|
3808
3971
|
ownerId?: Maybe<Scalars['ID']>;
|
|
3809
3972
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
3973
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
3810
3974
|
};
|
|
3811
3975
|
export declare type CreateCompassComponentLinkInput = {
|
|
3812
3976
|
componentId: Scalars['ID'];
|
|
@@ -5693,9 +5857,9 @@ export declare enum GrantCheckProduct {
|
|
|
5693
5857
|
Compass = "COMPASS",
|
|
5694
5858
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5695
5859
|
}
|
|
5696
|
-
export declare type HelpCenter = {
|
|
5860
|
+
export declare type HelpCenter = Node & {
|
|
5697
5861
|
__typename?: 'HelpCenter';
|
|
5698
|
-
|
|
5862
|
+
id: Scalars['ID'];
|
|
5699
5863
|
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5700
5864
|
};
|
|
5701
5865
|
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
@@ -5821,6 +5985,26 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
5821
5985
|
success: Scalars['Boolean'];
|
|
5822
5986
|
errors?: Maybe<Array<MutationError>>;
|
|
5823
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
|
+
};
|
|
5824
6008
|
export declare type HostedResourcePreSignedUrl = {
|
|
5825
6009
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5826
6010
|
uploadUrl: Scalars['String'];
|
|
@@ -6233,6 +6417,7 @@ export declare type JiraAddIssuesToFixVersionInput = {
|
|
|
6233
6417
|
};
|
|
6234
6418
|
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6235
6419
|
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6420
|
+
version?: Maybe<JiraVersion>;
|
|
6236
6421
|
success: Scalars['Boolean'];
|
|
6237
6422
|
errors?: Maybe<Array<MutationError>>;
|
|
6238
6423
|
};
|
|
@@ -8665,22 +8850,14 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8665
8850
|
};
|
|
8666
8851
|
export declare type JiraMutation = {
|
|
8667
8852
|
__typename?: 'JiraMutation';
|
|
8668
|
-
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8669
|
-
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8670
|
-
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8671
8853
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8672
8854
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8673
8855
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8674
8856
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8675
8857
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
|
|
8679
|
-
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8680
|
-
};
|
|
8681
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8682
|
-
id: Scalars['ID'];
|
|
8683
|
-
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8858
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8859
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8860
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8684
8861
|
};
|
|
8685
8862
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8686
8863
|
cloudId: Scalars['ID'];
|
|
@@ -8698,6 +8875,14 @@ export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
|
8698
8875
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8699
8876
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8700
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
|
+
};
|
|
8701
8886
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8702
8887
|
__typename?: 'JiraNumberField';
|
|
8703
8888
|
id: Scalars['ID'];
|
|
@@ -9239,6 +9424,14 @@ export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload
|
|
|
9239
9424
|
errors?: Maybe<Array<MutationError>>;
|
|
9240
9425
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9241
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
|
+
};
|
|
9242
9435
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9243
9436
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9244
9437
|
id: Scalars['ID'];
|
|
@@ -9431,15 +9624,12 @@ export declare type JiraQuery = {
|
|
|
9431
9624
|
jiraProject?: Maybe<JiraProject>;
|
|
9432
9625
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
9433
9626
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
9434
|
-
|
|
9627
|
+
filter?: Maybe<JiraFilter>;
|
|
9628
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9629
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9630
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9435
9631
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
9436
9632
|
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
9633
|
issueByKey?: Maybe<JiraIssue>;
|
|
9444
9634
|
issueById?: Maybe<JiraIssue>;
|
|
9445
9635
|
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -9447,11 +9637,6 @@ export declare type JiraQuery = {
|
|
|
9447
9637
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9448
9638
|
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9449
9639
|
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
9640
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9456
9641
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9457
9642
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9462,6 +9647,14 @@ export declare type JiraQuery = {
|
|
|
9462
9647
|
version?: Maybe<JiraVersionResult>;
|
|
9463
9648
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9464
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>;
|
|
9465
9658
|
};
|
|
9466
9659
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9467
9660
|
id: Scalars['ID'];
|
|
@@ -9481,39 +9674,34 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
9481
9674
|
after?: Maybe<Scalars['String']>;
|
|
9482
9675
|
before?: Maybe<Scalars['String']>;
|
|
9483
9676
|
};
|
|
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 = {
|
|
9677
|
+
export declare type JiraQueryFilterArgs = {
|
|
9501
9678
|
id: Scalars['ID'];
|
|
9502
9679
|
};
|
|
9503
|
-
export declare type
|
|
9680
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9504
9681
|
cloudId: Scalars['ID'];
|
|
9505
|
-
|
|
9506
|
-
|
|
9682
|
+
first?: Maybe<Scalars['Int']>;
|
|
9683
|
+
after?: Maybe<Scalars['String']>;
|
|
9684
|
+
last?: Maybe<Scalars['Int']>;
|
|
9685
|
+
before?: Maybe<Scalars['String']>;
|
|
9507
9686
|
};
|
|
9508
|
-
export declare type
|
|
9687
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9509
9688
|
cloudId: Scalars['ID'];
|
|
9510
|
-
|
|
9511
|
-
options?: Maybe<JiraIssueSearchOptions>;
|
|
9689
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9512
9690
|
first?: Maybe<Scalars['Int']>;
|
|
9513
9691
|
after?: Maybe<Scalars['String']>;
|
|
9514
9692
|
last?: Maybe<Scalars['Int']>;
|
|
9515
9693
|
before?: Maybe<Scalars['String']>;
|
|
9516
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
|
+
};
|
|
9517
9705
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
9518
9706
|
key: Scalars['String'];
|
|
9519
9707
|
cloudId: Scalars['ID'];
|
|
@@ -9533,31 +9721,6 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
9533
9721
|
export declare type JiraQueryCommentsByIdArgs = {
|
|
9534
9722
|
input: Array<JiraCommentByIdInput>;
|
|
9535
9723
|
};
|
|
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
9724
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9562
9725
|
cloudId: Scalars['ID'];
|
|
9563
9726
|
};
|
|
@@ -9615,6 +9778,36 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
9615
9778
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
9616
9779
|
versionId: Scalars['ID'];
|
|
9617
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
|
+
};
|
|
9618
9811
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9619
9812
|
__typename?: 'JiraRadioSelectField';
|
|
9620
9813
|
id: Scalars['ID'];
|
|
@@ -10482,6 +10675,8 @@ export declare type JiraSprint = Node & {
|
|
|
10482
10675
|
boardName?: Maybe<Scalars['String']>;
|
|
10483
10676
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10484
10677
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
10678
|
+
completionDate?: Maybe<Scalars['DateTime']>;
|
|
10679
|
+
goal?: Maybe<Scalars['String']>;
|
|
10485
10680
|
};
|
|
10486
10681
|
export declare type JiraSprintConnection = {
|
|
10487
10682
|
__typename?: 'JiraSprintConnection';
|
|
@@ -11383,15 +11578,8 @@ export declare type Mutation = {
|
|
|
11383
11578
|
__typename?: 'Mutation';
|
|
11384
11579
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11385
11580
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11581
|
+
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11386
11582
|
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
11583
|
jsw?: Maybe<JswMutation>;
|
|
11396
11584
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11397
11585
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -11419,6 +11607,14 @@ export declare type Mutation = {
|
|
|
11419
11607
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11420
11608
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11421
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;
|
|
11422
11618
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11423
11619
|
devOps?: Maybe<DevOpsMutation>;
|
|
11424
11620
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -11438,6 +11634,7 @@ export declare type Mutation = {
|
|
|
11438
11634
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11439
11635
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11440
11636
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
11637
|
+
jira?: Maybe<JiraMutation>;
|
|
11441
11638
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
11442
11639
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
11443
11640
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -11446,11 +11643,10 @@ export declare type Mutation = {
|
|
|
11446
11643
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
11447
11644
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
11448
11645
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
11449
|
-
jira?: Maybe<JiraMutation>;
|
|
11450
11646
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11451
11647
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11452
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11453
11648
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11649
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11454
11650
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11455
11651
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
11456
11652
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
@@ -11503,20 +11699,20 @@ export declare type Mutation = {
|
|
|
11503
11699
|
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
11504
11700
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
11505
11701
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11702
|
+
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11703
|
+
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11506
11704
|
installApp?: Maybe<AppInstallationResponse>;
|
|
11507
11705
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
11508
11706
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
11509
11707
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
11510
11708
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
11511
|
-
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11512
|
-
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11513
|
-
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11514
11709
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
11515
11710
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
11516
11711
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
11517
11712
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11518
11713
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11519
11714
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11715
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11520
11716
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11521
11717
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11522
11718
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
@@ -11524,51 +11720,8 @@ export declare type Mutation = {
|
|
|
11524
11720
|
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11525
11721
|
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11526
11722
|
};
|
|
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;
|
|
11723
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11724
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
11572
11725
|
};
|
|
11573
11726
|
export declare type MutationCreateColumnArgs = {
|
|
11574
11727
|
input?: Maybe<CreateColumnInput>;
|
|
@@ -11648,6 +11801,52 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
11648
11801
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11649
11802
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11650
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
|
+
};
|
|
11651
11850
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
11652
11851
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
11653
11852
|
};
|
|
@@ -11894,6 +12093,12 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
11894
12093
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
11895
12094
|
id: Scalars['ID'];
|
|
11896
12095
|
};
|
|
12096
|
+
export declare type MutationWatchMarketplaceAppArgs = {
|
|
12097
|
+
id: Scalars['ID'];
|
|
12098
|
+
};
|
|
12099
|
+
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
12100
|
+
id: Scalars['ID'];
|
|
12101
|
+
};
|
|
11897
12102
|
export declare type MutationInstallAppArgs = {
|
|
11898
12103
|
input: AppInstallationInput;
|
|
11899
12104
|
};
|
|
@@ -11909,12 +12114,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
11909
12114
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
11910
12115
|
input: AppUnsubscribeInput;
|
|
11911
12116
|
};
|
|
11912
|
-
export declare type MutationWatchMarketplaceAppArgs = {
|
|
11913
|
-
id: Scalars['ID'];
|
|
11914
|
-
};
|
|
11915
|
-
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
11916
|
-
id: Scalars['ID'];
|
|
11917
|
-
};
|
|
11918
12117
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
11919
12118
|
input: CreateAppDeploymentUrlInput;
|
|
11920
12119
|
};
|
|
@@ -13174,35 +13373,36 @@ export declare type ProjectAvatars = {
|
|
|
13174
13373
|
};
|
|
13175
13374
|
export declare type Query = {
|
|
13176
13375
|
__typename?: 'Query';
|
|
13177
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13178
13376
|
echo?: Maybe<Scalars['String']>;
|
|
13179
13377
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
13180
13378
|
node?: Maybe<Node>;
|
|
13379
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13380
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13181
13381
|
activities?: Maybe<Activities>;
|
|
13182
13382
|
activity?: Maybe<Activity>;
|
|
13183
|
-
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13184
13383
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13185
|
-
bitbucket?: Maybe<BitbucketQuery>;
|
|
13186
13384
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13385
|
+
bitbucket?: Maybe<BitbucketQuery>;
|
|
13187
13386
|
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>>;
|
|
13387
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
13195
13388
|
jsw?: Maybe<JswQuery>;
|
|
13196
13389
|
boardScope?: Maybe<BoardScope>;
|
|
13197
13390
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13198
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;
|
|
13199
13399
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13200
13400
|
search?: Maybe<SearchQueryApi>;
|
|
13201
|
-
|
|
13401
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
13202
13402
|
me: AuthenticationContext;
|
|
13203
13403
|
user?: Maybe<User>;
|
|
13204
13404
|
users?: Maybe<Array<User>>;
|
|
13205
|
-
|
|
13405
|
+
devOps?: Maybe<DevOps>;
|
|
13206
13406
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13207
13407
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13208
13408
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
@@ -13219,27 +13419,27 @@ export declare type Query = {
|
|
|
13219
13419
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13220
13420
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13221
13421
|
codeInJira?: Maybe<CodeInJira>;
|
|
13222
|
-
|
|
13422
|
+
jira?: Maybe<JiraQuery>;
|
|
13223
13423
|
devOpsService?: Maybe<DevOpsService>;
|
|
13224
13424
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13225
13425
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
13226
13426
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
13227
13427
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
13228
13428
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
13229
|
-
|
|
13429
|
+
avocado?: Maybe<Avocado>;
|
|
13230
13430
|
appLogs?: Maybe<AppLogConnection>;
|
|
13231
13431
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
13232
13432
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
13233
13433
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
13234
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13235
13434
|
team?: Maybe<TeamQuery>;
|
|
13435
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
13236
13436
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
13237
13437
|
testing?: Maybe<Testing>;
|
|
13238
13438
|
movie?: Maybe<TestingMovie>;
|
|
13239
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13240
13439
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
13241
13440
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
13242
13441
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13442
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
13243
13443
|
polarisProject?: Maybe<PolarisProject>;
|
|
13244
13444
|
polarisView?: Maybe<PolarisView>;
|
|
13245
13445
|
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
@@ -13256,20 +13456,20 @@ export declare type Query = {
|
|
|
13256
13456
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13257
13457
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13258
13458
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13259
|
-
dvcs?: Maybe<DvcsQuery>;
|
|
13260
13459
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13460
|
+
dvcs?: Maybe<DvcsQuery>;
|
|
13261
13461
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
13262
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13263
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
13264
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
13265
13462
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
13266
13463
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
13267
13464
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
13268
13465
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
13269
13466
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
13270
13467
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13271
|
-
|
|
13468
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
13469
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13470
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
13272
13471
|
appDeployment?: Maybe<AppDeployment>;
|
|
13472
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13273
13473
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13274
13474
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13275
13475
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
@@ -13282,23 +13482,14 @@ export declare type QueryNodeArgs = {
|
|
|
13282
13482
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13283
13483
|
id: Scalars['ID'];
|
|
13284
13484
|
};
|
|
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']>;
|
|
13485
|
+
export declare type QueryBoardScopeArgs = {
|
|
13486
|
+
boardId: Scalars['ID'];
|
|
13295
13487
|
};
|
|
13296
|
-
export declare type
|
|
13297
|
-
|
|
13298
|
-
first?: Maybe<Scalars['Int']>;
|
|
13488
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
13489
|
+
issueId: Scalars['ID'];
|
|
13299
13490
|
};
|
|
13300
|
-
export declare type
|
|
13301
|
-
|
|
13491
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13492
|
+
projectAri: Scalars['ID'];
|
|
13302
13493
|
};
|
|
13303
13494
|
export declare type QueryAppsArgs = {
|
|
13304
13495
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13313,14 +13504,23 @@ export declare type QueryAppArgs = {
|
|
|
13313
13504
|
export declare type QueryAppHostServicesArgs = {
|
|
13314
13505
|
filter?: Maybe<AppServicesFilter>;
|
|
13315
13506
|
};
|
|
13316
|
-
export declare type
|
|
13317
|
-
|
|
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']>;
|
|
13318
13513
|
};
|
|
13319
|
-
export declare type
|
|
13320
|
-
|
|
13514
|
+
export declare type QueryReleaseNoteArgs = {
|
|
13515
|
+
id: Scalars['String'];
|
|
13516
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13321
13517
|
};
|
|
13322
|
-
export declare type
|
|
13323
|
-
|
|
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'];
|
|
13324
13524
|
};
|
|
13325
13525
|
export declare type QueryUserArgs = {
|
|
13326
13526
|
accountId: Scalars['ID'];
|
|
@@ -13534,9 +13734,6 @@ export declare type QueryWebTriggerUrlsByAppContextArgs = {
|
|
|
13534
13734
|
envId: Scalars['ID'];
|
|
13535
13735
|
contextId: Scalars['ID'];
|
|
13536
13736
|
};
|
|
13537
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
13538
|
-
id: Scalars['ID'];
|
|
13539
|
-
};
|
|
13540
13737
|
export declare type QueryMarketplacePartnerArgs = {
|
|
13541
13738
|
id: Scalars['ID'];
|
|
13542
13739
|
};
|
|
@@ -13554,6 +13751,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
13554
13751
|
hostingType: AtlassianProductHostingType;
|
|
13555
13752
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
13556
13753
|
};
|
|
13754
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
13755
|
+
id: Scalars['ID'];
|
|
13756
|
+
};
|
|
13557
13757
|
export declare type QueryAppDeploymentArgs = {
|
|
13558
13758
|
appId: Scalars['ID'];
|
|
13559
13759
|
environmentKey: Scalars['String'];
|
|
@@ -15059,7 +15259,7 @@ export declare type SupportRequestField = {
|
|
|
15059
15259
|
__typename?: 'SupportRequestField';
|
|
15060
15260
|
id: Scalars['String'];
|
|
15061
15261
|
label: Scalars['String'];
|
|
15062
|
-
value
|
|
15262
|
+
value?: Maybe<SupportRequestFieldValue>;
|
|
15063
15263
|
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15064
15264
|
editable?: Maybe<Scalars['Boolean']>;
|
|
15065
15265
|
};
|
|
@@ -15071,7 +15271,7 @@ export declare enum SupportRequestFieldDataType {
|
|
|
15071
15271
|
}
|
|
15072
15272
|
export declare type SupportRequestFieldValue = {
|
|
15073
15273
|
__typename?: 'SupportRequestFieldValue';
|
|
15074
|
-
value
|
|
15274
|
+
value?: Maybe<Scalars['String']>;
|
|
15075
15275
|
};
|
|
15076
15276
|
export declare type SupportRequestHierarchyRequest = {
|
|
15077
15277
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
@@ -15760,6 +15960,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
15760
15960
|
description?: Maybe<Scalars['String']>;
|
|
15761
15961
|
ownerId?: Maybe<Scalars['ID']>;
|
|
15762
15962
|
fields?: Maybe<Array<UpdateCompassFieldInput>>;
|
|
15963
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
15763
15964
|
};
|
|
15764
15965
|
export declare type UpdateCompassComponentLinkInput = {
|
|
15765
15966
|
componentId: Scalars['ID'];
|
|
@@ -16194,7 +16395,7 @@ export declare type UserGrant = {
|
|
|
16194
16395
|
oauthClientId: Scalars['ID'];
|
|
16195
16396
|
appId?: Maybe<Scalars['ID']>;
|
|
16196
16397
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
16197
|
-
scopes
|
|
16398
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
16198
16399
|
};
|
|
16199
16400
|
export declare type UserGrantAppDetails = {
|
|
16200
16401
|
__typename?: 'UserGrantAppDetails';
|